거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Elliott_Wave_Oscillator_Sign - MetaTrader 5용 지표

조회수:
6162
평가:
(11)
게시됨:
2016.06.30 12:33
업데이트됨:
2023.03.29 13:47
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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 bar 
The 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

Fig.1. Elliott_Wave_Oscillator_Sign

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/15263

Exp_Elliott_Wave_Oscillator Exp_Elliott_Wave_Oscillator

Trading system based on Elliott_Wave_Oscillator indicator signals.

Elliott_Wave_Oscillator_HTF Elliott_Wave_Oscillator_HTF

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

ResSup ResSup

The indicator displays a symbol price momentum.

ResSupFibo ResSupFibo

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