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

EMA CROSSOVER for Amibroker (AFL)
sudesh
over 13 years ago
Amibroker (AFL)

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

Works fine with 30 min chart. Also includes optimizations of the crossover periods for fine tuning.

Similar Indicators / Formulas

NMA v 3.6 a optimiser
Submitted by gopal over 12 years ago
Detekcja Buy / Sell
Submitted by leszcz over 12 years ago
CCI System
Submitted by sandipsc over 13 years ago
Augubhai's ORB system v1.1
Submitted by augubhai about 11 years ago
Detrended Price Oscillator System
Submitted by anandnst about 11 years ago
HaConnorsRSI
Submitted by RBuck over 10 years ago

Indicator / Formula

Copy & Paste Friendly
// EMA Cross
Range1=Optimize("range1",7,1,20,1);
Range2=Optimize("range2",7,1,20,1);
Plot( Close, "Price", colorBlack, styleCandle ); 
Plot(EMA( Close,range1), "7d-ema", colorRed );  
Buy = Cross((Close),(EMA(Close,range1))); 
Buystop = Ref(EMA(Close,range1),-1); 
BuyPrice = Max(Buystop,Low); 
Sell = Cross(EMA(Close,range2),(Close)); 
Sellstop = Ref(EMA(Close,range1),-1); 
SellPrice = Min(sellstop,High); 
Short = Sell; 
Cover = Buy; 

0 comments

Leave Comment

Please login here to leave a comment.

Back