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 b8c5439 commit 3f138c1Copy full SHA for 3f138c1
src/frequenz/client/electricity_trading/__init__.py
@@ -179,7 +179,14 @@ async def stream_trades():
179
180
"""
181
182
-from ._client import Client
+from ._client import (
183
+ MAX_PRICE,
184
+ MIN_PRICE,
185
+ MIN_QUANTITY_MW,
186
+ PRECISION_DECIMAL_PRICE,
187
+ PRECISION_DECIMAL_QUANTITY,
188
+ Client,
189
+)
190
from ._types import (
191
Currency,
192
DeliveryArea,
@@ -231,4 +238,9 @@ async def stream_trades():
231
238
"StateReason",
232
239
"Trade",
233
240
"TradeState",
241
+ "MAX_PRICE",
242
+ "MIN_PRICE",
243
+ "MIN_QUANTITY_MW",
244
+ "PRECISION_DECIMAL_QUANTITY",
245
+ "PRECISION_DECIMAL_PRICE",
234
246
]
0 commit comments