Você está perdendo oportunidades de negociação:
- Aplicativos de negociação gratuitos
- 8 000+ sinais para cópia
- Notícias econômicas para análise dos mercados financeiros
Registro
Login
Você concorda com a política do site e com os termos de uso
Se você não tem uma conta, por favor registre-se
Duas linhas JurikMACD
O indicador JurikMACD de duas linhas também está listado em algum lugar? obrigado.
É tudo MACD que eu tenho de um dos conjuntos. podem ser. existem os outros conjuntos com mais MACDs ...
Duas linhas JurikMACD
Obrigado pela pronta resposta. estou surpreso como você deve estar trabalhando, lendo, respondendo, administrando, creative.......a fonte de inspiração.
Roscas JStochásticas
Roscas JStochastic com JStochastic (6,3,3) a JStochastic (24,3,3)
Coloque o modelo na pasta do modelo e não na pasta do indicador.
Você precisa do JStochastic.mq4 na pasta indicadora e
JJMASeries.mqh, PriceSeries.mqh na pasta include.
Editar:
Anexar é a documentação sobre como negociar as roscas de Stoch:
Para Newdigital, pretendo acrescentar um alerta ao indicador JfatlSpeed, mas não sei russo. Quando uso o tradutor Babel, recebi algumas traduções como Heiken Ashi Close e TRENDFOLLOW. parâmetro #7 é o mesmo que #14: Heiken Ashi Close. E os #9 e 10 são os mesmos: TRENDFOLLOW. De qualquer forma, você retraduz novamente? Obrigado de antemão.
extern int Input_Price_Customs = 0;//Input of prices, on which is produced the calculation of the indicator:
//(0-CLOSE, 1-OPEN, 2-HIGH, 3-LOW, 4-MEDIAN, 5-TYPICAL, 6-PESO, 7-HeikenAshi Close, 8-SIMPL, 9-TRENDFOLLOW, 10-0.5*TRENDFOLLOW,
//11-Heiken Ashi Low, 12-Heiken Ashi High, 13-Heiken Ashi Open, 14-HeikenAshi Close).
Anexar é a versão em inglês da JFatlSpeed
Para Newdigital, pretendo acrescentar um alerta ao indicador JfatlSpeed, mas não sei russo. Quando uso o tradutor Babel, recebi algumas traduções como Heiken Ashi Close e TRENDFOLLOW. parâmetro #7 é o mesmo que #14: Heiken Ashi Close. E os #9 e 10 são os mesmos: TRENDFOLLOW. De qualquer forma, você retraduz novamente? Obrigado de antemão.
externamente int Entrada_Preço_Preço_Personalidade = 0;//Ingresso de preços, sobre o qual é produzido o cálculo do indicador:
//(0-CLOSE, 1-OPEN, 2-HIGH, 3-LOW, 4-MEDIAN, 5-TYPICAL, 6-PESO, 7-HeikenAshi Close, 8-SIMPL, 9-TRENDFOLLOW, 10-0.5*TRENDFOLLOW,
//11-Heiken Ashi Low, 12-Heiken Ashi High, 13-Heiken Ashi Open, 14-HeikenAshi Close).
Anexar é a versão em inglês da JFatlSpeed, que está bagunçadaEste indicador JFatlSpeed está usando o indicador JFatl como icustom. É por isso que você está confuso.
É o ajuste para JFatl dentro do JFatlSpeed:
Phase = 100; // parameter which is changed withing -100 ... +100, it's affecting on the transient process quality for JFatl indicator;[/CODE]
It is the setting for JFatlSpeed itself:
PhaseS = 100; // parameter which is changed withing -100 ... +100, it's affecting on the transient process quality for JFatlSpeed indicator;[/CODE]
extern int Input_Price_Customs.
This Input_Price_Customs came from PriceSeries.mqh file.
As to #7 is the same as #14 so I don't know. I am not the coder so you may see about those numbers from here (all numbers):
case 1: dPriceSeries = Open [nPriceSeries.Bar];break;
case 2: dPriceSeries =(High [nPriceSeries.Bar]+Low [nPriceSeries.Bar])/2;break;
case 3: dPriceSeries = High [nPriceSeries.Bar];break;
case 4: dPriceSeries = Low [nPriceSeries.Bar];break;
case 5: dPriceSeries =(Open [nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;
case 6: dPriceSeries =(Open [nPriceSeries.Bar]+Close[nPriceSeries.Bar])/2;break;
case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;
case 8: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;
case 9: dPriceSeries = TrendFollow00(nPriceSeries.Bar);break;
case 10: dPriceSeries = TrendFollow01(nPriceSeries.Bar);break;
case 11: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",0,nPriceSeries.Bar);break;
case 12: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",1,nPriceSeries.Bar);break;
case 13: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",2,nPriceSeries.Bar);break;
case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;So if
[CODE]case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;is the same with
[CODE]case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;portanto, pode ser o mesmo. Eu não posso estimar, desculpe.
O que é o 3 aqui? iCustom(NULL,0,"Heiken Ashi#",3 nPriceSeries.Bar);
Traduzi algum indicador JFatlSpeed (pode ser diferente do seu, mas é compreensível).
.....
externamente int Entrada_Preço_Preço_Austomático.
Este arquivo Input_Price_Customs veio do arquivo PriceSeries.mqh.
Quanto a #7 é o mesmo que #14, portanto, não sei. Eu não sou o codificador para que você possa ver sobre esses números daqui (todos os números):
case 1: dPriceSeries = Open [nPriceSeries.Bar];break;
case 2: dPriceSeries =(High [nPriceSeries.Bar]+Low [nPriceSeries.Bar])/2;break;
case 3: dPriceSeries = High [nPriceSeries.Bar];break;
case 4: dPriceSeries = Low [nPriceSeries.Bar];break;
case 5: dPriceSeries =(Open [nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;
case 6: dPriceSeries =(Open [nPriceSeries.Bar]+Close[nPriceSeries.Bar])/2;break;
case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;
case 8: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;
case 9: dPriceSeries = TrendFollow00(nPriceSeries.Bar);break;
case 10: dPriceSeries = TrendFollow01(nPriceSeries.Bar);break;
case 11: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",0,nPriceSeries.Bar);break;
case 12: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",1,nPriceSeries.Bar);break;
case 13: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",2,nPriceSeries.Bar);break;
case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;[/CODE]
So if
is the same with
so it may be the same. I can not estimate, sorry.
What is 3 in here? iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);
And this PriceSeries.mqh file is using Heiken Ashi#.mq4 indicator (attached). And 3 in this indicator is price close calculated as the following:
[CODE]haClose=(Open+High+Low+Close)/4;É Input_Price_Customs=14.
Input_Price_Customs=7:
[CÓDIGO]dPriceSeries =(Fechar[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;Portanto, é um cálculo diferente para os números #7 e #14.
Configurações JFatl_Trendsignal
Agora sei como criar a JFatl_Trendsignal. Se você definir 3c_JFatl com um comprimento de 4, então no JFatl_Trendsignal, você definirá o Smooth para 4 também. Agora você pode ver as setas apontando para os pontos de virada correspondentes. Para símbolos de seta, basta usar a fonte WingDings.
Aqui está o e-book que lhe mostrará como usar alguns destes indicadores Jurik. Há também algumas estratégias.
Aqui está o e-book que lhe mostrará como usar alguns destes indicadores Jurik. Há algumas estratégias também.
Esse RSX parece muito bonito. Imagino como funcionaria bem com a estratégia R2. Suponho que o JRSX deve ser o mesmo que o RSX.
Alguma idéia de como mudar o RSX para usar os parâmetros de"Desempenho Melhorado"?