Guppy oscillator for Amibroker (AFL)
prakash2009 over 15 years ago Amibroker (AFL)
Here is an another oscillator with high accuracy.
Screenshots
Indicator / Formula
Copy & Paste Friendly
//Source = Leon Wilson, www.wilsontechstats.com/software/MMAConstruction.htm
//AFL Translation = Mubashar Virk, mavirk@gmail.com
Trigger = Param("Trigger",21,1,55,1);
Short1=(EMA(Close,3)+EMA(Close,5)+
EMA(Close,8)+EMA(Close,10)+
EMA(Close,12)+EMA(Close,15));
LONG2 =(EMA(Close,30)+EMA(Close,35)+
EMA(Close,40)+EMA(Close,45)+
EMA(Close,50)+EMA(Close,60));
GuppyMMAOscillator = ((Short1-Long2)/Long2)*100;
Plot (GuppyMMAOscillator, "Guppy MMA Oscillator", colorRed);
Plot (EMA(GuppyMMAOscillator, Trigger), "Trigger", colorBrightGreen);
Plot (0, "", colorWhite, styleNoLabel);3 comments
Leave Comment
Please login here to leave a comment.
hi
how to trade in this afl? is it on eod?
ravi
It’s agood AFL. I would like to combine with one’s of community zerolag.
Powerfull !!!
So, maybe you can try any triggered to make a comprehenship form.
Regards,
Thank’s.