We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f280c70 commit 314fde1Copy full SHA for 314fde1
CHANGELOG.md
@@ -1,6 +1,8 @@
1
-## 3.3.4
2
-### `TradeClient.get_aggregate_assets`
3
-
+## 3.3.4 (2025-04-09)
+### New
+- `TradeClient.get_aggregate_assets`
4
+### Mod
5
+- 选股器字段更新
6
7
## 3.3.3 (2025-03-05)
8
### New
tigeropen/common/consts/__init__.py
@@ -66,6 +66,7 @@ class SegmentType(Enum):
66
ALL = 'ALL'
67
SEC = 'SEC'
68
FUT = 'FUT'
69
+ FUND = 'FUND'
70
71
72
@unique
tigeropen/trade/domain/prime_account.py
@@ -129,8 +129,6 @@ def __init__(self):
129
self.stock_market_value = float('inf')
130
# 期权市值
131
self.option_market_value = float('inf')
132
- # 期货市值
133
- self.futures_market_value = float('inf')
134
# 可用剩余资产
135
self.cash_available_for_trade = float('inf')
136
# 可用现金值
0 commit comments