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 traderqz, Today, 12:06 AM
        6 responses
        12 views
        0 likes
        Last Post traderqz  
        Started by Skifree, Today, 03:41 AM
        3 responses
        12 views
        0 likes
        Last Post Skifree
        by Skifree
         
        Started by traderqz, Yesterday, 09:06 AM
        5 responses
        33 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by guillembm, Today, 11:25 AM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by owensd, 04-21-2024, 11:34 PM
        9 responses
        34 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X