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

The following settings are now available as input parameters:

  • color of the indicator main line
  • width of the indicator main line
  • values of the two indicator levels

RSI Custom Smoothing

What is the purpose of the above updates: now, indicator levels and colors can be managed from within the Expert Advisor. This feature is especially useful during visual testing. For example, non-standard levels are set in the EA: 35 and 75. When using the RSI Custom Smoothing in the visual testing mode, the levels of 35 and 75 will be displayed on the chart.

Indicator buffer smoothing has been added. Smoothing is performed though a Simple averaging method with the period of 6.

An example of creating an indicator handle in the EA:

//--- create handle of the indicator iRSI
   handle_iCustom=iCustom(m_symbol.Name(),Period(),"RSI Custom Smoothing",Inp_RSI_Period,
                          Inp_RSI_Color,Inp_RSI_Width,Inp_RSI_Level1,Inp_RSI_Level2);
//--- if the handle is not created 
   if(handle_iCustom==INVALID_HANDLE)
     {
      //--- tell about the failure and output the error code 
      PrintFormat("Failed to create handle of the iRSI indicator for the symbol %s/%s, error code %d",
                  m_symbol.Name(),
                  EnumToString(Period()),
                  GetLastError());
      //--- the indicator is stopped early 
      return(INIT_FAILED);
     }

 

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

Yesterday Today Yesterday Today

Trading is based on the analysis of yesterday's OHLC with the current day value.

RSI EA v2 RSI EA v2

RSI EA - trading based on overbought/oversold zones determined by the iRSI (Relative Strength Index, RSI) indicator.

X2MA_2HTF X2MA_2HTF

Two X2MA moving averages from different timeframes, drawn in a single window as a color cloud colored according to the trend direction

Super_Signals_Channel Super_Signals_Channel

A redrawing channel, which looks into the future by a certain amount of bars specified in the appropriate input parameter