LazyBear

Indicators: MMA and 3 oscillators

Guppy Multiple Moving Averages
---------------------------------
Developed by Daryl Guppy, the basic idea of Multiple moving average(MMA) is to view the trend as two band of moving averages – short term band and long term band.

Shortterm averages capture the inferred behaviour of traders and long term represents the investors. Uses fractal repetition to identify points of agreement and disagreement which precede significant trend changes.

Short intro on interpreting the signals:
drive.google.co...zg2RHRYSG8/edit?usp=sharin...

More info:
www.guppytraders.com/gup329.shtml

Guppy Oscillator
---------------------------------
The Guppy MMA Oscillator, developed by Leon Wilson, is an oscillator representation of difference between GMMA ribbons. Look for signal crosses for the triggers.

Linda Raschke (3/10) Oscillator
---------------------------------
This oscillator is similar to having a MACD of (3,10,16), the nuances are explained by Linda Raschke in her manual "Professional Trading Techniques":
www.lbrgroup.com/ima...ltradingManual-1.pdf

Ian Oscillator
---------------------------------
Simple EMA difference converted to an oscillator. Use the signal crosses as triggers.

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
Script open-source

Nello spirito di condivisione promosso da TradingView, l'autore (al quale vanno i nostri ringraziamenti) ha deciso di pubblicare questo script in modalità open-source, così che chiunque possa comprenderlo e testarlo. Puoi utilizzarlo gratuitamente, ma il riutilizzo del codice è subordinato al rispetto del Regolamento. Per aggiungerlo al grafico, mettilo tra i preferiti.

Declinazione di responsabilità

Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.

Vuoi usare questo script sui tuoi grafici?
//
// @author LazyBear
//
// If you use this code in its original/modified form, do drop me a note. 
//
study("Guppy MMA [LazyBear]", shorttitle="GMMA_LB", overlay=true)

src=close

// shortterm 
stsl=plot(ema(src, 3), color=#000066, linewidth=1)
plot(ema(src, 5), color=#000099)
plot(ema(src, 8), color=#0000cc)
plot(ema(src, 10), color=#0000ff)
plot(ema(src, 12), color=#0033cc)
stll=plot(ema(src, 15), color=#0033ff)

// longterm
ltsl=plot(ema(src, 30), color=#990000, linewidth=1)
plot(ema(src, 35), color=#990033)
plot(ema(src, 40), color=#cc0000)
plot(ema(src, 45), color=#cc0033)
plot(ema(src, 50), color=#ff0000)
ltll=plot(ema(src, 60), color=#ff0033)

fill(stsl, stll, blue)
fill(ltsl, ltll, red)