PureBytes Links
Trading Reference Links
|
Hello sptrader,
here's the Center of Gravity Code. i don't have the stuff for
plotting pivots.
{Ehlers, TASC, May,2002}
INputs: Price((H + L)/2), Length(10);
Vars: count(0), Num(0), Denom(0), CG(0);
Num = 0;
Denom = 0;
For count = 0 to Length -1 begin
Num = Num + (1 + count)* (Price[count]);
Denom = Denom + (Price[count]);
End;
If Denom <> 0 then CG = - Num/Denom;
Plot1(CG, "CG");
Plot2(CG[1], "CG1");
--
Best regards,
Jim Johnson mailto:jejohn@xxxxxxxxxxxxxxxx
Wednesday, April 17, 2002, 10:11:18 AM, you wrote:
s> Does anyone have the .ela or .els for Ehlers swings? (I just rejoined the
s> list after switching isp's and may have missed the code)
s> thanks in advance,
s> Steve
s> ----- Original Message -----
s> From: "prosper1000" <brente@xxxxxxxxxxxx>
s> To: <realtraders@xxxxxxxxxxxxxxx>
s> Sent: Tuesday, April 16, 2002 7:29 PM
s> Subject: [RT] Ehlers Swings
>> I would agree that it looks like Ehlers swings seem to have a better
>> feel and look about them most of the time.
>>
>>
>>
>>
>> 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/
>>
>>
s> To unsubscribe from this group, send an email to:
s> realtraders-unsubscribe@xxxxxxxxxxxxxxx
s> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Stock for $4
and no minimums.
FREE Money 2002.
http://us.click.yahoo.com/orkH0C/n97DAA/ySSFAA/zMEolB/TM
---------------------------------------------------------------------~->
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/
|