Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Beta bug? Strategy Analyzer backtest properties window showing wrong properties

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Beta bug? Strategy Analyzer backtest properties window showing wrong properties

    I didn't find another reference to this, apologies if already posted.

    When backtesting against an instrument (ex. USDJPY), and selecting a strategy *other than the first default one in the properties window* the user defined properties do not change to match the selected strategy, they stay as the properties that go with the default strategy. Not clear what values are actually used when it runs.

    In case this is useful info, the strategy I've selected is one that I exported from v6 and imported into v6.5_8. The properties that don't work right have been edited in code (added by the wizard originally, but edited). This might suggest an obvious code problem, however, the properties have worked in v6.

    Code for properties:

    variables region
    privatebool noEntries = false; // Used to prevent entries on Mondays and Fridays and after hours
    privatedouble trailingSLPercent = .05;
    privatedouble profitTarget = 250;
    privatedouble stopLoss = 25;
    privateint reversalPeriod = 1;
    privatedouble maxPositionProfit = 0;
    privatedouble currentPositionProfit = 0;

    property procedure region
    [Description("Trailing stoploss percent")]
    [Category(
    "Parameters")]
    publicdouble TrailingSLPercent
    {
    get { return trailingSLPercent; }
    set { trailingSLPercent = Math.Max(.05, value); }
    }
    [Description(
    "Position profit target")]
    [Category(
    "Parameters")]
    publicdouble ProfitTarget
    {
    get { return profitTarget; }
    set { profitTarget = Math.Max(1, value); }
    }
    [Description(
    "Position stoploss")]
    [Category(
    "Parameters")]
    publicdouble StopLoss
    {
    get { return stopLoss; }
    set { stopLoss = Math.Max(1, value); }
    }
    [Description(
    "ReversalPeriod")]
    [Category(
    "Parameters")]
    publicint ReversalPeriod
    {
    get { return reversalPeriod; }
    set { reversalPeriod = Math.Max(1, value); }
    }



    #2
    This is a limitation of the strategy dialogue window. To work around this, name input variables with unique names.
    RayNinjaTrader Customer Service

    Comment


      #3
      Ah, ok. Thanks for the response. Sounds like I can just create unique names across strategies.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by warreng86, 11-10-2020, 02:04 PM
      5 responses
      1,357 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by Perr0Grande, Today, 08:16 PM
      0 responses
      3 views
      0 likes
      Last Post Perr0Grande  
      Started by elderan, Today, 08:03 PM
      0 responses
      5 views
      0 likes
      Last Post elderan
      by elderan
       
      Started by algospoke, Today, 06:40 PM
      0 responses
      10 views
      0 likes
      Last Post algospoke  
      Started by maybeimnotrader, Today, 05:46 PM
      0 responses
      12 views
      0 likes
      Last Post maybeimnotrader  
      Working...
      X