diff --git a/Stg_MA_Cross_Shift.mq5 b/Stg_MA_Cross_Shift.mq5 index e4b2fd6..fffa8ba 100644 --- a/Stg_MA_Cross_Shift.mq5 +++ b/Stg_MA_Cross_Shift.mq5 @@ -1,6 +1,6 @@ /** * @file - * Implements MA strategy. + * Implements MA Cross Shift strategy. */ // Includes conditional compilation directives. @@ -33,7 +33,7 @@ input bool Info_On_Chart = true; // Display info on chart. #define ea_name "Strategy MA Cross Shift" #define ea_version "2.000" #define ea_desc "Strategy based on the moving average price indicators implementing shifted cross signal." -#define ea_link "https://github.com/EA31337/Strategy-MA" +#define ea_link "https://github.com/EA31337/Strategy-MA_Cross_Shift" #define ea_author "EA31337 Ltd" // Properties. diff --git a/Stg_MA_Cross_Shift.mqh b/Stg_MA_Cross_Shift.mqh index 6c304dc..de325a3 100644 --- a/Stg_MA_Cross_Shift.mqh +++ b/Stg_MA_Cross_Shift.mqh @@ -137,12 +137,12 @@ class Stg_MA_Cross_Shift : public Strategy { static Stg_MA_Cross_Shift *Init(ENUM_TIMEFRAMES _tf = NULL, EA *_ea = NULL) { // Initialize strategy initial values. - Stg_MA_Cross_Shift_Params_Defaults stg_ma_defaults; - StgParams _stg_params(stg_ma_defaults); + Stg_MA_Cross_Shift_Params_Defaults stg_ma_cross_shift_defaults; + StgParams _stg_params(stg_ma_cross_shift_defaults); // Initialize Strategy instance. ChartParams _cparams(_tf, _Symbol); TradeParams _tparams; - Strategy *_strat = new Stg_MA_Cross_Shift(_stg_params, _tparams, _cparams, "MA"); + Strategy *_strat = new Stg_MA_Cross_Shift(_stg_params, _tparams, _cparams, "MA Cross Shift"); return _strat; }