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 Shansen, 08-30-2019, 10:18 PM
    24 responses
    942 views
    0 likes
    Last Post spwizard  
    Started by Max238, Today, 01:28 AM
    0 responses
    9 views
    0 likes
    Last Post Max238
    by Max238
     
    Started by rocketman7, Today, 01:00 AM
    0 responses
    4 views
    0 likes
    Last Post rocketman7  
    Started by wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    28 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    33 views
    0 likes
    Last Post wzgy0920  
    Working...
    X