Simple Candlestick Pattern Exploration for Amibroker (AFL)
kaiji over 16 years ago Amibroker (AFL)
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
Leave Comment
Please login here to leave a comment.
I Think this for All upper versions, >4.90
Excellent work Herman… You are really genius. I really liked the script.
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