거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
6606
평가:
(19)
게시됨:
2014.06.06 15:44
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Indicator HighsLows_HTF_Signal shows a trend direction or a signal for performing a deal generated by the HighsLowsSignal indicator at the chosen bar as a graphic object with colored indication of trend or deal direction and sends alerts or audio signals in case of a market entry moment.

In case a trend continues at the selected bar, the indicator alerts by a graphic object in the form of the right arrow, the color of which corresponds to a trend direction. In case a trend has changed at the selected bar, the indicator alerts by the arrow, color and direction of which correspond to a performed deal direction.

All input parameters can be divided into three large groups:

  1. Input parameters of the HighsLowsSignal indicator:
    //+------------------------------------------------+ 
    //|  Indicator input parameters                    |
    //+------------------------------------------------+ 
    input string Symbol_="";                               // A financial asset
    input ENUM_TIMEFRAMES Timeframe=PERIOD_H6;             // An indicator timeframe for the indicator calculation
    input uint HowManyCandles=3;                           // The number of candlesticks of a directed price change
  2. The input parameters of the HighsLows_HTF_Signal indicator required for the indicator visualization:
    //---- settings of the visual display of the indicator
    input uint SignalBar=0;                                // Bar number to get a signal (0 - current bar)
    input string Symbols_Sirname=INDICATOR_NAME"_Label_";  // Names of the indicator labels
    input color Upsymbol_Color=clrDodgerBlue;              // Color of the growth symbol
    input color Dnsymbol_Color=clrMagenta;                 // Color of the fall symbol
    input color IndName_Color=clrDarkOrchid;               // Color of the indicator name
    input uint Symbols_Size=60;                            // Size of the signal symbols
    input uint Font_Size=10;                               // Font size of the indicator name
    input int X_1=5;                                       // Horizontal shift of the name
    input int Y_1=-15;                                     // Vertical shift of the name
    input bool ShowIndName=true;                           // Display of the indicator name
    input ENUM_BASE_CORNER  WhatCorner=CORNER_RIGHT_UPPER; // Corner
    input uint X_=0;                                       // Horizontal shift
    input uint Y_=20;                                      // Vertical shift
  3. Input parameters of the HighsLows_HTF_Signal indicator that are necessary for producing alerts and audio signals:
    //---- alert settings
    input ENUM_ALERT_MODE alert_mode=OnlySound;  // Option of triggering indication
    input uint AlertCount=0;                     // Number of produced alerts
  4. In case several HighsLows_HTF_Signal indicators are to be used on one chart, each of them should have its own Symbols_Sirname (indicator labels names) string variable value.

The indicator requires the compiled indicator file HighsLowsSignal.mq5 for operation. Place it to terminal_data_folder\MQL5\Indicators\.

Figure 1. Indicator HighsLows_HTF_Signal. Sell Signal

Figure 1. Indicator HighsLows_HTF_Signal. Sell Signal

Figure 2. Indicator HighsLows_HTF_Signal. Signal of Continuation of an Uptrend

Figure 2. Indicator HighsLows_HTF_Signal. Signal of Continuation of an Uptrend

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

DynamicRS_C_Signal DynamicRS_C_Signal

The indicator shows information on the current trend using the values of the DynamicRS_C indicator with a fixed timeframe.

DynamicRS DynamicRS

An indicator of the series of simple indicators without averaging.

Multi-timeframe SuperTrend in the form of Pivot Multi-timeframe SuperTrend in the form of Pivot

The indicator shows the current levels and direction of the Supertrend indicator on multiple timeframes.

i-OneThird i-OneThird

The i-OneThird indicator draws candlesticks that correspond to the bullish and bearish patterns (in the style of Heiken Ashi).