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 usazencort, Today, 01:16 AM
        0 responses
        1 view
        0 likes
        Last Post usazencort  
        Started by kaywai, 09-01-2023, 08:44 PM
        5 responses
        603 views
        0 likes
        Last Post NinjaTrader_Jason  
        Started by xiinteractive, 04-09-2024, 08:08 AM
        6 responses
        22 views
        0 likes
        Last Post xiinteractive  
        Started by Pattontje, Yesterday, 02:10 PM
        2 responses
        20 views
        0 likes
        Last Post Pattontje  
        Started by flybuzz, 04-21-2024, 04:07 PM
        17 responses
        230 views
        0 likes
        Last Post TradingLoss  
        Working...
        X