// Downloaded From https://www.WiseStockTrader.com // 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;