I have a strategy (OnBarClose) and would like to process the intraday volume. That's why I wanted to do this with this method, and have noticed that the volumes are not the same.
if (e.MarketDataType == MarketDataType.DailyVolume)
{[INDENT]CurrentDayVolume = e.Volume;[/INDENT]
}

Comment