PureBytes Links
Trading Reference Links
|
Bob,
Regarding my earlier message, CIS Bowtie Parabolic (pasted below).
Have you ever heard of this system?? Do you have the code? It shows
promise but I probably need the proper code so I can work with it.
Thanks,
Brian Oliver
sunfiles@xxxxxxx
Newport Coast, CA
___________________ PRIOR MESSAGE __________________
Why don't you need the buy & sell statements in this code? How does it know
where to buy and sell?
CIS Bowtie Parabolic
Input: Price(close),Length(28),DevSet(2),Accfactr(.02);
value1 = StdDev(Price,Length)*DevSet - StdDev(Price,Length)*-DevSet;
If value1 = Lowest(value1,Length) and Adx(14) < 23 then begin
If SlowD(Length) > 75 OR SlowD(Length) < 25 then begin
IncludeSystem: "Parabolic",ACCFACTR;
End;
End;
----- Original Message -----
From: "Bob Fulks" <bfulks@xxxxxxxxxxxx>
To: "sunfiles" <sunfiles@xxxxxxx>
Cc: <omega-list@xxxxxxxxxx>
Sent: Saturday, April 06, 2002 5:06 AM
Subject: Re: Omega is Alive
> At 10:25 PM -0800 4/5/02, sunfiles wrote:
>
> >I have a question regarding some signal code I have.
> >
> >The following signal code does not appear to have any buy or sell
> >statements. However when plugged into Strategy Builder, as is below, it
> >works. What am I missing here??
> >
> ><snip>
> >
> >If SlowD(Length) > 75 OR SlowD(Length) < 25 then begin
> > IncludeSystem: "Parabolic",ACCFACTR;
> >End;
>
> The included system "Parabolic",ACCFACTR; has buys and sells in it.
>
> I do not think you should put include systems in a conditional statement -
It probably will not work as you think.
>
> If you want to do that, you could copy/paste the code from the
IncludeSystem into your code with appropriate modifications.
>
> Bob Fulks
>
>
|