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

VGridLine Intraday X6の使い方 - MetaTrader 5用インジケーターの紹介

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

VGridLine Intraday X6は、MetaTrader 5で使用できる便利なインジケーターです。このインジケーターは、6時間ごとの縦の時間グリッドを表示し、H6を超えない日中の時間枠で活躍します。ただし、H2やH4のチャートでは表示されないので、その点はご注意ください。

VGridLine Intraday X6

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

//+----------------------------------------------+ 
//| インジケーター入力パラメータ                   |
//+----------------------------------------------+ 
//---- 一般設定
input string LinesSirname="VGridLine_Intraday_X6"; // ライン名
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_1; // 週のライン幅
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_1; // 日ごとのライン幅
input bool SetBackground_D=true;    // 日ごとのライン背景表示

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

//---- 日中のバー(12時間)の設定
input color Line_Color_D2=Magenta;   // 12時間のライン色
input STYLE Line_Style_D2=DASH_;    // 12時間のラインスタイル
input ENUM_WIDTH Line_Width_D2=w_1; // 12時間のライン幅
input bool SetBackground_D2=true;    // 12時間のライン背景表示

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

 

関連記事

コメント (0)