Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    Brandon H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Creamers, 04-27-2024, 05:32 AM
    12 responses
    72 views
    0 likes
    Last Post Creamers  
    Started by fredericlebre, Today, 01:19 AM
    0 responses
    4 views
    0 likes
    Last Post fredericlebre  
    Started by TraderJA, Today, 12:06 AM
    0 responses
    6 views
    0 likes
    Last Post TraderJA  
    Started by SnailHorn, Yesterday, 10:49 PM
    0 responses
    8 views
    0 likes
    Last Post SnailHorn  
    Started by naanku, Yesterday, 07:25 PM
    0 responses
    8 views
    0 likes
    Last Post naanku
    by naanku
     
    Working...
    X