[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Ruggiero's TradeCycle


  • To: David Fenstemaker <dfens@xxxxxxxxxxxxx>
  • Subject: Re: Ruggiero's TradeCycle
  • From: "Koch Frank" <frank@xxxxxxxx>
  • Date: Fri, 6 Nov 1998 16:04:46 -0500 (EST)
  • In-reply-to: <363A8E08.2E30B4A4@xxxxxxxxxx>

PureBytes Links

Trading Reference Links

Please can you send me the JRC_Fractal24 and  JRC_Velocity2, so I can
verify your comments !
Many thanks and best Regards
Frank

David Fenstemaker wrote:

> I realized the example code I posted was a bit
> stupid:
>
> Instead of:
>
> Lookback = (Round(JRC_Fractal24(PercentR(Length), Smooth), 0);
>
> Ind = JRC_Velocity2(PercentR(Length),Smooth);
>
> You would do this:
>
> Lookback =
>     (Round(JRC_Fractal24(JRC_Velocity2(PercentR(Length),Smooth),
>      Smooth), 0);
>
> Ind = JRC_Velocity2(PercentR(Length),Smooth);
>
> Now the lookback would be based on the correct indicator.
>
> Thanks,
>
> David