Tick行情状态下High和Low数据不对。根据定义,Tick时High是当时的委卖价,支持bar回溯,Tick时Low是当时的委买价,支持bar回溯。但是PlotNumeric出来两者是相等的,按理说委卖价和委买价不应该相等的。麻烦核实下,谢谢。
代码如下:
Events
OnBar(ArrayRef<Integer> indexs)
{
PlotNumeric("委买价",Data0.Low);
PlotNumeric("委卖价",Data0.High);
}