平均からの乖離
公開日:
:
マネー
平均(移動平均線)からの乖離をトレードシグナルにしていらっしゃる人が結構います。
ということで、乖離率を表示するインディケーターを自作してみました。
ついでに、乖離率の移動平均であるシグナルも表示します。
乖離率の計算に使用する移動平均線の種類も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で儲けたい! / 山本 有花 青木俊郎
山本有花のFXで儲けたい! 山本 有花 ダイヤモンド社 2005-08-05
-
-
KOSPI ベアETN が熱い
ムンさんのおかげで韓国経済がボロボロになりかけています。 このまま日本からの制裁(まだ制裁にな
-
-
[FX] Tokyo Box(ロンドン・コーリング)プログラムにトレーリングストップをつける
有名な FX のトレード手法の Tokyo Box(ロンドン・コーリング)ですが、以前これにはまって
-
-
アメリカ長期債券ETF への移行(まだ先は長い)
この前、ナマの債券(個別の債券)を全部売却した話をしました。 債券を全部売却(売却益ありま
-
-
【FX】easyMarkets 口座開設&トレード開始
easyMarkets という海外FX業者の口座の開設がようやく許可され、本日から Ubuntu デ
-
-
【FX】Voorloper という EA(6) 4月分トレード結果
Voorloper という EA は、主力で使っている Dark Venus より優れているわけでは
-
-
FXブレイクアウトシステムのテスト(2)
昨日のブレイクアウトシステムの検証の続きです。 USDCHF(ドルフラン)日足の成績がいいよう
-
-
【FX】VantageTrading という海外業者
わたしのようにスキャルピングやデイトレが主体のものにとっては、スプレッドが狭い業者を選ぶのは最も重要
-
-
FOOD & LIFE COMPANIES の株式を 100株取得しました
本日、渦中のスシローを傘下に持つ FOOD & LIFE COMPANIES(3563)を







