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

Problem with a function



PureBytes Links

Trading Reference Links

Hi,

This statement:

LinRegAvg = Average( LinearRegValue( Price, LinRegLength, 0 ), SmoothingLength );

and these statements:
Value1 = LinearRegValue( Price, LinRegLength, 0 );
LinRegAvg = Average(Value1, SmoothingLength );

Are equivalent, but they produce different results. The first was taken from the Standard Error Bands indicator that comes with Tradestation.

Why is this? The second one appears to be correct in that it produces the SMA of the Linear Regression.

Thanks