Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 4552
- Note:
- Publié:
- 2018.12.28 12:52
- Mise à jour:
- 2019.01.17 12:15
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Real author: Stajer59
Three standard deviation channels using indicator buffers based on the number of bars defined in the indicator inputs.
//+--------------------------------------------+ //| INDICATOR INPUT PARAMETERS | //+--------------------------------------------+ input uint N_=240; // number of candles for analysis input double StdDev1=1.0; // first channel deviation input double StdDev2=1.5; // second channel deviation input double StdDev3=2.0; // third channel deviation input int Shift=0; // horizontal shift of the indicator in bars input int PriceShift=0; // vertical shift of the indicator in points
Fig1. Indicator Standard_Deviation_Channels_x3
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22893

Three standard deviation channels using indicator buffers based on the number of bars defined in the indicator inputs with the channels' background filling.

Twenty Fisher indicators with extra smoothing in a single window