Bonjour,
Recherche Screener :
(1)Bougies Heikin-Ashi Baissiére sans tige sur la tête.
(2) Avec le cours Sur la SMA 200
voir photo
C’est ici
IF BarIndex = 0 THEN
xClose = (Open + High + Low + Close) / 4
xOpen = (Open + Close) / 2
xHigh = High
// xLow = Low
ELSE
xClose = (Open + High + Low + Close) / 4
xOpen = (xOpen[1] + xClose[1]) / 2
xHigh = Max(High, Max(xOpen, xClose))
// xLow = Min(Low, Min(xOpen, xClose))
ENDIF
c1 = (xClose < xOpen) AND (xHigh = xOpen)
sma200 = Average[200](Close)
c2 = (Low <= sma200) AND (High >= sma200)
SCREENER[c1 AND c2]
Ivan c’est possible de modifier N° (2) Avec la Bougie Heikin-Ashi Sur la SMA 200
merci
Oui, il vous suffit de remplacer les variables « high » et « low » par « xhigh » et « xlow » à la ligne C2.