Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

add extra input Without re-generate indicator

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

    add extra input Without re-generate indicator

    For example, I want to add another input (int) to already created indicator.. what steps I have to do to manually do it from NinjaScript Editor..
    Last edited by ttodua; 09-28-2018, 07:33 AM.

    #2
    Assuming you want to clone a built-in indicator, save as a different name, make your input change and re-compile.

    Comment


      #3
      And that's what i am asking, how to do that "input change".
      what steps.

      Comment


        #4
        First, add a line to the OnStateChange() block:
        Code:
        if (State == State.SetDefaults)
        {
               MyNewInteger    = 13;
        }
        Then, in the Properties region declare it:

        Code:
        [Range(1, int.MaxValue), NinjaScriptProperty]
        [Display(ResourceType = typeof(Custom.Resource), Name = "MyNewInteger", GroupName = "NinjaScriptParameters", Order = 0)]
        public int Period
        { get; set; }
        You can always open a built-in indicator to see how it's done.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CaptainJack, 05-29-2026, 05:09 AM
        0 responses
        87 views
        0 likes
        Last Post CaptainJack  
        Started by CaptainJack, 05-29-2026, 12:02 AM
        0 responses
        57 views
        0 likes
        Last Post CaptainJack  
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        119 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        195 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        176 views
        0 likes
        Last Post CarlTrading  
        Working...
        X