Participe de nossa página de fãs
Coloque um link para ele, e permita que outras pessoas também o avaliem
Avalie seu funcionamento no terminal MetaTrader 5
Combined MA Signal - indicador para MetaTrader 4
- Visualizações:
- 25769
- Avaliação:
- Publicado:
- 2016.06.30 17:10
- Atualizado:
- 2016.11.22 07:32
- Precisa de um robô ou indicador baseado nesse código? Solicite-o no Freelance Ir para Freelance
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.
Traduzido do russo pela MetaQuotes Ltd.
Publicação original: https://www.mql5.com/ru/code/7833
The Bollinger Bands (BB) indicator is plotted at the distances equal to a certain number of standard deviations.
r_GatorA simple alternative to the Alligator.
The ind - Profitunity Bars indicator. Colors the bars in green, red and black.
Ind - Widners OscilatorThe Ind-Widners Oscilator indicator. Draws the support and resistance levels.