【MT4隔離】MetaTrader初心者専用10【脱ゆとりへ】

このエントリーをはてなブックマークに追加
425Trader@Live!
>>421
チャートウィンドウではなく下のセパレートウィンドウに表示させたいという事ですね。
ひとまず以下の二つをダウンロードしてください。
Heiken_Ashi_All_Ma_MTF.mq4
http://forum.alpari.org/attachment.php?attachmentid=66032&d=1226582561
AllAverages_v2.2.mq4
http://forum.alpari.org/attachment.php?attachmentid=66034&d=1226582754

ダウンロード後にMeta EditorでHeiken_Ashi_All_Ma_MTF.mq4を開きます。
これを
#property indicator_chart_window
以下にに変更してコンパイルして下さい。
#property indicator_separate_window

それとMA_Methodで選択出来るMAの種類
// MA_Method= 0: SMA - Simple Moving Average
// MA_Method= 1: EMA - Exponential Moving Average
// MA_Method= 2: Wilder - Wilder Exponential Moving Average
// MA_Method= 3: LWMA - Linear Weighted Moving Average
// MA_Method= 4: SineWMA - Sine Weighted Moving Average
// MA_Method= 5: TriMA - Triangular Moving Average
// MA_Method= 6: LSMA - Least Square Moving Average (or EPMA, Linear Regression Line)
// MA_Method= 7: SMMA - Smoothed Moving Average
// MA_Method= 8: HMA - Hull Moving Average by Alan Hull
// MA_Method= 9: ZeroLagEMA - Zero-Lag Exponential Moving Average
// MA_Method=10: DEMA - Double Exponential Moving Average by Patrick Mulloy
// MA_Method=11: T3 - T3 by T.Tillson
// MA_Method=12: ITrend - Instantaneous Trendline by J.Ehlers
// MA_Method=13: Median - Moving Median
// MA_Method=14: GeoMean - Geometric Mean
// MA_Method=15: REMA - Regularized EMA by Chris Satchwell
// MA_Method=16: ILRS - Integral of Linear Regression Slope
// MA_Method=17: IE/2 - Combination of LSMA and ILRS
// MA_Method=18: TriMAgen - Triangular Moving Average generalized by J.Ehlers
// MA_Method=19: VWMA - Volume Weighted Moving Average


表示させるのはHeiken_Ashi_All_Ma_MTF.mq4これだけで良いです。