chore: move futures only flags to ft_has_futures
This commit is contained in:
@@ -34,16 +34,16 @@ class Bitget(Exchange):
|
|||||||
"stoploss_query_requires_stop_flag": True,
|
"stoploss_query_requires_stop_flag": True,
|
||||||
"ohlcv_candle_limit": 200, # 200 for historical candles, 1000 for recent ones.
|
"ohlcv_candle_limit": 200, # 200 for historical candles, 1000 for recent ones.
|
||||||
"order_time_in_force": ["GTC", "FOK", "IOC", "PO"],
|
"order_time_in_force": ["GTC", "FOK", "IOC", "PO"],
|
||||||
|
}
|
||||||
|
_ft_has_futures: FtHas = {
|
||||||
|
"funding_fee_candle_limit": 100,
|
||||||
|
"has_delisting": True,
|
||||||
"stop_price_type_field": "triggerType",
|
"stop_price_type_field": "triggerType",
|
||||||
"stop_price_type_value_mapping": {
|
"stop_price_type_value_mapping": {
|
||||||
PriceType.LAST: "fill_price",
|
PriceType.LAST: "fill_price",
|
||||||
PriceType.MARK: "mark_price",
|
PriceType.MARK: "mark_price",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
_ft_has_futures: FtHas = {
|
|
||||||
"funding_fee_candle_limit": 100,
|
|
||||||
"has_delisting": True,
|
|
||||||
}
|
|
||||||
|
|
||||||
_supported_trading_mode_margin_pairs: list[tuple[TradingMode, MarginMode]] = [
|
_supported_trading_mode_margin_pairs: list[tuple[TradingMode, MarginMode]] = [
|
||||||
(TradingMode.SPOT, MarginMode.NONE),
|
(TradingMode.SPOT, MarginMode.NONE),
|
||||||
|
|||||||
Reference in New Issue
Block a user