Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Parameters in Strategies

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

    Parameters in Strategies

    Hi,

    I am coding a strategy that uses multiple indicators. Unfortunately, 2 of those indicators have the same ENUM name for MA type which I need as inputs in the PARAMETERS section. I get this error:

    2011-07-26 18:56:13:011 Failed to execute DB job 'StrategyUpdateJob': There was an error reflecting type 'NinjaTrader.Strategy.GHPRPMMIKIE01'.: There was an error reflecting property 'TSIMA1Type'.: There was an error reflecting type 'NinjaTrader.Indicator.Tsi4JeffFromTMFT.DMAType'.: Types 'NinjaTrader.Indicator.Tsi4JeffFromTMFT.DMAType' and 'NinjaTrader.Indicator.DoubleMANT7v3.DMAType' both use the XML type name, 'DMAType', from namespace ''. Use XML attributes to specify a unique XML name and/or namespace for the type.

    Here are a few of the Params:

    [Description("")]
    [GridCategory("FTZ")]
    public NinjaTrader.Indicator.DoubleMANT7v3.DMAType MA2Type
    {
    get { return m_FTZ_ma2Type; }
    set { m_FTZ_ma2Type = value; }
    }
    [Description("")]
    [GridCategory("TSI")]
    public NinjaTrader.Indicator.Tsi4JeffFromTMFT.DMAType TSIMA2Type
    {
    get { return m_TSI_ma2Type; }
    set { m_TSI_ma2Type = value; }
    }

    I am trying to guess at a [Name()] type parameter to change one of the DMAType XML references within NT7. Do you have a full list of the [] parameter settings?

    Thanks,

    #2
    NJA_MC, can you try adding the XMLIgnore to your properties then for the strategy? Would that help work around the .NET XML issues seen?

    Comment


      #3
      Hi Bertrand,

      Adding this tag did help:
      [XmlIgnore()]

      Thanks. Is this a C# feature or an NT feature. I don't seem to be able to find a list of these type of commands, parameters.

      Comment


        #4
        NJA_MC, this is more of a general C# topic than NT feature.
        AustinNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        116 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        61 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        40 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        43 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        82 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X