PureBytes Links
Trading Reference Links
|
> I got a mind block on how the mark a certain numbers of bars for
> counting purposes, like 10,20,30,40 to identify them on the chart. I
> know you use value to count but how would you code that say from the
> opening count 12 bars and plot1 (low,"low"). I feel stupid asking
> this but I could use a little help.
>
> Robert
~~~~~~~~~~~~~~~
vars:counter(0);
if d[1] <> d then begin
counter = 1
end else begin
counter = counter + 1
end;
if counter = 12 then begin
Plot1(low,"low");
end;
~~~~~~~~~~~~~~~
rgds hans
~~~~~
I dont sell a newsletter
I dont sell a system
I dont sell a software
I dont sell a course
I dont sell anything else
I dont have a webpage
I dont want to have a webpage
I dont even trade OTHER peoples money !
Im just helpfull when/if I can
Famous Publisher of the World's Best Systems/Software/Newsletter <br>
For a REAL proof ~ simply send me ALL your money <g>
|