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

Re: Ruggiero's TradeCycle



PureBytes Links

Trading Reference Links

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