多时间框架指标 - 页 1021

 
mladen:
不,这些不是那个家族的指标。

亲爱的MLADEN。

感谢你真实的话语。

问候

 
mntiwana:

亲爱的MLADEN。

感谢你真实的话语。

问候

但我不确定这种类型的ATR划分对Wcci有多大好处(有些奇怪的时期 用于此)。必须将它与普通的CCI进行比较。

 
附加的文件:
 

这个指数可以修改成MTF版本吗? 谢谢你

附加的文件:
 
cnsail:
这个指数可以修改成MTF版本吗? 谢谢

cnsail

Easy trend是一个重新命名的Hull移动平均线。只需使用任何已经是多时间框架的船体移动平均线(例如,你可以使用这个:https://www.mql5.com/en/forum/174961/page23)

 

有谁能在Indi MA Hull中修改这个:t_ma.mq4

对不起,我的英语不好

石家庄

 

这里的代码。

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

//| t_ma.mq4 !

//| |

//| |

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

#财产版权""

#property link ""

#属性 indicator_chart_window

#属性 indicator_buffers 7

#属性 indicator_color1 中蓝

#属性 indicator_color2 蓝色

#属性 indicator_color3 DodgerBlue

#属性指示器_color4 DeepSkyBlue

#属性指示器_color5 天蓝

#属性指示器_color6 水蓝

#属性指示器_color7 海蓝

#属性指示器宽度1 1

#属性指示器宽度2 1

#属性指示器_width3 1

#属性指示器_width4 1

#财产指示器宽度5 1

#属性指示器宽度6 1

#perty indicator_width7 1//---- buffers

double ExtMapBuffer1[]。

double ExtMapBuffer2[];double ExtMapBuffer3[]。

double ExtMapBuffer4[];double ExtMapBuffer5[]。

双倍ExtMapBuffer6[];双倍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;

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

//|自定义指标 初始化函数

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

int init()

{

//---- 指标

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);

}

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

//|自定义指标去初始化函数|

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

int deinit()

{

//----

//----

return(0);

}

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

//|自定义指标迭代函数|

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

int start()

{

int counted_bars=IndicatorCounted()。

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

如果(counted_bars>0) counted_bars--。

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

如果(ad1<0) limit=MathMax(limit,-ad1);

如果(ad2<0)limit=MathMax(limit,-ad2);

如果(ad3<0)limit=MathMax(limit,-ad3);

如果(ad4<0)limit=MathMax(limit,-ad4);

if (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)/6.0。

}

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

{

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

ExtMapBuffer4= ExtMapBuffer2; 如果(ExtMapBuffer4==0) ExtMapBuffer4=EMPTY_VALUE;

ExtMapBuffer5= ExtMapBuffer2; 如果(ExtMapBuffer5==0) ExtMapBuffer5=EMPTY_VALUE;

ExtMapBuffer6= ExtMapBuffer2; 如果(ExtMapBuffer6==0) ExtMapBuffer6=EMPTY_VALUE;

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

}

//----

return(0);

}

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

 
stonehome:
有没有人可以在Indi MA Hull中改变这个:t_ma.mq4

对不起,我的英语不好

石家庄

嗨,石家庄。

你到底想要什么?

t-ma.mq4

附加的文件:
t-ma.mq4  4 kb
eurusdm1.png  45 kb
 

嗨,Mladen ...请检查这个指标...MTF功能不工作...谢谢你

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

PS.我想我的帖子已经被删除了。

附加的文件:
 

嗨,Mntiwana。

我想要另一个MA,不是LWMA,而是MA Hull(HMA)。

如果那会去,那真的很好

石家庄