PureBytes Links
Trading Reference Links
|
Manish,
A couple of points to help you.
As always, when getting started using a new product, be sure to read
the manual. If you don't have one check the FILES section for a copy.
Next, consider the work of those which have come before you. Do this
by checking the LINKS section for formula sites. You will find some
of the best around.
So lets consider your request. The term DMA could be a shortened
version of DEMA. DEMA is an acronym that stands for Double
Exponential Moving Average. DMA could also stand for days moving
average but it is normally expressed as a 18 SMA for an 18 day Simple
Moving Average.
There are six different types of moving averages: simple(SMA),
exponential(EMA), time series, triangular, variable, and weighted.
There is also a DEMA as I have pointed out, a Triple Exponential
Moving Average or TEMA, and a Wilders. There are others but that is
the basics.
Let's use the 18 SMA and develop a simple system.
{parameters}
A:= Close;
18SMA:= Mov(A,18,simple);
50SMA:= Mov(A,50,simple);
{BUY}
Buyone:= 18SMA > 50SMA and A > 18SMA;
Exitbuy:= 18SMA > 50SMA and A < 18SMA;
{SELL}
Sellone:= 18SMA < 50SMA and A < 18SMA;
Exitsell:= 18SMA < 50SMA and A > 18SMA;
I am not familiar with Scot Lowry's book but think you will find
similar work done by Daryl Guppy and his multiple moving average
system.
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, Manish Mehta <mimehta1506@xxx>
wrote:
>
> Dear Sir
>
> Earlier also I have mailed for following 3 Moving Average [ 5-18-50
Days] techniques in Meta stock formula
> suggestion .
>
> 01. When 18 DMA cuts 50 DMA and price goes above 18 DMA and again
it come inside 18 DMA and buy signal will be generated only again
price goes above 18 DMA.
>
> 02. Reverse for sell signal.
>
> 03. When all the three MA cross simultaneously and then price comes
below 18 DMa and Buying signal will be generated when price goes
above 18 DMA.
>
> The above technique is of Mr. Scot Lowry in his book MAGIC OF
MOVING AVERAGE.
>
> pLS HELP ME IN CASE ANY FORMULA CAN BE SET.
>
> WITH REGARDS
>
> MANISH MEHTA
>
>
>
>
> ________________________________
> From: pumrysh <no_reply@xxxxxxxxxxxxxxx>
> To: equismetastock@xxxxxxxxxxxxxxx
> Sent: Tuesday, 16 December, 2008 7:47:14 PM
> Subject: [EquisMetaStock Group] Re: Formula Help
>
>
> Peter,
>
> This what you had in mind?
>
> {Average True Range - Welles Wilder}
> {Written by Ton Maas-981225- Amsterdam- the Netherlands}
> {Found at EquisMetastock YahooGroups}
> {Formula:}
> PDS:=Input(" Lookback Periods",1,999, 10);
> TR1:=Abs(H-L) ;
> TR2:=Abs(Ref( C,-1)-H);
> TR3:=Abs(Ref( C,-1)-L);
> MX1:=Max(TR1, TR2);
> MX2:=Max(TR1, TR3);
> MX3:=Max(TR2, TR3);
> MXTRS:=If(MX1> MX2,
> If(MX1>MX3,MX1,
> If(MX2>MX3,MX2, MX3)),MX2) ;
> WATR:=Wilders( MXTRS,pds) ;
> WATR;{end}
>
> The Average True Range or ATR is part on the built-in indicators.
>
> Preston
>
> --- In equismetastock@ yahoogroups. com, "perome2000" <tt30@> wrote:
> >
> > Hello,
> >
> > Can anyone help with the following please
> >
> > 1, Calculation of average daily range, 15 day average.
> >
> > 2, Todays range as percentage of Average daily range.
> >
> > 3,Today's closing price divided by today's range.
> >
> > 4, How do you get shot of the decimal places in the exploration
> reports?
> >
> > Some list, can anyone help?
> >
> > Peter.
> >
>
>
>
>
> Add more friends to your messenger and enjoy! Go to
http://messenger.yahoo.com/invite/
>
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|