2018-02-04 00:04:26 +00:00
|
|
|
# pragma pylint: disable=too-few-public-methods
|
|
|
|
|
|
|
|
"""
|
2018-04-02 14:42:53 +00:00
|
|
|
bot constants
|
2018-02-04 00:04:26 +00:00
|
|
|
"""
|
2024-02-06 19:35:16 +00:00
|
|
|
from typing import Any, Dict, List, Literal, Optional, Tuple
|
2020-05-22 18:56:34 +00:00
|
|
|
|
2023-02-04 20:08:41 +00:00
|
|
|
from freqtrade.enums import CandleType, PriceType, RPCMessageType
|
2021-12-03 14:20:18 +00:00
|
|
|
|
2020-05-22 18:56:34 +00:00
|
|
|
|
2023-06-16 11:06:21 +00:00
|
|
|
DOCS_LINK = "https://www.freqtrade.io/en/stable"
|
2024-05-12 14:27:46 +00:00
|
|
|
DEFAULT_CONFIG = "config.json"
|
2018-04-02 14:42:53 +00:00
|
|
|
PROCESS_THROTTLE_SECS = 5 # sec
|
|
|
|
HYPEROPT_EPOCH = 100 # epochs
|
|
|
|
RETRY_TIMEOUT = 30 # sec
|
2024-05-12 14:27:46 +00:00
|
|
|
TIMEOUT_UNITS = ["minutes", "seconds"]
|
|
|
|
EXPORT_OPTIONS = ["none", "trades", "signals"]
|
|
|
|
DEFAULT_DB_PROD_URL = "sqlite:///tradesv3.sqlite"
|
|
|
|
DEFAULT_DB_DRYRUN_URL = "sqlite:///tradesv3.dryrun.sqlite"
|
|
|
|
UNLIMITED_STAKE_AMOUNT = "unlimited"
|
2019-02-19 08:45:19 +00:00
|
|
|
DEFAULT_AMOUNT_RESERVE_PERCENT = 0.05
|
2024-05-12 14:27:46 +00:00
|
|
|
REQUIRED_ORDERTIF = ["entry", "exit"]
|
|
|
|
REQUIRED_ORDERTYPES = ["entry", "exit", "stoploss", "stoploss_on_exchange"]
|
|
|
|
PRICING_SIDES = ["ask", "bid", "same", "other"]
|
|
|
|
ORDERTYPE_POSSIBILITIES = ["limit", "market"]
|
|
|
|
_ORDERTIF_POSSIBILITIES = ["GTC", "FOK", "IOC", "PO"]
|
2022-08-27 08:24:56 +00:00
|
|
|
ORDERTIF_POSSIBILITIES = _ORDERTIF_POSSIBILITIES + [t.lower() for t in _ORDERTIF_POSSIBILITIES]
|
2023-02-04 20:08:41 +00:00
|
|
|
STOPLOSS_PRICE_TYPES = [p for p in PriceType]
|
2024-05-12 14:27:46 +00:00
|
|
|
HYPEROPT_LOSS_BUILTIN = [
|
|
|
|
"ShortTradeDurHyperOptLoss",
|
|
|
|
"OnlyProfitHyperOptLoss",
|
|
|
|
"SharpeHyperOptLoss",
|
|
|
|
"SharpeHyperOptLossDaily",
|
|
|
|
"SortinoHyperOptLoss",
|
|
|
|
"SortinoHyperOptLossDaily",
|
|
|
|
"CalmarHyperOptLoss",
|
|
|
|
"MaxDrawDownHyperOptLoss",
|
|
|
|
"MaxDrawDownRelativeHyperOptLoss",
|
|
|
|
"ProfitDrawDownHyperOptLoss",
|
|
|
|
]
|
|
|
|
AVAILABLE_PAIRLISTS = [
|
|
|
|
"StaticPairList",
|
|
|
|
"VolumePairList",
|
|
|
|
"ProducerPairList",
|
|
|
|
"RemotePairList",
|
|
|
|
"MarketCapPairList",
|
|
|
|
"AgeFilter",
|
|
|
|
"FullTradesFilter",
|
|
|
|
"OffsetFilter",
|
|
|
|
"PerformanceFilter",
|
|
|
|
"PrecisionFilter",
|
|
|
|
"PriceFilter",
|
|
|
|
"RangeStabilityFilter",
|
|
|
|
"ShuffleFilter",
|
|
|
|
"SpreadFilter",
|
|
|
|
"VolatilityFilter",
|
|
|
|
]
|
|
|
|
AVAILABLE_PROTECTIONS = ["CooldownPeriod", "LowProfitPairs", "MaxDrawdown", "StoplossGuard"]
|
|
|
|
AVAILABLE_DATAHANDLERS = ["json", "jsongz", "hdf5", "feather", "parquet"]
|
|
|
|
BACKTEST_BREAKDOWNS = ["day", "week", "month"]
|
|
|
|
BACKTEST_CACHE_AGE = ["none", "day", "week", "month"]
|
|
|
|
BACKTEST_CACHE_DEFAULT = "day"
|
2019-12-15 08:22:15 +00:00
|
|
|
DRY_RUN_WALLET = 1000
|
2024-05-12 14:27:46 +00:00
|
|
|
DATETIME_PRINT_FORMAT = "%Y-%m-%d %H:%M:%S"
|
2019-09-26 04:48:46 +00:00
|
|
|
MATH_CLOSE_PREC = 1e-14 # Precision used for float comparisons
|
2024-05-12 14:27:46 +00:00
|
|
|
DEFAULT_DATAFRAME_COLUMNS = ["date", "open", "high", "low", "close", "volume"]
|
2020-03-31 18:12:01 +00:00
|
|
|
# Don't modify sequence of DEFAULT_TRADES_COLUMNS
|
|
|
|
# it has wide consequences for stored trades files
|
2024-05-12 14:27:46 +00:00
|
|
|
DEFAULT_TRADES_COLUMNS = ["timestamp", "id", "type", "side", "price", "amount", "cost"]
|
2024-05-15 12:33:41 +00:00
|
|
|
DEFAULT_ORDERFLOW_COLUMNS = ["level", "bid", "ask", "delta"]
|
2023-08-18 05:25:51 +00:00
|
|
|
TRADES_DTYPES = {
|
2024-05-12 14:27:46 +00:00
|
|
|
"timestamp": "int64",
|
|
|
|
"id": "str",
|
|
|
|
"type": "str",
|
|
|
|
"side": "str",
|
|
|
|
"price": "float64",
|
|
|
|
"amount": "float64",
|
|
|
|
"cost": "float64",
|
2023-08-18 05:25:51 +00:00
|
|
|
}
|
2024-05-12 14:27:46 +00:00
|
|
|
TRADING_MODES = ["spot", "margin", "futures"]
|
|
|
|
MARGIN_MODES = ["cross", "isolated", ""]
|
2018-02-04 00:04:26 +00:00
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
LAST_BT_RESULT_FN = ".last_result.json"
|
|
|
|
FTHYPT_FILEVERSION = "fthypt_fileversion"
|
2020-06-28 07:27:19 +00:00
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
USERPATH_HYPEROPTS = "hyperopts"
|
|
|
|
USERPATH_STRATEGIES = "strategies"
|
|
|
|
USERPATH_NOTEBOOKS = "notebooks"
|
|
|
|
USERPATH_FREQAIMODELS = "freqaimodels"
|
2019-11-16 21:00:50 +00:00
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
TELEGRAM_SETTING_OPTIONS = ["on", "off", "silent"]
|
|
|
|
WEBHOOK_FORMAT_OPTIONS = ["form", "json", "raw"]
|
2022-12-14 18:56:54 +00:00
|
|
|
FULL_DATAFRAME_THRESHOLD = 100
|
2023-04-12 04:59:05 +00:00
|
|
|
CUSTOM_TAG_MAX_LENGTH = 255
|
2024-05-12 14:27:46 +00:00
|
|
|
DL_DATA_TIMEFRAMES = ["1m", "5m"]
|
2021-11-29 07:17:59 +00:00
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
ENV_VAR_PREFIX = "FREQTRADE__"
|
2020-09-19 17:38:33 +00:00
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
CANCELED_EXCHANGE_STATES = ("cancelled", "canceled", "expired")
|
|
|
|
NON_OPEN_EXCHANGE_STATES = CANCELED_EXCHANGE_STATES + ("closed",)
|
2021-08-27 17:54:53 +00:00
|
|
|
|
2021-02-12 19:32:41 +00:00
|
|
|
# Define decimals per coin for outputs
|
|
|
|
# Only used for outputs.
|
|
|
|
DECIMAL_PER_COIN_FALLBACK = 3 # Should be low to avoid listing all possible FIAT's
|
|
|
|
DECIMALS_PER_COIN = {
|
2024-05-12 14:27:46 +00:00
|
|
|
"BTC": 8,
|
|
|
|
"ETH": 5,
|
2021-02-12 19:32:41 +00:00
|
|
|
}
|
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
DUST_PER_COIN = {"BTC": 0.0001, "ETH": 0.01}
|
2021-02-28 08:03:27 +00:00
|
|
|
|
2021-06-25 13:45:49 +00:00
|
|
|
# Source files with destination directories within user-directory
|
2019-11-01 12:28:35 +00:00
|
|
|
USER_DATA_FILES = {
|
2024-05-12 14:27:46 +00:00
|
|
|
"sample_strategy.py": USERPATH_STRATEGIES,
|
|
|
|
"sample_hyperopt_loss.py": USERPATH_HYPEROPTS,
|
|
|
|
"strategy_analysis_example.ipynb": USERPATH_NOTEBOOKS,
|
2019-11-01 12:28:35 +00:00
|
|
|
}
|
|
|
|
|
2018-06-03 11:47:36 +00:00
|
|
|
SUPPORTED_FIAT = [
|
2024-05-12 14:27:46 +00:00
|
|
|
"AUD",
|
|
|
|
"BRL",
|
|
|
|
"CAD",
|
|
|
|
"CHF",
|
|
|
|
"CLP",
|
|
|
|
"CNY",
|
|
|
|
"CZK",
|
|
|
|
"DKK",
|
|
|
|
"EUR",
|
|
|
|
"GBP",
|
|
|
|
"HKD",
|
|
|
|
"HUF",
|
|
|
|
"IDR",
|
|
|
|
"ILS",
|
|
|
|
"INR",
|
|
|
|
"JPY",
|
|
|
|
"KRW",
|
|
|
|
"MXN",
|
|
|
|
"MYR",
|
|
|
|
"NOK",
|
|
|
|
"NZD",
|
|
|
|
"PHP",
|
|
|
|
"PKR",
|
|
|
|
"PLN",
|
|
|
|
"RUB",
|
|
|
|
"UAH",
|
|
|
|
"SEK",
|
|
|
|
"SGD",
|
|
|
|
"THB",
|
|
|
|
"TRY",
|
|
|
|
"TWD",
|
|
|
|
"ZAR",
|
|
|
|
"USD",
|
|
|
|
"BTC",
|
|
|
|
"ETH",
|
|
|
|
"XRP",
|
|
|
|
"LTC",
|
|
|
|
"BCH",
|
|
|
|
"BNB",
|
2018-10-02 10:42:59 +00:00
|
|
|
]
|
2018-02-04 00:04:26 +00:00
|
|
|
|
2019-08-16 12:56:38 +00:00
|
|
|
MINIMAL_CONFIG = {
|
2022-04-08 14:04:54 +00:00
|
|
|
"stake_currency": "",
|
|
|
|
"dry_run": True,
|
|
|
|
"exchange": {
|
|
|
|
"name": "",
|
|
|
|
"key": "",
|
|
|
|
"secret": "",
|
|
|
|
"pair_whitelist": [],
|
2024-05-12 14:27:46 +00:00
|
|
|
"ccxt_async_config": {},
|
|
|
|
},
|
2019-08-16 12:56:38 +00:00
|
|
|
}
|
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
__MESSAGE_TYPE_DICT: Dict[str, Dict[str, str]] = {x: {"type": "object"} for x in RPCMessageType}
|
2023-06-29 12:08:52 +00:00
|
|
|
|
2018-04-02 14:42:53 +00:00
|
|
|
# Required json-schema for user specified config
|
|
|
|
CONF_SCHEMA = {
|
2024-05-12 14:27:46 +00:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"max_open_trades": {"type": ["integer", "number"], "minimum": -1},
|
|
|
|
"new_pairs_days": {"type": "integer", "default": 30},
|
|
|
|
"timeframe": {"type": "string"},
|
|
|
|
"stake_currency": {"type": "string"},
|
|
|
|
"stake_amount": {
|
|
|
|
"type": ["number", "string"],
|
|
|
|
"minimum": 0.0001,
|
|
|
|
"pattern": UNLIMITED_STAKE_AMOUNT,
|
2020-01-02 09:59:10 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"tradable_balance_ratio": {"type": "number", "minimum": 0.0, "maximum": 1, "default": 0.99},
|
|
|
|
"available_capital": {
|
|
|
|
"type": "number",
|
|
|
|
"minimum": 0,
|
2021-07-10 10:30:00 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"amend_last_stake_amount": {"type": "boolean", "default": False},
|
|
|
|
"last_stake_amount_min_ratio": {
|
|
|
|
"type": "number",
|
|
|
|
"minimum": 0.0,
|
|
|
|
"maximum": 1.0,
|
|
|
|
"default": 0.5,
|
2020-02-08 20:02:52 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"fiat_display_currency": {"type": "string", "enum": SUPPORTED_FIAT},
|
|
|
|
"dry_run": {"type": "boolean"},
|
|
|
|
"dry_run_wallet": {"type": "number", "default": DRY_RUN_WALLET},
|
|
|
|
"cancel_open_orders_on_exit": {"type": "boolean", "default": False},
|
|
|
|
"process_only_new_candles": {"type": "boolean"},
|
|
|
|
"minimal_roi": {
|
|
|
|
"type": "object",
|
|
|
|
"patternProperties": {"^[0-9.]+$": {"type": "number"}},
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"amount_reserve_percent": {"type": "number", "minimum": 0.0, "maximum": 0.5},
|
|
|
|
"stoploss": {"type": "number", "maximum": 0, "exclusiveMaximum": True},
|
|
|
|
"trailing_stop": {"type": "boolean"},
|
|
|
|
"trailing_stop_positive": {"type": "number", "minimum": 0, "maximum": 1},
|
|
|
|
"trailing_stop_positive_offset": {"type": "number", "minimum": 0, "maximum": 1},
|
|
|
|
"trailing_only_offset_is_reached": {"type": "boolean"},
|
|
|
|
"use_exit_signal": {"type": "boolean"},
|
|
|
|
"exit_profit_only": {"type": "boolean"},
|
|
|
|
"exit_profit_offset": {"type": "number"},
|
|
|
|
"fee": {"type": "number", "minimum": 0, "maximum": 0.1},
|
|
|
|
"ignore_roi_if_entry_signal": {"type": "boolean"},
|
|
|
|
"ignore_buying_expired_candle_after": {"type": "number"},
|
|
|
|
"trading_mode": {"type": "string", "enum": TRADING_MODES},
|
|
|
|
"margin_mode": {"type": "string", "enum": MARGIN_MODES},
|
|
|
|
"reduce_df_footprint": {"type": "boolean", "default": False},
|
|
|
|
"minimum_trade_amount": {"type": "number", "default": 10},
|
|
|
|
"targeted_trade_amount": {"type": "number", "default": 20},
|
|
|
|
"lookahead_analysis_exportfilename": {"type": "string"},
|
|
|
|
"startup_candle": {
|
|
|
|
"type": "array",
|
|
|
|
"uniqueItems": True,
|
|
|
|
"default": [199, 399, 499, 999, 1999],
|
2023-09-04 02:16:10 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"liquidation_buffer": {"type": "number", "minimum": 0.0, "maximum": 0.99},
|
|
|
|
"backtest_breakdown": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {"type": "string", "enum": BACKTEST_BREAKDOWNS},
|
2021-10-21 04:58:40 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"bot_name": {"type": "string"},
|
|
|
|
"unfilledtimeout": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"entry": {"type": "number", "minimum": 1},
|
|
|
|
"exit": {"type": "number", "minimum": 1},
|
|
|
|
"exit_timeout_count": {"type": "number", "minimum": 0, "default": 0},
|
|
|
|
"unit": {"type": "string", "enum": TIMEOUT_UNITS, "default": "minutes"},
|
|
|
|
},
|
2018-06-14 01:32:52 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"entry_pricing": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"price_last_balance": {
|
|
|
|
"type": "number",
|
|
|
|
"minimum": 0,
|
|
|
|
"maximum": 1,
|
|
|
|
"exclusiveMaximum": False,
|
2020-02-23 12:51:16 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"price_side": {"type": "string", "enum": PRICING_SIDES, "default": "same"},
|
|
|
|
"use_order_book": {"type": "boolean"},
|
|
|
|
"order_book_top": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 50,
|
2020-02-23 12:51:16 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"check_depth_of_market": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean"},
|
|
|
|
"bids_to_ask_delta": {"type": "number", "minimum": 0},
|
|
|
|
},
|
2018-02-04 00:04:26 +00:00
|
|
|
},
|
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["price_side"],
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"exit_pricing": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"price_side": {"type": "string", "enum": PRICING_SIDES, "default": "same"},
|
|
|
|
"price_last_balance": {
|
|
|
|
"type": "number",
|
|
|
|
"minimum": 0,
|
|
|
|
"maximum": 1,
|
|
|
|
"exclusiveMaximum": False,
|
|
|
|
},
|
|
|
|
"use_order_book": {"type": "boolean"},
|
|
|
|
"order_book_top": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 50,
|
2021-03-20 13:38:26 +00:00
|
|
|
},
|
2021-06-26 06:19:37 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["price_side"],
|
2021-08-17 03:09:30 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"custom_price_max_distance_ratio": {"type": "number", "minimum": 0.0},
|
|
|
|
"order_types": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"entry": {"type": "string", "enum": ORDERTYPE_POSSIBILITIES},
|
|
|
|
"exit": {"type": "string", "enum": ORDERTYPE_POSSIBILITIES},
|
|
|
|
"force_exit": {"type": "string", "enum": ORDERTYPE_POSSIBILITIES},
|
|
|
|
"force_entry": {"type": "string", "enum": ORDERTYPE_POSSIBILITIES},
|
|
|
|
"emergency_exit": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ORDERTYPE_POSSIBILITIES,
|
|
|
|
"default": "market",
|
|
|
|
},
|
|
|
|
"stoploss": {"type": "string", "enum": ORDERTYPE_POSSIBILITIES},
|
|
|
|
"stoploss_on_exchange": {"type": "boolean"},
|
|
|
|
"stoploss_price_type": {"type": "string", "enum": STOPLOSS_PRICE_TYPES},
|
|
|
|
"stoploss_on_exchange_interval": {"type": "number"},
|
|
|
|
"stoploss_on_exchange_limit_ratio": {
|
|
|
|
"type": "number",
|
|
|
|
"minimum": 0.0,
|
|
|
|
"maximum": 1.0,
|
|
|
|
},
|
2018-11-17 12:05:35 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["entry", "exit", "stoploss", "stoploss_on_exchange"],
|
2018-11-17 12:05:35 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"order_time_in_force": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"entry": {"type": "string", "enum": ORDERTIF_POSSIBILITIES},
|
|
|
|
"exit": {"type": "string", "enum": ORDERTIF_POSSIBILITIES},
|
2018-11-25 20:05:25 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": REQUIRED_ORDERTIF,
|
2018-11-25 20:05:25 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"exchange": {"$ref": "#/definitions/exchange"},
|
|
|
|
"edge": {"$ref": "#/definitions/edge"},
|
|
|
|
"freqai": {"$ref": "#/definitions/freqai"},
|
|
|
|
"external_message_consumer": {"$ref": "#/definitions/external_message_consumer"},
|
|
|
|
"experimental": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {"block_bad_exchanges": {"type": "boolean"}},
|
2018-02-04 00:04:26 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"pairlists": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"method": {"type": "string", "enum": AVAILABLE_PAIRLISTS},
|
2020-10-15 05:38:00 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["method"],
|
|
|
|
},
|
2020-10-15 05:38:00 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"protections": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"method": {"type": "string", "enum": AVAILABLE_PROTECTIONS},
|
|
|
|
"stop_duration": {"type": "number", "minimum": 0.0},
|
|
|
|
"stop_duration_candles": {"type": "number", "minimum": 0},
|
|
|
|
"trade_limit": {"type": "number", "minimum": 1},
|
|
|
|
"lookback_period": {"type": "number", "minimum": 1},
|
|
|
|
"lookback_period_candles": {"type": "number", "minimum": 1},
|
2019-11-09 13:16:11 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["method"],
|
|
|
|
},
|
2018-12-03 19:00:18 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"telegram": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean"},
|
|
|
|
"token": {"type": "string"},
|
|
|
|
"chat_id": {"type": "string"},
|
|
|
|
"allow_custom_messages": {"type": "boolean", "default": True},
|
|
|
|
"balance_dust_level": {"type": "number", "minimum": 0.0},
|
|
|
|
"notification_settings": {
|
|
|
|
"type": "object",
|
|
|
|
"default": {},
|
|
|
|
"properties": {
|
|
|
|
"status": {"type": "string", "enum": TELEGRAM_SETTING_OPTIONS},
|
|
|
|
"warning": {"type": "string", "enum": TELEGRAM_SETTING_OPTIONS},
|
|
|
|
"startup": {"type": "string", "enum": TELEGRAM_SETTING_OPTIONS},
|
|
|
|
"entry": {"type": "string", "enum": TELEGRAM_SETTING_OPTIONS},
|
|
|
|
"entry_fill": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
|
|
|
"default": "off",
|
2022-09-21 12:43:17 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"entry_cancel": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
2022-09-21 12:43:17 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"exit": {
|
|
|
|
"type": ["string", "object"],
|
|
|
|
"additionalProperties": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
|
|
|
},
|
2021-05-27 09:35:27 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"exit_fill": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
|
|
|
"default": "on",
|
2021-08-06 22:19:36 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"exit_cancel": {"type": "string", "enum": TELEGRAM_SETTING_OPTIONS},
|
|
|
|
"protection_trigger": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
|
|
|
"default": "on",
|
2021-09-20 18:08:48 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"protection_trigger_global": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
|
|
|
"default": "on",
|
2021-09-20 18:08:48 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"show_candle": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["off", "ohlc"],
|
|
|
|
"default": "off",
|
2022-07-11 10:10:29 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"strategy_msg": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": TELEGRAM_SETTING_OPTIONS,
|
|
|
|
"default": "on",
|
2022-07-26 18:24:52 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
},
|
2021-06-19 14:49:54 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"reload": {"type": "boolean"},
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["enabled", "token", "chat_id"],
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"webhook": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean"},
|
|
|
|
"url": {"type": "string"},
|
|
|
|
"format": {"type": "string", "enum": WEBHOOK_FORMAT_OPTIONS, "default": "form"},
|
|
|
|
"retries": {"type": "integer", "minimum": 0},
|
|
|
|
"retry_delay": {"type": "number", "minimum": 0},
|
2023-06-29 12:08:52 +00:00
|
|
|
**__MESSAGE_TYPE_DICT,
|
|
|
|
# **{x: {'type': 'object'} for x in RPCMessageType},
|
2022-10-07 18:44:47 +00:00
|
|
|
# Below -> Deprecated
|
2024-05-12 14:27:46 +00:00
|
|
|
"webhookentry": {"type": "object"},
|
|
|
|
"webhookentrycancel": {"type": "object"},
|
|
|
|
"webhookentryfill": {"type": "object"},
|
|
|
|
"webhookexit": {"type": "object"},
|
|
|
|
"webhookexitcancel": {"type": "object"},
|
|
|
|
"webhookexitfill": {"type": "object"},
|
|
|
|
"webhookstatus": {"type": "object"},
|
2018-07-07 11:39:21 +00:00
|
|
|
},
|
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"discord": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean"},
|
|
|
|
"webhook_url": {"type": "string"},
|
2022-06-11 15:30:56 +00:00
|
|
|
"exit_fill": {
|
2024-05-12 14:27:46 +00:00
|
|
|
"type": "array",
|
|
|
|
"items": {"type": "object"},
|
|
|
|
"default": [
|
2022-06-11 15:30:56 +00:00
|
|
|
{"Trade ID": "{trade_id}"},
|
|
|
|
{"Exchange": "{exchange}"},
|
|
|
|
{"Pair": "{pair}"},
|
|
|
|
{"Direction": "{direction}"},
|
|
|
|
{"Open rate": "{open_rate}"},
|
|
|
|
{"Close rate": "{close_rate}"},
|
|
|
|
{"Amount": "{amount}"},
|
|
|
|
{"Open date": "{open_date:%Y-%m-%d %H:%M:%S}"},
|
|
|
|
{"Close date": "{close_date:%Y-%m-%d %H:%M:%S}"},
|
|
|
|
{"Profit": "{profit_amount} {stake_currency}"},
|
|
|
|
{"Profitability": "{profit_ratio:.2%}"},
|
|
|
|
{"Enter tag": "{enter_tag}"},
|
|
|
|
{"Exit Reason": "{exit_reason}"},
|
|
|
|
{"Strategy": "{strategy}"},
|
|
|
|
{"Timeframe": "{timeframe}"},
|
2024-05-12 14:27:46 +00:00
|
|
|
],
|
2022-06-11 15:30:56 +00:00
|
|
|
},
|
|
|
|
"entry_fill": {
|
2024-05-12 14:27:46 +00:00
|
|
|
"type": "array",
|
|
|
|
"items": {"type": "object"},
|
|
|
|
"default": [
|
2022-06-11 15:30:56 +00:00
|
|
|
{"Trade ID": "{trade_id}"},
|
|
|
|
{"Exchange": "{exchange}"},
|
|
|
|
{"Pair": "{pair}"},
|
|
|
|
{"Direction": "{direction}"},
|
|
|
|
{"Open rate": "{open_rate}"},
|
|
|
|
{"Amount": "{amount}"},
|
|
|
|
{"Open date": "{open_date:%Y-%m-%d %H:%M:%S}"},
|
|
|
|
{"Enter tag": "{enter_tag}"},
|
|
|
|
{"Strategy": "{strategy} {timeframe}"},
|
2024-05-12 14:27:46 +00:00
|
|
|
],
|
2022-06-11 15:30:56 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
},
|
2022-06-11 15:30:56 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"api_server": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean"},
|
|
|
|
"listen_ip_address": {"format": "ipv4"},
|
|
|
|
"listen_port": {"type": "integer", "minimum": 1024, "maximum": 65535},
|
|
|
|
"username": {"type": "string"},
|
|
|
|
"password": {"type": "string"},
|
|
|
|
"ws_token": {"type": ["string", "array"], "items": {"type": "string"}},
|
|
|
|
"jwt_secret_key": {"type": "string"},
|
|
|
|
"CORS_origins": {"type": "array", "items": {"type": "string"}},
|
|
|
|
"verbosity": {"type": "string", "enum": ["error", "info"]},
|
2019-04-04 05:13:14 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["enabled", "listen_ip_address", "listen_port", "username", "password"],
|
2019-04-04 05:13:14 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"db_url": {"type": "string"},
|
|
|
|
"export": {"type": "string", "enum": EXPORT_OPTIONS, "default": "trades"},
|
|
|
|
"disableparamexport": {"type": "boolean"},
|
|
|
|
"initial_state": {"type": "string", "enum": ["running", "stopped"]},
|
|
|
|
"force_entry_enable": {"type": "boolean"},
|
|
|
|
"disable_dataframe_checks": {"type": "boolean"},
|
|
|
|
"internals": {
|
|
|
|
"type": "object",
|
|
|
|
"default": {},
|
|
|
|
"properties": {
|
|
|
|
"process_throttle_secs": {"type": "integer"},
|
|
|
|
"interval": {"type": "integer"},
|
|
|
|
"sd_notify": {"type": "boolean"},
|
|
|
|
},
|
2019-12-27 12:46:25 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"dataformat_ohlcv": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": AVAILABLE_DATAHANDLERS,
|
|
|
|
"default": "feather",
|
2019-12-27 12:46:25 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"dataformat_trades": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": AVAILABLE_DATAHANDLERS,
|
|
|
|
"default": "feather",
|
2022-01-23 03:54:58 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"position_adjustment_enable": {"type": "boolean"},
|
|
|
|
"max_entry_position_adjustment": {"type": ["integer", "number"], "minimum": -1},
|
2024-05-15 12:33:41 +00:00
|
|
|
"orderflow": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"scale": {"type": "number", "minimum": 0.0},
|
|
|
|
"stacked_imbalance_range": {"type": "number"},
|
|
|
|
"imbalance_volume": {"type": "number"},
|
|
|
|
"imbalance_ratio": {"type": "number"},
|
2024-03-17 18:34:03 +00:00
|
|
|
}
|
|
|
|
},
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"definitions": {
|
|
|
|
"exchange": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {"type": "string"},
|
|
|
|
"key": {"type": "string", "default": ""},
|
|
|
|
"secret": {"type": "string", "default": ""},
|
|
|
|
"password": {"type": "string", "default": ""},
|
|
|
|
"uid": {"type": "string"},
|
|
|
|
"pair_whitelist": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string",
|
2018-02-04 00:04:26 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"uniqueItems": True,
|
2018-02-04 00:04:26 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"pair_blacklist": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string",
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"uniqueItems": True,
|
2018-08-07 07:25:21 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"unknown_fee_rate": {"type": "number"},
|
|
|
|
"outdated_offset": {"type": "integer", "minimum": 1},
|
|
|
|
"markets_refresh_interval": {"type": "integer"},
|
|
|
|
"ccxt_config": {"type": "object"},
|
|
|
|
"ccxt_async_config": {"type": "object"},
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["name"],
|
2018-10-02 10:42:59 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"edge": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean"},
|
|
|
|
"process_throttle_secs": {"type": "integer", "minimum": 600},
|
|
|
|
"calculate_since_number_of_days": {"type": "integer"},
|
|
|
|
"allowed_risk": {"type": "number"},
|
|
|
|
"stoploss_range_min": {"type": "number"},
|
|
|
|
"stoploss_range_max": {"type": "number"},
|
|
|
|
"stoploss_range_step": {"type": "number"},
|
|
|
|
"minimum_winrate": {"type": "number"},
|
|
|
|
"minimum_expectancy": {"type": "number"},
|
|
|
|
"min_trade_number": {"type": "number"},
|
|
|
|
"max_trade_duration_minute": {"type": "integer"},
|
|
|
|
"remove_pumps": {"type": "boolean"},
|
2018-12-01 10:08:18 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["process_throttle_secs", "allowed_risk"],
|
2018-10-02 10:42:59 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"external_message_consumer": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enabled": {"type": "boolean", "default": False},
|
|
|
|
"producers": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {"type": "string"},
|
|
|
|
"host": {"type": "string"},
|
|
|
|
"port": {
|
|
|
|
"type": "integer",
|
|
|
|
"default": 8080,
|
|
|
|
"minimum": 0,
|
|
|
|
"maximum": 65535,
|
2022-09-17 01:22:24 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"secure": {"type": "boolean", "default": False},
|
|
|
|
"ws_token": {"type": "string"},
|
2022-08-31 17:58:58 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["name", "host", "ws_token"],
|
|
|
|
},
|
2022-08-18 16:39:20 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"wait_timeout": {"type": "integer", "minimum": 0},
|
|
|
|
"sleep_time": {"type": "integer", "minimum": 0},
|
|
|
|
"ping_timeout": {"type": "integer", "minimum": 0},
|
|
|
|
"remove_entry_exit_signals": {"type": "boolean", "default": False},
|
|
|
|
"initial_candle_limit": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 0,
|
|
|
|
"maximum": 1500,
|
|
|
|
"default": 1500,
|
|
|
|
},
|
|
|
|
"message_size_limit": { # In megabytes
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
2024-05-12 16:18:49 +00:00
|
|
|
"maximum": 20,
|
2024-05-12 14:27:46 +00:00
|
|
|
"default": 8,
|
2022-09-13 22:39:53 +00:00
|
|
|
},
|
2022-08-18 16:39:20 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": ["producers"],
|
2022-08-18 16:39:20 +00:00
|
|
|
},
|
2022-05-05 12:37:37 +00:00
|
|
|
"freqai": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2022-08-13 07:24:04 +00:00
|
|
|
"enabled": {"type": "boolean", "default": False},
|
2022-07-29 06:49:35 +00:00
|
|
|
"keras": {"type": "boolean", "default": False},
|
2022-10-09 18:22:42 +00:00
|
|
|
"write_metrics_to_disk": {"type": "boolean", "default": False},
|
2023-02-22 21:27:56 +00:00
|
|
|
"purge_old_models": {"type": ["boolean", "number"], "default": 2},
|
2022-11-03 20:11:26 +00:00
|
|
|
"conv_width": {"type": "integer", "default": 1},
|
2022-07-10 10:34:09 +00:00
|
|
|
"train_period_days": {"type": "integer", "default": 0},
|
2022-07-31 13:23:27 +00:00
|
|
|
"backtest_period_days": {"type": "number", "default": 7},
|
|
|
|
"identifier": {"type": "string", "default": "example"},
|
2022-05-05 12:37:37 +00:00
|
|
|
"feature_parameters": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2022-07-31 13:23:27 +00:00
|
|
|
"include_corr_pairlist": {"type": "array"},
|
|
|
|
"include_timeframes": {"type": "array"},
|
2022-07-10 10:34:09 +00:00
|
|
|
"label_period_candles": {"type": "integer"},
|
|
|
|
"include_shifted_candles": {"type": "integer", "default": 0},
|
2022-07-31 13:23:27 +00:00
|
|
|
"DI_threshold": {"type": "number", "default": 0},
|
2022-05-05 12:37:37 +00:00
|
|
|
"weight_factor": {"type": "number", "default": 0},
|
|
|
|
"principal_component_analysis": {"type": "boolean", "default": False},
|
2022-05-22 22:06:26 +00:00
|
|
|
"use_SVM_to_remove_outliers": {"type": "boolean", "default": False},
|
2022-09-27 16:17:49 +00:00
|
|
|
"plot_feature_importances": {"type": "integer", "default": 0},
|
2024-05-12 14:27:46 +00:00
|
|
|
"svm_params": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"shuffle": {"type": "boolean", "default": False},
|
|
|
|
"nu": {"type": "number", "default": 0.1},
|
|
|
|
},
|
|
|
|
},
|
2023-02-21 20:08:34 +00:00
|
|
|
"shuffle_after_split": {"type": "boolean", "default": False},
|
2024-05-12 14:27:46 +00:00
|
|
|
"buffer_train_data_candles": {"type": "integer", "default": 0},
|
2022-05-05 12:37:37 +00:00
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"required": [
|
|
|
|
"include_timeframes",
|
|
|
|
"include_corr_pairlist",
|
|
|
|
],
|
2022-05-05 12:37:37 +00:00
|
|
|
},
|
|
|
|
"data_split_parameters": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"test_size": {"type": "number"},
|
|
|
|
"random_state": {"type": "integer"},
|
2024-05-12 14:27:46 +00:00
|
|
|
"shuffle": {"type": "boolean", "default": False},
|
2022-05-05 12:37:37 +00:00
|
|
|
},
|
|
|
|
},
|
2024-05-12 14:27:46 +00:00
|
|
|
"model_training_parameters": {"type": "object"},
|
2022-11-13 15:56:31 +00:00
|
|
|
"rl_config": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-03-07 10:33:54 +00:00
|
|
|
"drop_ohlc_from_features": {"type": "boolean", "default": False},
|
2022-11-13 15:56:31 +00:00
|
|
|
"train_cycles": {"type": "integer"},
|
|
|
|
"max_trade_duration_candles": {"type": "integer"},
|
|
|
|
"add_state_info": {"type": "boolean", "default": False},
|
|
|
|
"max_training_drawdown_pct": {"type": "number", "default": 0.02},
|
|
|
|
"cpu_count": {"type": "integer", "default": 1},
|
|
|
|
"model_type": {"type": "string", "default": "PPO"},
|
|
|
|
"policy_type": {"type": "string", "default": "MlpPolicy"},
|
2022-11-26 12:47:47 +00:00
|
|
|
"net_arch": {"type": "array", "default": [128, 128]},
|
2023-04-02 00:42:05 +00:00
|
|
|
"randomize_starting_position": {"type": "boolean", "default": False},
|
2023-04-15 18:01:12 +00:00
|
|
|
"progress_bar": {"type": "boolean", "default": True},
|
2022-11-13 15:56:31 +00:00
|
|
|
"model_reward_parameters": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"rr": {"type": "number", "default": 1},
|
2024-05-12 14:27:46 +00:00
|
|
|
"profit_aim": {"type": "number", "default": 0.025},
|
|
|
|
},
|
|
|
|
},
|
2022-11-13 15:56:31 +00:00
|
|
|
},
|
|
|
|
},
|
2018-12-01 10:08:18 +00:00
|
|
|
},
|
2022-08-13 07:24:04 +00:00
|
|
|
"required": [
|
|
|
|
"enabled",
|
|
|
|
"train_period_days",
|
|
|
|
"backtest_period_days",
|
|
|
|
"identifier",
|
|
|
|
"feature_parameters",
|
2024-05-12 14:27:46 +00:00
|
|
|
"data_split_parameters",
|
|
|
|
],
|
2022-05-05 12:37:37 +00:00
|
|
|
},
|
2018-04-02 14:42:53 +00:00
|
|
|
},
|
|
|
|
}
|
2020-01-02 09:38:59 +00:00
|
|
|
|
|
|
|
SCHEMA_TRADE_REQUIRED = [
|
2024-05-12 14:27:46 +00:00
|
|
|
"exchange",
|
|
|
|
"timeframe",
|
|
|
|
"max_open_trades",
|
|
|
|
"stake_currency",
|
|
|
|
"stake_amount",
|
|
|
|
"tradable_balance_ratio",
|
|
|
|
"last_stake_amount_min_ratio",
|
|
|
|
"dry_run",
|
|
|
|
"dry_run_wallet",
|
|
|
|
"exit_pricing",
|
|
|
|
"entry_pricing",
|
|
|
|
"stoploss",
|
|
|
|
"minimal_roi",
|
|
|
|
"internals",
|
|
|
|
"dataformat_ohlcv",
|
|
|
|
"dataformat_trades",
|
2020-01-02 09:38:59 +00:00
|
|
|
]
|
|
|
|
|
2021-03-10 09:43:44 +00:00
|
|
|
SCHEMA_BACKTEST_REQUIRED = [
|
2024-05-12 14:27:46 +00:00
|
|
|
"exchange",
|
|
|
|
"stake_currency",
|
|
|
|
"stake_amount",
|
|
|
|
"dry_run_wallet",
|
|
|
|
"dataformat_ohlcv",
|
|
|
|
"dataformat_trades",
|
2021-03-10 09:43:44 +00:00
|
|
|
]
|
2022-05-01 07:53:34 +00:00
|
|
|
SCHEMA_BACKTEST_REQUIRED_FINAL = SCHEMA_BACKTEST_REQUIRED + [
|
2024-05-12 14:27:46 +00:00
|
|
|
"stoploss",
|
|
|
|
"minimal_roi",
|
|
|
|
"max_open_trades",
|
2022-05-01 07:53:34 +00:00
|
|
|
]
|
2021-03-10 09:43:44 +00:00
|
|
|
|
2020-01-02 09:38:59 +00:00
|
|
|
SCHEMA_MINIMAL_REQUIRED = [
|
2024-05-12 14:27:46 +00:00
|
|
|
"exchange",
|
|
|
|
"dry_run",
|
|
|
|
"dataformat_ohlcv",
|
|
|
|
"dataformat_trades",
|
2020-01-02 09:38:59 +00:00
|
|
|
]
|
2023-08-17 07:15:59 +00:00
|
|
|
SCHEMA_MINIMAL_WEBSERVER = SCHEMA_MINIMAL_REQUIRED + [
|
2024-05-12 14:27:46 +00:00
|
|
|
"api_server",
|
2023-08-17 07:15:59 +00:00
|
|
|
]
|
2020-04-24 22:16:52 +00:00
|
|
|
|
|
|
|
CANCEL_REASON = {
|
|
|
|
"TIMEOUT": "cancelled due to timeout",
|
2020-08-26 20:17:43 +00:00
|
|
|
"PARTIALLY_FILLED_KEEP_OPEN": "partially filled - keeping order open",
|
|
|
|
"PARTIALLY_FILLED": "partially filled",
|
|
|
|
"FULLY_CANCELLED": "fully cancelled",
|
2020-05-16 18:28:54 +00:00
|
|
|
"ALL_CANCELLED": "cancelled (all unfilled and partially filled open orders cancelled)",
|
2020-04-24 22:16:52 +00:00
|
|
|
"CANCELLED_ON_EXCHANGE": "cancelled on exchange",
|
2022-04-04 14:59:27 +00:00
|
|
|
"FORCE_EXIT": "forcesold",
|
2022-04-16 11:44:41 +00:00
|
|
|
"REPLACE": "cancelled to be replaced by new limit order",
|
2023-09-02 14:49:12 +00:00
|
|
|
"REPLACE_FAILED": "failed to replace order, deleting Trade",
|
2024-05-12 14:27:46 +00:00
|
|
|
"USER_CANCEL": "user requested order cancel",
|
2020-04-24 22:16:52 +00:00
|
|
|
}
|
2020-05-22 18:56:34 +00:00
|
|
|
|
|
|
|
# List of pairs with their timeframes
|
2021-12-03 14:20:18 +00:00
|
|
|
PairWithTimeframe = Tuple[str, str, CandleType]
|
2020-06-12 12:12:33 +00:00
|
|
|
ListPairsWithTimeframes = List[PairWithTimeframe]
|
2020-11-21 09:52:15 +00:00
|
|
|
|
|
|
|
# Type for trades list
|
|
|
|
TradeList = List[List]
|
2023-04-26 13:14:45 +00:00
|
|
|
# ticks, pair, timeframe, CandleType
|
|
|
|
TickWithTimeframe = Tuple[str, str, CandleType, Optional[int], Optional[int]]
|
|
|
|
ListTicksWithTimeframes = List[TickWithTimeframe]
|
2022-04-04 14:51:57 +00:00
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
LongShort = Literal["long", "short"]
|
|
|
|
EntryExit = Literal["entry", "exit"]
|
|
|
|
BuySell = Literal["buy", "sell"]
|
|
|
|
MakerTaker = Literal["maker", "taker"]
|
|
|
|
BidAsk = Literal["bid", "ask"]
|
|
|
|
OBLiteral = Literal["asks", "bids"]
|
2022-09-18 11:20:36 +00:00
|
|
|
|
|
|
|
Config = Dict[str, Any]
|
2023-05-13 13:38:40 +00:00
|
|
|
# Exchange part of the configuration.
|
|
|
|
ExchangeConfig = Dict[str, Any]
|
2023-01-15 10:44:10 +00:00
|
|
|
IntOrInf = float
|
2023-09-21 04:19:36 +00:00
|
|
|
|
|
|
|
|
2024-05-12 14:27:46 +00:00
|
|
|
EntryExecuteMode = Literal["initial", "pos_adjust", "replace"]
|