Close order has a specific cycle in VertexFX Bridge application which should be implemented in your LP class as follows:
1- You have to override the CloseMarketOrderfunction which should return either a success or a fail result.
if successthen
Return New TransResult(True)
Otherwise the bridge will wait for:
Return New TransResult(False, "FAILING MESSAGE")
And in this case the cycle has finished.
2. When you receive an order acceptance message, you have to call:
MyBase.OrderState.MarketOrderClosed
In the case of receiving order ID. In this case, the Bridge will wait for step 3 or else,
MyBase.OrderState.MarketOrderClosingFailed
when receiving an order rejection message. Then thecycle has finished.
See Also