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

5/15 high low ema exploration for Amibroker (AFL)

Rating:
2 / 5 (Votes 4)
Tags:
trading system, amibroker, exploration

5/15high & low ema for early & safe buy & sell signals.

Similar Indicators / Formulas

OPTIMIZED ICHIMOKU
Submitted by ritesh.bafna88 over 11 years ago
Reaction Trend System
Submitted by ajayjain90 almost 14 years ago
Behgozin Strength Finder
Submitted by hotaro3 over 11 years ago
KPL with RSI
Submitted by pdkg_gal almost 14 years ago
Intraday Trend Break System
Submitted by nishantndk almost 14 years ago
ema crossovers
Submitted by rushee.g1100 over 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();


_SECTION_BEGIN("ema_crossover");
x = EMA(Close,5);
y = EMA(High,15);
z = EMA(Low,15);
Plot(EMA(Close,5),"",colorRed,styleLine);
Plot(EMA(Low,15),"",colorPaleGreen,styleLine);
Plot(EMA(High,15),"",colorDarkGreen,styleLine);

Buy=Cross(x,z);
PlotShapes(shapeUpArrow*Buy,colorLightBlue);
XR=(EMA(Close,5) * (2 / 6 - 1) - EMA(Low,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11);
Title = Name() + " " + Date()+" " + EncodeColor( colorBlue ) +"5/15 EMA " +EncodeColor( colorBlack )
+ " O " + O + " H " + H + " L " + L + " C "+ C + "\n";
Buy2=Cross(x,y);
PlotShapes(shapeUpArrow*Buy2,colorBlue);
AlertIf( Buy2, "SOUND C:\\Windows\\Media\\notify.wav", "Audio alert", 2 );
XR=(EMA(Close,5) * (2 / 6 - 1) - EMA(High,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11);
Title = Name() + " " + Date()+" " + EncodeColor( colorBlue ) +"5/15 EMA " +EncodeColor( colorBlack )
+ " O " + O + " H " + H + " L " + L + " C "+ C + "\n";

Sell=Cross(y,x);
PlotShapes(shapeDownArrow*Sell,colorWhite);
AlertIf( Sell, "SOUND C:\\Windows\\Media\\chord.wav", "Audio alert", 2 );
XR=(EMA(Close,5) * (2 / 6 - 1) - EMA(High,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11);
Title = Name() + " " + Date()+" " + EncodeColor( colorBlue ) +"5/15 EMA " +EncodeColor( colorBlack )
+ " O " + O + " H " + H + " L " + L + " C "+ C + "\n";

Sell2=Cross(z,x);
PlotShapes(shapeDownArrow*Sell2,colorBlack);
AlertIf( Sell2, "SOUND C:\\Windows\\Media\\chord.wav", "Audio alert", 2 );
XR=(EMA(Close,5) * (2 / 6 - 1) - EMA(Low,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11);
Title = Name() + " " + Date()+" " + EncodeColor( colorBlue ) +"5/15 EMA " +EncodeColor( colorBlack )
+ " O " + O + " H " + H + " L " + L + " C "+ C + "\n";
_SECTION_END();

/////////////////////////////////// Exploration ///////////////////////
Filter = Buy OR Buy2 OR Sell OR Sell2;

/////////// General Columns ////////////////////////
AddTextColumn( FullName( ), "Name" ); 
AddColumn(C,"Close");
AddTextColumn( MarketID( 1 ), "Market name" ); 

//////////////// BUY/SELL SIGNALS ///////

AddColumn( IIf(Buy,1,IIf(Sell,-1,Null)) ,"Signal1",1.0,colorWhite,IIf(Buy,colorGreen,IIf(Sell,colorRed,colorWhite))); 

AddColumn( IIf(Buy2,1,IIf(Sell2,-1,Null)) ,"Signal2",1.0,colorWhite,IIf(Buy2,colorGreen,IIf( Sell2,colorRed,colorWhite))); 

//////////////////////////////////// Exploration over ////////////////////////////

4 comments

1. rajaswamy

IT SHOWING ERRORE CORRECT IT OTHER WISE NO USE FREIND

2. administrator

Fixed

3. kirthi1987

very good afl early detection and low noise

4. swot9

Hi admin…!!

Another good AFL as Krithi said… LOW NOISE>.. THNKS

Leave Comment

Please login here to leave a comment.

Back