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

Kicker Exploration for Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, exploration, kicker

Kicker exploration as provided by TAZ blog

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
DIX50,20,10
Submitted by morgen over 13 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji about 14 years ago
4-Day-Range Switch
Submitted by santho_sd over 13 years ago
Volume Spike Exploration
Submitted by ngocleasing over 13 years ago

Indicator / Formula

Copy & Paste Friendly
// THIS IS KICKER EXPLORATION OBTAINED FROM TAZ BLOG . ACCORDING TO HIS STOCKCHARTS EXPLORATION I HAV SUITABLY
//MODIFIED IT FOR AMIBROKER. I DID THIS WITH THE HELP OF POWERSCAN. I DONT KNOW WHETHER I HAVE DONE IT CORRECTLY. 
// SENIORS PLEASE CORRECT IF ANY MISTAKES FOUND. I HAV ALSO INCLUDED STOCKCHARTS EXPLORATION CODE. REFER
//IT FOR FURTHER DETAILS

//STOCKCHARTS EXPLORATION
//[type = stock] AND [country = us] AND[daily EMA(60,daily Volume) > 150000] AND 
//[daily Open > yesterday's daily Close] AND [daily Open > yesterday's daily High] AND 
//[daily Low > yesterday's daily Close] AND [daily Low > yesterday's daily High] AND 
//[yesterday's daily Close < yesterday's daily Open] AND [Close >= 5] 

//The Volume (Average) of 60 bars ago is greater than 1000000 */

Filter1 = Ref( MA( Volume, 15 ), -60 ) > 1000000;

/* Create date: 22 Jun 2010
The Open Price of the current bar is greater than the Close Price of 5 bars ago */

Filter2 = Open >= Ref( Close, -5 );

/* Create date: 22 Jun 2010
The Open Price of the current bar is greater than the High Price of 1 bar ago */

Filter3 = Open > Ref( High, -1 );


/* Create date: 22 Jun 2010
The Low Price of the current bar is greater than the High Price of 5 bars ago */

Filter4 = Low > Ref( Close, -5 );


/* Create date: 22 Jun 2010
The Low Price of the current bar is greater than the High Price of 1 bar ago */

Filter5 = Low > Ref( High, -1 );

/* Create date: 22 Jun 2010
The Close Price of 5 bars ago is less than the Open Price of the current bar */

Filter6 = Ref( Close, -5 ) < Open;
AddColumn( Close, "Close  " );
AddColumn( Open, "Open  " );
AddColumn( High, "High  " );
AddColumn( Low, "Low  " );
AddColumn( Volume, "Volume      " );


Filter = Filter1 AND Filter2 AND Filter3 AND Filter4 AND Filter5 AND Filter6;

2 comments

1. minhanhco123

it isn’t working

2. SADAI

It is working, Thanks

Leave Comment

Please login here to leave a comment.

Back