PureBytes Links
Trading Reference Links
|
Appreciate the formula but I'm getting something weird. Everytime I try to
use the writeval statement as listed below I get an error saying that it's
not a valid function name. Yet it's listed in the help section and this is
correct. Any ideas why this would not work? I'm using MS 6.52.
Thanks,
Rick.
----- Original Message -----
From: michael arnoldi <marnoldi@xxxxxxxxxxxxx>
To: A METASTOCK GROUP <metastock@xxxxxxxxxxxxx>
Sent: Sunday, October 10, 1999 2:59 PM
Subject: EXPET ADVISOR - support & resistance
> i wrote this exper for calculating the support 1 & 2 and resistance 1 &
> 2 as per futures magazine oct 99 page 52.
> i would like to share my efforts with the rest of the group - especially
> the ones who have helped me from time to time:
> ----------------------------- start --------------------------
>
> FIRST RESISTANCE: WRITEVAL(-L+(2* (H+L+C)/3),1.2)
> SECOND RESISTANCE: WRITEVAL(((H+L+C)/3) +((-L+(2*
> (H+L+C)/3))-(-H+(2* (H+L+C)/3))),1.2)
> FIRST SUPPORT:
> WRITEVAL(-H+(2*(H+L+C)/3),1.2)
> SECOND SUPPORT: WRITEVAL(((H+L+C)/3)
> -((-L+(2* (H+L+C)/3))-(-H+(2* (H+L+C)/3))),1.2)
>
> -------------------------------- end --------------------------
>
> mike arnoldi
>
|