Stock scan formula for Amibroker (AFL)
meceng1985 over 12 years ago Amibroker (AFL)
This what I use for finding stocks for analysing further. It shows if stoch, macd,cci positive for a share..
Indicator / Formula
Copy & Paste Friendly
Filter=1;
AddTextColumn( FullName(), "Security Name", 77 , IIf( ROC(C, 1 ) > 0, colorGreen, colorRed ));
AddColumn(C,"Kapanis",1.2, IIf( ROC(C, 1 ) > 0, colorGreen, colorRed ));
AddColumn(RSI(14),"RSI-14",1.2, IIf( ROC(C, 1 ) > 0, colorGreen, colorRed ));
AddColumn(CCI(14),"CCI-14",1.2, IIf( ROC(C, 1 ) > 0, colorGreen, colorRed ));
AddColumn(StochD(14,Dsmooth=3),"Stoch-14",1.2, IIf( ROC(C, 1 ) > 0, colorGreen, colorRed ));
AddColumn(MACD(fast=12,slow=26),"MACD",1.2, IIf( ROC(C, 1 ) > 0, colorGreen, colorRed ));
0 comments
Leave Comment
Please login here to leave a comment.