Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Indicateurs

Trailing_Stop_Level - indicateur pour MetaTrader 5

Vues:
5045
Note:
(9)
Publié:
2018.06.06 14:02
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The indicator displays possible StopLoss levels on the price chart. Levels are shown separately for Long and Short positions. The indicator is similar to Mod_ATR_Trailing_Stop, but has a different calculation basis - in percentage.

It has one input parameter:

  • Percent - the percentage value of the distance between the Stop line and the Close price.

Calculation:

  • If Close[i] > TSL[i-1] and Close[i-1] > TSL[i-1]

    TSL[i] = Max(TSL[i-1], Close[i]-loss)
  • If Close[i] < TSL[i-1] and Close[i-1] < TSL[i-1]

    TSL[i] = Min(TSL[i-1], Close[i]+loss)
  • If Close[i] > TSL[i-1]

    TSL[i] = Close[i] - loss
  • If Close[i] < TSL[i-1]

    TSL[i] = Close[i] + loss

where

loss = Close[i]*Percent/100.

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/20436

Simple_Support_Resistance Simple_Support_Resistance

An indicator of current support/resistance levels.

RMO RMO

The tend indicator: Rahul Mohindar Oscillator

TriMA TriMA

Triangular Moving Average.

Dominant_Color Dominant_Color

An indicator of the dominant direction of closing of bars.