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 289e53e commit fa5210aCopy full SHA for fa5210a
freqtrade/exchange/kucoin.py
@@ -44,8 +44,9 @@ def create_order(
44
amount: float,
45
rate: float,
46
leverage: float,
47
- reduceOnly: bool = False,
48
time_in_force: str = "GTC",
+ reduceOnly: bool = False,
49
+ initial_order: bool = True,
50
) -> CcxtOrder:
51
res = super().create_order(
52
pair=pair,
@@ -56,6 +57,7 @@ def create_order(
56
57
leverage=leverage,
58
reduceOnly=reduceOnly,
59
time_in_force=time_in_force,
60
+ initial_order=initial_order,
61
)
62
# Kucoin returns only the order-id.
63
# ccxt returns status = 'closed' at the moment - which is information ccxt invented.
0 commit comments