I am trying to figure out how to program another of the profitunity signals - the fractal buys and sells. To do this I need (I think) to set up a loop - in block form something like this:
for n -1 to -5
if high(n) > high()
exit
else
if high(n) <high()
ct_neg = ct_neg +1
for n 1 to 5
if high(n) > high()
else
if high(n) <high()
ct_plus = ct_plus + 1
if ct_plus >=2 and ct_neg >=2 drawShapeRelative(0, high(), Shape.UPARROW, etc, etc)
Is this possible in EFS?
for n -1 to -5
if high(n) > high()
exit
else
if high(n) <high()
ct_neg = ct_neg +1
for n 1 to 5
if high(n) > high()
else
if high(n) <high()
ct_plus = ct_plus + 1
if ct_plus >=2 and ct_neg >=2 drawShapeRelative(0, high(), Shape.UPARROW, etc, etc)
Is this possible in EFS?
Comment