hi guys,
i m trying to code the on neck continuation candlestick pattern but i cannot make it.
Can you tell me where i go wrong?
thank you!!! here is the code
//go long
c10= open[1]<close[1]
c20= (close[1]-open[1])>AverageTrueRange[22](close)
c30= open>close
c40= close>=close[1]
c50= (open-close)<(close[1]-open[1])*0.33
c60= (c10 and c20 and c30 and c40 and c50)
screener (c60)
JSParticipant
Senior
Hi,
Try this one:
C1=Open[1]<Close[1]
C2=(Close[1]-Open[1])>AverageTrueRange[22](Close)
C3=Open>Close
C4=Close>=Close[1]
C5=(Open-Close)<(Close[1]-Open[1])*0.33
C6=C1 and C2 and C3 and C4 and C5
Screener[C6](C6 as "Go Long")