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

MetaTrader 5用のVGridLine_Intraday X3インジケーターの使い方

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

VGridLine_Intraday X3は、MetaTrader 5専用のインジケーターで、インターデイタイムフレーム(H3を超えない)で3時間ごとの縦の時間グリッドを表示します。また、H2では表示されませんので、注意が必要です。

VGridLine Intraday X3

インジケーターの入力パラメーター:

//+----------------------------------------------+ 
//| インジケーターの入力パラメーター         |
//+----------------------------------------------+ 
//---- 一般設定
input string LinesSirname="VGridLine_Intraday_X3"; // ライン名
input uint WeeklyTotal=4;                       // インデックス用の過去週数
input uint FutureTotal=1;                       // インデックス用の未来ライン数

//---- 週バーの設定
input color Line_Color_W=Gold;         // 週ラインの色
input STYLE Line_Style_W=SOLID_;      // 週ラインのスタイル
input ENUM_WIDTH Line_Width_W=w_5;    // 週ラインの幅
input bool SetBackground_W=true;       // 週ラインの背景表示
input uint FutureTotal_W=1;            // 空の未来履歴のライン数

//---- 日バーの設定
input color Line_Color_D=Red;          // 日ラインの色
input STYLE Line_Style_D=SOLID_;      // 日ラインのスタイル
input ENUM_WIDTH Line_Width_D=w_5;    // 日ラインの幅
input bool SetBackground_D=true;       // 日ラインの背景表示

//---- インターデイバーの設定(3時間)
input color Line_Color_D1=Gray;         // 3時間ラインの色
input STYLE Line_Style_D1=DASHDOTDOT_; // 3時間ラインのスタイル
input ENUM_WIDTH Line_Width_D1=w_1;    // 3時間ラインの幅
input bool SetBackground_D1=true;       // 3時間ラインの背景表示

//---- インターデイバーの設定(6時間)
input color Line_Color_D2=Gray;         // 6時間ラインの色
input STYLE Line_Style_D2=SOLID_;      // 6時間ラインのスタイル
input ENUM_WIDTH Line_Width_D2=w_2;    // 6時間ラインの幅
input bool SetBackground_D2=true;       // 6時間ラインの背景表示

//---- インターデイバーの設定(9時間)
input color Line_Color_D3=Gray;         // 9時間ラインの色
input STYLE Line_Style_D3=DASHDOTDOT_; // 9時間ラインのスタイル
input ENUM_WIDTH Line_Width_D3=w_1;    // 9時間ラインの幅
input bool SetBackground_D3=true;       // 9時間ラインの背景表示

//---- インターデイバーの設定(12時間)
input color Line_Color_D4=Magenta;     // 12時間ラインの色
input STYLE Line_Style_D4=SOLID_;     // 12時間ラインのスタイル
input ENUM_WIDTH Line_Width_D4=w_2;   // 12時間ラインの幅
input bool SetBackground_D4=true;      // 12時間ラインの背景表示

//---- インターデイバーの設定(15時間)
input color Line_Color_D5=Gray;         // 15時間ラインの色
input STYLE Line_Style_D5=DASHDOTDOT_; // 15時間ラインのスタイル
input ENUM_WIDTH Line_Width_D5=w_1;    // 15時間ラインの幅
input bool SetBackground_D5=true;       // 15時間ラインの背景表示

//---- インターデイバーの設定(18時間)
input color Line_Color_D6=Blue;        // 18時間ラインの色
input STYLE Line_Style_D6=SOLID_;     // 18時間ラインのスタイル
input ENUM_WIDTH Line_Width_D6=w_2;   // 18時間ラインの幅
input bool SetBackground_D6=true;      // 18時間ラインの背景表示

//---- インターデイバーの設定(21時間)
input color Line_Color_D7=Gray;         // 21時間ラインの色
input STYLE Line_Style_D7=DASHDOTDOT_; // 21時間ラインのスタイル
input ENUM_WIDTH Line_Width_D7=w_1;    // 21時間ラインの幅
input bool SetBackground_D7=true;       // 21時間ラインの背景表示

関連記事

コメント (0)