Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Add Custom Defaults when enabling strategy

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

    Add Custom Defaults when enabling strategy

    How would I add custom variables that are set when I enable the strategy? For example: targets, stops, order quantity, etc.

    #2
    Hello Lumbeezl,
    Thanks for your post.

    You would do this by creating a public property for the variable and setting it inside State.SetDefaults. Something like the following snippet:

    Code:
    [NinjaScriptProperty]
    [Range(1, double.MaxValue)]
    [Display(Name="MyInt", Order=1, GroupName="Parameters")]
    public int MyInt
    { get; set; }

    I suggest creating your inputs in the Strategy Builder first, and then viewing the code to see what was added.
    Last edited by NinjaTrader_JoshG; 03-22-2019, 12:56 PM.
    Josh G.NinjaTrader Customer Service

    Comment


      #3
      Why would you want a public variable and not private?

      Comment


        #4
        Lumbeezl,

        Because you have a property. This is really a general C# concept so I suggest doing your own research on this one.

        Essentially it allows you to access the variable from outside of the script.
        Josh G.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        169 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        324 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        250 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        351 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        180 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X