5520 visningar
Rocket RSI indicator script.
This indicator was originally developed by John Ehlers (Stocks & Commodities V.36:6, RocketRSI - A Solid Propellant For Your Rocket Science Trading).
This indicator was originally developed by John Ehlers (Stocks & Commodities V.36:6, RocketRSI - A Solid Propellant For Your Rocket Science Trading).
Release Notes:
- Added ability to choose the number of the poles of Super Smoother Filter
- Refactored
- Refactored
Release Notes:
Refactored
A list of Free indicators:
https://bit.ly/2S7EPuN
A list of Paid indicators:
https://bit.ly/33MA81f
Earn $30:
https://www.tradingview.com/gopro/?share_your_love=everget
Toss a coin to your witcher:
https://www.paypal.me/alexeverget
https://bit.ly/2S7EPuN
A list of Paid indicators:
https://bit.ly/33MA81f
Earn $30:
https://www.tradingview.com/gopro/?share_your_love=everget
Toss a coin to your witcher:
https://www.paypal.me/alexeverget
Kommentarer
arg = sqrt(2) * PI / length
a1 = exp(-arg)
b1 = 2 * a1 * cos(arg)
c2 = b1
c3 = -pow(a1, 2)
c1 = 1 - c2 - c3
ssf = 0.0
ssf := c1 * src + c2 * nz(ssf) + c3 * nz(ssf)
src?arg?
Because arg was used twice, I was wrong.