Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

RVI for Amibroker (AFL)
brevco
about 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker, standard deviation

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

Debu Market Efficiency Ratio
Submitted by agent301 over 11 years ago
MACD (new timing)
Submitted by tigernifty over 11 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
KILL THE OPERATOR MACD
Submitted by prasadmuni over 11 years ago
%R ++
Submitted by reb almost 14 years ago
DMI Spread
Submitted by pipstar almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_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