PureBytes Links
Trading Reference Links
|
"Noel Falzon" <noelf@xxxxxxxxxxxx> asks:
>Is there a way of plotting every other bar close, without using
>a higher time frame hidden data stream..
Yes, simply keep track of every Nth bar, and plot accordingly.
Something like:
var: counter(0);
counter = counter + 1;
if mod(counter, 2) = 0 then begin
plot(...)
whatever else...
end
You could make the "2" into an input for every third bar, etc.
Jim
|