which default params is different between vbt.RSI.run() & vbt.talib('RSI').run().real #470
-
|
What is the difference between the default parameters between vbt.RSI.run() & vbt.talib('RSI').run().real (window=12) vbt.RSI.run() give me RSI vbt.talib('RSI').run().real is same as talib.RSI() Which params are different between them? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
i have get the answer on offical webside If you compare RSI values of vectorbt and TA-Lib, you will notice that they differ. There are different smoothing methods: vectorbt uses SMA and EMA, while other libraries and TradingView use the original Wilder's method. There is no right or wrong method. If you want to use the Wilder's method, use vbt.talib('RSI'). |
Beta Was this translation helpful? Give feedback.
i have get the answer on offical webside
If you compare RSI values of vectorbt and TA-Lib, you will notice that they differ. There are different smoothing methods: vectorbt uses SMA and EMA, while other libraries and TradingView use the original Wilder's method. There is no right or wrong method. If you want to use the Wilder's method, use vbt.talib('RSI').