Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

No Overload error

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

    No Overload error

    I have checked the code but I do not see my error in the bold syntax.

    protected override void OnBarUpdate()
    {
    double value = EMA(RSI(5), 17)[0]
    }

    #2
    It is because the RSI() takes two parameters, not one.
    Code:
    RSI(int period, int smooth)
    so you would use this instead
    Code:
    double value = EMA(RSI(14,3),17)[0];
    You can view additional RSI() syntax and usage here: http://www.ninjatrader-support.com/H...hIndexRSI.html
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      As the editor intellisense suggests, the RSI has at least 2 parameters.

      Please try something like
      double value = EMA(RSI(<your-RSI-period>, <your-RSI-smooth-value>), 17)[0]

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      558 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      324 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      545 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      547 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X