simplefix on binance #43
-
hi, it is possible to use fix protocol wrapped into python code to binance exchange? thanks |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 7 replies
-
As far as I know, Binance does not have a native FIX API, so you cannot use e.g. simplefix to connect to it. |
Beta Was this translation helpful? Give feedback.
-
ok thanks
Il giorno lun 10 ott 2022 alle ore 18:12 Jussi Virtanen <
***@***.***> ha scritto:
… As far as I know, Binance does not have a native FIX API, so you cannot
use e.g. simplefix to connect to it.
—
Reply to this email directly, view it on GitHub
<#43 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXRV74KZSWSFQOB7PL3B7UTWCQ55XANCNFSM6AAAAAARBNGOOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Thanks @jvirtanen -- I've had a quick look at Binance's web site, and there's no sign of FIX support. They appear to have a REST API for orders, and WebSockets for market data. They also have API implementations for various languages, including Python. You could start looking at https://binance-docs.github.io/apidocs/spot/en/ for details. |
Beta Was this translation helpful? Give feedback.
-
Hi,
thanks for letting me know valid alternatives for Binance exchange.
My questions comes up when I started to check performance in terms of
latency and I’ve found out that fix protocol was one of the most affordable
in terms of performance overall. That’s why my question came up to your
repo.
Based on your message the best practice is to get data using 2 Types of
APIs.
1) rest api for orders injections (hope can I set custom orders / scalable
orders)
2) websocket api for data feed and price updates
Am I correct? Yes, I prefer to use python. Alternatively c++ could be
useful but only for HFT, but is not my actual target. I don’t have the
right infrastructure in terms of connections and machines to support HFT.
Thanks
Have a great day.
Il giorno mar 11 ott 2022 alle 14:44 David Arnold ***@***.***>
ha scritto:
… Thanks @jvirtanen <https://github.com/jvirtanen> -- I've had a quick look
at Binance's web site, and there's no sign of FIX support. They appear to
have a REST API for orders, and WebSockets for market data. They also have
API implementations for various languages, including Python.
You could start looking at https://binance-docs.github.io/apidocs/spot/en/
for details.
—
Reply to this email directly, view it on GitHub
<#43 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXRV74KW7Q2WZOFAPVIWQDDWCVOLZANCNFSM6AAAAAARBNGOOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I have no experience nor expertise with the Binance APIs -- I simply looked at their website, as discovered by a search engine, and reported what I found. Yes -- it appears that you need to use REST for orders and WebSockets for quotes. This is pretty common for crypto venues. Python should be fine for both those protocols. |
Beta Was this translation helpful? Give feedback.
-
For connecting to Binance, you may find this an easier route, |
Beta Was this translation helpful? Give feedback.
As far as I know, Binance does not have a native FIX API, so you cannot use e.g. simplefix to connect to it.