Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

TRIX indicator calculation looks wrong

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

    TRIX indicator calculation looks wrong

    Hi NT,

    Your calculation of the TRIX looks suspicious. You have:

    EMA tripleEma = EMA(EMA(EMA(Inputs[0], period), period), period);
    double trix = 100 * ((tripleEma[0] - tripleEma[1]) / tripleEma[0]);
    Default.Set(trix);

    Whereas I think it should be:

    EMA tripleEma = EMA(EMA(EMA(Inputs[0], period), period), period);
    double trix = 100 * ((tripleEma[0] - tripleEma[1]) / tripleEma[1]);
    Default.Set(trix);

    In other words, you are normalising by the current value of the triple exponential, rather than the previous.

    Here are three references for you to check

    TRIX uses a triple-smoothed moving average to eliminate cycles shorter than the indicator period.



    These are just the first ones that google gave me. I don't know if there is an 'official' reference. I was just looking at the code and it didnt make sense. I didn't see any websites calculating it the way you do.

    cheers

    #2
    Hello,

    Thanks for posting.



    We use this reference for most of our indicators. There isn't any one accepted value here as what is correct. In these cases we always default to FMLabs or stocks and commodities magazine where FMLabs got their forumula for the version to use inside of NinjaTrader.

    Let me know if I can be of further assistance.
    BrettNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    106 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    54 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    36 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    38 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    74 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X