Hi,
I don’t have code. But I can’t find sample to resolve my needs.
I want in my Daily chart, to have Volumes only between 09:30 and 09:35 (can be paramtred?)
Is it possible?
Thanks.
Possible to create an indicator that display only the volumes between 2 times:
vol = 0
if time>=093000 and time<=093500 then
vol = volume
endif
return vol
Thanks Nicolas,
But I think it will not work on Daily Chart?
Indeed, we can’t get the intraday volume between 2 hours in the history, but that’s possible during the daily candlestick formation as long as the platform is opened and the code applied on the chart. That would need some custom coding also.