TulipCharts / tulipnode

Tulip Node is the official node.js wrapper for Tulip Indicators. It provides over 100 technical analysis overlay and indicator functions.
https://tulipindicators.org
GNU Lesser General Public License v3.0
497 stars 86 forks source link

Why RSI, AO etc are WAY off from tradingview indicators? #84

Open mmaestrini opened 1 year ago

mmaestrini commented 1 year ago

Hi I am testing this on some crypto charts and I am comparing the output of this from a few tradingview indicators and there is a rather large mismatch and I don't get what it is due to.

Can you perhaps explain or point me at what it might be?

For instance for RSI i do this

    const rsi5m = await ta.rsi(close5m, 14);
    const rsi15m = await ta.rsi(close15m, 14);
    const rsi1h = await ta.rsi(close1h, 14);

And then compare it with TMA v2 Divergences or VMC cipher V rsi, and it is SUPER off. Any idea why?

dilame commented 1 year ago

https://github.com/bennycode/trading-signals/issues/64#issuecomment-1539209738