多时间框架指标 - 页 72

 

指标

嗨大家好。

有没有人有一个 MTF Movingaverages的指标,有HIGH/LOW选项?

恳请帮助,请赐教。

Dilip

 
pramukhswami:
嗨!大家好。

有没有人有一个叫MTF Movingaverages的指标,有HIGH/LOW选项?

恳请帮助和提供。

Dilip

MTFMovingaverages 是在本主题的第一篇文章中发布的。你可以改变这个指标中的高价或低价选项的设置。请看附图:白线是MTF_moving_averahges指标在高价模式下与M30趋势系统一起。

在MetaEditor中打开该指标,你会看到。

//---- input parameters

/*************************************************************************

PERIOD_M1 1

PERIOD_M5 5

PERIOD_M15 15

PERIOD_M30 30

PERIOD_H1 60

PERIOD_H4 240

PERIOD_D1 1440

PERIOD_W1 10080

PERIOD_MN1 43200

You must use the numeric value of the timeframe that you want to use

when you set the TimeFrame' value with the indicator inputs.

---------------------------------------

PRICE_CLOSE 0 Close price.

PRICE_OPEN 1 Open price.

PRICE_HIGH 2 High price.

PRICE_LOW 3 Low price.

PRICE_MEDIAN 4 Median price, (high+low)/2.

PRICE_TYPICAL 5 Typical price, (high+low+close)/3.

PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4.

You must use the numeric value of the Applied Price that you want to use

when you set the 'applied_price' value with the indicator inputs.

---------------------------------------

MODE_SMA 0 Simple moving average,

MODE_EMA 1 Exponential moving average,

MODE_SMMA 2 Smoothed moving average,

MODE_LWMA 3 Linear weighted moving average.

You must use the numeric value of the MA Method that you want to use

when you set the 'ma_method' value with the indicator inputs.

**************************************************************************/

extern int TimeFrame=0;

extern int MAPeriod=13;

extern int ma_shift=0;

extern int ma_method=MODE_SMA;

extern int applied_price=PRICE_CLOSE;
附加的文件:
 

是否有人为DeMark 趋势突破创建了一个MTF,如果没有,能否有人为这个指标创建一个MTF。

附加的文件:
 
pramukhswami:
嗨!大家好。

有没有人有一个叫MTF Movingaverages的指标,有HIGH/LOW选项?

恳请帮助和提供。

Dilip

我想你是指这个

附加的文件:
 
michh:
我想你是指这个

这是旧的;在这个主题中,有 igorad 的 mtf ma v1。

 

请帮助我为MTF编码这个TREND。

非常感谢。

附加的文件:
trend.mq4  4 kb
 

指标

有没有人有MTF MA指标,有HIGH/LOW选项?

恳请帮助,请赐教。

迪利普

 
holy_phoenix:
请帮助我对MTF的TREND进行编码 非常感谢。

好吧,这是给你的

附加的文件:
mtf-trend.mq4  4 kb
 
increase:
好了,这是给你的

非常感谢您的帮助

 

我非常喜欢Stoch,但当我在H1的输入时间框架1440(D1)上使用它时,Stoch在D1上看起来是不同的。

线条相互之间太接近了。

谁能让它变得正常

附加的文件: