Thanks Roberto, I appreciate your advice
As per the layout of the photos above, here is the 1hr Short code:
indicator1, ignored, ignored = CALL “Pro-OBS”
c1 = (indicator1 >= 80)
indicator2 = MACDline[12,26,9](close)
c2 = (indicator2 <= 0)
indicator3 = ExponentialAverage[9](MACDline[12,26,9](close))
indicator4 = MACDline[12,26,9](close)
c3 = (indicator3 >= indicator4)
SCREENER[c1 AND c2 AND c3] (Variation AS “%Chg prev bar”)
and here is the 1hr Long code:
indicator1, ignored, ignored = CALL “Pro-OBS”
c1 = (indicator1 <= indicator1)
indicator2 = MACDline[12,26,9](close)
c2 = (indicator2 > 0)
indicator3 = MACDline[12,26,9](close)
c3 = (indicator3 >= 0)
SCREENER[c1 AND c2 AND c3] (null AS “null”)
For return of results, is it possible to add prefix – to a short? (ie minus)
Thank you very much, I really appreciate this
David