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
|