平均からの乖離
公開日:
:
マネー
平均(移動平均線)からの乖離をトレードシグナルにしていらっしゃる人が結構います。
ということで、乖離率を表示するインディケーターを自作してみました。
ついでに、乖離率の移動平均であるシグナルも表示します。
乖離率の計算に使用する移動平均線の種類も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); } //+------------------------------------------------------------------+
###
関連記事
-
-
最大の銀行、最善ならず
* 最も大きな銀行と言うか、預金者数の多い銀行の困った点は、もし取り付け騒ぎなど急に預金を下ろ
-
-
医療費39兆2千億円 過去最高(4)
こちらは毎日新聞 2014年10月08日の記事ですが、 厚生労働省は8日、2012年度の国
-
-
[FX]冬時間から夏時間への切り替わりの検証(2)
前回の記事「冬時間から夏時間への切り替わりの検証」の結果はミモフタもないものでしたが、夏時間に切
-
-
名波はるか&Kumaさんが教える!![日経225&mini]で始めるシステムトレード入門
名波はるか&Kumaさんが教える!!で始めるシステムトレード入門 名波
-
-
【FX】TMMS というインジケーター
Youtube を観ていると、TMMS というインジケーターが紹介されていました。 TMMS
-
-
超シンプルな自動売買プログラム(4) MACD&RSI
稼ぐ人のFX 儲けの流儀 (超トリセツ) バウンド インターナショナル・ラグジュ
-
-
【FX】2024年4月総括
「【FX】2024年4月第1,2,3,4週総括」の続きです。 2024年4月総括 今月の 1日ご
-
-
【FX】Hippo Trader という EA(2)
かなり以前の記事「【FX】Hippo Trader という EA」の続きです。 この EA の
-
-
【FX】3本の RCI を使った自動売買プログラム (3)
「 3本の RCI を使った自動売買プログラム (2)」の続きです。 少し改良を加えてみました