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:
- 6764
- Note:
- Publié:
- 2016.06.30 12:33
- Mise à jour:
- 2023.03.29 13:47
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Semaphore signal indicator based on the Elliott_Wave_Oscillator indicator algorithm.
Input Parameters:
//+----------------------------------------------+ //| INDICATOR INPUT PARAMETERS | //+----------------------------------------------+ input ENUM_MODE Mode=MODE1; //Signal defining algorithm input Smooth_Method MA_Method1=MODE_SMA_; //Method of averaging of the first Moving Average input int Length1=5; //Depth of the first Moving Average input int Phase1=15; //Parameter of the first Moving Average, //---- for JJMA within the range of -100 ... +100 it influences the quality of the transition process; //---- for VIDIA it is a CMO period, for AMA it is a slow average period input Applied_price_ IPC1=PRICE_MEDIAN_;//First MA price constant input Smooth_Method MA_Method2=MODE_JJMA; //Second MA averaging method input int Length2=35; //Depth of the second MA input int Phase2=15; //Parameter of the second MA, //---- for JJMA within the range of -100 ... +100 it influences the quality of the transition process; //---- for VIDIA it is a CMO period, for AMA it is a slow average period input Applied_price_ IPC2=PRICE_MEDIAN_;//Second MA price constant input int Shift=0; // Horizontal indicator shift in bars input bool Sign=true; //Activate a one-time audio signal when the arrow appears at a closed barThe indicator uses the classes of SmoothAlgorithms.mqh library (copy it to <terminal_data_folder>\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".
Fig.1. Elliott_Wave_Oscillator_Sign
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/15263

Trading system based on Elliott_Wave_Oscillator indicator signals.

Elliott_Wave_Oscillator indicator with the timeframe selection option available in input parameters.

The indicator displays a symbol price momentum.

The indicator displays a price momentum for a symbol accompanied by Fibo retracement markup.