You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,21 @@
1
1
# Changelog
2
2
3
+
## 1.2.0 - 2026-02-02
4
+
5
+
### Added
6
+
- Added a `restart` flag to the `FixConnector` connector to restart when receiving a `NEWS` message.
7
+
8
+
### Updated
9
+
- Updated `retrieve_messages_until` method to accept a list of message types.
10
+
- Fixed messages parsing issue that caused the error: `Field missing '=' separator`.
11
+
3
12
## 1.1.0 - 2025-10-27
13
+
4
14
### Updated
5
15
- Added parameters `min_price`, `max_price` and `min_price_increment` to `InstrumentList` response.
6
16
7
17
## 1.0.1 - 2025-05-08
18
+
8
19
### Removed
9
20
- Removed the references for `auto-reconnect` in the dropcopy session to fix the following [issue](https://github.com/binance/binance-fix-connector-python/issues/2).
All the FIX messages can be created with the `BinanceFixConnector` class. The following example demonstrates how to create a simple order using the FIX API:
20
20
```python
21
21
import time
22
-
import os
23
-
from pathlib import Path
24
22
25
23
from binance_fix_connector.fix_connector import create_order_entry_session
26
24
from binance_fix_connector.utils import get_api_key, get_private_key
example ="This example shows how to place a single order. Order type LIMIT.\nCheck https://github.com/binance/binance-spot-api-docs/blob/master/fix-api.md#newordersingled for additional types."
68
47
client_oe.logger.info(example)
@@ -79,7 +58,7 @@ msg.append_pair(59, 1) # TIME IN FORCE
example="This example shows how to query for current session limits and how to parse it's data. Check https://github.com/binance/binance-spot-api-docs/blob/master/fix-api.md#limitqueryxlq for additional information."
example="This example shows how to query for current session limits and how to parse it's data. Check https://github.com/binance/binance-spot-api-docs/blob/master/fix-api.md for additional information."
example="This example shows how to query information about active instruments.\nCheck https://github.com/binance/binance-spot-api-docs/blob/master/fix-api.md#instrumentlistrequestx for additional types."
0 commit comments