Indicateurs multitemporels - page 1021

 
mladen:
Non, ce ne sont pas les indicateurs de cette famille.

Très chère MLADEN,

merci pour vos paroles authentiques,

salutations

 
mntiwana:

Très chère MLADEN,

merci pour vos paroles authentiques,

salutations

Mais je ne suis pas sûr de l'utilité de ce type de division atr pour les wcci (certaines périodes étranges sont utilisées pour cela). Il faudra le comparer au cci normal

 
Dossiers :
 

Cet indice peut être modifié dans la version MTF, s'il vous plaît ? Merci.

Dossiers :
 
cnsail:
Cet indice peut être modifié dans la version MTF s'il vous plaît ? merci

cnsail

Easy trend est une moyenne mobile Hull renommée. Il suffit d'utiliser n'importe quelle moyenne mobile de Hull qui est déjà multi-temporelle (par exemple, vous pouvez utiliser celle-ci : https://www.mql5.com/en/forum/174961/page23 ).

 

Quelqu'un peut-il changer ceci dans Indi MA Hull : t_ma.mq4

Désolé pour mon anglais

stonehome

 

voici le Code :

//+------------------------------------------------------------------+

//| t_ma.mq4 |

//| |

//| |

//+------------------------------------------------------------------+

#property copyright ""

#property link ""

#property indicator_chart_window

#property indicator_buffers 7

#property indicator_color1 MediumBlue

#property indicator_color2 Blue

#property indicator_color3 DodgerBlue

#property indicator_color4 DeepSkyBlue (bleu ciel profond)

#property indicator_color5 SkyBlue

#property indicator_color6 Aqua

#property indicator_color7 Aquamarine

#property indicator_width1 1

#property indicator_width2 1

#property indicator_width3 1

#property indicator_width4 1

#property indicator_width5 1

#property indicator_width6 1

#property indicator_width7 1//---- tampons

double ExtMapBuffer1[] ;

double ExtMapBuffer2[];double ExtMapBuffer3[] ;

double ExtMapBuffer4[];double ExtMapBuffer5[] ;

double ExtMapBuffer6[];double ExtMapBuffer7[] ;

extern int MA_Period=100 ;

extern int ad1 = 2 ;

extern int ad2 = 4 ;

extern int ad3 = 6 ;

extern int ad4 = 8 ;

extern int ad5 = 10 ;

//+------------------------------------------------------------------+

//| Fonction d'initialisation de l'indicateur personnalisé |

//+------------------------------------------------------------------+

int init()

{

//---- indicateurs

SetIndexStyle(0,DRAW_LINE) ;

SetIndexBuffer(0,ExtMapBuffer1) ;

SetIndexStyle(1,DRAW_LINE) ;

SetIndexBuffer(1,ExtMapBuffer2) ;

SetIndexStyle(2,DRAW_LINE) ;

SetIndexBuffer(2,ExtMapBuffer3) ;

SetIndexStyle(3,DRAW_LINE) ;

SetIndexBuffer(3,ExtMapBuffer4) ;

SetIndexStyle(4,DRAW_LINE) ;

SetIndexBuffer(4,ExtMapBuffer5) ;

SetIndexStyle(5,DRAW_LINE) ;

SetIndexBuffer(5,ExtMapBuffer6) ;

SetIndexStyle(6,DRAW_LINE) ;

SetIndexBuffer(6,ExtMapBuffer7) ;

//----

return(0) ;

}

//+------------------------------------------------------------------+

//| Fonction personnalisée de désinitialisation de l'indicateur |

//+------------------------------------------------------------------+

int deinit()

{

//----

//----

return(0) ;

}

//+------------------------------------------------------------------+

//| Fonction d'itération de l'indicateur personnalisée |

//+------------------------------------------------------------------+

int start()

{

int counted_bars=IndicatorCounted() ;

if(counted_bars<0) return(-1) ;

if(counted_bars>0) counted_bars-- ;

int limit = MathMin(Bars-counted_bars,Bars-1) ;

si (ad1<0) limit=MathMax(limit,-ad1) ;

si (ad2<0) limit=MathMax(limit,-ad2) ;

si (ad3<0) limit=MathMax(limit,-ad3) ;

si (ad4<0) limit=MathMax(limit,-ad4) ;

si (ad5<0) limit=MathMax(limit,-ad5) ;

for(int i=limit;i>=0;i--)

{

ExtMapBuffer1=iMA(NULL,0,MA_Period,0,MODE_LWMA,PRICE_OPEN,i) ;

ExtMapBuffer2=(ExtMapBuffer1+ExtMapBuffer1+ExtMapBuffer1+ExtMapBuffer1+ExtMapBuffer1+ExtMapBuffer1)/6.0 ;

}

for( i=limite;i>=0;i--)

{

ExtMapBuffer3= ExtMapBuffer2 ; if (ExtMapBuffer3==0) ExtMapBuffer3=EMPTY_VALUE ;

ExtMapBuffer4= ExtMapBuffer2 ; if (ExtMapBuffer4==0) ExtMapBuffer4=EMPTY_VALUE ;

ExtMapBuffer5= ExtMapBuffer2 ; if (ExtMapBuffer5==0) ExtMapBuffer5=EMPTY_VALUE ;

ExtMapBuffer6= ExtMapBuffer2 ; if (ExtMapBuffer6==0) ExtMapBuffer6=EMPTY_VALUE ;

ExtMapBuffer7= ExtMapBuffer2 ; if (ExtMapBuffer7==0) ExtMapBuffer7=EMPTY_VALUE ;

}

//----

return(0) ;

}

//+------------------------------------------------------------------+

 
stonehome:
Est-ce que quelqu'un peut changer ceci dans Indi MA Hull : t_ma.mq4

Désolé pour mon anglais

stonehome

Salut stonehome,

ce que tu veux exactement avec cette indi.

t-ma.mq4

Dossiers :
t-ma.mq4  4 kb
eurusdm1.png  45 kb
 

Salut Mladen ... s'il vous plaît vérifiez cet indicateur ... la fonction MTF ne fonctionne pas ... merci.

rk-kcv8-wmtf-txt-zo-trend_arrows.mq4

PS. Je pense que mes messages ont été supprimés.

 

Salut mntiwana,

j'aimerais une autre MA ; pas la LWMA mais la MA Hull (HMA)

si cela pouvait aller, ce qui était vraiment génial

stonehome