Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Need to change the RSI indicator that NT8 uses.

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

    Need to change the RSI indicator that NT8 uses.

    In ThinkOrSwim the RSI is much different than Ninja traders RSI.
    Anyone knows where I can get an RSI indicator that is similar to TOS?
    Below is the code for TOS RSI:

    Code:
    input length = 14;
    input over_Bought = 70;
    input over_Sold = 30;
    input price = close;
    input averageType = AverageType.WILDERS;
    input showBreakoutSignals = no;
    
    def NetChgAvg = MovingAverage(averageType, price - price[1], length);
    def TotChgAvg = MovingAverage(averageType, AbsValue(price - price[1]), length);
    def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;
    
    plot RSI = 50 * (ChgRatio + 1);
    plot OverSold = over_Sold;
    plot OverBought = over_Bought;

    #2
    Hello Moaz1155,

    Thanks for your post.

    I am not aware of any existing indicators for NinjaTrader 8 that operate like the ThinkOrSwim indicator you shared.

    You could consider checking out the NinjaTrader Ecosystem User App Share for an indicator that works similarly.

    User App Share: https://ninjatraderecosystem.com/user-app-share/

    This thread will also be open for other community members to share their insights.

    Let me know if I may assist further.

    The NinjaTrader Ecosystem website is for educational and informational purposes only and should not be considered a solicitation to buy or sell a futures contract or make any other type of investment decision. The add-ons listed on this website are not to be considered a recommendation and it is the reader's responsibility to evaluate any product, service, or company. NinjaTrader Ecosystem LLC is not responsible for the accuracy or content of any product, service or company linked to on this website.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    580 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    335 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    102 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X