本文整理汇总了C#中Tick.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Tick.ToString方法的具体用法?C# Tick.ToString怎么用?C# Tick.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tick
的用法示例。
在下文中一共展示了Tick.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: tl_gotTick
void tl_gotTick(Tick t)
{
// heartbeat
_tlt.newTick(t);
// use full symbols if required
if (RewriteSecuritySymbols)
{
Security sec;
if (allbaskets.TryGetSecurityAnySymbol(t.symbol, out sec))
{
t.symbol = sec.FullName;
}
}
// update quotes
if (gti!=null)
gti.GotTick(t);
// update response
if (rtick != null)
{
try
{
rtick.GotTick(t);
}
catch (Exception ex)
{
debug(rname + " got tick error: " + ex.Message + ex.StackTrace + " on tick: " + t.ToString());
status(rname + " tick error, see debug for details.");
}
}
}
示例2: tl_gotTick
void tl_gotTick(Tick t)
{
_lasttime = t.time;
// set time
_dw.ExternalTimeStamp = t.time;
// see if we are tracking this symbol
int[] idxs = new int[0];
if (!_symidx.TryGetValue(t.symbol, out idxs) )
return;
// see if we should save this tick
if (_ao.archivetickbox.Checked)
_ta.newTick(t);
// send tick to any valid requesting responses
foreach (int idx in idxs)
{
if (handleresponseexception)
{
// skip disabled responses
if ((_reslist[idx]==null) || !_reslist[idx].isValid)
continue;
// try to execute
try
{
_reslist[idx].GotTick(t);
}
catch (Exception ex)
{
notifyresponseexception(idx, t.time, t.ToString(), ex);
}
}
else
{
_reslist[idx].GotTick(t);
}
}
// watch for timeout
_tlt.newTick(t);
}