How can I Plot a three-period RSI of a one-period rate of change (the daily net change).
This indicator will be an oscillator between 0 to 100 with 2 horizontal lines indicating the 70 and 30 levels.
--------------------------------------------------------------------------------------------------------------------------------------------
Also how can I calculate and plot a short-term pivot point for the 2-period rate of change on daily chart:
i.e. Subtract today's close from the close two days ago (not yesterday but the day before). Thus, close (day one) - close (day three) equals
the 2-period rate of change. Add this number to yesterday's closing price (day two). This will be the short-term pivot number.
- 3-Bar RSI of one-bar close change:
a = rsi((close - ref(close, 1)), 3);
plot(a, "RSI-Change", colorBlue);
plot(70, "", colorGreen, ChartLine, StyleSymbolNone);
plot(30, "", colorRed, ChartLine, StyleSymbolNone);
- Custom drawing plug-in allows you to enter scripts not QuantShare formulas.
To enter formulas, right click on a chart and select "Edit formula".
Please select Help -> QuantShare Lessons for more information.