Subject Re: [ib-support] Question on SP
Author Doug Chamberlin
At 06/09/2002 09:02 PM (Sunday), R. Tulloch wrote:
> IF (RATE5B < :REQUIREDMIN)
> THEN
> BEGIN
> RATEBB = RATE5B;
> RATE5B = 0;
> RATE3B = 0;
> END

I have no real idea if this addresses the problem you are seeing but I
would code this with an additional colon:

> IF (RATE5B < :REQUIREDMIN)
> THEN
> BEGIN
> RATEBB = :RATE5B;
> RATE5B = 0;
> RATE3B = 0;
> END