A simple strategy like “Alligator” based on three types of moving averages: simple, weighted, an “end of point” (linear regression “)
Buy: when crossing UP averages 3 (green ellipses)
Sell: when passing DOWN average 3 (red ellipses)
The EPMA pyramiding can serve us if we want.
good trades
// MAFIBO DID V1 29.03.2016 //
// parameter
// p = 20
Pivot=(Close[1]+High[1]+Low[1])/3
MA = average [p](pivot)
WMA = weightedaverage [p](pivot)
EPMA = endpointaverage [p](pivot)
cc = customclose
return cc as " customclose " , MA as " MAFIBO DID " , WMA as " WMA " , EPMA as " EPMA "
You must be logged in to post a comment.
Hello, Supertiti,
Fine signal, in first approach !
But, i am not sure to understand exactly
Buy: when crossing UP averages 3 (green ellipses)
Sell: when passing DOWN average 3 (red ellipses)
crossing and passing, is it the same meaning ?
and averages 3 is the same as average 3 ?
Average 3 means the simple moving average ?
Thanks
Buy: when crossing UP averages 3 (green ellipses) ...............yes
Sell: when passing DOWN average 3 (red ellipses) ...............yes
crossing and passing, is it the same meaning ? .....................yes
and averages 3 is the same as average 3 ? ......................no
Average 3 means the simple moving average ? ....................no