PureBytes Links
Trading Reference Links
|
I use this spread with the advances and declines as data 1 and data2
jrc.jma is a averaging maechanism sold by Mark Jurik, but you could use any
exponential with good result
Input: Input1(jrc.jma(C data2,3,0)),
Input2(jrc.jma(C data3,3,0)),
LEN1(5),
LEN2(10);
VALUE1=INPUT1/INPUT2;
VALUE2=AVERAGE(VALUE1,LEN1);
VALUE3=AVERAGE(VALUE1,LEN2);
Plot1(VALUE1,"DIFF");
Plot2(AVERAGE(VALUE2,LEN1),"SHORTAVG");
Plot3(AVERAGE(VALUE3,LEN2),"LONGAVG");
IF CHECKALERT THEN BEGIN
IF
VALUE1 CROSSES ABOVE VALUE2
OR
VALUE1 CROSSES BELOW VALUE2
THEN
ALERT=TRUE;
END;
..
>
> What other trend definitions or methods are people using out there that
they
> care to share, or even share a mind set that seeks a trend for self
> preservation.
>
> Or pivot method and trend confirming.
>
> Don Thompson
>
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Attachment:
Description: "swng-0002.gif"
|