If I check to see if there has been an update by using OnMarketData, will GetCurrentBid() be updated to the latest bid? Or would I need to update my own bid price? Something like:
if (e.MarketDataType == MarketDataType.Bid)
bid = e.Price;
Thanks

Comment