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

Green Puddles for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
oscillator, trading system, amibroker

this is a simple, yet powerful indicator that is really powerful when coupled with my recent “MACD with signal”.
buying long:
if the stochastic on this indicator is < 20 and rising to 20 ,and, simultaneously, if the MACD is rising then buy!! for added strength ensure that the MA’s slope is moving up.
selling: pick your own exit. but i prefer to use signal(9) to capture maximum profits!!
another proven method is to have stops at -/+ %10.

i hope you guys find this indicator useful. i’d be really happy if someone builds upon this indicator.
happy trading,
spectremind

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Volatility System
Submitted by kaiji about 14 years ago
NIFTYTIGER'S MAGIC LINES
Submitted by niftytiger almost 12 years ago
Zerolag MACD
Submitted by myth.goa almost 12 years ago
MACD Prediction
Submitted by EliStern about 13 years ago
MACD MT4/MT5
Submitted by vivek998877 over 11 years ago

Indicator / Formula

Copy & Paste Friendly
//green puddles//

// by: spectremind//

SetChartOptions(0,0,ChartGrid20 | ChartGrid80 ); 
r = StochD(12); 
Plot( r, "StochD", colorOrange ); 
PlotOHLC( r,r,50,r, "", IIf( r > 50, colorRed, colorGreen ), styleCloud | styleClipMinMax, 20, 0 ); 

Ref1= Ref(EMA(Close,200),-20);
Ref2= Ref(EMA(Close,200),-5);
Val= StochD(12,3,3);
Refval= Ref(Val,-1);

Buy = StochD(12,3,3) <20 AND Ref2 > Ref1 AND Refval < Val;

Sell =Cross(C,EMA(12,26));

Buy= ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);

0 comments

Leave Comment

Please login here to leave a comment.

Back