maurinho

Cyclical Path

Category: Indicators By: maurinho Created: June 11, 2018, 8:10 AM
June 11, 2018, 8:10 AM
Indicators
3 Comments
Cyclical Path

This is a simple indicator, similar to a MACD, which makes the difference between a slow and a faster period of 2 linear regression curves.

  •  buy when the oscillator cross under the zeroline and sell and it crosses over the zeroline

 

// pista ciclica
// buy crossunder zeroline and sell crossover zeroline
// by carlini mauro
//
lenta = linearregression[14](close)
veloce = linearregression[2](close)
pista = lenta-veloce
if pista < 0 then
 color=-1
else
 if pista > 0 then
  color=1
 endif
endif
RETURN pista COLOURED by color STYLE (line)as "velovola" , 0 as "zeroline"

 

Download
Filename: pista-ciclica.itf
Downloads: 197
maurinho
maurinho Average
Operating in the shadows, I hack problems one by one. My bio is currently encrypted by a complex algorithm. Decryption underway...
Author’s Profile

Comments

james effiong
8 years ago
#

This strategy looks good

maurinho
8 years ago
#

ciao marcot18 l'indicatore pubblico /proffessional lo puoi scaricare si chiama progo di williams

Marcot18
8 years ago
#

Buonasera Maurinho, interessante l'indicatore che ha i proposto ma ancora di più interessante è l'indicatore public/professional. puoi aiutarmi? grazie anticipatamente

ProRealCode ProRealCode
Loading...