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

インジケーターの入力パラメーター:
//+----------------------------------------------+ //| インジケーターの入力パラメーター |//+----------------------------------------------+ //---- 一般設定inputstring LinesSirname="VGridLine_Intraday_X3"; // ライン名inputuint WeeklyTotal=4; // インデックス用の過去週数inputuint FutureTotal=1; // インデックス用の未来ライン数//---- 週バーの設定inputcolor Line_Color_W=Gold; // 週ラインの色input STYLE Line_Style_W=SOLID_; // 週ラインのスタイルinput ENUM_WIDTH Line_Width_W=w_5; // 週ラインの幅inputbool SetBackground_W=true; // 週ラインの背景表示inputuint FutureTotal_W=1; // 空の未来履歴のライン数//---- 日バーの設定inputcolor Line_Color_D=Red; // 日ラインの色input STYLE Line_Style_D=SOLID_; // 日ラインのスタイルinput ENUM_WIDTH Line_Width_D=w_5; // 日ラインの幅inputbool SetBackground_D=true; // 日ラインの背景表示//---- インターデイバーの設定(3時間)inputcolor Line_Color_D1=Gray; // 3時間ラインの色input STYLE Line_Style_D1=DASHDOTDOT_; // 3時間ラインのスタイルinput ENUM_WIDTH Line_Width_D1=w_1; // 3時間ラインの幅inputbool SetBackground_D1=true; // 3時間ラインの背景表示//---- インターデイバーの設定(6時間)inputcolor Line_Color_D2=Gray; // 6時間ラインの色input STYLE Line_Style_D2=SOLID_; // 6時間ラインのスタイルinput ENUM_WIDTH Line_Width_D2=w_2; // 6時間ラインの幅inputbool SetBackground_D2=true; // 6時間ラインの背景表示//---- インターデイバーの設定(9時間)inputcolor Line_Color_D3=Gray; // 9時間ラインの色input STYLE Line_Style_D3=DASHDOTDOT_; // 9時間ラインのスタイルinput ENUM_WIDTH Line_Width_D3=w_1; // 9時間ラインの幅inputbool SetBackground_D3=true; // 9時間ラインの背景表示//---- インターデイバーの設定(12時間)inputcolor Line_Color_D4=Magenta; // 12時間ラインの色input STYLE Line_Style_D4=SOLID_; // 12時間ラインのスタイルinput ENUM_WIDTH Line_Width_D4=w_2; // 12時間ラインの幅inputbool SetBackground_D4=true; // 12時間ラインの背景表示//---- インターデイバーの設定(15時間)inputcolor Line_Color_D5=Gray; // 15時間ラインの色input STYLE Line_Style_D5=DASHDOTDOT_; // 15時間ラインのスタイルinput ENUM_WIDTH Line_Width_D5=w_1; // 15時間ラインの幅inputbool SetBackground_D5=true; // 15時間ラインの背景表示//---- インターデイバーの設定(18時間)inputcolor Line_Color_D6=Blue; // 18時間ラインの色input STYLE Line_Style_D6=SOLID_; // 18時間ラインのスタイルinput ENUM_WIDTH Line_Width_D6=w_2; // 18時間ラインの幅inputbool SetBackground_D6=true; // 18時間ラインの背景表示//---- インターデイバーの設定(21時間)inputcolor Line_Color_D7=Gray; // 21時間ラインの色input STYLE Line_Style_D7=DASHDOTDOT_; // 21時間ラインのスタイルinput ENUM_WIDTH Line_Width_D7=w_1; // 21時間ラインの幅inputbool SetBackground_D7=true; // 21時間ラインの背景表示

コメント 0