We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are scenarios where an order is accepted by an exchange but we can't yet tell if it's working.
For example, Bybit has REST response with success/failure and only an exchange order id on success.
It should be possible to emit an OrderUpdate with order_status = ACCEPTED.
OrderUpdate
order_status = ACCEPTED
However, the fix-bridge will automatically set the exec_type to NEW when seeing an OrderAck with request_status as ACCEPTED.
exec_type
NEW
OrderAck
request_status
ACCEPTED
What is missing is some extra information on OrderAck, perhaps the order_status.
order_status
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are scenarios where an order is accepted by an exchange but we can't yet tell if it's working.
For example, Bybit has REST response with success/failure and only an exchange order id on success.
It should be possible to emit an
OrderUpdate
withorder_status = ACCEPTED
.However, the fix-bridge will automatically set the
exec_type
toNEW
when seeing anOrderAck
withrequest_status
asACCEPTED
.What is missing is some extra information on
OrderAck
, perhaps theorder_status
.The text was updated successfully, but these errors were encountered: