本文整理汇总了C#中SecurityType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# SecurityType.ToString方法的具体用法?C# SecurityType.ToString怎么用?C# SecurityType.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SecurityType
的用法示例。
在下文中一共展示了SecurityType.ToString方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateTradeBarDataConfig
private SubscriptionDataConfig CreateTradeBarDataConfig(SecurityType type)
{
if (type == SecurityType.Equity)
return new SubscriptionDataConfig(typeof(TradeBar), Symbols.USDJPY, Resolution.Minute, TimeZones.NewYork, TimeZones.NewYork, true, true, true);
if (type == SecurityType.Forex)
return new SubscriptionDataConfig(typeof(TradeBar), Symbols.USDJPY, Resolution.Minute, TimeZones.EasternStandard, TimeZones.EasternStandard, true, true, true);
throw new NotImplementedException(type.ToString());
}
示例2: CreateTradeBarDataConfig
private SubscriptionDataConfig CreateTradeBarDataConfig(SecurityType type, string symbol)
{
if (type == SecurityType.Equity)
return new SubscriptionDataConfig(typeof(TradeBar), SecurityType.Equity, symbol, Resolution.Minute, "usa", TimeZones.NewYork, true, true, true);
if (type == SecurityType.Forex)
return new SubscriptionDataConfig(typeof(TradeBar), SecurityType.Forex, symbol, Resolution.Minute, "fxcm", TimeZones.NewYork, true, true, true);
throw new NotImplementedException(type.ToString());
}
示例3: CreateSymbol
/// <summary>
/// Creates a user defined universe symbol
/// </summary>
/// <param name="securityType">The security</param>
/// <param name="market">The market</param>
/// <returns>A symbol for user defined universe of the specified security type and market</returns>
public static Symbol CreateSymbol(SecurityType securityType, string market)
{
return string.Format("qc-universe-userdefined-{0}-{1}", market.ToLower(), securityType.ToString().ToLower());
}
示例4: GenerateRelativeZipFilePath
/// <summary>
/// Generates the relative zip file path rooted in the /Data directory
/// </summary>
public static string GenerateRelativeZipFilePath(string symbol, SecurityType securityType, string market, DateTime date, Resolution resolution)
{
var directory = Path.Combine(securityType.ToString().ToLower(), market.ToLower(), resolution.ToString().ToLower());
if (resolution != Resolution.Daily && resolution != Resolution.Hour)
{
directory = Path.Combine(directory, symbol.ToLower());
}
return Path.Combine(directory, GenerateZipFileName(symbol, securityType, date, resolution));
}