hi again,
problem, so I was trying to use a dataseries list in
protected override void OnMarketDepth(MarketDepthEventArgs e) {
and setting some values in that space. But noticed that this only works on bars for past values, so ex:
protected override void OnMarketDepth(MarketDepthEventArgs e) {
updateOrderBook(e);
bid.Set(askVolume);
ask.Set(bidVolume);
Print(ask[0] +" " +ask[1]);
so my question is how do I get the real ask[1], which is the value that ask[0] was just before
thanks

Comment