平均からの乖離
公開日:
:
マネー
平均(移動平均線)からの乖離をトレードシグナルにしていらっしゃる人が結構います。
ということで、乖離率を表示するインディケーターを自作してみました。
ついでに、乖離率の移動平均であるシグナルも表示します。
乖離率の計算に使用する移動平均線の種類も4種類から選べるようにしました。
サブウィンドウが乖離率です。
え、ボリンジャーバンドを見るから要らない!?
プログラムソース
//+------------------------------------------------------------------+
//| yasciiKairi01.mq4
//+------------------------------------------------------------------+
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Orange
#property indicator_color2 Violet
#property indicator_level1 0
//---- input parameters
extern int MA_period = 20;
extern int Sig_period = 9;
extern int MA_method = 0; // SMA(0), EMA(1), SMMA(2), LWMA(3)
//---- buffers
double kairi[];
double kairiX[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
IndicatorBuffers(2);
IndicatorShortName("Kairi(" + MA_period + ")");
SetIndexStyle(0, DRAW_LINE);
SetIndexBuffer(0, kairi);
SetIndexBuffer(1, kairiX);
SetIndexStyle(1, DRAW_LINE);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars = IndicatorCounted();
int i, j, limit ;
// to prevent possible error
if(counted_bars < 0)
{
return(-1);
}
if(MA_method >= 4)
{
MA_method = 0;
}
limit = Bars - counted_bars;
for(i = limit - MA_period ; i >= 0; i--)
{
double sma20 = iMA(NULL, 0, MA_period, 0 , MA_method , PRICE_CLOSE, i) ;
kairi[i] = 100.0 * (Close[i]- sma20) / sma20 ;
}
for(j = limit - MA_period - Sig_period; j >= 0; j--)
{
kairiX[j] = iMAOnArray(kairi,0,Sig_period,0,MODE_EMA,j);
}
return(0);
}
//+------------------------------------------------------------------+
###
関連記事
-
-
【FX】Algo Plus という EA
昨日の記事「【FX】2024年1月集計」でちょっと紹介した Algo Plus という EA(MT4
-
-
[FX] 2015/4/13 EA 緊急停止 トレンドが消失
昨日は週明けの月曜日ということもあり、通常よりも夜間の仕事が多めで、夜12時ごろまで仕事をしてい
-
-
日本の貨幣コレクションというムック
「日本の貨幣コレクション」というムックが販売されています。 ディアゴスティーニではなく、Hac
-
-
【FX】FX相場は先月くらいから比較的堅調
ようやく魔の夏枯れ相場を脱し、9月初旬からうちの自動売買プログラムたちが調子を取り戻し始めま
-
-
月刊「FX攻略.com 2019年12月号」におまけの AI インジケーター(2)
前回紹介した「月刊「FX攻略.com 2019年12月号」におまけの AI インジケーター」ですが、
-
-
【FX】 Exness 口座を VPS で運用開始
Exness に 500$以上入金し、100ドル以上の余剰証拠金があれば無料で VPS が使用できま
-
-
マンガ 生き残りの株入門の入門 / 矢口 新 てらおかみちお
マンガ 生き残りの株入門の入門―あなたは投資家?投機家? (ウィザードコミッ
-
-
アメリカ利上げ 中国どうなる?
昨日、アメリカがゼロ金利を解除することを発表しました。 上げ幅が思ったより小さいですが、これか
-
-
【FX】IS Black という EA
昔から知られている FX自動売買ソフト(EA)に IS Black というのがあります。 似た
-
-
東京帝大教授が教えるお金・仕事に満足し、人の信頼を得る法 / 本多静六(2)
一昨日の記事「東京帝大教授が教えるお金・仕事に満足し、人の信頼を得る法 / 本多静六(1)」







