Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Select indicator through [NinjaScriptProperty]

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

    Select indicator through [NinjaScriptProperty]

    Can I let the user select an indicator for input to a strategy using the [NinjaScriptProperty]?

    Thanks.

    #2
    Hello cstangor, and thank you for your question.

    This is not directly possible. The attached script will demonstrate why. While it will compile correctly, if you type "SMA(14)" in as its input parameter, it will still fail. Even if NinjaTrader were modified so this succeeds we would still be in a difficult position, as the 14 hard-coded into OnBarUpdate was an arbitrary choice, and if typing SMA(14) were made to work, typing SMA(50) would also be made to work, and you as a coder do not have a view into this input.

    The best option currently available is to take an integer, string, or similar supported input, and use a switch statement based on this input to set up an indicator based on the user's selection, i.e.

    Code:
    [FONT=Courier New]switch inputvar
    {
        case 1 :
            myIndicator = MACD(1, 2, 3);
        case 2 :
            myIndicator = SMA(14);
        default :
            myIndicator = EMA(12);
    }[/FONT]
    Attached Files
    Jessica P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Segwin, 05-07-2018, 02:15 PM
    14 responses
    1,788 views
    0 likes
    Last Post aligator  
    Started by Jimmyk, 01-26-2018, 05:19 AM
    6 responses
    837 views
    0 likes
    Last Post emuns
    by emuns
     
    Started by jxs_xrj, 01-12-2020, 09:49 AM
    6 responses
    3,293 views
    1 like
    Last Post jgualdronc  
    Started by Touch-Ups, Today, 10:36 AM
    0 responses
    13 views
    0 likes
    Last Post Touch-Ups  
    Started by geddyisodin, 04-25-2024, 05:20 AM
    11 responses
    63 views
    0 likes
    Last Post halgo_boulder  
    Working...
    X