♥ 0 |
Hi Pete and all- I’m trying to create a HA scan for prev 4 candles. The below code works fine..but it does not give the correct results. I know there are some stocks that fit that criterion. ********************************* def C0 = ohlc4; def C1= (open[1] +high[1] +Low[1]+ close[1])/4; def C2= (open[2] +high[2] +Low[2]+ close[2])/4; def C3= (open[3] +high[3] +Low[3]+ close[3])/4; def C4= (open[4] +high[4] +Low[4]+ close[4])/4; def C5= (open[5] +high[5] +Low[5]+ close[5])/4; Plot symbls= volumeAvg(5)>15000 and and close >5 within 8 bars; *********************************
Is there anything wrong with the Heikin Definitions for the 4 prev bars.? Thanks for your time. D
Marked as spam
|
Please log in to post questions.