bom dia, como faço para instalar no mt5 esse indicador? how to install this indicator in mt5? my email felipebm1@hotmail.com thanks
Bom dia fmt
Você pode instalar esse indicador diretamente pelo mt5.
- Abra a caixa de ferramentas (Ctrl + T)
- Vá na guia Biblioteca
- Organize por nome
- Procure pelo nome FivePattern
- Clique com o botão direito e selcione a opção baixar
- Após isso o indicador estrá disponível no navegador (Ctrl + N) para ser adicionada aos gráficos.
For those having problems with undesired objects on chart, function DrawnPattern could be rewritten to clean chart from before redrawn, so I suggest to modify the function (located in fivepattern.mq5) to this one:
void DrawPattern(void)
{
ObjectDelete(0,"Line_A-B");
ObjectDelete(0,"Line_B-C");
ObjectDelete(0,"Line_C-D");
ObjectDelete(0,"Line_D-E");
ObjectDelete(0,"Line_Evolution");
ObjectDelete(0,"Line_Mutation");
ObjectsDeleteAll(0,"No_Name_Arrow_*",0,OBJ_ARROW);
ObjectsDeleteAll(0,"No_Name_HLine_*",0,OBJ_HLINE);
//--- 1.
MyPatternZigzag.PrintComment();
//--- 2.
MyListPattern.Insert(MyPatternZigzag.GetA(), MyPatternZigzag.GetTimeA(),
MyPatternZigzag.GetB(), MyPatternZigzag.GetTimeB(),
MyPatternZigzag.GetC(), MyPatternZigzag.GetTimeC(),
MyPatternZigzag.GetD(), MyPatternZigzag.GetTimeD(),
MyPatternZigzag.GetE(), MyPatternZigzag.GetTimeE(),
MyPatternZigzag.GetPointEvolution(),MyPatternZigzag.GetTimeEvolution(),
MyPatternZigzag.GetPointMutation(), MyPatternZigzag.GetTimeMutation());
}
Am I doing it right, Andrey?

- Aplicativos de negociação gratuitos
- 8 000+ sinais para cópia
- Notícias econômicas para análise dos mercados financeiros
Você concorda com a política do site e com os termos de uso
FivePattern:
Um indicador de formas técnicas por Merrill. М & W Wave Patterns por A. Merrill.
Autor: Andrey Emelyanov