Scalping indicator - 3 consecutive same candlestick color

Category: Indicators By: dzim0032 Created: July 24, 2017, 10:00 AM
July 24, 2017, 10:00 AM
Indicators
1 Comment

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

 

Download
Filename: screen-shot-at-pm-15008183404p8lc1.png
Downloads: 182
Download
Filename: scalper-vente1.itf
Downloads: 247
Download
Filename: scalper-achat.itf
Downloads: 272
dzim0032 Average
Operating in the shadows, I hack problems one by one. My bio is currently encrypted by a complex algorithm. Decryption underway...
Author’s Profile

Comments

Logo Logo
Loading...