「VGridLine_Intraday X4」は、4時間ごとの縦の時間グリッドを表示するインジケーターです。このインジケーターは、H4を超えない intraday 時間足のチャートでのみ機能しますので、H3では表示されません。これを使うことで、トレードのタイミングを計るのに便利です。

インジケーターの入力パラメータ:
//+----------------------------------------------+ //| インジケーターの入力パラメータ | //+----------------------------------------------+ //---- 一般設定 input string LinesSirname="VGridLine_Intraday_X4"; // ライン名 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; // 日ラインの背景表示 //---- intradayバーの設定(4時間) input color Line_Color_D1=Gray; // 4時間ラインの色 input STYLE Line_Style_D1=DASHDOTDOT_; // 4時間ラインのスタイル input ENUM_WIDTH Line_Width_D1=w_1; // 4時間ラインの幅 input bool SetBackground_D1=true; // 4時間ラインの背景表示 //---- intradayバーの設定(8時間) input color Line_Color_D2=Lime; // 8時間ラインの色 input STYLE Line_Style_D2=SOLID_; // 8時間ラインのスタイル input ENUM_WIDTH Line_Width_D2=w_2; // 8時間ラインの幅 input bool SetBackground_D2=true // 8時間ラインの背景表示 //---- intradayバーの設定(12時間) input color Line_Color_D3=Gray; // 12時間ラインの色 input STYLE Line_Style_D3=DASHDOTDOT_; // 12時間ラインのスタイル input ENUM_WIDTH Line_Width_D3=w_1; // 12時間ラインの幅 input bool SetBackground_D3=true // 12時間ラインの背景表示 //---- intradayバーの設定(16時間) input color Line_Color_D4=BlueViolet; // 16時間ラインの色 input STYLE Line_Style_D4=SOLID_; // 16時間ラインのスタイル input ENUM_WIDTH Line_Width_D4=w_2; // 16時間ラインの幅 input bool SetBackground_D4=true // 16時間ラインの背景表示 //---- intradayバーの設定(20時間) input color Line_Color_D5=Gray; // 20時間ラインの色 input STYLE Line_Style_D5=DASHDOTDOT_; // 20時間ラインのスタイル input ENUM_WIDTH Line_Width_D5=w_1; // 20時間ラインの幅 input bool SetBackground_D5=true // 20時間ラインの背景表示