2016/10/31

2016/10/31 (一) EA编程之MQL4- Force Index強力指標 !

(:本站文案除原創外,其餘訊息来自互联网收集和整理,请自行参酌。)
2016/10/31 ()

EA编程之MQL4- Force Index強力指標 !

>>><<< $ ¥
€ >>><<<

Force Index強力指標
 (略圖)

iForce
是震盪指標,判斷市場漲跌。

【用法】

1
Force度數小於0,且價格下跌,市場處於跌勢;

2
Force度數大於0,且價格上漲,市場處於漲勢;

3
Force指標需要與平均移動趨勢指標聯合使用。

【語法】double iForce( string symbol, int timeframe, int period, int ma_method, int applied_price, int shift)

1
symbol 指定貨幣對,NULL為默認當前貨幣對

2
timeframe ma_period ma_method 時間週期,0為當前時間週期 主線平均週期。默認選13 MA方法,通常選指數平滑MODE_EMA

應用價格。默認選收盤價PRICE_CLOSE

指定柱值,0為當前柱,1為前一個柱,以此類推 5 applied_price 6 shift

【代碼】

iForce(NULL, 0, 13,MODE_EMA,PRICE_CLOSE,0)

待續


>>><<< $ ¥€ >>><<<

(:本站文案除原創外,其餘訊息来自互联网收集和整理,请自行参酌。)