StockFetcher Forums · Filter Exchange · MMA Indicator<< 1 2 >>Post Follow-up
yepher
359 posts
msg #34384
Ignore yepher
12/15/2004 10:17:03 PM

In case anyone is interested here is a rainbow indicator as defined by Daryl Guppy. It would be a lot nicer if SF would provide a way to pick which color to draw with..

Here is a MWMA (Multiple Moving Average)
Fetcher[

price between 1 and 3
and volume above 1000000

set{newPlot, cma(close,3)}
and draw cma(close,3) on plot newPlot
and draw cma(close,5) on plot newPlot
and draw cma(close,8) on plot newPlot
and draw cma(close,10) on plot newPlot
and draw cma(close,12) on plot newPlot
and draw cma(close,15) on plot newPlot

and draw cma(close,30) on plot newPlot
and draw cma(close,35) on plot newPlot
and draw cma(close,40) on plot newPlot
and draw cma(close,45) on plot newPlot
and draw cma(close,50) on plot newPlot
and draw cma(close,60) on plot newPlot
]



Here is a MWMA (Multiple Weighted Moving Average)

Fetcher[

price between 1 and 3
and volume above 1000000

set{newPlot, cwma(close,3)}
and draw cwma(close,3) on plot wPlot
and draw cwma(close,5) on plot newPlot
and draw cwma(close,8) on plot newPlot
and draw cwma(close,10) on plot newPlot
and draw cwma(close,12) on plot newPlot
and draw cwma(close,15) on plot newPlot

and draw cwma(close,30) on plot newPlot
and draw cwma(close,35) on plot newPlot
and draw cwma(close,40) on plot newPlot
and draw cwma(close,45) on plot newPlot
and draw cwma(close,50) on plot newPlot
and draw cwma(close,60) on plot newPlot
]



Here is a MEMA (Multiple Exponential Moving Average)

Fetcher[

price between 1 and 3
and volume above 1000000

set{newPlot, cema(close,3)}
and draw cema(close,3) on plot wPlot
and draw cema(close,5) on plot newPlot
and draw cema(close,8) on plot newPlot
and draw cema(close,10) on plot newPlot
and draw cema(close,12) on plot newPlot
and draw cema(close,15) on plot newPlot

and draw cema(close,30) on plot newPlot
and draw cema(close,35) on plot newPlot
and draw cema(close,40) on plot newPlot
and draw cema(close,45) on plot newPlot
and draw cema(close,50) on plot newPlot
and draw cema(close,60) on plot newPlot


]




Excerpt from TASC about this indicator:

Using Multiple Moving Averages by Daryl Guppy

Moving averages, familiar to every technical trader, are used by most technicians to identify important trends. Here's a unique twist on using multiple moving averages as an early warning of trend reversals.

Technical analysis is an adaptive process, pressing at the edges of possibility and developing new approaches from ideas glimpsed in passing. The multiple moving average (MMA) is an indicator developed from one such encounter. It uses core information generated from multiple time frames to capture and understand a concept of market dynamics rather than specific value readings.



chetron
2,817 posts
msg #87475
Ignore chetron
modified
1/30/2010 11:42:11 AM

maybe....

Fetcher[

/* TACHIKAWA */
set{var1,ema(15) * 1.005}
set{var2,ema(15) * 0.995}
set{var3,count(ema(3) below var1,1)}
set{var4,count(ema(3) above var2,1)}
set{var5,count(macd(4,8) slow line above 0,1)}
set{var6,count(macd(4,8) slow line below 0,1)}
set{var7,count(ema(3) above ema(60),1)}
set{var8,count(ema(3) below ema(60),1)}

set{var11,var3 * var4}
set{var12,var11 * var5}
set{vbuy,var12 * var7}

set{var13,var11 * var6}
set{vshort,var13 * var8}

set{vplays,vshort + vbuy}
draw vshort on plot vbuy

ADD COLUMN VBUY
ADD COLUMN VSHORT

vplays above .5
do not draw vplays

price above .1
volume above 1000000

set{newPlot, cema(close,3)}
and draw cema(close,3) on plot wPlot
and draw cema(close,5) on plot newPlot
and draw cema(close,8) on plot newPlot
and draw cema(close,10) on plot newPlot
and draw cema(close,12) on plot newPlot
and draw cema(close,15) on plot newPlot

and draw cema(close,30) on plot newPlot
and draw cema(close,35) on plot newPlot
and draw cema(close,40) on plot newPlot
and draw cema(close,45) on plot newPlot
and draw cema(close,50) on plot newPlot
and draw cema(close,60) on plot newPlot

chart-time 6 month

]



chetron
2,817 posts
msg #87841
Ignore chetron
modified
2/5/2010 8:48:36 AM

going long.....
SOME OTHER THING...

Fetcher[


/* TACHIKAWA */
set{var1,ema(15) * 1.005}
set{var2,ema(15) * 0.995}
set{var3,count(ema(3) below var1,1)}
set{var4,count(ema(3) above var2,1)}
set{var5,count(ema(30) above ema(35),1)}
set{var6,count(ema(50) above ema(60),1)}
set{var7,count(ema(3) above ema(60),1)}
set{var8,count(ema(3) above ema(30),1)}

set{var11,var3 * var4}
set{var12,var11 * var5}
set{vbuy,var12 * var7}

set{var13,var11 * var6}
set{vshort,var13 * var8}

set{vplays,vshort * vbuy}

vplays above .5

price above .1
volume above 1000000

set{newPlot, ema(3)}
and draw ema(15) on plot wPlot
and draw cema(close,5) on plot newPlot
and draw cema(close,8) on plot newPlot
and draw cema(close,10) on plot newPlot
and draw cema(close,12) on plot newPlot
and draw cema(close,15) on plot newPlot

and draw cema(close,30) on plot newPlot
and draw cema(close,35) on plot newPlot
and draw cema(close,40) on plot newPlot
and draw cema(close,45) on plot newPlot
and draw cema(close,50) on plot newPlot
and draw cema(close,60) on plot newPlot

chart-time 6 month


]



and short....

Fetcher[



/* TACHIKAWA */
/* shorts */

set{var1,ema(15) * 1.005}
set{var2,ema(15) * 0.995}
set{var3,count(ema(3) below var1,1)}
set{var4,count(ema(3) above var2,1)}
set{var5,count(ema(30) below ema(35),1)}
set{var6,count(ema(50) below ema(60),1)}
set{var7,count(ema(3) below ema(60),1)}
set{var8,count(ema(3) below ema(30),1)}

set{var11,var3 * var4}
set{var12,var11 * var5}
set{vbuy,var12 * var7}

set{var13,var11 * var6}
set{vshort,var13 * var8}

set{vplays,vshort * vbuy}

vplays above .5

price above .1
volume above 1000000

set{newPlot, ema(3)}
and draw ema(15) on plot wPlot
and draw cema(close,5) on plot newPlot
and draw cema(close,8) on plot newPlot
and draw cema(close,10) on plot newPlot
and draw cema(close,12) on plot newPlot
and draw cema(close,15) on plot newPlot

and draw cema(close,30) on plot newPlot
and draw cema(close,35) on plot newPlot
and draw cema(close,40) on plot newPlot
and draw cema(close,45) on plot newPlot
and draw cema(close,50) on plot newPlot
and draw cema(close,60) on plot newPlot

chart-time 6 month


]






Kevin_in_GA
4,599 posts
msg #87863
Ignore Kevin_in_GA
2/5/2010 5:27:05 PM

I'm sorry, but what does this have to do with mixed martial arts???????

chetron
2,817 posts
msg #87865
Ignore chetron
2/5/2010 5:51:16 PM

lol, please tell me you ARE KIDDIN' = )

chetron
2,817 posts
msg #87872
Ignore chetron
2/5/2010 6:44:04 PM

LOL, GUESS NOT. Multiple Moving Average IS FONDLY CALLED THE GUPPY INDICATOR ALSO, "INVENTED" MY OTHER BROTHER DARYL GUPPY.


yepher
- Ignore yepher 12/15/2004 10:17:03 PM

In case anyone is interested here is a rainbow indicator as defined by Daryl Guppy. It would be a lot nicer if SF would provide a way to pick which color to draw with..

Here is a MWMA (Multiple Moving Average)



HTH

Kevin_in_GA
4,599 posts
msg #87874
Ignore Kevin_in_GA
2/5/2010 6:55:16 PM

Note the unusually long string of ??????? at the end ...

chetron
2,817 posts
msg #87876
Ignore chetron
2/5/2010 7:06:11 PM

sorry, kev i did.

Kevin_in_GA
4,599 posts
msg #87878
Ignore Kevin_in_GA
2/5/2010 7:14:13 PM

I need to remember to put a smiley face at the end or something ... 8 >)

Kevin

chetron
2,817 posts
msg #87879
Ignore chetron
2/5/2010 7:58:53 PM

it works = D

i have just been reading up on the mma indicator, which is just comprised of a set of long term ma's (considered "investors") and a short term set (considered "day traders") used to determine weakness/strength of a trend.


hth

StockFetcher Forums · Filter Exchange · MMA Indicator<< 1 2 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.