PureBytes Links
Trading Reference Links
|
See if this helps. It should report the same tick volume as a 3min
chart.
I'm assuming that your market opens at 9:30 ET and you don't need
anything
more elaborate.
Regards,
Ken.
x:=
Minute()=0 OR Minute()=3 OR Minute()=6 OR
Minute()=9 OR Minute()=12 OR Minute()=15 OR
Minute()=18 OR Minute()=21 OR Minute()=24 OR
Minute()=27 OR Minute()=30 OR Minute()=33 OR
Minute()=36 OR Minute()=39 OR Minute()=42 OR
Minute()=45 OR Minute()=48 OR Minute()=51 OR
Minute()=54 OR Minute()=57;
y:=x AND Ref(x,-1)=0;
Ref(BarsSince(y),-1)+1
Dave Nadeau wrote:
> how to total those on a 3
> minute basis, similar to the time period of the bars I
> trade.
|