In my One min time frame strategy....
If I want to check Current Volume bar is greater than 30% from previous 10 min volume
bars so the code will be (VOL()[0]) * (1 + 0.3) > MAX(VOL(), 10)[1].
But I want to check my Current volume bar is greater than 30% from 10 days volume bars.
Means I want to check from 10 days in Intraday one min bartime frame strategy.
So what will be the code (VOL()[0]) * (1 + 0.3) > .......
Thanks
Imran.

Comment