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)
fisherman
almost 11 years ago
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 12 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk about 11 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji almost 15 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney about 11 years ago
TEMA_Regression Crossover
Submitted by marcheur about 11 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