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

River V1 for Amibroker (AFL)
xavito
over 12 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 9)
Tags:
oscillator, amibroker

RiverV1
This indicator is a cocktail that combines: Stochastic, RSI, MFI, Bollinger Bands
The indicator draws two lines:
- Black: Cocktail of indicators
- Red: exponential moving average
Buy when the black line cross over the red line
Sell when the black line cross down the red line

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago

Indicator / Formula

Copy & Paste Friendly
//RiverV1
//This indicator is a cocktail that combines
//- Stochastic.
//- RSI.
//- MFI
//- Bollinger Bands
//
// The indicator draws two lines:
// - Black: Cocktail of indicators
// - Red: exponential moving average
// buy when the black line cross over the red line
// sell when the black line cross down the red line

//Params
Period1 = Param("Periods", 21, 2, 200, 1 );
Period2 = Param("Periods", 14, 2, 200, 1 );
m=Param("stock",10,2,50,1);

//Stochastic
stoc=StochK(Period1,3);

//RSI
xrsi=RSIa(Close,Period1);

//MFI
xmf=MFI(period1);

//Bollinger
Ob1= (BBandTop(Close,Period1,2)+BBandBot(Close,Period1,2))/2;
Ob2=BBandTop(Close,Period1,2)+BBandBot(Close,Period1,2);
bollosc=((Close-Ob1)/Ob2)*100;

//Combination of indicators
comb=((xrsi+xmf+bollosc+(stoc/3))/2)-60;
//Ema
mComb=EMA(Comb,m);

//Plot
Plot(0,"",colorBlack);
Plot(comb,"vigia",colorBlack);
Plot(mComb,"vmr",colorRed);

4 comments

1. isc0rpi0

nice one

2. shaker128

Good one

3. bsedoha

Simple and Great.

4. MotaSheth

Interesting work done.
Can you add Buy/Sell/Short/Cover signal so that it can be implemented ?

Thanks,

Leave Comment

Please login here to leave a comment.

Back