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 CarlTrading, Yesterday, 11:51 AM
        0 responses
        17 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, Yesterday, 11:48 AM
        0 responses
        21 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-25-2026, 09:53 PM
        0 responses
        17 views
        0 likes
        Last Post CaptainJack  
        Started by CaptainJack, 03-25-2026, 09:51 PM
        0 responses
        13 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 03-23-2026, 11:13 AM
        0 responses
        20 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X