Hey guys, just wondering if someone could help me with a screen to pick up 7 green bars or better out of a 10 bar period, which can be applied to any timeframe chart . Thanks
>> Please update your country flag in your profile. Thank you 🙂 <<
There you go (not tested):
GreenBar = close > open
Result = (summation[10](GreenBar) => 7)
Screener[Result]
Hi thank you very much for your Help! – I tried to update my flag but it didn’t seem to work.
How could you also include so that Green bar also = that closing price was >= yesterdays close
Thanks again
Replace line 1 with:
GreenBar = close > open AND close >= close[1]
Your country flag is fine now.