Skip to main content

Simple Candlestick Pattern Exploration for Amibroker (AFL)

kaiji over 16 years ago Amibroker (AFL)

  • Rating:
    4 / 5 (Votes 2)
  • Tags:
    amibroker, exploration, candlestick

Exploration to find and list Candle patterns. Requires CandleFunctionsInclude.afl (in this library here) to be in your include folder. Modify to suit your needs.

By Herman van den Bergen – psytek [at] magma.ca

Indicator / Formula

Copy & Paste Friendly
#include <CandleFunctionsInclude.afl>

SetOption("NoDefaultColumns",False);
Filter = Status("LastbarInTest");

for(CP=0; Cp<=44; CP++)
{
    PV = CandlePattern(CP);
    AddColumn(PV,PatternName,1.0);
}

3 comments

about 15 years ago

Excellent work Herman… You are really genius. I really liked the script.

over 14 years ago

I am running this after including function module, How ever i am getting empty report.

Am i missing something? How to run this program?

Plz help

Thanks

Leave Comment

Please login here to leave a comment.