I have an indicator that is getting the highest volume bar from the beginning of the day, on a M5 timeframe
I'm calculating like this:
int highestVolumeBarsAgo = HighestBar(Volume, Bars.BarsSinceNewTradingDay); double valueHighVolume = Volume[highestVolumeBarsAgo];
Now I need get the highest volume bar of 1Minute timeframe, inside the 5min bar
If the bar is for example of 10:00 am, maybe the highest volume is in the 1 minute bar of 10:03 am.
How can I get the lower timeframe data from current timeframe?
Thanks

Comment