I'm trying to write BrokerBuy2 such that the Zorro process doesn't block while waiting for feedback from the broker about the order. So BrokerBuy2 returns the trade id immediately so that Zorro can then query the status with BrokerTrade. But this is not working as I would expect it to. When I leave the pFill pointer alone in BrokerBuy2 before returning, Zorro assumes the trade was completely filled (which it isn't actually), but when I set pFill = 0, Zorro correctly prints "Long %0..." in the message log but then never calls BrokerTrade afterwards so it never learns the status of the trade. With pFill untouched, Zorro does call BrokerTrade repeatedly.

I would want the fill to be 0 in Zorro until it actually is partially or fully filled.