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 argusthome, 03-08-2026, 10:06 AM
    0 responses
    88 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    48 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    31 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    34 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    68 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X