Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

adding parameters in strategy

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

    adding parameters in strategy

    Don't Worry I Got it to work sorry.


    Can one add a parameter in a strategy I tried but can not see it when i load the strategy

    #region MarketHours
    //TASK:MARKET OPEN TIME STAMP
    //DEFAULT:
    //VALUE: DATETIME
    // [Browsable(false)]
    [NinjaScriptProperty]
    [PropertyEditor("NinjaTrader.Gui.Tools.TimeEditorKe y")]
    [Display(ResourceType = typeof(Custom.Resource), Name="Market Open", GroupName="Market Hours", Order = 2)]
    public DateTime dMar****pen
    { get; set; }


    //DEFAULT:
    //VALUE: DATETIME
    // [Browsable(false)]
    [NinjaScriptProperty]
    [PropertyEditor("NinjaTrader.Gui.Tools.TimeEditorKe y")]
    [Display(ResourceType = typeof(Custom.Resource), Name="Market Close", GroupName="Market Hours", Order = 3)]
    public DateTime dMarketClose
    { get; set; }
    Last edited by ballboy11; 03-08-2018, 12:22 PM.

    #2
    Hello,

    Thank you for the post.

    Yes, you are able to add parameters, and I do see that what you have provided does work. Can you tell me, have you removed and re-added the strategy to where it was applied after making this change? Also, are you setting a default value in OnStateChange for State.SetDefaults?

    In my test I used the following syntax:

    Code:
    protected override void OnStateChange()
    {
    	if (State == State.SetDefaults)
    	{
    		dMar****pen = NinjaTrader.Core.Globals.Now;
    	}
    }
    
    [NinjaScriptProperty]
    [PropertyEditor("NinjaTrader.Gui.Tools.TimeEditorKey")]
    [Display(Name="Market Open", GroupName="Market Hours", Order = 2)]
    public DateTime dMar****pen 
    { get; set; }
    Which results in: https://www.screencast.com/t/7DgGeTyvrWDR


    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    56 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    33 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    195 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    359 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    280 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X