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?
    BertrandNinjaTrader Customer Service

    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 Kaledus, Today, 01:29 PM
        5 responses
        12 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by Waxavi, Today, 02:00 AM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by alifarahani, Today, 09:40 AM
        5 responses
        23 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by gentlebenthebear, Today, 01:30 AM
        3 responses
        16 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by PhillT, Today, 02:16 PM
        2 responses
        7 views
        0 likes
        Last Post PhillT
        by PhillT
         
        Working...
        X