supertiti

MAFIBO DID V1

Category: Indicators By: supertiti Created: April 3, 2016, 4:58 PM
April 3, 2016, 4:58 PM
Indicators
2 Comments
MAFIBO DID V1

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 " 

 

Download
Filename: MAFIBO-DID.itf
Downloads: 275
supertiti
supertiti Master
mal nommer les choses est ajouter à la misère du monde --- A. Camus
Author’s Profile

Comments

supertiti
10 years ago
#

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

Biturbanipal
10 years ago
#

 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

ProRealCode ProRealCode
Loading...