Marfusios / bitfinex-client-websocket

🛠️ C# client for Bitfinex & Ethfinex websocket API version 2.0
Apache License 2.0
55 stars 38 forks source link

Order filled not received #7

Closed KaiserSozo closed 6 years ago

KaiserSozo commented 6 years ago

Subscribed to bitfinexAPI.Streams.OrderCreatedStream and bitfinexAPI.Streams.OrderUpdatedStream After placing order I get into OrderCreatedStream but after order filled I do not get into OrderUpdatedStream. Is it right that I'm waiting info about order filling or any other changes in order after it was accepted by bitfinex in OrderUpdatedStream?

Marfusios commented 6 years ago

Hello,

there is a third (fourth) type of the order stream - OrderCanceledStream and then you need to check OrderStatus (Executed or Canceled). A little weird, but it's how their API is defined (sending that info via order cancel channel).

For sake of completeness:

KaiserSozo commented 6 years ago

Thank you!