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

Re: Bizaro code



PureBytes Links

Trading Reference Links

> unless it has something to do with the second last line
> "   GetVecQQ (2, LkAhead-1, &Predict);"
> If so what does the '&' signify ?

"address of."  That line passes the address of Predict to the 
GetVecQQ function.  Using that address, GetVecQQ can write a 
value back into Predict.  Notice the definition for GetVecQQ 
defines the 3rd argument to be an LPFLOAT -- long pointer to a 
floating point number.

Gary