PureBytes Links
Trading Reference Links
|
In a message dated 9/20/98 10:59:42 AM Pacific Daylight Time,
Brookemail@xxxxxxx writes:
> The old lines were:
>
> if close(i+j)<sharkhigh and
> close((i+j)-1)>sharkhigh
Oops. The old lines for buy signals were:
if close(i+j)>sharkhigh and
close((i+j)-1)<sharkhigh
These are for shorting:
if close(i+j)<sharkhigh and
close((i+j)-1)>sharkhigh
Brooke
|