How to get Last price on Bid datatype chart. For bid there is GetCurrentBid(), for ask there is GetCurrentAsk(). And for such a function is not last price.
I try this:
Add(instrument, PeriodType.Minute, 1, MarketDataType.Last);
...
price = Closes[1][0]; //--- Try to take last price
And this dont work.
Thanks for help!

Comment