ホーム テクニカル指標 投稿

i-Sessions: MetaTrader 5用の取引セッションインジケーター

添付ファイル
1643.zip (2.65 KB, ダウンロード 0回)

こんにちは、トレーダーの皆さん!今日は、MetaTrader 5用の非常に便利なインジケーター「i-Sessions」についてご紹介します。このインジケーターは、8つの取引セッションを色分けして視覚的に表示してくれます。

インジケーターの設定

i-Sessionsの設定は簡単で、以下のように各セッションの開始時間と終了時間を指定することができます。

//+-----------------------------------+
//|  インジケーターの入力パラメータ    |
//+-----------------------------------+
input int    NumberOfDays=50;
input string S1Begin   ="00:55";
input string S1End     ="03:55";
input color  S1Color   =clrDarkSlateGray;
input string S2Begin   ="03:55";
input string S2End     ="06:55";
input color  S2Color   =clrDarkSlateGray;
input string S3Begin   ="06:55";
input string S3End     ="09:55";
input color  S3Color   =clrDarkSlateGray;
input string S4Begin   ="09:55";
input string S4End     ="12:55";
input color  S4Color   =clrDarkSlateGray;
input string S5Begin   ="12:55";
input string S5End     ="15:55";
input color  S5Color   =clrDarkSlateGray;
input string S6Begin   ="15:55";
input string S6End     ="18:55";
input color  S6Color   =clrDarkSlateGray;
input string S7Begin   ="18:55";
input string S7End     ="21:55";
input color  S7Color   =clrDarkSlateGray;
input string S8Begin   ="21:55";
input string S8End     ="23:55";
input color  S8Color   =clrDarkSlateGray;

インジケーターの歴史

このインジケーターは、MQL4で最初に実装され、2007年9月26日にmql4.comのCode Baseに公開されました。

Fig.1 i-Sessionsインジケーター

Fig.1 i-Sessionsインジケーター

関連記事

コメント (0)