PureBytes Links
Trading Reference Links
|
At 8:27 AM -0800 4/6/02, sunfiles wrote:
>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.
>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;
My TradeStation 4.0 has a System called "Parabolic". Perhaps that is what they are using:
Input: ACCFACTR(0.02);
if CurrentBar = 1 or MarketPosition <> 1 then Buy Parabolic(ACCFACTR) stop;
if CurrentBar > 1 and MarketPosition = 1 then Sell Parabolic(ACCFACTR) stop;
Bob Fulks
|