Hello everyone. I wanted to bring my stone to this increasingly important and convivial building. This indicator is simple after 3 consecutive Close, there is a long signal, and vice-versa for short orders.
It does not allow blind positioning and must be combined with other filters or indicators.
The signals are divided into 2 different indicator you can download them below.
Bonjour à tous. Je tenais à apporter ma pierre à cet édifice de plus en plus important et convivial. Cet indicateur est simple après 3 clôtures consécutives en hausse on passe long. Il ne permets pas de prendre position aveuglément et doit être combiné avec d’autres filtres où indicateurs.
rem création de l'indicateur achat du scalper
a = close
b = close [1]
c = close [2]
d = close [3]
if a>b and b>c and c>d then
i =1
else
i = 0
endif
return i
rem création de l'indicateur vente du scalper
a = close
b = close [1]
c = close [2]
d = close [3]
if a<b and b<c and c<d then
i = 1
else
i = 0
endif
return i