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 Breakout for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, exploration

Exploration for EMA breakout

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk over 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney over 10 years ago
TEMA_Regression Crossover
Submitted by marcheur over 10 years ago

Indicator / Formula

Copy & Paste Friendly
/*
	TimeFrameSet(inWeekly); //Weekly
//	e = EMA(C,15) - Ref(EMA(C,15), -1);
	stcross =	Cross(StochK(),StochD())
	TimeFrameRestore();
	stcrossw = TimeFrameExpand(stcross, inWeekly);
*/
	TimeFrameSet(inWeekly); //Weekly

	periods = 50 ;
//	breakout = Cross(H,EMA(C,periods)) ;
	breakout = L > EMA(C,periods) ;
	TimeFrameRestore();
	breakoutw = TimeFrameExpand(breakout, inWeekly);
	Buy = breakoutw ;
//	Exploration for EMA breakout
	Filter= breakoutw AND C > 7 AND (MA(V,20) > 50000) ; 
	AddColumn(breakout,"Breakout",1) ;

1 comments

1. sachin11

Does not work friend.

Leave Comment

Please login here to leave a comment.

Back