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

Combined MA Signal - MetaTrader 4용 지표

조회수:
25576
평가:
(13)
게시됨:
2016.06.30 17:10
업데이트됨:
2016.11.22 07:32
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

For the higher chart timeframes: H4, D1, W1 using Slow = false (0), and for smaller chart timeframes: H1, M30, M15, M5 set Slow = true (1). Arrows appear.

If Signal = 3 (the best is 8), it calculates the Moving Average as 1x2 + 2x2 + 3x2 (minus) 1x3 - 2x3 - 3x3, less than separate.

     while(count>0)
      {
       dif=iMA(NULL,0,(count*2),0,3,0,i)-
           iMA(NULL,0,(count*3),0,3,4,i)+
           iMA(NULL,0,(count*2),0,3,4,i)-
           iMA(NULL,0,(count*3),0,3,1,i);
       if(count>=Signal/2)ExtGreenBuffer[i]+=dif;
       if(dif!=0.0)dif/=(count+1)/2;
       if(count+1<=Signal)ExtSilverBuffer[i]+=dif;
       count--;

If used in experts: it can be used as Buffer 2 [Method 2] (if> 0.0) = Buy, Buffer 3 [Method 3] (if <0.0) = Sell.

Entry: Combination of D1 with H4 with H1 is good and can be a signal, if all of them received the same signal, it must not be on the same bar.

Exit : If H1 or H4 changes - it is a signal to close the position.



The optimization parameters for the indicator can be used during the optimization of this indicator. Do not set more than a day, otherwise it would freeze for a long time when set to 5-10-15 or more minutes. Read in the file.



After the optimization is complete and results are received, the optimizer can be removed from the chart.

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

Bollinger Bands, BB Bollinger Bands, BB

The Bollinger Bands (BB) indicator is plotted at the distances equal to a certain number of standard deviations.

r_Gator r_Gator

A simple alternative to the Alligator.

ind - Profitunity Bars ind - Profitunity Bars

The ind - Profitunity Bars indicator. Colors the bars in green, red and black.

Ind - Widners Oscilator Ind - Widners Oscilator

The Ind-Widners Oscilator indicator. Draws the support and resistance levels.