PureBytes Links
Trading Reference Links
|
Gary:
My bad, try this:
Buy at open next bar + Brkout*Range stop;
IncludeSystem:"exit";
{Write a separate system to include "exit":}
If barssinceentry > 0 then begin
exitlong;
{{also?}exitshort;}
end;
That seems to work OK.
Bill Wynne
http://smarttrades.com/
In a message dated 2/7/00 8:53:40 PM Pacific Standard Time, fritz@xxxxxxxx
writes:
> > Try this:
> >
> > Buy at open next bar + Brkout*Range stop;
> > If BarsSinceEntry = 1 then exitlong at close;
>
> I already did. It won't let me use the word "close" in a system that
> refers to "open of tomorrow." "open next bar" gives the same error.
|