TradingView
LazyBear
6 maj 2014 19:46

Indicators: MMA and 3 oscillators 

Opis

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.com/file/d/0Bx48Du_2aPFnR1lGXzg2RHRYSG8/edit?usp=sharing

More info:
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":
lbrgroup.com/images//Linda's Trading Techniques 2011/TechnicaltradingManual-1.pdf

Ian Oscillator
---------------------------------
Simple EMA difference converted to an oscillator. Use the signal crosses as triggers.
Komentarze
wa1
I can't seem to find the 3 indicators (Ian, Guppy, Raschke) are they still available?
dagekko
I found the code - but it seems to be in AFL. I am new to TV and still learning how the code works.

Can someone make this work with TV?

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);
ZAnanas
@dagekko, Hi Dagekko, thanks for sharing your code. Did you eventually manage to display the oscillators ?
ChrisMoody
As always great work. I have an entire trading system based on the Guppy thought process I purchased from a Premium Developer that won awards as a Hedge Fund Manager. PM me sometime and I'll show it to you. Would be worth us working on together to duplicate it on TV.
LazyBear
Thank you @Chris. Will ping you.
MagnusTradingGroup
I would love to discuss it with you aswell guys : )
MagnusTradingGroup
Good Job : ]
LazyBear
Thanks for showing me GMMA some months back :)

MagnusTradingGroup
Thanks for implementing it :) you should definitely ask @admin to put it into the standard indicator list !
grahvity
The highlight of my Trading View day is when I get notified that you've posted yet another one of your terrific indicators. Thank you very much.
Więcej