Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Can't seem to select variables

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

    Can't seem to select variables

    Not sure what is going wrong with a Slope indicator I developed. When I compile it I get no errors but when I plot it for some reason I do not see the option to select different MA types that I have included in the indicator.

    I don't what is wrong, can someone help please?
    Attached Files

    #2
    pandayav,

    You did not set up the variable as a user defined input for the strategy. Unfortunately, using object types as user defined input isn't supported. You could possibly use an integer to identify which type of moving average you want, i.e. assign 1 to EMA, 2 to SMA, etc. This would be supported.

    Please let me know if I may assist further.
    Adam P.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by pandyav View Post
      Not sure what is going wrong with a Slope indicator I developed. When I compile it I get no errors but when I plot it for some reason I do not see the option to select different MA types that I have included in the indicator.

      I don't what is wrong, can someone help please?
      You need to set up the MAType as a public variable, before you can access it publicly.

      Code:
      [Description("")]
      [GridCategory("Parameters")]
      public MAType MovingAverageType
      {
            get { return MAType1; }
            set { MAType1 = value; }
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by andrewtrades, Today, 04:57 PM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by chbruno, Today, 04:10 PM
      0 responses
      6 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Started by josh18955, 03-25-2023, 11:16 AM
      6 responses
      436 views
      0 likes
      Last Post Delerium  
      Started by FAQtrader, Today, 03:35 PM
      0 responses
      7 views
      0 likes
      Last Post FAQtrader  
      Started by rocketman7, Today, 09:41 AM
      5 responses
      19 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X