Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
RVI for Amibroker (AFL)
This indicator is based on Standard Deviation and is best used with a trending indicator. It does NOT show direction, but helps determine the timing of an entry, either long or short.
When the line turns green and rises above the 50 line, this is the best time to enter the trade.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("RVI Color"); SD10=StDev(C,10); RVI=RSIa(SD10,10); Color = IIf(RVI > Ref(RVI,-1) AND RVI > 50, colorBrightGreen, IIf(RVI < Ref(RVI,-1) AND RVI < 50, colorRed, colorBlue)); Plot(RVI,"RVI",Color,styleLine| styleThick); Plot(50,"",colorBlack); _SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back