Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

no user input recognition

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

    no user input recognition

    I have replaced my RSI periods with input variables, to see if i can optimize the periods i chose.
    But now somehow NT does not recognize my input variables for optimization:
    (there is nothing to optimize)


    {
    #region Variables
    // Wizard generated variables
    private int rSI01 = 4; // Default setting for rSI01
    private int rSI02 = 9; // Default setting for rSI02

    // User defined variables (add any user defined variables below)
    #endregion

    /// <summary>
    /// This method is used to configure the strategy and is called once before any strategy method is called.
    /// </summary>
    protected override void Initialize()
    {
    Add(RSI(rSI01, 0));
    Add(RSI(rSI02, 0));

    Add(EMA(21));
    Add(EMA(55));
    Add(EMA(200));
    Add(ATR(14));
    //SetStopLoss("",CalculationMode.Ticks, (ATR(14)[0]) * (250), false);

    CalculateOnBarClose = true;

    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {
    // Condition set 1
    if (EMA(21)[0] > EMA(55)[0]
    && EMA(55)[0] > EMA(200)[0]
    && EMA(55)[0] > EMA(55)[1]
    && EMA(200)[0] > EMA(200)[1]
    // CrossBelow(Low, EMA(21), 1))
    && CrossBelow(RSI(rSI01, 0).Avg, 30, 1))
    {
    EnterLong(DefaultQuantity, "");
    }
    SetStopLoss("",CalculationMode.Ticks, (ATR(14)[0]) * (250), false);

    // Condition set 2
    if (CrossAbove(RSI(rSI01, 0).Avg, 75, 1))
    {
    ExitLong("");
    }

    #2
    Hello sosMsos,

    In addition to the private declaration there, you need it declared as public in the properties region. This structure is provided for you automatically when you create inputs through the wizard, but you can also add with code. This post can help with the needed properties structure.
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    67 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    36 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    61 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    62 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X