diff --git a/README.md b/README.md index 658f1a751..4a742301e 100644 --- a/README.md +++ b/README.md @@ -1,36 +1,117 @@ ![Passivbot](docs/images/pbot_logo_full.svg) -# Trading bot running on Bybit, Binance, OKX, Kucoin, Bitget, BingX and Hyperliquid +# Trading bot running on Bybit, Binance, OKX, Bitget, GateIO and Hyperliquid :warning: **Used at one's own risk** :warning: -v6.1.4 +v7.0.0 ## Overview -Passivbot is a cryptocurrency trading bot written in Python, intended to require minimal user intervention. +Passivbot is a cryptocurrency trading bot written in Python and Rust, intended to require minimal user intervention. It operates on perpetual futures derivatives markets, automatically creating and cancelling limit buy and sell orders on behalf of the user. It does not try to predict future price movements, it does not use technical indicators, nor does it follow trends. Rather, it is a contrarian market maker, providing resistance to price changes in both directions, thereby "serving the market" as a price stabilizer. -Passivbot's behavior may be backtested on historical price data, using the included backtester whose CPU heavy functions are written compatible with Numba for speed. Also included is an optimizer, which finds better configurations by iterating thousands of backtests with different candidates, converging on the optimal ones with an evolutionary algorithm. +Passivbot's behavior may be backtested on historical price data, using the included backtester whose CPU heavy functions are written in Rust for speed. Also included is an optimizer, which finds better configurations by iterating thousands of backtests with different candidates, converging on the optimal ones with an evolutionary algorithm. ## Strategy Inspired by the Martingale betting strategy, the robot will make a small initial entry and double down on its losing positions multiple times to bring the average entry price closer to current price action. The orders are placed in a grid, ready to absorb sudden price movements. After each re-entry, the robot quickly updates its closing orders at a set take-profit markup. This way, if there is even a minor market reversal, or "bounce", the position can be closed in profit, and it starts over. ### Forager -The Forager feature dynamically chooses the most volatile markets on which to open positions. Volatility is defined as the mean of the normalized relative range for the most recent candles (15m by default), i.e. `mean((ohlcv.high - ohlcv.low) / ohlcv.close)`. +The Forager feature dynamically chooses the most volatile markets on which to open positions. Volatility is defined as the mean of the normalized relative range for the most recent 1m candles, i.e. `mean((ohlcv.high - ohlcv.low) / ohlcv.close)`. ### Unstucking Mechanism Passivbot manages underperforming, or "stuck", positions by realizing small losses over time. If multiple positions are stuck, the bot prioritizes positions with the smallest gap between the entry price and current market price for "unstucking". Losses are limited by ensuring that the account balance does not fall under a set percentage below the past peak balance. -## Controlling the bot -Passivbot is controlled via terminal commands. -To let Passivbot run on multiple markets simultaneously, use passivbot_multi (see docs/passivbot_multi.md) -There is also an integrated manager for controlling multiple single symbol bots (see docs/manager.md). -See also https://github.com/msei99/pbgui/ for a web based Passivbot GUI. +## Installation + +To install Passivbot and its dependencies, follow the steps below. + +### Step 1: Clone the Repository + +First, clone the Passivbot repository to the local machine: + +```sh +git clone https://github.com/enarjord/passivbot.git +cd passivbot +``` + + +### Step 2: Install Rust +Passivbot uses Rust for some of its components. Install Rust by following these steps: + +Visit https://www.rust-lang.org/tools/install +Follow the instructions for your operating system to install Rustup, the Rust installer and version management tool. +After installation, restart your terminal or command prompt. + +### Step 3: Create and Activate a Virtual Environment + +Create a virtual environment to manage dependencies: + +```sh +python3 -m venv venv +``` + +Activate the virtual environment: + +- On Windows: + ```sh + .\venv\Scripts\activate + ``` +- On macOS and Linux: + ```sh + source venv/bin/activate + ``` + +### Step 4: Install Python Dependencies + +Install all the required Python dependencies listed in the `requirements.txt` file: + +```sh +pip install -r requirements.txt +``` + +### Step 5: Build Rust Extensions + +Navigate to the `passivbot-rust` directory and build the Rust extensions using `maturin`: + +```sh +cd passivbot-rust +maturin develop --release +cd .. +``` + +Note that the Rust bindings must be recompiled for changes in the Rust source to take effect. + +### Step 6: Add API keys + +Make a copy of the api-keys template file: + +```sh +cp api-keys.json.example api-keys.json +``` + +Add your keys to api-keys.json. + +### Step 6: Run Passivbot + +Make a live configuration file, using `configs/live/example_config.hjson` as a template. + +To start the bot, run: + +```sh +python src/main.py configs/live/example_config.hjson +``` + +## Jupyter Lab + +Jupyter lab needs to be run in the same virtual environment as the bot. Activate venv (see installation instructions above, step 3), and launch Jupyter lab from the Passivbot root dir with: +```shell +python3 -m jupyter lab +``` ## Requirements @@ -39,13 +120,13 @@ See also https://github.com/msei99/pbgui/ for a web based Passivbot GUI. ## Pre-optimized configurations -Pre-optimized configurations for Passivbot can be found in the directory `configs/live/` +Coming soon... See also https://pbconfigdb.scud.dedyn.io/ ## Documentation: -For more detailed information about Passivbot, see documentation on https://www.passivbot.com +For more detailed information about Passivbot, see documentation files here: [docs/](docs/) or on www.passivbot.com ## Support @@ -56,7 +137,7 @@ For more detailed information about Passivbot, see documentation on https://www. ## Third Party Links, Referrals and Tip Jar **Passivbot Manager Service:** -For users uncomfortable with or unwilling to run the robot themselves, there is a paid manager service to run Passivbot on the user's behalf. +There is a paid manager service to run Passivbot on the user's behalf: www.passivbotmanager.com **Referrals:** @@ -66,7 +147,6 @@ https://partner.bybit.com/b/passivbot https://partner.bitget.com/bg/Y8FU1W https://www.okx.com/join/PASSIVBOT (20% rebate) https://www.kucoin.com/r/rf/QBSFZ5HT -https://bingx.com/invite/DFONXA **BuyMeACoffee:** https://www.buymeacoffee.com/enarjord diff --git a/api-keys.example.json b/api-keys.json.example similarity index 92% rename from api-keys.example.json rename to api-keys.json.example index 69e5c7f20..17cd92d82 100644 --- a/api-keys.example.json +++ b/api-keys.json.example @@ -5,7 +5,6 @@ "bitget": "https://partner.bitget.com/bg/Y8FU1W", "okx": "https://www.okx.com/join/PASSIVBOT", "kucoin": "https://www.kucoin.com/r/rf/QBSFZ5HT", - "bingx": "https://bingx.com/invite/DFONXA" }, "binance_01" : { "exchange": "binance", @@ -40,15 +39,15 @@ "secret": "secret", "passphrase": "passphrase" }, - "bingx_01" : { - "exchange": "bingx", - "key": "key", - "secret": "secret" - }, "hyperliquid_01" : { "exchange": "hyperliquid", "wallet_address": "wallet_address", "private_key": "private_key", "is_vault": false + }, + "gateio_01" : { + "exchange": "gateio", + "key": "key", + "secret": "secret" } } diff --git a/backtest.py b/backtest.py deleted file mode 100644 index 454ffe04a..000000000 --- a/backtest.py +++ /dev/null @@ -1,252 +0,0 @@ -import os - -# os.environ["NOJIT"] = "true" - -import argparse -import asyncio -import pprint -from time import time - -import numpy as np -import pandas as pd - -from downloader import Downloader, load_hlc_cache -from njit_funcs import round_ -from njit_funcs_recursive_grid import backtest_recursive_grid -from njit_funcs_neat_grid import backtest_neat_grid -from njit_clock import backtest_clock -from plotting import dump_plots -from procedures import ( - prepare_backtest_config, - load_live_config, - load_hjson_config, - add_argparse_args, -) -from pure_funcs import ( - create_xk, - denumpyize, - ts_to_date, - analyze_fills, - spotify_config, - determine_passivbot_mode, - candidate_to_live_config, - make_compatible, -) - - -def backtest(config: dict, data: np.ndarray, do_print=False) -> (list, bool): - config.update(make_compatible(config)) - passivbot_mode = determine_passivbot_mode(config) - xk = create_xk(config) - if passivbot_mode == "recursive_grid": - return backtest_recursive_grid( - data, - config["starting_balance"], - config["latency_simulation_ms"], - config["maker_fee"], - **xk, - ) - elif passivbot_mode == "neat_grid": - return backtest_neat_grid( - data, - config["starting_balance"], - config["latency_simulation_ms"], - config["maker_fee"], - **xk, - ) - elif passivbot_mode == "clock": - return backtest_clock( - data, - config["starting_balance"], - config["maker_fee"], - **xk, - ) - else: - raise Exception(f"unknown passivbot mode {passivbot_mode}") - - -def plot_wrap(config, data): - print("n_days", round_(config["n_days"], 0.1)) - print("starting_balance", config["starting_balance"]) - print("backtesting...") - sts = time() - fills_long, fills_short, stats = backtest(config, data, do_print=True) - print(f"{time() - sts:.2f} seconds elapsed") - if not fills_long and not fills_short: - print("no fills") - return - longs, shorts, sdf, result = analyze_fills(fills_long, fills_short, stats, config) - config["result"] = result - - df = pd.DataFrame({**{"timestamp": data[:, 0], "qty": data[:, 1], "price": data[:, 2]}, **{}}) - print("dumping plots...") - dump_plots( - config, - longs, - shorts, - sdf, - df, - n_parts=config["n_parts"], - disable_plotting=config["disable_plotting"], - ) - if ( - not config["disable_plotting"] - and config["enable_interactive_plot"] - and config["passivbot_mode"] != "clock" - ): - import interactive_plot - - print("dumping interactive plot...") - sts = time() - interactive_plot.dump_interactive_plot(config, data, longs, shorts) - print(f"{time() - sts:.2f} seconds spent on dumping interactive plot") - - -async def main(): - parser = argparse.ArgumentParser(prog="Backtest", description="Backtest given passivbot config.") - parser.add_argument( - "live_config_path", - type=str, - help="path to live config to test, comma separated for multiple configs serially", - ) - parser = add_argparse_args(parser) - parser.add_argument( - "-lw", - "--long_wallet_exposure_limit", - "--long-wallet-exposure-limit", - type=float, - required=False, - dest="long_wallet_exposure_limit", - default=None, - help="specify long wallet exposure limit, overriding value from live config", - ) - parser.add_argument( - "-sw", - "--short_wallet_exposure_limit", - "--short-wallet-exposure-limit", - type=float, - required=False, - dest="short_wallet_exposure_limit", - default=None, - help="specify short wallet exposure limit, overriding value from live config", - ) - parser.add_argument( - "-le", - "--long_enabled", - "--long-enabled", - type=str, - required=False, - dest="long_enabled", - default=None, - help="specify long enabled [y/n], overriding value from live config", - ) - parser.add_argument( - "-se", - "--short_enabled", - "--short-enabled", - type=str, - required=False, - dest="short_enabled", - default=None, - help="specify short enabled [y/n], overriding value from live config", - ) - parser.add_argument( - "-np", - "--n_parts", - "--n-parts", - type=int, - required=False, - dest="n_parts", - default=None, - help="set n backtest slices to plot", - ) - parser.add_argument( - "-dp", - "--disable_plotting", - "--disable-plotting", - action="store_true", - help="disable plotting", - ) - args = parser.parse_args() - live_config_paths = args.live_config_path.split(",") - config = prepare_backtest_config(args) - for ix, live_config_path in enumerate(live_config_paths): - for symbol in config["symbols"]: - if "symbol" not in config or symbol != config["symbol"] or ix > 0: - args = parser.parse_args() - args.symbols = symbol - config = prepare_backtest_config(args) - config["n_parts"] = args.n_parts - live_config = load_live_config(live_config_path) - if "spot" in config["market_type"]: - live_config = spotify_config(live_config) - config.update(live_config) - passivbot_mode = determine_passivbot_mode(config) - - if args.long_wallet_exposure_limit is not None: - old_val = config["long"]["wallet_exposure_limit"] - config["long"]["wallet_exposure_limit"] = args.long_wallet_exposure_limit - print( - f"overriding long wallet exposure limit ({old_val}) " - f"with new value: {args.long_wallet_exposure_limit}" - ) - if args.short_wallet_exposure_limit is not None: - old_val = config["short"]["wallet_exposure_limit"] - config["short"]["wallet_exposure_limit"] = args.short_wallet_exposure_limit - print( - f"overriding short wallet exposure limit ({old_val}) " - f"with new value: {args.short_wallet_exposure_limit}" - ) - if args.long_enabled is not None: - config["long"]["enabled"] = "y" in args.long_enabled.lower() - if args.short_enabled is not None: - config["short"]["enabled"] = "y" in args.short_enabled.lower() - if passivbot_mode == "clock" or config["exchange"] == "okx": - config["ohlcv"] = True - config["disable_plotting"] = args.disable_plotting - if "spot" in config["market_type"]: - live_config = spotify_config(live_config) - config["passivbot_mode"] = determine_passivbot_mode(config) - print() - for k in ( - keys := [ - "exchange", - "spot", - "symbol", - "market_type", - "passivbot_mode", - "config_type", - "starting_balance", - "start_date", - "end_date", - "maker_fee", - "min_qty", - "min_cost", - "base_dir", - "c_mult", - "adg_n_subdivisions", - ] - ): - if k in config: - print(f"{k: <{max(map(len, keys)) + 2}} {config[k]}") - print() - if config["ohlcv"]: - data = await load_hlc_cache( - symbol, - config["inverse"], - config["start_date"], - config["end_date"], - base_dir=config["base_dir"], - spot=config["spot"], - exchange=config["exchange"], - ) - else: - downloader = Downloader(config) - data = await downloader.get_sampled_ticks() - config["n_days"] = round_((data[-1][0] - data[0][0]) / (1000 * 60 * 60 * 24), 0.1) - pprint.pprint(denumpyize(candidate_to_live_config(config))) - plot_wrap(config, data) - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/backtest_multi.py b/backtest_multi.py deleted file mode 100644 index b14b1343b..000000000 --- a/backtest_multi.py +++ /dev/null @@ -1,567 +0,0 @@ -import asyncio -import hjson -import json -import pprint -import os -import argparse -import logging -import traceback -import numpy as np -import pandas as pd -from downloader import prepare_multsymbol_data -from procedures import ( - load_live_config, - utc_ms, - make_get_filepath, - fetch_market_specific_settings_multi, -) -from pure_funcs import ( - ts_to_date_utc, - tuplify, - numpyize, - live_config_dict_to_list_recursive_grid, - fills_multi_to_df, - stats_multi_to_df, - analyze_fills_multi, - calc_drawdowns, - str2bool, - denumpyize, - calc_hash, - add_missing_params_to_hjson_live_multi_config, - get_template_live_config, -) -from plotting import plot_pnls_stuck, plot_pnls_separate, plot_pnls_long_short, plot_fills_multi -from collections import OrderedDict -from njit_multisymbol import backtest_multisymbol_recursive_grid -from njit_funcs import round_dynamic -import matplotlib.pyplot as plt - - -def oj(*x): - return os.path.join(*x) - - -def backtest_multi(hlcs, config): - res = backtest_multisymbol_recursive_grid( - hlcs, - config["starting_balance"], - config["maker_fee"], - config["do_longs"], - config["do_shorts"], - config["c_mults"], - config["symbols"], - config["qty_steps"], - config["price_steps"], - config["min_costs"], - config["min_qtys"], - config["live_configs"], - config["loss_allowance_pct"], - config["stuck_threshold"], - config["unstuck_close_pct"], - ) - return res - - -def prep_config_multi(parser): - parser_items = [ - ("s", "symbols", "symbols", str, ", comma separated (SYM1USDT,SYM2USDT,...)"), - ("e", "exchange", "exchange", str, ""), - ("sd", "start_date", "start_date", str, ""), - ( - "ed", - "end_date", - "end_date", - str, - ", if end date is 'now', will use current date as end date", - ), - ("sb", "starting_balance", "starting_balance", float, ""), - ("lap", "loss_allowance_pct", "loss_allowance_pct", float, ""), - ("st", "stuck_threshold", "stuck_threshold", float, ""), - ("ucp", "unstuck_close_pct", "unstuck_close_pct", float, ""), - ("le", "long_enabled", "long_enabled", str2bool, " (y/n or t/f)"), - ("se", "short_enabled", "short_enabled", str2bool, " (y/n or t/f)"), - ("bd", "base_dir", "base_dir", str, ""), - ] - for k0, k1, d, t, h in parser_items: - parser.add_argument( - *[f"-{k0}", f"--{k1}"] + ([f"--{k1.replace('_', '-')}"] if "_" in k1 else []), - type=t, - required=False, - dest=d, - default=None, - help=f"specify {k1}{h}, overriding value from hjson config.", - ) - args = parser.parse_args() - return args2config(args) - - -def load_and_parse_config(path: str): - loaded = hjson.load(open(path)) - if all([x in loaded for x in ["live_config", "args"]]): - # single live config type - formatted = {} - for k in [ - "exchange", - "long_enabled", - "short_enabled", - "start_date", - "end_date", - "starting_balance", - "symbols", - ]: - formatted[k] = loaded["args"][k] - for k in [ - "TWE_long", - "TWE_short", - "loss_allowance_pct", - "stuck_threshold", - "unstuck_close_pct", - ]: - formatted[k] = loaded["live_config"]["global"][k] - - formatted["live_configs_dir"] = "configs/live/multisymbol/no_AU/" - formatted["default_config_path"] = "tmp/test.json" - formatted["base_dir"] = "backtests" - formatted["live_configs"] = { - symbol: {pside: loaded["live_config"][pside] for pside in ["long", "short"]} - for symbol in formatted["symbols"] - } - return formatted - - if all( - [ - x in loaded - for x in [ - "exchange", - "loss_allowance_pct", - "stuck_threshold", - "unstuck_close_pct", - "TWE_long", - "TWE_short", - "long_enabled", - "short_enabled", - "start_date", - "end_date", - "starting_balance", - "symbols", - "live_configs_dir", - "default_config_path", - "base_dir", - ] - ] - ): - # hjson backtest config type - formatted = loaded - formatted["live_configs"] = {} - return formatted - if all( - [ - x in loaded - for x in [ - "exchange", - "start_date", - "end_date", - "symbols", - "base_dir", - "n_cpus", - "iters", - "starting_balance", - "market_type", - "worst_drawdown_lower_bound", - "long_enabled", - "short_enabled", - "bounds", - ] - ] - ): - # hjson optimize config type - formatted = loaded - formatted["live_configs"] = {} - return formatted - try: - loaded, _ = add_missing_params_to_hjson_live_multi_config(loaded) - if all([x in loaded for x in get_template_live_config("multi_hjson")]): - # hjson live multi config - formatted = loaded - formatted["exchange"] = "binance" - formatted["start_date"] = "2021-05-01" - formatted["end_date"] = "now" - formatted["starting_balance"] = 100000.0 - formatted["base_dir"] = "backtests" - formatted["symbols"] = loaded["approved_symbols"] - if loaded["universal_live_config"]: - formatted["live_configs"] = { - symbol: { - pside: loaded["universal_live_config"][pside] for pside in ["long", "short"] - } - for symbol in formatted["approved_symbols"] - } - for s in formatted["live_configs"]: - for pside in ["long", "short"]: - formatted["live_configs"][s][pside]["enabled"] = formatted[f"{pside}_enabled"] - else: - formatted["live_configs"] = {} - return formatted - except: - pass - raise Exception("unknown config type") - - -def args2config(args): - config = OrderedDict() - for key, value in vars(args).items(): - if "config_path" in key: - logging.info(f"loading {value}") - config = load_and_parse_config(value) - elif key not in config: - logging.info(f"setting {key}: {value}") - config[key] = value - elif getattr(args, key) is not None: - if key == "symbols": - new_symbols = {s: "" for s in getattr(args, key).split(",") if s} - if new_symbols != config["symbols"]: - logging.info(f"new symbols: {new_symbols}") - config["symbols"] = new_symbols - else: - if key in config and config[key] != getattr(args, key): - logging.info(f"changing {key}: {config[key]} -> {getattr(args, key)}") - config[key] = getattr(args, key) - if isinstance(config["symbols"], list): - config["symbols"] = {s: "" for s in config["symbols"]} - config["symbols"] = OrderedDict(sorted(config["symbols"].items())) - for key, default_val in [ - ("base_dir", "backtests"), - ("starting_balance", 10000), - ("start_date", "2021-05-01"), - ("end_date", "now"), - ]: - if key not in config: - logging.info( - f'key "{key}"" missing from config; setting to default value "{default_val}"' - ) - config[key] = default_val - return config - - -async def prep_hlcs_mss_config(config): - if config["end_date"] in ["now", "", "today"]: - config["end_date"] = ts_to_date_utc(utc_ms())[:10] - coins = [s.replace("USDT", "") for s in sorted(set(config["symbols"]))] - config["cache_fpath"] = make_get_filepath( - oj( - f"{config['base_dir']}", - "multisymbol", - config["exchange"], - f"{calc_hash(coins)}_{config['start_date']}_{config['end_date']}_hlc_cache.npy", - ) - ) - - mss_path = oj( - f"{config['base_dir']}", - "multisymbol", - config["exchange"], - "market_specific_settings.json", - ) - try: - mss = fetch_market_specific_settings_multi(exchange=config["exchange"]) - json.dump(mss, open(make_get_filepath(mss_path), "w")) - except Exception as e: - print("failed to fetch market specific settings", e) - try: - mss = json.load(open(mss_path)) - print(f"loaded market specific settings from cache {mss_path}") - except: - raise Exception("failed to load market specific settings from cache") - - # prepare_multsymbol_data() is computationally expensive, so use a cache - try: - hlcs = np.load(config["cache_fpath"]) - first_ts = 0 - except: - first_ts, hlcs = await prepare_multsymbol_data( - config["symbols"], - config["start_date"], - config["end_date"], - config["base_dir"], - config["exchange"], - ) - np.save(config["cache_fpath"], hlcs) - return hlcs, mss, config - - -async def main(): - logging.basicConfig( - format="%(asctime)s %(levelname)-8s %(message)s", - level=logging.INFO, - datefmt="%Y-%m-%dT%H:%M:%S", - ) - parser = argparse.ArgumentParser(prog="backtest_multi", description="run multisym backtest") - parser.add_argument( - "-bc", - "--backtest_config", - type=str, - required=False, - dest="backtest_config_path", - default="configs/backtest/multi.hjson", - help="backtest config hjson file (default: configs/backtest.multi.hjson) or json config from results_multi_analysis/", - ) - parser.add_argument( - "-tl", - "--total_wallet_exposure_long", - "--total-wallet-exposure-long", - type=float, - required=False, - dest="TWE_long", - default=None, - help="specify total_wallet_exposure_long, overriding value from hjson config", - ) - parser.add_argument( - "-ts", - "--total_wallet_exposure_short", - "--total-wallet-exposure-short", - type=float, - required=False, - dest="TWE_short", - default=None, - help="specify total_wallet_exposure_short, overriding value from hjson config", - ) - config = prep_config_multi(parser) - - # this parser is used to parse flags from backtest config - parser = argparse.ArgumentParser(prog="flags_parser", description="used internally") - parser.add_argument("-sm", type=str, required=False, dest="short_mode", default=None) - parser.add_argument("-lm", type=str, required=False, dest="long_mode", default=None) - parser.add_argument("-lw", type=float, required=False, dest="WE_limit_long", default=None) - parser.add_argument("-sw", type=float, required=False, dest="WE_limit_short", default=None) - parser.add_argument("-lc", type=str, required=False, dest="live_config_path", default=None) - - if os.path.isdir(config["live_configs_dir"]): - live_configs_fnames = sorted( - [f for f in os.listdir(config["live_configs_dir"]) if f.endswith(".json")] - ) - else: - live_configs_fnames = [] - if "live_configs" not in config or not config["live_configs"]: - config["live_configs"] = {} - all_args = {} - max_len_symbol = max([len(s) for s in config["symbols"]]) - - for symbol in config["symbols"]: - args = parser.parse_args(config["symbols"][symbol].split()) - all_args[symbol] = args - if symbol in config["live_configs"]: - continue - live_config_fname_l = [x for x in live_configs_fnames if symbol in x] - live_configs_dir_fname = ( - None - if live_config_fname_l == [] - else oj(config["live_configs_dir"], live_config_fname_l[0]) - ) - for path in [ - args.live_config_path, - live_configs_dir_fname, - config["default_config_path"], - ]: - if path is not None and os.path.exists(path): - try: - config["live_configs"][symbol] = load_live_config(path) - logging.info(f"{symbol: <{max_len_symbol}} loaded live config: {path}") - break - except Exception as e: - logging.error(f"failed to load live config {symbol} {path} {e}") - else: - raise Exception(f"no usable live config found for {symbol}") - for pside in ["long", "short"]: - if getattr(args, f"{pside}_mode") == "n": - config["live_configs"][symbol][pside]["enabled"] = True - elif getattr(args, f"{pside}_mode") == "gs": - config["live_configs"][symbol][pside]["enabled"] = False - else: - config["live_configs"][symbol][pside]["enabled"] = config[f"{pside}_enabled"] - - n_active_longs = len( - [s for s in config["symbols"] if config["live_configs"][s]["long"]["enabled"]] - ) - n_active_shorts = len( - [s for s in config["symbols"] if config["live_configs"][s]["short"]["enabled"]] - ) - - WE_limits = { - "long": config["TWE_long"] / n_active_longs if n_active_longs > 0 else 0.0, - "short": config["TWE_short"] / n_active_shorts if n_active_shorts > 0 else 0.0, - } - - for symbol in config["symbols"]: - for pside in ["long", "short"]: - for symbol in config["symbols"]: - if getattr(all_args[symbol], f"WE_limit_{pside}") is None: - config["live_configs"][symbol][pside]["wallet_exposure_limit"] = WE_limits[pside] - else: - config["live_configs"][symbol][pside]["wallet_exposure_limit"] = getattr( - all_args[symbol], f"WE_limit_{pside}" - ) - config["live_configs"][symbol][pside]["wallet_exposure_limit"] = max( - config["live_configs"][symbol][pside]["wallet_exposure_limit"], 0.001 - ) - - hlcs, mss, config = await prep_hlcs_mss_config(config) - - now_fname = ts_to_date_utc(utc_ms())[:19].replace(":", "_") - backtest_metrics_path = make_get_filepath( - oj(f"{config['base_dir']}", "multisymbol", config["exchange"], now_fname, "") - ) - hjson.dump(denumpyize(config), open(oj(backtest_metrics_path, "backtest_config.hjson"), "w")) - - config["do_longs"] = tuplify( - [config["live_configs"][s]["long"]["enabled"] for s in config["symbols"]] - ) - config["do_shorts"] = tuplify( - [config["live_configs"][s]["short"]["enabled"] for s in config["symbols"]] - ) - config["live_configs"] = numpyize( - [ - live_config_dict_to_list_recursive_grid(config["live_configs"][symbol]) - for symbol in config["symbols"] - ] - ) - - config["qty_steps"] = tuplify([mss[symbol]["qty_step"] for symbol in config["symbols"]]) - config["price_steps"] = tuplify([mss[symbol]["price_step"] for symbol in config["symbols"]]) - config["min_costs"] = tuplify([mss[symbol]["min_cost"] for symbol in config["symbols"]]) - config["min_qtys"] = tuplify([mss[symbol]["min_qty"] for symbol in config["symbols"]]) - config["c_mults"] = tuplify([mss[symbol]["c_mult"] for symbol in config["symbols"]]) - config["maker_fee"] = next(iter(mss.values()))["maker"] - config["symbols"] = tuple(sorted(config["symbols"])) - - try: - pd.set_option("display.precision", 10) - except Exception as e: - print("error setting pandas precision", e) - - print("backtesting...") - - sts = utc_ms() - res = backtest_multi(hlcs, config) - print(f"time elapsed for backtest {(utc_ms() - sts) / 1000:.6f}s") - sts = utc_ms() - fills, stats = res - fdf = fills_multi_to_df(fills, config["symbols"], config["c_mults"]) - sdf = stats_multi_to_df(stats, config["symbols"], config["c_mults"]) - - # fdf = pd.read_csv("backtests/multisymbol/binance/2024-01-07T02_16_06/fills.csv").set_index("minute") - # sdf = pd.read_csv("backtests/multisymbol/binance/2024-01-07T02_16_06/stats.csv").set_index("minute") - - fdf.to_csv(oj(backtest_metrics_path, "fills.csv")) - sdf.to_csv(oj(backtest_metrics_path, "stats.csv")) - - params = {"TWE_long": config["TWE_long"], "TWE_short": config["TWE_short"]} - analysis = analyze_fills_multi(sdf, fdf, params) - print(f"time elapsed for analysis {(utc_ms() - sts) / 1000:.6f}s") - json.dump( - analysis, - open(oj(backtest_metrics_path, "analysis.json"), "w"), - indent=4, - sort_keys=True, - ) - - mkl = max([len(k) for k in analysis]) - for k, v in analysis.items(): - if isinstance(v, dict): - continue - mkls = max([len(s) for s in v]) - for symbol in v: - mkl1 = max([len(k) for k in v[symbol]]) - for k1, v1 in v[symbol].items(): - print(f" {symbol: <{mkls}} {k1: <{mkl1}} {round_dynamic(v1, 6)}") - print() - else: - print(f"{k: <{mkl}} {round_dynamic(v, 6)}") - adf = pd.DataFrame({k: v for k, v in analysis["individual_analyses"].items()}) - adf.to_csv(oj(backtest_metrics_path, "analysis_summary.csv")) - print(adf) - - # print - - if not adf.T.upnl_pct_min_long.isna().all(): - print("upnl pct min long") - print(adf.T.upnl_pct_min_long.sort_values()) - print() - if not adf.T.upnl_pct_min_short.isna().all(): - print("upnl pct min short") - print(adf.T.upnl_pct_min_short.sort_values()) - - if not (adf.T.loss_profit_ratio_long == 1.0).all(): - print("loss_profit_ratio_long") - print(adf.T.loss_profit_ratio_long.sort_values(ascending=False)) - print() - if not (adf.T.loss_profit_ratio_short == 1.0).all(): - print("loss_profit_ratio_short") - print(adf.T.loss_profit_ratio_short.sort_values(ascending=False)) - - print("pnl ratios") - print(adf.T.pnl_ratio.sort_values()) - - # plotting - - plt.rcParams["figure.figsize"] = [29, 18] - - print("plotting drawdowns...") - min_multiplier = 60 * 24 - drawdowns = calc_drawdowns(sdf.equity) - drawdowns_daily = drawdowns.groupby(drawdowns.index // min_multiplier * min_multiplier).min() - drawdowns_ten_worst = drawdowns_daily.sort_values().iloc[:10] - print("drawdowns ten worst") - print(drawdowns_ten_worst) - plt.clf() - drawdowns_ten_worst.plot(style="ro") - drawdowns.plot(xlabel="time", ylabel="drawdown", title="Drawdowns") - plt.savefig(oj(backtest_metrics_path, "drawdowns.png")) - - print("plotting equity curve with stuckness...") - plt.clf() - plot_pnls_stuck(sdf, fdf) - plt.title("Balance and equity") - plt.xlabel = "time" - plt.ylabel = "USDT" - plt.savefig(oj(backtest_metrics_path, "balance_and_equity.png")) - - print("plotting pnl cumsums separate...") - plt.clf() - plot_pnls_separate(sdf, fdf) - plt.title("Cumulative pnls") - plt.xlabel = "time" - plt.ylabel = "USDT" - plt.savefig(oj(backtest_metrics_path, "cumulative_pnls.png")) - - print("plotting long and short pnl cumsums...") - plt.clf() - plot_pnls_long_short(sdf, fdf) - plt.title("Long and short cumulative pnls") - plt.xlabel = "time" - plt.ylabel = "USDT" - plt.savefig(oj(backtest_metrics_path, "cumulative_pnls_long_short.png")) - - # inspect two months before and two months after location of worst drawdown - print("plotting around worst drawdown...") - drawdowns_inspect_path = make_get_filepath(oj(backtest_metrics_path, "drawdown_inspections", "")) - worst_drawdown_loc = drawdowns.sort_values().iloc[:1].index[0] - wdls = worst_drawdown_loc - 60 * 24 * 30 * 2 - wdle = worst_drawdown_loc + 60 * 24 * 30 * 2 - sdfc = sdf.loc[wdls:wdle] - plt.clf() - sdfc.balance.plot() - sdfc.equity.plot() - plt.title("Worst Drawdown") - plt.savefig(oj(backtest_metrics_path, "worst_drawdown.png")) - - # inspect for each symbol - for symbol in config["symbols"]: - print(f"plotting for {symbol}") - plt.clf() - plot_fills_multi(symbol, sdf.loc[wdls:wdle], fdf.loc[wdls:wdle]) - plt.title(f"{symbol} Fills two months before and after worst drawdown") - plt.savefig(oj(drawdowns_inspect_path, f"{symbol}.png")) - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/broker_codes.hjson b/broker_codes.hjson index d337fd50a..48ba51e69 100644 --- a/broker_codes.hjson +++ b/broker_codes.hjson @@ -6,6 +6,6 @@ okx: "0fe0667832d7BCDE" kucoin: "" mexc: "" - bingx: "Passivbot" hyperliquid: "" + gateio: "passivbot" } \ No newline at end of file diff --git a/configs/backtest/forager_example.json b/configs/backtest/forager_example.json new file mode 100644 index 000000000..90970dc29 --- /dev/null +++ b/configs/backtest/forager_example.json @@ -0,0 +1,148 @@ +{ + "approved_symbols": [ + "1INCHUSDT", + "AAVEUSDT", + "ALGOUSDT", + "ALICEUSDT", + "ALPHAUSDT", + "ANKRUSDT", + "AVAXUSDT", + "AXSUSDT", + "BANDUSDT", + "BELUSDT", + "BLZUSDT", + "CELRUSDT", + "CHRUSDT", + "CHZUSDT", + "COMPUSDT", + "COTIUSDT", + "CRVUSDT", + "DENTUSDT", + "EGLDUSDT", + "ENJUSDT", + "EOSUSDT", + "FILUSDT", + "FLMUSDT", + "FTMUSDT", + "GRTUSDT", + "HBARUSDT", + "HOTUSDT", + "ICXUSDT", + "IOTAUSDT", + "KAVAUSDT", + "KNCUSDT", + "KSMUSDT", + "LINAUSDT", + "LITUSDT", + "LRCUSDT", + "MANAUSDT", + "MTLUSDT", + "NEARUSDT", + "NEOUSDT", + "NKNUSDT", + "OCEANUSDT", + "OGNUSDT", + "OMGUSDT", + "ONEUSDT", + "ONTUSDT", + "REEFUSDT", + "RENUSDT", + "RLCUSDT", + "RSRUSDT", + "RUNEUSDT", + "RVNUSDT", + "SANDUSDT", + "SFPUSDT", + "SKLUSDT", + "SNXUSDT", + "STMXUSDT", + "STORJUSDT", + "SUSHIUSDT", + "SXPUSDT", + "THETAUSDT", + "TRBUSDT", + "UNFIUSDT", + "UNIUSDT", + "VETUSDT", + "XEMUSDT", + "XMRUSDT", + "ZECUSDT", + "ZENUSDT", + "ZILUSDT", + "ZRXUSDT" + ], + "backtest": { + "base_dir": "backtests", + "end_date": "2024-06-30", + "exchange": "binance", + "start_date": "2021-05-01", + "starting_balance": 1000000 + }, + "live": { + "auto_gs": true, + "execution_delay_seconds": 2.0, + "filter_by_min_effective_cost": true, + "forced_mode_long": "", + "forced_mode_short": "", + "ignored_symbols": [], + "leverage": 10.0, + "max_n_cancellations_per_batch": 5, + "max_n_creations_per_batch": 3, + "pnls_max_lookback_days": 30.0, + "price_distance_threshold": 0.002, + "user": "hyperliquid_01" + }, + "long": { + "close_grid_markup_range": 0.006770100188971544, + "close_grid_min_markup": 0.005834144696001024, + "close_grid_qty_pct": 0.14237421140289455, + "close_trailing_grid_ratio": 0.0, + "close_trailing_retracement_pct": 0.002, + "close_trailing_threshold_pct": 0.008, + "ema_span_0": 911.6692153112028, + "ema_span_1": 807.0353377247609, + "entry_grid_double_down_factor": 0.8396912606070597, + "entry_grid_spacing_pct": 0.04619341139955945, + "entry_grid_spacing_weight": 0.09179629056682413, + "entry_initial_ema_dist": 0.0009995027717061944, + "entry_initial_qty_pct": 0.01240081214673772, + "entry_trailing_grid_ratio": 0.0, + "entry_trailing_retracement_pct": 0.04, + "entry_trailing_threshold_pct": 0.01, + "n_positions": 40, + "total_wallet_exposure_limit": 1.4593966196766504, + "unstuck_close_pct": 0.001, + "unstuck_ema_dist": 0.002, + "unstuck_loss_allowance_pct": 0.03955462393368862, + "unstuck_threshold": 0.43349892777753274 + }, + "minimum_market_age_days": 7.0, + "n_ohlcvs": 100, + "ohlcv_interval": "15m", + "relative_volume_filter_clip_pct": 0.1, + "short": { + "close_grid_markup_range": 0.009785446075032506, + "close_grid_min_markup": 0.004455214285238806, + "close_grid_qty_pct": 0.4628670052946869, + "close_trailing_grid_ratio": 0.0, + "close_trailing_retracement_pct": 0.002, + "close_trailing_threshold_pct": 0.008, + "ema_span_0": 794.2868678990604, + "ema_span_1": 1068.5806070445292, + "entry_grid_double_down_factor": 1.1688994026913397, + "entry_grid_spacing_pct": 0.04078603438299465, + "entry_grid_spacing_weight": 0.9920266937327756, + "entry_initial_ema_dist": -0.09936036270603053, + "entry_initial_qty_pct": 0.012705745594157051, + "entry_trailing_grid_ratio": 0.0, + "entry_trailing_retracement_pct": 0.04, + "entry_trailing_threshold_pct": 0.01, + "n_positions": 40, + "total_wallet_exposure_limit": 0.0, + "unstuck_close_pct": 0.001, + "unstuck_ema_dist": 0.0, + "unstuck_loss_allowance_pct": 0.03955462393368862, + "unstuck_threshold": 0.43349892777753274 + }, + "symbol_flags": {} +} \ No newline at end of file diff --git a/configs/live/example_config_forager_mode.hjson b/configs/live/example_config_forager_mode.hjson index d82517588..45f69512f 100644 --- a/configs/live/example_config_forager_mode.hjson +++ b/configs/live/example_config_forager_mode.hjson @@ -8,16 +8,16 @@ pnls_max_lookback_days: 30 // how much below past peak balance to allow losses (default 1% == 0.01). Set to 0.0 to disable multisym auto unstuck. - loss_allowance_pct: 0.00286 + loss_allowance_pct: 0.04999999979182668 // if wallet_exposure / wallet_exposure_limit > stuck_threshold: consider position as stuck - stuck_threshold: 0.55 + stuck_threshold: 0.40797855636885233 // percentage of balance * wallet_exposure_limit to close for each unstucking order (default 1% == 0.01) - unstuck_close_pct: 0.0046 + unstuck_close_pct: 0.0011862912589166842 // delay between executions to exchange. Set to 60 to simulate 1m ohlcv backtest. - execution_delay_seconds: 2 + execution_delay_seconds: 3 // how many executions in parallel per batch max_n_cancellations_per_batch: 8 @@ -36,8 +36,8 @@ leverage: 10.0 // total wallet exposure limits long and short. Exposure limit for each bot will be TWE_pos_side / len(active_symbols_pos_side) - TWE_long: 2.0 - TWE_short: 0.5 + TWE_long: 1.2647931411543223 + TWE_short: 0.4901278088650084 // if true, mode defaults to 'normal'. If false, mode defaults to 'graceful_stop' if auto_gs=true, else 'manual'. long_enabled: true @@ -81,29 +81,29 @@ { long: { - ddown_factor: 0.8697 - ema_span_0: 776.7 - ema_span_1: 774.3 - initial_eprice_ema_dist: -0.008465 - initial_qty_pct: 0.01167 - markup_range: 0.002187 - min_markup: 0.008534 - n_close_orders: 4.0 - rentry_pprice_dist: 0.04938 - rentry_pprice_dist_wallet_exposure_weighting: 2.143 + ddown_factor: 0.8505508851226058 + ema_span_0: 945.4450463231693 + ema_span_1: 658.2414762185865 + initial_eprice_ema_dist: -0.007871416739643977 + initial_qty_pct: 0.012361327269367194 + markup_range: 0.009169536354874741 + min_markup: 0.002236427680190847 + n_close_orders: 7.560291498030253 + rentry_pprice_dist: 0.046193458275164696 + rentry_pprice_dist_wallet_exposure_weighting: 0.09015237828960086 } short: { - ddown_factor: 1.114 - ema_span_0: 1074.0 - ema_span_1: 786.2 - initial_eprice_ema_dist: -0.07048 - initial_qty_pct: 0.01296 - markup_range: 0.006174 - min_markup: 0.003647 - n_close_orders: 1.675 - rentry_pprice_dist: 0.05371 - rentry_pprice_dist_wallet_exposure_weighting: 2.492 + ddown_factor: 1.4980571200045454 + ema_span_0: 767.8366045879187 + ema_span_1: 1122.4810442813648 + initial_eprice_ema_dist: -0.09911232414096734 + initial_qty_pct: 0.01113152837884185 + markup_range: 0.009538300153523962 + min_markup: 0.0010193822061913035 + n_close_orders: 1.857299483138112 + rentry_pprice_dist: 0.0409665079300848 + rentry_pprice_dist_wallet_exposure_weighting: 3.83490301250521 } } @@ -121,7 +121,7 @@ // Max number of positions to have open. // If n_longs and n_shorts are both zero, forager mode is disabled. - n_longs: 5 // if > 0, overrides longs_enabled + n_longs: 10 // if > 0, overrides longs_enabled n_shorts: 0 // if > 0, overrides shorts_enabled // minimum market age. Don't trade markets younger than x days. Set to zero to allow all markets. diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/1000FLOKIUSDT.json deleted file mode 100644 index f2c301b27..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.290489689461966, - "ema_span_0": 1440, - "ema_span_1": 1182.8988028928761, - "enabled": true, - "initial_eprice_ema_dist": -3.480624378444575e-05, - "initial_qty_pct": 0.01868555451687537, - "markup_range": 0.0049838109270830796, - "min_markup": 0.002034199252922289, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03951135446591533, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9949751216671086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000LUNCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/1000LUNCUSDT.json deleted file mode 100644 index 2cf31b67f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2790052190519028, - "ema_span_0": 720.8524682905892, - "ema_span_1": 1216.5359815368379, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011447479493287964, - "markup_range": 0.005150514141701578, - "min_markup": 0.005178192586461822, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03407328003681193, - "rentry_pprice_dist_wallet_exposure_weighting": 8.716160614861298, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000PEPEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/1000PEPEUSDT.json deleted file mode 100644 index 8d8de9f26..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3100807399509733, - "ema_span_0": 513.5490097314743, - "ema_span_1": 733.9381006599374, - "enabled": true, - "initial_eprice_ema_dist": -0.00688693139135385, - "initial_qty_pct": 0.008303784357975463, - "markup_range": 0.011374975925963213, - "min_markup": 0.008314838627241316, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05222180157189911, - "rentry_pprice_dist_wallet_exposure_weighting": 0.46350203321275335, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5127191074644122, - "ema_span_0": 1209.0752348602116, - "ema_span_1": 1245.936047074045, - "enabled": true, - "initial_eprice_ema_dist": -0.00783831177808704, - "initial_qty_pct": 0.007646228817315402, - "markup_range": 0.005292446878475193, - "min_markup": 0.003756369238441901, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03361823663661565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16049418705746993, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000SHIBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/1000SHIBUSDT.json deleted file mode 100644 index a18e20435..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000XECUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/1000XECUSDT.json deleted file mode 100644 index dceed4af9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1476656502939706, - "ema_span_0": 933.5206971239695, - "ema_span_1": 1095.9741385919708, - "enabled": true, - "initial_eprice_ema_dist": 0.0027413779901458053, - "initial_qty_pct": 0.006831053597006566, - "markup_range": 0.0032137093332441275, - "min_markup": 0.004205101007790303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03810405184615373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.284107925654067, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6602561799610607, - "ema_span_0": 641.8208644854974, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.010601689149129413, - "markup_range": 0.002362883678902643, - "min_markup": 0.0034672288826655575, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0417474559465164, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490968841725158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/1INCHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/1INCHUSDT.json deleted file mode 100644 index 4ce087931..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1476656502939706, - "ema_span_0": 933.5206971239695, - "ema_span_1": 1095.9741385919708, - "enabled": true, - "initial_eprice_ema_dist": 0.0027413779901458053, - "initial_qty_pct": 0.006831053597006566, - "markup_range": 0.0032137093332441275, - "min_markup": 0.004205101007790303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03810405184615373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.284107925654067, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1933052131270891, - "ema_span_0": 1317.843227838789, - "ema_span_1": 1271.9144421873636, - "enabled": true, - "initial_eprice_ema_dist": 0.0029992207977163165, - "initial_qty_pct": 0.01927487629822191, - "markup_range": 0.002487648453733647, - "min_markup": 0.0038980987991547936, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03690000392853918, - "rentry_pprice_dist_wallet_exposure_weighting": 5.782895380675006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AAVEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AAVEUSDT.json deleted file mode 100644 index 175667916..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6685203369798902, - "ema_span_0": 942.9073183274313, - "ema_span_1": 1392.7424171667124, - "enabled": true, - "initial_eprice_ema_dist": 0.00296129748605771, - "initial_qty_pct": 0.010632388893737991, - "markup_range": 0.006217989916469233, - "min_markup": 0.0026431236200430332, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04905337609643417, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0401588346473017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ACHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ACHUSDT.json deleted file mode 100644 index 43060c3b4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0376355203597838, - "ema_span_0": 633.386007336164, - "ema_span_1": 887.3728270616908, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.013699748249200672, - "markup_range": 0.008459985981420575, - "min_markup": 0.006781846332321432, - "n_close_orders": 11, - "rentry_pprice_dist": 0.035444110685798405, - "rentry_pprice_dist_wallet_exposure_weighting": 5.226529926365776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ADAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ADAUSDT.json deleted file mode 100644 index 25cd54f8a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0661212597199805, - "ema_span_0": 871.4868069935842, - "ema_span_1": 813.9875449016666, - "enabled": true, - "initial_eprice_ema_dist": -0.006249229179967419, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.0004471682865097875, - "min_markup": 0.002873043973521388, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9433838150301748, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6088879821750672, - "ema_span_0": 1047.2669668163237, - "ema_span_1": 853.4107151064059, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010305841282956748, - "markup_range": 0.0023807413707559845, - "min_markup": 0.0023373860890208756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022044521640944156, - "rentry_pprice_dist_wallet_exposure_weighting": 8.9516971455415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AGIXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AGIXUSDT.json deleted file mode 100644 index 8d1a832f6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AGLDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AGLDUSDT.json deleted file mode 100644 index 074bb1742..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25500222583492105, - "ema_span_0": 680.5849726062776, - "ema_span_1": 1293.7198958430267, - "enabled": true, - "initial_eprice_ema_dist": 0.0015403617974944315, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.003498007385158342, - "min_markup": 0.009828620875824397, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02930371564989985, - "rentry_pprice_dist_wallet_exposure_weighting": 2.448787089477937, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8238000490597432, - "ema_span_0": 1016.4337070155108, - "ema_span_1": 915.1214130618383, - "enabled": true, - "initial_eprice_ema_dist": 0.0007831719440346082, - "initial_qty_pct": 0.013976881040781519, - "markup_range": 0.0053851497781930435, - "min_markup": 0.0054348661294066685, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03683703455568767, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9213870105954695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ALGOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ALGOUSDT.json deleted file mode 100644 index a2f029480..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.574189851943695, - "ema_span_0": 402.4144238574692, - "ema_span_1": 596.4415574716708, - "enabled": true, - "initial_eprice_ema_dist": -0.0030154197379873987, - "initial_qty_pct": 0.013857790292850083, - "markup_range": 0.004088603243606634, - "min_markup": 0.00471555583448054, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03450309641051234, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3324760299678968, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2214462657948828, - "ema_span_0": 1086.0872597938728, - "ema_span_1": 1100.4810601110871, - "enabled": true, - "initial_eprice_ema_dist": 0.0003789756160626287, - "initial_qty_pct": 0.010733817066611489, - "markup_range": 0.011650383667415184, - "min_markup": 0.007445882759028696, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03980909672342595, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0631334907892014, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ALICEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ALICEUSDT.json deleted file mode 100644 index d624783b2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.897565880065934, - "ema_span_0": 521.7627092148455, - "ema_span_1": 469.14491640636425, - "enabled": true, - "initial_eprice_ema_dist": -0.0009794796608795248, - "initial_qty_pct": 0.015905685657389385, - "markup_range": 0.005801301487287526, - "min_markup": 0.002932306613961424, - "n_close_orders": 4, - "rentry_pprice_dist": 0.033597842644760165, - "rentry_pprice_dist_wallet_exposure_weighting": 4.585596531067902, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5175173400174441, - "ema_span_0": 1346.8620707182067, - "ema_span_1": 1413.6166000222142, - "enabled": true, - "initial_eprice_ema_dist": -0.0012471916758468632, - "initial_qty_pct": 0.016144452241425997, - "markup_range": 0.009647473693768836, - "min_markup": 0.0064697757890325525, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03363288173928292, - "rentry_pprice_dist_wallet_exposure_weighting": 6.789260700375377, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ALPHAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ALPHAUSDT.json deleted file mode 100644 index 89b6e77f3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.151566880736084, - "ema_span_0": 515.5070599529802, - "ema_span_1": 544.3720057593275, - "enabled": true, - "initial_eprice_ema_dist": 0.002365586563857505, - "initial_qty_pct": 0.010468350496396587, - "markup_range": 0.004063423362444695, - "min_markup": 0.005550260029169231, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03909547006337609, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3090234856928364, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 1105.7420131416857, - "ema_span_1": 1439.7332139302725, - "enabled": true, - "initial_eprice_ema_dist": 0.002805707258958375, - "initial_qty_pct": 0.01556377146388291, - "markup_range": 0.0016262178067751622, - "min_markup": 0.0038463331583642644, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03677429913459206, - "rentry_pprice_dist_wallet_exposure_weighting": 8.18875974682612, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AMBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AMBUSDT.json deleted file mode 100644 index 7644d6303..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9835196748626635, - "ema_span_0": 850.1218813498359, - "ema_span_1": 575.1470609094193, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.019016975628777785, - "markup_range": 0.006360067572732123, - "min_markup": 0.006238392512025082, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03902524439820568, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6574576308701303, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ANKRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ANKRUSDT.json deleted file mode 100644 index b93679fc2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7548758837650864, - "ema_span_0": 1191.9312652010371, - "ema_span_1": 1355.0679887715685, - "enabled": true, - "initial_eprice_ema_dist": 0.000943229176790928, - "initial_qty_pct": 0.00992020481729889, - "markup_range": 0.003709573741304125, - "min_markup": 0.001454596543327943, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025806478096145762, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764646147703523, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.16080098990372552, - "ema_span_0": 857.8309761747646, - "ema_span_1": 1121.5501739045462, - "enabled": true, - "initial_eprice_ema_dist": 0.002999291433435279, - "initial_qty_pct": 0.019998343831274246, - "markup_range": 0.001461226742868234, - "min_markup": 0.008443317481696381, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03441151007335486, - "rentry_pprice_dist_wallet_exposure_weighting": 8.217714344660987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ANTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ANTUSDT.json deleted file mode 100644 index 135ea4eaa..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/APEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/APEUSDT.json deleted file mode 100644 index 86db97ddb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10037304056961531, - "ema_span_0": 994.6762990473986, - "ema_span_1": 1103.8806034579907, - "enabled": true, - "initial_eprice_ema_dist": -0.0064877309346694344, - "initial_qty_pct": 0.006721573023020864, - "markup_range": 0.0019259664387609118, - "min_markup": 0.005373303199029612, - "n_close_orders": 14, - "rentry_pprice_dist": 0.01979535022729973, - "rentry_pprice_dist_wallet_exposure_weighting": 2.202675127245405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3610810877333834, - "ema_span_0": 1387.859631016273, - "ema_span_1": 830.0336606892711, - "enabled": true, - "initial_eprice_ema_dist": -4.7693696982364265e-05, - "initial_qty_pct": 0.01409087864308198, - "markup_range": 0.008065203688859808, - "min_markup": 0.003815556092409007, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02435442439173191, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853916217735233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/API3USDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/API3USDT.json deleted file mode 100644 index 126abe58c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4924103298895497, - "ema_span_0": 1435.6248632028244, - "ema_span_1": 1281.8077876186157, - "enabled": true, - "initial_eprice_ema_dist": -0.0030841936613471383, - "initial_qty_pct": 0.013726934435758566, - "markup_range": 0.0011017226348451418, - "min_markup": 0.00367146705463104, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0395894695116373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3240390856851025, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35377525620612843, - "ema_span_0": 1280.8008886056546, - "ema_span_1": 734.9320679117058, - "enabled": true, - "initial_eprice_ema_dist": -0.008458349194505358, - "initial_qty_pct": 0.006974778221559435, - "markup_range": 0.002964010935049224, - "min_markup": 0.004887013163173188, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023413318899461338, - "rentry_pprice_dist_wallet_exposure_weighting": 7.745721191751236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/APTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/APTUSDT.json deleted file mode 100644 index 068178e8a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6602561799610607, - "ema_span_0": 641.8208644854974, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.010601689149129413, - "markup_range": 0.002362883678902643, - "min_markup": 0.0034672288826655575, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0417474559465164, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490968841725158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ARBUSDT.json deleted file mode 100644 index 4bef83373..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARKMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ARKMUSDT.json deleted file mode 100644 index 06de8464e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ARKUSDT.json deleted file mode 100644 index d916c6f20..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10010264283071404, - "ema_span_0": 1074.7107635989628, - "ema_span_1": 824.4020377981421, - "enabled": true, - "initial_eprice_ema_dist": 0.002997278810551917, - "initial_qty_pct": 0.019997349195799628, - "markup_range": 0.004116237409615031, - "min_markup": 0.006676342857971211, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029872158206496465, - "rentry_pprice_dist_wallet_exposure_weighting": 8.605189052077773, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARPAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ARPAUSDT.json deleted file mode 100644 index f04f9f886..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1069554768571406, - "ema_span_0": 668.7564435404682, - "ema_span_1": 452.3452063216382, - "enabled": true, - "initial_eprice_ema_dist": -0.003741168510627742, - "initial_qty_pct": 0.013895549788819265, - "markup_range": 0.0025767939663914143, - "min_markup": 0.00484273852801616, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02607187900217411, - "rentry_pprice_dist_wallet_exposure_weighting": 1.915495067123377, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0575484627542227, - "ema_span_0": 1067.5582564003012, - "ema_span_1": 422.8511433535947, - "enabled": true, - "initial_eprice_ema_dist": 0.0002492545114339976, - "initial_qty_pct": 0.007658054470493523, - "markup_range": 0.00214324393092925, - "min_markup": 0.003279407549061367, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05854209606514442, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2201369583826327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ARUSDT.json deleted file mode 100644 index 79ff1db8b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ASTRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ASTRUSDT.json deleted file mode 100644 index ff918f330..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2916212898447389, - "ema_span_0": 558.5924969044192, - "ema_span_1": 609.0076501189745, - "enabled": true, - "initial_eprice_ema_dist": -0.008391773292204903, - "initial_qty_pct": 0.019602929367910492, - "markup_range": 0.010665910178031772, - "min_markup": 0.002155920567569581, - "n_close_orders": 15, - "rentry_pprice_dist": 0.037429964583052214, - "rentry_pprice_dist_wallet_exposure_weighting": 1.059012227840908, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ATAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ATAUSDT.json deleted file mode 100644 index bd4860174..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2217567213607032, - "ema_span_0": 683.8293148453361, - "ema_span_1": 1045.930823611072, - "enabled": true, - "initial_eprice_ema_dist": 0.001192929551335642, - "initial_qty_pct": 0.01161025552401619, - "markup_range": 0.002726245576964028, - "min_markup": 0.006327700262616104, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04105473263536897, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4376273610876, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9499051479360794, - "ema_span_0": 622.1083373545156, - "ema_span_1": 1357.1605131698723, - "enabled": true, - "initial_eprice_ema_dist": -0.0052618939405264945, - "initial_qty_pct": 0.013970634422238976, - "markup_range": 0.007023294326105997, - "min_markup": 0.00536912115698267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03611137316591374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.263986724814306, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ATOMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ATOMUSDT.json deleted file mode 100644 index d1292d54a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3187888384773676, - "ema_span_0": 453.1599018702678, - "ema_span_1": 739.39742060668, - "enabled": true, - "initial_eprice_ema_dist": -0.009980324583036323, - "initial_qty_pct": 0.010098513558446785, - "markup_range": 0.006207062074005397, - "min_markup": 0.001696536952026113, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02882694885290546, - "rentry_pprice_dist_wallet_exposure_weighting": 4.294854549490684, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8317672831997515, - "ema_span_0": 1379.0305224486792, - "ema_span_1": 1315.8139430261444, - "enabled": true, - "initial_eprice_ema_dist": -0.005556369161777596, - "initial_qty_pct": 0.014696673084211543, - "markup_range": 0.004126443243319796, - "min_markup": 0.0034499363711920444, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024337462617835055, - "rentry_pprice_dist_wallet_exposure_weighting": 0.40409688143295186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AUDIOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AUDIOUSDT.json deleted file mode 100644 index 8c68c9fd6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0988492763500168, - "ema_span_0": 840.4833924055439, - "ema_span_1": 1195.6344453376678, - "enabled": true, - "initial_eprice_ema_dist": -0.002643454613555825, - "initial_qty_pct": 0.010139548763063552, - "markup_range": 0.0019175334866138156, - "min_markup": 0.00634446099472259, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03574456209819619, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6437156327688496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17206336873738548, - "ema_span_0": 400, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.008086298731652026, - "markup_range": 0.00011612873974285131, - "min_markup": 0.003756369238441901, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 7.541267647352387, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AVAXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AVAXUSDT.json deleted file mode 100644 index d8839f62e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18472516589569715, - "ema_span_0": 1420.8406123511427, - "ema_span_1": 874.0335320547985, - "enabled": true, - "initial_eprice_ema_dist": 0.001520620422100491, - "initial_qty_pct": 0.01418489500111656, - "markup_range": 0.004985077180284787, - "min_markup": 0.007230566260217441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02955898434052857, - "rentry_pprice_dist_wallet_exposure_weighting": 1.760021163071938, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.076778482825849, - "ema_span_0": 1011.1520320470961, - "ema_span_1": 1395.5057544616952, - "enabled": true, - "initial_eprice_ema_dist": 0.002606468668924801, - "initial_qty_pct": 0.009927616477204899, - "markup_range": 0.006926687566493595, - "min_markup": 0.007624409394037621, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04840635617102456, - "rentry_pprice_dist_wallet_exposure_weighting": 2.334524439679845, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/AXSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/AXSUSDT.json deleted file mode 100644 index 3ef0e72aa..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6108492495510022, - "ema_span_0": 1305.2809333035257, - "ema_span_1": 1439.520477767014, - "enabled": true, - "initial_eprice_ema_dist": -0.009576479101656933, - "initial_qty_pct": 0.009844422165438071, - "markup_range": 0.005182627122934938, - "min_markup": 0.002854098434234054, - "n_close_orders": 7, - "rentry_pprice_dist": 0.034800015849001734, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6927620241533843, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BAKEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BAKEUSDT.json deleted file mode 100644 index 0367fcbc2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7414181476220062, - "ema_span_0": 1168.7034801864759, - "ema_span_1": 656.9949334600461, - "enabled": true, - "initial_eprice_ema_dist": -0.00982674864500597, - "initial_qty_pct": 0.006027256587049603, - "markup_range": 0.0012499555799690965, - "min_markup": 0.004048345778163076, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04065419103936731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6739639014180814, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.880009341672455, - "ema_span_0": 701.9369706349446, - "ema_span_1": 1177.24817569763, - "enabled": true, - "initial_eprice_ema_dist": 0.0014561238038451332, - "initial_qty_pct": 0.010554747239126125, - "markup_range": 0.0035760584844470125, - "min_markup": 0.0037629567769551083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04368027463100656, - "rentry_pprice_dist_wallet_exposure_weighting": 9.800471931452684, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BALUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BALUSDT.json deleted file mode 100644 index e8d152a29..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7414181476220062, - "ema_span_0": 1168.7034801864759, - "ema_span_1": 656.9949334600461, - "enabled": true, - "initial_eprice_ema_dist": -0.00982674864500597, - "initial_qty_pct": 0.006027256587049603, - "markup_range": 0.0012499555799690965, - "min_markup": 0.004048345778163076, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04065419103936731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6739639014180814, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BANDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BANDUSDT.json deleted file mode 100644 index c2180338e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9539844792731716, - "ema_span_0": 1348.1998026290053, - "ema_span_1": 1350.029161035143, - "enabled": true, - "initial_eprice_ema_dist": -0.0052411622531953325, - "initial_qty_pct": 0.009482244190400883, - "markup_range": 0.006232659497564574, - "min_markup": 0.005169603139400304, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03736981272317089, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BATUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BATUSDT.json deleted file mode 100644 index 52b912f40..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3960415720912747, - "ema_span_0": 624.2248533426647, - "ema_span_1": 1117.4921400486978, - "enabled": true, - "initial_eprice_ema_dist": -0.0004217294152381513, - "initial_qty_pct": 0.00689636224316096, - "markup_range": 0.0034694700196098395, - "min_markup": 0.0061850701406456045, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0354668666514628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1959956595127514, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4991457808327495, - "ema_span_0": 1419.114337239683, - "ema_span_1": 1358.0772000686893, - "enabled": true, - "initial_eprice_ema_dist": 0.002790467785665903, - "initial_qty_pct": 0.01920221977571906, - "markup_range": 0.005729895684731788, - "min_markup": 0.0035433895720688854, - "n_close_orders": 2, - "rentry_pprice_dist": 0.048442356277729616, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4481510456006659, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BCHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BCHUSDT.json deleted file mode 100644 index 474f09076..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4924103298895497, - "ema_span_0": 1435.6248632028244, - "ema_span_1": 1281.8077876186157, - "enabled": true, - "initial_eprice_ema_dist": -0.0030841936613471383, - "initial_qty_pct": 0.013726934435758566, - "markup_range": 0.0011017226348451418, - "min_markup": 0.00367146705463104, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0395894695116373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3240390856851025, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2790052190519028, - "ema_span_0": 720.8524682905892, - "ema_span_1": 1216.5359815368379, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011447479493287964, - "markup_range": 0.005150514141701578, - "min_markup": 0.005178192586461822, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03407328003681193, - "rentry_pprice_dist_wallet_exposure_weighting": 8.716160614861298, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BELUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BELUSDT.json deleted file mode 100644 index 9fdacf6e0..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1108497242460058, - "ema_span_0": 1187.0287658383586, - "ema_span_1": 1061.1375912407934, - "enabled": true, - "initial_eprice_ema_dist": 7.375216471031514e-05, - "initial_qty_pct": 0.01842808834509114, - "markup_range": 0.0018286606847631771, - "min_markup": 0.00224554161458097, - "n_close_orders": 6, - "rentry_pprice_dist": 0.047426103788976194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.290824985341869, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.40933279775096054, - "ema_span_0": 1386.3653227564946, - "ema_span_1": 1432.5438503080268, - "enabled": true, - "initial_eprice_ema_dist": -0.0039030697044891635, - "initial_qty_pct": 0.008102577055782628, - "markup_range": 0.0036012493364939208, - "min_markup": 0.00695619581641816, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04188506796235237, - "rentry_pprice_dist_wallet_exposure_weighting": 8.688665490709408, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BICOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BICOUSDT.json deleted file mode 100644 index 15ab35d20..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BICOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BLUEBIRDUSDT.json deleted file mode 100644 index 26ffca247..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0351783878301706, - "ema_span_0": 856.1875238553667, - "ema_span_1": 1343.2793019762435, - "enabled": true, - "initial_eprice_ema_dist": -0.003919861496725161, - "initial_qty_pct": 0.010702128889112886, - "markup_range": 0.0009841694091845433, - "min_markup": 0.001297125428497705, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018435997170025517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9193130248727066, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35377525620612843, - "ema_span_0": 1280.8008886056546, - "ema_span_1": 734.9320679117058, - "enabled": true, - "initial_eprice_ema_dist": -0.008458349194505358, - "initial_qty_pct": 0.006974778221559435, - "markup_range": 0.002964010935049224, - "min_markup": 0.004887013163173188, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023413318899461338, - "rentry_pprice_dist_wallet_exposure_weighting": 7.745721191751236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BLURUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BLURUSDT.json deleted file mode 100644 index e93d2affc..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033314066053704, - "ema_span_0": 570.4891353812185, - "ema_span_1": 817.6579770619803, - "enabled": true, - "initial_eprice_ema_dist": -0.008620202074115159, - "initial_qty_pct": 0.007375630906712132, - "markup_range": 0.005031576551531487, - "min_markup": 0.005461944181247269, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029750435997755616, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9197614878360865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BLZUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BLZUSDT.json deleted file mode 100644 index 548ffda40..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.341754829883286, - "ema_span_0": 1381.696357194486, - "ema_span_1": 898.3018642104006, - "enabled": true, - "initial_eprice_ema_dist": -0.007502246912564987, - "initial_qty_pct": 0.008190405753175794, - "markup_range": 0.001181834027785448, - "min_markup": 0.005822096880760171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04401027773725582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6448002396478179, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.626452799052301, - "ema_span_0": 573.1200118290135, - "ema_span_1": 1197.8897444229221, - "enabled": true, - "initial_eprice_ema_dist": -0.006637533956300064, - "initial_qty_pct": 0.010001704111810115, - "markup_range": 0.0017072695408365756, - "min_markup": 0.0021368061921831607, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04466576150942727, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6731068250419197, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BNBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BNBUSDT.json deleted file mode 100644 index f45e51cf3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4175684269258768, - "ema_span_0": 400, - "ema_span_1": 400.0779526528935, - "enabled": true, - "initial_eprice_ema_dist": 0.002659264115720802, - "initial_qty_pct": 0.015164250246292116, - "markup_range": 0.00040232882964493866, - "min_markup": 0.0027307061617194575, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022776665212191488, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31904908739194204, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000779534771716, - "ema_span_0": 400, - "ema_span_1": 1159.7423116600078, - "enabled": true, - "initial_eprice_ema_dist": 0.0029976509974363116, - "initial_qty_pct": 0.01516937774540192, - "markup_range": 0.0011743799901373759, - "min_markup": 0.002287406131795191, - "n_close_orders": 4, - "rentry_pprice_dist": 0.031367567177681084, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2588500973511572, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BNTUSDT.json deleted file mode 100644 index 596aec989..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BNXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BNXUSDT.json deleted file mode 100644 index 958c6d28e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25343745137797186, - "ema_span_0": 1209.799889267291, - "ema_span_1": 561.3024485228449, - "enabled": true, - "initial_eprice_ema_dist": -0.000868597903903903, - "initial_qty_pct": 0.006379959950152951, - "markup_range": 0.013174477175909452, - "min_markup": 0.004977617778157702, - "n_close_orders": 11, - "rentry_pprice_dist": 0.038213259567223795, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5024703156381913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8317672831997515, - "ema_span_0": 1379.0305224486792, - "ema_span_1": 1315.8139430261444, - "enabled": true, - "initial_eprice_ema_dist": -0.005556369161777596, - "initial_qty_pct": 0.014696673084211543, - "markup_range": 0.004126443243319796, - "min_markup": 0.0034499363711920444, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024337462617835055, - "rentry_pprice_dist_wallet_exposure_weighting": 0.40409688143295186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCDOMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCDOMUSDT.json deleted file mode 100644 index b818a1cc6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0351783878301706, - "ema_span_0": 856.1875238553667, - "ema_span_1": 1343.2793019762435, - "enabled": true, - "initial_eprice_ema_dist": -0.003919861496725161, - "initial_qty_pct": 0.010702128889112886, - "markup_range": 0.0009841694091845433, - "min_markup": 0.001297125428497705, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018435997170025517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9193130248727066, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000779534771716, - "ema_span_0": 400, - "ema_span_1": 1159.7423116600078, - "enabled": true, - "initial_eprice_ema_dist": 0.0029976509974363116, - "initial_qty_pct": 0.01516937774540192, - "markup_range": 0.0011743799901373759, - "min_markup": 0.002287406131795191, - "n_close_orders": 4, - "rentry_pprice_dist": 0.031367567177681084, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2588500973511572, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCSTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCSTUSDT.json deleted file mode 100644 index d3c201973..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCUSDT.json deleted file mode 100644 index 85e579d81..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768166339023584, - "ema_span_0": 846.2932999652809, - "ema_span_1": 1365.050493441726, - "enabled": true, - "initial_eprice_ema_dist": 0.0017874243325565454, - "initial_qty_pct": 0.014101868157575389, - "markup_range": 0.00252297168789874, - "min_markup": 0.002344087373181429, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019493184883214925, - "rentry_pprice_dist_wallet_exposure_weighting": 2.599925245591829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.173292938839362, - "ema_span_0": 1151.7891775414712, - "ema_span_1": 664.4483532262285, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012135370674556202, - "markup_range": 0.00012470032702840506, - "min_markup": 0.0012655947852999176, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02705624112123542, - "rentry_pprice_dist_wallet_exposure_weighting": 4.460736562825172, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/BTSUSDT.json deleted file mode 100644 index b6624caf8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7414181476220062, - "ema_span_0": 1168.7034801864759, - "ema_span_1": 656.9949334600461, - "enabled": true, - "initial_eprice_ema_dist": -0.00982674864500597, - "initial_qty_pct": 0.006027256587049603, - "markup_range": 0.0012499555799690965, - "min_markup": 0.004048345778163076, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04065419103936731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6739639014180814, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/C98USDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/C98USDT.json deleted file mode 100644 index e58d393f6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5175173400174441, - "ema_span_0": 1346.8620707182067, - "ema_span_1": 1413.6166000222142, - "enabled": true, - "initial_eprice_ema_dist": -0.0012471916758468632, - "initial_qty_pct": 0.016144452241425997, - "markup_range": 0.009647473693768836, - "min_markup": 0.0064697757890325525, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03363288173928292, - "rentry_pprice_dist_wallet_exposure_weighting": 6.789260700375377, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CELOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CELOUSDT.json deleted file mode 100644 index e5c46e3e9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4643365964940367, - "ema_span_0": 729.2702752105544, - "ema_span_1": 1403.3147068382307, - "enabled": true, - "initial_eprice_ema_dist": -0.0059971722275662725, - "initial_qty_pct": 0.006434926666897879, - "markup_range": 0.004826308788047463, - "min_markup": 0.005514797026403315, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029947605765173253, - "rentry_pprice_dist_wallet_exposure_weighting": 5.016058988308593, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CELRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CELRUSDT.json deleted file mode 100644 index ebea4f07c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9105504246559422, - "ema_span_0": 1238.5183560186683, - "ema_span_1": 1282.977497617896, - "enabled": true, - "initial_eprice_ema_dist": 0.0029824558414913785, - "initial_qty_pct": 0.01738143914952724, - "markup_range": 0.00344780778106096, - "min_markup": 0.00601036917252694, - "n_close_orders": 2, - "rentry_pprice_dist": 0.044710882463186205, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4551722455707131, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CFXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CFXUSDT.json deleted file mode 100644 index 1854eb700..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.751402066478981, - "ema_span_0": 815.6758472397362, - "ema_span_1": 893.4578952035137, - "enabled": true, - "initial_eprice_ema_dist": -0.0012125170160610596, - "initial_qty_pct": 0.008391926393526834, - "markup_range": 1.5033008696905663e-05, - "min_markup": 0.004859883745516535, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02584774452073919, - "rentry_pprice_dist_wallet_exposure_weighting": 4.251130139100051, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9816750005613653, - "ema_span_0": 1343.0840284833462, - "ema_span_1": 1433.3384671326917, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012726350096647744, - "markup_range": 0.003708085932055071, - "min_markup": 0.0019460025801372946, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04997483217140227, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5184360991196204, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CHRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CHRUSDT.json deleted file mode 100644 index 2264c072d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6566034762603468, - "ema_span_0": 1327.8701897739788, - "ema_span_1": 1258.161998123513, - "enabled": true, - "initial_eprice_ema_dist": -0.0019458332422089375, - "initial_qty_pct": 0.00750794984087325, - "markup_range": 0.00715984729394877, - "min_markup": 0.007984553521590413, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03253243321074723, - "rentry_pprice_dist_wallet_exposure_weighting": 2.965727689807071, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.93734185855979, - "ema_span_0": 1206.3508525785198, - "ema_span_1": 1029.0474303077697, - "enabled": true, - "initial_eprice_ema_dist": -0.008443451078664668, - "initial_qty_pct": 0.00933277888068054, - "markup_range": 0.007070626271567769, - "min_markup": 0.008719187963993505, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04059998175024074, - "rentry_pprice_dist_wallet_exposure_weighting": 1.156510760190089, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CHZUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CHZUSDT.json deleted file mode 100644 index affa541a4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9910548357487567, - "ema_span_0": 1372.1029988069888, - "ema_span_1": 877.0909130988211, - "enabled": true, - "initial_eprice_ema_dist": -1.6541115850042524e-05, - "initial_qty_pct": 0.011652375349125723, - "markup_range": 0.0010581556564322023, - "min_markup": 0.0029223694848432603, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02992948423627017, - "rentry_pprice_dist_wallet_exposure_weighting": 5.820869047512101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6406423489951535, - "ema_span_0": 406.10188589554815, - "ema_span_1": 746.0127447763379, - "enabled": true, - "initial_eprice_ema_dist": 0.0011041073278541418, - "initial_qty_pct": 0.014123591268732038, - "markup_range": 0.004559095048760113, - "min_markup": 0.007174625147721825, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0366606198447229, - "rentry_pprice_dist_wallet_exposure_weighting": 8.260126649790951, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CKBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CKBUSDT.json deleted file mode 100644 index 1dfced7cf..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/COCOSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/COCOSUSDT.json deleted file mode 100644 index b3b78fee8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5534871384395967, - "ema_span_0": 497.72417068282743, - "ema_span_1": 402.4310180281065, - "enabled": true, - "initial_eprice_ema_dist": -0.006937579282307286, - "initial_qty_pct": 0.019998967246795736, - "markup_range": 0.004075980963864618, - "min_markup": 0.008206347744760006, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02201269981773479, - "rentry_pprice_dist_wallet_exposure_weighting": 8.86096231397286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/COMBOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/COMBOUSDT.json deleted file mode 100644 index 79a574c7f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4105703484072927, - "ema_span_0": 1247.6247279832355, - "ema_span_1": 1293.7198958430267, - "enabled": true, - "initial_eprice_ema_dist": -0.0015934526752411171, - "initial_qty_pct": 0.02, - "markup_range": 0.0028559825835691934, - "min_markup": 0.0032176359083182808, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03456731194371036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19136836263093726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/COMPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/COMPUSDT.json deleted file mode 100644 index a56daadb5..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5231619791493856, - "ema_span_0": 1251.1232016233723, - "ema_span_1": 1045.1366611148505, - "enabled": true, - "initial_eprice_ema_dist": 0.0006601587381044553, - "initial_qty_pct": 0.016062648848320604, - "markup_range": 0.004770340405997823, - "min_markup": 0.0060401204136381675, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0318899441813679, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5853767763069215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4416091341221842, - "ema_span_0": 827.4706169927598, - "ema_span_1": 770.6871650830933, - "enabled": true, - "initial_eprice_ema_dist": -0.007114300356406167, - "initial_qty_pct": 0.009651864885132741, - "markup_range": 0.000495771567248677, - "min_markup": 0.0038232288179883478, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04352105313736622, - "rentry_pprice_dist_wallet_exposure_weighting": 9.243889617944236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/COTIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/COTIUSDT.json deleted file mode 100644 index 8198f4737..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 680.5849726062776, - "ema_span_1": 679.128443782459, - "enabled": true, - "initial_eprice_ema_dist": -0.007534735788528065, - "initial_qty_pct": 0.009551468568882514, - "markup_range": 0.00405055665439011, - "min_markup": 0.005771584786557487, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029718809432778555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7040336767318629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6247497955007121, - "ema_span_0": 1262.9606670754806, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.00033095945724062245, - "initial_qty_pct": 0.016009907630762453, - "markup_range": 0.0077495204589845285, - "min_markup": 0.0035785484697080767, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03266737656743181, - "rentry_pprice_dist_wallet_exposure_weighting": 6.3110662646840785, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CRVUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CRVUSDT.json deleted file mode 100644 index 8e53fae3e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7649611174407369, - "ema_span_0": 1129.7774722153606, - "ema_span_1": 1064.0404572651694, - "enabled": true, - "initial_eprice_ema_dist": 0.002085785152088163, - "initial_qty_pct": 0.012836892205500928, - "markup_range": 0.0024747067053958426, - "min_markup": 0.007622730581296063, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036453625401409985, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1086465307812927, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21121918030792172, - "ema_span_0": 721.8896248656592, - "ema_span_1": 1360.6130392354266, - "enabled": true, - "initial_eprice_ema_dist": -0.007330703523834837, - "initial_qty_pct": 0.01289300914932402, - "markup_range": 0.0032900040213383356, - "min_markup": 0.007917111424929492, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03911008496356426, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5842375396326758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CTKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CTKUSDT.json deleted file mode 100644 index 554a1b826..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.193657657515131, - "ema_span_0": 1362.2831950760371, - "ema_span_1": 969.4695135255093, - "enabled": true, - "initial_eprice_ema_dist": 0.0028118158366425183, - "initial_qty_pct": 0.014962031687322954, - "markup_range": 0.0012893423918961904, - "min_markup": 0.004233535370502281, - "n_close_orders": 11, - "rentry_pprice_dist": 0.037582142488829, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6080882053518732, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.173292938839362, - "ema_span_0": 1151.7891775414712, - "ema_span_1": 664.4483532262285, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012135370674556202, - "markup_range": 0.00012470032702840506, - "min_markup": 0.0012655947852999176, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02705624112123542, - "rentry_pprice_dist_wallet_exposure_weighting": 4.460736562825172, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CTSIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CTSIUSDT.json deleted file mode 100644 index 3ee590409..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9171505053084688, - "ema_span_0": 775.9584552785303, - "ema_span_1": 762.0483829165494, - "enabled": true, - "initial_eprice_ema_dist": 0.0028462500165785934, - "initial_qty_pct": 0.011654163150148599, - "markup_range": 0.0024565804815127193, - "min_markup": 0.003873184512277312, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03589457840207292, - "rentry_pprice_dist_wallet_exposure_weighting": 5.803669925118121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.482851717000093, - "ema_span_0": 571.7298609554182, - "ema_span_1": 567.4171654000248, - "enabled": true, - "initial_eprice_ema_dist": -0.002244722397310753, - "initial_qty_pct": 0.010672275315589423, - "markup_range": 0.002810087037224821, - "min_markup": 0.0015447564266615208, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03414244888345795, - "rentry_pprice_dist_wallet_exposure_weighting": 6.460871911319202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CVCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CVCUSDT.json deleted file mode 100644 index 960fecaec..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1076557094684094, - "ema_span_0": 1292.3950982720557, - "ema_span_1": 1303.7317851295784, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010106393546435541, - "markup_range": 0.0013758356909457474, - "min_markup": 0.003938501371448148, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029858901316643576, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9607394449103155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CVXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CVXUSDT.json deleted file mode 100644 index 40f96d106..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0661212597199805, - "ema_span_0": 871.4868069935842, - "ema_span_1": 813.9875449016666, - "enabled": true, - "initial_eprice_ema_dist": -0.006249229179967419, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.0004471682865097875, - "min_markup": 0.002873043973521388, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9433838150301748, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8552521251115799, - "ema_span_0": 881.8768472139141, - "ema_span_1": 1308.9789986596709, - "enabled": true, - "initial_eprice_ema_dist": 0.0014424721938682199, - "initial_qty_pct": 0.007341584983861241, - "markup_range": 0.0011391099460800324, - "min_markup": 0.0033575290887672585, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02411353599686237, - "rentry_pprice_dist_wallet_exposure_weighting": 0.016370498522027762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/CYBERUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/CYBERUSDT.json deleted file mode 100644 index 0386d0201..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4094488998407715, - "ema_span_0": 530.7428384503781, - "ema_span_1": 550.1784301353707, - "enabled": true, - "initial_eprice_ema_dist": -0.008676240328527514, - "initial_qty_pct": 0.006707452888356948, - "markup_range": 0.0010804828151730124, - "min_markup": 0.0025685134759434857, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014077064162697378, - "rentry_pprice_dist_wallet_exposure_weighting": 6.201142864457871, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DARUSDT.json deleted file mode 100644 index b7624c0ab..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DASHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DASHUSDT.json deleted file mode 100644 index efef1c4fd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.503221399517053, - "ema_span_0": 772.5270126408454, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839845370164784, - "initial_qty_pct": 0.019264097631752998, - "markup_range": 0.0023841014114603385, - "min_markup": 0.006781622231637198, - "n_close_orders": 11, - "rentry_pprice_dist": 0.040467131003034236, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9693844931559155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DEFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DEFIUSDT.json deleted file mode 100644 index 74cbbf115..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3041899923350854, - "ema_span_0": 783.2450577160282, - "ema_span_1": 1053.125814629568, - "enabled": true, - "initial_eprice_ema_dist": -0.0027442472611074425, - "initial_qty_pct": 0.00834032289474573, - "markup_range": 0.0044280260165221385, - "min_markup": 0.009828620875824397, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03233830482916124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9521186605724256, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DENTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DENTUSDT.json deleted file mode 100644 index adac890a1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4643365964940367, - "ema_span_0": 729.2702752105544, - "ema_span_1": 1403.3147068382307, - "enabled": true, - "initial_eprice_ema_dist": -0.0059971722275662725, - "initial_qty_pct": 0.006434926666897879, - "markup_range": 0.004826308788047463, - "min_markup": 0.005514797026403315, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029947605765173253, - "rentry_pprice_dist_wallet_exposure_weighting": 5.016058988308593, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8997378009740093, - "ema_span_0": 731.9588132430131, - "ema_span_1": 1090.5107923332812, - "enabled": true, - "initial_eprice_ema_dist": 0.0012857197261006146, - "initial_qty_pct": 0.007879729684468104, - "markup_range": 0.0034081212210928754, - "min_markup": 0.004834449707714919, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02869541164113038, - "rentry_pprice_dist_wallet_exposure_weighting": 4.705703406735313, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DGBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DGBUSDT.json deleted file mode 100644 index 87d96a8a2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6391657190404803, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 1051.9291608232522, - "enabled": true, - "initial_eprice_ema_dist": -0.003434137195533823, - "initial_qty_pct": 0.009774240886665495, - "markup_range": 0.0, - "min_markup": 0.0036656766747250346, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018414037561483947, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DODOXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DODOXUSDT.json deleted file mode 100644 index da7f12949..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2097430882859501, - "ema_span_0": 1242.7247585534535, - "ema_span_1": 1239.1449070996134, - "enabled": true, - "initial_eprice_ema_dist": -0.0003383789949880434, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.02146401728672294, - "min_markup": 0.001986936784191778, - "n_close_orders": 14, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DOGEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DOGEUSDT.json deleted file mode 100644 index 865799b41..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1069554768571406, - "ema_span_0": 668.7564435404682, - "ema_span_1": 452.3452063216382, - "enabled": true, - "initial_eprice_ema_dist": -0.003741168510627742, - "initial_qty_pct": 0.013895549788819265, - "markup_range": 0.0025767939663914143, - "min_markup": 0.00484273852801616, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02607187900217411, - "rentry_pprice_dist_wallet_exposure_weighting": 1.915495067123377, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.692436242631705, - "ema_span_0": 1418.3853844512462, - "ema_span_1": 1417.0759695955728, - "enabled": true, - "initial_eprice_ema_dist": 0.0019215643015539356, - "initial_qty_pct": 0.013684485016372263, - "markup_range": 0.00237887308118106, - "min_markup": 0.0014794427966753993, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030320998817705086, - "rentry_pprice_dist_wallet_exposure_weighting": 7.766346170867457, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DOTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DOTUSDT.json deleted file mode 100644 index 84fe45443..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9370170670316159, - "ema_span_0": 961.9644106354748, - "ema_span_1": 942.1770080408999, - "enabled": true, - "initial_eprice_ema_dist": -0.009555012496613655, - "initial_qty_pct": 0.014120898357379112, - "markup_range": 0.001973625116494333, - "min_markup": 0.002751196941795774, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025497189266256784, - "rentry_pprice_dist_wallet_exposure_weighting": 5.47493115845817, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DUSKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DUSKUSDT.json deleted file mode 100644 index 6c0e41067..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6862259336459262, - "ema_span_0": 1109.3310320534958, - "ema_span_1": 477.15132300439143, - "enabled": true, - "initial_eprice_ema_dist": -0.009105244413307135, - "initial_qty_pct": 0.012697680183739304, - "markup_range": 0.002420323227669815, - "min_markup": 0.0036091761047438217, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04368376393736118, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6843364150871896, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/DYDXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/DYDXUSDT.json deleted file mode 100644 index e06acc31a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9910548357487567, - "ema_span_0": 1372.1029988069888, - "ema_span_1": 877.0909130988211, - "enabled": true, - "initial_eprice_ema_dist": -1.6541115850042524e-05, - "initial_qty_pct": 0.011652375349125723, - "markup_range": 0.0010581556564322023, - "min_markup": 0.0029223694848432603, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02992948423627017, - "rentry_pprice_dist_wallet_exposure_weighting": 5.820869047512101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7555034910699492, - "ema_span_0": 1009.6385573743898, - "ema_span_1": 846.1094788838165, - "enabled": true, - "initial_eprice_ema_dist": 0.002542522061527669, - "initial_qty_pct": 0.011076620407965625, - "markup_range": 0.001958452879409268, - "min_markup": 0.0030131044712630637, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043021534105652355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.561426879559992, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/EDUUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/EDUUSDT.json deleted file mode 100644 index 48e9fa1a9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.396905198984233, - "ema_span_0": 944.029003724747, - "ema_span_1": 1101.4181700261593, - "enabled": true, - "initial_eprice_ema_dist": -0.002900365914467947, - "initial_qty_pct": 0.006472923121550627, - "markup_range": 0.012612255304370108, - "min_markup": 0.0037362855421466767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03797875765139709, - "rentry_pprice_dist_wallet_exposure_weighting": 4.480393235712382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/EGLDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/EGLDUSDT.json deleted file mode 100644 index 328ae4a0b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5780310437272872, - "ema_span_0": 1308.8800615342548, - "ema_span_1": 525.9405487240236, - "enabled": true, - "initial_eprice_ema_dist": -0.0002180874597450573, - "initial_qty_pct": 0.016121921803408424, - "markup_range": 0.004474204859269099, - "min_markup": 0.001986936784191778, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02347619830476308, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9787419061335583, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6602561799610607, - "ema_span_0": 641.8208644854974, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.010601689149129413, - "markup_range": 0.002362883678902643, - "min_markup": 0.0034672288826655575, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0417474559465164, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490968841725158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ENJUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ENJUSDT.json deleted file mode 100644 index c694494b4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4316525150338988, - "ema_span_0": 1386.9860405497996, - "ema_span_1": 1066.421825844669, - "enabled": true, - "initial_eprice_ema_dist": -0.00463779094493211, - "initial_qty_pct": 0.013021908026624826, - "markup_range": 0.00325841430462686, - "min_markup": 0.0021054551959539037, - "n_close_orders": 4, - "rentry_pprice_dist": 0.022929961635799224, - "rentry_pprice_dist_wallet_exposure_weighting": 8.393719275000857, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.98349363536244, - "ema_span_1": 481.3356055662394, - "enabled": true, - "initial_eprice_ema_dist": -0.007907591145269248, - "initial_qty_pct": 0.006943527134759872, - "markup_range": 0.004328707812689585, - "min_markup": 0.004581427099945752, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01905163515245102, - "rentry_pprice_dist_wallet_exposure_weighting": 3.783496814982404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ENSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ENSUSDT.json deleted file mode 100644 index 673f445e1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9539844792731716, - "ema_span_0": 1348.1998026290053, - "ema_span_1": 1350.029161035143, - "enabled": true, - "initial_eprice_ema_dist": -0.0052411622531953325, - "initial_qty_pct": 0.009482244190400883, - "markup_range": 0.006232659497564574, - "min_markup": 0.005169603139400304, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03736981272317089, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.503221399517053, - "ema_span_0": 772.5270126408454, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839845370164784, - "initial_qty_pct": 0.019264097631752998, - "markup_range": 0.0023841014114603385, - "min_markup": 0.006781622231637198, - "n_close_orders": 11, - "rentry_pprice_dist": 0.040467131003034236, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9693844931559155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/EOSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/EOSUSDT.json deleted file mode 100644 index d6f6bf242..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9171505053084688, - "ema_span_0": 775.9584552785303, - "ema_span_1": 762.0483829165494, - "enabled": true, - "initial_eprice_ema_dist": 0.0028462500165785934, - "initial_qty_pct": 0.011654163150148599, - "markup_range": 0.0024565804815127193, - "min_markup": 0.003873184512277312, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03589457840207292, - "rentry_pprice_dist_wallet_exposure_weighting": 5.803669925118121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.290489689461966, - "ema_span_0": 1440, - "ema_span_1": 1182.8988028928761, - "enabled": true, - "initial_eprice_ema_dist": -3.480624378444575e-05, - "initial_qty_pct": 0.01868555451687537, - "markup_range": 0.0049838109270830796, - "min_markup": 0.002034199252922289, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03951135446591533, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9949751216671086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ETCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ETCUSDT.json deleted file mode 100644 index 6072f3318..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0351783878301706, - "ema_span_0": 856.1875238553667, - "ema_span_1": 1343.2793019762435, - "enabled": true, - "initial_eprice_ema_dist": -0.003919861496725161, - "initial_qty_pct": 0.010702128889112886, - "markup_range": 0.0009841694091845433, - "min_markup": 0.001297125428497705, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018435997170025517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9193130248727066, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.482851717000093, - "ema_span_0": 571.7298609554182, - "ema_span_1": 567.4171654000248, - "enabled": true, - "initial_eprice_ema_dist": -0.002244722397310753, - "initial_qty_pct": 0.010672275315589423, - "markup_range": 0.002810087037224821, - "min_markup": 0.0015447564266615208, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03414244888345795, - "rentry_pprice_dist_wallet_exposure_weighting": 6.460871911319202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ETHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ETHUSDT.json deleted file mode 100644 index 2b688771b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.663619264218057, - "ema_span_0": 1009.2231178101247, - "ema_span_1": 1171.5772535528115, - "enabled": true, - "initial_eprice_ema_dist": 0.0014240351018697383, - "initial_qty_pct": 0.006417978673470456, - "markup_range": 0.002361719677551574, - "min_markup": 0.002555139835373728, - "n_close_orders": 13, - "rentry_pprice_dist": 0.015816291209501347, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4673060772958726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5201668901180903, - "ema_span_0": 707.2250848373449, - "ema_span_1": 716.1105828582283, - "enabled": true, - "initial_eprice_ema_dist": 0.0027096615049866995, - "initial_qty_pct": 0.0065485449384614074, - "markup_range": 0.0011620678195813701, - "min_markup": 0.002783751905608409, - "n_close_orders": 13, - "rentry_pprice_dist": 0.013406032799101379, - "rentry_pprice_dist_wallet_exposure_weighting": 5.142204170273534, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FETUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FETUSDT.json deleted file mode 100644 index fe612405f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.16766415745902696, - "ema_span_0": 744.1620140794424, - "ema_span_1": 854.1789986068621, - "enabled": true, - "initial_eprice_ema_dist": -0.007008707404626438, - "initial_qty_pct": 0.00787542703344586, - "markup_range": 0.0010617059347405387, - "min_markup": 0.004025487585506566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.01709526488190027, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6099942021467453, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.503221399517053, - "ema_span_0": 772.5270126408454, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839845370164784, - "initial_qty_pct": 0.019264097631752998, - "markup_range": 0.0023841014114603385, - "min_markup": 0.006781622231637198, - "n_close_orders": 11, - "rentry_pprice_dist": 0.040467131003034236, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9693844931559155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FILUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FILUSDT.json deleted file mode 100644 index 29d99fafc..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6816441804997536, - "ema_span_0": 1207.002762689484, - "ema_span_1": 1215.7543977627083, - "enabled": true, - "initial_eprice_ema_dist": 0.002844318472241852, - "initial_qty_pct": 0.013546341705982687, - "markup_range": 0.001297765363145428, - "min_markup": 0.0042246138230332434, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01593128187208366, - "rentry_pprice_dist_wallet_exposure_weighting": 7.519025567180068, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9816750005613653, - "ema_span_0": 1343.0840284833462, - "ema_span_1": 1433.3384671326917, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012726350096647744, - "markup_range": 0.003708085932055071, - "min_markup": 0.0019460025801372946, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04997483217140227, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5184360991196204, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FLMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FLMUSDT.json deleted file mode 100644 index d61ad652f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.37081998520411, - "ema_span_0": 480.68828870360926, - "ema_span_1": 993.450604082768, - "enabled": true, - "initial_eprice_ema_dist": -0.0007890331837663922, - "initial_qty_pct": 0.005773972623103771, - "markup_range": 0.004643118766403271, - "min_markup": 0.008220911846281107, - "n_close_orders": 7, - "rentry_pprice_dist": 0.043687428951513785, - "rentry_pprice_dist_wallet_exposure_weighting": 7.541267647352387, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FLOWUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FLOWUSDT.json deleted file mode 100644 index 24da6cf43..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FOOTBALLUSDT.json deleted file mode 100644 index 87d96a8a2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6391657190404803, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 1051.9291608232522, - "enabled": true, - "initial_eprice_ema_dist": -0.003434137195533823, - "initial_qty_pct": 0.009774240886665495, - "markup_range": 0.0, - "min_markup": 0.0036656766747250346, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018414037561483947, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FRONTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FRONTUSDT.json deleted file mode 100644 index 84d617bf1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FRONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.663619264218057, - "ema_span_0": 1009.2231178101247, - "ema_span_1": 1171.5772535528115, - "enabled": true, - "initial_eprice_ema_dist": 0.0014240351018697383, - "initial_qty_pct": 0.006417978673470456, - "markup_range": 0.002361719677551574, - "min_markup": 0.002555139835373728, - "n_close_orders": 13, - "rentry_pprice_dist": 0.015816291209501347, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4673060772958726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FTMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FTMUSDT.json deleted file mode 100644 index 1d74d7700..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3424248226444024, - "ema_span_0": 1131.6414829955768, - "ema_span_1": 1137.7868339695306, - "enabled": true, - "initial_eprice_ema_dist": -0.0003383789949880434, - "initial_qty_pct": 0.005, - "markup_range": 0.0014265648440583618, - "min_markup": 0.0054097356387039055, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0370937141221393, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1534063329544186, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7555034910699492, - "ema_span_0": 1009.6385573743898, - "ema_span_1": 846.1094788838165, - "enabled": true, - "initial_eprice_ema_dist": 0.002542522061527669, - "initial_qty_pct": 0.011076620407965625, - "markup_range": 0.001958452879409268, - "min_markup": 0.0030131044712630637, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043021534105652355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.561426879559992, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FTTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FTTUSDT.json deleted file mode 100644 index cb67f72a7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/FXSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/FXSUSDT.json deleted file mode 100644 index 1cf897b19..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GALAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GALAUSDT.json deleted file mode 100644 index d55cd4090..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1081120682023222, - "ema_span_0": 724.3842967342677, - "ema_span_1": 687.6058181393267, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01478164269149576, - "markup_range": 0.0012230031616078149, - "min_markup": 0.0033166480459192963, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025252828823763254, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2467143756229664, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GALUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GALUSDT.json deleted file mode 100644 index 93dd70bd8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6391657190404803, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 1051.9291608232522, - "enabled": true, - "initial_eprice_ema_dist": -0.003434137195533823, - "initial_qty_pct": 0.009774240886665495, - "markup_range": 0.0, - "min_markup": 0.0036656766747250346, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018414037561483947, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GLMRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GLMRUSDT.json deleted file mode 100644 index 952c1a54c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GLMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GMTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GMTUSDT.json deleted file mode 100644 index 94f312659..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9440504563496455, - "ema_span_0": 670.9984492428504, - "ema_span_1": 1382.5326523555161, - "enabled": true, - "initial_eprice_ema_dist": 0.0029664815346501497, - "initial_qty_pct": 0.007147325770208928, - "markup_range": 0.00011612873974285131, - "min_markup": 0.0028322952399753762, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04953091217010036, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1494709499633642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GMXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GMXUSDT.json deleted file mode 100644 index 18f2ce48c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6816441804997536, - "ema_span_0": 1207.002762689484, - "ema_span_1": 1215.7543977627083, - "enabled": true, - "initial_eprice_ema_dist": 0.002844318472241852, - "initial_qty_pct": 0.013546341705982687, - "markup_range": 0.001297765363145428, - "min_markup": 0.0042246138230332434, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01593128187208366, - "rentry_pprice_dist_wallet_exposure_weighting": 7.519025567180068, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2917787033497605, - "ema_span_0": 1344.9537971661955, - "ema_span_1": 436.4248240758233, - "enabled": true, - "initial_eprice_ema_dist": -0.004822333867779742, - "initial_qty_pct": 0.009453087771626114, - "markup_range": 0.001675059263184776, - "min_markup": 0.003995369493070447, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03099364507912738, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5924991535166688, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GRTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GRTUSDT.json deleted file mode 100644 index 45dbe6998..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1163429764822047, - "ema_span_0": 778.3852876266045, - "ema_span_1": 500.489378562041, - "enabled": true, - "initial_eprice_ema_dist": 9.633186356697778e-05, - "initial_qty_pct": 0.011345875019089045, - "markup_range": 0.00934743383066865, - "min_markup": 0.004405957869048295, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024405305943534922, - "rentry_pprice_dist_wallet_exposure_weighting": 4.326177773898883, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9499051479360794, - "ema_span_0": 622.1083373545156, - "ema_span_1": 1357.1605131698723, - "enabled": true, - "initial_eprice_ema_dist": -0.0052618939405264945, - "initial_qty_pct": 0.013970634422238976, - "markup_range": 0.007023294326105997, - "min_markup": 0.00536912115698267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03611137316591374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.263986724814306, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/GTCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/GTCUSDT.json deleted file mode 100644 index f15da2423..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25343745137797186, - "ema_span_0": 1209.799889267291, - "ema_span_1": 561.3024485228449, - "enabled": true, - "initial_eprice_ema_dist": -0.000868597903903903, - "initial_qty_pct": 0.006379959950152951, - "markup_range": 0.013174477175909452, - "min_markup": 0.004977617778157702, - "n_close_orders": 11, - "rentry_pprice_dist": 0.038213259567223795, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5024703156381913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HBARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HBARUSDT.json deleted file mode 100644 index efb86bd13..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.378473873448455, - "ema_span_0": 1419.415992717671, - "ema_span_1": 1425.3336995458733, - "enabled": true, - "initial_eprice_ema_dist": -0.0034720739678111693, - "initial_qty_pct": 0.013020262270714017, - "markup_range": 0.006308995537425291, - "min_markup": 0.008740681269618428, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03127977576267941, - "rentry_pprice_dist_wallet_exposure_weighting": 5.201987827174355, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HFTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HFTUSDT.json deleted file mode 100644 index 40bdc8e92..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.448881720988132, - "ema_span_0": 786.4973354385297, - "ema_span_1": 568.5907714177035, - "enabled": true, - "initial_eprice_ema_dist": -0.007948850853725877, - "initial_qty_pct": 0.015241779725150294, - "markup_range": 0.004527416939159713, - "min_markup": 0.0031450463066079047, - "n_close_orders": 9, - "rentry_pprice_dist": 0.021619623432236366, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7363085512083494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HIFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HIFIUSDT.json deleted file mode 100644 index f05ca798d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HIFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.448881720988132, - "ema_span_0": 786.4973354385297, - "ema_span_1": 568.5907714177035, - "enabled": true, - "initial_eprice_ema_dist": -0.007948850853725877, - "initial_qty_pct": 0.015241779725150294, - "markup_range": 0.004527416939159713, - "min_markup": 0.0031450463066079047, - "n_close_orders": 9, - "rentry_pprice_dist": 0.021619623432236366, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7363085512083494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HIGHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HIGHUSDT.json deleted file mode 100644 index a25ec7948..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9171505053084688, - "ema_span_0": 775.9584552785303, - "ema_span_1": 762.0483829165494, - "enabled": true, - "initial_eprice_ema_dist": 0.0028462500165785934, - "initial_qty_pct": 0.011654163150148599, - "markup_range": 0.0024565804815127193, - "min_markup": 0.003873184512277312, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03589457840207292, - "rentry_pprice_dist_wallet_exposure_weighting": 5.803669925118121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HNTUSDT.json deleted file mode 100644 index 2beb71532..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0661212597199805, - "ema_span_0": 871.4868069935842, - "ema_span_1": 813.9875449016666, - "enabled": true, - "initial_eprice_ema_dist": -0.006249229179967419, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.0004471682865097875, - "min_markup": 0.002873043973521388, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9433838150301748, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9920603152790013, - "ema_span_0": 624.3931604244164, - "ema_span_1": 689.7922144458057, - "enabled": true, - "initial_eprice_ema_dist": -0.009672742672452812, - "initial_qty_pct": 0.005789752616114187, - "markup_range": 0.0014188872312999124, - "min_markup": 0.005218401406013735, - "n_close_orders": 14, - "rentry_pprice_dist": 0.056157995710625894, - "rentry_pprice_dist_wallet_exposure_weighting": 8.52765874089328, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HOOKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HOOKUSDT.json deleted file mode 100644 index ee0dbcd5b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3187888384773676, - "ema_span_0": 453.1599018702678, - "ema_span_1": 739.39742060668, - "enabled": true, - "initial_eprice_ema_dist": -0.009980324583036323, - "initial_qty_pct": 0.010098513558446785, - "markup_range": 0.006207062074005397, - "min_markup": 0.001696536952026113, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02882694885290546, - "rentry_pprice_dist_wallet_exposure_weighting": 4.294854549490684, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/HOTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/HOTUSDT.json deleted file mode 100644 index e8c92b7f0..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.468715736273322, - "ema_span_0": 1242.7247585534535, - "ema_span_1": 1223.6888496162317, - "enabled": true, - "initial_eprice_ema_dist": 0.0029538022215272733, - "initial_qty_pct": 0.006156137732294706, - "markup_range": 0.003951995024452052, - "min_markup": 0.004286919084446604, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034170119694141285, - "rentry_pprice_dist_wallet_exposure_weighting": 2.552660595223331, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5534871384395967, - "ema_span_0": 497.72417068282743, - "ema_span_1": 402.4310180281065, - "enabled": true, - "initial_eprice_ema_dist": -0.006937579282307286, - "initial_qty_pct": 0.019998967246795736, - "markup_range": 0.004075980963864618, - "min_markup": 0.008206347744760006, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02201269981773479, - "rentry_pprice_dist_wallet_exposure_weighting": 8.86096231397286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ICPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ICPUSDT.json deleted file mode 100644 index 9f54203ea..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2790052190519028, - "ema_span_0": 720.8524682905892, - "ema_span_1": 1216.5359815368379, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011447479493287964, - "markup_range": 0.005150514141701578, - "min_markup": 0.005178192586461822, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03407328003681193, - "rentry_pprice_dist_wallet_exposure_weighting": 8.716160614861298, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ICXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ICXUSDT.json deleted file mode 100644 index 599e8a2d3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4924103298895497, - "ema_span_0": 1435.6248632028244, - "ema_span_1": 1281.8077876186157, - "enabled": true, - "initial_eprice_ema_dist": -0.0030841936613471383, - "initial_qty_pct": 0.013726934435758566, - "markup_range": 0.0011017226348451418, - "min_markup": 0.00367146705463104, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0395894695116373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3240390856851025, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6862259336459262, - "ema_span_0": 1109.3310320534958, - "ema_span_1": 477.15132300439143, - "enabled": true, - "initial_eprice_ema_dist": -0.009105244413307135, - "initial_qty_pct": 0.012697680183739304, - "markup_range": 0.002420323227669815, - "min_markup": 0.0036091761047438217, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04368376393736118, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6843364150871896, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/IDEXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/IDEXUSDT.json deleted file mode 100644 index bb156b9b1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2916212898447389, - "ema_span_0": 558.5924969044192, - "ema_span_1": 609.0076501189745, - "enabled": true, - "initial_eprice_ema_dist": -0.008391773292204903, - "initial_qty_pct": 0.019602929367910492, - "markup_range": 0.010665910178031772, - "min_markup": 0.002155920567569581, - "n_close_orders": 15, - "rentry_pprice_dist": 0.037429964583052214, - "rentry_pprice_dist_wallet_exposure_weighting": 1.059012227840908, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/IDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/IDUSDT.json deleted file mode 100644 index 59304142d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9539844792731716, - "ema_span_0": 1348.1998026290053, - "ema_span_1": 1350.029161035143, - "enabled": true, - "initial_eprice_ema_dist": -0.0052411622531953325, - "initial_qty_pct": 0.009482244190400883, - "markup_range": 0.006232659497564574, - "min_markup": 0.005169603139400304, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03736981272317089, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/IMXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/IMXUSDT.json deleted file mode 100644 index 178e27c38..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 680.5849726062776, - "ema_span_1": 679.128443782459, - "enabled": true, - "initial_eprice_ema_dist": -0.007534735788528065, - "initial_qty_pct": 0.009551468568882514, - "markup_range": 0.00405055665439011, - "min_markup": 0.005771584786557487, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029718809432778555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7040336767318629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5299612453809237, - "ema_span_0": 859.2565897925177, - "ema_span_1": 783.05228960208, - "enabled": true, - "initial_eprice_ema_dist": 0.00294931151662969, - "initial_qty_pct": 0.011234956298095757, - "markup_range": 0.004380430914877882, - "min_markup": 0.00340125491041518, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04740482228064186, - "rentry_pprice_dist_wallet_exposure_weighting": 6.039789033058094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/INJUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/INJUSDT.json deleted file mode 100644 index d83ff9d6b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6816441804997536, - "ema_span_0": 1207.002762689484, - "ema_span_1": 1215.7543977627083, - "enabled": true, - "initial_eprice_ema_dist": 0.002844318472241852, - "initial_qty_pct": 0.013546341705982687, - "markup_range": 0.001297765363145428, - "min_markup": 0.0042246138230332434, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01593128187208366, - "rentry_pprice_dist_wallet_exposure_weighting": 7.519025567180068, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0230013332526442, - "ema_span_0": 948.6876780252531, - "ema_span_1": 1287.560466844553, - "enabled": true, - "initial_eprice_ema_dist": 0.0012379335212399359, - "initial_qty_pct": 0.013450735419898477, - "markup_range": 0.003736597199601087, - "min_markup": 0.005822176662193961, - "n_close_orders": 14, - "rentry_pprice_dist": 0.035598806580745095, - "rentry_pprice_dist_wallet_exposure_weighting": 2.203668366035464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/IOSTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/IOSTUSDT.json deleted file mode 100644 index 6bbcfd14d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 1176.6244975314837, - "ema_span_1": 793.3532457136675, - "enabled": true, - "initial_eprice_ema_dist": -0.0016808656541925846, - "initial_qty_pct": 0.019362262207065287, - "markup_range": 0.004809636962814767, - "min_markup": 0.002645647081576622, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04002485996323371, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4396006431557236, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35377525620612843, - "ema_span_0": 1280.8008886056546, - "ema_span_1": 734.9320679117058, - "enabled": true, - "initial_eprice_ema_dist": -0.008458349194505358, - "initial_qty_pct": 0.006974778221559435, - "markup_range": 0.002964010935049224, - "min_markup": 0.004887013163173188, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023413318899461338, - "rentry_pprice_dist_wallet_exposure_weighting": 7.745721191751236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/IOTAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/IOTAUSDT.json deleted file mode 100644 index b0e9a8aed..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3424248226444024, - "ema_span_0": 1131.6414829955768, - "ema_span_1": 1137.7868339695306, - "enabled": true, - "initial_eprice_ema_dist": -0.0003383789949880434, - "initial_qty_pct": 0.005, - "markup_range": 0.0014265648440583618, - "min_markup": 0.0054097356387039055, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0370937141221393, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1534063329544186, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0104426941410156, - "ema_span_0": 417.6321452285503, - "ema_span_1": 541.4180739658083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029984219177280787, - "initial_qty_pct": 0.013363031751006421, - "markup_range": 7.010573397721282e-05, - "min_markup": 0.0028074393585992385, - "n_close_orders": 6, - "rentry_pprice_dist": 0.023684594715020553, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9646097045738005, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/IOTXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/IOTXUSDT.json deleted file mode 100644 index cf6eff9a3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/JASMYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/JASMYUSDT.json deleted file mode 100644 index ec5ebe6df..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9461984127653197, - "ema_span_0": 876.1010914259034, - "ema_span_1": 1411.1899224254166, - "enabled": true, - "initial_eprice_ema_dist": 0.00206223743229542, - "initial_qty_pct": 0.015066384831184559, - "markup_range": 0.0015641017368793744, - "min_markup": 0.005669014125737904, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030402515021544733, - "rentry_pprice_dist_wallet_exposure_weighting": 0.037463412375512206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/JOEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/JOEUSDT.json deleted file mode 100644 index 67ac8b2ed..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10019471182940975, - "ema_span_0": 467.50495335874245, - "ema_span_1": 501.072027143022, - "enabled": true, - "initial_eprice_ema_dist": 0.0027875175110054786, - "initial_qty_pct": 0.013263121329687525, - "markup_range": 0.003308486630147833, - "min_markup": 0.005932159347895808, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04602199135656369, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00047978102658506215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21348478501226764, - "ema_span_0": 578.6053110911937, - "ema_span_1": 536.3687046086876, - "enabled": true, - "initial_eprice_ema_dist": 0.0019114755355438492, - "initial_qty_pct": 0.008086298731652026, - "markup_range": 0.005795173062738924, - "min_markup": 0.0099925547949804, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02896875662863217, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8234525007833575, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/KAVAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/KAVAUSDT.json deleted file mode 100644 index cb0a532a8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9981343043546285, - "ema_span_0": 616.1697130798476, - "ema_span_1": 1204.4785222119897, - "enabled": true, - "initial_eprice_ema_dist": -0.003286700364198224, - "initial_qty_pct": 0.011197307005157007, - "markup_range": 0.0005545569384790453, - "min_markup": 0.0017689918321148578, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04967264374776934, - "rentry_pprice_dist_wallet_exposure_weighting": 4.687857504261405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.051721682840642, - "ema_span_0": 1360.642957935954, - "ema_span_1": 1074.7246305737328, - "enabled": true, - "initial_eprice_ema_dist": 0.0008969338667493432, - "initial_qty_pct": 0.01577818768030297, - "markup_range": 0.005534066319481284, - "min_markup": 0.003995770267067804, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04497421082218448, - "rentry_pprice_dist_wallet_exposure_weighting": 5.627273643280507, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/KEYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/KEYUSDT.json deleted file mode 100644 index b0dd32477..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8317672831997515, - "ema_span_0": 1379.0305224486792, - "ema_span_1": 1315.8139430261444, - "enabled": true, - "initial_eprice_ema_dist": -0.005556369161777596, - "initial_qty_pct": 0.014696673084211543, - "markup_range": 0.004126443243319796, - "min_markup": 0.0034499363711920444, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024337462617835055, - "rentry_pprice_dist_wallet_exposure_weighting": 0.40409688143295186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/KLAYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/KLAYUSDT.json deleted file mode 100644 index a8d6cd0d3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7548758837650864, - "ema_span_0": 1191.9312652010371, - "ema_span_1": 1355.0679887715685, - "enabled": true, - "initial_eprice_ema_dist": 0.000943229176790928, - "initial_qty_pct": 0.00992020481729889, - "markup_range": 0.003709573741304125, - "min_markup": 0.001454596543327943, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025806478096145762, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764646147703523, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/KNCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/KNCUSDT.json deleted file mode 100644 index 28dd4c729..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/KSMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/KSMUSDT.json deleted file mode 100644 index 37c8ce137..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.66657615106925, - "ema_span_0": 400, - "ema_span_1": 612.5008810265405, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010565388433706784, - "markup_range": 0.003956688754641532, - "min_markup": 0.0010088108264537318, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04083060314602456, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2864124271191457, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0401834470763212, - "ema_span_0": 668.3243217465639, - "ema_span_1": 471.55981714672646, - "enabled": true, - "initial_eprice_ema_dist": 0.002462550599710681, - "initial_qty_pct": 0.013241687755352895, - "markup_range": 0.004692154635557773, - "min_markup": 0.0031629465714315174, - "n_close_orders": 11, - "rentry_pprice_dist": 0.024921007690813107, - "rentry_pprice_dist_wallet_exposure_weighting": 2.523415804189766, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LDOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LDOUSDT.json deleted file mode 100644 index 1b5d43309..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7548758837650864, - "ema_span_0": 1191.9312652010371, - "ema_span_1": 1355.0679887715685, - "enabled": true, - "initial_eprice_ema_dist": 0.000943229176790928, - "initial_qty_pct": 0.00992020481729889, - "markup_range": 0.003709573741304125, - "min_markup": 0.001454596543327943, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025806478096145762, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764646147703523, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7465097299671224, - "ema_span_0": 1229.4937379669102, - "ema_span_1": 1339.649707108857, - "enabled": true, - "initial_eprice_ema_dist": -0.006967989062541248, - "initial_qty_pct": 0.006706950324019554, - "markup_range": 0.0008049961427947836, - "min_markup": 0.009760061711514244, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04125837059356699, - "rentry_pprice_dist_wallet_exposure_weighting": 7.373845083350206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LEVERUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LEVERUSDT.json deleted file mode 100644 index 60a9fc3bd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9981343043546285, - "ema_span_0": 616.1697130798476, - "ema_span_1": 1204.4785222119897, - "enabled": true, - "initial_eprice_ema_dist": -0.003286700364198224, - "initial_qty_pct": 0.011197307005157007, - "markup_range": 0.0005545569384790453, - "min_markup": 0.0017689918321148578, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04967264374776934, - "rentry_pprice_dist_wallet_exposure_weighting": 4.687857504261405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LINAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LINAUSDT.json deleted file mode 100644 index 53146a3cb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4997342797101396, - "ema_span_0": 684.8138383006407, - "ema_span_1": 1239.1449070996134, - "enabled": true, - "initial_eprice_ema_dist": -0.005588190728916151, - "initial_qty_pct": 0.015121748707332572, - "markup_range": 0.005599073628974565, - "min_markup": 0.005240420265385149, - "n_close_orders": 2, - "rentry_pprice_dist": 0.05161640380822091, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3028660432971493, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4098363261430227, - "ema_span_0": 897.4371476951306, - "ema_span_1": 1001.8878651585367, - "enabled": true, - "initial_eprice_ema_dist": 0.0018525341832203086, - "initial_qty_pct": 0.006665336296469922, - "markup_range": 0.00937826196110776, - "min_markup": 0.009832943480030217, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05046959415794507, - "rentry_pprice_dist_wallet_exposure_weighting": 8.441378548302362, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LINKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LINKUSDT.json deleted file mode 100644 index bfd7a6cd5..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LITUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LITUSDT.json deleted file mode 100644 index 4f5f73795..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5980421145344694, - "ema_span_0": 1012.1361978101593, - "ema_span_1": 1369.7247598662195, - "enabled": true, - "initial_eprice_ema_dist": -0.0007152561960186003, - "initial_qty_pct": 0.005746446568450588, - "markup_range": 0.0034168661522610464, - "min_markup": 0.00491659365917792, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04617673818903448, - "rentry_pprice_dist_wallet_exposure_weighting": 3.366260302660422, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.25212684674431, - "ema_span_0": 1236.0061866226306, - "ema_span_1": 1120.9424351551172, - "enabled": true, - "initial_eprice_ema_dist": -0.008266509548968737, - "initial_qty_pct": 0.016548551367792173, - "markup_range": 0.013242923680041872, - "min_markup": 0.003848859172032385, - "n_close_orders": 4, - "rentry_pprice_dist": 0.034307040140498894, - "rentry_pprice_dist_wallet_exposure_weighting": 7.4110207686999106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LPTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LPTUSDT.json deleted file mode 100644 index 6a819919b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3371466143965313, - "ema_span_0": 1087.6046787389146, - "ema_span_1": 1375.8236443434478, - "enabled": true, - "initial_eprice_ema_dist": -0.0056029314032308075, - "initial_qty_pct": 0.011213071705653516, - "markup_range": 0.002603946800314544, - "min_markup": 0.005178835176920965, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03826562236454964, - "rentry_pprice_dist_wallet_exposure_weighting": 8.13841305577217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LQTYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LQTYUSDT.json deleted file mode 100644 index ae5929508..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.341754829883286, - "ema_span_0": 1381.696357194486, - "ema_span_1": 898.3018642104006, - "enabled": true, - "initial_eprice_ema_dist": -0.007502246912564987, - "initial_qty_pct": 0.008190405753175794, - "markup_range": 0.001181834027785448, - "min_markup": 0.005822096880760171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04401027773725582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6448002396478179, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5534871384395967, - "ema_span_0": 497.72417068282743, - "ema_span_1": 402.4310180281065, - "enabled": true, - "initial_eprice_ema_dist": -0.006937579282307286, - "initial_qty_pct": 0.019998967246795736, - "markup_range": 0.004075980963864618, - "min_markup": 0.008206347744760006, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02201269981773479, - "rentry_pprice_dist_wallet_exposure_weighting": 8.86096231397286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LRCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LRCUSDT.json deleted file mode 100644 index 1dfa9fa3c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8344579615043264, - "ema_span_0": 1297.868968332399, - "ema_span_1": 1335.4096996861251, - "enabled": true, - "initial_eprice_ema_dist": -0.0025933602981439386, - "initial_qty_pct": 0.016904235207444374, - "markup_range": 0.0017135574434488244, - "min_markup": 0.005284610082813167, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02825134582431613, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0176789221671316, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9252689724179658, - "ema_span_0": 757.2148671061719, - "ema_span_1": 1279.2011497945443, - "enabled": true, - "initial_eprice_ema_dist": -0.0007325362826606098, - "initial_qty_pct": 0.016260177169856657, - "markup_range": 0.002917620023089104, - "min_markup": 0.0055176800794485, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05400845847640049, - "rentry_pprice_dist_wallet_exposure_weighting": 5.814090079994175, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LTCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LTCUSDT.json deleted file mode 100644 index fc5f65066..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1081120682023222, - "ema_span_0": 724.3842967342677, - "ema_span_1": 687.6058181393267, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01478164269149576, - "markup_range": 0.0012230031616078149, - "min_markup": 0.0033166480459192963, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025252828823763254, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2467143756229664, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8552521251115799, - "ema_span_0": 881.8768472139141, - "ema_span_1": 1308.9789986596709, - "enabled": true, - "initial_eprice_ema_dist": 0.0014424721938682199, - "initial_qty_pct": 0.007341584983861241, - "markup_range": 0.0011391099460800324, - "min_markup": 0.0033575290887672585, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02411353599686237, - "rentry_pprice_dist_wallet_exposure_weighting": 0.016370498522027762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/LUNA2USDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/LUNA2USDT.json deleted file mode 100644 index 5cf292b96..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15046741285088064, - "ema_span_0": 736.7203910497747, - "ema_span_1": 596.951172850221, - "enabled": true, - "initial_eprice_ema_dist": -0.009364199048624611, - "initial_qty_pct": 0.011606679451066481, - "markup_range": 0.003668172592159496, - "min_markup": 0.0024972871558696804, - "n_close_orders": 15, - "rentry_pprice_dist": 0.015417226843163254, - "rentry_pprice_dist_wallet_exposure_weighting": 9.009522109968897, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MAGICUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MAGICUSDT.json deleted file mode 100644 index 454864310..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21121918030792172, - "ema_span_0": 721.8896248656592, - "ema_span_1": 1360.6130392354266, - "enabled": true, - "initial_eprice_ema_dist": -0.007330703523834837, - "initial_qty_pct": 0.01289300914932402, - "markup_range": 0.0032900040213383356, - "min_markup": 0.007917111424929492, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03911008496356426, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5842375396326758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MANAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MANAUSDT.json deleted file mode 100644 index cf1e2942d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MASKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MASKUSDT.json deleted file mode 100644 index 438eb1aeb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MATICUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MATICUSDT.json deleted file mode 100644 index ec9d10a7f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5127191074644122, - "ema_span_0": 1209.0752348602116, - "ema_span_1": 1245.936047074045, - "enabled": true, - "initial_eprice_ema_dist": -0.00783831177808704, - "initial_qty_pct": 0.007646228817315402, - "markup_range": 0.005292446878475193, - "min_markup": 0.003756369238441901, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03361823663661565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16049418705746993, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MAVUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MAVUSDT.json deleted file mode 100644 index 0e102be8f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2214462657948828, - "ema_span_0": 1086.0872597938728, - "ema_span_1": 1100.4810601110871, - "enabled": true, - "initial_eprice_ema_dist": 0.0003789756160626287, - "initial_qty_pct": 0.010733817066611489, - "markup_range": 0.011650383667415184, - "min_markup": 0.007445882759028696, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03980909672342595, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0631334907892014, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MDTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MDTUSDT.json deleted file mode 100644 index 7a3712686..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2917787033497605, - "ema_span_0": 1344.9537971661955, - "ema_span_1": 436.4248240758233, - "enabled": true, - "initial_eprice_ema_dist": -0.004822333867779742, - "initial_qty_pct": 0.009453087771626114, - "markup_range": 0.001675059263184776, - "min_markup": 0.003995369493070447, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03099364507912738, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5924991535166688, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MINAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MINAUSDT.json deleted file mode 100644 index c1c6cdfaf..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MKRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MKRUSDT.json deleted file mode 100644 index 73c0d4db0..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.448881720988132, - "ema_span_0": 786.4973354385297, - "ema_span_1": 568.5907714177035, - "enabled": true, - "initial_eprice_ema_dist": -0.007948850853725877, - "initial_qty_pct": 0.015241779725150294, - "markup_range": 0.004527416939159713, - "min_markup": 0.0031450463066079047, - "n_close_orders": 9, - "rentry_pprice_dist": 0.021619623432236366, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7363085512083494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9440504563496455, - "ema_span_0": 670.9984492428504, - "ema_span_1": 1382.5326523555161, - "enabled": true, - "initial_eprice_ema_dist": 0.0029664815346501497, - "initial_qty_pct": 0.007147325770208928, - "markup_range": 0.00011612873974285131, - "min_markup": 0.0028322952399753762, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04953091217010036, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1494709499633642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/MTLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/MTLUSDT.json deleted file mode 100644 index 84548163d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.508943516866059, - "ema_span_0": 1266.4510224050705, - "ema_span_1": 1003.4753794357284, - "enabled": true, - "initial_eprice_ema_dist": -0.0020142454462381935, - "initial_qty_pct": 0.00870864458220254, - "markup_range": 0.003695702157477494, - "min_markup": 0.007223163185213094, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04575521532989267, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5576921537854274, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/NEARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/NEARUSDT.json deleted file mode 100644 index f0eec3f9a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3841085740562584, - "ema_span_0": 1371.1241965548327, - "ema_span_1": 1387.5601579070685, - "enabled": true, - "initial_eprice_ema_dist": 0.002703581782074901, - "initial_qty_pct": 0.007245856643223554, - "markup_range": 0.002574344361750194, - "min_markup": 0.0030393522696450536, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02372557433447987, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6192450253478405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3919250201018858, - "ema_span_0": 1060.2158960918268, - "ema_span_1": 1177.1731290956418, - "enabled": true, - "initial_eprice_ema_dist": 0.0027981313427130673, - "initial_qty_pct": 0.011437346366293797, - "markup_range": 0.0037064397591261796, - "min_markup": 0.004152807034102169, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04733475424553607, - "rentry_pprice_dist_wallet_exposure_weighting": 9.908369167484524, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/NEOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/NEOUSDT.json deleted file mode 100644 index 846a2fc33..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.22158454138696282, - "ema_span_0": 617.2751880621905, - "ema_span_1": 1142.4603211825965, - "enabled": true, - "initial_eprice_ema_dist": -0.005348192640565982, - "initial_qty_pct": 0.010012971078924323, - "markup_range": 0.0016893867061480018, - "min_markup": 0.008582226768360573, - "n_close_orders": 10, - "rentry_pprice_dist": 0.015359862538519184, - "rentry_pprice_dist_wallet_exposure_weighting": 6.782601692438119, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/NKNUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/NKNUSDT.json deleted file mode 100644 index 66b6fad3a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6502594192908396, - "ema_span_0": 427.302724054113, - "ema_span_1": 525.1241138972119, - "enabled": true, - "initial_eprice_ema_dist": 0.0023047652177452284, - "initial_qty_pct": 0.01443980653941104, - "markup_range": 0.006152045986096421, - "min_markup": 0.009373094415952785, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029678349703712765, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762279862782721, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10010264283071404, - "ema_span_0": 1074.7107635989628, - "ema_span_1": 824.4020377981421, - "enabled": true, - "initial_eprice_ema_dist": 0.002997278810551917, - "initial_qty_pct": 0.019997349195799628, - "markup_range": 0.004116237409615031, - "min_markup": 0.006676342857971211, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029872158206496465, - "rentry_pprice_dist_wallet_exposure_weighting": 8.605189052077773, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/NMRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/NMRUSDT.json deleted file mode 100644 index 90691d649..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/OCEANUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/OCEANUSDT.json deleted file mode 100644 index b26197ecd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5292692989195638, - "ema_span_0": 775.5792201548077, - "ema_span_1": 790.3492310915038, - "enabled": true, - "initial_eprice_ema_dist": -0.001880550018596288, - "initial_qty_pct": 0.018079363052155833, - "markup_range": 0.002789004401964322, - "min_markup": 0.004231742862200032, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03813133766079587, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4735632044926827, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17206336873738548, - "ema_span_0": 1438.9665075699522, - "ema_span_1": 1085.7116498904888, - "enabled": true, - "initial_eprice_ema_dist": -0.0026449263041083823, - "initial_qty_pct": 0.019984495640104415, - "markup_range": 0.012644869120393708, - "min_markup": 0.007255569489115546, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029308000076854707, - "rentry_pprice_dist_wallet_exposure_weighting": 4.296578413876355, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/OGNUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/OGNUSDT.json deleted file mode 100644 index c7c2f8bf4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2217567213607032, - "ema_span_0": 683.8293148453361, - "ema_span_1": 1045.930823611072, - "enabled": true, - "initial_eprice_ema_dist": 0.001192929551335642, - "initial_qty_pct": 0.01161025552401619, - "markup_range": 0.002726245576964028, - "min_markup": 0.006327700262616104, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04105473263536897, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4376273610876, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7082283674718726, - "ema_span_0": 1131.8396694015312, - "ema_span_1": 717.9391290179749, - "enabled": true, - "initial_eprice_ema_dist": -0.008394939185752272, - "initial_qty_pct": 0.012449510789844796, - "markup_range": 0.0005573825171878327, - "min_markup": 0.0026917469876966494, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03734338310139008, - "rentry_pprice_dist_wallet_exposure_weighting": 0.15166157559238377, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/OMGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/OMGUSDT.json deleted file mode 100644 index 9563f604f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2916212898447389, - "ema_span_0": 558.5924969044192, - "ema_span_1": 609.0076501189745, - "enabled": true, - "initial_eprice_ema_dist": -0.008391773292204903, - "initial_qty_pct": 0.019602929367910492, - "markup_range": 0.010665910178031772, - "min_markup": 0.002155920567569581, - "n_close_orders": 15, - "rentry_pprice_dist": 0.037429964583052214, - "rentry_pprice_dist_wallet_exposure_weighting": 1.059012227840908, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1563091898658058, - "ema_span_0": 509.5750826043466, - "ema_span_1": 416.1793919164289, - "enabled": true, - "initial_eprice_ema_dist": -0.0012788787668857825, - "initial_qty_pct": 0.0077909627178497495, - "markup_range": 0.003547466737381803, - "min_markup": 0.0072453079849926294, - "n_close_orders": 12, - "rentry_pprice_dist": 0.042819641678887015, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ONEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ONEUSDT.json deleted file mode 100644 index 751528dad..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.010728713869667, - "ema_span_0": 404.3805153091619, - "ema_span_1": 895.3187408007893, - "enabled": true, - "initial_eprice_ema_dist": -0.005872619899779888, - "initial_qty_pct": 0.009407514964527476, - "markup_range": 0.0019875770646914145, - "min_markup": 0.007220018850337885, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03883316449210311, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3686696457267695, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8238000490597432, - "ema_span_0": 1016.4337070155108, - "ema_span_1": 915.1214130618383, - "enabled": true, - "initial_eprice_ema_dist": 0.0007831719440346082, - "initial_qty_pct": 0.013976881040781519, - "markup_range": 0.0053851497781930435, - "min_markup": 0.0054348661294066685, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03683703455568767, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9213870105954695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ONTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ONTUSDT.json deleted file mode 100644 index a721e0276..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25343745137797186, - "ema_span_0": 1209.799889267291, - "ema_span_1": 561.3024485228449, - "enabled": true, - "initial_eprice_ema_dist": -0.000868597903903903, - "initial_qty_pct": 0.006379959950152951, - "markup_range": 0.013174477175909452, - "min_markup": 0.004977617778157702, - "n_close_orders": 11, - "rentry_pprice_dist": 0.038213259567223795, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5024703156381913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3610810877333834, - "ema_span_0": 1387.859631016273, - "ema_span_1": 830.0336606892711, - "enabled": true, - "initial_eprice_ema_dist": -4.7693696982364265e-05, - "initial_qty_pct": 0.01409087864308198, - "markup_range": 0.008065203688859808, - "min_markup": 0.003815556092409007, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02435442439173191, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853916217735233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/OPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/OPUSDT.json deleted file mode 100644 index c03ed78bf..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1737768366463537, - "ema_span_0": 896.2340233374994, - "ema_span_1": 589.5963101508198, - "enabled": true, - "initial_eprice_ema_dist": 0.001218085131085882, - "initial_qty_pct": 0.01415394363069659, - "markup_range": 0.0021746648607091, - "min_markup": 0.0033774997082325585, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04824834814203018, - "rentry_pprice_dist_wallet_exposure_weighting": 2.204716000948487, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0575484627542227, - "ema_span_0": 1067.5582564003012, - "ema_span_1": 422.8511433535947, - "enabled": true, - "initial_eprice_ema_dist": 0.0002492545114339976, - "initial_qty_pct": 0.007658054470493523, - "markup_range": 0.00214324393092925, - "min_markup": 0.003279407549061367, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05854209606514442, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2201369583826327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/OXTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/OXTUSDT.json deleted file mode 100644 index 706f97605..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/PENDLEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/PENDLEUSDT.json deleted file mode 100644 index 2586e1366..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6502594192908396, - "ema_span_0": 427.302724054113, - "ema_span_1": 525.1241138972119, - "enabled": true, - "initial_eprice_ema_dist": 0.0023047652177452284, - "initial_qty_pct": 0.01443980653941104, - "markup_range": 0.006152045986096421, - "min_markup": 0.009373094415952785, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029678349703712765, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762279862782721, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9499051479360794, - "ema_span_0": 622.1083373545156, - "ema_span_1": 1357.1605131698723, - "enabled": true, - "initial_eprice_ema_dist": -0.0052618939405264945, - "initial_qty_pct": 0.013970634422238976, - "markup_range": 0.007023294326105997, - "min_markup": 0.00536912115698267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03611137316591374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.263986724814306, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/PEOPLEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/PEOPLEUSDT.json deleted file mode 100644 index 28dd4c729..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/PERPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/PERPUSDT.json deleted file mode 100644 index eb0b6457a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4997342797101396, - "ema_span_0": 684.8138383006407, - "ema_span_1": 1239.1449070996134, - "enabled": true, - "initial_eprice_ema_dist": -0.005588190728916151, - "initial_qty_pct": 0.015121748707332572, - "markup_range": 0.005599073628974565, - "min_markup": 0.005240420265385149, - "n_close_orders": 2, - "rentry_pprice_dist": 0.05161640380822091, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3028660432971493, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/PHBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/PHBUSDT.json deleted file mode 100644 index 5cd167778..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10019471182940975, - "ema_span_0": 467.50495335874245, - "ema_span_1": 501.072027143022, - "enabled": true, - "initial_eprice_ema_dist": 0.0027875175110054786, - "initial_qty_pct": 0.013263121329687525, - "markup_range": 0.003308486630147833, - "min_markup": 0.005932159347895808, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04602199135656369, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00047978102658506215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8516888661345936, - "ema_span_0": 401.12836005586195, - "ema_span_1": 1428.0395786056317, - "enabled": true, - "initial_eprice_ema_dist": 0.0029167220269721824, - "initial_qty_pct": 0.01782174329230994, - "markup_range": 0.003055926162536204, - "min_markup": 0.0025475301688727197, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026603491012028718, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6083947531291125, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/QNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/QNTUSDT.json deleted file mode 100644 index f71fede25..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2744467310865617, - "ema_span_0": 405.10318436485136, - "ema_span_1": 519.3352452918157, - "enabled": true, - "initial_eprice_ema_dist": 0.002767839774503037, - "initial_qty_pct": 0.01161713024087238, - "markup_range": 0.002302629723792086, - "min_markup": 0.0026762194350294917, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02400454707662801, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5909659355634345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/QTUMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/QTUMUSDT.json deleted file mode 100644 index 3bb7c191f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10093919533531587, - "ema_span_0": 774.2958923275753, - "ema_span_1": 533.2535451477125, - "enabled": true, - "initial_eprice_ema_dist": 0.0004741688198622525, - "initial_qty_pct": 0.01851658732669561, - "markup_range": 0.003920994631736299, - "min_markup": 0.00407725032022307, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038138285868704984, - "rentry_pprice_dist_wallet_exposure_weighting": 2.208551392385098, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0230013332526442, - "ema_span_0": 948.6876780252531, - "ema_span_1": 1287.560466844553, - "enabled": true, - "initial_eprice_ema_dist": 0.0012379335212399359, - "initial_qty_pct": 0.013450735419898477, - "markup_range": 0.003736597199601087, - "min_markup": 0.005822176662193961, - "n_close_orders": 14, - "rentry_pprice_dist": 0.035598806580745095, - "rentry_pprice_dist_wallet_exposure_weighting": 2.203668366035464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RADUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RADUSDT.json deleted file mode 100644 index 0280e4e65..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.837113039634205, - "ema_span_0": 830.7764330967107, - "ema_span_1": 692.0764617267124, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.012697680183739304, - "markup_range": 0.00011421390958197202, - "min_markup": 0.004968342991597388, - "n_close_orders": 7, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0401588346473017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RAYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RAYUSDT.json deleted file mode 100644 index 3302e0582..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1076557094684094, - "ema_span_0": 1292.3950982720557, - "ema_span_1": 1303.7317851295784, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010106393546435541, - "markup_range": 0.0013758356909457474, - "min_markup": 0.003938501371448148, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029858901316643576, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9607394449103155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5201668901180903, - "ema_span_0": 707.2250848373449, - "ema_span_1": 716.1105828582283, - "enabled": true, - "initial_eprice_ema_dist": 0.0027096615049866995, - "initial_qty_pct": 0.0065485449384614074, - "markup_range": 0.0011620678195813701, - "min_markup": 0.002783751905608409, - "n_close_orders": 13, - "rentry_pprice_dist": 0.013406032799101379, - "rentry_pprice_dist_wallet_exposure_weighting": 5.142204170273534, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RDNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RDNTUSDT.json deleted file mode 100644 index fb7b28f42..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/REEFUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/REEFUSDT.json deleted file mode 100644 index 48e9fa1a9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.396905198984233, - "ema_span_0": 944.029003724747, - "ema_span_1": 1101.4181700261593, - "enabled": true, - "initial_eprice_ema_dist": -0.002900365914467947, - "initial_qty_pct": 0.006472923121550627, - "markup_range": 0.012612255304370108, - "min_markup": 0.0037362855421466767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03797875765139709, - "rentry_pprice_dist_wallet_exposure_weighting": 4.480393235712382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RENUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RENUSDT.json deleted file mode 100644 index 8302a883b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.36495964064822867, - "ema_span_0": 856.850836239504, - "ema_span_1": 876.0216461952947, - "enabled": true, - "initial_eprice_ema_dist": -0.0018571144493828874, - "initial_qty_pct": 0.009917841260770818, - "markup_range": 0.003539946515060692, - "min_markup": 0.004841339352740727, - "n_close_orders": 11, - "rentry_pprice_dist": 0.034058268566436345, - "rentry_pprice_dist_wallet_exposure_weighting": 4.55581179533905, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RLCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RLCUSDT.json deleted file mode 100644 index 3f9487652..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.549576514954369, - "ema_span_0": 700.5555759399181, - "ema_span_1": 700.0659881649507, - "enabled": true, - "initial_eprice_ema_dist": -0.009947416156307202, - "initial_qty_pct": 0.013255259805000906, - "markup_range": 0.006469182454139899, - "min_markup": 0.005989846357583506, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04327653390255187, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6907843363591483, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0376355203597838, - "ema_span_0": 633.386007336164, - "ema_span_1": 887.3728270616908, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.013699748249200672, - "markup_range": 0.008459985981420575, - "min_markup": 0.006781846332321432, - "n_close_orders": 11, - "rentry_pprice_dist": 0.035444110685798405, - "rentry_pprice_dist_wallet_exposure_weighting": 5.226529926365776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RNDRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RNDRUSDT.json deleted file mode 100644 index 8e8ba621f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3919250201018858, - "ema_span_0": 1060.2158960918268, - "ema_span_1": 1177.1731290956418, - "enabled": true, - "initial_eprice_ema_dist": 0.0027981313427130673, - "initial_qty_pct": 0.011437346366293797, - "markup_range": 0.0037064397591261796, - "min_markup": 0.004152807034102169, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04733475424553607, - "rentry_pprice_dist_wallet_exposure_weighting": 9.908369167484524, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ROSEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ROSEUSDT.json deleted file mode 100644 index 9ee9a3c95..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 492.85365548426046, - "enabled": true, - "initial_eprice_ema_dist": -0.0024457695084391176, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.004063423362444695, - "min_markup": 0.001454596543327943, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03505831567224242, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6319118133606905, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RSRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RSRUSDT.json deleted file mode 100644 index e51904f6a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.46904428054662695, - "ema_span_0": 770.5028815380779, - "ema_span_1": 744.5553862589587, - "enabled": true, - "initial_eprice_ema_dist": 0.002609499260626503, - "initial_qty_pct": 0.01335267991072591, - "markup_range": 0.006241586715190461, - "min_markup": 0.004732007822910442, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04498166637477749, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4255671528658533, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RUNEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RUNEUSDT.json deleted file mode 100644 index 0f5d71a00..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10037304056961531, - "ema_span_0": 994.6762990473986, - "ema_span_1": 1103.8806034579907, - "enabled": true, - "initial_eprice_ema_dist": -0.0064877309346694344, - "initial_qty_pct": 0.006721573023020864, - "markup_range": 0.0019259664387609118, - "min_markup": 0.005373303199029612, - "n_close_orders": 14, - "rentry_pprice_dist": 0.01979535022729973, - "rentry_pprice_dist_wallet_exposure_weighting": 2.202675127245405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0575484627542227, - "ema_span_0": 1067.5582564003012, - "ema_span_1": 422.8511433535947, - "enabled": true, - "initial_eprice_ema_dist": 0.0002492545114339976, - "initial_qty_pct": 0.007658054470493523, - "markup_range": 0.00214324393092925, - "min_markup": 0.003279407549061367, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05854209606514442, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2201369583826327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/RVNUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/RVNUSDT.json deleted file mode 100644 index 0db6141f7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.741757894699294, - "ema_span_0": 1173.25915040044, - "ema_span_1": 1344.9421422811963, - "enabled": true, - "initial_eprice_ema_dist": -0.009940031806438253, - "initial_qty_pct": 0.008290606526578778, - "markup_range": 0.00023080798570940996, - "min_markup": 0.004975177247404583, - "n_close_orders": 5, - "rentry_pprice_dist": 0.031514744060659926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.338696656450341, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8231565401472163, - "ema_span_0": 976.1455948884427, - "ema_span_1": 892.4936083479396, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839436438813807, - "initial_qty_pct": 0.017004098294829927, - "markup_range": 0.0010897149551822934, - "min_markup": 0.002500071840538706, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027708266055787432, - "rentry_pprice_dist_wallet_exposure_weighting": 8.707629332157412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SANDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SANDUSDT.json deleted file mode 100644 index 17f009bb3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6022801362329805, - "ema_span_0": 785.8215590462997, - "ema_span_1": 1428.4392666241056, - "enabled": true, - "initial_eprice_ema_dist": -0.00705284302021325, - "initial_qty_pct": 0.01526966102624325, - "markup_range": 0.003841531553454811, - "min_markup": 0.0053179326142975955, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03880756261120414, - "rentry_pprice_dist_wallet_exposure_weighting": 5.855593710561918, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SCUSDT.json deleted file mode 100644 index 3c34023e7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.341754829883286, - "ema_span_0": 1381.696357194486, - "ema_span_1": 898.3018642104006, - "enabled": true, - "initial_eprice_ema_dist": -0.007502246912564987, - "initial_qty_pct": 0.008190405753175794, - "markup_range": 0.001181834027785448, - "min_markup": 0.005822096880760171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04401027773725582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6448002396478179, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9734837982044294, - "ema_span_0": 1337.3018945926017, - "ema_span_1": 866.8616283439067, - "enabled": true, - "initial_eprice_ema_dist": 0.0008353614283271758, - "initial_qty_pct": 0.009091592197713624, - "markup_range": 0.002086770696473691, - "min_markup": 0.002323029888884738, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02754770669369124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7797656951385146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SEIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SEIUSDT.json deleted file mode 100644 index 0c0597988..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5127191074644122, - "ema_span_0": 1209.0752348602116, - "ema_span_1": 1245.936047074045, - "enabled": true, - "initial_eprice_ema_dist": -0.00783831177808704, - "initial_qty_pct": 0.007646228817315402, - "markup_range": 0.005292446878475193, - "min_markup": 0.003756369238441901, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03361823663661565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16049418705746993, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SFPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SFPUSDT.json deleted file mode 100644 index ad175c326..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4688005380099436, - "ema_span_0": 1427.240890515485, - "ema_span_1": 1397.8725924008033, - "enabled": true, - "initial_eprice_ema_dist": 0.002771289891218431, - "initial_qty_pct": 0.018399033060614915, - "markup_range": 0.0026160976058305784, - "min_markup": 0.002553274544198999, - "n_close_orders": 6, - "rentry_pprice_dist": 0.035697308344930366, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6319118133606905, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7465097299671224, - "ema_span_0": 1229.4937379669102, - "ema_span_1": 1339.649707108857, - "enabled": true, - "initial_eprice_ema_dist": -0.006967989062541248, - "initial_qty_pct": 0.006706950324019554, - "markup_range": 0.0008049961427947836, - "min_markup": 0.009760061711514244, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04125837059356699, - "rentry_pprice_dist_wallet_exposure_weighting": 7.373845083350206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SKLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SKLUSDT.json deleted file mode 100644 index 7613106e2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9835196748626635, - "ema_span_0": 850.1218813498359, - "ema_span_1": 575.1470609094193, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.019016975628777785, - "markup_range": 0.006360067572732123, - "min_markup": 0.006238392512025082, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03902524439820568, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6574576308701303, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.541548981431565, - "ema_span_0": 1374.6469710305294, - "ema_span_1": 1272.3315621931883, - "enabled": true, - "initial_eprice_ema_dist": -0.008541113529147172, - "initial_qty_pct": 0.011401068455024085, - "markup_range": 0.003937174503725552, - "min_markup": 0.004968342991597388, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04573547952901243, - "rentry_pprice_dist_wallet_exposure_weighting": 9.742469512479017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SNXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SNXUSDT.json deleted file mode 100644 index 69694152b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8325993977343975, - "ema_span_0": 613.1010610726044, - "ema_span_1": 1410.3032274120324, - "enabled": true, - "initial_eprice_ema_dist": -0.000841409724236921, - "initial_qty_pct": 0.013424367818308908, - "markup_range": 0.0074865593717514155, - "min_markup": 0.005133150021766462, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03967014370693948, - "rentry_pprice_dist_wallet_exposure_weighting": 6.736819016528358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1787474697966132, - "ema_span_0": 594.5285391720925, - "ema_span_1": 1100.1015396187781, - "enabled": true, - "initial_eprice_ema_dist": -9.581890405466732e-05, - "initial_qty_pct": 0.010775651749424698, - "markup_range": 0.006696796121318975, - "min_markup": 0.007960166759427366, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049530953687867536, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SOLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SOLUSDT.json deleted file mode 100644 index bddecb63f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4105703484072927, - "ema_span_0": 1247.6247279832355, - "ema_span_1": 1293.7198958430267, - "enabled": true, - "initial_eprice_ema_dist": -0.0015934526752411171, - "initial_qty_pct": 0.02, - "markup_range": 0.0028559825835691934, - "min_markup": 0.0032176359083182808, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03456731194371036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19136836263093726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9734837982044294, - "ema_span_0": 1337.3018945926017, - "ema_span_1": 866.8616283439067, - "enabled": true, - "initial_eprice_ema_dist": 0.0008353614283271758, - "initial_qty_pct": 0.009091592197713624, - "markup_range": 0.002086770696473691, - "min_markup": 0.002323029888884738, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02754770669369124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7797656951385146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SPELLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SPELLUSDT.json deleted file mode 100644 index 7f0fde808..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8851455953423754, - "ema_span_0": 589.8082383137008, - "ema_span_1": 830.3095662539462, - "enabled": true, - "initial_eprice_ema_dist": -0.009981692918517875, - "initial_qty_pct": 0.015738638853291992, - "markup_range": 0.003975132006789361, - "min_markup": 0.005534415710820503, - "n_close_orders": 14, - "rentry_pprice_dist": 0.035916500797180645, - "rentry_pprice_dist_wallet_exposure_weighting": 2.47076255774158, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SRMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SRMUSDT.json deleted file mode 100644 index c2339f555..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7310193868426007, - "ema_span_0": 1392.0816408501973, - "ema_span_1": 1369.3006021992335, - "enabled": true, - "initial_eprice_ema_dist": 0.002619723963840364, - "initial_qty_pct": 0.012761299160746052, - "markup_range": 3.783593956941449e-06, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028071656842355526, - "rentry_pprice_dist_wallet_exposure_weighting": 1.507569298518642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SSVUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SSVUSDT.json deleted file mode 100644 index 5c05728b2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1205260260426775, - "ema_span_0": 1212.0546329433664, - "ema_span_1": 1228.777699166912, - "enabled": true, - "initial_eprice_ema_dist": -0.002142947667564575, - "initial_qty_pct": 0.009765274489990797, - "markup_range": 0.005762749404703746, - "min_markup": 0.005770414975020122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03505831567224242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.940481762043566, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7465097299671224, - "ema_span_0": 1229.4937379669102, - "ema_span_1": 1339.649707108857, - "enabled": true, - "initial_eprice_ema_dist": -0.006967989062541248, - "initial_qty_pct": 0.006706950324019554, - "markup_range": 0.0008049961427947836, - "min_markup": 0.009760061711514244, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04125837059356699, - "rentry_pprice_dist_wallet_exposure_weighting": 7.373845083350206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/STGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/STGUSDT.json deleted file mode 100644 index aa8edd483..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9584361374175134, - "ema_span_0": 1404.0793251370017, - "ema_span_1": 987.7942033799167, - "enabled": true, - "initial_eprice_ema_dist": 0.002947831949022201, - "initial_qty_pct": 0.011602450973669727, - "markup_range": 0.002485797100252398, - "min_markup": 0.00547195756116448, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029750873675416525, - "rentry_pprice_dist_wallet_exposure_weighting": 4.869063556870773, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80277892313809, - "ema_span_0": 1436.834338987463, - "ema_span_1": 1386.5508225927904, - "enabled": true, - "initial_eprice_ema_dist": 0.002834520787073184, - "initial_qty_pct": 0.009303687366583258, - "markup_range": 6.665884094385342e-08, - "min_markup": 0.0020903931564476255, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04557852401904558, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2657045592750347, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/STMXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/STMXUSDT.json deleted file mode 100644 index 28c02ce55..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2123640902652209, - "ema_span_0": 1158.1532192768093, - "ema_span_1": 1154.8445098354118, - "enabled": true, - "initial_eprice_ema_dist": 0.002839192348048143, - "initial_qty_pct": 0.011535440930123758, - "markup_range": 0.00543726700112656, - "min_markup": 0.006558120826201822, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03179493347307616, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9932136879771867, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9520515728727079, - "ema_span_0": 1263.5212779280173, - "ema_span_1": 1098.9502091806548, - "enabled": true, - "initial_eprice_ema_dist": -0.004279294579022789, - "initial_qty_pct": 0.007263072834903574, - "markup_range": 0.006647861629591746, - "min_markup": 0.008594742656350072, - "n_close_orders": 7, - "rentry_pprice_dist": 0.035566556492932534, - "rentry_pprice_dist_wallet_exposure_weighting": 0.35619012006838746, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/STORJUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/STORJUSDT.json deleted file mode 100644 index 02a8328ef..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7187592749146647, - "ema_span_0": 497.26451374421487, - "ema_span_1": 1121.2832802732885, - "enabled": true, - "initial_eprice_ema_dist": 0.002878751432283443, - "initial_qty_pct": 0.01203903780576777, - "markup_range": 0.0019565028666160196, - "min_markup": 0.005463499646289359, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04368239785513233, - "rentry_pprice_dist_wallet_exposure_weighting": 1.689498507680282, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80277892313809, - "ema_span_0": 1436.834338987463, - "ema_span_1": 1386.5508225927904, - "enabled": true, - "initial_eprice_ema_dist": 0.002834520787073184, - "initial_qty_pct": 0.009303687366583258, - "markup_range": 6.665884094385342e-08, - "min_markup": 0.0020903931564476255, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04557852401904558, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2657045592750347, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/STXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/STXUSDT.json deleted file mode 100644 index c64e05dfa..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.173292938839362, - "ema_span_0": 1151.7891775414712, - "ema_span_1": 664.4483532262285, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012135370674556202, - "markup_range": 0.00012470032702840506, - "min_markup": 0.0012655947852999176, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02705624112123542, - "rentry_pprice_dist_wallet_exposure_weighting": 4.460736562825172, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SUIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SUIUSDT.json deleted file mode 100644 index c44e100ef..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3610810877333834, - "ema_span_0": 1387.859631016273, - "ema_span_1": 830.0336606892711, - "enabled": true, - "initial_eprice_ema_dist": -4.7693696982364265e-05, - "initial_qty_pct": 0.01409087864308198, - "markup_range": 0.008065203688859808, - "min_markup": 0.003815556092409007, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02435442439173191, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853916217735233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SUSHIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SUSHIUSDT.json deleted file mode 100644 index d9ecbf853..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10019471182940975, - "ema_span_0": 467.50495335874245, - "ema_span_1": 501.072027143022, - "enabled": true, - "initial_eprice_ema_dist": 0.0027875175110054786, - "initial_qty_pct": 0.013263121329687525, - "markup_range": 0.003308486630147833, - "min_markup": 0.005932159347895808, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04602199135656369, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00047978102658506215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8598910486070648, - "ema_span_0": 571.0217362479318, - "ema_span_1": 497.65326119396866, - "enabled": true, - "initial_eprice_ema_dist": 0.000832297404049764, - "initial_qty_pct": 0.014050213992501942, - "markup_range": 0.005406724403765477, - "min_markup": 0.007680093168428415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.045036170453262296, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8340672757433265, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/SXPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/SXPUSDT.json deleted file mode 100644 index a06553a1a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1737768366463537, - "ema_span_0": 896.2340233374994, - "ema_span_1": 589.5963101508198, - "enabled": true, - "initial_eprice_ema_dist": 0.001218085131085882, - "initial_qty_pct": 0.01415394363069659, - "markup_range": 0.0021746648607091, - "min_markup": 0.0033774997082325585, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04824834814203018, - "rentry_pprice_dist_wallet_exposure_weighting": 2.204716000948487, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4416091341221842, - "ema_span_0": 827.4706169927598, - "ema_span_1": 770.6871650830933, - "enabled": true, - "initial_eprice_ema_dist": -0.007114300356406167, - "initial_qty_pct": 0.009651864885132741, - "markup_range": 0.000495771567248677, - "min_markup": 0.0038232288179883478, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04352105313736622, - "rentry_pprice_dist_wallet_exposure_weighting": 9.243889617944236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/THETAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/THETAUSDT.json deleted file mode 100644 index 9df668344..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1343720276998734, - "ema_span_0": 1104.4173663030556, - "ema_span_1": 1073.0110657345351, - "enabled": true, - "initial_eprice_ema_dist": -0.007979467962263412, - "initial_qty_pct": 0.012814138826955496, - "markup_range": 0.0039876600910200575, - "min_markup": 0.004313593884777903, - "n_close_orders": 5, - "rentry_pprice_dist": 0.033295986545100735, - "rentry_pprice_dist_wallet_exposure_weighting": 4.157710045355585, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4349078091765308, - "ema_span_0": 509.31743476678673, - "ema_span_1": 1144.5630320954324, - "enabled": true, - "initial_eprice_ema_dist": -0.0014527910592694283, - "initial_qty_pct": 0.01759587907076947, - "markup_range": 0.0022565799978959988, - "min_markup": 0.006253966055522724, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027457325020295305, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1844709926438637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/TLMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/TLMUSDT.json deleted file mode 100644 index 9ff9a1274..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/TOMOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/TOMOUSDT.json deleted file mode 100644 index b343a6700..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.78902668154397, - "ema_span_0": 400, - "ema_span_1": 401.6104733714814, - "enabled": true, - "initial_eprice_ema_dist": -0.008822896481994979, - "initial_qty_pct": 0.009235418438330686, - "markup_range": 0.00798394833236395, - "min_markup": 0.005338159157427459, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04170802545498165, - "rentry_pprice_dist_wallet_exposure_weighting": 6.088379246402266, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7566798515938866, - "ema_span_0": 1265.9970830201867, - "ema_span_1": 1057.6384728837036, - "enabled": true, - "initial_eprice_ema_dist": -0.008698781851117884, - "initial_qty_pct": 0.01825476844420395, - "markup_range": 0.011967541668927214, - "min_markup": 0.004191963718008434, - "n_close_orders": 10, - "rentry_pprice_dist": 0.054883300472977375, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802304056030765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/TRBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/TRBUSDT.json deleted file mode 100644 index 1c4a542bb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4017483967587676, - "ema_span_0": 516.9004643126635, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029863170708370945, - "initial_qty_pct": 0.01194917259495779, - "markup_range": 0.001503648936299865, - "min_markup": 0.006573839173355267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04902115272507997, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6904565697890794, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.880009341672455, - "ema_span_0": 701.9369706349446, - "ema_span_1": 1177.24817569763, - "enabled": true, - "initial_eprice_ema_dist": 0.0014561238038451332, - "initial_qty_pct": 0.010554747239126125, - "markup_range": 0.0035760584844470125, - "min_markup": 0.0037629567769551083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04368027463100656, - "rentry_pprice_dist_wallet_exposure_weighting": 9.800471931452684, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/TRUUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/TRUUSDT.json deleted file mode 100644 index 01feb8740..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1476656502939706, - "ema_span_0": 933.5206971239695, - "ema_span_1": 1095.9741385919708, - "enabled": true, - "initial_eprice_ema_dist": 0.0027413779901458053, - "initial_qty_pct": 0.006831053597006566, - "markup_range": 0.0032137093332441275, - "min_markup": 0.004205101007790303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03810405184615373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.284107925654067, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.541548981431565, - "ema_span_0": 1374.6469710305294, - "ema_span_1": 1272.3315621931883, - "enabled": true, - "initial_eprice_ema_dist": -0.008541113529147172, - "initial_qty_pct": 0.011401068455024085, - "markup_range": 0.003937174503725552, - "min_markup": 0.004968342991597388, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04573547952901243, - "rentry_pprice_dist_wallet_exposure_weighting": 9.742469512479017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/TRXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/TRXUSDT.json deleted file mode 100644 index 548679d15..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2011168852475647, - "ema_span_0": 650.4047923574631, - "ema_span_1": 470.145123795836, - "enabled": true, - "initial_eprice_ema_dist": 0.0015403617974944315, - "initial_qty_pct": 0.011495807038087025, - "markup_range": 0.0004990903172308976, - "min_markup": 0.001623791896855179, - "n_close_orders": 14, - "rentry_pprice_dist": 0.024153854903558102, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3673601950375286, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7310193868426007, - "ema_span_0": 1392.0816408501973, - "ema_span_1": 1369.3006021992335, - "enabled": true, - "initial_eprice_ema_dist": 0.002619723963840364, - "initial_qty_pct": 0.012761299160746052, - "markup_range": 3.783593956941449e-06, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028071656842355526, - "rentry_pprice_dist_wallet_exposure_weighting": 1.507569298518642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/TUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/TUSDT.json deleted file mode 100644 index 14ce6a81b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/UMAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/UMAUSDT.json deleted file mode 100644 index c7f7ef37c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/UNFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/UNFIUSDT.json deleted file mode 100644 index 0edf3999e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3100807399509733, - "ema_span_0": 513.5490097314743, - "ema_span_1": 733.9381006599374, - "enabled": true, - "initial_eprice_ema_dist": -0.00688693139135385, - "initial_qty_pct": 0.008303784357975463, - "markup_range": 0.011374975925963213, - "min_markup": 0.008314838627241316, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05222180157189911, - "rentry_pprice_dist_wallet_exposure_weighting": 0.46350203321275335, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9920603152790013, - "ema_span_0": 624.3931604244164, - "ema_span_1": 689.7922144458057, - "enabled": true, - "initial_eprice_ema_dist": -0.009672742672452812, - "initial_qty_pct": 0.005789752616114187, - "markup_range": 0.0014188872312999124, - "min_markup": 0.005218401406013735, - "n_close_orders": 14, - "rentry_pprice_dist": 0.056157995710625894, - "rentry_pprice_dist_wallet_exposure_weighting": 8.52765874089328, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/UNIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/UNIUSDT.json deleted file mode 100644 index 2a4fc11a0..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15389729494934665, - "ema_span_0": 933.9740837276265, - "ema_span_1": 592.4216963707654, - "enabled": true, - "initial_eprice_ema_dist": 0.002999940662443664, - "initial_qty_pct": 0.019595848258228073, - "markup_range": 0.0017241116780508956, - "min_markup": 0.003272939840165835, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03580504256624019, - "rentry_pprice_dist_wallet_exposure_weighting": 0.004600199946388914, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9461984127653197, - "ema_span_0": 876.1010914259034, - "ema_span_1": 1411.1899224254166, - "enabled": true, - "initial_eprice_ema_dist": 0.00206223743229542, - "initial_qty_pct": 0.015066384831184559, - "markup_range": 0.0015641017368793744, - "min_markup": 0.005669014125737904, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030402515021544733, - "rentry_pprice_dist_wallet_exposure_weighting": 0.037463412375512206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/USDCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/USDCUSDT.json deleted file mode 100644 index ac4a90a3c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.508943516866059, - "ema_span_0": 1266.4510224050705, - "ema_span_1": 1003.4753794357284, - "enabled": true, - "initial_eprice_ema_dist": -0.0020142454462381935, - "initial_qty_pct": 0.00870864458220254, - "markup_range": 0.003695702157477494, - "min_markup": 0.007223163185213094, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04575521532989267, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5576921537854274, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/VETUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/VETUSDT.json deleted file mode 100644 index b1f5c9c57..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4094488998407715, - "ema_span_0": 530.7428384503781, - "ema_span_1": 550.1784301353707, - "enabled": true, - "initial_eprice_ema_dist": -0.008676240328527514, - "initial_qty_pct": 0.006707452888356948, - "markup_range": 0.0010804828151730124, - "min_markup": 0.0025685134759434857, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014077064162697378, - "rentry_pprice_dist_wallet_exposure_weighting": 6.201142864457871, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8516888661345936, - "ema_span_0": 401.12836005586195, - "ema_span_1": 1428.0395786056317, - "enabled": true, - "initial_eprice_ema_dist": 0.0029167220269721824, - "initial_qty_pct": 0.01782174329230994, - "markup_range": 0.003055926162536204, - "min_markup": 0.0025475301688727197, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026603491012028718, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6083947531291125, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/WAVESUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/WAVESUSDT.json deleted file mode 100644 index 4a9fbe25a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.751402066478981, - "ema_span_0": 815.6758472397362, - "ema_span_1": 893.4578952035137, - "enabled": true, - "initial_eprice_ema_dist": -0.0012125170160610596, - "initial_qty_pct": 0.008391926393526834, - "markup_range": 1.5033008696905663e-05, - "min_markup": 0.004859883745516535, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02584774452073919, - "rentry_pprice_dist_wallet_exposure_weighting": 4.251130139100051, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/WLDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/WLDUSDT.json deleted file mode 100644 index 1688bf4d6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.549576514954369, - "ema_span_0": 700.5555759399181, - "ema_span_1": 700.0659881649507, - "enabled": true, - "initial_eprice_ema_dist": -0.009947416156307202, - "initial_qty_pct": 0.013255259805000906, - "markup_range": 0.006469182454139899, - "min_markup": 0.005989846357583506, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04327653390255187, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6907843363591483, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.541548981431565, - "ema_span_0": 1374.6469710305294, - "ema_span_1": 1272.3315621931883, - "enabled": true, - "initial_eprice_ema_dist": -0.008541113529147172, - "initial_qty_pct": 0.011401068455024085, - "markup_range": 0.003937174503725552, - "min_markup": 0.004968342991597388, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04573547952901243, - "rentry_pprice_dist_wallet_exposure_weighting": 9.742469512479017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/WOOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/WOOUSDT.json deleted file mode 100644 index 6e65a18ff..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0104426941410156, - "ema_span_0": 417.6321452285503, - "ema_span_1": 541.4180739658083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029984219177280787, - "initial_qty_pct": 0.013363031751006421, - "markup_range": 7.010573397721282e-05, - "min_markup": 0.0028074393585992385, - "n_close_orders": 6, - "rentry_pprice_dist": 0.023684594715020553, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9646097045738005, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XEMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XEMUSDT.json deleted file mode 100644 index de3c8e152..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1076557094684094, - "ema_span_0": 1292.3950982720557, - "ema_span_1": 1303.7317851295784, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010106393546435541, - "markup_range": 0.0013758356909457474, - "min_markup": 0.003938501371448148, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029858901316643576, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9607394449103155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XLMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XLMUSDT.json deleted file mode 100644 index 63a901aea..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2744467310865617, - "ema_span_0": 405.10318436485136, - "ema_span_1": 519.3352452918157, - "enabled": true, - "initial_eprice_ema_dist": 0.002767839774503037, - "initial_qty_pct": 0.01161713024087238, - "markup_range": 0.002302629723792086, - "min_markup": 0.0026762194350294917, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02400454707662801, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5909659355634345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9440504563496455, - "ema_span_0": 670.9984492428504, - "ema_span_1": 1382.5326523555161, - "enabled": true, - "initial_eprice_ema_dist": 0.0029664815346501497, - "initial_qty_pct": 0.007147325770208928, - "markup_range": 0.00011612873974285131, - "min_markup": 0.0028322952399753762, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04953091217010036, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1494709499633642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XMRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XMRUSDT.json deleted file mode 100644 index 182d86c89..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.16766415745902696, - "ema_span_0": 744.1620140794424, - "ema_span_1": 854.1789986068621, - "enabled": true, - "initial_eprice_ema_dist": -0.007008707404626438, - "initial_qty_pct": 0.00787542703344586, - "markup_range": 0.0010617059347405387, - "min_markup": 0.004025487585506566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.01709526488190027, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6099942021467453, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XRPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XRPUSDT.json deleted file mode 100644 index 651aeffd4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033314066053704, - "ema_span_0": 570.4891353812185, - "ema_span_1": 817.6579770619803, - "enabled": true, - "initial_eprice_ema_dist": -0.008620202074115159, - "initial_qty_pct": 0.007375630906712132, - "markup_range": 0.005031576551531487, - "min_markup": 0.005461944181247269, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029750435997755616, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9197614878360865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9829474924416866, - "ema_span_0": 1340.4765372226711, - "ema_span_1": 1339.2920029936695, - "enabled": true, - "initial_eprice_ema_dist": 0.001543135817787779, - "initial_qty_pct": 0.012160119939676509, - "markup_range": 0.00036926990971757707, - "min_markup": 0.007331963452599296, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04997762634001514, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XTZUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XTZUSDT.json deleted file mode 100644 index 6f8d12029..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.077244693932134, - "ema_span_0": 1058.576019749733, - "ema_span_1": 1258.9209202591228, - "enabled": true, - "initial_eprice_ema_dist": 0.0025202061082440688, - "initial_qty_pct": 0.013397085981305139, - "markup_range": 0.002883598133611114, - "min_markup": 0.0035843177125622757, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03424961964735372, - "rentry_pprice_dist_wallet_exposure_weighting": 1.074608336185159, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XVGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XVGUSDT.json deleted file mode 100644 index 9140b4abe..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/XVSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/XVSUSDT.json deleted file mode 100644 index 9a7e81d03..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1163429764822047, - "ema_span_0": 778.3852876266045, - "ema_span_1": 500.489378562041, - "enabled": true, - "initial_eprice_ema_dist": 9.633186356697778e-05, - "initial_qty_pct": 0.011345875019089045, - "markup_range": 0.00934743383066865, - "min_markup": 0.004405957869048295, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024405305943534922, - "rentry_pprice_dist_wallet_exposure_weighting": 4.326177773898883, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10010264283071404, - "ema_span_0": 1074.7107635989628, - "ema_span_1": 824.4020377981421, - "enabled": true, - "initial_eprice_ema_dist": 0.002997278810551917, - "initial_qty_pct": 0.019997349195799628, - "markup_range": 0.004116237409615031, - "min_markup": 0.006676342857971211, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029872158206496465, - "rentry_pprice_dist_wallet_exposure_weighting": 8.605189052077773, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/YFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/YFIUSDT.json deleted file mode 100644 index cd56d6ee4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1839515768311335, - "ema_span_0": 516.8069766502348, - "ema_span_1": 435.93864016551765, - "enabled": true, - "initial_eprice_ema_dist": -0.0038979154003671666, - "initial_qty_pct": 0.011775118312706414, - "markup_range": 0.0005574680077363058, - "min_markup": 0.002774787491231702, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03115923767089177, - "rentry_pprice_dist_wallet_exposure_weighting": 0.28776824557761416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2917787033497605, - "ema_span_0": 1344.9537971661955, - "ema_span_1": 436.4248240758233, - "enabled": true, - "initial_eprice_ema_dist": -0.004822333867779742, - "initial_qty_pct": 0.009453087771626114, - "markup_range": 0.001675059263184776, - "min_markup": 0.003995369493070447, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03099364507912738, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5924991535166688, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/YGGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/YGGUSDT.json deleted file mode 100644 index f6a902ff2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZECUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ZECUSDT.json deleted file mode 100644 index ecf659232..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0988492763500168, - "ema_span_0": 840.4833924055439, - "ema_span_1": 1195.6344453376678, - "enabled": true, - "initial_eprice_ema_dist": -0.002643454613555825, - "initial_qty_pct": 0.010139548763063552, - "markup_range": 0.0019175334866138156, - "min_markup": 0.00634446099472259, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03574456209819619, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6437156327688496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15046741285088064, - "ema_span_0": 736.7203910497747, - "ema_span_1": 596.951172850221, - "enabled": true, - "initial_eprice_ema_dist": -0.009364199048624611, - "initial_qty_pct": 0.011606679451066481, - "markup_range": 0.003668172592159496, - "min_markup": 0.0024972871558696804, - "n_close_orders": 15, - "rentry_pprice_dist": 0.015417226843163254, - "rentry_pprice_dist_wallet_exposure_weighting": 9.009522109968897, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZENUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ZENUSDT.json deleted file mode 100644 index 95015556e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1205260260426775, - "ema_span_0": 1212.0546329433664, - "ema_span_1": 1228.777699166912, - "enabled": true, - "initial_eprice_ema_dist": -0.002142947667564575, - "initial_qty_pct": 0.009765274489990797, - "markup_range": 0.005762749404703746, - "min_markup": 0.005770414975020122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03505831567224242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.940481762043566, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35657925534529245, - "ema_span_0": 1303.5050393380775, - "ema_span_1": 1274.6197375472702, - "enabled": true, - "initial_eprice_ema_dist": 0.0016364286247297403, - "initial_qty_pct": 0.019974535236854808, - "markup_range": 0.010730912424305851, - "min_markup": 0.005552708787626075, - "n_close_orders": 2, - "rentry_pprice_dist": 0.032184520481613264, - "rentry_pprice_dist_wallet_exposure_weighting": 7.036235912619348, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZILUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ZILUSDT.json deleted file mode 100644 index 7529a4808..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3389007463645637, - "ema_span_0": 1341.506280103092, - "ema_span_1": 1335.774321360955, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.012307899823146454, - "markup_range": 0.0021274643394395315, - "min_markup": 0.002253642765114612, - "n_close_orders": 5, - "rentry_pprice_dist": 0.028205288209876715, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2168814665980414, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZRXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_no_AU/ZRXUSDT.json deleted file mode 100644 index 10a705e33..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9584361374175134, - "ema_span_0": 1404.0793251370017, - "ema_span_1": 987.7942033799167, - "enabled": true, - "initial_eprice_ema_dist": 0.002947831949022201, - "initial_qty_pct": 0.011602450973669727, - "markup_range": 0.002485797100252398, - "min_markup": 0.00547195756116448, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029750873675416525, - "rentry_pprice_dist_wallet_exposure_weighting": 4.869063556870773, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21348478501226764, - "ema_span_0": 578.6053110911937, - "ema_span_1": 536.3687046086876, - "enabled": true, - "initial_eprice_ema_dist": 0.0019114755355438492, - "initial_qty_pct": 0.008086298731652026, - "markup_range": 0.005795173062738924, - "min_markup": 0.0099925547949804, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02896875662863217, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8234525007833575, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_no_AU/metrics_no_AU.txt b/configs/live/multisymbol/archived/2023-12-19_no_AU/metrics_no_AU.txt deleted file mode 100644 index 8d9a0dea9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_no_AU/metrics_no_AU.txt +++ /dev/null @@ -1,462 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-12-14 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKUSDT | 0.003946 | 0.002671 | 0.02003 | 0.00155 | 0.01726 | 0.01226 | 59.67 | 0.05622 | 0.0 | 0.02089 | 0.1023 | 83.29 | 274099999.996 | -| 1000PEPEUSDT | 0.003709 | 0.001752 | 0.02479 | 0.002079 | 0.01231 | 0.01024 | 57.63 | 0.05148 | 0.0 | 0.01787 | 0.08499 | 220.29 | 274099999.996 | -| MAVUSDT | 0.002553 | 0.00193 | 0.06034 | 0.01243 | 0.01237 | 0.01005 | 86.92 | 0.05614 | 0.0 | 0.04661 | 0.08824 | 165.46 | 274099999.997 | -| SEIUSDT | 0.003404 | 0.001845 | 0.05275 | 0.02278 | 0.009924 | 0.009166 | 80.83 | 0.08458 | 0.0 | 0.07755 | 0.1242 | 116.88 | 274099999.997 | -| BLURUSDT | 0.002791 | 0.001662 | 0.05642 | 0.0146 | 0.008598 | 0.007836 | 107.6 | 0.05701 | 0.0 | 0.0541 | 0.09917 | 227.46 | 274099999.997 | -| WLDUSDT | 0.002557 | 0.002514 | 0.07463 | 0.03897 | 0.00948 | 0.008211 | 43.88 | 0.04648 | 0.0 | 0.0442 | 0.05902 | 140.46 | 274099999.997 | -| COMBOUSDT | 0.002718 | 0.0009308 | 0.05618 | 0.03242 | 0.01894 | 0.01383 | 108.1 | 0.08831 | 0.0 | 0.08042 | 0.1452 | 192.46 | 274099999.997 | -| BNTUSDT | 0.001644 | 0.001463 | 0.04495 | 0.004418 | 0.00824 | 0.006558 | 71.93 | 0.0315 | 0.0 | 0.01581 | 0.02899 | 123.46 | 274099999.998 | -| MINAUSDT | 0.001582 | 0.001218 | 0.01922 | 0.00413 | 0.006532 | 0.006551 | 52.27 | 0.0398 | 0.0 | 0.02961 | 0.1142 | 307.5 | 274099999.998 | -| ARKMUSDT | 0.002365 | 0.001969 | 0.05247 | 0.03265 | 0.01177 | 0.009967 | 60.47 | 0.06 | 0.0 | 0.05656 | 0.1176 | 136.88 | 274099999.998 | -| FRONTUSDT | 0.002303 | 0.001756 | 0.0457 | 0.03093 | 0.009809 | 0.01079 | 39.2 | 0.07975 | 0.0 | 0.07392 | 0.1032 | 80.38 | 274099999.998 | -| HFTUSDT | 0.001678 | 0.0009275 | 0.03867 | 0.01851 | 0.01486 | 0.01223 | 103.5 | 0.06291 | 0.0 | 0.05894 | 0.09858 | 249.46 | 274099999.998 | -| GLMRUSDT | 0.002426 | 0.001553 | 0.03226 | 0.02454 | 0.006912 | 0.005911 | 82.22 | 0.01901 | 0.0 | 0.002473 | 0.009453 | 76.92 | 274099999.998 | -| DODOXUSDT | 0.001893 | 0.001613 | 0.09543 | 0.04813 | 0.009328 | 0.008977 | 111.4 | 0.07505 | 0.0 | 0.06976 | 0.0925 | 125.46 | 274099999.998 | -| 1000LUNCUSDT | 0.002119 | 0.001813 | 0.03595 | 0.003726 | 0.005969 | 0.00681 | 56.73 | 0.04506 | 0.0 | 0.03455 | 0.107 | 458.42 | 274099999.998 | -| BICOUSDT | 0.001905 | 0.001732 | 0.01099 | 0.002402 | 0.004179 | 0.003348 | 41.58 | 0.01367 | 0.0 | 0.001559 | 0.005476 | 74.46 | 274099999.998 | -| OXTUSDT | 0.002038 | 0.00144 | 0.03225 | 0.02228 | 0.00766 | 0.006578 | 49.82 | 0.04252 | 0.0 | 0.04091 | 0.05651 | 122.46 | 274099999.998 | -| PENDLEUSDT | 0.001559 | 0.001137 | 0.05529 | 0.00149 | 0.01248 | 0.009844 | 93.37 | 0.04356 | 0.0 | 0.0183 | 0.04911 | 136.88 | 274099999.998 | -| KEYUSDT | 0.001619 | 0.001402 | 0.02722 | 0.01568 | 0.005359 | 0.006054 | 72.55 | 0.04329 | 0.0 | 0.04052 | 0.1302 | 201.46 | 274099999.998 | -| HIFIUSDT | 0.00185 | 0.002811 | 0.1101 | 0.04217 | 0.0117 | 0.01222 | 54.53 | 0.07642 | 0.0 | 0.07113 | 0.08543 | 86.38 | 274099999.998 | -| INJUSDT | 0.00154 | 0.001193 | 0.04716 | 0.01877 | 0.01349 | 0.01181 | 84.07 | 0.07108 | 0.0 | 0.06284 | 0.1238 | 481.88 | 274099999.998 | -| RNDRUSDT | 0.002093 | 0.002005 | 0.07148 | 0.008265 | 0.009221 | 0.009592 | 62.15 | 0.07578 | 0.0 | 0.06394 | 0.1174 | 311.88 | 274099999.998 | -| SUIUSDT | 0.001759 | 0.001447 | 0.04929 | 0.02047 | 0.01123 | 0.01078 | 78.72 | 0.08439 | 0.0 | 0.07632 | 0.1343 | 222.29 | 274099999.998 | -| YGGUSDT | 0.002413 | 0.002302 | 0.06863 | 0.01638 | 0.01048 | 0.00961 | 72.9 | 0.06377 | 0.0 | 0.05856 | 0.07289 | 129.83 | 274099999.998 | -| SOLUSDT | 0.001632 | 0.003047 | 0.05577 | 0.02828 | 0.01176 | 0.01292 | 109.3 | 0.09521 | 0.0 | 0.08634 | 0.1672 | 1183.67 | 274099999.998 | -| STXUSDT | 0.001531 | 0.001392 | 0.07358 | 0.01181 | 0.01089 | 0.01109 | 106.1 | 0.09582 | 0.0 | 0.08647 | 0.123 | 293.38 | 274099999.998 | -| LQTYUSDT | 0.001507 | 0.001215 | 0.03665 | 0.01401 | 0.01274 | 0.01141 | 76.4 | 0.07472 | 0.0 | 0.0683 | 0.137 | 276.46 | 274099999.998 | -| TRUUSDT | 0.001617 | 0.0008446 | 0.03901 | 0.02315 | 0.01577 | 0.01404 | 80.15 | 0.08157 | 0.0 | 0.07508 | 0.1202 | 280.46 | 274099999.998 | -| MDTUSDT | 0.002145 | 0.001073 | 0.02903 | 0.006709 | 0.007049 | 0.006467 | 48.98 | 0.03286 | 0.0 | 0.02103 | 0.0495 | 164.46 | 274099999.998 | -| CRVUSDT | 0.0006896 | 0.001558 | 0.04035 | 0.01579 | 0.01332 | 0.01386 | 97.4 | 0.08902 | 0.0 | 0.08019 | 0.2442 | 1196.67 | 274099999.999 | -| XEMUSDT | 0.0005933 | 0.001235 | 0.03245 | 0.01586 | 0.01111 | 0.01251 | 112.5 | 0.0779 | 0.0 | 0.07094 | 0.1644 | 1014.67 | 274099999.999 | -| AAVEUSDT | 0.001101 | 0.002574 | 0.05232 | 0.02837 | 0.0121 | 0.01182 | 118.4 | 0.06633 | 0.0 | 0.06066 | 0.2224 | 1150.67 | 274099999.999 | -| EGLDUSDT | 0.0006507 | 0.001351 | 0.03757 | 0.01222 | 0.009364 | 0.01419 | 88.4 | 0.09432 | 0.0 | 0.08372 | 0.2452 | 1183.67 | 274099999.999 | -| ALPHAUSDT | 0.0009975 | 0.00238 | 0.05119 | 0.02416 | 0.01316 | 0.01209 | 112.9 | 0.08861 | 0.0 | 0.08073 | 0.1665 | 1113.67 | 274099999.999 | -| KNCUSDT | 0.0005305 | 0.0006021 | 0.01549 | 0.005141 | 0.01618 | 0.01263 | 115.6 | 0.05129 | 0.0 | 0.02043 | 0.1087 | 1267.62 | 274099999.999 | -| LRCUSDT | 0.0008469 | 0.001801 | 0.06333 | 0.0209 | 0.01116 | 0.01021 | 113.9 | 0.0748 | 0.0 | 0.06831 | 0.2123 | 1148.67 | 274099999.999 | -| XVGUSDT | 0.001385 | 0.001581 | 0.08971 | 0.01899 | 0.009668 | 0.008955 | 52.03 | 0.06475 | 0.0 | 0.05309 | 0.08258 | 160.46 | 274099999.999 | -| OMGUSDT | 0.0009972 | 0.00176 | 0.06604 | 0.01369 | 0.01365 | 0.01324 | 105.5 | 0.07278 | 0.0 | 0.06451 | 0.1888 | 1257.58 | 274099999.999 | -| IDEXUSDT | 0.0009069 | 0.001051 | 0.07496 | 0.05022 | 0.0124 | 0.01144 | 110.4 | 0.08801 | 0.0 | 0.08093 | 0.1089 | 222.46 | 274099999.999 | -| ACHUSDT | 0.0008086 | 0.0008572 | 0.03129 | 0.01701 | 0.009411 | 0.009847 | 60.98 | 0.07564 | 0.0 | 0.06998 | 0.1244 | 292.38 | 274099999.999 | -| QNTUSDT | 0.0006463 | 0.0007829 | 0.06261 | 0.0 | 0.008495 | 0.008086 | 102.2 | 0.04703 | 0.0 | 0.0331 | 0.05161 | 417.88 | 274099999.999 | -| UMAUSDT | 0.001211 | 0.0008488 | 0.04648 | 0.005952 | 0.007226 | 0.006212 | 59.07 | 0.04553 | 0.0 | 0.03295 | 0.1113 | 215.46 | 274099999.999 | -| RSRUSDT | 0.0005589 | 0.001122 | 0.03031 | 0.003493 | 0.01545 | 0.01186 | 104.6 | 0.04795 | 0.0 | 0.02063 | 0.1574 | 1148.67 | 274099999.999 | -| TRBUSDT | 0.0009851 | 0.001267 | 0.03014 | 0.01361 | 0.01528 | 0.01436 | 115.5 | 0.07575 | 0.0 | 0.06285 | 0.1889 | 1194.67 | 274099999.999 | -| MANAUSDT | 0.000805 | 0.001299 | 0.02211 | 0.01206 | 0.009462 | 0.01039 | 84.53 | 0.06113 | 0.0 | 0.05392 | 0.2481 | 1001.67 | 274099999.999 | -| FTMUSDT | 0.0007294 | 0.001634 | 0.03826 | 0.01222 | 0.01249 | 0.01414 | 112.0 | 0.09359 | 0.0 | 0.08202 | 0.2328 | 1173.67 | 274099999.999 | -| HBARUSDT | 0.001045 | 0.001749 | 0.0704 | 0.01644 | 0.01014 | 0.01044 | 116.6 | 0.06496 | 0.0 | 0.05828 | 0.1603 | 999.67 | 274099999.999 | -| GALUSDT | 0.0007166 | 0.001226 | 0.04532 | 0.008157 | 0.01383 | 0.01018 | 98.22 | 0.06395 | 0.0 | 0.04877 | 0.09967 | 585.38 | 274099999.999 | -| BANDUSDT | 0.0007524 | 0.001458 | 0.0407 | 0.007529 | 0.01717 | 0.01245 | 110.3 | 0.05908 | 0.0 | 0.04432 | 0.1494 | 1230.67 | 274099999.999 | -| AGIXUSDT | 0.00116 | 0.001136 | 0.06572 | 0.01199 | 0.01262 | 0.0106 | 109.8 | 0.07456 | 0.0 | 0.06876 | 0.09282 | 298.38 | 274099999.999 | -| FXSUSDT | 0.000969 | 0.0003958 | 0.0111 | 0.0007029 | 0.01661 | 0.01231 | 75.92 | 0.05006 | 0.0 | 0.006689 | 0.06634 | 325.83 | 274099999.999 | -| ETCUSDT | 0.0006737 | 0.001389 | 0.01803 | 0.006309 | 0.005831 | 0.005336 | 70.58 | 0.02871 | 0.0 | 0.02242 | 0.1287 | 1425.62 | 274099999.999 | -| DEFIUSDT | 0.000516 | 0.001152 | 0.04581 | 0.01496 | 0.01131 | 0.01098 | 111.6 | 0.06578 | 0.0 | 0.05933 | 0.1848 | 1200.67 | 274099999.999 | -| ENJUSDT | 0.0006804 | 0.001174 | 0.04859 | 0.01219 | 0.01169 | 0.01522 | 109.7 | 0.09996 | 0.0 | 0.0717 | 0.2377 | 1168.67 | 274099999.999 | -| SNXUSDT | 0.001189 | 0.001676 | 0.0585 | 0.02213 | 0.01635 | 0.01655 | 110.2 | 0.08303 | 0.0 | 0.06358 | 0.2456 | 1214.67 | 274099999.999 | -| MTLUSDT | 0.0009149 | 0.001219 | 0.05074 | 0.01384 | 0.01673 | 0.01637 | 115.8 | 0.09673 | 0.0 | 0.08344 | 0.2359 | 985.67 | 274099999.999 | -| FETUSDT | 0.001332 | 0.001239 | 0.02347 | 0.005637 | 0.00746 | 0.006581 | 42.5 | 0.03429 | 0.0 | 0.02336 | 0.05757 | 328.88 | 274099999.999 | -| HOTUSDT | 0.001065 | 0.002189 | 0.0469 | 0.02244 | 0.01056 | 0.01199 | 111.5 | 0.07022 | 0.0 | 0.06544 | 0.1894 | 986.67 | 274099999.999 | -| 1000SHIBUSDT | 0.000849 | 0.001963 | 0.04076 | 0.004081 | 0.01022 | 0.007895 | 90.58 | 0.04735 | 0.0 | 0.03192 | 0.2126 | 945.25 | 274099999.999 | -| SPELLUSDT | 0.001002 | 0.0009409 | 0.0475 | 0.007762 | 0.008228 | 0.00689 | 91.33 | 0.04285 | 0.0 | 0.03787 | 0.09419 | 461.46 | 274099999.999 | -| OGNUSDT | 0.0007431 | 0.001711 | 0.04276 | 0.01036 | 0.0176 | 0.01725 | 109.6 | 0.09297 | 0.0 | 0.03763 | 0.1916 | 984.67 | 274099999.999 | -| WOOUSDT | 0.0005965 | 0.0007276 | 0.0371 | 0.006563 | 0.01787 | 0.01609 | 103.5 | 0.09584 | 0.0 | 0.06739 | 0.2478 | 613.83 | 274099999.999 | -| CYBERUSDT | 0.001457 | 0.001834 | 0.0198 | 0.003074 | 0.009942 | 0.008555 | 54.4 | 0.03814 | 0.0 | 0.008547 | 0.01976 | 112.46 | 274099999.999 | -| SUSHIUSDT | 0.0007441 | 0.001412 | 0.02725 | 0.004373 | 0.01615 | 0.0118 | 111.6 | 0.04843 | 0.0 | 0.02296 | 0.0903 | 1193.67 | 274099999.999 | -| CELOUSDT | 0.0005505 | 0.0008227 | 0.05045 | 0.008964 | 0.0123 | 0.01355 | 91.1 | 0.09001 | 0.0 | 0.06236 | 0.168 | 805.83 | 274099999.999 | -| NEARUSDT | 0.0006692 | 0.001133 | 0.02651 | 0.01511 | 0.009531 | 0.01429 | 81.55 | 0.08576 | 0.0 | 0.0755 | 0.2393 | 1152.62 | 274099999.999 | -| APEUSDT | 0.0007535 | 0.001097 | 0.031 | 0.009892 | 0.01156 | 0.01121 | 106.2 | 0.08494 | 0.0 | 0.07094 | 0.184 | 634.33 | 274099999.999 | -| EDUUSDT | 0.0008439 | 0.0008025 | 0.03126 | 0.008366 | 0.01201 | 0.009083 | 71.18 | 0.04152 | 0.0 | 0.02346 | 0.07399 | 225.46 | 274099999.999 | -| API3USDT | 0.0007588 | 0.0006188 | 0.01726 | 0.001685 | 0.01266 | 0.01095 | 96.05 | 0.04854 | 0.0 | 0.01065 | 0.03874 | 657.83 | 274099999.999 | -| GRTUSDT | 0.001085 | 0.001965 | 0.03302 | 0.02383 | 0.008602 | 0.01283 | 107.2 | 0.09222 | 0.0 | 0.08334 | 0.1895 | 1087.67 | 274099999.999 | -| AMBUSDT | 0.0008146 | 0.000764 | 0.05043 | 0.003393 | 0.01673 | 0.0139 | 50.23 | 0.07406 | 0.0 | 0.04513 | 0.1427 | 256.46 | 274099999.999 | -| BELUSDT | 0.0006671 | 0.001559 | 0.02697 | 0.008324 | 0.01562 | 0.01378 | 118.5 | 0.07748 | 0.0 | 0.06499 | 0.1743 | 1117.67 | 274099999.999 | -| CELRUSDT | 0.0008452 | 0.001845 | 0.0397 | 0.01559 | 0.01457 | 0.01333 | 111.1 | 0.06731 | 0.0 | 0.05938 | 0.1845 | 987.67 | 274099999.999 | -| APTUSDT | 0.0008989 | 0.0008779 | 0.03728 | 0.009468 | 0.01146 | 0.01117 | 98.08 | 0.07157 | 0.0 | 0.06001 | 0.1416 | 418.88 | 274099999.999 | -| LUNA2USDT | 0.0008415 | 0.0006676 | 0.0268 | 0.0004914 | 0.01365 | 0.01184 | 93.57 | 0.06642 | 0.0 | 0.03119 | 0.2359 | 457.83 | 274099999.999 | -| DENTUSDT | 0.0006359 | 0.001508 | 0.04346 | 0.008091 | 0.01009 | 0.009664 | 95.63 | 0.05624 | 0.0 | 0.04411 | 0.2145 | 992.79 | 274099999.999 | -| BALUSDT | 0.0005122 | 0.0003916 | 0.01561 | 0.001817 | 0.01645 | 0.01194 | 101.9 | 0.04708 | 0.0 | 0.01881 | 0.2029 | 1196.67 | 274099999.999 | -| YFIUSDT | 0.001429 | 0.0027 | 0.01722 | 0.009062 | 0.01004 | 0.01029 | 115.1 | 0.07329 | 0.0 | 0.06168 | 0.1894 | 1198.67 | 274099999.999 | -| STGUSDT | 0.0005688 | 0.000727 | 0.02364 | 0.003036 | 0.01016 | 0.009023 | 117.9 | 0.04857 | 0.0 | 0.02559 | 0.08329 | 473.46 | 274099999.999 | -| OCEANUSDT | 0.0009879 | 0.001726 | 0.0501 | 0.01657 | 0.0135 | 0.01319 | 102.4 | 0.07022 | 0.0 | 0.06009 | 0.1765 | 1133.67 | 274099999.999 | -| BLZUSDT | 0.000806 | 0.0009402 | 0.03878 | 0.008095 | 0.0188 | 0.01708 | 111.0 | 0.09964 | 0.0 | 0.07728 | 0.2357 | 1180.67 | 274099999.999 | -| SANDUSDT | 0.0007935 | 0.001881 | 0.03701 | 0.01294 | 0.008621 | 0.0114 | 86.05 | 0.05903 | 0.0 | 0.05168 | 0.1756 | 1050.67 | 274099999.999 | -| AVAXUSDT | 0.0006952 | 0.001541 | 0.05349 | 0.0167 | 0.01244 | 0.01512 | 117.3 | 0.09843 | 0.0 | 0.08399 | 0.2385 | 1174.67 | 274099999.999 | -| SFPUSDT | 0.0008114 | 0.001543 | 0.03691 | 0.0154 | 0.01311 | 0.01381 | 98.75 | 0.08532 | 0.0 | 0.07306 | 0.2032 | 1020.67 | 274099999.999 | -| ONEUSDT | 0.0006123 | 0.001569 | 0.06043 | 0.0099 | 0.0145 | 0.01084 | 98.38 | 0.06401 | 0.0 | 0.04775 | 0.1578 | 998.67 | 274099999.999 | -| ENSUSDT | 0.000559 | 0.000969 | 0.0566 | 0.01225 | 0.0114 | 0.01248 | 112.7 | 0.09168 | 0.0 | 0.07747 | 0.1519 | 741.83 | 274099999.999 | -| LINAUSDT | 0.0008938 | 0.001384 | 0.0376 | 0.01554 | 0.01791 | 0.01356 | 88.0 | 0.07968 | 0.0 | 0.06899 | 0.2337 | 997.67 | 274099999.999 | -| PHBUSDT | 0.0009438 | 0.0008043 | 0.05009 | 0.0116 | 0.01763 | 0.01224 | 99.48 | 0.06059 | 0.0 | 0.05373 | 0.1092 | 298.38 | 274099999.999 | -| 1000FLOKIUSDT | 0.001416 | 0.001025 | 0.05828 | 0.01567 | 0.01137 | 0.009948 | 74.93 | 0.07753 | 0.0 | 0.07197 | 0.1254 | 219.29 | 274099999.999 | -| DOGEUSDT | 0.001039 | 0.002556 | 0.07397 | 0.009155 | 0.008226 | 0.009915 | 119.5 | 0.0714 | 0.0 | 0.06066 | 0.2264 | 1249.58 | 274099999.999 | -| HIGHUSDT | 0.0005793 | 0.0008797 | 0.01975 | 0.006428 | 0.01128 | 0.009684 | 65.53 | 0.04764 | 0.0 | 0.03413 | 0.09547 | 307.88 | 274099999.999 | -| IMXUSDT | 0.0008097 | 0.001016 | 0.03774 | 0.009262 | 0.01302 | 0.01109 | 105.1 | 0.05518 | 0.0 | 0.04273 | 0.1091 | 668.83 | 274099999.999 | -| 1INCHUSDT | 0.0009275 | 0.0008867 | 0.02211 | 0.005828 | 0.01372 | 0.01274 | 115.7 | 0.0497 | 0.0 | 0.02143 | 0.2299 | 1081.54 | 274099999.999 | -| XLMUSDT | 0.000683 | 0.001817 | 0.02123 | 0.005585 | 0.007895 | 0.00884 | 109.2 | 0.0362 | 0.0 | 0.0217 | 0.1258 | 1422.62 | 274099999.999 | -| JOEUSDT | 0.0005376 | 0.0005356 | 0.03986 | 0.009175 | 0.018 | 0.01281 | 109.2 | 0.06275 | 0.0 | 0.05833 | 0.08738 | 257.46 | 274099999.999 | -| LITUSDT | 0.0007505 | 0.0012 | 0.02944 | 0.01045 | 0.01518 | 0.01311 | 108.3 | 0.06275 | 0.0 | 0.04428 | 0.2024 | 1026.67 | 274099999.999 | -| DARUSDT | 0.0007022 | 0.001043 | 0.04721 | 0.01549 | 0.01201 | 0.01073 | 103.5 | 0.06883 | 0.0 | 0.06421 | 0.1201 | 591.83 | 274099999.999 | -| MATICUSDT | 0.001332 | 0.003495 | 0.05167 | 0.02133 | 0.009669 | 0.01021 | 91.1 | 0.06975 | 0.0 | 0.06468 | 0.1346 | 1145.67 | 274099999.999 | -| LDOUSDT | 0.0007971 | 0.0009009 | 0.04094 | 0.0002525 | 0.01518 | 0.009781 | 111.4 | 0.04616 | 0.0 | 0.01937 | 0.05018 | 445.46 | 274099999.999 | -| BLUEBIRDUSDT | 0.0006856 | 0.0003737 | 0.0157 | 0.003265 | 0.00524 | 0.004308 | 70.18 | 0.01987 | 0.0 | 0.008854 | 0.03561 | 404.46 | 274099999.999 | -| RLCUSDT | 0.001098 | 0.002749 | 0.05622 | 0.02762 | 0.01427 | 0.01446 | 117.1 | 0.09429 | 0.0 | 0.08497 | 0.2201 | 1228.67 | 274099999.999 | -| XVSUSDT | 0.001222 | 0.0007454 | 0.03872 | 0.01457 | 0.01424 | 0.01034 | 87.4 | 0.06948 | 0.0 | 0.06453 | 0.1022 | 243.88 | 274099999.999 | -| SXPUSDT | 0.0006369 | 0.002228 | 0.02419 | 0.009336 | 0.01162 | 0.01077 | 112.7 | 0.04983 | 0.0 | 0.03796 | 0.1953 | 1239.58 | 274099999.999 | -| IDUSDT | 0.001083 | 0.0006453 | 0.01813 | 0.0 | 0.0156 | 0.01227 | 88.75 | 0.05074 | 0.0 | 0.009968 | 0.04447 | 263.38 | 274099999.999 | -| AGLDUSDT | 0.0008268 | 0.001171 | 0.01168 | 0.000827 | 0.01131 | 0.00896 | 58.75 | 0.03721 | 0.0 | 0.005532 | 0.01657 | 135.88 | 274099999.999 | -| ANKRUSDT | 0.0008744 | 0.001442 | 0.02124 | 0.007966 | 0.00793 | 0.008283 | 93.6 | 0.0392 | 0.0 | 0.02756 | 0.235 | 1049.67 | 274099999.999 | -| CHZUSDT | 0.0005124 | 0.001428 | 0.01542 | 0.0001067 | 0.01045 | 0.008895 | 105.1 | 0.04153 | 0.0 | 0.01217 | 0.08653 | 1054.67 | 274099999.999 | -| GALAUSDT | 0.0008073 | 0.001117 | 0.02909 | 0.01121 | 0.01088 | 0.01114 | 81.37 | 0.06693 | 0.0 | 0.06129 | 0.1446 | 814.83 | 274099999.999 | -| MAGICUSDT | 0.001004 | 0.001011 | 0.02264 | 1.299e-05 | 0.0114 | 0.008744 | 77.87 | 0.035 | 0.0 | 0.009769 | 0.0217 | 320.83 | 274099999.999 | -| RUNEUSDT | 0.0007825 | 0.002087 | 0.04168 | 0.01343 | 0.01385 | 0.01441 | 119.0 | 0.06537 | 0.0 | 0.05468 | 0.1682 | 1193.67 | 274099999.999 | -| DOTUSDT | 0.0005456 | 0.001106 | 0.02718 | 0.007699 | 0.008508 | 0.0095 | 77.75 | 0.045 | 0.0 | 0.03552 | 0.2472 | 1206.67 | 274099999.999 | -| ALGOUSDT | 0.000944 | 0.001844 | 0.04023 | 0.01311 | 0.01063 | 0.01058 | 98.92 | 0.05569 | 0.0 | 0.04485 | 0.2327 | 1273.58 | 274099999.999 | -| COTIUSDT | 0.0009426 | 0.002001 | 0.06907 | 0.02027 | 0.01237 | 0.0123 | 91.7 | 0.09394 | 0.0 | 0.08022 | 0.2437 | 1006.67 | 274099999.999 | -| RADUSDT | 0.001296 | 0.0009648 | 0.03605 | 0.01049 | 0.009551 | 0.009463 | 85.87 | 0.05355 | 0.0 | 0.04756 | 0.09636 | 215.46 | 274099999.999 | -| BCHUSDT | 0.0005573 | 0.001484 | 0.0182 | 0.0002949 | 0.01113 | 0.008773 | 94.92 | 0.03661 | 0.0 | 0.006332 | 0.06036 | 1440.96 | 274099999.999 | -| RVNUSDT | 0.000598 | 0.001505 | 0.03069 | 0.004665 | 0.01172 | 0.009522 | 109.2 | 0.04173 | 0.0 | 0.02393 | 0.09941 | 1021.67 | 274099999.999 | -| ICXUSDT | 0.0006074 | 0.0008921 | 0.03516 | 0.01082 | 0.01262 | 0.01102 | 109.6 | 0.05914 | 0.0 | 0.04693 | 0.1816 | 1182.67 | 274099999.999 | -| ANTUSDT | 0.0005091 | 0.0009086 | 0.03783 | 0.003532 | 0.01031 | 0.01059 | 112.1 | 0.0643 | 0.0 | 0.03055 | 0.08768 | 714.79 | 274099999.999 | -| CVXUSDT | 0.0007397 | 0.0006624 | 0.1045 | 0.007162 | 0.01394 | 0.01265 | 112.2 | 0.06971 | 0.0 | 0.05171 | 0.1001 | 445.46 | 274099999.999 | -| CTKUSDT | 0.0007758 | 0.002268 | 0.06658 | 0.007603 | 0.01175 | 0.0121 | 111.5 | 0.07899 | 0.0 | 0.06633 | 0.201 | 1116.67 | 274099999.999 | -| COMPUSDT | 0.0008683 | 0.001275 | 0.04533 | 0.006926 | 0.01234 | 0.01165 | 81.88 | 0.0625 | 0.0 | 0.0488 | 0.2395 | 1259.58 | 274099999.999 | -| GMXUSDT | 0.000737 | 0.0007248 | 0.07896 | 0.01887 | 0.01224 | 0.009654 | 79.83 | 0.05521 | 0.0 | 0.04587 | 0.05794 | 297.38 | 274099999.999 | -| MKRUSDT | 0.001135 | 0.001976 | 0.06902 | 0.01216 | 0.01048 | 0.01346 | 95.08 | 0.08519 | 0.0 | 0.07483 | 0.2124 | 1215.67 | 274099999.999 | -| OPUSDT | 0.0008466 | 0.001313 | 0.04162 | 0.006416 | 0.01139 | 0.009954 | 76.38 | 0.05669 | 0.0 | 0.04209 | 0.08806 | 558.38 | 274099999.999 | -| CHRUSDT | 0.000583 | 0.00131 | 0.03222 | 0.005088 | 0.01585 | 0.01149 | 115.3 | 0.052 | 0.0 | 0.02478 | 0.1038 | 1004.67 | 274099999.999 | -| THETAUSDT | 0.0008232 | 0.002206 | 0.0567 | 0.01198 | 0.01122 | 0.01114 | 105.8 | 0.08185 | 0.0 | 0.07012 | 0.2251 | 1293.62 | 274099999.999 | -| ARBUSDT | 0.001495 | 0.001093 | 0.06715 | 0.02108 | 0.008979 | 0.008453 | 100.4 | 0.06339 | 0.0 | 0.05863 | 0.1006 | 263.33 | 274099999.999 | -| SKLUSDT | 0.000919 | 0.001834 | 0.06044 | 0.01811 | 0.01564 | 0.01503 | 109.6 | 0.08373 | 0.0 | 0.06988 | 0.2397 | 1098.67 | 274099999.999 | -| SSVUSDT | 0.0008118 | 0.0005592 | 0.03549 | 0.0 | 0.01912 | 0.01479 | 119.4 | 0.08509 | 0.0 | 0.05632 | 0.09051 | 290.46 | 274099999.999 | -| ASTRUSDT | 0.001352 | 0.0008442 | 0.0291 | 0.003557 | 0.01269 | 0.008479 | 67.63 | 0.03594 | 0.0 | 0.01032 | 0.0637 | 300.88 | 274099999.999 | -| FILUSDT | 0.0007536 | 0.001406 | 0.02884 | 0.00454 | 0.00638 | 0.008309 | 100.6 | 0.04709 | 0.0 | 0.03128 | 0.144 | 1151.71 | 274099999.999 | -| HOOKUSDT | 0.001463 | 0.001397 | 0.06373 | 0.01597 | 0.01158 | 0.009555 | 80.13 | 0.06946 | 0.0 | 0.06372 | 0.1249 | 322.83 | 274099999.999 | -| RDNTUSDT | 0.001492 | 0.001217 | 0.06901 | 0.01209 | 0.009331 | 0.00939 | 50.9 | 0.06427 | 0.0 | 0.05969 | 0.112 | 250.46 | 274099999.999 | -| NMRUSDT | 0.00119 | 0.001188 | 0.04324 | 0.006836 | 0.007838 | 0.008264 | 33.37 | 0.0482 | 0.0 | 0.03825 | 0.07316 | 172.46 | 274099999.999 | -| ATOMUSDT | 0.000549 | 0.001389 | 0.0341 | 0.005486 | 0.01036 | 0.009418 | 111.6 | 0.05022 | 0.0 | 0.02873 | 0.1085 | 1403.46 | 274099999.999 | -| NKNUSDT | 0.001124 | 0.002207 | 0.07282 | 0.02315 | 0.01327 | 0.01306 | 113.5 | 0.07333 | 0.0 | 0.06663 | 0.227 | 976.67 | 274099999.999 | -| ALICEUSDT | 0.0009417 | 0.002246 | 0.06072 | 0.02496 | 0.01247 | 0.01364 | 110.3 | 0.08436 | 0.0 | 0.07514 | 0.2247 | 1000.83 | 274099999.999 | -| UNFIUSDT | 0.0007396 | 0.001192 | 0.03168 | 0.008148 | 0.01699 | 0.01699 | 112.0 | 0.09669 | 0.0 | 0.06866 | 0.2034 | 1026.67 | 274099999.999 | -| CKBUSDT | 0.00113 | 0.0009982 | 0.06864 | 0.007457 | 0.009983 | 0.009233 | 107.0 | 0.08764 | 0.0 | 0.07563 | 0.1291 | 286.46 | 274099999.999 | -| STMXUSDT | 0.0007329 | 0.001115 | 0.05526 | 0.01284 | 0.01399 | 0.01518 | 113.5 | 0.09886 | 0.0 | 0.08503 | 0.2127 | 994.67 | 274099999.999 | -| ZRXUSDT | 0.0007386 | 0.001075 | 0.02872 | 0.01132 | 0.01074 | 0.01171 | 78.68 | 0.06079 | 0.0 | 0.04331 | 0.2392 | 1266.58 | 274099999.999 | -| ICPUSDT | 0.0009263 | 0.001025 | 0.04123 | 0.0171 | 0.009753 | 0.008943 | 117.7 | 0.05158 | 0.0 | 0.04873 | 0.08774 | 440.88 | 274099999.999 | -| ZILUSDT | 0.0006724 | 0.001514 | 0.03856 | 0.01697 | 0.009834 | 0.0139 | 109.5 | 0.09805 | 0.0 | 0.0873 | 0.2094 | 1272.58 | 274099999.999 | -| REEFUSDT | 0.0006808 | 0.001188 | 0.06502 | 0.01479 | 0.01527 | 0.01609 | 119.2 | 0.09788 | 0.0 | 0.08201 | 0.2429 | 1022.67 | 274099999.999 | -| LINKUSDT | 0.001038 | 0.002173 | 0.06105 | 0.01407 | 0.009375 | 0.01069 | 108.0 | 0.06386 | 0.0 | 0.05358 | 0.2153 | 1424.62 | 274099999.999 | -| STORJUSDT | 0.0008857 | 0.001301 | 0.03081 | 0.01372 | 0.01338 | 0.01299 | 118.4 | 0.07168 | 0.0 | 0.06181 | 0.1858 | 1181.67 | 274099999.999 | -| KSMUSDT | 0.0007316 | 0.0009273 | 0.0226 | 0.01065 | 0.01258 | 0.01173 | 116.6 | 0.04863 | 0.0 | 0.03891 | 0.2353 | 1153.67 | 274099999.999 | -| XRPUSDT | 0.0009364 | 0.001825 | 0.03152 | 0.006615 | 0.008109 | 0.007536 | 112.1 | 0.03485 | 0.0 | 0.02241 | 0.0911 | 1436.62 | 274099999.999 | -| ZECUSDT | 0.000554 | 0.0009143 | 0.02603 | 0.008066 | 0.01171 | 0.01074 | 115.6 | 0.05419 | 0.0 | 0.03964 | 0.2007 | 1406.62 | 274099999.999 | -| TLMUSDT | 0.0007218 | 0.000544 | 0.02858 | 0.00776 | 0.007836 | 0.007248 | 70.13 | 0.04211 | 0.0 | 0.02556 | 0.04415 | 256.46 | 274099999.999 | -| WAVESUSDT | 0.0008408 | 0.001675 | 0.04368 | 0.02385 | 0.01232 | 0.01426 | 102.1 | 0.09526 | 0.0 | 0.08561 | 0.2118 | 1217.67 | 274099999.999 | -| EOSUSDT | 0.0002846 | 0.0007644 | 0.01709 | 0.0001802 | 0.01087 | 0.009598 | 113.4 | 0.04583 | 0.0 | 0.01165 | 0.09589 | 1433.62 | 274100000.0 | -| DUSKUSDT | 0.0002453 | 0.0003359 | 0.01856 | 0.0 | 0.01646 | 0.01227 | 75.5 | 0.05432 | 0.0 | 0.0154 | 0.04804 | 703.83 | 274100000.0 | -| CTSIUSDT | 0.0003456 | 0.0004787 | 0.02026 | 0.0003218 | 0.01338 | 0.01086 | 80.02 | 0.0533 | 0.0 | 0.01887 | 0.1231 | 776.83 | 274100000.0 | -| ETHUSDT | 0.0004258 | 0.001424 | 0.02664 | 0.0157 | 0.005293 | 0.007796 | 117.0 | 0.05393 | 0.0 | 0.05089 | 0.1232 | 1440.96 | 274100000.0 | -| FLMUSDT | 0.0002487 | 0.0003674 | 0.01618 | 0.003066 | 0.01899 | 0.01681 | 110.2 | 0.08909 | 0.0 | 0.03192 | 0.1268 | 1168.67 | 274100000.0 | -| BTCUSDT | 0.0002183 | 0.0006031 | 0.04164 | 0.00842 | 0.007834 | 0.007104 | 111.2 | 0.03526 | 0.0 | 0.02571 | 0.07703 | 1440.96 | 274100000.0 | -| AXSUSDT | 0.0003561 | 0.001088 | 0.03897 | 0.01357 | 0.01579 | 0.01291 | 113.0 | 0.05996 | 0.0 | 0.04579 | 0.1076 | 1116.67 | 274100000.0 | -| QTUMUSDT | 0.0004461 | 0.0008288 | 0.04276 | 0.005081 | 0.01498 | 0.01458 | 105.4 | 0.08261 | 0.0 | 0.06119 | 0.2493 | 1390.62 | 274100000.0 | -| 1000XECUSDT | 0.0003059 | 0.0004463 | 0.01874 | 0.004442 | 0.008953 | 0.007903 | 81.9 | 0.03911 | 0.0 | 0.01688 | 0.07217 | 815.83 | 274100000.0 | -| ROSEUSDT | 0.0003554 | 0.0005598 | 0.01631 | 0.00569 | 0.01192 | 0.01174 | 80.9 | 0.06085 | 0.0 | 0.03774 | 0.1979 | 710.83 | 274100000.0 | -| LPTUSDT | 0.0002027 | 0.0002604 | 0.02482 | 0.01109 | 0.01721 | 0.01275 | 109.2 | 0.05881 | 0.0 | 0.04908 | 0.1088 | 760.83 | 274100000.0 | -| AUDIOUSDT | 0.0004299 | 0.0008583 | 0.03281 | 0.01275 | 0.01159 | 0.009831 | 104.1 | 0.04582 | 0.0 | 0.03277 | 0.1804 | 844.83 | 274100000.0 | -| TRXUSDT | 0.0001828 | 0.0009954 | 0.0193 | 0.005472 | 0.008969 | 0.00786 | 119.5 | 0.03635 | 0.0 | 0.0241 | 0.08729 | 1427.62 | 274100000.0 | -| IOSTUSDT | 0.0004717 | 0.001042 | 0.03732 | 0.005091 | 0.01306 | 0.01194 | 119.7 | 0.0578 | 0.0 | 0.04159 | 0.2462 | 1389.62 | 274100000.0 | -| ZENUSDT | 0.0004947 | 0.001234 | 0.03792 | 0.006231 | 0.01686 | 0.0175 | 118.4 | 0.09774 | 0.0 | 0.06443 | 0.2202 | 1112.67 | 274100000.0 | -| JASMYUSDT | 0.0003705 | 0.0005626 | 0.01977 | 0.0006447 | 0.0141 | 0.01091 | 97.45 | 0.0464 | 0.0 | 0.01807 | 0.06459 | 600.83 | 274100000.0 | -| RENUSDT | 0.0004381 | 0.0007239 | 0.02779 | 0.002457 | 0.01694 | 0.01674 | 81.7 | 0.09962 | 0.0 | 0.05891 | 0.1999 | 1154.67 | 274100000.0 | -| BNBUSDT | 0.0004038 | 0.001247 | 0.02056 | 0.006582 | 0.00668 | 0.006194 | 112.1 | 0.03111 | 0.0 | 0.02214 | 0.1498 | 1400.62 | 274100000.0 | -| ADAUSDT | 0.0004659 | 0.001218 | 0.01307 | 0.006391 | 0.005547 | 0.006878 | 71.25 | 0.03205 | 0.0 | 0.02523 | 0.118 | 1410.62 | 274100000.0 | -| DASHUSDT | 0.0002538 | 0.0005594 | 0.01812 | 0.001857 | 0.01546 | 0.01263 | 110.5 | 0.0678 | 0.0 | 0.03554 | 0.2009 | 1406.62 | 274100000.0 | -| ATAUSDT | 0.0003696 | 0.0005089 | 0.0362 | 0.005943 | 0.01515 | 0.01515 | 108.5 | 0.0911 | 0.0 | 0.06551 | 0.1735 | 832.83 | 274100000.0 | -| KAVAUSDT | 0.0003849 | 0.0004869 | 0.02113 | 0.01011 | 0.0168 | 0.01606 | 93.23 | 0.07816 | 0.0 | 0.06126 | 0.2355 | 1231.67 | 274100000.0 | -| BNXUSDT | 0.000361 | 0.0004126 | 0.02563 | 0.0 | 0.01554 | 0.01416 | 100.7 | 0.08428 | 0.0 | 0.03145 | 0.04024 | 292.38 | 274100000.0 | -| ONTUSDT | 0.000352 | 0.0006973 | 0.03816 | 0.002724 | 0.01735 | 0.01481 | 107.9 | 0.07454 | 0.0 | 0.04182 | 0.1059 | 1399.62 | 274100000.0 | -| VETUSDT | 0.000457 | 0.001667 | 0.02366 | 0.003017 | 0.01161 | 0.009828 | 110.0 | 0.04314 | 0.0 | 0.017 | 0.1493 | 1397.62 | 274100000.0 | -| CFXUSDT | 0.0002615 | 0.0003302 | 0.023 | 0.01191 | 0.01587 | 0.01147 | 76.35 | 0.05316 | 0.0 | 0.04777 | 0.09207 | 294.38 | 274100000.0 | -| BATUSDT | 0.0002995 | 0.0007529 | 0.02917 | 0.0006558 | 0.01454 | 0.0126 | 114.6 | 0.06491 | 0.0 | 0.02927 | 0.1224 | 1397.62 | 274100000.0 | -| IOTAUSDT | 0.0004509 | 0.001234 | 0.04772 | 0.004296 | 0.01428 | 0.01329 | 114.0 | 0.0975 | 0.0 | 0.07066 | 0.1879 | 1398.62 | 274100000.0 | -| NEOUSDT | 0.0004557 | 0.0008004 | 0.02576 | 0.01018 | 0.009871 | 0.01081 | 99.0 | 0.0602 | 0.0 | 0.03957 | 0.1419 | 1393.62 | 274100000.0 | -| XMRUSDT | 0.0004357 | 0.001077 | 0.03524 | 0.01012 | 0.006266 | 0.007155 | 65.53 | 0.04043 | 0.0 | 0.03742 | 0.2439 | 1407.62 | 274100000.0 | -| XTZUSDT | 0.0004563 | 0.00141 | 0.02608 | 0.009647 | 0.01086 | 0.009256 | 108.9 | 0.04347 | 0.0 | 0.03155 | 0.1042 | 1405.62 | 274100000.0 | -| DYDXUSDT | 0.0004616 | 0.000844 | 0.02561 | 0.004653 | 0.01505 | 0.01141 | 92.58 | 0.04664 | 0.0 | 0.02165 | 0.08136 | 822.83 | 274100000.0 | -| FOOTBALLUSDT | 0.0002112 | 0.0004378 | 0.02567 | 0.0009192 | 0.00918 | 0.007435 | 97.18 | 0.03342 | 0.0 | 0.01378 | 0.04749 | 466.83 | 274100000.0 | -| PEOPLEUSDT | 0.0004283 | 0.0007825 | 0.02173 | 0.0001337 | 0.01302 | 0.0108 | 98.22 | 0.05513 | 0.0 | 0.02193 | 0.1215 | 716.79 | 274100000.0 | -| MASKUSDT | 0.0002147 | 0.0003896 | 0.01285 | 0.0001743 | 0.01625 | 0.01102 | 87.08 | 0.04338 | 0.0 | 0.005771 | 0.08788 | 836.83 | 274100000.0 | -| LTCUSDT | 0.0004817 | 0.000904 | 0.0235 | 0.006323 | 0.007907 | 0.01007 | 100.2 | 0.05571 | 0.0 | 0.04431 | 0.2398 | 1432.62 | 274100000.0 | -| ARPAUSDT | 0.0004546 | 0.0007291 | 0.01769 | 0.005379 | 0.009188 | 0.007483 | 75.52 | 0.0315 | 0.0 | 0.01625 | 0.04839 | 783.83 | 274100000.0 | -| DGBUSDT | 0.0003811 | 0.0004944 | 0.01835 | 0.00269 | 0.009169 | 0.007992 | 70.6 | 0.03836 | 0.0 | 0.02083 | 0.2485 | 964.83 | 274100000.0 | -| TUSDT | 0.0002375 | 0.0002002 | 0.01522 | 0.0 | 0.01611 | 0.01184 | 122.7 | 0.04976 | 0.0 | 0.01074 | 0.03327 | 314.42 | 274365000.0 | -| ARUSDT | 0.0004002 | 0.0006212 | 0.02861 | 0.002992 | 0.01608 | 0.01226 | 129.2 | 0.05134 | 0.0 | 0.02268 | 0.1185 | 804.83 | 275015000.0 | -| IOTXUSDT | 0.0002945 | 0.0004557 | 0.0297 | 0.01117 | 0.01025 | 0.009936 | 144.0 | 0.06629 | 0.0 | 0.05907 | 0.1585 | 851.83 | 276500000.0 | -| BTCDOMUSDT | 7.105e-05 | 6.075e-05 | 0.01648 | 0.004089 | 0.005882 | 0.004709 | 145.2 | 0.0294 | 0.0 | 0.02502 | 0.05319 | 903.83 | 276623333.333 | -| UNIUSDT | 0.0002238 | 0.0004773 | 0.0124 | 0.0007975 | 0.01558 | 0.01199 | 153.5 | 0.04726 | 0.0 | 0.006024 | 0.07807 | 1180.67 | 277448333.333 | -| C98USDT | 0.0002666 | 0.0003871 | 0.03021 | 0.004965 | 0.01842 | 0.01706 | 166.3 | 0.0985 | 0.0 | 0.06935 | 0.2062 | 839.83 | 278733333.333 | -| USDCUSDT | -9.164e-10 | -9.164e-09 | 0.003796 | 0.0 | 40.0 | 0.4002 | nan | 0.004165 | 1.0 | 6.41e-05 | 6.551e-05 | 274.25 | 282100000.0 | -| FLOWUSDT | 0.0003412 | 0.0004904 | 0.04785 | 0.005292 | 0.02027 | 0.01765 | 213.7 | 0.115 | 0.0 | 0.07684 | 0.1713 | 669.83 | 283488287.447 | -| GMTUSDT | 0.0004816 | 0.0009114 | 0.05416 | 0.03808 | 0.01272 | 0.01647 | 253.4 | 0.1096 | 0.0 | 0.09871 | 0.1322 | 636.79 | 287451225.639 | -| PERPUSDT | 0.0003467 | 0.0002263 | 0.04716 | 0.0 | 0.01851 | 0.01465 | 254.4 | 0.09254 | 0.0 | 0.06537 | 0.08103 | 279.46 | 287545000.0 | -| BAKEUSDT | 0.000537 | 0.0005957 | 0.04835 | 0.02183 | 0.01829 | 0.02002 | 329.4 | 0.1591 | 0.0 | 0.1359 | 0.2377 | 936.67 | 298685230.358 | -| GTCUSDT | 0.0003539 | 0.0005905 | 0.1127 | 0.03892 | 0.02733 | 0.0318 | 433.4 | 0.1905 | 0.0 | 0.1565 | 0.2314 | 913.83 | 311172214.283 | -| LEVERUSDT | 0.0007027 | 0.001026 | 0.1297 | 0.1135 | 0.02685 | 0.02504 | 531.9 | 0.2031 | 0.0 | 0.1688 | 0.2032 | 256.46 | 322273422.227 | -| TOMOUSDT | 0.0006835 | 0.0009797 | 0.04086 | 0.006699 | 0.01805 | 0.0163 | 686.8 | 0.0891 | 0.0 | 0.06369 | 0.1246 | 1156.67 | 330783333.333 | -| KLAYUSDT | 0.0004892 | 0.0008344 | 0.1424 | 0.1259 | 0.04593 | 0.05953 | 1141.0 | 0.4487 | 0.0 | 0.3096 | 0.3485 | 790.83 | 496075421.558 | -| COCOSUSDT | 7.724e-05 | 0.0007724 | 0.01847 | 0.01002 | 50.01 | 0.5047 | 4815.0 | 0.03722 | 0.5 | 0.02565 | 0.06082 | 293.38 | 746576666.667 | -| HNTUSDT | 0.0001499 | 0.0007329 | 0.0206 | 0.006265 | 10.01 | 0.1096 | 6398.0 | 0.05335 | 0.1 | 0.04067 | 0.1841 | 1169.67 | 901903333.333 | -| CVCUSDT | 0.0001057 | 0.0008688 | 0.01622 | 0.006432 | 20.01 | 0.211 | 9067.0 | 0.0691 | 0.2 | 0.05123 | 0.2079 | 1125.67 | 1168758333.33 | -| SRMUSDT | 8.218e-05 | 0.0004293 | 0.02138 | 0.002958 | 20.01 | 0.2121 | 9408.0 | 0.07651 | 0.2 | 0.04673 | 0.1645 | 1192.88 | 1202908333.33 | -| RAYUSDT | 5.48e-05 | 0.0004374 | 0.01989 | 0.01075 | 30.01 | 0.314 | 9407.0 | 0.07826 | 0.3 | 0.0665 | 0.2335 | 843.83 | 1203848333.33 | -| FTTUSDT | 4.048e-05 | 0.0004048 | 0.01041 | 0.0001513 | 50.01 | 0.5083 | 9429.0 | 0.05899 | 0.5 | 0.01308 | 0.419 | 605.83 | 1376995004.41 | -| BTSUSDT | 4.524e-05 | 0.0004254 | 0.08578 | 0.008627 | 30.01 | 0.3124 | 11550.0 | 0.1171 | 0.3 | 0.09048 | 0.2075 | 1043.67 | 1418445470.67 | -| SCUSDT | 4.073e-05 | 0.0004073 | 0.01856 | 0.01377 | 40.01 | 0.4153 | 13020.0 | 0.1495 | 0.4 | 0.1291 | 0.2376 | 973.67 | 1569516867.7 | -| BTCSTUSDT | 2.032e-06 | 2.032e-05 | 0.002576 | 0.0 | 80.0 | 0.8002 | 24120.0 | 0.004418 | 0.8 | 0.0001176 | 0.003318 | 1012.67 | 2679805000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| PENDLEUSDT | 0.004979 | 0.002155 | 0.05615 | 0.00614 | 0.01381 | 0.01172 | 100.7 | 0.06476 | 0.0 | 0.04423 | 0.06416 | 136.88 | 274099999.995 | -| DODOXUSDT | 0.003847 | 0.002288 | 0.0301 | 0.003317 | 0.007697 | 0.006636 | 71.8 | 0.02918 | 0.0 | 0.01258 | 0.02883 | 125.46 | 274099999.996 | -| 1000FLOKIUSDT | 0.003768 | 0.001556 | 0.02275 | 0.001026 | 0.01203 | 0.008122 | 79.33 | 0.03391 | 0.0 | 0.004779 | 0.0316 | 219.29 | 274099999.996 | -| SEIUSDT | 0.00398 | 0.002361 | 0.03025 | 0.0157 | 0.009231 | 0.007946 | 102.1 | 0.046 | 0.0 | 0.0473 | 0.08491 | 116.88 | 274099999.996 | -| ARKMUSDT | 0.003461 | 0.002701 | 0.03942 | 0.02137 | 0.009333 | 0.00929 | 56.78 | 0.06478 | 0.0 | 0.07001 | 0.1175 | 136.88 | 274099999.997 | -| EDUUSDT | 0.002978 | 0.001901 | 0.03263 | 0.01518 | 0.009043 | 0.009641 | 76.13 | 0.07373 | 0.0 | 0.08039 | 0.1601 | 225.46 | 274099999.997 | -| MAVUSDT | 0.002896 | 0.002228 | 0.03321 | 0.0156 | 0.009131 | 0.009154 | 85.67 | 0.05579 | 0.0 | 0.05965 | 0.1262 | 165.46 | 274099999.997 | -| BICOUSDT | 0.002755 | 0.001456 | 0.04136 | 0.02056 | 0.009744 | 0.009018 | 65.97 | 0.06062 | 0.0 | 0.06501 | 0.1217 | 74.46 | 274099999.997 | -| AGLDUSDT | 0.0035 | 0.002718 | 0.02697 | 0.01296 | 0.007273 | 0.008313 | 63.6 | 0.04692 | 0.0 | 0.04738 | 0.1624 | 135.88 | 274099999.997 | -| BLURUSDT | 0.003008 | 0.001457 | 0.02791 | 0.01383 | 0.009365 | 0.0106 | 63.3 | 0.08502 | 0.0 | 0.09374 | 0.1864 | 227.46 | 274099999.997 | -| MDTUSDT | 0.002735 | 0.001341 | 0.0133 | 0.0004557 | 0.007842 | 0.005961 | 66.02 | 0.02381 | 0.0 | 0.004234 | 0.03453 | 164.46 | 274099999.997 | -| XVGUSDT | 0.001527 | 0.001814 | 0.07791 | 0.004748 | 0.008733 | 0.00877 | 34.48 | 0.06082 | 0.0 | 0.05248 | 0.1167 | 160.46 | 274099999.998 | -| UMAUSDT | 0.001592 | 0.0009646 | 0.05364 | 0.0136 | 0.009928 | 0.01062 | 86.12 | 0.07441 | 0.0 | 0.07822 | 0.2109 | 215.46 | 274099999.998 | -| TRBUSDT | 0.001748 | 0.001153 | 0.02227 | 0.006591 | 0.01597 | 0.01416 | 82.05 | 0.07393 | 0.0 | 0.0345 | 0.2306 | 1194.67 | 274099999.998 | -| FXSUSDT | 0.001672 | 0.001595 | 0.04208 | 0.02359 | 0.007954 | 0.007083 | 50.83 | 0.03817 | 0.0 | 0.04018 | 0.07092 | 325.83 | 274099999.998 | -| FETUSDT | 0.001756 | 0.001552 | 0.0229 | 0.0038 | 0.009306 | 0.007574 | 74.33 | 0.03051 | 0.0 | 0.01104 | 0.05519 | 328.88 | 274099999.998 | -| FRONTUSDT | 0.001762 | 0.002202 | 0.04592 | 0.001554 | 0.01236 | 0.01084 | 48.83 | 0.07131 | 0.0 | 0.05481 | 0.1924 | 80.38 | 274099999.998 | -| HFTUSDT | 0.002232 | 0.00128 | 0.03309 | 0.01855 | 0.007589 | 0.006559 | 83.98 | 0.04543 | 0.0 | 0.0478 | 0.07158 | 249.46 | 274099999.998 | -| LUNA2USDT | 0.001929 | 0.001214 | 0.02322 | 0.007725 | 0.007647 | 0.01002 | 61.03 | 0.07358 | 0.0 | 0.07358 | 0.2484 | 457.83 | 274099999.998 | -| GLMRUSDT | 0.002442 | 0.001836 | 0.08451 | 0.06104 | 0.01123 | 0.01009 | 84.55 | 0.09002 | 0.0 | 0.09932 | 0.1268 | 76.92 | 274099999.998 | -| BLZUSDT | 0.00201 | 0.001284 | 0.0181 | 0.005889 | 0.0138 | 0.01157 | 109.8 | 0.05309 | 0.0 | 0.03596 | 0.2421 | 1180.67 | 274099999.998 | -| BNXUSDT | 0.00169 | 0.001767 | 0.045 | 0.001453 | 0.00804 | 0.008389 | 93.15 | 0.04762 | 0.0 | 0.03326 | 0.1928 | 292.38 | 274099999.998 | -| HIGHUSDT | 0.001872 | 0.002115 | 0.0814 | 0.004181 | 0.00881 | 0.008562 | 43.82 | 0.05489 | 0.0 | 0.04632 | 0.1123 | 307.88 | 274099999.998 | -| MAGICUSDT | 0.001501 | 0.001371 | 0.04986 | 0.03271 | 0.009627 | 0.01023 | 88.48 | 0.07107 | 0.0 | 0.07655 | 0.1223 | 320.83 | 274099999.998 | -| WLDUSDT | 0.001563 | 0.001746 | 0.04276 | 0.01556 | 0.01268 | 0.01091 | 32.37 | 0.08505 | 0.0 | 0.09467 | 0.2157 | 140.46 | 274099999.998 | -| HIFIUSDT | 0.001953 | 0.002402 | 0.02189 | 0.004434 | 0.007197 | 0.006924 | 73.15 | 0.03428 | 0.0 | 0.02673 | 0.09388 | 86.38 | 274099999.998 | -| COMBOUSDT | 0.00248 | 0.001518 | 0.05853 | 0.01048 | 0.009288 | 0.009661 | 91.1 | 0.05901 | 0.0 | 0.05164 | 0.09622 | 192.46 | 274099999.998 | -| TUSDT | 0.001634 | 0.0008555 | 0.03111 | 0.0129 | 0.009926 | 0.0103 | 89.3 | 0.08777 | 0.0 | 0.09856 | 0.2369 | 314.42 | 274099999.998 | -| SUIUSDT | 0.00196 | 0.001537 | 0.08767 | 0.02538 | 0.009064 | 0.01057 | 54.82 | 0.08282 | 0.0 | 0.089 | 0.136 | 222.29 | 274099999.998 | -| YGGUSDT | 0.002295 | 0.003162 | 0.04906 | 0.02058 | 0.01054 | 0.01185 | 83.13 | 0.06522 | 0.0 | 0.06989 | 0.1086 | 129.83 | 274099999.998 | -| SSVUSDT | 0.002082 | 0.001217 | 0.04558 | 0.02082 | 0.01384 | 0.01342 | 95.97 | 0.08917 | 0.0 | 0.09833 | 0.1627 | 290.46 | 274099999.998 | -| LQTYUSDT | 0.002064 | 0.002297 | 0.07791 | 0.02134 | 0.00869 | 0.01075 | 74.17 | 0.08718 | 0.0 | 0.09615 | 0.2247 | 276.46 | 274099999.998 | -| ASTRUSDT | 0.001549 | 0.001193 | 0.04015 | 0.02414 | 0.01053 | 0.0101 | 108.1 | 0.07465 | 0.0 | 0.081 | 0.1081 | 300.88 | 274099999.998 | -| HOOKUSDT | 0.002387 | 0.002154 | 0.05462 | 0.0112 | 0.01029 | 0.01077 | 58.85 | 0.06112 | 0.0 | 0.05469 | 0.1194 | 322.83 | 274099999.998 | -| STMXUSDT | 0.001737 | 0.001685 | 0.04002 | 0.01427 | 0.01238 | 0.01112 | 118.4 | 0.06295 | 0.0 | 0.06373 | 0.2362 | 994.67 | 274099999.998 | -| PERPUSDT | 0.001668 | 0.001864 | 0.02668 | 0.01048 | 0.007568 | 0.006094 | 70.38 | 0.02888 | 0.0 | 0.02283 | 0.07253 | 279.46 | 274099999.998 | -| 1000PEPEUSDT | 0.001609 | 0.001478 | 0.02365 | 0.008583 | 0.01041 | 0.0092 | 36.48 | 0.04297 | 0.0 | 0.03447 | 0.07899 | 220.29 | 274099999.998 | -| CRVUSDT | 0.0005071 | 0.00109 | 0.04353 | 0.008272 | 0.0168 | 0.01667 | 110.3 | 0.09725 | 0.0 | 0.05228 | 0.219 | 1196.67 | 274099999.999 | -| XEMUSDT | 0.0005811 | 0.0008702 | 0.02688 | 0.008019 | 0.00957 | 0.009758 | 98.17 | 0.05644 | 0.0 | 0.05363 | 0.2246 | 1014.67 | 274099999.999 | -| EGLDUSDT | 0.000654 | 0.0009678 | 0.02604 | 0.01302 | 0.01371 | 0.01159 | 98.22 | 0.05205 | 0.0 | 0.04683 | 0.1367 | 1183.67 | 274099999.999 | -| LEVERUSDT | 0.001102 | 0.001544 | 0.03635 | 0.005958 | 0.01146 | 0.008919 | 71.65 | 0.0405 | 0.0 | 0.02608 | 0.06736 | 256.46 | 274099999.999 | -| BNTUSDT | 0.0009816 | 0.001504 | 0.009255 | 0.001248 | 0.006068 | 0.004667 | 61.07 | 0.01865 | 0.0 | 0.003736 | 0.02128 | 123.46 | 274099999.999 | -| KNCUSDT | 0.0005791 | 0.0009648 | 0.03756 | 0.00726 | 0.01691 | 0.01605 | 110.5 | 0.09736 | 0.0 | 0.0723 | 0.1958 | 1267.62 | 274099999.999 | -| OMGUSDT | 0.0007133 | 0.001225 | 0.03338 | 0.01323 | 0.01318 | 0.01248 | 116.6 | 0.08229 | 0.0 | 0.09091 | 0.2351 | 1257.58 | 274099999.999 | -| MINAUSDT | 0.0007365 | 0.0004821 | 0.01231 | 0.0002979 | 0.00873 | 0.006718 | 80.52 | 0.02723 | 0.0 | 0.00676 | 0.12 | 307.5 | 274099999.999 | -| IDEXUSDT | 0.001131 | 0.00107 | 0.03913 | 0.01652 | 0.009008 | 0.007625 | 91.32 | 0.04993 | 0.0 | 0.05313 | 0.09166 | 222.46 | 274099999.999 | -| ACHUSDT | 0.001033 | 0.001184 | 0.04319 | 0.001652 | 0.01118 | 0.0101 | 76.68 | 0.05806 | 0.0 | 0.03086 | 0.07534 | 292.38 | 274099999.999 | -| QNTUSDT | 0.0005393 | 0.0006137 | 0.03157 | 0.007807 | 0.00953 | 0.008691 | 111.2 | 0.04026 | 0.0 | 0.02783 | 0.09477 | 417.88 | 274099999.999 | -| FLMUSDT | 0.001152 | 0.0007321 | 0.02534 | 0.005947 | 0.01786 | 0.01444 | 99.12 | 0.07846 | 0.0 | 0.04565 | 0.2022 | 1168.67 | 274099999.999 | -| QTUMUSDT | 0.0005522 | 0.0009302 | 0.03646 | 0.01324 | 0.01261 | 0.0124 | 113.2 | 0.0693 | 0.0 | 0.07151 | 0.2362 | 1390.62 | 274099999.999 | -| RSRUSDT | 0.001038 | 0.0022 | 0.05255 | 0.02361 | 0.01609 | 0.01516 | 105.0 | 0.08534 | 0.0 | 0.09224 | 0.2353 | 1148.67 | 274099999.999 | -| 1000XECUSDT | 0.0006003 | 0.0007949 | 0.02102 | 0.002819 | 0.01133 | 0.009464 | 94.37 | 0.03973 | 0.0 | 0.01174 | 0.1045 | 815.83 | 274099999.999 | -| MANAUSDT | 0.0007277 | 0.001568 | 0.04167 | 0.02073 | 0.01066 | 0.01081 | 97.27 | 0.05944 | 0.0 | 0.06382 | 0.2239 | 1001.67 | 274099999.999 | -| HBARUSDT | 0.0007109 | 0.001162 | 0.05133 | 0.01195 | 0.01469 | 0.01475 | 117.6 | 0.08885 | 0.0 | 0.07502 | 0.2074 | 999.67 | 274099999.999 | -| GALUSDT | 0.001164 | 0.001854 | 0.03631 | 0.009673 | 0.01356 | 0.01153 | 111.6 | 0.0495 | 0.0 | 0.03361 | 0.1041 | 585.38 | 274099999.999 | -| BANDUSDT | 0.0005734 | 0.0009303 | 0.02475 | 0.003998 | 0.01835 | 0.01523 | 117.5 | 0.07154 | 0.0 | 0.02068 | 0.1127 | 1230.67 | 274099999.999 | -| AGIXUSDT | 0.001242 | 0.001193 | 0.05522 | 0.004215 | 0.01217 | 0.01103 | 95.15 | 0.06508 | 0.0 | 0.04163 | 0.1217 | 298.38 | 274099999.999 | -| DEFIUSDT | 0.0008622 | 0.001461 | 0.07877 | 0.04321 | 0.01187 | 0.01178 | 111.3 | 0.07642 | 0.0 | 0.08338 | 0.1447 | 1200.67 | 274099999.999 | -| ENJUSDT | 0.0007591 | 0.001586 | 0.05264 | 0.007922 | 0.0122 | 0.01205 | 111.9 | 0.07629 | 0.0 | 0.06328 | 0.1994 | 1168.67 | 274099999.999 | -| SNXUSDT | 0.0006953 | 0.0008535 | 0.03052 | 0.003097 | 0.02007 | 0.01827 | 118.5 | 0.09882 | 0.0 | 0.03505 | 0.09723 | 1214.67 | 274099999.999 | -| HOTUSDT | 0.0009914 | 0.001579 | 0.06708 | 0.01419 | 0.01219 | 0.01335 | 112.0 | 0.08164 | 0.0 | 0.07807 | 0.1893 | 986.67 | 274099999.999 | -| ARKUSDT | 0.001293 | 0.002757 | 0.05461 | 0.01595 | 0.01712 | 0.01636 | 67.82 | 0.09616 | 0.0 | 0.09589 | 0.1515 | 83.29 | 274099999.999 | -| ZENUSDT | 0.0006896 | 0.001284 | 0.0575 | 0.005437 | 0.01809 | 0.01675 | 92.48 | 0.09053 | 0.0 | 0.07865 | 0.2332 | 1112.67 | 274099999.999 | -| SPELLUSDT | 0.0014 | 0.001221 | 0.03542 | 0.02305 | 0.007948 | 0.01043 | 89.8 | 0.08068 | 0.0 | 0.08865 | 0.2095 | 461.46 | 274099999.999 | -| OGNUSDT | 0.000932 | 0.001067 | 0.02775 | 0.01192 | 0.01231 | 0.01067 | 97.22 | 0.06695 | 0.0 | 0.07054 | 0.2166 | 984.67 | 274099999.999 | -| JASMYUSDT | 0.001 | 0.001395 | 0.05741 | 0.005872 | 0.01179 | 0.01155 | 89.13 | 0.07994 | 0.0 | 0.08198 | 0.1922 | 600.83 | 274099999.999 | -| WOOUSDT | 0.00109 | 0.001464 | 0.04618 | 0.01591 | 0.01103 | 0.01003 | 103.1 | 0.05231 | 0.0 | 0.05264 | 0.1544 | 613.83 | 274099999.999 | -| SUSHIUSDT | 0.001286 | 0.002087 | 0.05508 | 0.02423 | 0.01474 | 0.01446 | 118.7 | 0.08323 | 0.0 | 0.09086 | 0.2295 | 1193.67 | 274099999.999 | -| RENUSDT | 0.000749 | 0.001094 | 0.04213 | 0.01055 | 0.01948 | 0.01748 | 117.7 | 0.09967 | 0.0 | 0.08634 | 0.2288 | 1154.67 | 274099999.999 | -| CELOUSDT | 0.0005416 | 0.0005671 | 0.02873 | 0.009248 | 0.01328 | 0.01204 | 82.58 | 0.06307 | 0.0 | 0.04815 | 0.1555 | 805.83 | 274099999.999 | -| APEUSDT | 0.0008169 | 0.001308 | 0.03949 | 0.01363 | 0.01063 | 0.01195 | 99.03 | 0.06999 | 0.0 | 0.06285 | 0.1393 | 634.33 | 274099999.999 | -| GRTUSDT | 0.001205 | 0.002173 | 0.04977 | 0.02038 | 0.01188 | 0.01175 | 83.2 | 0.0728 | 0.0 | 0.07673 | 0.2269 | 1087.67 | 274099999.999 | -| AMBUSDT | 0.001133 | 0.001781 | 0.02419 | 0.004481 | 0.01021 | 0.008037 | 68.18 | 0.03286 | 0.0 | 0.0126 | 0.03866 | 256.46 | 274099999.999 | -| CELRUSDT | 0.000909 | 0.00175 | 0.03596 | 0.01912 | 0.01163 | 0.01155 | 116.4 | 0.06746 | 0.0 | 0.07364 | 0.2355 | 987.67 | 274099999.999 | -| YFIUSDT | 0.0007352 | 0.001389 | 0.04387 | 0.01584 | 0.01506 | 0.01467 | 114.7 | 0.07728 | 0.0 | 0.0838 | 0.1732 | 1198.67 | 274099999.999 | -| ATAUSDT | 0.0008427 | 0.001526 | 0.06471 | 0.005488 | 0.0145 | 0.01295 | 92.55 | 0.07516 | 0.0 | 0.06502 | 0.1587 | 832.83 | 274099999.999 | -| OCEANUSDT | 0.001029 | 0.001719 | 0.09912 | 0.01295 | 0.0174 | 0.0164 | 108.3 | 0.0906 | 0.0 | 0.08823 | 0.2065 | 1133.67 | 274099999.999 | -| SFPUSDT | 0.0008873 | 0.001718 | 0.05642 | 0.02438 | 0.01451 | 0.01157 | 97.22 | 0.08079 | 0.0 | 0.08915 | 0.2488 | 1020.67 | 274099999.999 | -| ONEUSDT | 0.0009434 | 0.001958 | 0.0511 | 0.02697 | 0.01249 | 0.0138 | 110.8 | 0.0894 | 0.0 | 0.09978 | 0.2121 | 998.67 | 274099999.999 | -| ENSUSDT | 0.0006669 | 0.001212 | 0.04456 | 0.01815 | 0.01304 | 0.01243 | 107.5 | 0.07516 | 0.0 | 0.0802 | 0.2065 | 741.83 | 274099999.999 | -| LINAUSDT | 0.0005029 | 0.0007525 | 0.02821 | 0.005888 | 0.01911 | 0.01769 | 115.9 | 0.09605 | 0.0 | 0.07005 | 0.2419 | 997.67 | 274099999.999 | -| 1000LUNCUSDT | 0.001394 | 0.0007167 | 0.01494 | 0.002508 | 0.009524 | 0.009301 | 115.9 | 0.05267 | 0.0 | 0.02741 | 0.1242 | 458.42 | 274099999.999 | -| PHBUSDT | 0.001239 | 0.001216 | 0.03726 | 0.01189 | 0.01406 | 0.01177 | 101.3 | 0.06123 | 0.0 | 0.05828 | 0.1352 | 298.38 | 274099999.999 | -| IMXUSDT | 0.0007985 | 0.0007441 | 0.01926 | 0.002959 | 0.01468 | 0.01233 | 100.9 | 0.05803 | 0.0 | 0.02242 | 0.1466 | 668.83 | 274099999.999 | -| 1INCHUSDT | 0.0005181 | 0.001109 | 0.04099 | 0.01803 | 0.01439 | 0.01354 | 106.9 | 0.07545 | 0.0 | 0.08048 | 0.1733 | 1081.54 | 274099999.999 | -| JOEUSDT | 0.00149 | 0.001063 | 0.06797 | 0.01565 | 0.01347 | 0.01348 | 91.05 | 0.08825 | 0.0 | 0.08823 | 0.144 | 257.46 | 274099999.999 | -| LITUSDT | 0.001065 | 0.00183 | 0.06425 | 0.01839 | 0.01629 | 0.01486 | 111.3 | 0.0916 | 0.0 | 0.08888 | 0.2159 | 1026.67 | 274099999.999 | -| ONTUSDT | 0.0009525 | 0.001692 | 0.07192 | 0.0211 | 0.01028 | 0.01256 | 108.4 | 0.07861 | 0.0 | 0.08099 | 0.155 | 1399.62 | 274099999.999 | -| DARUSDT | 0.0006562 | 0.0007909 | 0.02595 | 0.007709 | 0.01151 | 0.01011 | 107.8 | 0.06166 | 0.0 | 0.05952 | 0.1643 | 591.83 | 274099999.999 | -| LDOUSDT | 0.0009491 | 0.001043 | 0.03771 | 0.01526 | 0.01479 | 0.01397 | 84.8 | 0.07119 | 0.0 | 0.0627 | 0.1302 | 445.46 | 274099999.999 | -| RLCUSDT | 0.0009856 | 0.002045 | 0.07883 | 0.02435 | 0.01613 | 0.01428 | 114.8 | 0.09281 | 0.0 | 0.098 | 0.1822 | 1228.67 | 274099999.999 | -| VETUSDT | 0.0005363 | 0.001193 | 0.04281 | 0.01366 | 0.0112 | 0.012 | 101.6 | 0.06271 | 0.0 | 0.05671 | 0.1984 | 1397.62 | 274099999.999 | -| XVSUSDT | 0.001263 | 0.0006704 | 0.01462 | 0.00427 | 0.007057 | 0.007058 | 90.45 | 0.03193 | 0.0 | 0.02375 | 0.1438 | 243.88 | 274099999.999 | -| OXTUSDT | 0.0007061 | 0.001379 | 0.02297 | 0.005816 | 0.009129 | 0.007292 | 61.0 | 0.03024 | 0.0 | 0.009421 | 0.02443 | 122.46 | 274099999.999 | -| IDUSDT | 0.001217 | 0.001159 | 0.02645 | 0.008791 | 0.008365 | 0.007155 | 57.12 | 0.03857 | 0.0 | 0.03539 | 0.172 | 263.38 | 274099999.999 | -| KEYUSDT | 0.001379 | 0.001193 | 0.02825 | 0.005476 | 0.01373 | 0.01139 | 81.45 | 0.0481 | 0.0 | 0.0248 | 0.1033 | 201.46 | 274099999.999 | -| RUNEUSDT | 0.0008327 | 0.0003139 | 0.008607 | 0.001403 | 0.01889 | 0.0132 | 113.3 | 0.05464 | 0.0 | 0.007671 | 0.04564 | 1193.67 | 274099999.999 | -| INJUSDT | 0.001084 | 0.001162 | 0.03024 | 0.006119 | 0.01081 | 0.008805 | 114.1 | 0.03923 | 0.0 | 0.02353 | 0.08136 | 481.88 | 274099999.999 | -| ALGOUSDT | 0.000735 | 0.001271 | 0.04367 | 0.01234 | 0.01397 | 0.01447 | 118.1 | 0.06886 | 0.0 | 0.05696 | 0.2262 | 1273.58 | 274099999.999 | -| RADUSDT | 0.001255 | 0.00117 | 0.02185 | 0.003459 | 0.007657 | 0.006227 | 73.53 | 0.02673 | 0.0 | 0.01003 | 0.06433 | 215.46 | 274099999.999 | -| NEOUSDT | 0.0009655 | 0.001338 | 0.07607 | 0.01112 | 0.01047 | 0.01271 | 113.0 | 0.07535 | 0.0 | 0.07798 | 0.1658 | 1393.62 | 274099999.999 | -| RNDRUSDT | 0.0008387 | 0.0007597 | 0.03836 | 0.005167 | 0.01523 | 0.0161 | 90.37 | 0.09341 | 0.0 | 0.05021 | 0.1164 | 311.88 | 274099999.999 | -| COMPUSDT | 0.0005557 | 0.0006772 | 0.03452 | 0.0181 | 0.0172 | 0.01591 | 105.2 | 0.08715 | 0.0 | 0.09326 | 0.2294 | 1259.58 | 274099999.999 | -| GMXUSDT | 0.0006082 | 0.0006298 | 0.0644 | 0.02084 | 0.01321 | 0.009058 | 105.4 | 0.03904 | 0.0 | 0.0344 | 0.06188 | 297.38 | 274099999.999 | -| MKRUSDT | 0.0009312 | 0.001135 | 0.03078 | 0.01354 | 0.01022 | 0.01151 | 102.5 | 0.04136 | 0.0 | 0.03602 | 0.2138 | 1215.67 | 274099999.999 | -| SOLUSDT | 0.0006851 | 0.0008164 | 0.03173 | 0.01403 | 0.01439 | 0.0137 | 102.4 | 0.06689 | 0.0 | 0.04136 | 0.1466 | 1183.67 | 274099999.999 | -| CHRUSDT | 0.00092 | 0.001919 | 0.07708 | 0.0126 | 0.0157 | 0.01578 | 111.1 | 0.09912 | 0.0 | 0.09547 | 0.2389 | 1004.67 | 274099999.999 | -| STXUSDT | 0.0005436 | 0.0005117 | 0.0156 | 0.005068 | 0.01076 | 0.009713 | 58.63 | 0.05422 | 0.0 | 0.0321 | 0.07711 | 293.38 | 274099999.999 | -| THETAUSDT | 0.0007269 | 0.001433 | 0.05608 | 0.02117 | 0.01327 | 0.01466 | 104.8 | 0.07744 | 0.0 | 0.06635 | 0.1773 | 1293.62 | 274099999.999 | -| ARBUSDT | 0.0006285 | 0.0005787 | 0.0415 | 0.01834 | 0.01159 | 0.01036 | 86.4 | 0.05136 | 0.0 | 0.04344 | 0.08547 | 263.33 | 274099999.999 | -| SKLUSDT | 0.0007028 | 0.0009185 | 0.02319 | 0.00284 | 0.01762 | 0.01456 | 112.7 | 0.07427 | 0.0 | 0.02355 | 0.1701 | 1098.67 | 274099999.999 | -| DYDXUSDT | 0.0006133 | 0.0008794 | 0.02894 | 0.009271 | 0.01566 | 0.0114 | 99.48 | 0.05379 | 0.0 | 0.0418 | 0.145 | 822.83 | 274099999.999 | -| RDNTUSDT | 0.001199 | 0.001227 | 0.03967 | 0.01061 | 0.008151 | 0.007189 | 62.28 | 0.03427 | 0.0 | 0.02432 | 0.04533 | 250.46 | 274099999.999 | -| NMRUSDT | 0.001149 | 0.0019 | 0.03806 | 0.0009662 | 0.008877 | 0.008584 | 78.87 | 0.05381 | 0.0 | 0.02825 | 0.1631 | 172.46 | 274099999.999 | -| ATOMUSDT | 0.0008939 | 0.002205 | 0.05407 | 0.02596 | 0.008579 | 0.009571 | 100.0 | 0.07061 | 0.0 | 0.07702 | 0.2035 | 1403.46 | 274099999.999 | -| NKNUSDT | 0.0005614 | 0.00114 | 0.04396 | 0.002866 | 0.01641 | 0.0176 | 108.0 | 0.09902 | 0.0 | 0.07054 | 0.25 | 976.67 | 274099999.999 | -| ALICEUSDT | 0.0005243 | 0.001089 | 0.04492 | 0.00532 | 0.0198 | 0.01748 | 119.3 | 0.09569 | 0.0 | 0.07203 | 0.2009 | 1000.83 | 274099999.999 | -| CKBUSDT | 0.001221 | 0.001128 | 0.08124 | 0.00218 | 0.009176 | 0.008228 | 70.67 | 0.05258 | 0.0 | 0.04198 | 0.09932 | 286.46 | 274099999.999 | -| C98USDT | 0.0005335 | 0.0007854 | 0.03978 | 0.00882 | 0.01498 | 0.01436 | 103.7 | 0.09664 | 0.0 | 0.09736 | 0.1884 | 839.83 | 274099999.999 | -| ZRXUSDT | 0.0008623 | 0.0009853 | 0.044 | 0.00372 | 0.01598 | 0.01445 | 111.3 | 0.08112 | 0.0 | 0.05611 | 0.2285 | 1266.58 | 274099999.999 | -| ICPUSDT | 0.001442 | 0.001008 | 0.05936 | 0.03359 | 0.009851 | 0.01038 | 114.9 | 0.0757 | 0.0 | 0.08303 | 0.1514 | 440.88 | 274099999.999 | -| ZILUSDT | 0.0005396 | 0.0012 | 0.03918 | 0.01753 | 0.01033 | 0.009402 | 111.2 | 0.06252 | 0.0 | 0.06744 | 0.1513 | 1272.58 | 274099999.999 | -| REEFUSDT | 0.001312 | 0.002237 | 0.06243 | 0.01358 | 0.01088 | 0.01189 | 93.0 | 0.0698 | 0.0 | 0.05411 | 0.2309 | 1022.67 | 274099999.999 | -| TRUUSDT | 0.00082 | 0.0008024 | 0.03366 | 0.01485 | 0.01117 | 0.009368 | 55.58 | 0.04407 | 0.0 | 0.03083 | 0.1986 | 280.46 | 274099999.999 | -| LINKUSDT | 0.001067 | 0.001653 | 0.04887 | 0.03099 | 0.01116 | 0.0118 | 117.9 | 0.0766 | 0.0 | 0.08365 | 0.1993 | 1424.62 | 274099999.999 | -| STORJUSDT | 0.0007038 | 0.0008437 | 0.01994 | 0.007809 | 0.01511 | 0.01371 | 118.3 | 0.06932 | 0.0 | 0.06483 | 0.2037 | 1181.67 | 274099999.999 | -| KSMUSDT | 0.000622 | 0.001354 | 0.04142 | 0.01877 | 0.009746 | 0.009069 | 81.6 | 0.05567 | 0.0 | 0.05936 | 0.1645 | 1153.67 | 274099999.999 | -| TLMUSDT | 0.001396 | 0.0009933 | 0.02401 | 0.003458 | 0.008402 | 0.00778 | 88.18 | 0.05393 | 0.0 | 0.04745 | 0.248 | 256.46 | 274099999.999 | -| DGBUSDT | 0.0007604 | 0.001652 | 0.1064 | 0.02158 | 0.01138 | 0.01247 | 60.95 | 0.08272 | 0.0 | 0.08598 | 0.2478 | 964.83 | 274099999.999 | -| BAKEUSDT | 0.001019 | 0.0007094 | 0.01683 | 0.001361 | 0.01532 | 0.0131 | 108.7 | 0.06273 | 0.0 | 0.0158 | 0.1004 | 936.67 | 274099999.999 | -| UNIUSDT | 0.0005172 | 0.001175 | 0.03361 | 0.0162 | 0.009478 | 0.008288 | 93.68 | 0.04392 | 0.0 | 0.04605 | 0.1219 | 1180.67 | 274099999.999 | -| EOSUSDT | 0.0004328 | 0.0007962 | 0.04168 | 0.01169 | 0.01304 | 0.01192 | 115.2 | 0.0618 | 0.0 | 0.05873 | 0.1979 | 1433.62 | 274100000.0 | -| DUSKUSDT | 0.0004212 | 0.0006671 | 0.02412 | 0.002391 | 0.01471 | 0.01064 | 104.6 | 0.04433 | 0.0 | 0.02275 | 0.2024 | 703.83 | 274100000.0 | -| AAVEUSDT | 0.0004691 | 0.0007733 | 0.0223 | 0.007922 | 0.01473 | 0.01202 | 109.5 | 0.05586 | 0.0 | 0.04299 | 0.1418 | 1150.67 | 274100000.0 | -| ALPHAUSDT | 0.0002583 | 0.000573 | 0.01923 | 0.00569 | 0.01729 | 0.01464 | 117.1 | 0.07604 | 0.0 | 0.03905 | 0.1322 | 1113.67 | 274100000.0 | -| CTSIUSDT | 0.0002744 | 0.0004727 | 0.02257 | 0.009279 | 0.01371 | 0.01307 | 106.7 | 0.08754 | 0.0 | 0.08373 | 0.1902 | 776.83 | 274100000.0 | -| ETHUSDT | 0.0002776 | 0.0005984 | 0.04489 | 0.01766 | 0.01217 | 0.01152 | 118.3 | 0.0792 | 0.0 | 0.08619 | 0.1813 | 1440.96 | 274100000.0 | -| LRCUSDT | 5.804e-05 | 0.0001679 | 0.01084 | 0.002807 | 0.02018 | 0.01675 | 98.17 | 0.07981 | 0.0 | 0.03389 | 0.2078 | 1148.67 | 274100000.0 | -| AXSUSDT | 8.265e-05 | 0.000221 | 0.009506 | 0.003055 | 0.01824 | 0.01426 | 109.7 | 0.065 | 0.0 | 0.03273 | 0.1441 | 1116.67 | 274100000.0 | -| ROSEUSDT | 0.000386 | 0.0005702 | 0.02584 | 0.003487 | 0.01301 | 0.01222 | 98.45 | 0.07119 | 0.0 | 0.04662 | 0.1722 | 710.83 | 274100000.0 | -| FTMUSDT | 0.0003245 | 0.0008538 | 0.02463 | 0.007171 | 0.01541 | 0.01338 | 112.4 | 0.07207 | 0.0 | 0.06315 | 0.1962 | 1173.67 | 274100000.0 | -| ETCUSDT | 0.000444 | 0.0009855 | 0.02112 | 0.006634 | 0.01054 | 0.009575 | 118.8 | 0.0485 | 0.0 | 0.03093 | 0.1448 | 1425.62 | 274100000.0 | -| IOSTUSDT | 0.0002948 | 0.0006571 | 0.02826 | 0.002947 | 0.01424 | 0.01397 | 119.5 | 0.07352 | 0.0 | 0.04316 | 0.2221 | 1389.62 | 274100000.0 | -| MTLUSDT | 0.0003545 | 0.0005442 | 0.0266 | 0.006403 | 0.01732 | 0.01687 | 112.3 | 0.09796 | 0.0 | 0.07237 | 0.2498 | 985.67 | 274100000.0 | -| 1000SHIBUSDT | 0.000271 | 0.0007689 | 0.01265 | 0.002045 | 0.00787 | 0.006877 | 75.88 | 0.03422 | 0.0 | 0.02011 | 0.1468 | 945.25 | 274100000.0 | -| BNBUSDT | 0.0001348 | 0.0003323 | 0.03216 | 0.009408 | 0.01043 | 0.009993 | 117.5 | 0.06098 | 0.0 | 0.0611 | 0.2131 | 1400.62 | 274100000.0 | -| NEARUSDT | 0.0002899 | 0.0005883 | 0.02147 | 0.003788 | 0.01859 | 0.01614 | 117.0 | 0.09626 | 0.0 | 0.04799 | 0.2318 | 1152.62 | 274100000.0 | -| ADAUSDT | 0.0002742 | 0.0005089 | 0.0251 | 0.008113 | 0.01245 | 0.01101 | 109.8 | 0.06945 | 0.0 | 0.06619 | 0.2128 | 1410.62 | 274100000.0 | -| API3USDT | 0.0003454 | 0.0005557 | 0.02551 | 0.01012 | 0.01566 | 0.01376 | 85.93 | 0.07875 | 0.0 | 0.07027 | 0.2493 | 657.83 | 274100000.0 | -| BELUSDT | 0.0003513 | 0.0006701 | 0.02372 | 0.000123 | 0.02051 | 0.01855 | 117.2 | 0.0986 | 0.0 | 0.03494 | 0.1937 | 1117.67 | 274100000.0 | -| DASHUSDT | 0.0004995 | 0.001037 | 0.0459 | 0.0167 | 0.01377 | 0.01258 | 118.3 | 0.0676 | 0.0 | 0.06899 | 0.1881 | 1406.62 | 274100000.0 | -| DENTUSDT | 0.0002747 | 0.0007012 | 0.02648 | 0.0103 | 0.01511 | 0.01278 | 102.7 | 0.0662 | 0.0 | 0.06705 | 0.1953 | 992.79 | 274100000.0 | -| BALUSDT | 0.0004454 | 0.001038 | 0.03553 | 0.02119 | 0.01268 | 0.01173 | 108.1 | 0.06455 | 0.0 | 0.0694 | 0.1759 | 1196.67 | 274100000.0 | -| STGUSDT | 0.0004403 | 0.000486 | 0.01441 | 0.001698 | 0.01173 | 0.009493 | 91.3 | 0.0434 | 0.0 | 0.01818 | 0.1447 | 473.46 | 274100000.0 | -| SANDUSDT | 0.0003936 | 0.001093 | 0.03871 | 0.007351 | 0.01566 | 0.01504 | 93.7 | 0.09214 | 0.0 | 0.08036 | 0.248 | 1050.67 | 274100000.0 | -| GTCUSDT | 9.076e-05 | 0.0002108 | 0.01042 | 0.001942 | 0.02025 | 0.01661 | 106.7 | 0.07862 | 0.0 | 0.0322 | 0.222 | 913.83 | 274100000.0 | -| FLOWUSDT | 0.0004413 | 0.000523 | 0.02575 | 0.00829 | 0.01316 | 0.0105 | 100.8 | 0.0491 | 0.0 | 0.04591 | 0.1472 | 669.83 | 274100000.0 | -| KAVAUSDT | 0.0004948 | 0.001134 | 0.02823 | 0.006065 | 0.01516 | 0.01264 | 107.0 | 0.05769 | 0.0 | 0.02825 | 0.1704 | 1231.67 | 274100000.0 | -| DOGEUSDT | 0.0004082 | 0.001267 | 0.02219 | 0.003124 | 0.01164 | 0.0121 | 94.27 | 0.06691 | 0.0 | 0.03683 | 0.1538 | 1249.58 | 274100000.0 | -| XLMUSDT | 0.0003087 | 0.0004632 | 0.02293 | 0.008233 | 0.01191 | 0.01004 | 110.4 | 0.05428 | 0.0 | 0.0384 | 0.1252 | 1422.62 | 274100000.0 | -| MATICUSDT | 0.0004819 | 0.000935 | 0.03069 | 0.01079 | 0.01619 | 0.01263 | 112.7 | 0.07762 | 0.0 | 0.08162 | 0.2106 | 1145.67 | 274100000.0 | -| BLUEBIRDUSDT | 0.0001882 | 0.0001968 | 0.01575 | 0.002698 | 0.007238 | 0.005787 | 86.03 | 0.02509 | 0.0 | 0.007202 | 0.0259 | 404.46 | 274100000.0 | -| SXPUSDT | 0.000303 | 0.0006038 | 0.02307 | 0.007357 | 0.01595 | 0.01391 | 119.9 | 0.07361 | 0.0 | 0.04085 | 0.2238 | 1239.58 | 274100000.0 | -| ANKRUSDT | 0.0003403 | 0.00084 | 0.02994 | 0.006855 | 0.01595 | 0.01647 | 108.0 | 0.09992 | 0.0 | 0.09511 | 0.2473 | 1049.67 | 274100000.0 | -| CHZUSDT | 0.0003647 | 0.001002 | 0.0358 | 0.0005925 | 0.01444 | 0.014 | 97.9 | 0.08208 | 0.0 | 0.04793 | 0.2371 | 1054.67 | 274100000.0 | -| CFXUSDT | 0.0001122 | 0.0001499 | 0.00768 | 0.00058 | 0.01709 | 0.01458 | 118.4 | 0.06345 | 0.0 | 0.01708 | 0.07432 | 294.38 | 274100000.0 | -| DOTUSDT | 0.0002969 | 0.0006854 | 0.04034 | 0.009363 | 0.01393 | 0.01121 | 107.2 | 0.05473 | 0.0 | 0.05514 | 0.2039 | 1206.67 | 274100000.0 | -| BATUSDT | 0.0003244 | 0.0006879 | 0.0344 | 0.002084 | 0.0165 | 0.01183 | 107.6 | 0.05156 | 0.0 | 0.02958 | 0.1357 | 1397.62 | 274100000.0 | -| COTIUSDT | 0.0004912 | 0.0009277 | 0.04615 | 0.003762 | 0.01633 | 0.01644 | 113.5 | 0.09636 | 0.0 | 0.07626 | 0.2345 | 1006.67 | 274100000.0 | -| IOTAUSDT | 0.0004351 | 0.0007506 | 0.02071 | 0.004197 | 0.008517 | 0.006736 | 61.77 | 0.02989 | 0.0 | 0.01711 | 0.07604 | 1398.62 | 274100000.0 | -| BCHUSDT | 0.0004056 | 0.0004784 | 0.03191 | 0.006578 | 0.01356 | 0.01374 | 111.1 | 0.07798 | 0.0 | 0.0497 | 0.1484 | 1440.96 | 274100000.0 | -| RVNUSDT | 0.0002868 | 0.0006219 | 0.02531 | 0.006112 | 0.01248 | 0.01173 | 83.2 | 0.06492 | 0.0 | 0.04489 | 0.1839 | 1021.67 | 274100000.0 | -| ICXUSDT | 0.0003997 | 0.0007031 | 0.02821 | 0.007222 | 0.01517 | 0.01149 | 89.4 | 0.05494 | 0.0 | 0.04707 | 0.1689 | 1182.67 | 274100000.0 | -| ANTUSDT | 0.0003047 | 0.0007429 | 0.01826 | 0.005909 | 0.01412 | 0.01116 | 112.6 | 0.05063 | 0.0 | 0.03669 | 0.1402 | 714.79 | 274100000.0 | -| XMRUSDT | 0.0004593 | 0.001089 | 0.06183 | 0.02254 | 0.01034 | 0.01184 | 118.2 | 0.07361 | 0.0 | 0.08029 | 0.2027 | 1407.62 | 274100000.0 | -| CVXUSDT | 0.0002629 | 0.0005188 | 0.0224 | 0.007864 | 0.007222 | 0.006905 | 83.83 | 0.03387 | 0.0 | 0.02633 | 0.1972 | 445.46 | 274100000.0 | -| CTKUSDT | 0.000283 | 0.0007029 | 0.03073 | 0.0005969 | 0.01417 | 0.0132 | 109.4 | 0.07606 | 0.0 | 0.0332 | 0.2484 | 1116.67 | 274100000.0 | -| XTZUSDT | 0.0002968 | 0.0007036 | 0.03422 | 0.004318 | 0.01376 | 0.01019 | 86.18 | 0.04343 | 0.0 | 0.0349 | 0.1349 | 1405.62 | 274100000.0 | -| FILUSDT | 0.0002833 | 0.0005629 | 0.0179 | 0.007188 | 0.01164 | 0.01141 | 107.5 | 0.06895 | 0.0 | 0.06364 | 0.2243 | 1151.71 | 274100000.0 | -| FOOTBALLUSDT | 0.0004453 | 0.0008388 | 0.04239 | 0.00274 | 0.006067 | 0.005272 | 89.92 | 0.03139 | 0.0 | 0.01639 | 0.0832 | 466.83 | 274100000.0 | -| PEOPLEUSDT | 9.261e-05 | 0.0002796 | 0.006344 | 0.000744 | 0.01784 | 0.01413 | 94.35 | 0.06169 | 0.0 | 0.01501 | 0.1742 | 716.79 | 274100000.0 | -| LTCUSDT | 0.0004239 | 0.0008172 | 0.03568 | 0.01718 | 0.008163 | 0.007223 | 93.82 | 0.04301 | 0.0 | 0.04347 | 0.1342 | 1432.62 | 274100000.0 | -| ARPAUSDT | 0.0004006 | 0.0007311 | 0.01622 | 0.002243 | 0.009076 | 0.007368 | 92.7 | 0.03364 | 0.0 | 0.01774 | 0.1094 | 783.83 | 274100000.0 | -| IOTXUSDT | 0.0001135 | 0.000189 | 0.007683 | 0.0018 | 0.01386 | 0.01065 | 79.87 | 0.0436 | 0.0 | 0.01722 | 0.2169 | 851.83 | 274100000.0 | -| XRPUSDT | 0.0004462 | 0.0007826 | 0.02251 | 0.00864 | 0.01329 | 0.01262 | 118.1 | 0.06752 | 0.0 | 0.06214 | 0.2049 | 1436.62 | 274100000.0 | -| ZECUSDT | 0.0004968 | 0.00103 | 0.07445 | 0.01297 | 0.01216 | 0.01405 | 116.0 | 0.08974 | 0.0 | 0.09606 | 0.1768 | 1406.62 | 274100000.0 | -| TRXUSDT | 0.0001561 | 0.0004713 | 0.02377 | 0.01088 | 0.007485 | 0.007788 | 120.1 | 0.04173 | 0.0 | 0.04091 | 0.1434 | 1427.62 | 274110000.0 | -| AVAXUSDT | 0.0005893 | 0.0009008 | 0.03411 | 0.009395 | 0.01679 | 0.01513 | 111.1 | 0.09334 | 0.0 | 0.1015 | 0.2486 | 1174.67 | 274254985.794 | -| LPTUSDT | 0.0003316 | 0.0003983 | 0.02474 | 0.0002354 | 0.01876 | 0.01774 | 125.2 | 0.09609 | 0.0 | 0.03913 | 0.1048 | 760.83 | 274615000.0 | -| BTCUSDT | 0.0001274 | 0.000103 | 0.01233 | 0.002041 | 0.01508 | 0.01018 | 129.5 | 0.04724 | 0.0 | 0.02388 | 0.08189 | 1440.96 | 275053333.333 | -| OPUSDT | 0.0003451 | 0.0006521 | 0.04095 | 0.02665 | 0.01524 | 0.01822 | 115.7 | 0.1168 | 0.0 | 0.1331 | 0.2401 | 558.38 | 277423261.118 | -| KLAYUSDT | 5.398e-05 | 7.605e-05 | 0.005308 | 0.001048 | 0.01828 | 0.01341 | 186.3 | 0.05287 | 0.0 | 0.008767 | 0.09903 | 790.83 | 280731666.667 | -| GMTUSDT | 0.0001037 | 0.0002302 | 0.007458 | 0.003788 | 0.01626 | 0.01182 | 197.1 | 0.04907 | 0.0 | 0.02014 | 0.1153 | 636.79 | 281810000.0 | -| BTCDOMUSDT | 3.559e-05 | 2.453e-05 | 0.004653 | 0.0 | 0.01382 | 0.009347 | 251.4 | 0.0351 | 0.0 | 0.00226 | 0.003842 | 903.83 | 287238333.333 | -| WAVESUSDT | 0.0003594 | 0.0004562 | 0.02497 | 0.0137 | 0.01862 | 0.01953 | 375.7 | 0.09266 | 0.0 | 0.08323 | 0.2299 | 1217.67 | 299666666.666 | -| ARUSDT | 0.0002926 | 0.0004549 | 0.02877 | 0.01335 | 0.017 | 0.01916 | 123.8 | 0.1204 | 0.0 | 0.1112 | 0.2791 | 804.83 | 304754666.197 | -| TOMOUSDT | 0.00106 | 0.0008728 | 0.02743 | 0.007513 | 0.02155 | 0.01788 | 686.8 | 0.09049 | 0.0 | 0.03591 | 0.16 | 1156.67 | 330783333.332 | -| APTUSDT | 0.0004088 | 0.0006276 | 0.04112 | 0.03012 | 0.01604 | 0.01917 | 264.6 | 0.1598 | 0.0 | 0.1902 | 0.2968 | 418.88 | 344396345.808 | -| AUDIOUSDT | 0.0001623 | 0.0003149 | 0.02921 | 0.01682 | 0.02002 | 0.02011 | 288.2 | 0.1573 | 0.0 | 0.189 | 0.3501 | 844.83 | 399991649.413 | -| USDCUSDT | 3.396e-07 | 3.297e-07 | 0.002244 | 0.0 | 70.0 | 0.7002 | 2934.0 | 0.005134 | 0.9 | 3.574e-05 | 4.336e-05 | 274.25 | 562501666.667 | -| COCOSUSDT | 6.365e-05 | 0.0006365 | 0.0227 | 0.01654 | 50.0 | 0.5065 | 4815.0 | 0.08864 | 0.5 | 0.09757 | 0.1416 | 293.38 | 746576666.667 | -| GALAUSDT | 0.0001613 | 0.0003396 | 0.03007 | 0.02542 | 0.03267 | 0.0419 | 408.5 | 0.3669 | 0.0 | 0.5828 | 0.766 | 814.83 | 867487681.177 | -| HNTUSDT | 0.0001548 | 0.0008415 | 0.058 | 0.03843 | 10.02 | 0.1284 | 6399.0 | 0.09431 | 0.1 | 0.08964 | 0.2052 | 1169.67 | 901978333.333 | -| CVCUSDT | 3.2e-05 | 0.0002776 | 0.007083 | 0.001432 | 20.01 | 0.2073 | 9063.0 | 0.03772 | 0.2 | 0.008826 | 0.157 | 1125.67 | 1168371666.67 | -| SRMUSDT | 5.831e-05 | 0.0002409 | 0.005851 | 0.001079 | 20.01 | 0.2085 | 9403.0 | 0.03971 | 0.2 | 0.01015 | 0.2244 | 1192.88 | 1202356666.67 | -| RAYUSDT | 4.26e-05 | 0.0003349 | 0.01722 | 0.007485 | 30.01 | 0.307 | 9404.0 | 0.0537 | 0.3 | 0.04367 | 0.1317 | 843.83 | 1203453333.33 | -| FTTUSDT | 7.659e-05 | 0.0007659 | 0.06474 | 0.03225 | 50.01 | 0.5074 | 9428.0 | 0.07911 | 0.5 | 0.0819 | 0.1372 | 605.83 | 1207851666.67 | -| CYBERUSDT | -0.01156 | -0.1156 | 73.14 | 0.1579 | 0.1497 | 0.07606 | 2432.0 | 1.555 | 3.102 | 1.0 | 1.0 | 112.46 | 1375995222.78 | -| BTSUSDT | 1.299e-05 | 0.000117 | 0.005396 | 0.001521 | 30.01 | 0.3093 | 11530.0 | 0.05131 | 0.3 | 0.01436 | 0.2012 | 1043.67 | 1416525000.0 | -| SCUSDT | 2.496e-05 | 0.0002496 | 0.009302 | 0.001523 | 40.01 | 0.4063 | 13020.0 | 0.05368 | 0.4 | 0.01761 | 0.1609 | 973.67 | 1566323333.33 | -| MASKUSDT | -0.00507 | -0.01637 | 121.9 | 0.2129 | 0.05571 | 0.05919 | 9715.0 | 0.5759 | 3.644 | 1.0 | 1.0 | 836.83 | 2108857332.82 | -| UNFIUSDT | -0.001337 | -0.01337 | 0.2092 | 0.1152 | 0.04892 | 0.06359 | 13270.0 | 0.4107 | 0.64 | 1.0 | 1.0 | 1026.67 | 2434295832.13 | -| BTCSTUSDT | 3.159e-06 | 3.159e-05 | 0.004996 | 0.0 | 80.0 | 0.8002 | 24120.0 | 0.005132 | 0.8 | 0.0002333 | 0.006525 | 1012.67 | 2679805000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/1000FLOKIUSDT.json deleted file mode 100644 index d1211983a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.17842658665650166, - "ema_span_0": 5, - "ema_span_1": 172.85447108642447, - "enabled": true, - "initial_eprice_ema_dist": -0.05559078820628534, - "initial_qty_pct": 0.011610772612807824, - "markup_range": 0.004717435290045319, - "min_markup": 0.009686102227960083, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0402573577203755, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31117154251246676, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9846343966411943, - "ema_span_0": 1426.8645204797178, - "ema_span_1": 1362.341599202268, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015043335054241281, - "markup_range": 0.009289260778633427, - "min_markup": 0.003124122113244021, - "n_close_orders": 5, - "rentry_pprice_dist": 0.046822290466542106, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16647331202906823, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000LUNCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/1000LUNCUSDT.json deleted file mode 100644 index 8f2c1464d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000PEPEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/1000PEPEUSDT.json deleted file mode 100644 index 85191da2d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4364410851893356, - "ema_span_0": 875.5987866494493, - "ema_span_1": 913.927902992683, - "enabled": true, - "initial_eprice_ema_dist": 0.0021207999040792056, - "initial_qty_pct": 0.010403552750297912, - "markup_range": 0.015735577647451794, - "min_markup": 0.00880504348520859, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0449849731620022, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3204750775390275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000SHIBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/1000SHIBUSDT.json deleted file mode 100644 index 00dd808bb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.584361678520924, - "ema_span_0": 551.1167115273083, - "ema_span_1": 600.533079898387, - "enabled": true, - "initial_eprice_ema_dist": -0.007455832905295011, - "initial_qty_pct": 0.014653284184452376, - "markup_range": 0.0014111565508859937, - "min_markup": 0.0020029305093319087, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029241188861559162, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2373430527716198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6911316315162889, - "ema_span_0": 1404.8312978762303, - "ema_span_1": 1420.87182753046, - "enabled": true, - "initial_eprice_ema_dist": -0.00938718495738028, - "initial_qty_pct": 0.01088859214345425, - "markup_range": 0.004569778047259771, - "min_markup": 0.008877653463957353, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03257403994063893, - "rentry_pprice_dist_wallet_exposure_weighting": 8.05842613177501, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000XECUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/1000XECUSDT.json deleted file mode 100644 index 3ee8d0d3a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3602582965020855, - "ema_span_0": 120.4797953471262, - "ema_span_1": 166.48238357350056, - "enabled": true, - "initial_eprice_ema_dist": -0.0006228758940931558, - "initial_qty_pct": 0.010462821340143235, - "markup_range": 0.0013109311712520082, - "min_markup": 0.0015988390804505073, - "n_close_orders": 8, - "rentry_pprice_dist": 0.029664661889534538, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9518215338809086, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5455786004926524, - "ema_span_0": 1338.8190643222188, - "ema_span_1": 1053.3852627888903, - "enabled": true, - "initial_eprice_ema_dist": -0.0031515908390763736, - "initial_qty_pct": 0.01383480648574903, - "markup_range": 0.0034207683729451286, - "min_markup": 0.005303933607697774, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029336786163315195, - "rentry_pprice_dist_wallet_exposure_weighting": 9.654630395909606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/1INCHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/1INCHUSDT.json deleted file mode 100644 index dc94b4ef9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4157171861713662, - "ema_span_0": 242.60634144178715, - "ema_span_1": 401.2629795926007, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999536013894483, - "initial_qty_pct": 0.01327772303805518, - "markup_range": 0.006019345595088116, - "min_markup": 0.00600499050437021, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049150333284518, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04211352072696128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AAVEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AAVEUSDT.json deleted file mode 100644 index 19774e630..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7084465089988872, - "ema_span_0": 959.0771541636914, - "ema_span_1": 1373.6296674450869, - "enabled": true, - "initial_eprice_ema_dist": 0.0029980206816356985, - "initial_qty_pct": 0.0109069399394417, - "markup_range": 0.006178271077088632, - "min_markup": 0.0024808092244747683, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04891388080108389, - "rentry_pprice_dist_wallet_exposure_weighting": 0.031084142392241037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ACHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ACHUSDT.json deleted file mode 100644 index 2e375764d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4364410851893356, - "ema_span_0": 875.5987866494493, - "ema_span_1": 913.927902992683, - "enabled": true, - "initial_eprice_ema_dist": 0.0021207999040792056, - "initial_qty_pct": 0.010403552750297912, - "markup_range": 0.015735577647451794, - "min_markup": 0.00880504348520859, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0449849731620022, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3204750775390275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5334471307267951, - "ema_span_0": 1234.5627941815458, - "ema_span_1": 1390.9489466161722, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017647219963558818, - "markup_range": 0.018265551181550523, - "min_markup": 0.009097285769915002, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0396082947171055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.111710813562418, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ADAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ADAUSDT.json deleted file mode 100644 index 33bd6b2c7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.050712060838139, - "ema_span_0": 281.0187433812133, - "ema_span_1": 1356.048173502578, - "enabled": true, - "initial_eprice_ema_dist": -0.002197396037854266, - "initial_qty_pct": 0.01010137687996034, - "markup_range": 7.743843059996673e-05, - "min_markup": 0.0020516436448160718, - "n_close_orders": 11, - "rentry_pprice_dist": 0.016562456488199616, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23460534554590445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.419328383627259, - "ema_span_0": 47.724613306860604, - "ema_span_1": 1306.4392483110332, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013799521571922794, - "markup_range": 0.006446861379119728, - "min_markup": 0.004622320494748044, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04453467751328848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.649929521825148, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AGIXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AGIXUSDT.json deleted file mode 100644 index f26c92b9f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6561378786914944, - "ema_span_0": 266.8409217173699, - "ema_span_1": 1192.1507019516525, - "enabled": true, - "initial_eprice_ema_dist": -0.007142001296309181, - "initial_qty_pct": 0.014059633459396962, - "markup_range": 0.0035383098233774395, - "min_markup": 0.002383259829557172, - "n_close_orders": 9, - "rentry_pprice_dist": 0.028204716584759912, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5979651920261344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AGLDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AGLDUSDT.json deleted file mode 100644 index 58d80518b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.336692424941889, - "ema_span_0": 728.298192918612, - "ema_span_1": 368.05706662205233, - "enabled": true, - "initial_eprice_ema_dist": 0.0029688815844064235, - "initial_qty_pct": 0.013707092114184697, - "markup_range": 0.002443121150015731, - "min_markup": 0.003574163695759272, - "n_close_orders": 16, - "rentry_pprice_dist": 0.039483864440314174, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5704867133555622, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.699741074574412, - "ema_span_0": 178.49965628285025, - "ema_span_1": 1236.0874041384286, - "enabled": true, - "initial_eprice_ema_dist": -0.0018847565219850331, - "initial_qty_pct": 0.020224579242037653, - "markup_range": 0.002364170873227417, - "min_markup": 0.004560255195901688, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03687749756373675, - "rentry_pprice_dist_wallet_exposure_weighting": 0.41971094909048146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ALGOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ALGOUSDT.json deleted file mode 100644 index 6c4f8c3f4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9267230944646332, - "ema_span_0": 1070.2235791358275, - "ema_span_1": 1072.5620617467998, - "enabled": true, - "initial_eprice_ema_dist": 0.002996387973665314, - "initial_qty_pct": 0.018510090131773998, - "markup_range": 0.00356482273509978, - "min_markup": 0.009738705411198135, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04182900564020842, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6499498558931125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ALICEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ALICEUSDT.json deleted file mode 100644 index d9aae0d34..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8238378347819745, - "ema_span_0": 72.83896499237483, - "ema_span_1": 885.0630380144197, - "enabled": true, - "initial_eprice_ema_dist": -0.03320754917813984, - "initial_qty_pct": 0.010002137107402873, - "markup_range": 0.004210213586122152, - "min_markup": 0.006514898799940132, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03501785514239262, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8629807635420719, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.546999887225846, - "ema_span_0": 1298.6295048202376, - "ema_span_1": 91.43219028070104, - "enabled": true, - "initial_eprice_ema_dist": -0.010357249707103338, - "initial_qty_pct": 0.016212769312246557, - "markup_range": 0.007581299952512202, - "min_markup": 0.009769231244046437, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04025065147077307, - "rentry_pprice_dist_wallet_exposure_weighting": 6.6242296947440655, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ALPHAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ALPHAUSDT.json deleted file mode 100644 index 05d5bcc8c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7387035737087013, - "ema_span_0": 890.9911227886728, - "ema_span_1": 1216.4021884213203, - "enabled": true, - "initial_eprice_ema_dist": -0.08982574944876029, - "initial_qty_pct": 0.01189056762005186, - "markup_range": 0.001466463951368804, - "min_markup": 0.002213920984072372, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03453707295381622, - "rentry_pprice_dist_wallet_exposure_weighting": 2.369013044054258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0871680121638936, - "ema_span_0": 858.6310991458354, - "ema_span_1": 871.5753623817261, - "enabled": true, - "initial_eprice_ema_dist": -0.00939450025971369, - "initial_qty_pct": 0.012199352455162323, - "markup_range": 0.0022069131296615896, - "min_markup": 0.0040552826803415785, - "n_close_orders": 6, - "rentry_pprice_dist": 0.046375659154572424, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8743693314501524, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AMBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AMBUSDT.json deleted file mode 100644 index d6780c1a2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1368559642467559, - "ema_span_0": 388.1395901981704, - "ema_span_1": 275.0612850941764, - "enabled": true, - "initial_eprice_ema_dist": -0.08603146329502963, - "initial_qty_pct": 0.012355829335886677, - "markup_range": 0.005464411616080121, - "min_markup": 0.008291637067372556, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03523201204867047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2172270608757754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3058460271681953, - "ema_span_0": 65.57599891366576, - "ema_span_1": 48.55584575825074, - "enabled": true, - "initial_eprice_ema_dist": -0.050789786484485885, - "initial_qty_pct": 0.013761619510484355, - "markup_range": 0.0018480702291614399, - "min_markup": 0.003391920932671798, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03887565626770108, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24059134643565705, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ANKRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ANKRUSDT.json deleted file mode 100644 index 711055dd4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.584361678520924, - "ema_span_0": 551.1167115273083, - "ema_span_1": 600.533079898387, - "enabled": true, - "initial_eprice_ema_dist": -0.007455832905295011, - "initial_qty_pct": 0.014653284184452376, - "markup_range": 0.0014111565508859937, - "min_markup": 0.0020029305093319087, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029241188861559162, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2373430527716198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5496600291443349, - "ema_span_0": 1418.165029247325, - "ema_span_1": 1299.1812839892266, - "enabled": true, - "initial_eprice_ema_dist": 0.0025563504837596016, - "initial_qty_pct": 0.017280059651797453, - "markup_range": 0.01056369131529356, - "min_markup": 0.0050861235491077884, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04144715802310261, - "rentry_pprice_dist_wallet_exposure_weighting": 7.816268775961305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ANTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ANTUSDT.json deleted file mode 100644 index 682486254..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5213428448085882, - "ema_span_0": 1016.2610693776749, - "ema_span_1": 749.6093864181287, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014218778618065543, - "markup_range": 0.0027211641924264262, - "min_markup": 0.005467249019465325, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03136839539166837, - "rentry_pprice_dist_wallet_exposure_weighting": 10.728054258455577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/APEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/APEUSDT.json deleted file mode 100644 index 71d042156..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7402610846417237, - "ema_span_0": 907.0901100936347, - "ema_span_1": 1397.9636646627, - "enabled": true, - "initial_eprice_ema_dist": 0.0014272806184822677, - "initial_qty_pct": 0.01643718382176242, - "markup_range": 0.004415712957343203, - "min_markup": 0.004212729776643347, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043031420437824194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9622617744729288, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6399850614689429, - "ema_span_0": 822.3628623735689, - "ema_span_1": 1117.7327024751312, - "enabled": true, - "initial_eprice_ema_dist": 0.00012787609904433037, - "initial_qty_pct": 0.018560749876905445, - "markup_range": 0.002614600398294017, - "min_markup": 0.00324490098295999, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030098153703345728, - "rentry_pprice_dist_wallet_exposure_weighting": 3.123977652957473, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/API3USDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/API3USDT.json deleted file mode 100644 index b4029bdb9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7387035737087013, - "ema_span_0": 890.9911227886728, - "ema_span_1": 1216.4021884213203, - "enabled": true, - "initial_eprice_ema_dist": -0.08982574944876029, - "initial_qty_pct": 0.01189056762005186, - "markup_range": 0.001466463951368804, - "min_markup": 0.002213920984072372, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03453707295381622, - "rentry_pprice_dist_wallet_exposure_weighting": 2.369013044054258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/APTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/APTUSDT.json deleted file mode 100644 index fa71fec0b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4157171861713662, - "ema_span_0": 242.60634144178715, - "ema_span_1": 401.2629795926007, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999536013894483, - "initial_qty_pct": 0.01327772303805518, - "markup_range": 0.006019345595088116, - "min_markup": 0.00600499050437021, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049150333284518, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04211352072696128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3796123605256332, - "ema_span_0": 1329.7194814110603, - "ema_span_1": 1199.3289784912201, - "enabled": true, - "initial_eprice_ema_dist": 0.0029924499869306027, - "initial_qty_pct": 0.011596981507328283, - "markup_range": 0.002641623183728599, - "min_markup": 0.004276636217878023, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04542143939715495, - "rentry_pprice_dist_wallet_exposure_weighting": 10.42199790791283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ARBUSDT.json deleted file mode 100644 index e6dfb9d85..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8519015047728429, - "ema_span_0": 756.070701325637, - "ema_span_1": 1136.9516102604841, - "enabled": true, - "initial_eprice_ema_dist": 0.0013516974912487001, - "initial_qty_pct": 0.01366755310228504, - "markup_range": 0.004070758088715231, - "min_markup": 0.0057038187873005505, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03294710231190983, - "rentry_pprice_dist_wallet_exposure_weighting": 5.236804383368756, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARKMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ARKMUSDT.json deleted file mode 100644 index 7b20c20f9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6465259418081155, - "ema_span_0": 1106.3087021463616, - "ema_span_1": 1392.197090016136, - "enabled": true, - "initial_eprice_ema_dist": 0.0029291483336787256, - "initial_qty_pct": 0.01231682613606531, - "markup_range": 0.005975153963123907, - "min_markup": 0.006986906247853072, - "n_close_orders": 13, - "rentry_pprice_dist": 0.032593065179502986, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8873753086757523, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARPAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ARPAUSDT.json deleted file mode 100644 index 62ada7dc9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3602582965020855, - "ema_span_0": 120.4797953471262, - "ema_span_1": 166.48238357350056, - "enabled": true, - "initial_eprice_ema_dist": -0.0006228758940931558, - "initial_qty_pct": 0.010462821340143235, - "markup_range": 0.0013109311712520082, - "min_markup": 0.0015988390804505073, - "n_close_orders": 8, - "rentry_pprice_dist": 0.029664661889534538, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9518215338809086, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ARUSDT.json deleted file mode 100644 index 74eb2368d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4206287172058482, - "ema_span_0": 916.4180455223837, - "ema_span_1": 1327.177889847555, - "enabled": true, - "initial_eprice_ema_dist": -0.002139994537450707, - "initial_qty_pct": 0.011384387847759147, - "markup_range": 0.004304904348260687, - "min_markup": 0.008387425922321634, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03263530569529707, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5771379152998195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ASTRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ASTRUSDT.json deleted file mode 100644 index 7dfd72e4f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8197918647722426, - "ema_span_0": 1070.1970210731674, - "ema_span_1": 968.5376546434355, - "enabled": true, - "initial_eprice_ema_dist": -0.01491107350181849, - "initial_qty_pct": 0.014960939195854462, - "markup_range": 0.005182921109395984, - "min_markup": 0.005077040157763745, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03207004661231607, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6088846984348908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ATAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ATAUSDT.json deleted file mode 100644 index a18425c80..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ATOMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ATOMUSDT.json deleted file mode 100644 index ba7a44585..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.8715694373980525, - "ema_span_0": 903.5858127977352, - "ema_span_1": 1070.3497983099367, - "enabled": true, - "initial_eprice_ema_dist": -0.0053603987866846425, - "initial_qty_pct": 0.011727127709227516, - "markup_range": 0.004452665270924936, - "min_markup": 0.009445791769598732, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04378791622228055, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0427367702911654, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AUDIOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AUDIOUSDT.json deleted file mode 100644 index e47241f75..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.450419879441086, - "ema_span_0": 34.77959091912413, - "ema_span_1": 898.1556121852162, - "enabled": true, - "initial_eprice_ema_dist": 0.0029882251599526416, - "initial_qty_pct": 0.01277250868480753, - "markup_range": 0.005712353972391207, - "min_markup": 0.0048324667377520735, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03994455783274117, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8355618921799761, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AVAXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AVAXUSDT.json deleted file mode 100644 index d2d76c7f8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6571874456196956, - "ema_span_0": 1302.4661662514673, - "ema_span_1": 1130.6440055363882, - "enabled": true, - "initial_eprice_ema_dist": 0.00279148662769641, - "initial_qty_pct": 0.01085304384167193, - "markup_range": 0.0018003765314501922, - "min_markup": 0.006216116746428605, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030742271998930277, - "rentry_pprice_dist_wallet_exposure_weighting": 1.57718446230102, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7165040534016092, - "ema_span_0": 1269.2881400948606, - "ema_span_1": 890.7171056158356, - "enabled": true, - "initial_eprice_ema_dist": -0.003373869538716226, - "initial_qty_pct": 0.010749637314908399, - "markup_range": 0.009122360158856983, - "min_markup": 0.008454061197291411, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04055806130157739, - "rentry_pprice_dist_wallet_exposure_weighting": 3.633271555588361, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/AXSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/AXSUSDT.json deleted file mode 100644 index 3af4c9873..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4847689588786186, - "ema_span_0": 76.73722069167577, - "ema_span_1": 313.6031266640233, - "enabled": true, - "initial_eprice_ema_dist": -0.006797724509078793, - "initial_qty_pct": 0.011820851377208515, - "markup_range": 0.002218599610113049, - "min_markup": 0.0027961498969030136, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04666988424221049, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4245663958832897, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BAKEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BAKEUSDT.json deleted file mode 100644 index 616b4e5fb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3935220163555802, - "ema_span_0": 647.0249800611332, - "ema_span_1": 741.024731452196, - "enabled": true, - "initial_eprice_ema_dist": -0.04078981266892904, - "initial_qty_pct": 0.011042115819131925, - "markup_range": 0.0032718149512038653, - "min_markup": 0.0014521005710930977, - "n_close_orders": 5, - "rentry_pprice_dist": 0.042313323019841684, - "rentry_pprice_dist_wallet_exposure_weighting": 9.682584206692592, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BALUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BALUSDT.json deleted file mode 100644 index b66bd22bd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BANDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BANDUSDT.json deleted file mode 100644 index a8bf0401a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.17842658665650166, - "ema_span_0": 5, - "ema_span_1": 172.85447108642447, - "enabled": true, - "initial_eprice_ema_dist": -0.05559078820628534, - "initial_qty_pct": 0.011610772612807824, - "markup_range": 0.004717435290045319, - "min_markup": 0.009686102227960083, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0402573577203755, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31117154251246676, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.959657442980144, - "ema_span_0": 375.788031772322, - "ema_span_1": 1047.8890835682205, - "enabled": true, - "initial_eprice_ema_dist": 0.002907707549958173, - "initial_qty_pct": 0.01632218960811854, - "markup_range": 0.00608437556694511, - "min_markup": 0.002962637570014331, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987616821022601, - "rentry_pprice_dist_wallet_exposure_weighting": 8.538001207612837, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BATUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BATUSDT.json deleted file mode 100644 index 55148fbc4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5135099892341798, - "ema_span_0": 493.1419438529048, - "ema_span_1": 214.02974143173734, - "enabled": true, - "initial_eprice_ema_dist": -0.00034933359096181405, - "initial_qty_pct": 0.010607672302767488, - "markup_range": 0.0053964181418952595, - "min_markup": 0.004825311355218688, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03875804691630964, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9943793633430253, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6399850614689429, - "ema_span_0": 822.3628623735689, - "ema_span_1": 1117.7327024751312, - "enabled": true, - "initial_eprice_ema_dist": 0.00012787609904433037, - "initial_qty_pct": 0.018560749876905445, - "markup_range": 0.002614600398294017, - "min_markup": 0.00324490098295999, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030098153703345728, - "rentry_pprice_dist_wallet_exposure_weighting": 3.123977652957473, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BCHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BCHUSDT.json deleted file mode 100644 index 404bb76b8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7472045767660662, - "ema_span_0": 30.874651801279892, - "ema_span_1": 8.028446686306493, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011477507528279826, - "markup_range": 0.0016014639840215288, - "min_markup": 0.0020753141394819702, - "n_close_orders": 3, - "rentry_pprice_dist": 0.015261469106299717, - "rentry_pprice_dist_wallet_exposure_weighting": 6.369273737739446, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BELUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BELUSDT.json deleted file mode 100644 index cd90a1438..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3265074136269033, - "ema_span_0": 19.54739613158498, - "ema_span_1": 811.834367761141, - "enabled": true, - "initial_eprice_ema_dist": 0.0008081283426164052, - "initial_qty_pct": 0.015103757288504882, - "markup_range": 0.0, - "min_markup": 0.006921572544421382, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03678892840061904, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9424281750354018, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4566258750406571, - "ema_span_0": 1377.6398325756124, - "ema_span_1": 1304.2068503308053, - "enabled": true, - "initial_eprice_ema_dist": -0.0005715828530609974, - "initial_qty_pct": 0.012490469535285199, - "markup_range": 0.005311891421294039, - "min_markup": 0.00850279515143508, - "n_close_orders": 8, - "rentry_pprice_dist": 0.041461012820315224, - "rentry_pprice_dist_wallet_exposure_weighting": 13.711683488051435, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BLUEBIRDUSDT.json deleted file mode 100644 index 1ad1611ab..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.583886909265108, - "ema_span_0": 160.2036035044118, - "ema_span_1": 161.1513428941748, - "enabled": true, - "initial_eprice_ema_dist": 0.001975371600870204, - "initial_qty_pct": 0.022019390665189167, - "markup_range": 0.0029887140873306674, - "min_markup": 0.0014758996981031416, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02118506710915445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1108815725309518, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.110106467530348, - "ema_span_0": 973.4229873749248, - "ema_span_1": 958.1541188866846, - "enabled": true, - "initial_eprice_ema_dist": 0.0029977806557525254, - "initial_qty_pct": 0.016324738674111442, - "markup_range": 0.0011043535036331087, - "min_markup": 0.002489943802584134, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02709430582868433, - "rentry_pprice_dist_wallet_exposure_weighting": 11.500513836921657, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BLURUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BLURUSDT.json deleted file mode 100644 index 95834d3e8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.658457003518225, - "ema_span_0": 347.44896532233116, - "ema_span_1": 207.72484986607017, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011028312962298125, - "markup_range": 0.0074260491409747645, - "min_markup": 0.0072619976973722815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.032935101737063315, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7582899027246691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1963320619809854, - "ema_span_0": 473.7639303589238, - "ema_span_1": 382.4932985178262, - "enabled": true, - "initial_eprice_ema_dist": -0.005456890994231539, - "initial_qty_pct": 0.023127245602966914, - "markup_range": 0.004599570704888304, - "min_markup": 0.004849288520329851, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0341002107351647, - "rentry_pprice_dist_wallet_exposure_weighting": 4.795798726471229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BLZUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BLZUSDT.json deleted file mode 100644 index e1a7a2f71..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49962014508857006, - "ema_span_0": 662.423079765778, - "ema_span_1": 1215.0589605891234, - "enabled": true, - "initial_eprice_ema_dist": -0.008404526133162745, - "initial_qty_pct": 0.014617788347835654, - "markup_range": 0.003090982575626991, - "min_markup": 0.00523214715059894, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04756984014984003, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4799236109832203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1187794606138204, - "ema_span_0": 450.01643250329363, - "ema_span_1": 348.63506308351833, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012189402273288562, - "markup_range": 0.001186379267745228, - "min_markup": 0.007899693077889937, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04996959933677691, - "rentry_pprice_dist_wallet_exposure_weighting": 9.758195296804647, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BNBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BNBUSDT.json deleted file mode 100644 index fa57dac03..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.641105065445331, - "ema_span_0": 223.3656789193975, - "ema_span_1": 420.825621657577, - "enabled": true, - "initial_eprice_ema_dist": 0.0019387769321913032, - "initial_qty_pct": 0.01006136206888639, - "markup_range": 0.0021039473592487363, - "min_markup": 0.00334737784062914, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02133091555341278, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6212179043049343, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BNTUSDT.json deleted file mode 100644 index 6a9735348..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5183402852509222, - "ema_span_0": 1333.683905970394, - "ema_span_1": 1014.5793553488094, - "enabled": true, - "initial_eprice_ema_dist": -0.01492353156039376, - "initial_qty_pct": 0.01187257343223744, - "markup_range": 0.004412248741813769, - "min_markup": 0.004061242946623552, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02381089441968036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8109665034711503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9263493244927148, - "ema_span_0": 118.55050140006173, - "ema_span_1": 26.177201866394913, - "enabled": true, - "initial_eprice_ema_dist": 0.0025358417694928597, - "initial_qty_pct": 0.013336774243411415, - "markup_range": 0.001532440082328491, - "min_markup": 0.009942677716086415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.049482671180504555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3841564123775789, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BNXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BNXUSDT.json deleted file mode 100644 index 4bc45a460..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3523297308106912, - "ema_span_0": 638.7118049632558, - "ema_span_1": 523.1463352496196, - "enabled": true, - "initial_eprice_ema_dist": 0.0023438156999420505, - "initial_qty_pct": 0.01325073140410782, - "markup_range": 0.009242900767382675, - "min_markup": 0.007855349930017255, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04432781053949351, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3382441768820437, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCDOMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCDOMUSDT.json deleted file mode 100644 index 98647c48e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2297117872115364, - "ema_span_0": 666.9352875365897, - "ema_span_1": 258.7932713649857, - "enabled": true, - "initial_eprice_ema_dist": 0.0029561243159410065, - "initial_qty_pct": 0.012768047878831668, - "markup_range": 0.0009141991898108719, - "min_markup": 0.002594754817460753, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02038355697089794, - "rentry_pprice_dist_wallet_exposure_weighting": 0.027928595165659396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCSTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCSTUSDT.json deleted file mode 100644 index 7c02fc46e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1390500852526395, - "ema_span_0": 979.7392681008872, - "ema_span_1": 972.4684243898562, - "enabled": true, - "initial_eprice_ema_dist": -0.0542651168403518, - "initial_qty_pct": 0.016531874523208867, - "markup_range": 0.006125441040561773, - "min_markup": 0.001890345945629892, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02960336647761808, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9618771133103885, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCUSDT.json deleted file mode 100644 index 926eee648..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.213923970776044, - "ema_span_0": 1149.3450683159158, - "ema_span_1": 46.2055349986496, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012253263285469664, - "markup_range": 0.0008248254259328559, - "min_markup": 0.0016640550227731096, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04127875985649038, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4275679758513373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/BTSUSDT.json deleted file mode 100644 index a19f82a23..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49477771234476997, - "ema_span_0": 7.884150355842895, - "ema_span_1": 831.5145434298151, - "enabled": true, - "initial_eprice_ema_dist": -0.005319000244021655, - "initial_qty_pct": 0.017299945403047304, - "markup_range": 0.004142259570842666, - "min_markup": 0.005527660431443756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 7.76992152421835, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/C98USDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/C98USDT.json deleted file mode 100644 index a7d63cd6c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2381738950778187, - "ema_span_0": 155.7709927457189, - "ema_span_1": 1260.3397032117737, - "enabled": true, - "initial_eprice_ema_dist": 0.002997139129821119, - "initial_qty_pct": 0.013112161210005678, - "markup_range": 0.002828780575893693, - "min_markup": 0.002629647994916009, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04999959905525485, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0473412697989235, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.546999887225846, - "ema_span_0": 1298.6295048202376, - "ema_span_1": 91.43219028070104, - "enabled": true, - "initial_eprice_ema_dist": -0.010357249707103338, - "initial_qty_pct": 0.016212769312246557, - "markup_range": 0.007581299952512202, - "min_markup": 0.009769231244046437, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04025065147077307, - "rentry_pprice_dist_wallet_exposure_weighting": 6.6242296947440655, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CELOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CELOUSDT.json deleted file mode 100644 index 921a2abbe..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7278018862720588, - "ema_span_0": 442.5278043429042, - "ema_span_1": 1233.5035187936535, - "enabled": true, - "initial_eprice_ema_dist": 0.0029054035971957494, - "initial_qty_pct": 0.01248522372437879, - "markup_range": 0.002149347095369211, - "min_markup": 0.0054203408641198625, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04372925459517494, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4789682712063503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CELRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CELRUSDT.json deleted file mode 100644 index fb16d4d8d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8091123082798806, - "ema_span_0": 1358.572775373062, - "ema_span_1": 1041.5614546048996, - "enabled": true, - "initial_eprice_ema_dist": -0.0017236778343106749, - "initial_qty_pct": 0.010702834275615204, - "markup_range": 0.0005799934587062832, - "min_markup": 0.0036399693960437645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027195074014125922, - "rentry_pprice_dist_wallet_exposure_weighting": 3.451551087413407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8197918647722426, - "ema_span_0": 1070.1970210731674, - "ema_span_1": 968.5376546434355, - "enabled": true, - "initial_eprice_ema_dist": -0.01491107350181849, - "initial_qty_pct": 0.014960939195854462, - "markup_range": 0.005182921109395984, - "min_markup": 0.005077040157763745, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03207004661231607, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6088846984348908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CFXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CFXUSDT.json deleted file mode 100644 index 6f6c02daa..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2176690339004235, - "ema_span_0": 624.712046541063, - "ema_span_1": 348.61457272862015, - "enabled": true, - "initial_eprice_ema_dist": 0.00280877930697983, - "initial_qty_pct": 0.012205043322424959, - "markup_range": 0.005356847847614142, - "min_markup": 0.005895269455621546, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04937529900356751, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7321029769275491, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CHRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CHRUSDT.json deleted file mode 100644 index 3ff01c854..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 93.8377363654618, - "ema_span_1": 47.769507922020246, - "enabled": true, - "initial_eprice_ema_dist": 0.0029182340883575505, - "initial_qty_pct": 0.013284797031623585, - "markup_range": 0.005067556997663903, - "min_markup": 0.008721697994701487, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03613211478301597, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3547292688181615, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CHZUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CHZUSDT.json deleted file mode 100644 index 9f69483ee..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49477771234476997, - "ema_span_0": 7.884150355842895, - "ema_span_1": 831.5145434298151, - "enabled": true, - "initial_eprice_ema_dist": -0.005319000244021655, - "initial_qty_pct": 0.017299945403047304, - "markup_range": 0.004142259570842666, - "min_markup": 0.005527660431443756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 7.76992152421835, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CKBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CKBUSDT.json deleted file mode 100644 index 2ec69bba8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 93.8377363654618, - "ema_span_1": 47.769507922020246, - "enabled": true, - "initial_eprice_ema_dist": 0.0029182340883575505, - "initial_qty_pct": 0.013284797031623585, - "markup_range": 0.005067556997663903, - "min_markup": 0.008721697994701487, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03613211478301597, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3547292688181615, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/COCOSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/COCOSUSDT.json deleted file mode 100644 index 915cf61ca..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/COMBOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/COMBOUSDT.json deleted file mode 100644 index 9f709d124..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.658457003518225, - "ema_span_0": 347.44896532233116, - "ema_span_1": 207.72484986607017, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011028312962298125, - "markup_range": 0.0074260491409747645, - "min_markup": 0.0072619976973722815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.032935101737063315, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7582899027246691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/COMPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/COMPUSDT.json deleted file mode 100644 index a2a5bcdcb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6359521481225742, - "ema_span_0": 675.7653150075105, - "ema_span_1": 1245.8970999412052, - "enabled": true, - "initial_eprice_ema_dist": -0.0002331656409676974, - "initial_qty_pct": 0.02088837671181572, - "markup_range": 0.0025497687367048894, - "min_markup": 0.008296441323430388, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03650955469993642, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3681201805538916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/COTIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/COTIUSDT.json deleted file mode 100644 index 6e320c734..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.10512501333640797, - "ema_span_0": 1230.170917846426, - "ema_span_1": 894.1221537134414, - "enabled": true, - "initial_eprice_ema_dist": -0.09999788026190166, - "initial_qty_pct": 0.01274889249218608, - "markup_range": 0.0046199592271502846, - "min_markup": 0.0031514524286734894, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03171116248970977, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5600556598055996, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9502183749089206, - "ema_span_0": 863.7700022067526, - "ema_span_1": 916.6164024031077, - "enabled": true, - "initial_eprice_ema_dist": 0.002999529863746819, - "initial_qty_pct": 0.013219688132044606, - "markup_range": 0.003955636296357747, - "min_markup": 0.0038252476236090914, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048924354416137364, - "rentry_pprice_dist_wallet_exposure_weighting": 18.09511521899609, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CRVUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CRVUSDT.json deleted file mode 100644 index 452b579df..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1736542384581994, - "ema_span_0": 1111.127771408782, - "ema_span_1": 1051.1491474659954, - "enabled": true, - "initial_eprice_ema_dist": -0.0017838848750858882, - "initial_qty_pct": 0.012690558976674282, - "markup_range": 0.003156322778575609, - "min_markup": 0.00526279453190407, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03174383273755451, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8645431707443696, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.924723341208564, - "ema_span_0": 558.7304009098353, - "ema_span_1": 982.5829671149361, - "enabled": true, - "initial_eprice_ema_dist": 0.002609404643086778, - "initial_qty_pct": 0.014736493740955491, - "markup_range": 0.0075691437339974275, - "min_markup": 0.004603427202943657, - "n_close_orders": 6, - "rentry_pprice_dist": 0.042136448986262634, - "rentry_pprice_dist_wallet_exposure_weighting": 9.902435290268455, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CTKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CTKUSDT.json deleted file mode 100644 index 9b967a0f2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.658457003518225, - "ema_span_0": 347.44896532233116, - "ema_span_1": 207.72484986607017, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011028312962298125, - "markup_range": 0.0074260491409747645, - "min_markup": 0.0072619976973722815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.032935101737063315, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7582899027246691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.41585639315693257, - "ema_span_0": 467.63167549776625, - "ema_span_1": 595.1837365265421, - "enabled": true, - "initial_eprice_ema_dist": -0.013645544399180337, - "initial_qty_pct": 0.012381390146376544, - "markup_range": 0.0018531670849010209, - "min_markup": 0.005137894896539731, - "n_close_orders": 6, - "rentry_pprice_dist": 0.028125281301634452, - "rentry_pprice_dist_wallet_exposure_weighting": 14.04576533491798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CTSIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CTSIUSDT.json deleted file mode 100644 index a9dc11d82..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3184438759788943, - "ema_span_0": 220.6253022373511, - "ema_span_1": 1121.3049082444154, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015238554422208, - "markup_range": 0.006256762369543269, - "min_markup": 0.0056165848326883575, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04666386069529587, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07544656025106579, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CVCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CVCUSDT.json deleted file mode 100644 index 170574882..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.920058955902206, - "ema_span_0": 225.70030866407188, - "ema_span_1": 1004.6283690728403, - "enabled": true, - "initial_eprice_ema_dist": -0.010854661595498919, - "initial_qty_pct": 0.01008556993602723, - "markup_range": 0.00019686478267776108, - "min_markup": 0.0028270617363223833, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03818980199392528, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039234684545597, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CVXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CVXUSDT.json deleted file mode 100644 index 12e8ab40b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7402610846417237, - "ema_span_0": 907.0901100936347, - "ema_span_1": 1397.9636646627, - "enabled": true, - "initial_eprice_ema_dist": 0.0014272806184822677, - "initial_qty_pct": 0.01643718382176242, - "markup_range": 0.004415712957343203, - "min_markup": 0.004212729776643347, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043031420437824194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9622617744729288, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/CYBERUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/CYBERUSDT.json deleted file mode 100644 index 0274886da..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9502183749089206, - "ema_span_0": 863.7700022067526, - "ema_span_1": 916.6164024031077, - "enabled": true, - "initial_eprice_ema_dist": 0.002999529863746819, - "initial_qty_pct": 0.013219688132044606, - "markup_range": 0.003955636296357747, - "min_markup": 0.0038252476236090914, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048924354416137364, - "rentry_pprice_dist_wallet_exposure_weighting": 18.09511521899609, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DARUSDT.json deleted file mode 100644 index 4525b447b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8091123082798806, - "ema_span_0": 1358.572775373062, - "ema_span_1": 1041.5614546048996, - "enabled": true, - "initial_eprice_ema_dist": -0.0017236778343106749, - "initial_qty_pct": 0.010702834275615204, - "markup_range": 0.0005799934587062832, - "min_markup": 0.0036399693960437645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027195074014125922, - "rentry_pprice_dist_wallet_exposure_weighting": 3.451551087413407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9727604077664379, - "ema_span_0": 318.22426771510743, - "ema_span_1": 858.2989883328457, - "enabled": true, - "initial_eprice_ema_dist": -0.0025575877568094056, - "initial_qty_pct": 0.011770313126978446, - "markup_range": 0.0029772007734779568, - "min_markup": 0.008819296503460462, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032609119614941555, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0098679892922675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DASHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DASHUSDT.json deleted file mode 100644 index e70869bc8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5213428448085882, - "ema_span_0": 1016.2610693776749, - "ema_span_1": 749.6093864181287, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014218778618065543, - "markup_range": 0.0027211641924264262, - "min_markup": 0.005467249019465325, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03136839539166837, - "rentry_pprice_dist_wallet_exposure_weighting": 10.728054258455577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1963320619809854, - "ema_span_0": 473.7639303589238, - "ema_span_1": 382.4932985178262, - "enabled": true, - "initial_eprice_ema_dist": -0.005456890994231539, - "initial_qty_pct": 0.023127245602966914, - "markup_range": 0.004599570704888304, - "min_markup": 0.004849288520329851, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0341002107351647, - "rentry_pprice_dist_wallet_exposure_weighting": 4.795798726471229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DEFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DEFIUSDT.json deleted file mode 100644 index 80a15f679..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9458689071676201, - "ema_span_0": 212.73993000907225, - "ema_span_1": 882.340759214176, - "enabled": true, - "initial_eprice_ema_dist": -0.037981021866383996, - "initial_qty_pct": 0.01912235814460299, - "markup_range": 0.005482475940580243, - "min_markup": 0.004766679484210271, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04504477924770627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7587601804803278, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6465259418081155, - "ema_span_0": 1106.3087021463616, - "ema_span_1": 1392.197090016136, - "enabled": true, - "initial_eprice_ema_dist": 0.0029291483336787256, - "initial_qty_pct": 0.01231682613606531, - "markup_range": 0.005975153963123907, - "min_markup": 0.006986906247853072, - "n_close_orders": 13, - "rentry_pprice_dist": 0.032593065179502986, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8873753086757523, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DENTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DENTUSDT.json deleted file mode 100644 index a7e55305e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5697631809055101, - "ema_span_0": 1017.825618597538, - "ema_span_1": 418.95318096409284, - "enabled": true, - "initial_eprice_ema_dist": -0.009959214011215816, - "initial_qty_pct": 0.010756910779543308, - "markup_range": 0.0010026897320589037, - "min_markup": 0.0022596132886762155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02727058405105273, - "rentry_pprice_dist_wallet_exposure_weighting": 3.01079171867751, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.007409972139902, - "ema_span_0": 536.4828491360819, - "ema_span_1": 1038.3872390032402, - "enabled": true, - "initial_eprice_ema_dist": 0.002999984880479396, - "initial_qty_pct": 0.018599518982439882, - "markup_range": 0.0038675946326847026, - "min_markup": 0.00405450529690819, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037605622856722656, - "rentry_pprice_dist_wallet_exposure_weighting": 4.498966044925662, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DGBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DGBUSDT.json deleted file mode 100644 index ad0b476a0..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8091123082798806, - "ema_span_0": 1358.572775373062, - "ema_span_1": 1041.5614546048996, - "enabled": true, - "initial_eprice_ema_dist": -0.0017236778343106749, - "initial_qty_pct": 0.010702834275615204, - "markup_range": 0.0005799934587062832, - "min_markup": 0.0036399693960437645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027195074014125922, - "rentry_pprice_dist_wallet_exposure_weighting": 3.451551087413407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DODOXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DODOXUSDT.json deleted file mode 100644 index 96d783d2c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.050712060838139, - "ema_span_0": 281.0187433812133, - "ema_span_1": 1356.048173502578, - "enabled": true, - "initial_eprice_ema_dist": -0.002197396037854266, - "initial_qty_pct": 0.01010137687996034, - "markup_range": 7.743843059996673e-05, - "min_markup": 0.0020516436448160718, - "n_close_orders": 11, - "rentry_pprice_dist": 0.016562456488199616, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23460534554590445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DOGEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DOGEUSDT.json deleted file mode 100644 index 512f33df2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.583886909265108, - "ema_span_0": 160.2036035044118, - "ema_span_1": 161.1513428941748, - "enabled": true, - "initial_eprice_ema_dist": 0.001975371600870204, - "initial_qty_pct": 0.022019390665189167, - "markup_range": 0.0029887140873306674, - "min_markup": 0.0014758996981031416, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02118506710915445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1108815725309518, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3354911473096258, - "ema_span_0": 427.1576939480485, - "ema_span_1": 1062.992213692943, - "enabled": true, - "initial_eprice_ema_dist": 0.0019027916010839817, - "initial_qty_pct": 0.011305274576516524, - "markup_range": 0.0030618075209961518, - "min_markup": 0.004735581286202342, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03572147163752197, - "rentry_pprice_dist_wallet_exposure_weighting": 1.068729968328676, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DOTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DOTUSDT.json deleted file mode 100644 index 2484a6e13..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.842363031737599, - "ema_span_0": 1231.6978092290967, - "ema_span_1": 1227.8071121499408, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.036874428656762895, - "markup_range": 0.0007046697254697353, - "min_markup": 0.00510463377037829, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04174732494831719, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6784078716187707, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DUSKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DUSKUSDT.json deleted file mode 100644 index 1df416ca1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9037680636823774, - "ema_span_0": 292.01345655020276, - "ema_span_1": 981.9064530850376, - "enabled": true, - "initial_eprice_ema_dist": -0.0027514804087228695, - "initial_qty_pct": 0.016802507642199902, - "markup_range": 0.003266383199468367, - "min_markup": 0.007860344824913282, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03695306857268699, - "rentry_pprice_dist_wallet_exposure_weighting": 2.543165253920329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/DYDXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/DYDXUSDT.json deleted file mode 100644 index 23b55d4b4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/EDUUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/EDUUSDT.json deleted file mode 100644 index e71a5aeb3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.994834190251998, - "ema_span_0": 756.5628616931731, - "ema_span_1": 1129.9126126341366, - "enabled": true, - "initial_eprice_ema_dist": 0.002541615311706566, - "initial_qty_pct": 0.020818301591062308, - "markup_range": 6.939723751879763e-08, - "min_markup": 0.005095337234902401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047593800710765855, - "rentry_pprice_dist_wallet_exposure_weighting": 0.028196202939589198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/EGLDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/EGLDUSDT.json deleted file mode 100644 index b82386faa..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.45815304501212084, - "ema_span_0": 1346.6111581656703, - "ema_span_1": 277.38625226891634, - "enabled": true, - "initial_eprice_ema_dist": 0.00299839983534436, - "initial_qty_pct": 0.03806552283437614, - "markup_range": 0.005478861332473872, - "min_markup": 0.005141572454463575, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03955303053898913, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6973918350757247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3795268996680963, - "ema_span_0": 550.8417700994066, - "ema_span_1": 310.0126050755299, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01357933002909171, - "markup_range": 0.001435824368842437, - "min_markup": 0.004854080186291205, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04712569821652253, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04979863420908983, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ENJUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ENJUSDT.json deleted file mode 100644 index d45a2904e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4157171861713662, - "ema_span_0": 242.60634144178715, - "ema_span_1": 401.2629795926007, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999536013894483, - "initial_qty_pct": 0.01327772303805518, - "markup_range": 0.006019345595088116, - "min_markup": 0.00600499050437021, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049150333284518, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04211352072696128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ENSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ENSUSDT.json deleted file mode 100644 index 91f8adece..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4206287172058482, - "ema_span_0": 916.4180455223837, - "ema_span_1": 1327.177889847555, - "enabled": true, - "initial_eprice_ema_dist": -0.002139994537450707, - "initial_qty_pct": 0.011384387847759147, - "markup_range": 0.004304904348260687, - "min_markup": 0.008387425922321634, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03263530569529707, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5771379152998195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/EOSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/EOSUSDT.json deleted file mode 100644 index d415391eb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6561378786914944, - "ema_span_0": 266.8409217173699, - "ema_span_1": 1192.1507019516525, - "enabled": true, - "initial_eprice_ema_dist": -0.007142001296309181, - "initial_qty_pct": 0.014059633459396962, - "markup_range": 0.0035383098233774395, - "min_markup": 0.002383259829557172, - "n_close_orders": 9, - "rentry_pprice_dist": 0.028204716584759912, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5979651920261344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ETCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ETCUSDT.json deleted file mode 100644 index adacdb496..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9390315438858343, - "ema_span_0": 586.69506354118, - "ema_span_1": 617.5614059154349, - "enabled": true, - "initial_eprice_ema_dist": -0.0017324196368964523, - "initial_qty_pct": 0.011234310693666576, - "markup_range": 0.00020777137490732305, - "min_markup": 0.0027967951796243236, - "n_close_orders": 11, - "rentry_pprice_dist": 0.022897123165029638, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8625515893077829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.335553001117989, - "ema_span_0": 336.0173715906813, - "ema_span_1": 77.1241932882877, - "enabled": true, - "initial_eprice_ema_dist": 0.00227004327393144, - "initial_qty_pct": 0.011960836566301945, - "markup_range": 0.0038586705167789875, - "min_markup": 0.003408185831895334, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03263622581275435, - "rentry_pprice_dist_wallet_exposure_weighting": 6.9529811252712985, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ETHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ETHUSDT.json deleted file mode 100644 index 955f729f8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9780311851406476, - "ema_span_0": 312.50740245066567, - "ema_span_1": 417.6607338324698, - "enabled": true, - "initial_eprice_ema_dist": 0.00192763985788516, - "initial_qty_pct": 0.015477850727412689, - "markup_range": 0.0, - "min_markup": 0.0031868877845640533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.016199446887888623, - "rentry_pprice_dist_wallet_exposure_weighting": 1.586630651746572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.747561209412007, - "ema_span_0": 225.11161118090456, - "ema_span_1": 1252.4883755499727, - "enabled": true, - "initial_eprice_ema_dist": 0.0029901989651158036, - "initial_qty_pct": 0.011005695321813702, - "markup_range": 0.0037722790945919626, - "min_markup": 0.0024966973045852793, - "n_close_orders": 4, - "rentry_pprice_dist": 0.020103823052974777, - "rentry_pprice_dist_wallet_exposure_weighting": 6.312510528233905, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FETUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FETUSDT.json deleted file mode 100644 index d8c5f62dd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9458689071676201, - "ema_span_0": 212.73993000907225, - "ema_span_1": 882.340759214176, - "enabled": true, - "initial_eprice_ema_dist": -0.037981021866383996, - "initial_qty_pct": 0.01912235814460299, - "markup_range": 0.005482475940580243, - "min_markup": 0.004766679484210271, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04504477924770627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7587601804803278, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.374271568198962, - "ema_span_0": 163.28690009893245, - "ema_span_1": 1233.029272335783, - "enabled": true, - "initial_eprice_ema_dist": 0.0007626165567584787, - "initial_qty_pct": 0.02217543297206493, - "markup_range": 0.0044300985119658225, - "min_markup": 0.0023490418173568277, - "n_close_orders": 4, - "rentry_pprice_dist": 0.035990764826345445, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7162532604198364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FILUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FILUSDT.json deleted file mode 100644 index 6c64f8152..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6820234314032104, - "ema_span_0": 1207.0411656378922, - "ema_span_1": 1213.9740594953105, - "enabled": true, - "initial_eprice_ema_dist": 0.002843730659104161, - "initial_qty_pct": 0.013581260472187433, - "markup_range": 0.0013206259460842135, - "min_markup": 0.004055580079786484, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01594382493607837, - "rentry_pprice_dist_wallet_exposure_weighting": 7.480941554654492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.297885882785144, - "ema_span_0": 118.89243775407233, - "ema_span_1": 882.6715634616128, - "enabled": true, - "initial_eprice_ema_dist": -0.0007555397650042811, - "initial_qty_pct": 0.011770311046768792, - "markup_range": 0.0026261004278800874, - "min_markup": 0.004595253309558112, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04099621026213019, - "rentry_pprice_dist_wallet_exposure_weighting": 16.90647783918404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FLMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FLMUSDT.json deleted file mode 100644 index b70015666..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.21155553819479, - "ema_span_0": 760.8861341175993, - "ema_span_1": 1230.3412726627334, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01546217611586069, - "markup_range": 0.003512257157953961, - "min_markup": 0.0077470006321580555, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049247338352128876, - "rentry_pprice_dist_wallet_exposure_weighting": 10.146636774563685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FLOWUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FLOWUSDT.json deleted file mode 100644 index 7354153d2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2646687799240333, - "ema_span_0": 853.1522914702002, - "ema_span_1": 894.8866869570534, - "enabled": true, - "initial_eprice_ema_dist": -0.0053883632103486085, - "initial_qty_pct": 0.010880891090260329, - "markup_range": 0.009003151073093912, - "min_markup": 0.009384396637792822, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04997183687519014, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5171335640096635, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5455786004926524, - "ema_span_0": 1338.8190643222188, - "ema_span_1": 1053.3852627888903, - "enabled": true, - "initial_eprice_ema_dist": -0.0031515908390763736, - "initial_qty_pct": 0.01383480648574903, - "markup_range": 0.0034207683729451286, - "min_markup": 0.005303933607697774, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029336786163315195, - "rentry_pprice_dist_wallet_exposure_weighting": 9.654630395909606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FOOTBALLUSDT.json deleted file mode 100644 index 845976cac..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FTMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FTMUSDT.json deleted file mode 100644 index b762a1d3a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FTTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FTTUSDT.json deleted file mode 100644 index e625405b7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1649207832787436, - "ema_span_0": 210.25721798782686, - "ema_span_1": 463.383458345308, - "enabled": true, - "initial_eprice_ema_dist": -0.002264901785342703, - "initial_qty_pct": 0.010160385941617521, - "markup_range": 0.0011159678228329884, - "min_markup": 0.003937308792079468, - "n_close_orders": 7, - "rentry_pprice_dist": 0.047500939971454846, - "rentry_pprice_dist_wallet_exposure_weighting": 9.685909411916949, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/FXSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/FXSUSDT.json deleted file mode 100644 index 8d909e8e0..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2176690339004235, - "ema_span_0": 624.712046541063, - "ema_span_1": 348.61457272862015, - "enabled": true, - "initial_eprice_ema_dist": 0.00280877930697983, - "initial_qty_pct": 0.012205043322424959, - "markup_range": 0.005356847847614142, - "min_markup": 0.005895269455621546, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04937529900356751, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7321029769275491, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/GALAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/GALAUSDT.json deleted file mode 100644 index ee9ff0b65..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9923094946854248, - "ema_span_0": 976.3749679220568, - "ema_span_1": 185.7715602240638, - "enabled": true, - "initial_eprice_ema_dist": 0.001896756049282583, - "initial_qty_pct": 0.021329500562159383, - "markup_range": 0.0017140919685301314, - "min_markup": 0.0026128204307088727, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03283916682909888, - "rentry_pprice_dist_wallet_exposure_weighting": 0.101409826221652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.110106467530348, - "ema_span_0": 973.4229873749248, - "ema_span_1": 958.1541188866846, - "enabled": true, - "initial_eprice_ema_dist": 0.0029977806557525254, - "initial_qty_pct": 0.016324738674111442, - "markup_range": 0.0011043535036331087, - "min_markup": 0.002489943802584134, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02709430582868433, - "rentry_pprice_dist_wallet_exposure_weighting": 11.500513836921657, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/GALUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/GALUSDT.json deleted file mode 100644 index 4eee5dfd7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/GMTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/GMTUSDT.json deleted file mode 100644 index 5907403d2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/GMXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/GMXUSDT.json deleted file mode 100644 index dd8a1c85e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.167595655161588, - "ema_span_0": 670.0500831849777, - "ema_span_1": 1314.9848751881473, - "enabled": true, - "initial_eprice_ema_dist": 0.0017552271961483086, - "initial_qty_pct": 0.014479782312822848, - "markup_range": 0.006247725263843084, - "min_markup": 0.005195238935110349, - "n_close_orders": 12, - "rentry_pprice_dist": 0.022111094066342655, - "rentry_pprice_dist_wallet_exposure_weighting": 4.697786483294389, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/GRTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/GRTUSDT.json deleted file mode 100644 index f6bffdd86..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1368559642467559, - "ema_span_0": 388.1395901981704, - "ema_span_1": 275.0612850941764, - "enabled": true, - "initial_eprice_ema_dist": -0.08603146329502963, - "initial_qty_pct": 0.012355829335886677, - "markup_range": 0.005464411616080121, - "min_markup": 0.008291637067372556, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03523201204867047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2172270608757754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.954119463453377, - "ema_span_0": 622.4208572856963, - "ema_span_1": 1354.1644510245915, - "enabled": true, - "initial_eprice_ema_dist": -0.00526472918788522, - "initial_qty_pct": 0.013658243362644571, - "markup_range": 0.00695354257700864, - "min_markup": 0.005332038621022663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036084549507473494, - "rentry_pprice_dist_wallet_exposure_weighting": 2.296498077184323, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/GTCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/GTCUSDT.json deleted file mode 100644 index d853da8bd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/HBARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/HBARUSDT.json deleted file mode 100644 index 092d54e41..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2297117872115364, - "ema_span_0": 666.9352875365897, - "ema_span_1": 258.7932713649857, - "enabled": true, - "initial_eprice_ema_dist": 0.0029561243159410065, - "initial_qty_pct": 0.012768047878831668, - "markup_range": 0.0009141991898108719, - "min_markup": 0.002594754817460753, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02038355697089794, - "rentry_pprice_dist_wallet_exposure_weighting": 0.027928595165659396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.007409972139902, - "ema_span_0": 536.4828491360819, - "ema_span_1": 1038.3872390032402, - "enabled": true, - "initial_eprice_ema_dist": 0.002999984880479396, - "initial_qty_pct": 0.018599518982439882, - "markup_range": 0.0038675946326847026, - "min_markup": 0.00405450529690819, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037605622856722656, - "rentry_pprice_dist_wallet_exposure_weighting": 4.498966044925662, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/HFTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/HFTUSDT.json deleted file mode 100644 index fc69e6134..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.438778138303399, - "ema_span_0": 602.3323490211033, - "ema_span_1": 450.41927701975163, - "enabled": true, - "initial_eprice_ema_dist": 0.00042608554975636216, - "initial_qty_pct": 0.011239430906555853, - "markup_range": 0.0025138461014344643, - "min_markup": 0.007435058268707118, - "n_close_orders": 4, - "rentry_pprice_dist": 0.028097232938392863, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7907176085201275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.0552087836312976, - "ema_span_0": 1268.9539377150425, - "ema_span_1": 1426.5033741504699, - "enabled": true, - "initial_eprice_ema_dist": 0.002966149538153635, - "initial_qty_pct": 0.03575481161084705, - "markup_range": 0.003766702704061157, - "min_markup": 0.0016034024166463464, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018765960294223727, - "rentry_pprice_dist_wallet_exposure_weighting": 6.865918864643922, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/HIGHUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/HIGHUSDT.json deleted file mode 100644 index 13a2cc2a4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 106.86810151308858, - "ema_span_1": 148.88681480041788, - "enabled": true, - "initial_eprice_ema_dist": -0.07689382532657883, - "initial_qty_pct": 0.011923736950371792, - "markup_range": 0.010320365955328823, - "min_markup": 0.009647994602278935, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04960694237794818, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0864316583775788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/HNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/HNTUSDT.json deleted file mode 100644 index fae2ae4ff..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/HOOKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/HOOKUSDT.json deleted file mode 100644 index 1f2838a30..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/HOTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/HOTUSDT.json deleted file mode 100644 index b591333a3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5183402852509222, - "ema_span_0": 1333.683905970394, - "ema_span_1": 1014.5793553488094, - "enabled": true, - "initial_eprice_ema_dist": -0.01492353156039376, - "initial_qty_pct": 0.01187257343223744, - "markup_range": 0.004412248741813769, - "min_markup": 0.004061242946623552, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02381089441968036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8109665034711503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7009437619978641, - "ema_span_0": 537.9848696180858, - "ema_span_1": 952.4591987739798, - "enabled": true, - "initial_eprice_ema_dist": 0.001391757255901879, - "initial_qty_pct": 0.03564453822997105, - "markup_range": 0.003675800290838224, - "min_markup": 0.0069285867217960895, - "n_close_orders": 7, - "rentry_pprice_dist": 0.017799191832736524, - "rentry_pprice_dist_wallet_exposure_weighting": 12.684233561152888, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ICPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ICPUSDT.json deleted file mode 100644 index 2862b0712..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1390500852526395, - "ema_span_0": 979.7392681008872, - "ema_span_1": 972.4684243898562, - "enabled": true, - "initial_eprice_ema_dist": -0.0542651168403518, - "initial_qty_pct": 0.016531874523208867, - "markup_range": 0.006125441040561773, - "min_markup": 0.001890345945629892, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02960336647761808, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9618771133103885, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6465259418081155, - "ema_span_0": 1106.3087021463616, - "ema_span_1": 1392.197090016136, - "enabled": true, - "initial_eprice_ema_dist": 0.0029291483336787256, - "initial_qty_pct": 0.01231682613606531, - "markup_range": 0.005975153963123907, - "min_markup": 0.006986906247853072, - "n_close_orders": 13, - "rentry_pprice_dist": 0.032593065179502986, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8873753086757523, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ICXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ICXUSDT.json deleted file mode 100644 index 5b69c4fda..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8769704157763958, - "ema_span_0": 821.7838311959617, - "ema_span_1": 107.16174336349727, - "enabled": true, - "initial_eprice_ema_dist": -0.01155085317321224, - "initial_qty_pct": 0.012207519220236015, - "markup_range": 0.006670019982563465, - "min_markup": 0.0038424717319929403, - "n_close_orders": 13, - "rentry_pprice_dist": 0.039759824804601024, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8790582102273851, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6646279236535362, - "ema_span_0": 1094.7511518032434, - "ema_span_1": 482.9578009793191, - "enabled": true, - "initial_eprice_ema_dist": -0.008845503125898848, - "initial_qty_pct": 0.012544154541726867, - "markup_range": 0.0022429058624957115, - "min_markup": 0.003382646005349876, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04369735855672946, - "rentry_pprice_dist_wallet_exposure_weighting": 0.814290165944775, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/IDEXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/IDEXUSDT.json deleted file mode 100644 index e3055b6b1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/IDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/IDUSDT.json deleted file mode 100644 index 728e01c17..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49962014508857006, - "ema_span_0": 662.423079765778, - "ema_span_1": 1215.0589605891234, - "enabled": true, - "initial_eprice_ema_dist": -0.008404526133162745, - "initial_qty_pct": 0.014617788347835654, - "markup_range": 0.003090982575626991, - "min_markup": 0.00523214715059894, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04756984014984003, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4799236109832203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5470971322180204, - "ema_span_0": 547.7861497828551, - "ema_span_1": 152.40964610896407, - "enabled": true, - "initial_eprice_ema_dist": 0.002289095240377166, - "initial_qty_pct": 0.013225096107875528, - "markup_range": 0.002339435002622375, - "min_markup": 0.004027772474418661, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018466722543051074, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1702617420452874, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/IMXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/IMXUSDT.json deleted file mode 100644 index 4c8c0d2e1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/INJUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/INJUSDT.json deleted file mode 100644 index 351f9ec47..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.316172736698155, - "ema_span_0": 608.1142940365892, - "ema_span_1": 681.9241478016243, - "enabled": true, - "initial_eprice_ema_dist": -0.0004156758696676386, - "initial_qty_pct": 0.011004023926913228, - "markup_range": 0.0013990145960925276, - "min_markup": 0.0038392699716518082, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024114988085479974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.869699193598165, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.297885882785144, - "ema_span_0": 118.89243775407233, - "ema_span_1": 882.6715634616128, - "enabled": true, - "initial_eprice_ema_dist": -0.0007555397650042811, - "initial_qty_pct": 0.011770311046768792, - "markup_range": 0.0026261004278800874, - "min_markup": 0.004595253309558112, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04099621026213019, - "rentry_pprice_dist_wallet_exposure_weighting": 16.90647783918404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/IOSTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/IOSTUSDT.json deleted file mode 100644 index 8f12558b8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.172004344450509, - "ema_span_0": 809.1579642946015, - "ema_span_1": 568.6402080873801, - "enabled": true, - "initial_eprice_ema_dist": -1.3474513037495294e-05, - "initial_qty_pct": 0.02461717589941418, - "markup_range": 0.006235554549647229, - "min_markup": 0.004140906773347667, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03929135724504117, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8850131408665916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/IOTAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/IOTAUSDT.json deleted file mode 100644 index a7f0dbf84..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.11292835254607582, - "ema_span_0": 616.2677393332958, - "ema_span_1": 166.49072994972943, - "enabled": true, - "initial_eprice_ema_dist": 0.002787815019551518, - "initial_qty_pct": 0.01723495690474764, - "markup_range": 0.0043587354682822505, - "min_markup": 0.0058203629817299134, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029045103044760802, - "rentry_pprice_dist_wallet_exposure_weighting": 4.273361959424855, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3935220163555802, - "ema_span_0": 647.0249800611332, - "ema_span_1": 741.024731452196, - "enabled": true, - "initial_eprice_ema_dist": -0.04078981266892904, - "initial_qty_pct": 0.011042115819131925, - "markup_range": 0.0032718149512038653, - "min_markup": 0.0014521005710930977, - "n_close_orders": 5, - "rentry_pprice_dist": 0.042313323019841684, - "rentry_pprice_dist_wallet_exposure_weighting": 9.682584206692592, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/IOTXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/IOTXUSDT.json deleted file mode 100644 index a1c9c4236..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/JASMYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/JASMYUSDT.json deleted file mode 100644 index 4962905c5..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3562890570908177, - "ema_span_0": 895.5903269298504, - "ema_span_1": 580.0664420672225, - "enabled": true, - "initial_eprice_ema_dist": 0.0029822081422130105, - "initial_qty_pct": 0.011758947892301091, - "markup_range": 0.0034744476923110217, - "min_markup": 0.004878905303967297, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0397905411766869, - "rentry_pprice_dist_wallet_exposure_weighting": 2.798204976178916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/JOEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/JOEUSDT.json deleted file mode 100644 index adbfb8900..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/KAVAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/KAVAUSDT.json deleted file mode 100644 index 758e3f621..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3562890570908177, - "ema_span_0": 895.5903269298504, - "ema_span_1": 580.0664420672225, - "enabled": true, - "initial_eprice_ema_dist": 0.0029822081422130105, - "initial_qty_pct": 0.011758947892301091, - "markup_range": 0.0034744476923110217, - "min_markup": 0.004878905303967297, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0397905411766869, - "rentry_pprice_dist_wallet_exposure_weighting": 2.798204976178916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.227691850670337, - "ema_span_0": 1437.2121101497253, - "ema_span_1": 223.75727290989175, - "enabled": true, - "initial_eprice_ema_dist": 0.0013624055315254523, - "initial_qty_pct": 0.012014724382467408, - "markup_range": 0.004893984294435196, - "min_markup": 0.009816908431294432, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0452362726559965, - "rentry_pprice_dist_wallet_exposure_weighting": 6.461281971119846, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/KEYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/KEYUSDT.json deleted file mode 100644 index 61f1fc3b4..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9780311851406476, - "ema_span_0": 312.50740245066567, - "ema_span_1": 417.6607338324698, - "enabled": true, - "initial_eprice_ema_dist": 0.00192763985788516, - "initial_qty_pct": 0.015477850727412689, - "markup_range": 0.0, - "min_markup": 0.0031868877845640533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.016199446887888623, - "rentry_pprice_dist_wallet_exposure_weighting": 1.586630651746572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8749397036489612, - "ema_span_0": 13.020632066798724, - "ema_span_1": 29.383134685403032, - "enabled": true, - "initial_eprice_ema_dist": -0.09694559862999746, - "initial_qty_pct": 0.030321002092639188, - "markup_range": 0.0052471915171047245, - "min_markup": 0.009551531295645477, - "n_close_orders": 3, - "rentry_pprice_dist": 0.037173350672132816, - "rentry_pprice_dist_wallet_exposure_weighting": 8.635678115354173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/KLAYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/KLAYUSDT.json deleted file mode 100644 index a48321424..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/KNCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/KNCUSDT.json deleted file mode 100644 index 407595497..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9622262328844453, - "ema_span_0": 1093.357084625005, - "ema_span_1": 1340.9411468279825, - "enabled": true, - "initial_eprice_ema_dist": -0.06370954164328256, - "initial_qty_pct": 0.01079526596402609, - "markup_range": 0.0005635584064413702, - "min_markup": 0.004466693278987666, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04999984210829697, - "rentry_pprice_dist_wallet_exposure_weighting": 1.927298758025484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1833039231010039, - "ema_span_0": 1439.8798931361546, - "ema_span_1": 1375.3738328534546, - "enabled": true, - "initial_eprice_ema_dist": 0.0007115448511710026, - "initial_qty_pct": 0.01711973437199717, - "markup_range": 0.009863290057429119, - "min_markup": 0.005584103352485053, - "n_close_orders": 9, - "rentry_pprice_dist": 0.042377559715913865, - "rentry_pprice_dist_wallet_exposure_weighting": 8.29529360366958, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/KSMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/KSMUSDT.json deleted file mode 100644 index 23e79d7ab..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.336692424941889, - "ema_span_0": 728.298192918612, - "ema_span_1": 368.05706662205233, - "enabled": true, - "initial_eprice_ema_dist": 0.0029688815844064235, - "initial_qty_pct": 0.013707092114184697, - "markup_range": 0.002443121150015731, - "min_markup": 0.003574163695759272, - "n_close_orders": 16, - "rentry_pprice_dist": 0.039483864440314174, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5704867133555622, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2580806490131773, - "ema_span_0": 327.62133437334376, - "ema_span_1": 583.4139656908208, - "enabled": true, - "initial_eprice_ema_dist": -0.0013915220530038924, - "initial_qty_pct": 0.014507152611706322, - "markup_range": 0.003230879531880824, - "min_markup": 0.006765153856239801, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0313271756210026, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8139280856036106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LDOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LDOUSDT.json deleted file mode 100644 index 9d8ef1400..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9458689071676201, - "ema_span_0": 212.73993000907225, - "ema_span_1": 882.340759214176, - "enabled": true, - "initial_eprice_ema_dist": -0.037981021866383996, - "initial_qty_pct": 0.01912235814460299, - "markup_range": 0.005482475940580243, - "min_markup": 0.004766679484210271, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04504477924770627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7587601804803278, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LEVERUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LEVERUSDT.json deleted file mode 100644 index ef593ff16..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9923094946854248, - "ema_span_0": 976.3749679220568, - "ema_span_1": 185.7715602240638, - "enabled": true, - "initial_eprice_ema_dist": 0.001896756049282583, - "initial_qty_pct": 0.021329500562159383, - "markup_range": 0.0017140919685301314, - "min_markup": 0.0026128204307088727, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03283916682909888, - "rentry_pprice_dist_wallet_exposure_weighting": 0.101409826221652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LINAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LINAUSDT.json deleted file mode 100644 index 3d677581f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.73763255515973, - "ema_span_0": 573.7393594293017, - "ema_span_1": 465.4854227350008, - "enabled": true, - "initial_eprice_ema_dist": -0.043226082493061285, - "initial_qty_pct": 0.010685743618000508, - "markup_range": 0.0, - "min_markup": 0.0035906909512807583, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9173921356559462, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9502183749089206, - "ema_span_0": 863.7700022067526, - "ema_span_1": 916.6164024031077, - "enabled": true, - "initial_eprice_ema_dist": 0.002999529863746819, - "initial_qty_pct": 0.013219688132044606, - "markup_range": 0.003955636296357747, - "min_markup": 0.0038252476236090914, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048924354416137364, - "rentry_pprice_dist_wallet_exposure_weighting": 18.09511521899609, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LINKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LINKUSDT.json deleted file mode 100644 index a36f47566..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.070011278622829, - "ema_span_0": 118.29922031835078, - "ema_span_1": 862.1773666930102, - "enabled": true, - "initial_eprice_ema_dist": -0.008875332776838161, - "initial_qty_pct": 0.01164552325857641, - "markup_range": 0.005520488804420559, - "min_markup": 0.003250849648848884, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02755114630150652, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2040846589159657, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.240019338621009, - "ema_span_0": 1353.5157046891202, - "ema_span_1": 762.4858184730213, - "enabled": true, - "initial_eprice_ema_dist": -0.030789000094189747, - "initial_qty_pct": 0.011718461259472575, - "markup_range": 0.002599840862973304, - "min_markup": 0.005194533701582255, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04133440449689739, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0977590619494173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LITUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LITUSDT.json deleted file mode 100644 index 1937bbc82..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3152385695799174, - "ema_span_0": 879.9178065617259, - "ema_span_1": 1282.2585689663917, - "enabled": true, - "initial_eprice_ema_dist": -0.007073652330636105, - "initial_qty_pct": 0.011604148709137403, - "markup_range": 0.004715734951754166, - "min_markup": 0.005064848468744023, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04989236845526927, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6730477014045403, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8797410712806017, - "ema_span_0": 1429.3930346648078, - "ema_span_1": 1179.9442207825518, - "enabled": true, - "initial_eprice_ema_dist": -0.010269877493443848, - "initial_qty_pct": 0.013028290768352546, - "markup_range": 0.004659372826062978, - "min_markup": 0.006499938479366403, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04469584734217476, - "rentry_pprice_dist_wallet_exposure_weighting": 6.940119914562727, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LPTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LPTUSDT.json deleted file mode 100644 index a1c9c4236..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LQTYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LQTYUSDT.json deleted file mode 100644 index 1c876dfee..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.956981755842469, - "ema_span_0": 167.75516573766635, - "ema_span_1": 380.78191603280635, - "enabled": true, - "initial_eprice_ema_dist": 0.002966111165649351, - "initial_qty_pct": 0.018057211804940857, - "markup_range": 0.0015104980014625645, - "min_markup": 0.007054347523993756, - "n_close_orders": 9, - "rentry_pprice_dist": 0.038738197329599544, - "rentry_pprice_dist_wallet_exposure_weighting": 4.131675902955578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LRCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LRCUSDT.json deleted file mode 100644 index 998edcc44..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4206287172058482, - "ema_span_0": 916.4180455223837, - "ema_span_1": 1327.177889847555, - "enabled": true, - "initial_eprice_ema_dist": -0.002139994537450707, - "initial_qty_pct": 0.011384387847759147, - "markup_range": 0.004304904348260687, - "min_markup": 0.008387425922321634, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03263530569529707, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5771379152998195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8302619210272612, - "ema_span_0": 764.8744607493253, - "ema_span_1": 10.260309306299478, - "enabled": true, - "initial_eprice_ema_dist": -0.00044498238911550643, - "initial_qty_pct": 0.011224408885708284, - "markup_range": 0.0041204494859002315, - "min_markup": 0.00659476068339152, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04708260506440111, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2093830649163, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LTCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LTCUSDT.json deleted file mode 100644 index 53b593347..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6143166564810247, - "ema_span_0": 754.4506859323892, - "ema_span_1": 842.906179506524, - "enabled": true, - "initial_eprice_ema_dist": -0.04689810036241554, - "initial_qty_pct": 0.011808166250684817, - "markup_range": 0.002180368992514977, - "min_markup": 0.0029734880981923104, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033268265400893435, - "rentry_pprice_dist_wallet_exposure_weighting": 7.763741872940859, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9846343966411943, - "ema_span_0": 1426.8645204797178, - "ema_span_1": 1362.341599202268, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015043335054241281, - "markup_range": 0.009289260778633427, - "min_markup": 0.003124122113244021, - "n_close_orders": 5, - "rentry_pprice_dist": 0.046822290466542106, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16647331202906823, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/LUNA2USDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/LUNA2USDT.json deleted file mode 100644 index bedaeeb7d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.842363031737599, - "ema_span_0": 1231.6978092290967, - "ema_span_1": 1227.8071121499408, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.036874428656762895, - "markup_range": 0.0007046697254697353, - "min_markup": 0.00510463377037829, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04174732494831719, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6784078716187707, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MAGICUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MAGICUSDT.json deleted file mode 100644 index 0b3e2547a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.339504971144532, - "ema_span_0": 744.3526159338775, - "ema_span_1": 888.0696442046801, - "enabled": true, - "initial_eprice_ema_dist": 0.002987190186017256, - "initial_qty_pct": 0.014176277209751583, - "markup_range": 0.0015215149544157782, - "min_markup": 0.00407087877795885, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04055660593171023, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8187190162958498, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MANAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MANAUSDT.json deleted file mode 100644 index 805aa6c38..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.169787712713988, - "ema_span_0": 1202.6579783390794, - "ema_span_1": 1014.1755480459761, - "enabled": true, - "initial_eprice_ema_dist": 8.716371567378642e-05, - "initial_qty_pct": 0.014668629767546428, - "markup_range": 0.0, - "min_markup": 0.0025510744606631183, - "n_close_orders": 7, - "rentry_pprice_dist": 0.029958019813693188, - "rentry_pprice_dist_wallet_exposure_weighting": 1.12819329649084, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.699741074574412, - "ema_span_0": 178.49965628285025, - "ema_span_1": 1236.0874041384286, - "enabled": true, - "initial_eprice_ema_dist": -0.0018847565219850331, - "initial_qty_pct": 0.020224579242037653, - "markup_range": 0.002364170873227417, - "min_markup": 0.004560255195901688, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03687749756373675, - "rentry_pprice_dist_wallet_exposure_weighting": 0.41971094909048146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MASKUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MASKUSDT.json deleted file mode 100644 index c8792f090..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MATICUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MATICUSDT.json deleted file mode 100644 index 37b43158d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8851552149449038, - "ema_span_0": 78.25042797912354, - "ema_span_1": 342.56261268441733, - "enabled": true, - "initial_eprice_ema_dist": -0.005095607199890936, - "initial_qty_pct": 0.012987541427671737, - "markup_range": 0.006112888929861149, - "min_markup": 0.002506589375495005, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029252990421043828, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2125300020289485, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3184438759788943, - "ema_span_0": 220.6253022373511, - "ema_span_1": 1121.3049082444154, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015238554422208, - "markup_range": 0.006256762369543269, - "min_markup": 0.0056165848326883575, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04666386069529587, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07544656025106579, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MAVUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MAVUSDT.json deleted file mode 100644 index 12e47c93a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8837358646228952, - "ema_span_0": 674.4955612563916, - "ema_span_1": 663.3588279319678, - "enabled": true, - "initial_eprice_ema_dist": -0.04315311098159625, - "initial_qty_pct": 0.01091387824837436, - "markup_range": 0.0007823086340090343, - "min_markup": 0.008775263053012733, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045274023703218445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6602345008790333, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MDTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MDTUSDT.json deleted file mode 100644 index 31aca34b1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MINAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MINAUSDT.json deleted file mode 100644 index 6ee92d6a9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9267230944646332, - "ema_span_0": 1070.2235791358275, - "ema_span_1": 1072.5620617467998, - "enabled": true, - "initial_eprice_ema_dist": 0.002996387973665314, - "initial_qty_pct": 0.018510090131773998, - "markup_range": 0.00356482273509978, - "min_markup": 0.009738705411198135, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04182900564020842, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6499498558931125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5455786004926524, - "ema_span_0": 1338.8190643222188, - "ema_span_1": 1053.3852627888903, - "enabled": true, - "initial_eprice_ema_dist": -0.0031515908390763736, - "initial_qty_pct": 0.01383480648574903, - "markup_range": 0.0034207683729451286, - "min_markup": 0.005303933607697774, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029336786163315195, - "rentry_pprice_dist_wallet_exposure_weighting": 9.654630395909606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MKRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MKRUSDT.json deleted file mode 100644 index 64cc84952..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4912409412608636, - "ema_span_0": 962.8708527444306, - "ema_span_1": 188.72825234468272, - "enabled": true, - "initial_eprice_ema_dist": -0.000475521436563427, - "initial_qty_pct": 0.010793346894602844, - "markup_range": 0.003131031622071269, - "min_markup": 0.0036327130656680488, - "n_close_orders": 16, - "rentry_pprice_dist": 0.030974293965227825, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0504975231773544, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/MTLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/MTLUSDT.json deleted file mode 100644 index 49ce9df3e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.923748586474249, - "ema_span_0": 794.1856666630048, - "ema_span_1": 1424.8592166856565, - "enabled": true, - "initial_eprice_ema_dist": 0.002988697466095334, - "initial_qty_pct": 0.018913304659158265, - "markup_range": 0.005367540356243014, - "min_markup": 0.008798119861577568, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0481684020477854, - "rentry_pprice_dist_wallet_exposure_weighting": 1.593971588327007, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5722761492877847, - "ema_span_0": 1373.2310365528808, - "ema_span_1": 1419.46875974585, - "enabled": true, - "initial_eprice_ema_dist": 0.0029992377607297154, - "initial_qty_pct": 0.015152938292362068, - "markup_range": 0.0036507818755745136, - "min_markup": 0.006617966924567955, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04435688338592538, - "rentry_pprice_dist_wallet_exposure_weighting": 11.401381799551249, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/NEARUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/NEARUSDT.json deleted file mode 100644 index 3a499ce29..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7476460977500154, - "ema_span_0": 1380.6291992671718, - "ema_span_1": 728.9157726992975, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.022977321540855043, - "markup_range": 0.0003227515176624567, - "min_markup": 0.0023475942246008736, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032431391516549724, - "rentry_pprice_dist_wallet_exposure_weighting": 0.189128937073541, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3796123605256332, - "ema_span_0": 1329.7194814110603, - "ema_span_1": 1199.3289784912201, - "enabled": true, - "initial_eprice_ema_dist": 0.0029924499869306027, - "initial_qty_pct": 0.011596981507328283, - "markup_range": 0.002641623183728599, - "min_markup": 0.004276636217878023, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04542143939715495, - "rentry_pprice_dist_wallet_exposure_weighting": 10.42199790791283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/NEOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/NEOUSDT.json deleted file mode 100644 index 47a5ea469..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2381738950778187, - "ema_span_0": 155.7709927457189, - "ema_span_1": 1260.3397032117737, - "enabled": true, - "initial_eprice_ema_dist": 0.002997139129821119, - "initial_qty_pct": 0.013112161210005678, - "markup_range": 0.002828780575893693, - "min_markup": 0.002629647994916009, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04999959905525485, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0473412697989235, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/NKNUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/NKNUSDT.json deleted file mode 100644 index 6ec26460c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.28969005414213894, - "ema_span_0": 1369.6375180532486, - "ema_span_1": 1403.545779808881, - "enabled": true, - "initial_eprice_ema_dist": -0.006130789480752758, - "initial_qty_pct": 0.015325503967214759, - "markup_range": 0.014493929757035673, - "min_markup": 0.009270925698405378, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03681768372510156, - "rentry_pprice_dist_wallet_exposure_weighting": 7.834777532263882, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/NMRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/NMRUSDT.json deleted file mode 100644 index 2dcf9588b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.15969574631186373, - "ema_span_0": 78.25042797912354, - "ema_span_1": 1340.9411468279825, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011604148709137403, - "markup_range": 0.0028362638400434965, - "min_markup": 0.0057038187873005505, - "n_close_orders": 7, - "rentry_pprice_dist": 0.007698210805738719, - "rentry_pprice_dist_wallet_exposure_weighting": 5.9367516207433475, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/OCEANUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/OCEANUSDT.json deleted file mode 100644 index b27437347..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.91058381302455, - "ema_span_0": 514.6559671669283, - "ema_span_1": 408.5887307073009, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013641251161158847, - "markup_range": 0.006327492756577452, - "min_markup": 0.008439347812636009, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03680366320286927, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2880762512685155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2734626486930097, - "ema_span_0": 1216.9376823043717, - "ema_span_1": 902.2238732036184, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.02593839617407182, - "markup_range": 0.015597430975277599, - "min_markup": 0.009008721241305492, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02729814421209618, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5959633983840185, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/OGNUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/OGNUSDT.json deleted file mode 100644 index f94c75dfb..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.920058955902206, - "ema_span_0": 225.70030866407188, - "ema_span_1": 1004.6283690728403, - "enabled": true, - "initial_eprice_ema_dist": -0.010854661595498919, - "initial_qty_pct": 0.01008556993602723, - "markup_range": 0.00019686478267776108, - "min_markup": 0.0028270617363223833, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03818980199392528, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039234684545597, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7293491803044803, - "ema_span_0": 1125.1153960124457, - "ema_span_1": 720.2880346834393, - "enabled": true, - "initial_eprice_ema_dist": -0.008319852638097995, - "initial_qty_pct": 0.012539813517674185, - "markup_range": 0.0005338546380405643, - "min_markup": 0.0024275924794710723, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03732299283037733, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14993943108274224, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/OMGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/OMGUSDT.json deleted file mode 100644 index b45c9f0bc..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.669398937361575, - "ema_span_0": 1383.3331658106865, - "ema_span_1": 39.51749216017186, - "enabled": true, - "initial_eprice_ema_dist": 0.0004848199606328876, - "initial_qty_pct": 0.017816171869779483, - "markup_range": 0.009135579295017683, - "min_markup": 0.009979933528916532, - "n_close_orders": 2, - "rentry_pprice_dist": 0.042096580914602715, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12357758766277843, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9263493244927148, - "ema_span_0": 118.55050140006173, - "ema_span_1": 26.177201866394913, - "enabled": true, - "initial_eprice_ema_dist": 0.0025358417694928597, - "initial_qty_pct": 0.013336774243411415, - "markup_range": 0.001532440082328491, - "min_markup": 0.009942677716086415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.049482671180504555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3841564123775789, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ONEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ONEUSDT.json deleted file mode 100644 index 3f49628c6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7893085857289758, - "ema_span_0": 95.34810722471096, - "ema_span_1": 129.3140161572695, - "enabled": true, - "initial_eprice_ema_dist": -0.08131250934062895, - "initial_qty_pct": 0.01122888795780465, - "markup_range": 0.0052539077993212745, - "min_markup": 0.004582227400370479, - "n_close_orders": 16, - "rentry_pprice_dist": 0.041979614108547905, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5761665635421347, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ONTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ONTUSDT.json deleted file mode 100644 index bef6e8dbf..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3523297308106912, - "ema_span_0": 638.7118049632558, - "ema_span_1": 523.1463352496196, - "enabled": true, - "initial_eprice_ema_dist": 0.0023438156999420505, - "initial_qty_pct": 0.01325073140410782, - "markup_range": 0.009242900767382675, - "min_markup": 0.007855349930017255, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04432781053949351, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3382441768820437, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/OPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/OPUSDT.json deleted file mode 100644 index fa470cafc..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5697631809055101, - "ema_span_0": 1017.825618597538, - "ema_span_1": 418.95318096409284, - "enabled": true, - "initial_eprice_ema_dist": -0.009959214011215816, - "initial_qty_pct": 0.010756910779543308, - "markup_range": 0.0010026897320589037, - "min_markup": 0.0022596132886762155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02727058405105273, - "rentry_pprice_dist_wallet_exposure_weighting": 3.01079171867751, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.21155553819479, - "ema_span_0": 760.8861341175993, - "ema_span_1": 1230.3412726627334, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01546217611586069, - "markup_range": 0.003512257157953961, - "min_markup": 0.0077470006321580555, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049247338352128876, - "rentry_pprice_dist_wallet_exposure_weighting": 10.146636774563685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/OXTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/OXTUSDT.json deleted file mode 100644 index 22d47e073..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3907135831352164, - "ema_span_0": 1239.862276330514, - "ema_span_1": 1409.4769281430806, - "enabled": true, - "initial_eprice_ema_dist": -0.0031950034741578953, - "initial_qty_pct": 0.02493821183210038, - "markup_range": 0.003922049957266154, - "min_markup": 0.0021279703040726606, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03300348737145173, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5742877383723394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.167595655161588, - "ema_span_0": 670.0500831849777, - "ema_span_1": 1314.9848751881473, - "enabled": true, - "initial_eprice_ema_dist": 0.0017552271961483086, - "initial_qty_pct": 0.014479782312822848, - "markup_range": 0.006247725263843084, - "min_markup": 0.005195238935110349, - "n_close_orders": 12, - "rentry_pprice_dist": 0.022111094066342655, - "rentry_pprice_dist_wallet_exposure_weighting": 4.697786483294389, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/PENDLEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/PENDLEUSDT.json deleted file mode 100644 index 99f3eaf3c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/PEOPLEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/PEOPLEUSDT.json deleted file mode 100644 index 279434566..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.21155553819479, - "ema_span_0": 760.8861341175993, - "ema_span_1": 1230.3412726627334, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01546217611586069, - "markup_range": 0.003512257157953961, - "min_markup": 0.0077470006321580555, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049247338352128876, - "rentry_pprice_dist_wallet_exposure_weighting": 10.146636774563685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/PERPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/PERPUSDT.json deleted file mode 100644 index 864bfac71..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6820234314032104, - "ema_span_0": 1207.0411656378922, - "ema_span_1": 1213.9740594953105, - "enabled": true, - "initial_eprice_ema_dist": 0.002843730659104161, - "initial_qty_pct": 0.013581260472187433, - "markup_range": 0.0013206259460842135, - "min_markup": 0.004055580079786484, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01594382493607837, - "rentry_pprice_dist_wallet_exposure_weighting": 7.480941554654492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4912409412608636, - "ema_span_0": 962.8708527444306, - "ema_span_1": 188.72825234468272, - "enabled": true, - "initial_eprice_ema_dist": -0.000475521436563427, - "initial_qty_pct": 0.010793346894602844, - "markup_range": 0.003131031622071269, - "min_markup": 0.0036327130656680488, - "n_close_orders": 16, - "rentry_pprice_dist": 0.030974293965227825, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0504975231773544, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/PHBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/PHBUSDT.json deleted file mode 100644 index c6fbbb47d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.17842658665650166, - "ema_span_0": 5, - "ema_span_1": 172.85447108642447, - "enabled": true, - "initial_eprice_ema_dist": -0.05559078820628534, - "initial_qty_pct": 0.011610772612807824, - "markup_range": 0.004717435290045319, - "min_markup": 0.009686102227960083, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0402573577203755, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31117154251246676, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9263493244927148, - "ema_span_0": 118.55050140006173, - "ema_span_1": 26.177201866394913, - "enabled": true, - "initial_eprice_ema_dist": 0.0025358417694928597, - "initial_qty_pct": 0.013336774243411415, - "markup_range": 0.001532440082328491, - "min_markup": 0.009942677716086415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.049482671180504555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3841564123775789, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/QNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/QNTUSDT.json deleted file mode 100644 index 6342df71e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.583886909265108, - "ema_span_0": 160.2036035044118, - "ema_span_1": 161.1513428941748, - "enabled": true, - "initial_eprice_ema_dist": 0.001975371600870204, - "initial_qty_pct": 0.022019390665189167, - "markup_range": 0.0029887140873306674, - "min_markup": 0.0014758996981031416, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02118506710915445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1108815725309518, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.374271568198962, - "ema_span_0": 163.28690009893245, - "ema_span_1": 1233.029272335783, - "enabled": true, - "initial_eprice_ema_dist": 0.0007626165567584787, - "initial_qty_pct": 0.02217543297206493, - "markup_range": 0.0044300985119658225, - "min_markup": 0.0023490418173568277, - "n_close_orders": 4, - "rentry_pprice_dist": 0.035990764826345445, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7162532604198364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/QTUMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/QTUMUSDT.json deleted file mode 100644 index fca380e96..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1662104523642432, - "ema_span_0": 22.785239990114853, - "ema_span_1": 32.66697181363126, - "enabled": true, - "initial_eprice_ema_dist": -0.032431783417407684, - "initial_qty_pct": 0.012900565534360633, - "markup_range": 0.003609633675765616, - "min_markup": 0.006142427773056204, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03942779902003346, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2275207545761735, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9037680636823774, - "ema_span_0": 292.01345655020276, - "ema_span_1": 981.9064530850376, - "enabled": true, - "initial_eprice_ema_dist": -0.0027514804087228695, - "initial_qty_pct": 0.016802507642199902, - "markup_range": 0.003266383199468367, - "min_markup": 0.007860344824913282, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03695306857268699, - "rentry_pprice_dist_wallet_exposure_weighting": 2.543165253920329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RADUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RADUSDT.json deleted file mode 100644 index 6293323c3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5183402852509222, - "ema_span_0": 1333.683905970394, - "ema_span_1": 1014.5793553488094, - "enabled": true, - "initial_eprice_ema_dist": -0.01492353156039376, - "initial_qty_pct": 0.01187257343223744, - "markup_range": 0.004412248741813769, - "min_markup": 0.004061242946623552, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02381089441968036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8109665034711503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RAYUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RAYUSDT.json deleted file mode 100644 index 1aec39c16..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7387035737087013, - "ema_span_0": 890.9911227886728, - "ema_span_1": 1216.4021884213203, - "enabled": true, - "initial_eprice_ema_dist": -0.08982574944876029, - "initial_qty_pct": 0.01189056762005186, - "markup_range": 0.001466463951368804, - "min_markup": 0.002213920984072372, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03453707295381622, - "rentry_pprice_dist_wallet_exposure_weighting": 2.369013044054258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49477771234476997, - "ema_span_0": 7.884150355842895, - "ema_span_1": 831.5145434298151, - "enabled": true, - "initial_eprice_ema_dist": -0.005319000244021655, - "initial_qty_pct": 0.017299945403047304, - "markup_range": 0.004142259570842666, - "min_markup": 0.005527660431443756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 7.76992152421835, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RDNTUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RDNTUSDT.json deleted file mode 100644 index 428a93094..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0286978080361278, - "ema_span_0": 646.0748883447105, - "ema_span_1": 895.139854982858, - "enabled": true, - "initial_eprice_ema_dist": -0.022879011043726454, - "initial_qty_pct": 0.014096494418235843, - "markup_range": 0.008513065072720231, - "min_markup": 0.007901750907989067, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03577954345873484, - "rentry_pprice_dist_wallet_exposure_weighting": 5.005119179695219, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/REEFUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/REEFUSDT.json deleted file mode 100644 index ad9e17984..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8519015047728429, - "ema_span_0": 756.070701325637, - "ema_span_1": 1136.9516102604841, - "enabled": true, - "initial_eprice_ema_dist": 0.0013516974912487001, - "initial_qty_pct": 0.01366755310228504, - "markup_range": 0.004070758088715231, - "min_markup": 0.0057038187873005505, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03294710231190983, - "rentry_pprice_dist_wallet_exposure_weighting": 5.236804383368756, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RENUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RENUSDT.json deleted file mode 100644 index a112f9263..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6382010756106342, - "ema_span_0": 178.64724886627621, - "ema_span_1": 1406.5313963752935, - "enabled": true, - "initial_eprice_ema_dist": 0.0029744953969487006, - "initial_qty_pct": 0.01145470822109892, - "markup_range": 0.014438595498713814, - "min_markup": 0.009575821396725873, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04073795205082972, - "rentry_pprice_dist_wallet_exposure_weighting": 5.28642974574394, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RLCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RLCUSDT.json deleted file mode 100644 index 0ded005fd..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6620309337071222, - "ema_span_0": 533.3077281271238, - "ema_span_1": 76.48348156844193, - "enabled": true, - "initial_eprice_ema_dist": 0.002837239312314329, - "initial_qty_pct": 0.016546198947164276, - "markup_range": 0.00978267793442932, - "min_markup": 0.005109171765832252, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04154952890213596, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0019496165098136838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0286978080361278, - "ema_span_0": 646.0748883447105, - "ema_span_1": 895.139854982858, - "enabled": true, - "initial_eprice_ema_dist": -0.022879011043726454, - "initial_qty_pct": 0.014096494418235843, - "markup_range": 0.008513065072720231, - "min_markup": 0.007901750907989067, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03577954345873484, - "rentry_pprice_dist_wallet_exposure_weighting": 5.005119179695219, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RNDRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RNDRUSDT.json deleted file mode 100644 index 4dc2b176f..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.786565888512243, - "ema_span_0": 1360.394446028515, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010891717117855332, - "markup_range": 0.0067824844844286475, - "min_markup": 0.004972953205252971, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03395018461886906, - "rentry_pprice_dist_wallet_exposure_weighting": 5.459013290616585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ROSEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ROSEUSDT.json deleted file mode 100644 index 8086d77ef..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.208015762129257, - "ema_span_0": 333.090498081687, - "ema_span_1": 464.5241627722567, - "enabled": true, - "initial_eprice_ema_dist": 0.0029914596709809532, - "initial_qty_pct": 0.010491873557071294, - "markup_range": 0.001996465084310474, - "min_markup": 0.0031032996157285063, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0328936001628217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2385624687659167, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.213923970776044, - "ema_span_0": 1149.3450683159158, - "ema_span_1": 46.2055349986496, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012253263285469664, - "markup_range": 0.0008248254259328559, - "min_markup": 0.0016640550227731096, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04127875985649038, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4275679758513373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RSRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RSRUSDT.json deleted file mode 100644 index ac1ed1b60..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2646687799240333, - "ema_span_0": 853.1522914702002, - "ema_span_1": 894.8866869570534, - "enabled": true, - "initial_eprice_ema_dist": -0.0053883632103486085, - "initial_qty_pct": 0.010880891090260329, - "markup_range": 0.009003151073093912, - "min_markup": 0.009384396637792822, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04997183687519014, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5171335640096635, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.960323660908189, - "ema_span_0": 1282.1057340303694, - "ema_span_1": 1291.9786804977227, - "enabled": true, - "initial_eprice_ema_dist": 0.0021805087519462477, - "initial_qty_pct": 0.01638252154386142, - "markup_range": 0.008015256262755387, - "min_markup": 0.005577595991240571, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04896424570986059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1573377078432634, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RUNEUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RUNEUSDT.json deleted file mode 100644 index bf9ed42c5..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4364410851893356, - "ema_span_0": 875.5987866494493, - "ema_span_1": 913.927902992683, - "enabled": true, - "initial_eprice_ema_dist": 0.0021207999040792056, - "initial_qty_pct": 0.010403552750297912, - "markup_range": 0.015735577647451794, - "min_markup": 0.00880504348520859, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0449849731620022, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3204750775390275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2393332650802351, - "ema_span_0": 1437.3101477996777, - "ema_span_1": 112.87495602431846, - "enabled": true, - "initial_eprice_ema_dist": 0.0010242746812423288, - "initial_qty_pct": 0.01, - "markup_range": 0.009998132117250725, - "min_markup": 0.003770692727515815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04999877449594722, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7861634897681355, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/RVNUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/RVNUSDT.json deleted file mode 100644 index ff509bdbe..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3577858203488237, - "ema_span_0": 5.215088790009801, - "ema_span_1": 124.49156585740609, - "enabled": true, - "initial_eprice_ema_dist": 0.002951921745976985, - "initial_qty_pct": 0.029601538934752494, - "markup_range": 0.004022874543642443, - "min_markup": 0.00403900191571121, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04636798287133111, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19042172187182785, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.110106467530348, - "ema_span_0": 973.4229873749248, - "ema_span_1": 958.1541188866846, - "enabled": true, - "initial_eprice_ema_dist": 0.0029977806557525254, - "initial_qty_pct": 0.016324738674111442, - "markup_range": 0.0011043535036331087, - "min_markup": 0.002489943802584134, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02709430582868433, - "rentry_pprice_dist_wallet_exposure_weighting": 11.500513836921657, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SANDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SANDUSDT.json deleted file mode 100644 index d2e5db323..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.316172736698155, - "ema_span_0": 608.1142940365892, - "ema_span_1": 681.9241478016243, - "enabled": true, - "initial_eprice_ema_dist": -0.0004156758696676386, - "initial_qty_pct": 0.011004023926913228, - "markup_range": 0.0013990145960925276, - "min_markup": 0.0038392699716518082, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024114988085479974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.869699193598165, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2324079705713191, - "ema_span_0": 1408.2473749712192, - "ema_span_1": 462.0158238693075, - "enabled": true, - "initial_eprice_ema_dist": -0.0032615399395738488, - "initial_qty_pct": 0.014137182505288576, - "markup_range": 0.0016120622185540388, - "min_markup": 0.004055315906773231, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04297576030546969, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23798794431694353, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SCUSDT.json deleted file mode 100644 index 23ddd051d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1649207832787436, - "ema_span_0": 210.25721798782686, - "ema_span_1": 463.383458345308, - "enabled": true, - "initial_eprice_ema_dist": -0.002264901785342703, - "initial_qty_pct": 0.010160385941617521, - "markup_range": 0.0011159678228329884, - "min_markup": 0.003937308792079468, - "n_close_orders": 7, - "rentry_pprice_dist": 0.047500939971454846, - "rentry_pprice_dist_wallet_exposure_weighting": 9.685909411916949, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2324079705713191, - "ema_span_0": 1408.2473749712192, - "ema_span_1": 462.0158238693075, - "enabled": true, - "initial_eprice_ema_dist": -0.0032615399395738488, - "initial_qty_pct": 0.014137182505288576, - "markup_range": 0.0016120622185540388, - "min_markup": 0.004055315906773231, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04297576030546969, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23798794431694353, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SEIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SEIUSDT.json deleted file mode 100644 index 9931338f9..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.954119463453377, - "ema_span_0": 622.4208572856963, - "ema_span_1": 1354.1644510245915, - "enabled": true, - "initial_eprice_ema_dist": -0.00526472918788522, - "initial_qty_pct": 0.013658243362644571, - "markup_range": 0.00695354257700864, - "min_markup": 0.005332038621022663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036084549507473494, - "rentry_pprice_dist_wallet_exposure_weighting": 2.296498077184323, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SFPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SFPUSDT.json deleted file mode 100644 index d447b4330..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7402610846417237, - "ema_span_0": 907.0901100936347, - "ema_span_1": 1397.9636646627, - "enabled": true, - "initial_eprice_ema_dist": 0.0014272806184822677, - "initial_qty_pct": 0.01643718382176242, - "markup_range": 0.004415712957343203, - "min_markup": 0.004212729776643347, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043031420437824194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9622617744729288, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3058460271681953, - "ema_span_0": 65.57599891366576, - "ema_span_1": 48.55584575825074, - "enabled": true, - "initial_eprice_ema_dist": -0.050789786484485885, - "initial_qty_pct": 0.013761619510484355, - "markup_range": 0.0018480702291614399, - "min_markup": 0.003391920932671798, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03887565626770108, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24059134643565705, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SKLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SKLUSDT.json deleted file mode 100644 index 7f649f3d5..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8797410712806017, - "ema_span_0": 1429.3930346648078, - "ema_span_1": 1179.9442207825518, - "enabled": true, - "initial_eprice_ema_dist": -0.010269877493443848, - "initial_qty_pct": 0.013028290768352546, - "markup_range": 0.004659372826062978, - "min_markup": 0.006499938479366403, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04469584734217476, - "rentry_pprice_dist_wallet_exposure_weighting": 6.940119914562727, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SNXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SNXUSDT.json deleted file mode 100644 index 9ecf1e842..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1244123020305516, - "ema_span_0": 1150.0042902691437, - "ema_span_1": 1124.1819986963699, - "enabled": true, - "initial_eprice_ema_dist": -0.006218037870147272, - "initial_qty_pct": 0.010764450920053369, - "markup_range": 0.009844683805963515, - "min_markup": 0.00938187085974474, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0498707076663668, - "rentry_pprice_dist_wallet_exposure_weighting": 11.49781266411907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SOLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SOLUSDT.json deleted file mode 100644 index 339dcfd5a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3907135831352164, - "ema_span_0": 1239.862276330514, - "ema_span_1": 1409.4769281430806, - "enabled": true, - "initial_eprice_ema_dist": -0.0031950034741578953, - "initial_qty_pct": 0.02493821183210038, - "markup_range": 0.003922049957266154, - "min_markup": 0.0021279703040726606, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03300348737145173, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5742877383723394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.547822511526836, - "ema_span_0": 1060.4818017087207, - "ema_span_1": 813.0900840652839, - "enabled": true, - "initial_eprice_ema_dist": -0.002879247612786576, - "initial_qty_pct": 0.01010486711384056, - "markup_range": 0.0, - "min_markup": 0.002670822563344069, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03187911652669359, - "rentry_pprice_dist_wallet_exposure_weighting": 15.044458840398168, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SPELLUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SPELLUSDT.json deleted file mode 100644 index 2b04cfdaf..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9267230944646332, - "ema_span_0": 1070.2235791358275, - "ema_span_1": 1072.5620617467998, - "enabled": true, - "initial_eprice_ema_dist": 0.002996387973665314, - "initial_qty_pct": 0.018510090131773998, - "markup_range": 0.00356482273509978, - "min_markup": 0.009738705411198135, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04182900564020842, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6499498558931125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SRMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SRMUSDT.json deleted file mode 100644 index fae2ae4ff..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SSVUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SSVUSDT.json deleted file mode 100644 index c5dd22fa8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2646687799240333, - "ema_span_0": 853.1522914702002, - "ema_span_1": 894.8866869570534, - "enabled": true, - "initial_eprice_ema_dist": -0.0053883632103486085, - "initial_qty_pct": 0.010880891090260329, - "markup_range": 0.009003151073093912, - "min_markup": 0.009384396637792822, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04997183687519014, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5171335640096635, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/STGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/STGUSDT.json deleted file mode 100644 index dd2de75a7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.169787712713988, - "ema_span_0": 1202.6579783390794, - "ema_span_1": 1014.1755480459761, - "enabled": true, - "initial_eprice_ema_dist": 8.716371567378642e-05, - "initial_qty_pct": 0.014668629767546428, - "markup_range": 0.0, - "min_markup": 0.0025510744606631183, - "n_close_orders": 7, - "rentry_pprice_dist": 0.029958019813693188, - "rentry_pprice_dist_wallet_exposure_weighting": 1.12819329649084, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.213923970776044, - "ema_span_0": 1149.3450683159158, - "ema_span_1": 46.2055349986496, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012253263285469664, - "markup_range": 0.0008248254259328559, - "min_markup": 0.0016640550227731096, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04127875985649038, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4275679758513373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/STMXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/STMXUSDT.json deleted file mode 100644 index d5569f203..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2176690339004235, - "ema_span_0": 624.712046541063, - "ema_span_1": 348.61457272862015, - "enabled": true, - "initial_eprice_ema_dist": 0.00280877930697983, - "initial_qty_pct": 0.012205043322424959, - "markup_range": 0.005356847847614142, - "min_markup": 0.005895269455621546, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04937529900356751, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7321029769275491, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3894193609840364, - "ema_span_0": 1274.6844469224634, - "ema_span_1": 1201.1330713550808, - "enabled": true, - "initial_eprice_ema_dist": -0.04878887280460709, - "initial_qty_pct": 0.010870274802766937, - "markup_range": 0.000939540617683864, - "min_markup": 0.008863661804354746, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04360516395523065, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43283332932228913, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/STORJUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/STORJUSDT.json deleted file mode 100644 index 7a48c5ba1..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7278018862720588, - "ema_span_0": 442.5278043429042, - "ema_span_1": 1233.5035187936535, - "enabled": true, - "initial_eprice_ema_dist": 0.0029054035971957494, - "initial_qty_pct": 0.01248522372437879, - "markup_range": 0.002149347095369211, - "min_markup": 0.0054203408641198625, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04372925459517494, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4789682712063503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/STXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/STXUSDT.json deleted file mode 100644 index 1006c8cc3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8302619210272612, - "ema_span_0": 764.8744607493253, - "ema_span_1": 10.260309306299478, - "enabled": true, - "initial_eprice_ema_dist": -0.00044498238911550643, - "initial_qty_pct": 0.011224408885708284, - "markup_range": 0.0041204494859002315, - "min_markup": 0.00659476068339152, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04708260506440111, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2093830649163, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SUIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SUIUSDT.json deleted file mode 100644 index 468997574..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.399510299338204, - "ema_span_0": 1346.6111581656703, - "ema_span_1": 523.7886560263587, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.011820851377208515, - "markup_range": 0.009503339022892288, - "min_markup": 0.007855349930017255, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03875804691630964, - "rentry_pprice_dist_wallet_exposure_weighting": 1.927298758025484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SUSHIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SUSHIUSDT.json deleted file mode 100644 index 6b25d3568..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.994834190251998, - "ema_span_0": 756.5628616931731, - "ema_span_1": 1129.9126126341366, - "enabled": true, - "initial_eprice_ema_dist": 0.002541615311706566, - "initial_qty_pct": 0.020818301591062308, - "markup_range": 6.939723751879763e-08, - "min_markup": 0.005095337234902401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047593800710765855, - "rentry_pprice_dist_wallet_exposure_weighting": 0.028196202939589198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9727604077664379, - "ema_span_0": 318.22426771510743, - "ema_span_1": 858.2989883328457, - "enabled": true, - "initial_eprice_ema_dist": -0.0025575877568094056, - "initial_qty_pct": 0.011770313126978446, - "markup_range": 0.0029772007734779568, - "min_markup": 0.008819296503460462, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032609119614941555, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0098679892922675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/SXPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/SXPUSDT.json deleted file mode 100644 index 0f716eb11..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.208015762129257, - "ema_span_0": 333.090498081687, - "ema_span_1": 464.5241627722567, - "enabled": true, - "initial_eprice_ema_dist": 0.0029914596709809532, - "initial_qty_pct": 0.010491873557071294, - "markup_range": 0.001996465084310474, - "min_markup": 0.0031032996157285063, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0328936001628217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2385624687659167, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3935220163555802, - "ema_span_0": 647.0249800611332, - "ema_span_1": 741.024731452196, - "enabled": true, - "initial_eprice_ema_dist": -0.04078981266892904, - "initial_qty_pct": 0.011042115819131925, - "markup_range": 0.0032718149512038653, - "min_markup": 0.0014521005710930977, - "n_close_orders": 5, - "rentry_pprice_dist": 0.042313323019841684, - "rentry_pprice_dist_wallet_exposure_weighting": 9.682584206692592, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/THETAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/THETAUSDT.json deleted file mode 100644 index f557c992d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.44015477997485486, - "ema_span_0": 688.1391936010098, - "ema_span_1": 331.58076372519844, - "enabled": true, - "initial_eprice_ema_dist": -0.0744688113652975, - "initial_qty_pct": 0.01334182411293645, - "markup_range": 0.003846380513935199, - "min_markup": 0.0036844270968172848, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02742044681596389, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0499196951705976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8484486860936844, - "ema_span_0": 762.9912775366449, - "ema_span_1": 347.63777439153915, - "enabled": true, - "initial_eprice_ema_dist": 0.0009608951200720726, - "initial_qty_pct": 0.0129497135606676, - "markup_range": 0.004616406092550184, - "min_markup": 0.0034658071382083905, - "n_close_orders": 14, - "rentry_pprice_dist": 0.024199594519338674, - "rentry_pprice_dist_wallet_exposure_weighting": 7.202784924922103, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/TLMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/TLMUSDT.json deleted file mode 100644 index 68594392e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.959657442980144, - "ema_span_0": 65.57599891366576, - "ema_span_1": 858.2989883328457, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.013226403118850179, - "markup_range": 0.0018531670849010209, - "min_markup": 0.009769231244046437, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 0.814290165944775, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/TOMOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/TOMOUSDT.json deleted file mode 100644 index f9247f3f8..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9561494534544617, - "ema_span_0": 1282.895337235, - "ema_span_1": 1313.0491703219336, - "enabled": true, - "initial_eprice_ema_dist": -0.0036131781802798925, - "initial_qty_pct": 0.012709969406806859, - "markup_range": 0.004186428979933283, - "min_markup": 0.0038455871749028974, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04761926178714748, - "rentry_pprice_dist_wallet_exposure_weighting": 13.294322637212758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/TRBUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/TRBUSDT.json deleted file mode 100644 index 09b3988de..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1649207832787436, - "ema_span_0": 210.25721798782686, - "ema_span_1": 463.383458345308, - "enabled": true, - "initial_eprice_ema_dist": -0.002264901785342703, - "initial_qty_pct": 0.010160385941617521, - "markup_range": 0.0011159678228329884, - "min_markup": 0.003937308792079468, - "n_close_orders": 7, - "rentry_pprice_dist": 0.047500939971454846, - "rentry_pprice_dist_wallet_exposure_weighting": 9.685909411916949, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3139820083104667, - "ema_span_0": 1354.0910736538647, - "ema_span_1": 887.6638689058208, - "enabled": true, - "initial_eprice_ema_dist": -0.002602533297547924, - "initial_qty_pct": 0.010225778382134582, - "markup_range": 0.0005958881791200284, - "min_markup": 0.0037772526495702804, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02781575561706713, - "rentry_pprice_dist_wallet_exposure_weighting": 7.448820004016395, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/TRUUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/TRUUSDT.json deleted file mode 100644 index d61dfe950..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9622262328844453, - "ema_span_0": 1093.357084625005, - "ema_span_1": 1340.9411468279825, - "enabled": true, - "initial_eprice_ema_dist": -0.06370954164328256, - "initial_qty_pct": 0.01079526596402609, - "markup_range": 0.0005635584064413702, - "min_markup": 0.004466693278987666, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04999984210829697, - "rentry_pprice_dist_wallet_exposure_weighting": 1.927298758025484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.699741074574412, - "ema_span_0": 178.49965628285025, - "ema_span_1": 1236.0874041384286, - "enabled": true, - "initial_eprice_ema_dist": -0.0018847565219850331, - "initial_qty_pct": 0.020224579242037653, - "markup_range": 0.002364170873227417, - "min_markup": 0.004560255195901688, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03687749756373675, - "rentry_pprice_dist_wallet_exposure_weighting": 0.41971094909048146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/TRXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/TRXUSDT.json deleted file mode 100644 index 416fe67e3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9923094946854248, - "ema_span_0": 976.3749679220568, - "ema_span_1": 185.7715602240638, - "enabled": true, - "initial_eprice_ema_dist": 0.001896756049282583, - "initial_qty_pct": 0.021329500562159383, - "markup_range": 0.0017140919685301314, - "min_markup": 0.0026128204307088727, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03283916682909888, - "rentry_pprice_dist_wallet_exposure_weighting": 0.101409826221652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5470971322180204, - "ema_span_0": 547.7861497828551, - "ema_span_1": 152.40964610896407, - "enabled": true, - "initial_eprice_ema_dist": 0.002289095240377166, - "initial_qty_pct": 0.013225096107875528, - "markup_range": 0.002339435002622375, - "min_markup": 0.004027772474418661, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018466722543051074, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1702617420452874, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/TUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/TUSDT.json deleted file mode 100644 index 5af85a6c6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1736542384581994, - "ema_span_0": 1111.127771408782, - "ema_span_1": 1051.1491474659954, - "enabled": true, - "initial_eprice_ema_dist": -0.0017838848750858882, - "initial_qty_pct": 0.012690558976674282, - "markup_range": 0.003156322778575609, - "min_markup": 0.00526279453190407, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03174383273755451, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8645431707443696, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2143498743271344, - "ema_span_0": 851.8497934754483, - "ema_span_1": 91.9232237059391, - "enabled": true, - "initial_eprice_ema_dist": -0.005848134546248924, - "initial_qty_pct": 0.015541848513437422, - "markup_range": 0.004250304906698866, - "min_markup": 0.0031464456644202696, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025060762087215145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7595422416418836, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/UMAUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/UMAUSDT.json deleted file mode 100644 index b39188b40..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9877573117609226, - "ema_span_0": 266.12434809336116, - "ema_span_1": 627.4455024262369, - "enabled": true, - "initial_eprice_ema_dist": 0.0029724086346766144, - "initial_qty_pct": 0.015220129847753304, - "markup_range": 0.002676188099811918, - "min_markup": 0.006336949993637198, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0341029690215967, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0599195231760747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/UNFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/UNFIUSDT.json deleted file mode 100644 index 5264ec3be..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 106.86810151308858, - "ema_span_1": 148.88681480041788, - "enabled": true, - "initial_eprice_ema_dist": -0.07689382532657883, - "initial_qty_pct": 0.011923736950371792, - "markup_range": 0.010320365955328823, - "min_markup": 0.009647994602278935, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04960694237794818, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0864316583775788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8749397036489612, - "ema_span_0": 13.020632066798724, - "ema_span_1": 29.383134685403032, - "enabled": true, - "initial_eprice_ema_dist": -0.09694559862999746, - "initial_qty_pct": 0.030321002092639188, - "markup_range": 0.0052471915171047245, - "min_markup": 0.009551531295645477, - "n_close_orders": 3, - "rentry_pprice_dist": 0.037173350672132816, - "rentry_pprice_dist_wallet_exposure_weighting": 8.635678115354173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/UNIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/UNIUSDT.json deleted file mode 100644 index 270c8f84a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8837358646228952, - "ema_span_0": 674.4955612563916, - "ema_span_1": 663.3588279319678, - "enabled": true, - "initial_eprice_ema_dist": -0.04315311098159625, - "initial_qty_pct": 0.01091387824837436, - "markup_range": 0.0007823086340090343, - "min_markup": 0.008775263053012733, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045274023703218445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6602345008790333, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9698469921196073, - "ema_span_0": 52.88191692712886, - "ema_span_1": 1361.1118613147607, - "enabled": true, - "initial_eprice_ema_dist": -0.00543863150676523, - "initial_qty_pct": 0.0181779687866847, - "markup_range": 0.0016417265517781824, - "min_markup": 0.009975480543854798, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04486109929940652, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5520120346280831, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/USDCUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/USDCUSDT.json deleted file mode 100644 index 406ad945b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.91058381302455, - "ema_span_0": 514.6559671669283, - "ema_span_1": 408.5887307073009, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013641251161158847, - "markup_range": 0.006327492756577452, - "min_markup": 0.008439347812636009, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03680366320286927, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2880762512685155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/VETUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/VETUSDT.json deleted file mode 100644 index 47ca40a01..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.438778138303399, - "ema_span_0": 602.3323490211033, - "ema_span_1": 450.41927701975163, - "enabled": true, - "initial_eprice_ema_dist": 0.00042608554975636216, - "initial_qty_pct": 0.011239430906555853, - "markup_range": 0.0025138461014344643, - "min_markup": 0.007435058268707118, - "n_close_orders": 4, - "rentry_pprice_dist": 0.028097232938392863, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7907176085201275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.869734982913015, - "ema_span_0": 528.5296006012966, - "ema_span_1": 1413.0009768167545, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999821423197133, - "initial_qty_pct": 0.016171032016187768, - "markup_range": 0.003471839721865355, - "min_markup": 0.003715246650067295, - "n_close_orders": 12, - "rentry_pprice_dist": 0.040352510167950356, - "rentry_pprice_dist_wallet_exposure_weighting": 0.004646561803409923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/WAVESUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/WAVESUSDT.json deleted file mode 100644 index 25df8662e..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8817828642347703, - "ema_span_0": 97.88388043909794, - "ema_span_1": 106.41783228748595, - "enabled": true, - "initial_eprice_ema_dist": 0.0029565223621609827, - "initial_qty_pct": 0.019754061554014865, - "markup_range": 0.006519489925372328, - "min_markup": 0.006352449566674008, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04670610435147058, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24073584451889238, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/WLDUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/WLDUSDT.json deleted file mode 100644 index 941223bd2..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2297117872115364, - "ema_span_0": 666.9352875365897, - "ema_span_1": 258.7932713649857, - "enabled": true, - "initial_eprice_ema_dist": 0.0029561243159410065, - "initial_qty_pct": 0.012768047878831668, - "markup_range": 0.0009141991898108719, - "min_markup": 0.002594754817460753, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02038355697089794, - "rentry_pprice_dist_wallet_exposure_weighting": 0.027928595165659396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/WOOUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/WOOUSDT.json deleted file mode 100644 index ed2e842ba..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.994834190251998, - "ema_span_0": 756.5628616931731, - "ema_span_1": 1129.9126126341366, - "enabled": true, - "initial_eprice_ema_dist": 0.002541615311706566, - "initial_qty_pct": 0.020818301591062308, - "markup_range": 6.939723751879763e-08, - "min_markup": 0.005095337234902401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047593800710765855, - "rentry_pprice_dist_wallet_exposure_weighting": 0.028196202939589198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5470971322180204, - "ema_span_0": 547.7861497828551, - "ema_span_1": 152.40964610896407, - "enabled": true, - "initial_eprice_ema_dist": 0.002289095240377166, - "initial_qty_pct": 0.013225096107875528, - "markup_range": 0.002339435002622375, - "min_markup": 0.004027772474418661, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018466722543051074, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1702617420452874, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XEMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XEMUSDT.json deleted file mode 100644 index 55ca4b5b5..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9877573117609226, - "ema_span_0": 266.12434809336116, - "ema_span_1": 627.4455024262369, - "enabled": true, - "initial_eprice_ema_dist": 0.0029724086346766144, - "initial_qty_pct": 0.015220129847753304, - "markup_range": 0.002676188099811918, - "min_markup": 0.006336949993637198, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0341029690215967, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0599195231760747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XLMUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XLMUSDT.json deleted file mode 100644 index d714a4da7..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3602582965020855, - "ema_span_0": 120.4797953471262, - "ema_span_1": 166.48238357350056, - "enabled": true, - "initial_eprice_ema_dist": -0.0006228758940931558, - "initial_qty_pct": 0.010462821340143235, - "markup_range": 0.0013109311712520082, - "min_markup": 0.0015988390804505073, - "n_close_orders": 8, - "rentry_pprice_dist": 0.029664661889534538, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9518215338809086, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.339504971144532, - "ema_span_0": 744.3526159338775, - "ema_span_1": 888.0696442046801, - "enabled": true, - "initial_eprice_ema_dist": 0.002987190186017256, - "initial_qty_pct": 0.014176277209751583, - "markup_range": 0.0015215149544157782, - "min_markup": 0.00407087877795885, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04055660593171023, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8187190162958498, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XMRUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XMRUSDT.json deleted file mode 100644 index 8024834d3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7173551637314762, - "ema_span_0": 821.2234123524812, - "ema_span_1": 207.11679924201374, - "enabled": true, - "initial_eprice_ema_dist": -0.002565228479680654, - "initial_qty_pct": 0.014783743285119728, - "markup_range": 0.0036710239902237587, - "min_markup": 0.0027060781439914756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019865859670517606, - "rentry_pprice_dist_wallet_exposure_weighting": 1.670015043529693, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.0552087836312976, - "ema_span_0": 1268.9539377150425, - "ema_span_1": 1426.5033741504699, - "enabled": true, - "initial_eprice_ema_dist": 0.002966149538153635, - "initial_qty_pct": 0.03575481161084705, - "markup_range": 0.003766702704061157, - "min_markup": 0.0016034024166463464, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018765960294223727, - "rentry_pprice_dist_wallet_exposure_weighting": 6.865918864643922, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XRPUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XRPUSDT.json deleted file mode 100644 index ddafa5f4a..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1390500852526395, - "ema_span_0": 979.7392681008872, - "ema_span_1": 972.4684243898562, - "enabled": true, - "initial_eprice_ema_dist": -0.0542651168403518, - "initial_qty_pct": 0.016531874523208867, - "markup_range": 0.006125441040561773, - "min_markup": 0.001890345945629892, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02960336647761808, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9618771133103885, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.970897226703454, - "ema_span_0": 1178.6405099612166, - "ema_span_1": 10.346658522087152, - "enabled": true, - "initial_eprice_ema_dist": 0.001205375272270322, - "initial_qty_pct": 0.011245418734813668, - "markup_range": 0.0005509812524684044, - "min_markup": 0.008604594360852381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04860043989134822, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XTZUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XTZUSDT.json deleted file mode 100644 index 42e15cea6..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0983355825006504, - "ema_span_0": 1152.4214448062032, - "ema_span_1": 1085.29838180588, - "enabled": true, - "initial_eprice_ema_dist": 8.222523844233229e-05, - "initial_qty_pct": 0.014910438250226225, - "markup_range": 0.007061527485406208, - "min_markup": 0.005467803055395166, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03475191366350111, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7082035385862824, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2143498743271344, - "ema_span_0": 851.8497934754483, - "ema_span_1": 91.9232237059391, - "enabled": true, - "initial_eprice_ema_dist": -0.005848134546248924, - "initial_qty_pct": 0.015541848513437422, - "markup_range": 0.004250304906698866, - "min_markup": 0.0031464456644202696, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025060762087215145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7595422416418836, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XVGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XVGUSDT.json deleted file mode 100644 index 9b69b9996..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9780311851406476, - "ema_span_0": 312.50740245066567, - "ema_span_1": 417.6607338324698, - "enabled": true, - "initial_eprice_ema_dist": 0.00192763985788516, - "initial_qty_pct": 0.015477850727412689, - "markup_range": 0.0, - "min_markup": 0.0031868877845640533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.016199446887888623, - "rentry_pprice_dist_wallet_exposure_weighting": 1.586630651746572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.0552087836312976, - "ema_span_0": 1268.9539377150425, - "ema_span_1": 1426.5033741504699, - "enabled": true, - "initial_eprice_ema_dist": 0.002966149538153635, - "initial_qty_pct": 0.03575481161084705, - "markup_range": 0.003766702704061157, - "min_markup": 0.0016034024166463464, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018765960294223727, - "rentry_pprice_dist_wallet_exposure_weighting": 6.865918864643922, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/XVSUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/XVSUSDT.json deleted file mode 100644 index 624fa135b..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5496600291443349, - "ema_span_0": 1418.165029247325, - "ema_span_1": 1299.1812839892266, - "enabled": true, - "initial_eprice_ema_dist": 0.0025563504837596016, - "initial_qty_pct": 0.017280059651797453, - "markup_range": 0.01056369131529356, - "min_markup": 0.0050861235491077884, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04144715802310261, - "rentry_pprice_dist_wallet_exposure_weighting": 7.816268775961305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/YFIUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/YFIUSDT.json deleted file mode 100644 index f579020fe..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.920058955902206, - "ema_span_0": 225.70030866407188, - "ema_span_1": 1004.6283690728403, - "enabled": true, - "initial_eprice_ema_dist": -0.010854661595498919, - "initial_qty_pct": 0.01008556993602723, - "markup_range": 0.00019686478267776108, - "min_markup": 0.0028270617363223833, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03818980199392528, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039234684545597, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4228238121315746, - "ema_span_0": 892.8885156680175, - "ema_span_1": 671.1381877301445, - "enabled": true, - "initial_eprice_ema_dist": 0.0026343443989378687, - "initial_qty_pct": 0.03088168405838807, - "markup_range": 0.0010537329721392184, - "min_markup": 0.004237004938743872, - "n_close_orders": 8, - "rentry_pprice_dist": 0.046602883874779635, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43701446620106843, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/YGGUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/YGGUSDT.json deleted file mode 100644 index ab2fe39c3..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.44015477997485486, - "ema_span_0": 688.1391936010098, - "ema_span_1": 331.58076372519844, - "enabled": true, - "initial_eprice_ema_dist": -0.0744688113652975, - "initial_qty_pct": 0.01334182411293645, - "markup_range": 0.003846380513935199, - "min_markup": 0.0036844270968172848, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02742044681596389, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0499196951705976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZECUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ZECUSDT.json deleted file mode 100644 index 126f64f0d..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.450419879441086, - "ema_span_0": 34.77959091912413, - "ema_span_1": 898.1556121852162, - "enabled": true, - "initial_eprice_ema_dist": 0.0029882251599526416, - "initial_qty_pct": 0.01277250868480753, - "markup_range": 0.005712353972391207, - "min_markup": 0.0048324667377520735, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03994455783274117, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8355618921799761, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.167595655161588, - "ema_span_0": 670.0500831849777, - "ema_span_1": 1314.9848751881473, - "enabled": true, - "initial_eprice_ema_dist": 0.0017552271961483086, - "initial_qty_pct": 0.014479782312822848, - "markup_range": 0.006247725263843084, - "min_markup": 0.005195238935110349, - "n_close_orders": 12, - "rentry_pprice_dist": 0.022111094066342655, - "rentry_pprice_dist_wallet_exposure_weighting": 4.697786483294389, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZENUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ZENUSDT.json deleted file mode 100644 index e73b56f25..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9975321975952851, - "ema_span_0": 529.5777206221505, - "ema_span_1": 864.2117688545923, - "enabled": true, - "initial_eprice_ema_dist": -0.09964656244936065, - "initial_qty_pct": 0.012623632772361084, - "markup_range": 0.012101435220191394, - "min_markup": 0.004115488017892179, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0482176565636368, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0399630052373663, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5334471307267951, - "ema_span_0": 1234.5627941815458, - "ema_span_1": 1390.9489466161722, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017647219963558818, - "markup_range": 0.018265551181550523, - "min_markup": 0.009097285769915002, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0396082947171055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.111710813562418, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZILUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ZILUSDT.json deleted file mode 100644 index d703d094c..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.956981755842469, - "ema_span_0": 167.75516573766635, - "ema_span_1": 380.78191603280635, - "enabled": true, - "initial_eprice_ema_dist": 0.002966111165649351, - "initial_qty_pct": 0.018057211804940857, - "markup_range": 0.0015104980014625645, - "min_markup": 0.007054347523993756, - "n_close_orders": 9, - "rentry_pprice_dist": 0.038738197329599544, - "rentry_pprice_dist_wallet_exposure_weighting": 4.131675902955578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2013796011781999, - "ema_span_0": 1330.9202203480213, - "ema_span_1": 678.0837752808247, - "enabled": true, - "initial_eprice_ema_dist": -0.00582907346025, - "initial_qty_pct": 0.013226403118850179, - "markup_range": 0.005017186642253043, - "min_markup": 0.00243085805813879, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030031336468497, - "rentry_pprice_dist_wallet_exposure_weighting": 0.42115879745438484, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZRXUSDT.json b/configs/live/multisymbol/archived/2023-12-19_with_AU/ZRXUSDT.json deleted file mode 100644 index e3a935a29..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4069551320771247, - "ema_span_0": 1349.1523800476393, - "ema_span_1": 1417.3270623134426, - "enabled": true, - "initial_eprice_ema_dist": 0.0016514164236817717, - "initial_qty_pct": 0.014220972779020286, - "markup_range": 0.00198486342905699, - "min_markup": 0.006072969285693832, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04488027885355811, - "rentry_pprice_dist_wallet_exposure_weighting": 0.29448598026670003, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6911316315162889, - "ema_span_0": 1404.8312978762303, - "ema_span_1": 1420.87182753046, - "enabled": true, - "initial_eprice_ema_dist": -0.00938718495738028, - "initial_qty_pct": 0.01088859214345425, - "markup_range": 0.004569778047259771, - "min_markup": 0.008877653463957353, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03257403994063893, - "rentry_pprice_dist_wallet_exposure_weighting": 8.05842613177501, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-19_with_AU/metrics_recursive_grid.txt b/configs/live/multisymbol/archived/2023-12-19_with_AU/metrics_recursive_grid.txt deleted file mode 100644 index 18ac68809..000000000 --- a/configs/live/multisymbol/archived/2023-12-19_with_AU/metrics_recursive_grid.txt +++ /dev/null @@ -1,452 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-12-01 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| SEIUSDT | 0.004524 | 0.002463 | 0.1134 | 0.01953 | 0.01172 | 0.00917 | 109.6 | 0.08309 | 0.01009 | 0.07983 | 0.1239 | 104.88 | 276499999.995 | -| 1000PEPEUSDT | 0.003731 | 0.002405 | 0.03466 | 0.00642 | 0.01226 | 0.009837 | 133.6 | 0.0501 | 0.002063 | 0.03613 | 0.0885 | 208.29 | 276499999.996 | -| BNTUSDT | 0.002832 | 0.002201 | 0.03987 | 0.009256 | 0.007291 | 0.005391 | 59.63 | 0.02441 | 6.597e-05 | 0.01876 | 0.05037 | 111.46 | 276499999.997 | -| ARKMUSDT | 0.003323 | 0.002149 | 0.05753 | 0.0303 | 0.01198 | 0.00975 | 51.4 | 0.05186 | 0.01371 | 0.04864 | 0.08571 | 124.88 | 276499999.997 | -| BLURUSDT | 0.002851 | 0.001585 | 0.05289 | 0.01851 | 0.01022 | 0.00892 | 123.2 | 0.07126 | 0.0263 | 0.0715 | 0.1115 | 215.46 | 276499999.997 | -| WLDUSDT | 0.003152 | 0.002721 | 0.06397 | 0.05514 | 0.008067 | 0.009596 | 28.88 | 0.04803 | 0.02577 | 0.04631 | 0.05942 | 128.46 | 276499999.997 | -| XVGUSDT | 0.001581 | 0.001759 | 0.1148 | 0.09927 | 0.009625 | 0.01045 | 51.65 | 0.0643 | 0.1026 | 0.06411 | 0.0822 | 147.46 | 276499999.998 | -| MINAUSDT | 0.001813 | 0.001487 | 0.07706 | 0.04746 | 0.01324 | 0.01403 | 132.1 | 0.09564 | 0.147 | 0.09631 | 0.1442 | 295.5 | 276499999.998 | -| FETUSDT | 0.001884 | 0.001518 | 0.07137 | 0.0252 | 0.01697 | 0.01276 | 125.7 | 0.0842 | 0.04055 | 0.08272 | 0.124 | 316.88 | 276499999.998 | -| CYBERUSDT | 0.001814 | 0.002391 | 0.02272 | 0.0006211 | 0.008139 | 0.0064 | 49.23 | 0.02495 | 0.0 | 0.006018 | 0.01105 | 100.46 | 276499999.998 | -| HFTUSDT | 0.002042 | 0.0009535 | 0.04981 | 0.01486 | 0.01149 | 0.01075 | 91.3 | 0.0617 | 0.02148 | 0.0492 | 0.09029 | 237.46 | 276499999.998 | -| MAVUSDT | 0.001831 | 0.001395 | 0.04554 | 0.01699 | 0.01571 | 0.01172 | 113.8 | 0.07499 | 0.01212 | 0.07027 | 0.1076 | 153.46 | 276499999.998 | -| DODOXUSDT | 0.001816 | 0.001393 | 0.01498 | 0.006202 | 0.00468 | 0.004562 | 25.92 | 0.02423 | 0.0 | 0.01655 | 0.09253 | 113.46 | 276499999.998 | -| 1000FLOKIUSDT | 0.002011 | 0.001231 | 0.06185 | 0.01677 | 0.01642 | 0.01108 | 89.67 | 0.07725 | 0.05982 | 0.0777 | 0.1301 | 207.29 | 276499999.998 | -| DOGEUSDT | 0.001544 | 0.004124 | 0.071 | 0.04597 | 0.007723 | 0.01353 | 84.58 | 0.08823 | 0.06266 | 0.0917 | 0.2468 | 1237.58 | 276499999.998 | -| XVSUSDT | 0.001714 | 0.001026 | 0.05681 | 0.01497 | 0.01359 | 0.0105 | 81.48 | 0.07443 | 0.02723 | 0.06898 | 0.1041 | 230.88 | 276499999.998 | -| KEYUSDT | 0.001682 | 0.001472 | 0.06613 | 0.04664 | 0.007666 | 0.009671 | 52.97 | 0.07638 | 0.09185 | 0.07577 | 0.1341 | 189.46 | 276499999.998 | -| RADUSDT | 0.001601 | 0.001222 | 0.09001 | 0.05298 | 0.009006 | 0.009376 | 81.17 | 0.08088 | 0.04158 | 0.07542 | 0.1187 | 203.46 | 276499999.998 | -| RNDRUSDT | 0.00206 | 0.002082 | 0.08309 | 0.02674 | 0.01189 | 0.01121 | 53.02 | 0.09954 | 0.03809 | 0.09317 | 0.1287 | 299.88 | 276499999.998 | -| GMXUSDT | 0.001507 | 0.001196 | 0.07535 | 0.05235 | 0.01177 | 0.01027 | 137.3 | 0.06469 | 0.03799 | 0.06336 | 0.1039 | 285.38 | 276499999.998 | -| SUIUSDT | 0.00227 | 0.002201 | 0.0703 | 0.04068 | 0.01249 | 0.01106 | 100.5 | 0.08331 | 0.01217 | 0.07812 | 0.1353 | 210.29 | 276499999.998 | -| YGGUSDT | 0.002136 | 0.002253 | 0.08394 | 0.02709 | 0.01254 | 0.01016 | 37.4 | 0.07789 | 0.0245 | 0.07171 | 0.1023 | 116.83 | 276499999.998 | -| SOLUSDT | 0.001742 | 0.003055 | 0.06451 | 0.0341 | 0.01217 | 0.01442 | 130.4 | 0.09935 | 0.01622 | 0.09168 | 0.1663 | 1171.67 | 276499999.998 | -| STXUSDT | 0.001542 | 0.001686 | 0.09446 | 0.0143 | 0.01408 | 0.01093 | 95.62 | 0.06913 | 0.02035 | 0.06311 | 0.109 | 281.38 | 276499999.998 | -| ARBUSDT | 0.001947 | 0.0009084 | 0.03591 | 0.008269 | 0.01085 | 0.009783 | 106.3 | 0.05948 | 0.01185 | 0.04014 | 0.08549 | 251.33 | 276499999.998 | -| LQTYUSDT | 0.002108 | 0.001584 | 0.04875 | 0.02565 | 0.01343 | 0.01264 | 99.8 | 0.08337 | 0.01853 | 0.07711 | 0.1418 | 264.46 | 276499999.998 | -| ASTRUSDT | 0.001763 | 0.001311 | 0.09457 | 0.05103 | 0.01147 | 0.01048 | 78.43 | 0.08203 | 0.104 | 0.08473 | 0.1092 | 288.88 | 276499999.998 | -| NMRUSDT | 0.002327 | 0.001971 | 0.07121 | 0.01398 | 0.005458 | 0.007687 | 36.75 | 0.0743 | 0.003246 | 0.06804 | 0.1047 | 160.46 | 276499999.998 | -| UNFIUSDT | 0.001565 | 0.002138 | 0.07436 | 0.01272 | 0.01976 | 0.01625 | 118.8 | 0.09975 | 0.03472 | 0.08996 | 0.2179 | 1013.67 | 276499999.998 | -| CRVUSDT | 0.0007908 | 0.001723 | 0.05787 | 0.02638 | 0.01325 | 0.01469 | 132.9 | 0.09811 | 0.0218 | 0.0882 | 0.2452 | 1184.67 | 276499999.999 | -| XEMUSDT | 0.0007221 | 0.001825 | 0.05492 | 0.02745 | 0.01276 | 0.01448 | 139.1 | 0.09196 | 0.02588 | 0.08487 | 0.1754 | 1001.67 | 276499999.999 | -| AAVEUSDT | 0.001285 | 0.00257 | 0.05464 | 0.03339 | 0.01272 | 0.01393 | 118.4 | 0.0924 | 0.02394 | 0.08503 | 0.2211 | 1139.67 | 276499999.999 | -| EGLDUSDT | 0.0008394 | 0.00181 | 0.08549 | 0.03601 | 0.01616 | 0.01838 | 110.5 | 0.09829 | 0.09691 | 0.09228 | 0.1823 | 1171.67 | 276499999.999 | -| ALPHAUSDT | 0.001004 | 0.002367 | 0.05068 | 0.02393 | 0.01321 | 0.01208 | 95.4 | 0.0862 | 0.02286 | 0.07956 | 0.1624 | 1101.67 | 276499999.999 | -| KNCUSDT | 0.0005117 | 0.0009106 | 0.03789 | 0.0103 | 0.01804 | 0.01404 | 131.1 | 0.07397 | 0.007599 | 0.05016 | 0.1777 | 1255.62 | 276499999.999 | -| ETHUSDT | 0.0005704 | 0.001706 | 0.0445 | 0.02892 | 0.005835 | 0.009107 | 55.37 | 0.06102 | 0.04284 | 0.06525 | 0.1248 | 1428.96 | 276499999.999 | -| LRCUSDT | 0.0009145 | 0.001727 | 0.0489 | 0.02035 | 0.01109 | 0.01087 | 129.2 | 0.08781 | 0.03437 | 0.09871 | 0.202 | 1136.67 | 276499999.999 | -| OMGUSDT | 0.001335 | 0.002146 | 0.06594 | 0.027 | 0.01332 | 0.0132 | 137.5 | 0.07579 | 0.02242 | 0.07257 | 0.2065 | 1245.58 | 276499999.999 | -| IDEXUSDT | 0.001054 | 0.001021 | 0.07851 | 0.0545 | 0.01227 | 0.01126 | 79.93 | 0.08628 | 0.03682 | 0.07992 | 0.1073 | 210.46 | 276499999.999 | -| ACHUSDT | 0.0009748 | 0.0009191 | 0.06015 | 0.03636 | 0.01662 | 0.01384 | 118.6 | 0.09851 | 0.08473 | 0.09903 | 0.1315 | 280.38 | 276499999.999 | -| QNTUSDT | 0.0008375 | 0.0009656 | 0.08119 | 0.05372 | 0.008607 | 0.009546 | 82.93 | 0.06718 | 0.1556 | 0.07833 | 0.09505 | 405.88 | 276499999.999 | -| AXSUSDT | 0.0006519 | 0.002013 | 0.04952 | 0.0288 | 0.01706 | 0.01824 | 138.1 | 0.05228 | 0.1301 | 0.02846 | 0.1105 | 1104.67 | 276499999.999 | -| UMAUSDT | 0.001422 | 0.0007726 | 0.04189 | 0.01322 | 0.01017 | 0.009425 | 126.5 | 0.05519 | 0.02211 | 0.04401 | 0.1211 | 203.46 | 276499999.999 | -| QTUMUSDT | 0.000629 | 0.001184 | 0.06817 | 0.01529 | 0.01609 | 0.01396 | 139.8 | 0.09099 | 0.07419 | 0.08998 | 0.2499 | 1378.62 | 276499999.999 | -| RSRUSDT | 0.0006776 | 0.0014 | 0.0483 | 0.01285 | 0.01769 | 0.01555 | 139.9 | 0.09556 | 0.05062 | 0.09436 | 0.177 | 1136.67 | 276499999.999 | -| MANAUSDT | 0.0006871 | 0.001193 | 0.02964 | 0.01696 | 0.01066 | 0.01384 | 76.98 | 0.09569 | 0.0391 | 0.09178 | 0.2482 | 989.67 | 276499999.999 | -| FTMUSDT | 0.0006782 | 0.001536 | 0.03419 | 0.01057 | 0.0148 | 0.01594 | 125.6 | 0.09984 | 0.0223 | 0.09015 | 0.2425 | 1161.67 | 276499999.999 | -| HBARUSDT | 0.001372 | 0.002048 | 0.03585 | 0.026 | 0.007693 | 0.01093 | 52.38 | 0.09089 | 0.02623 | 0.09397 | 0.1892 | 987.67 | 276499999.999 | -| GALUSDT | 0.0005264 | 0.0009072 | 0.02783 | 0.007526 | 0.0129 | 0.01005 | 125.1 | 0.0429 | 0.01143 | 0.02832 | 0.06604 | 573.38 | 276499999.999 | -| BANDUSDT | 0.001047 | 0.002169 | 0.07081 | 0.02482 | 0.01552 | 0.01405 | 104.2 | 0.09926 | 0.07249 | 0.09932 | 0.185 | 1218.67 | 276499999.999 | -| AGIXUSDT | 0.001118 | 0.001222 | 0.05815 | 0.00864 | 0.01441 | 0.00999 | 142.3 | 0.06871 | 0.01761 | 0.06449 | 0.0864 | 286.38 | 276499999.999 | -| FXSUSDT | 0.001059 | 0.0006079 | 0.04761 | 0.02571 | 0.01794 | 0.01436 | 91.93 | 0.08955 | 0.1157 | 0.08568 | 0.1208 | 313.83 | 276499999.999 | -| AUDIOUSDT | 0.0005256 | 0.001022 | 0.04583 | 0.0212 | 0.01279 | 0.01127 | 120.4 | 0.05476 | 0.01045 | 0.04725 | 0.1651 | 832.83 | 276499999.999 | -| ETCUSDT | 0.0009139 | 0.001825 | 0.0235 | 0.01083 | 0.006673 | 0.006636 | 117.5 | 0.0466 | 0.00861 | 0.04829 | 0.1301 | 1413.62 | 276499999.999 | -| DEFIUSDT | 0.000664 | 0.001667 | 0.08756 | 0.04484 | 0.01488 | 0.0142 | 122.5 | 0.08926 | 0.05525 | 0.09208 | 0.1964 | 1188.67 | 276499999.999 | -| SNXUSDT | 0.0009861 | 0.00192 | 0.08879 | 0.02402 | 0.0153 | 0.01363 | 138.9 | 0.0914 | 0.04335 | 0.08785 | 0.2054 | 1202.67 | 276499999.999 | -| IOSTUSDT | 0.0006742 | 0.001477 | 0.05968 | 0.01367 | 0.01429 | 0.01482 | 143.3 | 0.09253 | 0.0233 | 0.07514 | 0.2125 | 1377.62 | 276499999.999 | -| MTLUSDT | 0.000972 | 0.001569 | 0.0609 | 0.02638 | 0.01577 | 0.0159 | 128.6 | 0.09852 | 0.01451 | 0.08896 | 0.2465 | 973.67 | 276499999.999 | -| HOTUSDT | 0.001252 | 0.003043 | 0.06514 | 0.03483 | 0.008092 | 0.009327 | 107.0 | 0.06879 | 0.03437 | 0.07917 | 0.161 | 974.67 | 276499999.999 | -| 1000SHIBUSDT | 0.001014 | 0.001933 | 0.02652 | 0.007665 | 0.008793 | 0.008385 | 88.05 | 0.05721 | 0.005825 | 0.0457 | 0.2129 | 933.25 | 276499999.999 | -| ZENUSDT | 0.0008487 | 0.002013 | 0.07218 | 0.02052 | 0.01838 | 0.01476 | 136.9 | 0.0674 | 0.0174 | 0.04961 | 0.1201 | 1100.67 | 276499999.999 | -| SPELLUSDT | 0.0009446 | 0.0009922 | 0.06801 | 0.04168 | 0.0117 | 0.01096 | 130.3 | 0.06125 | 0.03534 | 0.05888 | 0.1498 | 449.46 | 276499999.999 | -| WOOUSDT | 0.0006439 | 0.001095 | 0.03247 | 0.01361 | 0.0143 | 0.01216 | 131.5 | 0.05724 | 0.01397 | 0.04774 | 0.09624 | 600.83 | 276499999.999 | -| SUSHIUSDT | 0.001016 | 0.002318 | 0.05242 | 0.03381 | 0.01757 | 0.02142 | 91.87 | 0.09338 | 0.1149 | 0.09979 | 0.1807 | 1181.67 | 276499999.999 | -| CELOUSDT | 0.0005597 | 0.0009471 | 0.04308 | 0.027 | 0.01495 | 0.01463 | 91.47 | 0.09711 | 0.0511 | 0.09627 | 0.1564 | 793.83 | 276499999.999 | -| BNBUSDT | 0.000582 | 0.001778 | 0.03168 | 0.01814 | 0.006364 | 0.008013 | 129.0 | 0.03784 | 0.05128 | 0.03677 | 0.1105 | 1388.62 | 276499999.999 | -| APEUSDT | 0.0008358 | 0.001351 | 0.05203 | 0.02932 | 0.01359 | 0.01373 | 129.3 | 0.08648 | 0.02826 | 0.08229 | 0.1607 | 622.33 | 276499999.999 | -| EDUUSDT | 0.0009227 | 0.0008461 | 0.04305 | 0.02486 | 0.01418 | 0.01336 | 66.45 | 0.07547 | 0.05467 | 0.0717 | 0.1362 | 213.46 | 276499999.999 | -| ADAUSDT | 0.0007853 | 0.001591 | 0.04735 | 0.03831 | 0.007524 | 0.01259 | 75.32 | 0.08057 | 0.06242 | 0.08499 | 0.2286 | 1398.62 | 276499999.999 | -| API3USDT | 0.0006818 | 0.001004 | 0.06438 | 0.03942 | 0.01411 | 0.01224 | 125.2 | 0.09663 | 0.05579 | 0.09345 | 0.1372 | 645.83 | 276499999.999 | -| GRTUSDT | 0.0009407 | 0.002071 | 0.09401 | 0.02464 | 0.01664 | 0.01489 | 142.4 | 0.09823 | 0.03929 | 0.0921 | 0.2221 | 1075.67 | 276499999.999 | -| AMBUSDT | 0.001394 | 0.00151 | 0.09106 | 0.00862 | 0.01741 | 0.01462 | 77.55 | 0.09291 | 0.01338 | 0.07629 | 0.1626 | 244.46 | 276499999.999 | -| BELUSDT | 0.0008742 | 0.001658 | 0.04018 | 0.01895 | 0.01282 | 0.01412 | 92.98 | 0.09348 | 0.02058 | 0.08763 | 0.1744 | 1106.67 | 276499999.999 | -| APTUSDT | 0.001026 | 0.0009556 | 0.04082 | 0.01455 | 0.01396 | 0.01232 | 129.2 | 0.07225 | 0.06551 | 0.061 | 0.138 | 406.88 | 276499999.999 | -| DENTUSDT | 0.0006056 | 0.0015 | 0.03271 | 0.01369 | 0.009518 | 0.009141 | 111.2 | 0.06116 | 0.02462 | 0.05922 | 0.1434 | 980.79 | 276499999.999 | -| BALUSDT | 0.0006201 | 0.0007603 | 0.0354 | 0.0115 | 0.01461 | 0.0141 | 142.7 | 0.09704 | 0.04583 | 0.0965 | 0.2184 | 1184.67 | 276499999.999 | -| STGUSDT | 0.0005992 | 0.0008659 | 0.0728 | 0.05785 | 0.0127 | 0.01443 | 122.0 | 0.09874 | 0.1274 | 0.09205 | 0.1513 | 461.46 | 276499999.999 | -| OCEANUSDT | 0.0009343 | 0.001598 | 0.06055 | 0.02589 | 0.01461 | 0.01601 | 129.3 | 0.08769 | 0.05676 | 0.08173 | 0.1457 | 1121.67 | 276499999.999 | -| BLZUSDT | 0.0007939 | 0.0009243 | 0.03889 | 0.00795 | 0.01881 | 0.01693 | 111.0 | 0.09807 | 0.01572 | 0.07568 | 0.2356 | 1168.67 | 276499999.999 | -| SANDUSDT | 0.0007776 | 0.00217 | 0.05858 | 0.03844 | 0.01344 | 0.02323 | 129.7 | 0.05793 | 0.1279 | 0.05202 | 0.1713 | 1038.67 | 276499999.999 | -| AVAXUSDT | 0.0008847 | 0.002019 | 0.03718 | 0.02295 | 0.01019 | 0.01192 | 114.4 | 0.0664 | 0.01115 | 0.06168 | 0.2438 | 1162.67 | 276499999.999 | -| SFPUSDT | 0.0007873 | 0.002123 | 0.04496 | 0.02403 | 0.01341 | 0.01498 | 135.5 | 0.096 | 0.01786 | 0.08817 | 0.2164 | 1008.67 | 276499999.999 | -| ONEUSDT | 0.0006958 | 0.001873 | 0.05877 | 0.01167 | 0.01629 | 0.01312 | 135.5 | 0.07979 | 0.03177 | 0.06851 | 0.1877 | 986.67 | 276499999.999 | -| ENSUSDT | 0.0005728 | 0.00126 | 0.05329 | 0.02434 | 0.01141 | 0.01194 | 97.38 | 0.08961 | 0.08386 | 0.09199 | 0.137 | 729.83 | 276499999.999 | -| LINAUSDT | 0.000811 | 0.001352 | 0.03736 | 0.01568 | 0.01792 | 0.01357 | 88.0 | 0.07981 | 0.01659 | 0.06935 | 0.2335 | 985.67 | 276499999.999 | -| 1000LUNCUSDT | 0.001405 | 0.00174 | 0.0506 | 0.003481 | 0.01009 | 0.008181 | 114.4 | 0.04312 | 0.004126 | 0.02888 | 0.0928 | 446.42 | 276499999.999 | -| PHBUSDT | 0.001412 | 0.001264 | 0.08485 | 0.01921 | 0.01596 | 0.01233 | 130.9 | 0.08477 | 0.06461 | 0.08261 | 0.1359 | 286.38 | 276499999.999 | -| BNXUSDT | 0.0006662 | 0.0007936 | 0.05234 | 0.0001486 | 0.01671 | 0.01336 | 111.2 | 0.07056 | 0.0 | 0.03087 | 0.04239 | 280.38 | 276499999.999 | -| HIGHUSDT | 0.0008261 | 0.001266 | 0.07568 | 0.01019 | 0.02108 | 0.01468 | 140.8 | 0.07065 | 0.003403 | 0.05555 | 0.07749 | 295.88 | 276499999.999 | -| IMXUSDT | 0.0009589 | 0.001555 | 0.06031 | 0.02647 | 0.01046 | 0.01165 | 64.48 | 0.09222 | 0.05303 | 0.09179 | 0.1368 | 656.83 | 276499999.999 | -| 1INCHUSDT | 0.001008 | 0.001391 | 0.04768 | 0.02175 | 0.01498 | 0.01431 | 139.9 | 0.08474 | 0.07023 | 0.08759 | 0.2303 | 1069.54 | 276499999.999 | -| XLMUSDT | 0.0005289 | 0.001907 | 0.02425 | 0.006878 | 0.009453 | 0.009471 | 141.4 | 0.04792 | 0.02679 | 0.03703 | 0.1698 | 1409.62 | 276499999.999 | -| LITUSDT | 0.000703 | 0.00157 | 0.04029 | 0.01958 | 0.01491 | 0.01411 | 118.7 | 0.07118 | 0.01299 | 0.06233 | 0.2205 | 1014.67 | 276499999.999 | -| MATICUSDT | 0.001312 | 0.003458 | 0.05473 | 0.02379 | 0.009796 | 0.01071 | 91.1 | 0.07379 | 0.02841 | 0.07051 | 0.152 | 1133.67 | 276499999.999 | -| LDOUSDT | 0.001172 | 0.001499 | 0.06892 | 0.01182 | 0.01701 | 0.01152 | 106.4 | 0.04968 | 0.005064 | 0.0343 | 0.08418 | 433.46 | 276499999.999 | -| BLUEBIRDUSDT | 0.0006846 | 0.0007172 | 0.08128 | 0.05032 | 0.007562 | 0.01026 | 127.4 | 0.08585 | 0.1999 | 0.09167 | 0.1217 | 392.46 | 276499999.999 | -| RLCUSDT | 0.001268 | 0.003249 | 0.06278 | 0.0307 | 0.01325 | 0.01468 | 111.2 | 0.09727 | 0.02849 | 0.09005 | 0.2097 | 1216.67 | 276499999.999 | -| VETUSDT | 0.0005477 | 0.001697 | 0.04509 | 0.01609 | 0.01127 | 0.01203 | 130.3 | 0.07141 | 0.009171 | 0.04621 | 0.1351 | 1384.62 | 276499999.999 | -| OXTUSDT | 0.001013 | 0.001082 | 0.1095 | 0.06513 | 0.01309 | 0.01153 | 77.6 | 0.08135 | 0.1226 | 0.07716 | 0.09576 | 110.46 | 276499999.999 | -| SXPUSDT | 0.0007532 | 0.002452 | 0.0339 | 0.01748 | 0.01082 | 0.01169 | 80.72 | 0.06165 | 0.02415 | 0.0566 | 0.1548 | 1226.58 | 276499999.999 | -| IDUSDT | 0.0009147 | 0.0006121 | 0.02921 | 1.657e-05 | 0.01759 | 0.01298 | 110.0 | 0.05766 | 0.0 | 0.01935 | 0.04199 | 251.38 | 276499999.999 | -| AGLDUSDT | 0.001363 | 0.001493 | 0.0282 | 0.0124 | 0.01131 | 0.009865 | 58.75 | 0.06341 | 0.01572 | 0.05895 | 0.09178 | 123.88 | 276499999.999 | -| ANKRUSDT | 0.0009978 | 0.001549 | 0.04074 | 0.01909 | 0.009837 | 0.01051 | 121.8 | 0.08176 | 0.01983 | 0.07971 | 0.2298 | 1037.67 | 276499999.999 | -| PENDLEUSDT | 0.001324 | 0.001248 | 0.04381 | 0.0258 | 0.01114 | 0.008843 | 92.42 | 0.04307 | 0.007504 | 0.03953 | 0.05602 | 124.88 | 276499999.999 | -| CHZUSDT | 0.0006037 | 0.001474 | 0.02857 | 0.01472 | 0.01446 | 0.01202 | 132.4 | 0.06524 | 0.09185 | 0.07012 | 0.1344 | 1042.67 | 276499999.999 | -| GALAUSDT | 0.000924 | 0.001346 | 0.05808 | 0.03991 | 0.01176 | 0.01265 | 74.1 | 0.07716 | 0.07915 | 0.09197 | 0.1405 | 802.83 | 276499999.999 | -| MAGICUSDT | 0.0008086 | 0.000514 | 0.01644 | 0.0 | 0.01549 | 0.01038 | 87.93 | 0.04051 | 0.0 | 0.005595 | 0.01275 | 308.83 | 276499999.999 | -| RUNEUSDT | 0.0008801 | 0.002463 | 0.05514 | 0.01936 | 0.0162 | 0.01523 | 143.2 | 0.09669 | 0.05112 | 0.09114 | 0.2286 | 1181.67 | 276499999.999 | -| CFXUSDT | 0.0009446 | 0.0009847 | 0.05103 | 0.03018 | 0.01603 | 0.01381 | 122.7 | 0.09405 | 0.103 | 0.09309 | 0.1205 | 282.38 | 276499999.999 | -| INJUSDT | 0.0009211 | 0.001173 | 0.02496 | 0.006995 | 0.008194 | 0.00718 | 73.43 | 0.04656 | 0.003562 | 0.03957 | 0.08569 | 469.88 | 276499999.999 | -| ALGOUSDT | 0.0009811 | 0.002264 | 0.07066 | 0.03719 | 0.01676 | 0.02314 | 128.5 | 0.08145 | 0.08667 | 0.08228 | 0.2297 | 1261.58 | 276499999.999 | -| COTIUSDT | 0.0008214 | 0.001962 | 0.07174 | 0.02156 | 0.01262 | 0.01128 | 92.63 | 0.08057 | 0.02504 | 0.07482 | 0.2364 | 994.67 | 276499999.999 | -| COMBOUSDT | 0.001486 | 0.00133 | 0.05576 | 0.01779 | 0.01079 | 0.009779 | 76.23 | 0.09268 | 0.02084 | 0.0869 | 0.1596 | 180.46 | 276499999.999 | -| IOTAUSDT | 0.000521 | 0.001447 | 0.05214 | 0.005877 | 0.01374 | 0.01473 | 131.6 | 0.09142 | 0.01394 | 0.06952 | 0.1808 | 1386.62 | 276499999.999 | -| BCHUSDT | 0.000897 | 0.001291 | 0.04579 | 0.0279 | 0.008822 | 0.01879 | 72.53 | 0.08664 | 0.1181 | 0.09178 | 0.2251 | 1428.96 | 276499999.999 | -| RVNUSDT | 0.0008026 | 0.001907 | 0.05862 | 0.01203 | 0.01506 | 0.01207 | 143.1 | 0.05531 | 0.02476 | 0.04583 | 0.1528 | 1009.67 | 276499999.999 | -| ICXUSDT | 0.0007299 | 0.001262 | 0.05286 | 0.02039 | 0.01355 | 0.01442 | 138.9 | 0.06949 | 0.04411 | 0.06639 | 0.2172 | 1170.67 | 276499999.999 | -| CVXUSDT | 0.0009869 | 0.0007185 | 0.04485 | 0.01575 | 0.01305 | 0.01131 | 111.7 | 0.05257 | 0.02054 | 0.04629 | 0.08131 | 433.46 | 276499999.999 | -| CTKUSDT | 0.0009418 | 0.002747 | 0.07329 | 0.03515 | 0.01186 | 0.01331 | 130.4 | 0.07949 | 0.0684 | 0.07869 | 0.1948 | 1105.67 | 276499999.999 | -| COMPUSDT | 0.001038 | 0.001525 | 0.08495 | 0.04799 | 0.01553 | 0.0163 | 119.7 | 0.09936 | 0.06037 | 0.09762 | 0.192 | 1247.58 | 276499999.999 | -| MKRUSDT | 0.001252 | 0.002168 | 0.08842 | 0.03083 | 0.0113 | 0.01215 | 103.6 | 0.09414 | 0.05372 | 0.09933 | 0.2168 | 1203.67 | 276499999.999 | -| XTZUSDT | 0.0006116 | 0.001724 | 0.05434 | 0.02262 | 0.01249 | 0.01222 | 136.3 | 0.07343 | 0.01312 | 0.06418 | 0.1581 | 1392.62 | 276499999.999 | -| OPUSDT | 0.001084 | 0.001074 | 0.02943 | 0.006077 | 0.009545 | 0.007643 | 80.63 | 0.04014 | 0.005833 | 0.02755 | 0.0642 | 546.38 | 276499999.999 | -| CHRUSDT | 0.000959 | 0.001948 | 0.09001 | 0.0406 | 0.01335 | 0.0133 | 103.7 | 0.09184 | 0.0926 | 0.09446 | 0.2364 | 992.67 | 276499999.999 | -| THETAUSDT | 0.0008721 | 0.002604 | 0.07826 | 0.02596 | 0.01177 | 0.01166 | 84.23 | 0.09752 | 0.03989 | 0.09987 | 0.2355 | 1281.62 | 276499999.999 | -| SKLUSDT | 0.0005944 | 0.001202 | 0.04605 | 0.0201 | 0.01555 | 0.01477 | 111.1 | 0.08429 | 0.03263 | 0.08005 | 0.2374 | 1086.67 | 276499999.999 | -| SSVUSDT | 0.0008918 | 0.0006757 | 0.05044 | 0.01634 | 0.01842 | 0.01454 | 120.4 | 0.09998 | 0.07295 | 0.09411 | 0.1261 | 278.46 | 276499999.999 | -| ARUSDT | 0.0007728 | 0.001327 | 0.05923 | 0.03021 | 0.01197 | 0.01211 | 130.9 | 0.07935 | 0.06223 | 0.08343 | 0.1685 | 792.83 | 276499999.999 | -| FILUSDT | 0.0007332 | 0.00141 | 0.03143 | 0.005392 | 0.006644 | 0.008863 | 100.6 | 0.05209 | 0.00278 | 0.03657 | 0.1442 | 1139.71 | 276499999.999 | -| HOOKUSDT | 0.0009664 | 0.001054 | 0.07397 | 0.03249 | 0.0127 | 0.01179 | 140.4 | 0.05797 | 0.0237 | 0.05066 | 0.07763 | 310.83 | 276499999.999 | -| RDNTUSDT | 0.001458 | 0.001347 | 0.08622 | 0.007808 | 0.01267 | 0.009896 | 105.9 | 0.05357 | 0.01504 | 0.04328 | 0.1075 | 238.46 | 276499999.999 | -| ATOMUSDT | 0.0005298 | 0.001397 | 0.03431 | 0.005916 | 0.01038 | 0.009603 | 112.2 | 0.05019 | 0.007521 | 0.02927 | 0.1085 | 1391.46 | 276499999.999 | -| NKNUSDT | 0.001205 | 0.002397 | 0.1012 | 0.03235 | 0.01345 | 0.01379 | 121.1 | 0.09655 | 0.05108 | 0.09573 | 0.2239 | 964.67 | 276499999.999 | -| ALICEUSDT | 0.0008357 | 0.00215 | 0.05922 | 0.01782 | 0.01271 | 0.01166 | 106.5 | 0.07977 | 0.02089 | 0.07286 | 0.217 | 988.83 | 276499999.999 | -| LTCUSDT | 0.0005538 | 0.001096 | 0.03566 | 0.005853 | 0.01263 | 0.01097 | 125.3 | 0.06589 | 0.003156 | 0.03121 | 0.2298 | 1420.62 | 276499999.999 | -| CKBUSDT | 0.0009329 | 0.0009248 | 0.03824 | 0.002898 | 0.01184 | 0.008911 | 129.8 | 0.03736 | 0.003885 | 0.01973 | 0.04968 | 274.46 | 276499999.999 | -| STMXUSDT | 0.0007319 | 0.001257 | 0.04282 | 0.01954 | 0.01631 | 0.01506 | 132.3 | 0.07678 | 0.03447 | 0.06815 | 0.2161 | 982.67 | 276499999.999 | -| ARPAUSDT | 0.0005177 | 0.0007016 | 0.03645 | 0.02003 | 0.009871 | 0.009897 | 110.2 | 0.07806 | 0.04806 | 0.07739 | 0.2286 | 771.83 | 276499999.999 | -| ZRXUSDT | 0.0007575 | 0.001091 | 0.03594 | 0.01593 | 0.01462 | 0.01382 | 129.5 | 0.07327 | 0.0246 | 0.06741 | 0.2096 | 1253.58 | 276499999.999 | -| ICPUSDT | 0.001041 | 0.001196 | 0.06763 | 0.01872 | 0.01091 | 0.008145 | 110.3 | 0.04726 | 0.009533 | 0.04274 | 0.07934 | 428.88 | 276499999.999 | -| ZILUSDT | 0.0007988 | 0.001843 | 0.05879 | 0.02815 | 0.01422 | 0.01601 | 136.8 | 0.09817 | 0.02119 | 0.08745 | 0.2041 | 1259.58 | 276499999.999 | -| REEFUSDT | 0.0007969 | 0.001536 | 0.04411 | 0.0154 | 0.01193 | 0.01324 | 129.7 | 0.07745 | 0.01006 | 0.061 | 0.2212 | 1010.67 | 276499999.999 | -| TRUUSDT | 0.001413 | 0.0009063 | 0.04005 | 0.007601 | 0.01903 | 0.01311 | 130.1 | 0.05996 | 0.0007633 | 0.02601 | 0.06996 | 267.46 | 276499999.999 | -| LINKUSDT | 0.001001 | 0.002083 | 0.05781 | 0.03108 | 0.009863 | 0.01323 | 133.5 | 0.09482 | 0.03542 | 0.09761 | 0.2391 | 1412.62 | 276499999.999 | -| STORJUSDT | 0.0008965 | 0.001394 | 0.0359 | 0.02256 | 0.0138 | 0.01439 | 118.4 | 0.05976 | 0.03351 | 0.05176 | 0.187 | 1169.67 | 276499999.999 | -| KSMUSDT | 0.0008675 | 0.001294 | 0.04733 | 0.03139 | 0.01434 | 0.01602 | 116.6 | 0.091 | 0.05691 | 0.08484 | 0.2363 | 1141.67 | 276499999.999 | -| XRPUSDT | 0.001029 | 0.002126 | 0.05126 | 0.0071 | 0.01057 | 0.009084 | 131.5 | 0.05009 | 0.003678 | 0.03461 | 0.2373 | 1423.62 | 276499999.999 | -| ZECUSDT | 0.000628 | 0.0009618 | 0.03463 | 0.01177 | 0.01276 | 0.01434 | 130.0 | 0.08245 | 0.02671 | 0.0709 | 0.2415 | 1393.62 | 276499999.999 | -| TLMUSDT | 0.0009089 | 0.0005638 | 0.0696 | 0.03024 | 0.01275 | 0.01093 | 126.3 | 0.08293 | 0.1096 | 0.07785 | 0.1092 | 244.46 | 276499999.999 | -| MDTUSDT | 0.001423 | 0.0008001 | 0.02606 | 0.0003279 | 0.009653 | 0.007491 | 96.02 | 0.03448 | 0.0 | 0.008366 | 0.01976 | 152.46 | 276499999.999 | -| WAVESUSDT | 0.001257 | 0.002753 | 0.08109 | 0.03752 | 0.0148 | 0.01531 | 140.5 | 0.09833 | 0.05269 | 0.09662 | 0.2419 | 1204.67 | 276499999.999 | -| UNIUSDT | 0.0009077 | 0.001652 | 0.04877 | 0.01756 | 0.01538 | 0.01227 | 143.7 | 0.05328 | 0.01481 | 0.03595 | 0.1104 | 1167.67 | 276499999.999 | -| EOSUSDT | 0.0003165 | 0.0007388 | 0.02553 | 0.002969 | 0.01207 | 0.01178 | 133.7 | 0.06894 | 0.006502 | 0.03741 | 0.1443 | 1421.62 | 276500000.0 | -| CTSIUSDT | 0.0003246 | 0.0005209 | 0.01965 | 0.000354 | 0.01342 | 0.0107 | 88.42 | 0.04981 | 4.164e-05 | 0.01322 | 0.1203 | 764.83 | 276500000.0 | -| BTCUSDT | 0.0002707 | 0.0007794 | 0.04927 | 0.01997 | 0.008341 | 0.008198 | 138.0 | 0.04188 | 0.04677 | 0.03999 | 0.1292 | 1428.96 | 276500000.0 | -| TRBUSDT | 0.0004512 | 0.0005564 | 0.02268 | 0.002093 | 0.02048 | 0.018 | 143.2 | 0.09217 | 0.006637 | 0.02498 | 0.06726 | 1182.67 | 276500000.0 | -| 1000XECUSDT | 0.0003925 | 0.0006089 | 0.02509 | 0.00682 | 0.009054 | 0.008065 | 141.9 | 0.04118 | 0.02465 | 0.02849 | 0.1387 | 803.83 | 276500000.0 | -| ROSEUSDT | 0.0004211 | 0.000753 | 0.01692 | 0.002909 | 0.00948 | 0.009381 | 107.2 | 0.04444 | 0.008435 | 0.02238 | 0.1931 | 698.83 | 276500000.0 | -| TRXUSDT | 0.0002769 | 0.001315 | 0.02908 | 0.01018 | 0.009736 | 0.008604 | 134.5 | 0.03964 | 0.0168 | 0.03001 | 0.09772 | 1414.62 | 276500000.0 | -| RENUSDT | 0.0004112 | 0.0006996 | 0.0271 | 0.002483 | 0.01685 | 0.01663 | 74.3 | 0.09982 | 0.01956 | 0.05907 | 0.1985 | 1142.67 | 276500000.0 | -| CELRUSDT | 0.0004518 | 0.001199 | 0.03388 | 0.00915 | 0.01088 | 0.01029 | 71.88 | 0.0578 | 0.008714 | 0.04562 | 0.163 | 975.67 | 276500000.0 | -| DASHUSDT | 0.000406 | 0.0008812 | 0.03443 | 0.003223 | 0.01484 | 0.01656 | 137.2 | 0.0943 | 0.006892 | 0.04427 | 0.1732 | 1394.62 | 276500000.0 | -| LUNA2USDT | 0.0004881 | 0.000512 | 0.0189 | 0.0005045 | 0.01113 | 0.01033 | 89.25 | 0.06287 | 0.0 | 0.03113 | 0.2286 | 445.83 | 276500000.0 | -| ATAUSDT | 0.000496 | 0.0009459 | 0.04325 | 0.01157 | 0.01417 | 0.0113 | 101.1 | 0.04979 | 0.009324 | 0.03805 | 0.09412 | 820.83 | 276500000.0 | -| KAVAUSDT | 0.0004383 | 0.001019 | 0.04188 | 0.0222 | 0.01601 | 0.01789 | 116.2 | 0.0814 | 0.06007 | 0.07083 | 0.2262 | 1219.67 | 276500000.0 | -| JOEUSDT | 0.0004739 | 0.0004835 | 0.03307 | 0.00989 | 0.01476 | 0.01151 | 91.32 | 0.06697 | 0.01943 | 0.06291 | 0.08972 | 245.46 | 276500000.0 | -| ONTUSDT | 0.0004477 | 0.0009416 | 0.05203 | 0.005924 | 0.01736 | 0.01642 | 138.2 | 0.09258 | 0.008918 | 0.06236 | 0.1519 | 1387.62 | 276500000.0 | -| DARUSDT | 0.0004504 | 0.0006968 | 0.02981 | 0.009239 | 0.009825 | 0.008818 | 78.88 | 0.05198 | 0.01626 | 0.04039 | 0.0938 | 579.83 | 276500000.0 | -| BATUSDT | 0.0003407 | 0.0008335 | 0.037 | 0.0006795 | 0.01523 | 0.01311 | 134.2 | 0.07077 | 0.001878 | 0.03369 | 0.1096 | 1385.62 | 276500000.0 | -| XMRUSDT | 0.0004658 | 0.001253 | 0.05329 | 0.02767 | 0.008018 | 0.01118 | 125.1 | 0.08529 | 0.04384 | 0.08838 | 0.241 | 1395.62 | 276500000.0 | -| DYDXUSDT | 0.0004119 | 0.0007223 | 0.03011 | 8.22e-05 | 0.0144 | 0.01212 | 116.5 | 0.06405 | 0.0 | 0.02658 | 0.07128 | 810.83 | 276500000.0 | -| FOOTBALLUSDT | 0.0001914 | 0.0004611 | 0.02754 | 0.003013 | 0.01063 | 0.007716 | 135.3 | 0.03659 | 0.0001512 | 0.01337 | 0.05709 | 454.83 | 276500000.0 | -| PEOPLEUSDT | 0.000368 | 0.0006452 | 0.02037 | 6.494e-05 | 0.01354 | 0.01097 | 98.07 | 0.0602 | 0.0 | 0.02142 | 0.07308 | 705.79 | 276500000.0 | -| MASKUSDT | 0.0003219 | 0.0005656 | 0.02704 | 0.009364 | 0.01591 | 0.01368 | 124.8 | 0.06739 | 0.06672 | 0.06492 | 0.1397 | 824.83 | 276500000.0 | -| C98USDT | 0.0003469 | 0.0006091 | 0.02862 | 0.01338 | 0.01594 | 0.0141 | 115.2 | 0.08844 | 0.016 | 0.08035 | 0.1266 | 827.83 | 276500000.0 | -| IOTXUSDT | 0.0002118 | 0.0003567 | 0.03355 | 0.01475 | 0.01574 | 0.01342 | 91.63 | 0.08161 | 0.128 | 0.08218 | 0.1462 | 839.83 | 276500000.0 | -| DGBUSDT | 0.0003809 | 0.0006301 | 0.02609 | 0.007057 | 0.01082 | 0.01372 | 104.9 | 0.09974 | 0.0564 | 0.09147 | 0.232 | 952.83 | 276500000.0 | -| TUSDT | 0.0006454 | 0.0005889 | 0.06895 | 0.04348 | 0.01415 | 0.01369 | 132.8 | 0.1006 | 0.06413 | 0.09355 | 0.1381 | 301.42 | 276500643.885 | -| DUSKUSDT | 0.0004711 | 0.0008128 | 0.04631 | 0.01581 | 0.01517 | 0.01584 | 138.9 | 0.1036 | 0.0604 | 0.09919 | 0.1903 | 691.83 | 276503557.57 | -| NEARUSDT | 0.0008563 | 0.001515 | 0.07805 | 0.06167 | 0.02102 | 0.03069 | 89.23 | 0.09451 | 0.2071 | 0.0974 | 0.1933 | 1140.62 | 276571434.223 | -| DOTUSDT | 0.0001999 | 0.0004691 | 0.01675 | 0.0009625 | 0.01456 | 0.01057 | 148.3 | 0.04337 | 0.001072 | 0.01062 | 0.2368 | 1194.67 | 276926666.666 | -| LEVERUSDT | 0.001058 | 0.0009654 | 0.06379 | 0.04578 | 0.01298 | 0.01328 | 53.08 | 0.1094 | 0.1039 | 0.1053 | 0.1533 | 244.46 | 277037778.788 | -| JASMYUSDT | 0.0004932 | 0.0007184 | 0.01945 | 0.0008773 | 0.012 | 0.009652 | 149.6 | 0.04371 | 0.0 | 0.01728 | 0.1013 | 588.83 | 277063333.333 | -| ANTUSDT | 0.0003221 | 0.0006483 | 0.03095 | 0.00249 | 0.01644 | 0.02069 | 119.7 | 0.1747 | 0.005586 | 0.1057 | 0.2495 | 702.79 | 277141403.075 | -| PERPUSDT | 0.0008994 | 0.0007335 | 0.07754 | 0.04542 | 0.01298 | 0.01476 | 116.7 | 0.1186 | 0.08448 | 0.1075 | 0.1275 | 268.46 | 277272409.466 | -| BAKEUSDT | 0.0003451 | 0.0004971 | 0.04201 | 0.01113 | 0.02087 | 0.01997 | 143.6 | 0.1421 | 0.01677 | 0.1078 | 0.1907 | 924.67 | 277321616.625 | -| NEOUSDT | 0.0003529 | 0.0006352 | 0.03615 | 0.02194 | 0.02203 | 0.02704 | 146.2 | 0.05891 | 0.3136 | 0.03822 | 0.1387 | 1381.62 | 277853120.273 | -| GTCUSDT | 0.000444 | 0.0007614 | 0.06716 | 0.0463 | 0.01756 | 0.01887 | 129.2 | 0.1173 | 0.2059 | 0.1256 | 0.2087 | 901.83 | 279139389.882 | -| BTCDOMUSDT | 0.000113 | 0.0001362 | 0.03714 | 0.0226 | 0.006822 | 0.006113 | 172.9 | 0.03945 | 0.185 | 0.05117 | 0.07309 | 891.83 | 279391666.667 | -| LPTUSDT | 0.0001989 | 0.0002878 | 0.0467 | 0.02697 | 0.01736 | 0.01583 | 118.1 | 0.1159 | 0.3501 | 0.1232 | 0.1659 | 748.83 | 280340347.882 | -| ENJUSDT | 0.0006208 | 0.001246 | 0.05135 | 0.029 | 0.0153 | 0.01527 | 143.1 | 0.1072 | 0.1135 | 0.1557 | 0.2375 | 1156.67 | 282081224.539 | -| USDCUSDT | -1.041e-09 | -1.041e-08 | 0.003803 | 0.0 | 60.0 | 0.6001 | nan | 0.005292 | 1.0 | 6.973e-05 | 7.123e-05 | 262.25 | 284500000.0 | -| FLMUSDT | 0.0004037 | 0.0007061 | 0.03758 | 0.01492 | 0.02258 | 0.02369 | 229.6 | 0.09309 | 0.08101 | 0.04647 | 0.1233 | 1156.67 | 285061666.666 | -| FLOWUSDT | 0.0003384 | 0.0006403 | 0.05505 | 0.02208 | 0.01902 | 0.01604 | 243.9 | 0.1168 | 0.204 | 0.1301 | 0.1614 | 657.83 | 289561783.961 | -| GMTUSDT | 0.0003827 | 0.0005029 | 0.09642 | 0.04598 | 0.02992 | 0.03711 | 224.0 | 0.2549 | 0.1701 | 0.2075 | 0.2451 | 624.79 | 295408002.961 | -| TOMOUSDT | 0.0003194 | 0.0005944 | 0.02579 | 0.004925 | 0.01974 | 0.01732 | 374.5 | 0.1136 | 0.01517 | 0.08306 | 0.1702 | 1143.67 | 299561920.609 | -| OGNUSDT | 0.0005071 | 0.001485 | 0.05225 | 0.0378 | 0.01584 | 0.01819 | 399.6 | 0.09842 | 0.02406 | 0.0859 | 0.2216 | 972.67 | 302059999.999 | -| YFIUSDT | 0.0009008 | 0.003151 | 0.03556 | 0.0194 | 0.01503 | 0.01673 | 527.6 | 0.04806 | 0.07665 | 0.01578 | 0.1072 | 1185.67 | 314863333.332 | -| KLAYUSDT | 0.0002189 | 0.0001442 | 0.1244 | 0.08629 | 0.03264 | 0.03747 | 356.7 | 0.271 | 0.7178 | 0.2677 | 0.3133 | 778.83 | 383211767.935 | -| COCOSUSDT | 6.078e-05 | 0.0006078 | 0.01297 | 0.002976 | 50.01 | 0.5036 | 4527.0 | 0.02781 | 0.5 | 0.01519 | 0.03988 | 281.38 | 717776666.667 | -| HNTUSDT | 9.626e-05 | 0.0004541 | 0.02526 | 0.008343 | 10.01 | 0.1151 | 6110.0 | 0.08302 | 0.143 | 0.07172 | 0.2168 | 1157.67 | 873105000.0 | -| CVCUSDT | 9.81e-05 | 0.0007638 | 0.02232 | 0.009858 | 20.01 | 0.2103 | 8775.0 | 0.06817 | 0.209 | 0.05143 | 0.2376 | 1113.67 | 1139655177.02 | -| FTTUSDT | 2.924e-05 | 0.0002924 | 0.009022 | 0.0003157 | 50.01 | 0.5098 | 9140.0 | 0.07565 | 0.5 | 0.01621 | 0.2905 | 593.83 | 1219669834.9 | -| SRMUSDT | 6.883e-05 | 0.0004332 | 0.04286 | 0.03044 | 20.02 | 0.2179 | 9120.0 | 0.1068 | 0.4034 | 0.1172 | 0.3071 | 1180.88 | 1234955011.58 | -| BTSUSDT | 4.506e-05 | 0.0004209 | 0.01664 | 0.001914 | 30.01 | 0.313 | 11250.0 | 0.08379 | 0.3083 | 0.04052 | 0.1634 | 1031.67 | 1387919344.42 | -| RAYUSDT | 5.684e-06 | 0.0003863 | 0.1931 | 0.1717 | 30.08 | 0.3618 | 9116.0 | 0.5316 | 1.202 | 0.4159 | 0.5461 | 831.83 | 1511861571.78 | -| SCUSDT | 2.836e-05 | 0.0002836 | 0.0148 | 0.0001386 | 40.01 | 0.4148 | 12740.0 | 0.1183 | 0.4021 | 0.03879 | 0.08373 | 961.67 | 1537794564.74 | -| BTCSTUSDT | 2.178e-06 | 2.178e-05 | 0.003231 | 0.0 | 80.0 | 0.8003 | 23830.0 | 0.007382 | 0.8 | 0.0003089 | 0.007108 | 1000.67 | 2651005000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| SEIUSDT | 0.004782 | 0.001927 | 0.03469 | 0.01353 | 0.01012 | 0.009352 | 109.5 | 0.07626 | 0.002599 | 0.08321 | 0.1423 | 104.88 | 276499999.995 | -| ARKMUSDT | 0.004104 | 0.00311 | 0.02944 | 0.01467 | 0.009184 | 0.008311 | 71.42 | 0.06277 | 0.002506 | 0.06788 | 0.112 | 124.88 | 276499999.996 | -| BLURUSDT | 0.003941 | 0.001808 | 0.05363 | 0.01542 | 0.01122 | 0.01093 | 102.6 | 0.08954 | 0.00776 | 0.09245 | 0.1305 | 215.46 | 276499999.996 | -| WLDUSDT | 0.003964 | 0.002317 | 0.03603 | 0.01725 | 0.01019 | 0.01008 | 38.35 | 0.06996 | 0.007752 | 0.07621 | 0.1299 | 128.46 | 276499999.996 | -| MDTUSDT | 0.003664 | 0.001606 | 0.02816 | 0.01016 | 0.01022 | 0.009766 | 91.28 | 0.06502 | 0.01022 | 0.06746 | 0.1953 | 152.46 | 276499999.996 | -| BNTUSDT | 0.003113 | 0.002363 | 0.02775 | 0.006493 | 0.01167 | 0.009701 | 114.2 | 0.04707 | 0.006745 | 0.02667 | 0.1006 | 111.46 | 276499999.997 | -| EDUUSDT | 0.002779 | 0.002103 | 0.0535 | 0.02498 | 0.009381 | 0.01035 | 111.4 | 0.08482 | 0.00735 | 0.09302 | 0.1562 | 213.46 | 276499999.997 | -| MAVUSDT | 0.003482 | 0.002234 | 0.06639 | 0.02616 | 0.01362 | 0.01247 | 83.2 | 0.08713 | 0.03894 | 0.09714 | 0.1394 | 153.46 | 276499999.997 | -| 1000FLOKIUSDT | 0.002591 | 0.001557 | 0.01754 | 0.002791 | 0.009663 | 0.008667 | 107.9 | 0.04157 | 0.0 | 0.01459 | 0.1072 | 207.29 | 276499999.997 | -| BNXUSDT | 0.002589 | 0.002199 | 0.0536 | 0.02117 | 0.009167 | 0.008689 | 74.58 | 0.0582 | 0.004719 | 0.06199 | 0.2428 | 280.38 | 276499999.997 | -| PENDLEUSDT | 0.002516 | 0.001937 | 0.07595 | 0.0397 | 0.00997 | 0.009458 | 91.27 | 0.09073 | 0.012 | 0.09723 | 0.1184 | 124.88 | 276499999.997 | -| COMBOUSDT | 0.002617 | 0.002069 | 0.05108 | 0.02395 | 0.00844 | 0.007627 | 74.32 | 0.04533 | 0.004718 | 0.04263 | 0.1049 | 180.46 | 276499999.997 | -| YGGUSDT | 0.002678 | 0.003314 | 0.0675 | 0.0343 | 0.01067 | 0.01229 | 47.92 | 0.08075 | 0.02484 | 0.08928 | 0.1211 | 116.83 | 276499999.997 | -| MINAUSDT | 0.001506 | 0.0008728 | 0.03058 | 0.005582 | 0.01141 | 0.009605 | 109.6 | 0.0515 | 0.0003091 | 0.02192 | 0.1256 | 295.5 | 276499999.998 | -| FLMUSDT | 0.001629 | 0.001196 | 0.02768 | 0.004963 | 0.02013 | 0.01752 | 135.2 | 0.08819 | 0.004863 | 0.04369 | 0.2297 | 1156.67 | 276499999.998 | -| UMAUSDT | 0.001832 | 0.0008066 | 0.03652 | 0.01001 | 0.01082 | 0.009334 | 134.0 | 0.06199 | 0.03009 | 0.0648 | 0.1921 | 203.46 | 276499999.998 | -| AGIXUSDT | 0.001617 | 0.001531 | 0.03473 | 0.01209 | 0.008652 | 0.008169 | 95.48 | 0.04408 | 0.008305 | 0.03951 | 0.1183 | 286.38 | 276499999.998 | -| FETUSDT | 0.002207 | 0.001753 | 0.02424 | 0.003614 | 0.009496 | 0.00799 | 83.28 | 0.03314 | 0.0 | 0.01428 | 0.07521 | 316.88 | 276499999.998 | -| SPELLUSDT | 0.001587 | 0.001458 | 0.04821 | 0.02471 | 0.008994 | 0.01041 | 94.67 | 0.08115 | 0.01816 | 0.0889 | 0.1766 | 449.46 | 276499999.998 | -| HFTUSDT | 0.002311 | 0.001354 | 0.05665 | 0.005719 | 0.009597 | 0.009508 | 96.58 | 0.04798 | 0.001744 | 0.03092 | 0.055 | 237.46 | 276499999.998 | -| LUNA2USDT | 0.001925 | 0.001275 | 0.0294 | 0.005848 | 0.01077 | 0.0104 | 85.27 | 0.05084 | 0.007117 | 0.04021 | 0.1616 | 445.83 | 276499999.998 | -| BLZUSDT | 0.001734 | 0.001305 | 0.02303 | 0.006674 | 0.01803 | 0.01589 | 129.4 | 0.08105 | 0.01124 | 0.04309 | 0.2079 | 1168.67 | 276499999.998 | -| DODOXUSDT | 0.002184 | 0.002148 | 0.03066 | 0.003523 | 0.008088 | 0.00634 | 52.68 | 0.03049 | 0.0 | 0.008131 | 0.01467 | 113.46 | 276499999.998 | -| HIGHUSDT | 0.001643 | 0.002 | 0.07821 | 0.02466 | 0.01418 | 0.01286 | 117.6 | 0.07735 | 0.01404 | 0.08313 | 0.1616 | 295.88 | 276499999.998 | -| AGLDUSDT | 0.002163 | 0.002715 | 0.02943 | 0.009647 | 0.009466 | 0.007989 | 63.6 | 0.03378 | 0.0 | 0.02073 | 0.07736 | 123.88 | 276499999.998 | -| KEYUSDT | 0.002193 | 0.002197 | 0.09364 | 0.005231 | 0.01799 | 0.0137 | 136.8 | 0.07508 | 0.005558 | 0.02873 | 0.08771 | 189.46 | 276499999.998 | -| SUIUSDT | 0.002352 | 0.001546 | 0.06148 | 0.0238 | 0.01158 | 0.01012 | 140.0 | 0.0726 | 0.01156 | 0.08041 | 0.1296 | 210.29 | 276499999.998 | -| SSVUSDT | 0.001643 | 0.0009747 | 0.02648 | 0.007285 | 0.0134 | 0.01177 | 98.72 | 0.06715 | 0.003908 | 0.05901 | 0.1496 | 278.46 | 276499999.998 | -| LQTYUSDT | 0.00203 | 0.002173 | 0.06899 | 0.01439 | 0.008581 | 0.01045 | 48.68 | 0.07926 | 0.00817 | 0.08372 | 0.2137 | 264.46 | 276499999.998 | -| ASTRUSDT | 0.001639 | 0.001323 | 0.0452 | 0.009099 | 0.009998 | 0.007687 | 68.75 | 0.03511 | 0.001686 | 0.02692 | 0.09042 | 288.88 | 276499999.998 | -| HOOKUSDT | 0.002258 | 0.002095 | 0.05775 | 0.01345 | 0.01303 | 0.01083 | 122.9 | 0.05946 | 0.005885 | 0.0574 | 0.1253 | 310.83 | 276499999.998 | -| STMXUSDT | 0.001886 | 0.001887 | 0.05984 | 0.02866 | 0.01566 | 0.01252 | 117.2 | 0.07864 | 0.02244 | 0.09164 | 0.2222 | 982.67 | 276499999.998 | -| TRUUSDT | 0.001887 | 0.00161 | 0.02835 | 0.005779 | 0.01053 | 0.008773 | 74.93 | 0.03802 | 0.0 | 0.0202 | 0.2178 | 267.46 | 276499999.998 | -| TLMUSDT | 0.001523 | 0.001011 | 0.03988 | 0.01555 | 0.01012 | 0.008733 | 121.0 | 0.0552 | 0.01272 | 0.05435 | 0.2284 | 244.46 | 276499999.998 | -| CRVUSDT | 0.0006235 | 0.00134 | 0.04657 | 0.01334 | 0.01819 | 0.01838 | 124.5 | 0.09954 | 0.01 | 0.06874 | 0.2225 | 1184.67 | 276499999.999 | -| XEMUSDT | 0.001027 | 0.001708 | 0.06501 | 0.02727 | 0.0109 | 0.01236 | 111.9 | 0.08884 | 0.01547 | 0.09916 | 0.2391 | 1001.67 | 276499999.999 | -| EOSUSDT | 0.0005671 | 0.001034 | 0.05825 | 0.03084 | 0.01103 | 0.01287 | 95.42 | 0.08608 | 0.03535 | 0.09631 | 0.2056 | 1421.62 | 276499999.999 | -| DUSKUSDT | 0.0008007 | 0.001128 | 0.054 | 0.0175 | 0.01454 | 0.01301 | 107.6 | 0.08602 | 0.02127 | 0.09572 | 0.2052 | 691.83 | 276499999.999 | -| EGLDUSDT | 0.0006222 | 0.001007 | 0.02903 | 0.01461 | 0.01373 | 0.01293 | 143.3 | 0.05212 | 0.04081 | 0.04855 | 0.2152 | 1171.67 | 276499999.999 | -| LEVERUSDT | 0.001323 | 0.001672 | 0.04355 | 0.006082 | 0.01172 | 0.00902 | 70.9 | 0.04478 | 0.00252 | 0.02581 | 0.09137 | 244.46 | 276499999.999 | -| CTSIUSDT | 0.0006588 | 0.001118 | 0.03087 | 0.01044 | 0.01382 | 0.01176 | 137.9 | 0.05643 | 0.007813 | 0.05047 | 0.2446 | 764.83 | 276499999.999 | -| KNCUSDT | 0.0006438 | 0.001014 | 0.04616 | 0.006308 | 0.01903 | 0.01748 | 137.5 | 0.09716 | 0.00775 | 0.07539 | 0.2335 | 1255.62 | 276499999.999 | -| XVGUSDT | 0.001412 | 0.002197 | 0.04415 | 0.01274 | 0.008678 | 0.009078 | 76.22 | 0.04663 | 0.0005485 | 0.03931 | 0.09028 | 147.46 | 276499999.999 | -| OMGUSDT | 0.0008975 | 0.001571 | 0.0512 | 0.02467 | 0.01524 | 0.01333 | 113.1 | 0.0767 | 0.07327 | 0.09374 | 0.2317 | 1245.58 | 276499999.999 | -| IDEXUSDT | 0.00127 | 0.001194 | 0.04908 | 0.005322 | 0.007768 | 0.006903 | 77.35 | 0.03826 | 0.001062 | 0.02602 | 0.07085 | 210.46 | 276499999.999 | -| ACHUSDT | 0.001183 | 0.001183 | 0.03703 | 0.001902 | 0.01396 | 0.01109 | 100.2 | 0.06435 | 0.0004455 | 0.03785 | 0.06819 | 280.38 | 276499999.999 | -| QTUMUSDT | 0.0006877 | 0.001135 | 0.05174 | 0.01577 | 0.01369 | 0.01258 | 127.8 | 0.07313 | 0.02614 | 0.07796 | 0.2134 | 1378.62 | 276499999.999 | -| RSRUSDT | 0.0009975 | 0.002207 | 0.04769 | 0.01819 | 0.01492 | 0.01329 | 105.9 | 0.06684 | 0.01303 | 0.0695 | 0.1931 | 1136.67 | 276499999.999 | -| TRBUSDT | 0.00149 | 0.001123 | 0.03597 | 0.01786 | 0.01499 | 0.01918 | 75.32 | 0.08705 | 0.08842 | 0.08999 | 0.2021 | 1182.67 | 276499999.999 | -| 1000XECUSDT | 0.0005853 | 0.0007992 | 0.0253 | 0.005307 | 0.01033 | 0.009238 | 128.1 | 0.05712 | 0.003112 | 0.03817 | 0.1678 | 803.83 | 276499999.999 | -| MANAUSDT | 0.0009388 | 0.001984 | 0.04704 | 0.02503 | 0.01123 | 0.01163 | 135.5 | 0.06526 | 0.0244 | 0.07164 | 0.2151 | 989.67 | 276499999.999 | -| GALUSDT | 0.001126 | 0.002089 | 0.08334 | 0.01241 | 0.009792 | 0.01222 | 118.4 | 0.07945 | 0.01521 | 0.08179 | 0.2389 | 573.38 | 276499999.999 | -| BANDUSDT | 0.0005753 | 0.0009335 | 0.02462 | 0.004123 | 0.01833 | 0.01525 | 117.5 | 0.07167 | 0.0008002 | 0.02075 | 0.1126 | 1218.67 | 276499999.999 | -| FXSUSDT | 0.0007998 | 0.0008453 | 0.05285 | 0.01935 | 0.01375 | 0.01082 | 106.8 | 0.0642 | 0.0232 | 0.06595 | 0.1293 | 313.83 | 276499999.999 | -| DEFIUSDT | 0.0008342 | 0.001491 | 0.08546 | 0.05703 | 0.01381 | 0.0149 | 136.5 | 0.08073 | 0.05014 | 0.08915 | 0.1925 | 1188.67 | 276499999.999 | -| SNXUSDT | 0.0006865 | 0.0008937 | 0.03303 | 0.003367 | 0.02065 | 0.01854 | 140.0 | 0.0998 | 0.003523 | 0.03654 | 0.1065 | 1202.67 | 276499999.999 | -| HOTUSDT | 0.0008783 | 0.001701 | 0.08489 | 0.02211 | 0.01454 | 0.01609 | 100.9 | 0.09348 | 0.01246 | 0.09178 | 0.1785 | 974.67 | 276499999.999 | -| ZENUSDT | 0.0009341 | 0.001697 | 0.07251 | 0.01276 | 0.01826 | 0.0163 | 137.5 | 0.09295 | 0.008658 | 0.09048 | 0.2494 | 1100.67 | 276499999.999 | -| OGNUSDT | 0.0009508 | 0.001022 | 0.02769 | 0.01191 | 0.01234 | 0.01066 | 71.57 | 0.06658 | 0.009971 | 0.0715 | 0.217 | 972.67 | 276499999.999 | -| JASMYUSDT | 0.0008032 | 0.001567 | 0.04962 | 0.007237 | 0.01122 | 0.01019 | 122.8 | 0.0806 | 0.03469 | 0.09054 | 0.1949 | 588.83 | 276499999.999 | -| WOOUSDT | 0.0008112 | 0.001265 | 0.04284 | 0.01219 | 0.00754 | 0.007638 | 51.15 | 0.04255 | 0.01407 | 0.04103 | 0.1199 | 600.83 | 276499999.999 | -| CYBERUSDT | 0.0006326 | 0.00153 | 0.01074 | 0.000497 | 0.01644 | 0.01519 | 134.6 | 0.08987 | 0.0 | 0.02823 | 0.2337 | 100.46 | 276499999.999 | -| SUSHIUSDT | 0.001132 | 0.001929 | 0.04826 | 0.01892 | 0.01211 | 0.01226 | 99.92 | 0.074 | 0.02331 | 0.07979 | 0.2499 | 1181.67 | 276499999.999 | -| RENUSDT | 0.0008098 | 0.001206 | 0.04997 | 0.01368 | 0.01734 | 0.01639 | 123.3 | 0.09765 | 0.01301 | 0.09239 | 0.2196 | 1142.67 | 276499999.999 | -| CELOUSDT | 0.0006583 | 0.0008855 | 0.04513 | 0.01634 | 0.01335 | 0.01164 | 121.8 | 0.07073 | 0.02991 | 0.07758 | 0.1911 | 793.83 | 276499999.999 | -| APEUSDT | 0.0007672 | 0.00124 | 0.04034 | 0.01812 | 0.01008 | 0.01035 | 83.75 | 0.06668 | 0.008816 | 0.07142 | 0.1926 | 622.33 | 276499999.999 | -| ADAUSDT | 0.0005903 | 0.001053 | 0.04837 | 0.02759 | 0.01333 | 0.01306 | 141.3 | 0.07342 | 0.02729 | 0.08041 | 0.2268 | 1398.62 | 276499999.999 | -| GRTUSDT | 0.001175 | 0.002155 | 0.04971 | 0.02085 | 0.01182 | 0.01168 | 83.2 | 0.07182 | 0.00905 | 0.07601 | 0.2268 | 1075.67 | 276499999.999 | -| AMBUSDT | 0.001307 | 0.001639 | 0.03492 | 0.004429 | 0.01268 | 0.008486 | 49.07 | 0.03482 | 0.005113 | 0.01251 | 0.03619 | 244.46 | 276499999.999 | -| CELRUSDT | 0.001153 | 0.002475 | 0.07259 | 0.0333 | 0.01191 | 0.01138 | 119.4 | 0.0805 | 0.02476 | 0.0912 | 0.204 | 975.67 | 276499999.999 | -| DASHUSDT | 0.0006504 | 0.001216 | 0.07702 | 0.02654 | 0.01516 | 0.01296 | 129.7 | 0.07189 | 0.02415 | 0.0732 | 0.182 | 1394.62 | 276499999.999 | -| YFIUSDT | 0.0008077 | 0.001536 | 0.0564 | 0.0279 | 0.01842 | 0.02045 | 111.1 | 0.07876 | 0.1951 | 0.09432 | 0.176 | 1185.67 | 276499999.999 | -| ATAUSDT | 0.001183 | 0.002197 | 0.07568 | 0.02609 | 0.01494 | 0.01301 | 132.7 | 0.08527 | 0.01249 | 0.09784 | 0.2319 | 820.83 | 276499999.999 | -| OCEANUSDT | 0.001257 | 0.002089 | 0.117 | 0.02161 | 0.01905 | 0.01795 | 131.4 | 0.09665 | 0.01077 | 0.09871 | 0.2122 | 1121.67 | 276499999.999 | -| AVAXUSDT | 0.0006687 | 0.001152 | 0.05029 | 0.01382 | 0.01552 | 0.01616 | 141.9 | 0.09221 | 0.02204 | 0.09736 | 0.2423 | 1162.67 | 276499999.999 | -| SFPUSDT | 0.0009537 | 0.002187 | 0.06133 | 0.02679 | 0.01484 | 0.01102 | 97.22 | 0.07184 | 0.05833 | 0.08389 | 0.247 | 1008.67 | 276499999.999 | -| ONEUSDT | 0.0007096 | 0.001463 | 0.04146 | 0.01726 | 0.01603 | 0.01543 | 143.2 | 0.08885 | 0.01543 | 0.09032 | 0.2096 | 986.67 | 276499999.999 | -| ENSUSDT | 0.0007662 | 0.001615 | 0.0629 | 0.02083 | 0.009123 | 0.01052 | 73.6 | 0.07814 | 0.01224 | 0.08623 | 0.2033 | 729.83 | 276499999.999 | -| LINAUSDT | 0.0005091 | 0.0007077 | 0.02078 | 0.002528 | 0.02249 | 0.01941 | 127.7 | 0.09883 | 0.000828 | 0.0235 | 0.1448 | 985.67 | 276499999.999 | -| PHBUSDT | 0.001256 | 0.001143 | 0.03563 | 0.01257 | 0.01355 | 0.01105 | 102.7 | 0.05821 | 0.02629 | 0.06176 | 0.1266 | 286.38 | 276499999.999 | -| FLOWUSDT | 0.0006067 | 0.0007544 | 0.03434 | 0.01187 | 0.01168 | 0.01175 | 99.35 | 0.07137 | 0.009915 | 0.06248 | 0.1524 | 657.83 | 276499999.999 | -| KAVAUSDT | 0.0006029 | 0.00137 | 0.03915 | 0.01766 | 0.01625 | 0.01631 | 141.4 | 0.09919 | 0.0104 | 0.09844 | 0.1998 | 1219.67 | 276499999.999 | -| IMXUSDT | 0.0006923 | 0.0007287 | 0.01891 | 0.002651 | 0.01462 | 0.01234 | 100.9 | 0.05776 | 0.000383 | 0.02276 | 0.1406 | 656.83 | 276499999.999 | -| XLMUSDT | 0.0005271 | 0.0007038 | 0.03464 | 0.01748 | 0.01587 | 0.01844 | 129.3 | 0.06039 | 0.1035 | 0.05252 | 0.13 | 1409.62 | 276499999.999 | -| JOEUSDT | 0.001167 | 0.0008302 | 0.05234 | 0.02056 | 0.01589 | 0.01501 | 138.0 | 0.09394 | 0.0249 | 0.09334 | 0.1499 | 245.46 | 276499999.999 | -| LITUSDT | 0.000561 | 0.00114 | 0.04971 | 0.01561 | 0.01831 | 0.01687 | 127.1 | 0.09637 | 0.01494 | 0.07997 | 0.2163 | 1014.67 | 276499999.999 | -| ONTUSDT | 0.001115 | 0.001806 | 0.07416 | 0.02931 | 0.01016 | 0.0123 | 104.5 | 0.07972 | 0.03238 | 0.09119 | 0.1805 | 1387.62 | 276499999.999 | -| DARUSDT | 0.0008334 | 0.001041 | 0.04308 | 0.01774 | 0.01151 | 0.01116 | 89.67 | 0.07247 | 0.02758 | 0.07659 | 0.1752 | 579.83 | 276499999.999 | -| MATICUSDT | 0.0006531 | 0.001531 | 0.04316 | 0.01808 | 0.01407 | 0.01287 | 129.4 | 0.0745 | 0.04758 | 0.08406 | 0.2054 | 1133.67 | 276499999.999 | -| LDOUSDT | 0.001152 | 0.001333 | 0.04711 | 0.01605 | 0.01482 | 0.01518 | 97.8 | 0.09177 | 0.00951 | 0.0799 | 0.1271 | 433.46 | 276499999.999 | -| RLCUSDT | 0.001073 | 0.002339 | 0.08167 | 0.02467 | 0.01603 | 0.01533 | 123.5 | 0.09438 | 0.008613 | 0.09077 | 0.1907 | 1216.67 | 276499999.999 | -| VETUSDT | 0.0005257 | 0.00128 | 0.03864 | 0.02074 | 0.01252 | 0.01205 | 141.1 | 0.06548 | 0.02654 | 0.07273 | 0.1618 | 1384.62 | 276499999.999 | -| XVSUSDT | 0.00105 | 0.0005926 | 0.02633 | 0.004455 | 0.0152 | 0.01436 | 109.8 | 0.08045 | 0.002979 | 0.05866 | 0.2239 | 230.88 | 276499999.999 | -| OXTUSDT | 0.001119 | 0.001447 | 0.04108 | 0.01488 | 0.00959 | 0.01187 | 59.02 | 0.05588 | 0.04026 | 0.05567 | 0.1152 | 110.46 | 276499999.999 | -| IDUSDT | 0.001171 | 0.001155 | 0.02776 | 0.007556 | 0.006681 | 0.00654 | 41.92 | 0.04006 | 0.008357 | 0.04012 | 0.09634 | 251.38 | 276499999.999 | -| MAGICUSDT | 0.0007795 | 0.000845 | 0.02487 | 0.01049 | 0.01278 | 0.01091 | 93.35 | 0.06046 | 0.00867 | 0.06113 | 0.1148 | 308.83 | 276499999.999 | -| RUNEUSDT | 0.001287 | 0.001188 | 0.03377 | 0.01467 | 0.01624 | 0.01378 | 129.4 | 0.0698 | 0.0242 | 0.08025 | 0.1688 | 1181.67 | 276499999.999 | -| BATUSDT | 0.0005179 | 0.00108 | 0.0458 | 0.0172 | 0.01219 | 0.01227 | 98.77 | 0.08484 | 0.02192 | 0.09955 | 0.2328 | 1385.62 | 276499999.999 | -| INJUSDT | 0.0006485 | 0.0006727 | 0.02279 | 0.005399 | 0.01537 | 0.01435 | 122.6 | 0.0723 | 0.002578 | 0.01555 | 0.08081 | 469.88 | 276499999.999 | -| ALGOUSDT | 0.0008954 | 0.001728 | 0.08332 | 0.03102 | 0.01433 | 0.01375 | 142.1 | 0.08447 | 0.0215 | 0.09471 | 0.192 | 1261.58 | 276499999.999 | -| RADUSDT | 0.001456 | 0.001464 | 0.03081 | 0.004176 | 0.007825 | 0.006284 | 79.37 | 0.03271 | 0.0002055 | 0.01672 | 0.05836 | 203.46 | 276499999.999 | -| NEOUSDT | 0.001026 | 0.001479 | 0.08662 | 0.03248 | 0.01184 | 0.01561 | 126.8 | 0.07653 | 0.07612 | 0.0872 | 0.1623 | 1381.62 | 276499999.999 | -| RNDRUSDT | 0.0008883 | 0.000753 | 0.04218 | 0.01832 | 0.01348 | 0.01232 | 108.0 | 0.07108 | 0.007659 | 0.06226 | 0.1151 | 299.88 | 276499999.999 | -| XMRUSDT | 0.0005144 | 0.001218 | 0.08636 | 0.03165 | 0.01195 | 0.01369 | 101.4 | 0.08603 | 0.0177 | 0.09532 | 0.1888 | 1395.62 | 276499999.999 | -| COMPUSDT | 0.0005702 | 0.0006575 | 0.03372 | 0.01772 | 0.01719 | 0.01592 | 99.97 | 0.087 | 0.02351 | 0.09252 | 0.2271 | 1247.58 | 276499999.999 | -| GMXUSDT | 0.0008045 | 0.0007521 | 0.07226 | 0.03334 | 0.01095 | 0.01128 | 104.0 | 0.08535 | 0.06564 | 0.09547 | 0.1435 | 285.38 | 276499999.999 | -| TUSDT | 0.001156 | 0.001162 | 0.04687 | 0.01921 | 0.008204 | 0.007447 | 128.9 | 0.04289 | 0.01622 | 0.04444 | 0.1221 | 301.42 | 276499999.999 | -| MKRUSDT | 0.0009951 | 0.001136 | 0.02777 | 0.01025 | 0.009493 | 0.008365 | 73.27 | 0.04091 | 0.01125 | 0.03623 | 0.2138 | 1203.67 | 276499999.999 | -| XTZUSDT | 0.000737 | 0.001591 | 0.05682 | 0.02312 | 0.009522 | 0.009964 | 92.75 | 0.0739 | 0.02165 | 0.08301 | 0.2365 | 1392.62 | 276499999.999 | -| SOLUSDT | 0.0007074 | 0.0008127 | 0.03376 | 0.01681 | 0.01471 | 0.01444 | 92.53 | 0.06598 | 0.01573 | 0.04132 | 0.1465 | 1171.67 | 276499999.999 | -| CHRUSDT | 0.0008415 | 0.001806 | 0.05321 | 0.01806 | 0.0145 | 0.01304 | 120.5 | 0.08201 | 0.03102 | 0.09182 | 0.248 | 992.67 | 276499999.999 | -| THETAUSDT | 0.000672 | 0.001408 | 0.04619 | 0.01268 | 0.01103 | 0.01204 | 127.8 | 0.07974 | 0.005525 | 0.0743 | 0.1631 | 1281.62 | 276499999.999 | -| SKLUSDT | 0.0007409 | 0.001306 | 0.0348 | 0.003876 | 0.01687 | 0.01552 | 120.9 | 0.08394 | 0.005065 | 0.04137 | 0.2212 | 1086.67 | 276499999.999 | -| DYDXUSDT | 0.0005545 | 0.0007809 | 0.02752 | 0.01063 | 0.01602 | 0.01534 | 142.2 | 0.08345 | 0.01094 | 0.07519 | 0.1959 | 810.83 | 276499999.999 | -| RDNTUSDT | 0.001178 | 0.001096 | 0.05521 | 0.005397 | 0.01338 | 0.01061 | 105.1 | 0.05522 | 0.002685 | 0.02149 | 0.04607 | 238.46 | 276499999.999 | -| NMRUSDT | 0.001498 | 0.001733 | 0.03033 | 0.001167 | 0.007181 | 0.006559 | 54.92 | 0.03648 | 0.001207 | 0.0262 | 0.1649 | 160.46 | 276499999.999 | -| ATOMUSDT | 0.0009695 | 0.002365 | 0.06913 | 0.03993 | 0.01361 | 0.01337 | 140.6 | 0.08654 | 0.01882 | 0.09874 | 0.2345 | 1391.46 | 276499999.999 | -| NKNUSDT | 0.0005845 | 0.001271 | 0.05046 | 0.003921 | 0.01863 | 0.01738 | 143.5 | 0.09837 | 0.003883 | 0.06964 | 0.2498 | 964.67 | 276499999.999 | -| ALICEUSDT | 0.0005944 | 0.001223 | 0.05569 | 0.01108 | 0.01893 | 0.017 | 142.9 | 0.09714 | 0.008121 | 0.07996 | 0.1871 | 988.83 | 276499999.999 | -| LTCUSDT | 0.0005489 | 0.0009731 | 0.05208 | 0.02475 | 0.01351 | 0.01353 | 143.8 | 0.06779 | 0.05938 | 0.07629 | 0.1446 | 1420.62 | 276499999.999 | -| CKBUSDT | 0.001301 | 0.001205 | 0.0526 | 0.01448 | 0.007869 | 0.006509 | 70.55 | 0.03736 | 0.006199 | 0.02767 | 0.0478 | 274.46 | 276499999.999 | -| ARPAUSDT | 0.0006793 | 0.001184 | 0.0253 | 0.006634 | 0.01269 | 0.0105 | 129.3 | 0.0473 | 0.003879 | 0.02938 | 0.1451 | 771.83 | 276499999.999 | -| C98USDT | 0.000583 | 0.0009007 | 0.05543 | 0.01163 | 0.01855 | 0.0164 | 117.0 | 0.09414 | 0.009766 | 0.08539 | 0.1763 | 827.83 | 276499999.999 | -| ZRXUSDT | 0.0008676 | 0.001021 | 0.04963 | 0.006158 | 0.0161 | 0.0152 | 128.1 | 0.08838 | 0.007662 | 0.06462 | 0.2325 | 1253.58 | 276499999.999 | -| ICPUSDT | 0.001261 | 0.001025 | 0.04772 | 0.024 | 0.009468 | 0.008702 | 107.2 | 0.05508 | 0.01495 | 0.05975 | 0.1099 | 428.88 | 276499999.999 | -| ZILUSDT | 0.0006955 | 0.00154 | 0.04911 | 0.02673 | 0.01074 | 0.01139 | 139.2 | 0.07984 | 0.02449 | 0.09227 | 0.1569 | 1259.58 | 276499999.999 | -| REEFUSDT | 0.001409 | 0.002334 | 0.07252 | 0.02493 | 0.01442 | 0.01392 | 123.2 | 0.08903 | 0.02119 | 0.09812 | 0.2449 | 1010.67 | 276499999.999 | -| LINKUSDT | 0.001039 | 0.001669 | 0.06939 | 0.04239 | 0.01446 | 0.01261 | 129.2 | 0.08608 | 0.02387 | 0.09651 | 0.238 | 1412.62 | 276499999.999 | -| KSMUSDT | 0.0007114 | 0.001645 | 0.09477 | 0.0615 | 0.01476 | 0.01802 | 120.8 | 0.08545 | 0.1811 | 0.09945 | 0.1729 | 1141.67 | 276499999.999 | -| XRPUSDT | 0.0005448 | 0.0006018 | 0.01933 | 0.006757 | 0.01321 | 0.01214 | 122.7 | 0.0608 | 0.04891 | 0.05438 | 0.1915 | 1423.62 | 276499999.999 | -| ZECUSDT | 0.0006664 | 0.001492 | 0.06852 | 0.03414 | 0.01052 | 0.01278 | 134.3 | 0.08489 | 0.02487 | 0.09481 | 0.2364 | 1393.62 | 276499999.999 | -| PERPUSDT | 0.000914 | 0.001009 | 0.01774 | 0.002839 | 0.008672 | 0.006977 | 64.83 | 0.02759 | 0.0 | 0.007422 | 0.05222 | 268.46 | 276499999.999 | -| 1000PEPEUSDT | 0.001296 | 0.001388 | 0.02305 | 0.00828 | 0.01029 | 0.009075 | 36.48 | 0.04183 | 0.004748 | 0.03115 | 0.07854 | 208.29 | 276499999.999 | -| DGBUSDT | 0.0006937 | 0.001471 | 0.1028 | 0.0104 | 0.01279 | 0.01538 | 91.8 | 0.09387 | 0.01957 | 0.09925 | 0.2429 | 952.83 | 276499999.999 | -| BAKEUSDT | 0.000533 | 0.0006336 | 0.0419 | 0.006898 | 0.01986 | 0.01516 | 111.7 | 0.09458 | 0.01373 | 0.06469 | 0.1154 | 924.67 | 276499999.999 | -| UNIUSDT | 0.0007003 | 0.001355 | 0.06717 | 0.0375 | 0.01659 | 0.01656 | 129.7 | 0.0839 | 0.1048 | 0.09769 | 0.2447 | 1167.67 | 276499999.999 | -| AAVEUSDT | 0.0004923 | 0.0008036 | 0.02836 | 0.01345 | 0.01552 | 0.01438 | 109.5 | 0.05679 | 0.05 | 0.04639 | 0.1441 | 1139.67 | 276500000.0 | -| ALPHAUSDT | 0.0004446 | 0.0009712 | 0.02813 | 0.00855 | 0.01621 | 0.01238 | 133.7 | 0.06268 | 0.008463 | 0.05486 | 0.1772 | 1101.67 | 276500000.0 | -| ETHUSDT | 0.0003023 | 0.000769 | 0.04665 | 0.02024 | 0.008804 | 0.01078 | 130.6 | 0.08472 | 0.01562 | 0.09463 | 0.1823 | 1428.96 | 276500000.0 | -| LRCUSDT | 0.0002686 | 0.0006993 | 0.02457 | 0.003064 | 0.0167 | 0.0155 | 134.1 | 0.09093 | 0.009334 | 0.06357 | 0.2492 | 1136.67 | 276500000.0 | -| QNTUSDT | 0.0004939 | 0.0005957 | 0.05231 | 0.02789 | 0.01183 | 0.01194 | 110.8 | 0.08154 | 0.171 | 0.09913 | 0.1173 | 405.88 | 276500000.0 | -| BTCUSDT | 0.0001313 | 0.0001549 | 0.01572 | 0.00437 | 0.01346 | 0.009868 | 140.9 | 0.04089 | 0.01125 | 0.01003 | 0.1017 | 1428.96 | 276500000.0 | -| AXSUSDT | 8.452e-05 | 0.0002231 | 0.01616 | 0.005718 | 0.01946 | 0.01651 | 109.6 | 0.0675 | 0.0676 | 0.03766 | 0.1767 | 1104.67 | 276500000.0 | -| ROSEUSDT | 0.0002068 | 0.0003309 | 0.01256 | 0.004054 | 0.01322 | 0.01124 | 83.37 | 0.05106 | 0.01653 | 0.02992 | 0.1667 | 698.83 | 276500000.0 | -| LPTUSDT | 0.0001529 | 0.0001917 | 0.01485 | 0.0006231 | 0.02082 | 0.01637 | 127.9 | 0.099 | 0.0 | 0.02346 | 0.08849 | 748.83 | 276500000.0 | -| HBARUSDT | 0.0003949 | 0.0006975 | 0.03055 | 0.007429 | 0.01396 | 0.01212 | 119.3 | 0.06286 | 0.01678 | 0.05285 | 0.2224 | 987.67 | 276500000.0 | -| AUDIOUSDT | 6.6e-05 | 0.0001369 | 0.007403 | 0.0009405 | 0.01787 | 0.01319 | 124.3 | 0.05343 | 0.003025 | 0.01507 | 0.1564 | 832.83 | 276500000.0 | -| TRXUSDT | 0.0002873 | 0.0008072 | 0.05336 | 0.02334 | 0.008834 | 0.01074 | 143.8 | 0.07486 | 0.09742 | 0.08892 | 0.1858 | 1414.62 | 276500000.0 | -| ETCUSDT | 0.0004827 | 0.001084 | 0.02565 | 0.007689 | 0.01022 | 0.01009 | 124.7 | 0.05493 | 0.01511 | 0.03957 | 0.1615 | 1413.62 | 276500000.0 | -| ENJUSDT | 7.261e-05 | 0.00017 | 0.008487 | 0.0 | 0.01865 | 0.01342 | 117.0 | 0.05731 | 0.0 | 0.01339 | 0.06026 | 1156.67 | 276500000.0 | -| IOSTUSDT | 5.953e-05 | 0.0001411 | 0.008943 | 0.0 | 0.01879 | 0.01357 | 110.1 | 0.05534 | 0.0 | 0.01442 | 0.1405 | 1377.62 | 276500000.0 | -| MTLUSDT | 0.0003539 | 0.0005628 | 0.0275 | 0.007694 | 0.01906 | 0.01718 | 139.8 | 0.09476 | 0.01413 | 0.06919 | 0.2482 | 973.67 | 276500000.0 | -| 1000SHIBUSDT | 0.0004037 | 0.001019 | 0.02457 | 0.003022 | 0.011 | 0.01051 | 125.2 | 0.07292 | 0.001759 | 0.05616 | 0.2433 | 933.25 | 276500000.0 | -| BNBUSDT | 0.0003141 | 0.0007772 | 0.07648 | 0.04901 | 0.01207 | 0.01236 | 142.1 | 0.08457 | 0.1168 | 0.09956 | 0.2003 | 1388.62 | 276500000.0 | -| NEARUSDT | 0.0002766 | 0.0005676 | 0.0209 | 0.004573 | 0.01843 | 0.016 | 117.0 | 0.09553 | 0.004833 | 0.04836 | 0.2373 | 1140.62 | 276500000.0 | -| API3USDT | 0.0003556 | 0.0004708 | 0.02096 | 0.009088 | 0.0156 | 0.01637 | 97.62 | 0.09233 | 0.01513 | 0.05531 | 0.2235 | 645.83 | 276500000.0 | -| BELUSDT | 0.0003595 | 0.0006682 | 0.02448 | 0.0003463 | 0.02052 | 0.01863 | 126.8 | 0.09898 | 0.0 | 0.03773 | 0.2002 | 1106.67 | 276500000.0 | -| APTUSDT | 0.0002975 | 0.0003838 | 0.02682 | 0.01651 | 0.01581 | 0.01534 | 93.23 | 0.08929 | 0.02534 | 0.09544 | 0.1858 | 406.88 | 276500000.0 | -| DENTUSDT | 0.0003572 | 0.0009309 | 0.03962 | 0.01685 | 0.01549 | 0.01444 | 124.0 | 0.08691 | 0.01708 | 0.09365 | 0.2066 | 980.79 | 276500000.0 | -| BALUSDT | 5.711e-05 | 0.0001227 | 0.01275 | 0.0 | 0.0212 | 0.0143 | 113.5 | 0.06208 | 0.0 | 0.01816 | 0.05642 | 1184.67 | 276500000.0 | -| STGUSDT | 0.0002098 | 0.0003738 | 0.01193 | 0.003809 | 0.01288 | 0.009913 | 109.7 | 0.03857 | 0.00703 | 0.01276 | 0.05023 | 461.46 | 276500000.0 | -| SANDUSDT | 0.0004235 | 0.001297 | 0.0284 | 0.01346 | 0.01275 | 0.01207 | 98.65 | 0.06966 | 0.01884 | 0.07994 | 0.1582 | 1038.67 | 276500000.0 | -| GTCUSDT | 0.0001751 | 0.000348 | 0.01625 | 0.002153 | 0.02179 | 0.01733 | 131.5 | 0.09536 | 0.004195 | 0.03546 | 0.2068 | 901.83 | 276500000.0 | -| 1000LUNCUSDT | 0.0001408 | 0.0001309 | 0.005978 | 0.0 | 0.01529 | 0.01214 | 77.73 | 0.05884 | 0.0 | 0.02463 | 0.1032 | 446.42 | 276500000.0 | -| DOGEUSDT | 0.0004704 | 0.00169 | 0.01931 | 0.007706 | 0.009608 | 0.0101 | 132.8 | 0.05259 | 0.02829 | 0.04647 | 0.2281 | 1237.58 | 276500000.0 | -| 1INCHUSDT | 0.0004989 | 0.001069 | 0.03979 | 0.01798 | 0.01454 | 0.01349 | 83.87 | 0.07442 | 0.01793 | 0.0791 | 0.1682 | 1069.54 | 276500000.0 | -| BLUEBIRDUSDT | 0.0001265 | 0.000144 | 0.01866 | 0.001019 | 0.01132 | 0.01015 | 120.6 | 0.07206 | 0.005167 | 0.03059 | 0.07344 | 392.46 | 276500000.0 | -| SXPUSDT | 0.0003647 | 0.0007421 | 0.03843 | 0.003855 | 0.0199 | 0.01455 | 134.6 | 0.09251 | 0.005792 | 0.05982 | 0.216 | 1226.58 | 276500000.0 | -| ANKRUSDT | 0.0004187 | 0.001006 | 0.03472 | 0.007167 | 0.01712 | 0.01692 | 138.1 | 0.09956 | 0.01087 | 0.09192 | 0.2305 | 1037.67 | 276500000.0 | -| CHZUSDT | 0.0003572 | 0.0009966 | 0.04055 | 0.0006234 | 0.016 | 0.01454 | 122.7 | 0.08447 | 0.0005781 | 0.05111 | 0.2488 | 1042.67 | 276500000.0 | -| CFXUSDT | 0.0001128 | 0.0001523 | 0.01463 | 0.0 | 0.01962 | 0.01671 | 98.47 | 0.08615 | 0.0 | 0.0542 | 0.08438 | 282.38 | 276500000.0 | -| DOTUSDT | 0.0003983 | 0.0009908 | 0.06932 | 0.02686 | 0.01724 | 0.01467 | 140.6 | 0.08111 | 0.04014 | 0.09033 | 0.1807 | 1194.67 | 276500000.0 | -| BCHUSDT | 7.493e-05 | 9.085e-05 | 0.01088 | 0.0 | 0.01955 | 0.01398 | 121.4 | 0.06303 | 0.0 | 0.02064 | 0.1373 | 1428.96 | 276500000.0 | -| RVNUSDT | 0.0002643 | 0.0006114 | 0.025 | 0.004712 | 0.01292 | 0.01248 | 129.3 | 0.07019 | 0.01032 | 0.04306 | 0.1776 | 1009.67 | 276500000.0 | -| ICXUSDT | 0.0003778 | 0.0006633 | 0.02721 | 0.006794 | 0.01526 | 0.01152 | 79.33 | 0.05379 | 0.01948 | 0.0445 | 0.1668 | 1170.67 | 276500000.0 | -| ANTUSDT | 6.882e-05 | 0.0001926 | 0.01611 | 0.0 | 0.02032 | 0.01451 | 112.2 | 0.06496 | 0.0 | 0.03306 | 0.1125 | 702.79 | 276500000.0 | -| CTKUSDT | 0.0002804 | 0.0007104 | 0.03634 | 0.0006481 | 0.01665 | 0.01433 | 113.7 | 0.09411 | 0.003263 | 0.0509 | 0.2492 | 1105.67 | 276500000.0 | -| OPUSDT | 0.0004495 | 0.0009969 | 0.03426 | 0.007396 | 0.0178 | 0.0176 | 101.5 | 0.09631 | 0.002701 | 0.05698 | 0.1389 | 546.38 | 276500000.0 | -| STXUSDT | 0.0004203 | 0.0004757 | 0.03218 | 0.01156 | 0.01543 | 0.0144 | 113.1 | 0.09088 | 0.05407 | 0.08433 | 0.1715 | 281.38 | 276500000.0 | -| ARBUSDT | 0.0004951 | 0.0004894 | 0.03651 | 0.01447 | 0.01208 | 0.01095 | 61.8 | 0.05194 | 0.02101 | 0.04506 | 0.07992 | 251.33 | 276500000.0 | -| FILUSDT | 0.0003036 | 0.0005995 | 0.02022 | 0.005085 | 0.01506 | 0.01432 | 138.2 | 0.07636 | 0.008922 | 0.03369 | 0.1686 | 1139.71 | 276500000.0 | -| FOOTBALLUSDT | 0.0003653 | 0.0006723 | 0.0267 | 0.002839 | 0.006208 | 0.005802 | 125.8 | 0.04263 | 0.004868 | 0.03727 | 0.1462 | 454.83 | 276500000.0 | -| STORJUSDT | 0.0004825 | 0.0006524 | 0.01773 | 0.004777 | 0.01562 | 0.01439 | 132.4 | 0.07704 | 0.005879 | 0.03984 | 0.1285 | 1169.67 | 276500000.0 | -| WAVESUSDT | 0.0001628 | 0.0002976 | 0.01955 | 0.006813 | 0.02009 | 0.01874 | 106.6 | 0.08343 | 0.03099 | 0.02202 | 0.1039 | 1204.67 | 276500000.0 | -| CVXUSDT | 4.81e-05 | 8.782e-05 | 0.01248 | 0.0 | 0.02161 | 0.01403 | 152.1 | 0.05329 | 0.0 | 0.007007 | 0.01233 | 433.46 | 277313333.333 | -| KLAYUSDT | 4.711e-05 | 7.459e-05 | 0.01215 | 0.0 | 0.02079 | 0.01542 | 182.5 | 0.07275 | 0.0 | 0.04084 | 0.1527 | 778.83 | 280353333.333 | -| USDCUSDT | -7.637e-10 | -7.637e-09 | 0.009843 | 0.0 | 0.001874 | 0.0005228 | nan | 0.01003 | 0.7 | 0.0001035 | 0.0001284 | 262.25 | 281500000.0 | -| COTIUSDT | 0.0002224 | 0.0004988 | 0.02569 | 0.007736 | 0.02323 | 0.02126 | 198.8 | 0.1114 | 0.006325 | 0.0617 | 0.2373 | 994.67 | 281993031.96 | -| IOTXUSDT | 9.592e-05 | 0.0001829 | 0.02695 | 0.005843 | 0.02449 | 0.01951 | 233.3 | 0.1168 | 0.01798 | 0.06316 | 0.1944 | 839.83 | 285443454.145 | -| ARUSDT | 0.0001345 | 0.0002021 | 0.01749 | 0.003484 | 0.0204 | 0.01675 | 142.9 | 0.1019 | 0.01674 | 0.06874 | 0.2591 | 792.83 | 285635354.079 | -| IOTAUSDT | 0.0002025 | 0.0004611 | 0.04817 | 0.007118 | 0.02226 | 0.01706 | 170.9 | 0.1181 | 0.02377 | 0.1005 | 0.2591 | 1386.62 | 288364697.487 | -| TOMOUSDT | 0.001091 | 0.0008658 | 0.02937 | 0.007679 | 0.02064 | 0.01775 | 374.2 | 0.09078 | 0.006823 | 0.04872 | 0.1731 | 1143.67 | 299523333.332 | -| BTCDOMUSDT | 1.385e-05 | 1.835e-05 | 0.009503 | 0.0 | 0.02034 | 0.0122 | 437.0 | 0.05312 | 0.0 | 0.006593 | 0.009128 | 891.83 | 305803333.333 | -| PEOPLEUSDT | 0.0005193 | 0.001017 | 0.02078 | 0.002774 | 0.01715 | 0.01565 | 196.1 | 0.0798 | 0.001643 | 0.03761 | 0.2753 | 705.79 | 307046145.65 | -| GMTUSDT | 0.0003461 | 0.0005149 | 0.02806 | 0.01697 | 0.01821 | 0.01961 | 356.5 | 0.1856 | 0.007798 | 0.2278 | 0.3519 | 624.79 | 412481410.377 | -| FTMUSDT | 5.223e-05 | -6.542e-05 | 0.02756 | 0.0166 | 0.02663 | 0.02729 | 93.13 | 0.2838 | 0.7827 | 0.4974 | 0.6353 | 1161.67 | 707527586.015 | -| COCOSUSDT | 6.369e-05 | 0.0006369 | 0.008408 | 0.001007 | 50.01 | 0.5044 | 4527.0 | 0.03437 | 0.5 | 0.01113 | 0.07101 | 281.38 | 717776666.667 | -| HNTUSDT | 3.054e-05 | 0.0001557 | 0.008921 | 0.0004355 | 10.02 | 0.1133 | 6111.0 | 0.06209 | 0.1035 | 0.02166 | 0.1775 | 1157.67 | 873175000.0 | -| SRMUSDT | 2.388e-05 | 0.0001344 | 0.007787 | 0.0002117 | 20.02 | 0.2115 | 9115.0 | 0.05858 | 0.2 | 0.01954 | 0.1476 | 1180.88 | 1173556666.67 | -| RAYUSDT | 4.553e-05 | 0.000381 | 0.02418 | 0.0001202 | 30.01 | 0.3106 | 9116.0 | 0.07057 | 0.3 | 0.03784 | 0.1156 | 831.83 | 1174683333.33 | -| FTTUSDT | 5.472e-05 | 0.0005472 | 0.0121 | 0.001557 | 50.0 | 0.5032 | 9140.0 | 0.02756 | 0.5 | 0.004855 | 0.165 | 593.83 | 1179051666.67 | -| CVCUSDT | 8.3e-05 | 0.0006804 | 0.01523 | 0.003569 | 20.01 | 0.2112 | 8779.0 | 0.08511 | 0.2091 | 0.07213 | 0.38 | 1113.67 | 1270048558.1 | -| BTSUSDT | 5.767e-05 | 0.0005187 | 0.03523 | 0.0 | 30.01 | 0.3128 | 11250.0 | 0.1059 | 0.3 | 0.07953 | 0.1397 | 1031.67 | 1387869268.99 | -| SCUSDT | 4.15e-05 | 0.000415 | 0.01505 | 0.001863 | 40.01 | 0.4052 | 12730.0 | 0.03987 | 0.4002 | 0.01354 | 0.1672 | 961.67 | 1537542445.54 | -| GALAUSDT | -0.005143 | -0.01706 | 0.03917 | 0.02592 | 0.02336 | 0.04043 | 7784.0 | 0.3105 | 4.2 | 1.0 | 1.0 | 802.83 | 1920683169.46 | -| MASKUSDT | -0.005009 | -0.01661 | 0.01489 | 0.004343 | 0.01968 | 0.02704 | 9399.0 | 0.1085 | 3.602 | 1.0 | 1.0 | 824.83 | 2076065285.28 | -| UNFIUSDT | -0.001354 | -0.01354 | 0.1611 | 0.08644 | 0.03029 | 0.03463 | 12960.0 | 0.2693 | 0.5916 | 1.0 | 1.0 | 1013.67 | 2402469773.18 | -| BTCSTUSDT | 3.333e-06 | 3.333e-05 | 0.006201 | 0.0 | 80.0 | 0.8002 | 23830.0 | 0.004833 | 0.8 | 0.0002393 | 0.005947 | 1000.67 | 2651005000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/1000FLOKIUSDT.json deleted file mode 100644 index f2c301b27..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.290489689461966, - "ema_span_0": 1440, - "ema_span_1": 1182.8988028928761, - "enabled": true, - "initial_eprice_ema_dist": -3.480624378444575e-05, - "initial_qty_pct": 0.01868555451687537, - "markup_range": 0.0049838109270830796, - "min_markup": 0.002034199252922289, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03951135446591533, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9949751216671086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000LUNCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/1000LUNCUSDT.json deleted file mode 100644 index 2cf31b67f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2790052190519028, - "ema_span_0": 720.8524682905892, - "ema_span_1": 1216.5359815368379, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011447479493287964, - "markup_range": 0.005150514141701578, - "min_markup": 0.005178192586461822, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03407328003681193, - "rentry_pprice_dist_wallet_exposure_weighting": 8.716160614861298, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000PEPEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/1000PEPEUSDT.json deleted file mode 100644 index 8d8de9f26..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3100807399509733, - "ema_span_0": 513.5490097314743, - "ema_span_1": 733.9381006599374, - "enabled": true, - "initial_eprice_ema_dist": -0.00688693139135385, - "initial_qty_pct": 0.008303784357975463, - "markup_range": 0.011374975925963213, - "min_markup": 0.008314838627241316, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05222180157189911, - "rentry_pprice_dist_wallet_exposure_weighting": 0.46350203321275335, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5127191074644122, - "ema_span_0": 1209.0752348602116, - "ema_span_1": 1245.936047074045, - "enabled": true, - "initial_eprice_ema_dist": -0.00783831177808704, - "initial_qty_pct": 0.007646228817315402, - "markup_range": 0.005292446878475193, - "min_markup": 0.003756369238441901, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03361823663661565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16049418705746993, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000SHIBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/1000SHIBUSDT.json deleted file mode 100644 index a18e20435..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000XECUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/1000XECUSDT.json deleted file mode 100644 index dceed4af9..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1476656502939706, - "ema_span_0": 933.5206971239695, - "ema_span_1": 1095.9741385919708, - "enabled": true, - "initial_eprice_ema_dist": 0.0027413779901458053, - "initial_qty_pct": 0.006831053597006566, - "markup_range": 0.0032137093332441275, - "min_markup": 0.004205101007790303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03810405184615373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.284107925654067, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6602561799610607, - "ema_span_0": 641.8208644854974, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.010601689149129413, - "markup_range": 0.002362883678902643, - "min_markup": 0.0034672288826655575, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0417474559465164, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490968841725158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/1INCHUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/1INCHUSDT.json deleted file mode 100644 index 4ce087931..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1476656502939706, - "ema_span_0": 933.5206971239695, - "ema_span_1": 1095.9741385919708, - "enabled": true, - "initial_eprice_ema_dist": 0.0027413779901458053, - "initial_qty_pct": 0.006831053597006566, - "markup_range": 0.0032137093332441275, - "min_markup": 0.004205101007790303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03810405184615373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.284107925654067, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1933052131270891, - "ema_span_0": 1317.843227838789, - "ema_span_1": 1271.9144421873636, - "enabled": true, - "initial_eprice_ema_dist": 0.0029992207977163165, - "initial_qty_pct": 0.01927487629822191, - "markup_range": 0.002487648453733647, - "min_markup": 0.0038980987991547936, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03690000392853918, - "rentry_pprice_dist_wallet_exposure_weighting": 5.782895380675006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AAVEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AAVEUSDT.json deleted file mode 100644 index 175667916..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6685203369798902, - "ema_span_0": 942.9073183274313, - "ema_span_1": 1392.7424171667124, - "enabled": true, - "initial_eprice_ema_dist": 0.00296129748605771, - "initial_qty_pct": 0.010632388893737991, - "markup_range": 0.006217989916469233, - "min_markup": 0.0026431236200430332, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04905337609643417, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0401588346473017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ACHUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ACHUSDT.json deleted file mode 100644 index 43060c3b4..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0376355203597838, - "ema_span_0": 633.386007336164, - "ema_span_1": 887.3728270616908, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.013699748249200672, - "markup_range": 0.008459985981420575, - "min_markup": 0.006781846332321432, - "n_close_orders": 11, - "rentry_pprice_dist": 0.035444110685798405, - "rentry_pprice_dist_wallet_exposure_weighting": 5.226529926365776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ADAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ADAUSDT.json deleted file mode 100644 index 25cd54f8a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0661212597199805, - "ema_span_0": 871.4868069935842, - "ema_span_1": 813.9875449016666, - "enabled": true, - "initial_eprice_ema_dist": -0.006249229179967419, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.0004471682865097875, - "min_markup": 0.002873043973521388, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9433838150301748, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6088879821750672, - "ema_span_0": 1047.2669668163237, - "ema_span_1": 853.4107151064059, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010305841282956748, - "markup_range": 0.0023807413707559845, - "min_markup": 0.0023373860890208756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022044521640944156, - "rentry_pprice_dist_wallet_exposure_weighting": 8.9516971455415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AGIXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AGIXUSDT.json deleted file mode 100644 index 8d1a832f6..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AGLDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AGLDUSDT.json deleted file mode 100644 index 074bb1742..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25500222583492105, - "ema_span_0": 680.5849726062776, - "ema_span_1": 1293.7198958430267, - "enabled": true, - "initial_eprice_ema_dist": 0.0015403617974944315, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.003498007385158342, - "min_markup": 0.009828620875824397, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02930371564989985, - "rentry_pprice_dist_wallet_exposure_weighting": 2.448787089477937, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8238000490597432, - "ema_span_0": 1016.4337070155108, - "ema_span_1": 915.1214130618383, - "enabled": true, - "initial_eprice_ema_dist": 0.0007831719440346082, - "initial_qty_pct": 0.013976881040781519, - "markup_range": 0.0053851497781930435, - "min_markup": 0.0054348661294066685, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03683703455568767, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9213870105954695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ALGOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ALGOUSDT.json deleted file mode 100644 index a2f029480..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.574189851943695, - "ema_span_0": 402.4144238574692, - "ema_span_1": 596.4415574716708, - "enabled": true, - "initial_eprice_ema_dist": -0.0030154197379873987, - "initial_qty_pct": 0.013857790292850083, - "markup_range": 0.004088603243606634, - "min_markup": 0.00471555583448054, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03450309641051234, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3324760299678968, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2214462657948828, - "ema_span_0": 1086.0872597938728, - "ema_span_1": 1100.4810601110871, - "enabled": true, - "initial_eprice_ema_dist": 0.0003789756160626287, - "initial_qty_pct": 0.010733817066611489, - "markup_range": 0.011650383667415184, - "min_markup": 0.007445882759028696, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03980909672342595, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0631334907892014, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ALICEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ALICEUSDT.json deleted file mode 100644 index d624783b2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.897565880065934, - "ema_span_0": 521.7627092148455, - "ema_span_1": 469.14491640636425, - "enabled": true, - "initial_eprice_ema_dist": -0.0009794796608795248, - "initial_qty_pct": 0.015905685657389385, - "markup_range": 0.005801301487287526, - "min_markup": 0.002932306613961424, - "n_close_orders": 4, - "rentry_pprice_dist": 0.033597842644760165, - "rentry_pprice_dist_wallet_exposure_weighting": 4.585596531067902, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5175173400174441, - "ema_span_0": 1346.8620707182067, - "ema_span_1": 1413.6166000222142, - "enabled": true, - "initial_eprice_ema_dist": -0.0012471916758468632, - "initial_qty_pct": 0.016144452241425997, - "markup_range": 0.009647473693768836, - "min_markup": 0.0064697757890325525, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03363288173928292, - "rentry_pprice_dist_wallet_exposure_weighting": 6.789260700375377, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ALPHAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ALPHAUSDT.json deleted file mode 100644 index 89b6e77f3..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.151566880736084, - "ema_span_0": 515.5070599529802, - "ema_span_1": 544.3720057593275, - "enabled": true, - "initial_eprice_ema_dist": 0.002365586563857505, - "initial_qty_pct": 0.010468350496396587, - "markup_range": 0.004063423362444695, - "min_markup": 0.005550260029169231, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03909547006337609, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3090234856928364, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 1105.7420131416857, - "ema_span_1": 1439.7332139302725, - "enabled": true, - "initial_eprice_ema_dist": 0.002805707258958375, - "initial_qty_pct": 0.01556377146388291, - "markup_range": 0.0016262178067751622, - "min_markup": 0.0038463331583642644, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03677429913459206, - "rentry_pprice_dist_wallet_exposure_weighting": 8.18875974682612, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AMBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AMBUSDT.json deleted file mode 100644 index 7644d6303..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9835196748626635, - "ema_span_0": 850.1218813498359, - "ema_span_1": 575.1470609094193, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.019016975628777785, - "markup_range": 0.006360067572732123, - "min_markup": 0.006238392512025082, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03902524439820568, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6574576308701303, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ANKRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ANKRUSDT.json deleted file mode 100644 index b93679fc2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7548758837650864, - "ema_span_0": 1191.9312652010371, - "ema_span_1": 1355.0679887715685, - "enabled": true, - "initial_eprice_ema_dist": 0.000943229176790928, - "initial_qty_pct": 0.00992020481729889, - "markup_range": 0.003709573741304125, - "min_markup": 0.001454596543327943, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025806478096145762, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764646147703523, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.16080098990372552, - "ema_span_0": 857.8309761747646, - "ema_span_1": 1121.5501739045462, - "enabled": true, - "initial_eprice_ema_dist": 0.002999291433435279, - "initial_qty_pct": 0.019998343831274246, - "markup_range": 0.001461226742868234, - "min_markup": 0.008443317481696381, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03441151007335486, - "rentry_pprice_dist_wallet_exposure_weighting": 8.217714344660987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ANTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ANTUSDT.json deleted file mode 100644 index 135ea4eaa..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/APEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/APEUSDT.json deleted file mode 100644 index 86db97ddb..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10037304056961531, - "ema_span_0": 994.6762990473986, - "ema_span_1": 1103.8806034579907, - "enabled": true, - "initial_eprice_ema_dist": -0.0064877309346694344, - "initial_qty_pct": 0.006721573023020864, - "markup_range": 0.0019259664387609118, - "min_markup": 0.005373303199029612, - "n_close_orders": 14, - "rentry_pprice_dist": 0.01979535022729973, - "rentry_pprice_dist_wallet_exposure_weighting": 2.202675127245405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3610810877333834, - "ema_span_0": 1387.859631016273, - "ema_span_1": 830.0336606892711, - "enabled": true, - "initial_eprice_ema_dist": -4.7693696982364265e-05, - "initial_qty_pct": 0.01409087864308198, - "markup_range": 0.008065203688859808, - "min_markup": 0.003815556092409007, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02435442439173191, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853916217735233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/API3USDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/API3USDT.json deleted file mode 100644 index 126abe58c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4924103298895497, - "ema_span_0": 1435.6248632028244, - "ema_span_1": 1281.8077876186157, - "enabled": true, - "initial_eprice_ema_dist": -0.0030841936613471383, - "initial_qty_pct": 0.013726934435758566, - "markup_range": 0.0011017226348451418, - "min_markup": 0.00367146705463104, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0395894695116373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3240390856851025, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35377525620612843, - "ema_span_0": 1280.8008886056546, - "ema_span_1": 734.9320679117058, - "enabled": true, - "initial_eprice_ema_dist": -0.008458349194505358, - "initial_qty_pct": 0.006974778221559435, - "markup_range": 0.002964010935049224, - "min_markup": 0.004887013163173188, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023413318899461338, - "rentry_pprice_dist_wallet_exposure_weighting": 7.745721191751236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/APTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/APTUSDT.json deleted file mode 100644 index 068178e8a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6602561799610607, - "ema_span_0": 641.8208644854974, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.010601689149129413, - "markup_range": 0.002362883678902643, - "min_markup": 0.0034672288826655575, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0417474559465164, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490968841725158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ARBUSDT.json deleted file mode 100644 index 4bef83373..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARKMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ARKMUSDT.json deleted file mode 100644 index 06de8464e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARKUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ARKUSDT.json deleted file mode 100644 index d916c6f20..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10010264283071404, - "ema_span_0": 1074.7107635989628, - "ema_span_1": 824.4020377981421, - "enabled": true, - "initial_eprice_ema_dist": 0.002997278810551917, - "initial_qty_pct": 0.019997349195799628, - "markup_range": 0.004116237409615031, - "min_markup": 0.006676342857971211, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029872158206496465, - "rentry_pprice_dist_wallet_exposure_weighting": 8.605189052077773, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARPAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ARPAUSDT.json deleted file mode 100644 index f04f9f886..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1069554768571406, - "ema_span_0": 668.7564435404682, - "ema_span_1": 452.3452063216382, - "enabled": true, - "initial_eprice_ema_dist": -0.003741168510627742, - "initial_qty_pct": 0.013895549788819265, - "markup_range": 0.0025767939663914143, - "min_markup": 0.00484273852801616, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02607187900217411, - "rentry_pprice_dist_wallet_exposure_weighting": 1.915495067123377, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0575484627542227, - "ema_span_0": 1067.5582564003012, - "ema_span_1": 422.8511433535947, - "enabled": true, - "initial_eprice_ema_dist": 0.0002492545114339976, - "initial_qty_pct": 0.007658054470493523, - "markup_range": 0.00214324393092925, - "min_markup": 0.003279407549061367, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05854209606514442, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2201369583826327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ARUSDT.json deleted file mode 100644 index 79ff1db8b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ASTRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ASTRUSDT.json deleted file mode 100644 index ff918f330..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2916212898447389, - "ema_span_0": 558.5924969044192, - "ema_span_1": 609.0076501189745, - "enabled": true, - "initial_eprice_ema_dist": -0.008391773292204903, - "initial_qty_pct": 0.019602929367910492, - "markup_range": 0.010665910178031772, - "min_markup": 0.002155920567569581, - "n_close_orders": 15, - "rentry_pprice_dist": 0.037429964583052214, - "rentry_pprice_dist_wallet_exposure_weighting": 1.059012227840908, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ATAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ATAUSDT.json deleted file mode 100644 index bd4860174..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2217567213607032, - "ema_span_0": 683.8293148453361, - "ema_span_1": 1045.930823611072, - "enabled": true, - "initial_eprice_ema_dist": 0.001192929551335642, - "initial_qty_pct": 0.01161025552401619, - "markup_range": 0.002726245576964028, - "min_markup": 0.006327700262616104, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04105473263536897, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4376273610876, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9499051479360794, - "ema_span_0": 622.1083373545156, - "ema_span_1": 1357.1605131698723, - "enabled": true, - "initial_eprice_ema_dist": -0.0052618939405264945, - "initial_qty_pct": 0.013970634422238976, - "markup_range": 0.007023294326105997, - "min_markup": 0.00536912115698267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03611137316591374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.263986724814306, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ATOMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ATOMUSDT.json deleted file mode 100644 index d1292d54a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3187888384773676, - "ema_span_0": 453.1599018702678, - "ema_span_1": 739.39742060668, - "enabled": true, - "initial_eprice_ema_dist": -0.009980324583036323, - "initial_qty_pct": 0.010098513558446785, - "markup_range": 0.006207062074005397, - "min_markup": 0.001696536952026113, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02882694885290546, - "rentry_pprice_dist_wallet_exposure_weighting": 4.294854549490684, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8317672831997515, - "ema_span_0": 1379.0305224486792, - "ema_span_1": 1315.8139430261444, - "enabled": true, - "initial_eprice_ema_dist": -0.005556369161777596, - "initial_qty_pct": 0.014696673084211543, - "markup_range": 0.004126443243319796, - "min_markup": 0.0034499363711920444, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024337462617835055, - "rentry_pprice_dist_wallet_exposure_weighting": 0.40409688143295186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AUDIOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AUDIOUSDT.json deleted file mode 100644 index 8c68c9fd6..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0988492763500168, - "ema_span_0": 840.4833924055439, - "ema_span_1": 1195.6344453376678, - "enabled": true, - "initial_eprice_ema_dist": -0.002643454613555825, - "initial_qty_pct": 0.010139548763063552, - "markup_range": 0.0019175334866138156, - "min_markup": 0.00634446099472259, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03574456209819619, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6437156327688496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17206336873738548, - "ema_span_0": 400, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.008086298731652026, - "markup_range": 0.00011612873974285131, - "min_markup": 0.003756369238441901, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 7.541267647352387, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AVAXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AVAXUSDT.json deleted file mode 100644 index d8839f62e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18472516589569715, - "ema_span_0": 1420.8406123511427, - "ema_span_1": 874.0335320547985, - "enabled": true, - "initial_eprice_ema_dist": 0.001520620422100491, - "initial_qty_pct": 0.01418489500111656, - "markup_range": 0.004985077180284787, - "min_markup": 0.007230566260217441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02955898434052857, - "rentry_pprice_dist_wallet_exposure_weighting": 1.760021163071938, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.076778482825849, - "ema_span_0": 1011.1520320470961, - "ema_span_1": 1395.5057544616952, - "enabled": true, - "initial_eprice_ema_dist": 0.002606468668924801, - "initial_qty_pct": 0.009927616477204899, - "markup_range": 0.006926687566493595, - "min_markup": 0.007624409394037621, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04840635617102456, - "rentry_pprice_dist_wallet_exposure_weighting": 2.334524439679845, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/AXSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/AXSUSDT.json deleted file mode 100644 index 3ef0e72aa..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6108492495510022, - "ema_span_0": 1305.2809333035257, - "ema_span_1": 1439.520477767014, - "enabled": true, - "initial_eprice_ema_dist": -0.009576479101656933, - "initial_qty_pct": 0.009844422165438071, - "markup_range": 0.005182627122934938, - "min_markup": 0.002854098434234054, - "n_close_orders": 7, - "rentry_pprice_dist": 0.034800015849001734, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6927620241533843, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BAKEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BAKEUSDT.json deleted file mode 100644 index 0367fcbc2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7414181476220062, - "ema_span_0": 1168.7034801864759, - "ema_span_1": 656.9949334600461, - "enabled": true, - "initial_eprice_ema_dist": -0.00982674864500597, - "initial_qty_pct": 0.006027256587049603, - "markup_range": 0.0012499555799690965, - "min_markup": 0.004048345778163076, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04065419103936731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6739639014180814, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.880009341672455, - "ema_span_0": 701.9369706349446, - "ema_span_1": 1177.24817569763, - "enabled": true, - "initial_eprice_ema_dist": 0.0014561238038451332, - "initial_qty_pct": 0.010554747239126125, - "markup_range": 0.0035760584844470125, - "min_markup": 0.0037629567769551083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04368027463100656, - "rentry_pprice_dist_wallet_exposure_weighting": 9.800471931452684, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BALUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BALUSDT.json deleted file mode 100644 index e8d152a29..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7414181476220062, - "ema_span_0": 1168.7034801864759, - "ema_span_1": 656.9949334600461, - "enabled": true, - "initial_eprice_ema_dist": -0.00982674864500597, - "initial_qty_pct": 0.006027256587049603, - "markup_range": 0.0012499555799690965, - "min_markup": 0.004048345778163076, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04065419103936731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6739639014180814, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BANDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BANDUSDT.json deleted file mode 100644 index c2180338e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9539844792731716, - "ema_span_0": 1348.1998026290053, - "ema_span_1": 1350.029161035143, - "enabled": true, - "initial_eprice_ema_dist": -0.0052411622531953325, - "initial_qty_pct": 0.009482244190400883, - "markup_range": 0.006232659497564574, - "min_markup": 0.005169603139400304, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03736981272317089, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BATUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BATUSDT.json deleted file mode 100644 index 52b912f40..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3960415720912747, - "ema_span_0": 624.2248533426647, - "ema_span_1": 1117.4921400486978, - "enabled": true, - "initial_eprice_ema_dist": -0.0004217294152381513, - "initial_qty_pct": 0.00689636224316096, - "markup_range": 0.0034694700196098395, - "min_markup": 0.0061850701406456045, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0354668666514628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1959956595127514, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4991457808327495, - "ema_span_0": 1419.114337239683, - "ema_span_1": 1358.0772000686893, - "enabled": true, - "initial_eprice_ema_dist": 0.002790467785665903, - "initial_qty_pct": 0.01920221977571906, - "markup_range": 0.005729895684731788, - "min_markup": 0.0035433895720688854, - "n_close_orders": 2, - "rentry_pprice_dist": 0.048442356277729616, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4481510456006659, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BCHUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BCHUSDT.json deleted file mode 100644 index 474f09076..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4924103298895497, - "ema_span_0": 1435.6248632028244, - "ema_span_1": 1281.8077876186157, - "enabled": true, - "initial_eprice_ema_dist": -0.0030841936613471383, - "initial_qty_pct": 0.013726934435758566, - "markup_range": 0.0011017226348451418, - "min_markup": 0.00367146705463104, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0395894695116373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3240390856851025, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2790052190519028, - "ema_span_0": 720.8524682905892, - "ema_span_1": 1216.5359815368379, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011447479493287964, - "markup_range": 0.005150514141701578, - "min_markup": 0.005178192586461822, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03407328003681193, - "rentry_pprice_dist_wallet_exposure_weighting": 8.716160614861298, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BELUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BELUSDT.json deleted file mode 100644 index 9fdacf6e0..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1108497242460058, - "ema_span_0": 1187.0287658383586, - "ema_span_1": 1061.1375912407934, - "enabled": true, - "initial_eprice_ema_dist": 7.375216471031514e-05, - "initial_qty_pct": 0.01842808834509114, - "markup_range": 0.0018286606847631771, - "min_markup": 0.00224554161458097, - "n_close_orders": 6, - "rentry_pprice_dist": 0.047426103788976194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.290824985341869, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.40933279775096054, - "ema_span_0": 1386.3653227564946, - "ema_span_1": 1432.5438503080268, - "enabled": true, - "initial_eprice_ema_dist": -0.0039030697044891635, - "initial_qty_pct": 0.008102577055782628, - "markup_range": 0.0036012493364939208, - "min_markup": 0.00695619581641816, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04188506796235237, - "rentry_pprice_dist_wallet_exposure_weighting": 8.688665490709408, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BICOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BICOUSDT.json deleted file mode 100644 index 15ab35d20..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BICOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BLUEBIRDUSDT.json deleted file mode 100644 index 26ffca247..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0351783878301706, - "ema_span_0": 856.1875238553667, - "ema_span_1": 1343.2793019762435, - "enabled": true, - "initial_eprice_ema_dist": -0.003919861496725161, - "initial_qty_pct": 0.010702128889112886, - "markup_range": 0.0009841694091845433, - "min_markup": 0.001297125428497705, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018435997170025517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9193130248727066, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35377525620612843, - "ema_span_0": 1280.8008886056546, - "ema_span_1": 734.9320679117058, - "enabled": true, - "initial_eprice_ema_dist": -0.008458349194505358, - "initial_qty_pct": 0.006974778221559435, - "markup_range": 0.002964010935049224, - "min_markup": 0.004887013163173188, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023413318899461338, - "rentry_pprice_dist_wallet_exposure_weighting": 7.745721191751236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BLURUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BLURUSDT.json deleted file mode 100644 index e93d2affc..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033314066053704, - "ema_span_0": 570.4891353812185, - "ema_span_1": 817.6579770619803, - "enabled": true, - "initial_eprice_ema_dist": -0.008620202074115159, - "initial_qty_pct": 0.007375630906712132, - "markup_range": 0.005031576551531487, - "min_markup": 0.005461944181247269, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029750435997755616, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9197614878360865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BLZUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BLZUSDT.json deleted file mode 100644 index 548ffda40..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.341754829883286, - "ema_span_0": 1381.696357194486, - "ema_span_1": 898.3018642104006, - "enabled": true, - "initial_eprice_ema_dist": -0.007502246912564987, - "initial_qty_pct": 0.008190405753175794, - "markup_range": 0.001181834027785448, - "min_markup": 0.005822096880760171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04401027773725582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6448002396478179, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.626452799052301, - "ema_span_0": 573.1200118290135, - "ema_span_1": 1197.8897444229221, - "enabled": true, - "initial_eprice_ema_dist": -0.006637533956300064, - "initial_qty_pct": 0.010001704111810115, - "markup_range": 0.0017072695408365756, - "min_markup": 0.0021368061921831607, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04466576150942727, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6731068250419197, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BNBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BNBUSDT.json deleted file mode 100644 index f45e51cf3..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4175684269258768, - "ema_span_0": 400, - "ema_span_1": 400.0779526528935, - "enabled": true, - "initial_eprice_ema_dist": 0.002659264115720802, - "initial_qty_pct": 0.015164250246292116, - "markup_range": 0.00040232882964493866, - "min_markup": 0.0027307061617194575, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022776665212191488, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31904908739194204, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000779534771716, - "ema_span_0": 400, - "ema_span_1": 1159.7423116600078, - "enabled": true, - "initial_eprice_ema_dist": 0.0029976509974363116, - "initial_qty_pct": 0.01516937774540192, - "markup_range": 0.0011743799901373759, - "min_markup": 0.002287406131795191, - "n_close_orders": 4, - "rentry_pprice_dist": 0.031367567177681084, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2588500973511572, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BNTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BNTUSDT.json deleted file mode 100644 index 596aec989..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BNXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BNXUSDT.json deleted file mode 100644 index 958c6d28e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25343745137797186, - "ema_span_0": 1209.799889267291, - "ema_span_1": 561.3024485228449, - "enabled": true, - "initial_eprice_ema_dist": -0.000868597903903903, - "initial_qty_pct": 0.006379959950152951, - "markup_range": 0.013174477175909452, - "min_markup": 0.004977617778157702, - "n_close_orders": 11, - "rentry_pprice_dist": 0.038213259567223795, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5024703156381913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8317672831997515, - "ema_span_0": 1379.0305224486792, - "ema_span_1": 1315.8139430261444, - "enabled": true, - "initial_eprice_ema_dist": -0.005556369161777596, - "initial_qty_pct": 0.014696673084211543, - "markup_range": 0.004126443243319796, - "min_markup": 0.0034499363711920444, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024337462617835055, - "rentry_pprice_dist_wallet_exposure_weighting": 0.40409688143295186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCDOMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCDOMUSDT.json deleted file mode 100644 index b818a1cc6..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0351783878301706, - "ema_span_0": 856.1875238553667, - "ema_span_1": 1343.2793019762435, - "enabled": true, - "initial_eprice_ema_dist": -0.003919861496725161, - "initial_qty_pct": 0.010702128889112886, - "markup_range": 0.0009841694091845433, - "min_markup": 0.001297125428497705, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018435997170025517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9193130248727066, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000779534771716, - "ema_span_0": 400, - "ema_span_1": 1159.7423116600078, - "enabled": true, - "initial_eprice_ema_dist": 0.0029976509974363116, - "initial_qty_pct": 0.01516937774540192, - "markup_range": 0.0011743799901373759, - "min_markup": 0.002287406131795191, - "n_close_orders": 4, - "rentry_pprice_dist": 0.031367567177681084, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2588500973511572, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCSTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCSTUSDT.json deleted file mode 100644 index d3c201973..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCUSDT.json deleted file mode 100644 index 85e579d81..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768166339023584, - "ema_span_0": 846.2932999652809, - "ema_span_1": 1365.050493441726, - "enabled": true, - "initial_eprice_ema_dist": 0.0017874243325565454, - "initial_qty_pct": 0.014101868157575389, - "markup_range": 0.00252297168789874, - "min_markup": 0.002344087373181429, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019493184883214925, - "rentry_pprice_dist_wallet_exposure_weighting": 2.599925245591829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.173292938839362, - "ema_span_0": 1151.7891775414712, - "ema_span_1": 664.4483532262285, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012135370674556202, - "markup_range": 0.00012470032702840506, - "min_markup": 0.0012655947852999176, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02705624112123542, - "rentry_pprice_dist_wallet_exposure_weighting": 4.460736562825172, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/BTSUSDT.json deleted file mode 100644 index b6624caf8..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7414181476220062, - "ema_span_0": 1168.7034801864759, - "ema_span_1": 656.9949334600461, - "enabled": true, - "initial_eprice_ema_dist": -0.00982674864500597, - "initial_qty_pct": 0.006027256587049603, - "markup_range": 0.0012499555799690965, - "min_markup": 0.004048345778163076, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04065419103936731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6739639014180814, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/C98USDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/C98USDT.json deleted file mode 100644 index e58d393f6..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5175173400174441, - "ema_span_0": 1346.8620707182067, - "ema_span_1": 1413.6166000222142, - "enabled": true, - "initial_eprice_ema_dist": -0.0012471916758468632, - "initial_qty_pct": 0.016144452241425997, - "markup_range": 0.009647473693768836, - "min_markup": 0.0064697757890325525, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03363288173928292, - "rentry_pprice_dist_wallet_exposure_weighting": 6.789260700375377, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CELOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CELOUSDT.json deleted file mode 100644 index e5c46e3e9..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4643365964940367, - "ema_span_0": 729.2702752105544, - "ema_span_1": 1403.3147068382307, - "enabled": true, - "initial_eprice_ema_dist": -0.0059971722275662725, - "initial_qty_pct": 0.006434926666897879, - "markup_range": 0.004826308788047463, - "min_markup": 0.005514797026403315, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029947605765173253, - "rentry_pprice_dist_wallet_exposure_weighting": 5.016058988308593, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CELRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CELRUSDT.json deleted file mode 100644 index ebea4f07c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9105504246559422, - "ema_span_0": 1238.5183560186683, - "ema_span_1": 1282.977497617896, - "enabled": true, - "initial_eprice_ema_dist": 0.0029824558414913785, - "initial_qty_pct": 0.01738143914952724, - "markup_range": 0.00344780778106096, - "min_markup": 0.00601036917252694, - "n_close_orders": 2, - "rentry_pprice_dist": 0.044710882463186205, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4551722455707131, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CFXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CFXUSDT.json deleted file mode 100644 index 1854eb700..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.751402066478981, - "ema_span_0": 815.6758472397362, - "ema_span_1": 893.4578952035137, - "enabled": true, - "initial_eprice_ema_dist": -0.0012125170160610596, - "initial_qty_pct": 0.008391926393526834, - "markup_range": 1.5033008696905663e-05, - "min_markup": 0.004859883745516535, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02584774452073919, - "rentry_pprice_dist_wallet_exposure_weighting": 4.251130139100051, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9816750005613653, - "ema_span_0": 1343.0840284833462, - "ema_span_1": 1433.3384671326917, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012726350096647744, - "markup_range": 0.003708085932055071, - "min_markup": 0.0019460025801372946, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04997483217140227, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5184360991196204, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CHRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CHRUSDT.json deleted file mode 100644 index 2264c072d..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6566034762603468, - "ema_span_0": 1327.8701897739788, - "ema_span_1": 1258.161998123513, - "enabled": true, - "initial_eprice_ema_dist": -0.0019458332422089375, - "initial_qty_pct": 0.00750794984087325, - "markup_range": 0.00715984729394877, - "min_markup": 0.007984553521590413, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03253243321074723, - "rentry_pprice_dist_wallet_exposure_weighting": 2.965727689807071, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.93734185855979, - "ema_span_0": 1206.3508525785198, - "ema_span_1": 1029.0474303077697, - "enabled": true, - "initial_eprice_ema_dist": -0.008443451078664668, - "initial_qty_pct": 0.00933277888068054, - "markup_range": 0.007070626271567769, - "min_markup": 0.008719187963993505, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04059998175024074, - "rentry_pprice_dist_wallet_exposure_weighting": 1.156510760190089, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CHZUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CHZUSDT.json deleted file mode 100644 index affa541a4..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9910548357487567, - "ema_span_0": 1372.1029988069888, - "ema_span_1": 877.0909130988211, - "enabled": true, - "initial_eprice_ema_dist": -1.6541115850042524e-05, - "initial_qty_pct": 0.011652375349125723, - "markup_range": 0.0010581556564322023, - "min_markup": 0.0029223694848432603, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02992948423627017, - "rentry_pprice_dist_wallet_exposure_weighting": 5.820869047512101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6406423489951535, - "ema_span_0": 406.10188589554815, - "ema_span_1": 746.0127447763379, - "enabled": true, - "initial_eprice_ema_dist": 0.0011041073278541418, - "initial_qty_pct": 0.014123591268732038, - "markup_range": 0.004559095048760113, - "min_markup": 0.007174625147721825, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0366606198447229, - "rentry_pprice_dist_wallet_exposure_weighting": 8.260126649790951, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CKBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CKBUSDT.json deleted file mode 100644 index 1dfced7cf..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/COCOSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/COCOSUSDT.json deleted file mode 100644 index b3b78fee8..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5534871384395967, - "ema_span_0": 497.72417068282743, - "ema_span_1": 402.4310180281065, - "enabled": true, - "initial_eprice_ema_dist": -0.006937579282307286, - "initial_qty_pct": 0.019998967246795736, - "markup_range": 0.004075980963864618, - "min_markup": 0.008206347744760006, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02201269981773479, - "rentry_pprice_dist_wallet_exposure_weighting": 8.86096231397286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/COMBOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/COMBOUSDT.json deleted file mode 100644 index 79a574c7f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4105703484072927, - "ema_span_0": 1247.6247279832355, - "ema_span_1": 1293.7198958430267, - "enabled": true, - "initial_eprice_ema_dist": -0.0015934526752411171, - "initial_qty_pct": 0.02, - "markup_range": 0.0028559825835691934, - "min_markup": 0.0032176359083182808, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03456731194371036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19136836263093726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/COMPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/COMPUSDT.json deleted file mode 100644 index a56daadb5..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5231619791493856, - "ema_span_0": 1251.1232016233723, - "ema_span_1": 1045.1366611148505, - "enabled": true, - "initial_eprice_ema_dist": 0.0006601587381044553, - "initial_qty_pct": 0.016062648848320604, - "markup_range": 0.004770340405997823, - "min_markup": 0.0060401204136381675, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0318899441813679, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5853767763069215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4416091341221842, - "ema_span_0": 827.4706169927598, - "ema_span_1": 770.6871650830933, - "enabled": true, - "initial_eprice_ema_dist": -0.007114300356406167, - "initial_qty_pct": 0.009651864885132741, - "markup_range": 0.000495771567248677, - "min_markup": 0.0038232288179883478, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04352105313736622, - "rentry_pprice_dist_wallet_exposure_weighting": 9.243889617944236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/COTIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/COTIUSDT.json deleted file mode 100644 index 8198f4737..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 680.5849726062776, - "ema_span_1": 679.128443782459, - "enabled": true, - "initial_eprice_ema_dist": -0.007534735788528065, - "initial_qty_pct": 0.009551468568882514, - "markup_range": 0.00405055665439011, - "min_markup": 0.005771584786557487, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029718809432778555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7040336767318629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6247497955007121, - "ema_span_0": 1262.9606670754806, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.00033095945724062245, - "initial_qty_pct": 0.016009907630762453, - "markup_range": 0.0077495204589845285, - "min_markup": 0.0035785484697080767, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03266737656743181, - "rentry_pprice_dist_wallet_exposure_weighting": 6.3110662646840785, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CRVUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CRVUSDT.json deleted file mode 100644 index 8e53fae3e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7649611174407369, - "ema_span_0": 1129.7774722153606, - "ema_span_1": 1064.0404572651694, - "enabled": true, - "initial_eprice_ema_dist": 0.002085785152088163, - "initial_qty_pct": 0.012836892205500928, - "markup_range": 0.0024747067053958426, - "min_markup": 0.007622730581296063, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036453625401409985, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1086465307812927, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21121918030792172, - "ema_span_0": 721.8896248656592, - "ema_span_1": 1360.6130392354266, - "enabled": true, - "initial_eprice_ema_dist": -0.007330703523834837, - "initial_qty_pct": 0.01289300914932402, - "markup_range": 0.0032900040213383356, - "min_markup": 0.007917111424929492, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03911008496356426, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5842375396326758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CTKUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CTKUSDT.json deleted file mode 100644 index 554a1b826..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.193657657515131, - "ema_span_0": 1362.2831950760371, - "ema_span_1": 969.4695135255093, - "enabled": true, - "initial_eprice_ema_dist": 0.0028118158366425183, - "initial_qty_pct": 0.014962031687322954, - "markup_range": 0.0012893423918961904, - "min_markup": 0.004233535370502281, - "n_close_orders": 11, - "rentry_pprice_dist": 0.037582142488829, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6080882053518732, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.173292938839362, - "ema_span_0": 1151.7891775414712, - "ema_span_1": 664.4483532262285, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012135370674556202, - "markup_range": 0.00012470032702840506, - "min_markup": 0.0012655947852999176, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02705624112123542, - "rentry_pprice_dist_wallet_exposure_weighting": 4.460736562825172, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CTSIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CTSIUSDT.json deleted file mode 100644 index 3ee590409..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9171505053084688, - "ema_span_0": 775.9584552785303, - "ema_span_1": 762.0483829165494, - "enabled": true, - "initial_eprice_ema_dist": 0.0028462500165785934, - "initial_qty_pct": 0.011654163150148599, - "markup_range": 0.0024565804815127193, - "min_markup": 0.003873184512277312, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03589457840207292, - "rentry_pprice_dist_wallet_exposure_weighting": 5.803669925118121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.482851717000093, - "ema_span_0": 571.7298609554182, - "ema_span_1": 567.4171654000248, - "enabled": true, - "initial_eprice_ema_dist": -0.002244722397310753, - "initial_qty_pct": 0.010672275315589423, - "markup_range": 0.002810087037224821, - "min_markup": 0.0015447564266615208, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03414244888345795, - "rentry_pprice_dist_wallet_exposure_weighting": 6.460871911319202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CVCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CVCUSDT.json deleted file mode 100644 index 960fecaec..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1076557094684094, - "ema_span_0": 1292.3950982720557, - "ema_span_1": 1303.7317851295784, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010106393546435541, - "markup_range": 0.0013758356909457474, - "min_markup": 0.003938501371448148, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029858901316643576, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9607394449103155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CVXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CVXUSDT.json deleted file mode 100644 index 40f96d106..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0661212597199805, - "ema_span_0": 871.4868069935842, - "ema_span_1": 813.9875449016666, - "enabled": true, - "initial_eprice_ema_dist": -0.006249229179967419, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.0004471682865097875, - "min_markup": 0.002873043973521388, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9433838150301748, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8552521251115799, - "ema_span_0": 881.8768472139141, - "ema_span_1": 1308.9789986596709, - "enabled": true, - "initial_eprice_ema_dist": 0.0014424721938682199, - "initial_qty_pct": 0.007341584983861241, - "markup_range": 0.0011391099460800324, - "min_markup": 0.0033575290887672585, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02411353599686237, - "rentry_pprice_dist_wallet_exposure_weighting": 0.016370498522027762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/CYBERUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/CYBERUSDT.json deleted file mode 100644 index 0386d0201..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4094488998407715, - "ema_span_0": 530.7428384503781, - "ema_span_1": 550.1784301353707, - "enabled": true, - "initial_eprice_ema_dist": -0.008676240328527514, - "initial_qty_pct": 0.006707452888356948, - "markup_range": 0.0010804828151730124, - "min_markup": 0.0025685134759434857, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014077064162697378, - "rentry_pprice_dist_wallet_exposure_weighting": 6.201142864457871, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DARUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DARUSDT.json deleted file mode 100644 index b7624c0ab..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DASHUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DASHUSDT.json deleted file mode 100644 index efef1c4fd..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.503221399517053, - "ema_span_0": 772.5270126408454, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839845370164784, - "initial_qty_pct": 0.019264097631752998, - "markup_range": 0.0023841014114603385, - "min_markup": 0.006781622231637198, - "n_close_orders": 11, - "rentry_pprice_dist": 0.040467131003034236, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9693844931559155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DEFIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DEFIUSDT.json deleted file mode 100644 index 74cbbf115..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3041899923350854, - "ema_span_0": 783.2450577160282, - "ema_span_1": 1053.125814629568, - "enabled": true, - "initial_eprice_ema_dist": -0.0027442472611074425, - "initial_qty_pct": 0.00834032289474573, - "markup_range": 0.0044280260165221385, - "min_markup": 0.009828620875824397, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03233830482916124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9521186605724256, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DENTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DENTUSDT.json deleted file mode 100644 index adac890a1..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4643365964940367, - "ema_span_0": 729.2702752105544, - "ema_span_1": 1403.3147068382307, - "enabled": true, - "initial_eprice_ema_dist": -0.0059971722275662725, - "initial_qty_pct": 0.006434926666897879, - "markup_range": 0.004826308788047463, - "min_markup": 0.005514797026403315, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029947605765173253, - "rentry_pprice_dist_wallet_exposure_weighting": 5.016058988308593, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8997378009740093, - "ema_span_0": 731.9588132430131, - "ema_span_1": 1090.5107923332812, - "enabled": true, - "initial_eprice_ema_dist": 0.0012857197261006146, - "initial_qty_pct": 0.007879729684468104, - "markup_range": 0.0034081212210928754, - "min_markup": 0.004834449707714919, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02869541164113038, - "rentry_pprice_dist_wallet_exposure_weighting": 4.705703406735313, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DGBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DGBUSDT.json deleted file mode 100644 index 87d96a8a2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6391657190404803, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 1051.9291608232522, - "enabled": true, - "initial_eprice_ema_dist": -0.003434137195533823, - "initial_qty_pct": 0.009774240886665495, - "markup_range": 0.0, - "min_markup": 0.0036656766747250346, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018414037561483947, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DODOXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DODOXUSDT.json deleted file mode 100644 index da7f12949..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2097430882859501, - "ema_span_0": 1242.7247585534535, - "ema_span_1": 1239.1449070996134, - "enabled": true, - "initial_eprice_ema_dist": -0.0003383789949880434, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.02146401728672294, - "min_markup": 0.001986936784191778, - "n_close_orders": 14, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DOGEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DOGEUSDT.json deleted file mode 100644 index 865799b41..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1069554768571406, - "ema_span_0": 668.7564435404682, - "ema_span_1": 452.3452063216382, - "enabled": true, - "initial_eprice_ema_dist": -0.003741168510627742, - "initial_qty_pct": 0.013895549788819265, - "markup_range": 0.0025767939663914143, - "min_markup": 0.00484273852801616, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02607187900217411, - "rentry_pprice_dist_wallet_exposure_weighting": 1.915495067123377, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.692436242631705, - "ema_span_0": 1418.3853844512462, - "ema_span_1": 1417.0759695955728, - "enabled": true, - "initial_eprice_ema_dist": 0.0019215643015539356, - "initial_qty_pct": 0.013684485016372263, - "markup_range": 0.00237887308118106, - "min_markup": 0.0014794427966753993, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030320998817705086, - "rentry_pprice_dist_wallet_exposure_weighting": 7.766346170867457, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DOTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DOTUSDT.json deleted file mode 100644 index 84fe45443..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9370170670316159, - "ema_span_0": 961.9644106354748, - "ema_span_1": 942.1770080408999, - "enabled": true, - "initial_eprice_ema_dist": -0.009555012496613655, - "initial_qty_pct": 0.014120898357379112, - "markup_range": 0.001973625116494333, - "min_markup": 0.002751196941795774, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025497189266256784, - "rentry_pprice_dist_wallet_exposure_weighting": 5.47493115845817, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DUSKUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DUSKUSDT.json deleted file mode 100644 index 6c0e41067..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6862259336459262, - "ema_span_0": 1109.3310320534958, - "ema_span_1": 477.15132300439143, - "enabled": true, - "initial_eprice_ema_dist": -0.009105244413307135, - "initial_qty_pct": 0.012697680183739304, - "markup_range": 0.002420323227669815, - "min_markup": 0.0036091761047438217, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04368376393736118, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6843364150871896, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/DYDXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/DYDXUSDT.json deleted file mode 100644 index e06acc31a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9910548357487567, - "ema_span_0": 1372.1029988069888, - "ema_span_1": 877.0909130988211, - "enabled": true, - "initial_eprice_ema_dist": -1.6541115850042524e-05, - "initial_qty_pct": 0.011652375349125723, - "markup_range": 0.0010581556564322023, - "min_markup": 0.0029223694848432603, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02992948423627017, - "rentry_pprice_dist_wallet_exposure_weighting": 5.820869047512101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7555034910699492, - "ema_span_0": 1009.6385573743898, - "ema_span_1": 846.1094788838165, - "enabled": true, - "initial_eprice_ema_dist": 0.002542522061527669, - "initial_qty_pct": 0.011076620407965625, - "markup_range": 0.001958452879409268, - "min_markup": 0.0030131044712630637, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043021534105652355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.561426879559992, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/EDUUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/EDUUSDT.json deleted file mode 100644 index 48e9fa1a9..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.396905198984233, - "ema_span_0": 944.029003724747, - "ema_span_1": 1101.4181700261593, - "enabled": true, - "initial_eprice_ema_dist": -0.002900365914467947, - "initial_qty_pct": 0.006472923121550627, - "markup_range": 0.012612255304370108, - "min_markup": 0.0037362855421466767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03797875765139709, - "rentry_pprice_dist_wallet_exposure_weighting": 4.480393235712382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/EGLDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/EGLDUSDT.json deleted file mode 100644 index 328ae4a0b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5780310437272872, - "ema_span_0": 1308.8800615342548, - "ema_span_1": 525.9405487240236, - "enabled": true, - "initial_eprice_ema_dist": -0.0002180874597450573, - "initial_qty_pct": 0.016121921803408424, - "markup_range": 0.004474204859269099, - "min_markup": 0.001986936784191778, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02347619830476308, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9787419061335583, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6602561799610607, - "ema_span_0": 641.8208644854974, - "ema_span_1": 704.9528523218135, - "enabled": true, - "initial_eprice_ema_dist": 0.002983547174597548, - "initial_qty_pct": 0.010601689149129413, - "markup_range": 0.002362883678902643, - "min_markup": 0.0034672288826655575, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0417474559465164, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490968841725158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ENJUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ENJUSDT.json deleted file mode 100644 index c694494b4..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4316525150338988, - "ema_span_0": 1386.9860405497996, - "ema_span_1": 1066.421825844669, - "enabled": true, - "initial_eprice_ema_dist": -0.00463779094493211, - "initial_qty_pct": 0.013021908026624826, - "markup_range": 0.00325841430462686, - "min_markup": 0.0021054551959539037, - "n_close_orders": 4, - "rentry_pprice_dist": 0.022929961635799224, - "rentry_pprice_dist_wallet_exposure_weighting": 8.393719275000857, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.98349363536244, - "ema_span_1": 481.3356055662394, - "enabled": true, - "initial_eprice_ema_dist": -0.007907591145269248, - "initial_qty_pct": 0.006943527134759872, - "markup_range": 0.004328707812689585, - "min_markup": 0.004581427099945752, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01905163515245102, - "rentry_pprice_dist_wallet_exposure_weighting": 3.783496814982404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ENSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ENSUSDT.json deleted file mode 100644 index 673f445e1..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9539844792731716, - "ema_span_0": 1348.1998026290053, - "ema_span_1": 1350.029161035143, - "enabled": true, - "initial_eprice_ema_dist": -0.0052411622531953325, - "initial_qty_pct": 0.009482244190400883, - "markup_range": 0.006232659497564574, - "min_markup": 0.005169603139400304, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03736981272317089, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.503221399517053, - "ema_span_0": 772.5270126408454, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839845370164784, - "initial_qty_pct": 0.019264097631752998, - "markup_range": 0.0023841014114603385, - "min_markup": 0.006781622231637198, - "n_close_orders": 11, - "rentry_pprice_dist": 0.040467131003034236, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9693844931559155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/EOSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/EOSUSDT.json deleted file mode 100644 index d6f6bf242..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9171505053084688, - "ema_span_0": 775.9584552785303, - "ema_span_1": 762.0483829165494, - "enabled": true, - "initial_eprice_ema_dist": 0.0028462500165785934, - "initial_qty_pct": 0.011654163150148599, - "markup_range": 0.0024565804815127193, - "min_markup": 0.003873184512277312, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03589457840207292, - "rentry_pprice_dist_wallet_exposure_weighting": 5.803669925118121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.290489689461966, - "ema_span_0": 1440, - "ema_span_1": 1182.8988028928761, - "enabled": true, - "initial_eprice_ema_dist": -3.480624378444575e-05, - "initial_qty_pct": 0.01868555451687537, - "markup_range": 0.0049838109270830796, - "min_markup": 0.002034199252922289, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03951135446591533, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9949751216671086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ETCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ETCUSDT.json deleted file mode 100644 index 6072f3318..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0351783878301706, - "ema_span_0": 856.1875238553667, - "ema_span_1": 1343.2793019762435, - "enabled": true, - "initial_eprice_ema_dist": -0.003919861496725161, - "initial_qty_pct": 0.010702128889112886, - "markup_range": 0.0009841694091845433, - "min_markup": 0.001297125428497705, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018435997170025517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9193130248727066, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.482851717000093, - "ema_span_0": 571.7298609554182, - "ema_span_1": 567.4171654000248, - "enabled": true, - "initial_eprice_ema_dist": -0.002244722397310753, - "initial_qty_pct": 0.010672275315589423, - "markup_range": 0.002810087037224821, - "min_markup": 0.0015447564266615208, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03414244888345795, - "rentry_pprice_dist_wallet_exposure_weighting": 6.460871911319202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ETHUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ETHUSDT.json deleted file mode 100644 index 2b688771b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.663619264218057, - "ema_span_0": 1009.2231178101247, - "ema_span_1": 1171.5772535528115, - "enabled": true, - "initial_eprice_ema_dist": 0.0014240351018697383, - "initial_qty_pct": 0.006417978673470456, - "markup_range": 0.002361719677551574, - "min_markup": 0.002555139835373728, - "n_close_orders": 13, - "rentry_pprice_dist": 0.015816291209501347, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4673060772958726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5201668901180903, - "ema_span_0": 707.2250848373449, - "ema_span_1": 716.1105828582283, - "enabled": true, - "initial_eprice_ema_dist": 0.0027096615049866995, - "initial_qty_pct": 0.0065485449384614074, - "markup_range": 0.0011620678195813701, - "min_markup": 0.002783751905608409, - "n_close_orders": 13, - "rentry_pprice_dist": 0.013406032799101379, - "rentry_pprice_dist_wallet_exposure_weighting": 5.142204170273534, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FETUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FETUSDT.json deleted file mode 100644 index fe612405f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.16766415745902696, - "ema_span_0": 744.1620140794424, - "ema_span_1": 854.1789986068621, - "enabled": true, - "initial_eprice_ema_dist": -0.007008707404626438, - "initial_qty_pct": 0.00787542703344586, - "markup_range": 0.0010617059347405387, - "min_markup": 0.004025487585506566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.01709526488190027, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6099942021467453, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.503221399517053, - "ema_span_0": 772.5270126408454, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839845370164784, - "initial_qty_pct": 0.019264097631752998, - "markup_range": 0.0023841014114603385, - "min_markup": 0.006781622231637198, - "n_close_orders": 11, - "rentry_pprice_dist": 0.040467131003034236, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9693844931559155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FILUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FILUSDT.json deleted file mode 100644 index 29d99fafc..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6816441804997536, - "ema_span_0": 1207.002762689484, - "ema_span_1": 1215.7543977627083, - "enabled": true, - "initial_eprice_ema_dist": 0.002844318472241852, - "initial_qty_pct": 0.013546341705982687, - "markup_range": 0.001297765363145428, - "min_markup": 0.0042246138230332434, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01593128187208366, - "rentry_pprice_dist_wallet_exposure_weighting": 7.519025567180068, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9816750005613653, - "ema_span_0": 1343.0840284833462, - "ema_span_1": 1433.3384671326917, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012726350096647744, - "markup_range": 0.003708085932055071, - "min_markup": 0.0019460025801372946, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04997483217140227, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5184360991196204, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FLMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FLMUSDT.json deleted file mode 100644 index d61ad652f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.37081998520411, - "ema_span_0": 480.68828870360926, - "ema_span_1": 993.450604082768, - "enabled": true, - "initial_eprice_ema_dist": -0.0007890331837663922, - "initial_qty_pct": 0.005773972623103771, - "markup_range": 0.004643118766403271, - "min_markup": 0.008220911846281107, - "n_close_orders": 7, - "rentry_pprice_dist": 0.043687428951513785, - "rentry_pprice_dist_wallet_exposure_weighting": 7.541267647352387, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FLOWUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FLOWUSDT.json deleted file mode 100644 index 24da6cf43..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FOOTBALLUSDT.json deleted file mode 100644 index 87d96a8a2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6391657190404803, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 1051.9291608232522, - "enabled": true, - "initial_eprice_ema_dist": -0.003434137195533823, - "initial_qty_pct": 0.009774240886665495, - "markup_range": 0.0, - "min_markup": 0.0036656766747250346, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018414037561483947, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FRONTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FRONTUSDT.json deleted file mode 100644 index 84d617bf1..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FRONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.663619264218057, - "ema_span_0": 1009.2231178101247, - "ema_span_1": 1171.5772535528115, - "enabled": true, - "initial_eprice_ema_dist": 0.0014240351018697383, - "initial_qty_pct": 0.006417978673470456, - "markup_range": 0.002361719677551574, - "min_markup": 0.002555139835373728, - "n_close_orders": 13, - "rentry_pprice_dist": 0.015816291209501347, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4673060772958726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FTMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FTMUSDT.json deleted file mode 100644 index 1d74d7700..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3424248226444024, - "ema_span_0": 1131.6414829955768, - "ema_span_1": 1137.7868339695306, - "enabled": true, - "initial_eprice_ema_dist": -0.0003383789949880434, - "initial_qty_pct": 0.005, - "markup_range": 0.0014265648440583618, - "min_markup": 0.0054097356387039055, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0370937141221393, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1534063329544186, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7555034910699492, - "ema_span_0": 1009.6385573743898, - "ema_span_1": 846.1094788838165, - "enabled": true, - "initial_eprice_ema_dist": 0.002542522061527669, - "initial_qty_pct": 0.011076620407965625, - "markup_range": 0.001958452879409268, - "min_markup": 0.0030131044712630637, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043021534105652355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.561426879559992, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FTTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FTTUSDT.json deleted file mode 100644 index cb67f72a7..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/FXSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/FXSUSDT.json deleted file mode 100644 index 1cf897b19..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GALAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GALAUSDT.json deleted file mode 100644 index d55cd4090..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1081120682023222, - "ema_span_0": 724.3842967342677, - "ema_span_1": 687.6058181393267, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01478164269149576, - "markup_range": 0.0012230031616078149, - "min_markup": 0.0033166480459192963, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025252828823763254, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2467143756229664, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GALUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GALUSDT.json deleted file mode 100644 index 93dd70bd8..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6391657190404803, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 1051.9291608232522, - "enabled": true, - "initial_eprice_ema_dist": -0.003434137195533823, - "initial_qty_pct": 0.009774240886665495, - "markup_range": 0.0, - "min_markup": 0.0036656766747250346, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018414037561483947, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GLMRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GLMRUSDT.json deleted file mode 100644 index 952c1a54c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GLMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GMTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GMTUSDT.json deleted file mode 100644 index 94f312659..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9440504563496455, - "ema_span_0": 670.9984492428504, - "ema_span_1": 1382.5326523555161, - "enabled": true, - "initial_eprice_ema_dist": 0.0029664815346501497, - "initial_qty_pct": 0.007147325770208928, - "markup_range": 0.00011612873974285131, - "min_markup": 0.0028322952399753762, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04953091217010036, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1494709499633642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GMXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GMXUSDT.json deleted file mode 100644 index 18f2ce48c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6816441804997536, - "ema_span_0": 1207.002762689484, - "ema_span_1": 1215.7543977627083, - "enabled": true, - "initial_eprice_ema_dist": 0.002844318472241852, - "initial_qty_pct": 0.013546341705982687, - "markup_range": 0.001297765363145428, - "min_markup": 0.0042246138230332434, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01593128187208366, - "rentry_pprice_dist_wallet_exposure_weighting": 7.519025567180068, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2917787033497605, - "ema_span_0": 1344.9537971661955, - "ema_span_1": 436.4248240758233, - "enabled": true, - "initial_eprice_ema_dist": -0.004822333867779742, - "initial_qty_pct": 0.009453087771626114, - "markup_range": 0.001675059263184776, - "min_markup": 0.003995369493070447, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03099364507912738, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5924991535166688, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GRTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GRTUSDT.json deleted file mode 100644 index 45dbe6998..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1163429764822047, - "ema_span_0": 778.3852876266045, - "ema_span_1": 500.489378562041, - "enabled": true, - "initial_eprice_ema_dist": 9.633186356697778e-05, - "initial_qty_pct": 0.011345875019089045, - "markup_range": 0.00934743383066865, - "min_markup": 0.004405957869048295, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024405305943534922, - "rentry_pprice_dist_wallet_exposure_weighting": 4.326177773898883, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9499051479360794, - "ema_span_0": 622.1083373545156, - "ema_span_1": 1357.1605131698723, - "enabled": true, - "initial_eprice_ema_dist": -0.0052618939405264945, - "initial_qty_pct": 0.013970634422238976, - "markup_range": 0.007023294326105997, - "min_markup": 0.00536912115698267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03611137316591374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.263986724814306, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/GTCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/GTCUSDT.json deleted file mode 100644 index f15da2423..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25343745137797186, - "ema_span_0": 1209.799889267291, - "ema_span_1": 561.3024485228449, - "enabled": true, - "initial_eprice_ema_dist": -0.000868597903903903, - "initial_qty_pct": 0.006379959950152951, - "markup_range": 0.013174477175909452, - "min_markup": 0.004977617778157702, - "n_close_orders": 11, - "rentry_pprice_dist": 0.038213259567223795, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5024703156381913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HBARUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HBARUSDT.json deleted file mode 100644 index efb86bd13..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.378473873448455, - "ema_span_0": 1419.415992717671, - "ema_span_1": 1425.3336995458733, - "enabled": true, - "initial_eprice_ema_dist": -0.0034720739678111693, - "initial_qty_pct": 0.013020262270714017, - "markup_range": 0.006308995537425291, - "min_markup": 0.008740681269618428, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03127977576267941, - "rentry_pprice_dist_wallet_exposure_weighting": 5.201987827174355, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HFTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HFTUSDT.json deleted file mode 100644 index 40bdc8e92..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.448881720988132, - "ema_span_0": 786.4973354385297, - "ema_span_1": 568.5907714177035, - "enabled": true, - "initial_eprice_ema_dist": -0.007948850853725877, - "initial_qty_pct": 0.015241779725150294, - "markup_range": 0.004527416939159713, - "min_markup": 0.0031450463066079047, - "n_close_orders": 9, - "rentry_pprice_dist": 0.021619623432236366, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7363085512083494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HIFIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HIFIUSDT.json deleted file mode 100644 index f05ca798d..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HIFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.448881720988132, - "ema_span_0": 786.4973354385297, - "ema_span_1": 568.5907714177035, - "enabled": true, - "initial_eprice_ema_dist": -0.007948850853725877, - "initial_qty_pct": 0.015241779725150294, - "markup_range": 0.004527416939159713, - "min_markup": 0.0031450463066079047, - "n_close_orders": 9, - "rentry_pprice_dist": 0.021619623432236366, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7363085512083494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HIGHUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HIGHUSDT.json deleted file mode 100644 index a25ec7948..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9171505053084688, - "ema_span_0": 775.9584552785303, - "ema_span_1": 762.0483829165494, - "enabled": true, - "initial_eprice_ema_dist": 0.0028462500165785934, - "initial_qty_pct": 0.011654163150148599, - "markup_range": 0.0024565804815127193, - "min_markup": 0.003873184512277312, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03589457840207292, - "rentry_pprice_dist_wallet_exposure_weighting": 5.803669925118121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HNTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HNTUSDT.json deleted file mode 100644 index 2beb71532..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0661212597199805, - "ema_span_0": 871.4868069935842, - "ema_span_1": 813.9875449016666, - "enabled": true, - "initial_eprice_ema_dist": -0.006249229179967419, - "initial_qty_pct": 0.008090767985123839, - "markup_range": 0.0004471682865097875, - "min_markup": 0.002873043973521388, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030418465810469208, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9433838150301748, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9920603152790013, - "ema_span_0": 624.3931604244164, - "ema_span_1": 689.7922144458057, - "enabled": true, - "initial_eprice_ema_dist": -0.009672742672452812, - "initial_qty_pct": 0.005789752616114187, - "markup_range": 0.0014188872312999124, - "min_markup": 0.005218401406013735, - "n_close_orders": 14, - "rentry_pprice_dist": 0.056157995710625894, - "rentry_pprice_dist_wallet_exposure_weighting": 8.52765874089328, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HOOKUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HOOKUSDT.json deleted file mode 100644 index ee0dbcd5b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3187888384773676, - "ema_span_0": 453.1599018702678, - "ema_span_1": 739.39742060668, - "enabled": true, - "initial_eprice_ema_dist": -0.009980324583036323, - "initial_qty_pct": 0.010098513558446785, - "markup_range": 0.006207062074005397, - "min_markup": 0.001696536952026113, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02882694885290546, - "rentry_pprice_dist_wallet_exposure_weighting": 4.294854549490684, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/HOTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/HOTUSDT.json deleted file mode 100644 index e8c92b7f0..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.468715736273322, - "ema_span_0": 1242.7247585534535, - "ema_span_1": 1223.6888496162317, - "enabled": true, - "initial_eprice_ema_dist": 0.0029538022215272733, - "initial_qty_pct": 0.006156137732294706, - "markup_range": 0.003951995024452052, - "min_markup": 0.004286919084446604, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034170119694141285, - "rentry_pprice_dist_wallet_exposure_weighting": 2.552660595223331, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5534871384395967, - "ema_span_0": 497.72417068282743, - "ema_span_1": 402.4310180281065, - "enabled": true, - "initial_eprice_ema_dist": -0.006937579282307286, - "initial_qty_pct": 0.019998967246795736, - "markup_range": 0.004075980963864618, - "min_markup": 0.008206347744760006, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02201269981773479, - "rentry_pprice_dist_wallet_exposure_weighting": 8.86096231397286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ICPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ICPUSDT.json deleted file mode 100644 index 9f54203ea..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2790052190519028, - "ema_span_0": 720.8524682905892, - "ema_span_1": 1216.5359815368379, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011447479493287964, - "markup_range": 0.005150514141701578, - "min_markup": 0.005178192586461822, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03407328003681193, - "rentry_pprice_dist_wallet_exposure_weighting": 8.716160614861298, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ICXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ICXUSDT.json deleted file mode 100644 index 599e8a2d3..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4924103298895497, - "ema_span_0": 1435.6248632028244, - "ema_span_1": 1281.8077876186157, - "enabled": true, - "initial_eprice_ema_dist": -0.0030841936613471383, - "initial_qty_pct": 0.013726934435758566, - "markup_range": 0.0011017226348451418, - "min_markup": 0.00367146705463104, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0395894695116373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3240390856851025, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6862259336459262, - "ema_span_0": 1109.3310320534958, - "ema_span_1": 477.15132300439143, - "enabled": true, - "initial_eprice_ema_dist": -0.009105244413307135, - "initial_qty_pct": 0.012697680183739304, - "markup_range": 0.002420323227669815, - "min_markup": 0.0036091761047438217, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04368376393736118, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6843364150871896, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/IDEXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/IDEXUSDT.json deleted file mode 100644 index bb156b9b1..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2916212898447389, - "ema_span_0": 558.5924969044192, - "ema_span_1": 609.0076501189745, - "enabled": true, - "initial_eprice_ema_dist": -0.008391773292204903, - "initial_qty_pct": 0.019602929367910492, - "markup_range": 0.010665910178031772, - "min_markup": 0.002155920567569581, - "n_close_orders": 15, - "rentry_pprice_dist": 0.037429964583052214, - "rentry_pprice_dist_wallet_exposure_weighting": 1.059012227840908, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/IDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/IDUSDT.json deleted file mode 100644 index 59304142d..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9539844792731716, - "ema_span_0": 1348.1998026290053, - "ema_span_1": 1350.029161035143, - "enabled": true, - "initial_eprice_ema_dist": -0.0052411622531953325, - "initial_qty_pct": 0.009482244190400883, - "markup_range": 0.006232659497564574, - "min_markup": 0.005169603139400304, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03736981272317089, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9566718442697097, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/IMXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/IMXUSDT.json deleted file mode 100644 index 178e27c38..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 680.5849726062776, - "ema_span_1": 679.128443782459, - "enabled": true, - "initial_eprice_ema_dist": -0.007534735788528065, - "initial_qty_pct": 0.009551468568882514, - "markup_range": 0.00405055665439011, - "min_markup": 0.005771584786557487, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029718809432778555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7040336767318629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5299612453809237, - "ema_span_0": 859.2565897925177, - "ema_span_1": 783.05228960208, - "enabled": true, - "initial_eprice_ema_dist": 0.00294931151662969, - "initial_qty_pct": 0.011234956298095757, - "markup_range": 0.004380430914877882, - "min_markup": 0.00340125491041518, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04740482228064186, - "rentry_pprice_dist_wallet_exposure_weighting": 6.039789033058094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/INJUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/INJUSDT.json deleted file mode 100644 index d83ff9d6b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6816441804997536, - "ema_span_0": 1207.002762689484, - "ema_span_1": 1215.7543977627083, - "enabled": true, - "initial_eprice_ema_dist": 0.002844318472241852, - "initial_qty_pct": 0.013546341705982687, - "markup_range": 0.001297765363145428, - "min_markup": 0.0042246138230332434, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01593128187208366, - "rentry_pprice_dist_wallet_exposure_weighting": 7.519025567180068, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0230013332526442, - "ema_span_0": 948.6876780252531, - "ema_span_1": 1287.560466844553, - "enabled": true, - "initial_eprice_ema_dist": 0.0012379335212399359, - "initial_qty_pct": 0.013450735419898477, - "markup_range": 0.003736597199601087, - "min_markup": 0.005822176662193961, - "n_close_orders": 14, - "rentry_pprice_dist": 0.035598806580745095, - "rentry_pprice_dist_wallet_exposure_weighting": 2.203668366035464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/IOSTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/IOSTUSDT.json deleted file mode 100644 index 6bbcfd14d..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 1176.6244975314837, - "ema_span_1": 793.3532457136675, - "enabled": true, - "initial_eprice_ema_dist": -0.0016808656541925846, - "initial_qty_pct": 0.019362262207065287, - "markup_range": 0.004809636962814767, - "min_markup": 0.002645647081576622, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04002485996323371, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4396006431557236, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35377525620612843, - "ema_span_0": 1280.8008886056546, - "ema_span_1": 734.9320679117058, - "enabled": true, - "initial_eprice_ema_dist": -0.008458349194505358, - "initial_qty_pct": 0.006974778221559435, - "markup_range": 0.002964010935049224, - "min_markup": 0.004887013163173188, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023413318899461338, - "rentry_pprice_dist_wallet_exposure_weighting": 7.745721191751236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/IOTAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/IOTAUSDT.json deleted file mode 100644 index b0e9a8aed..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3424248226444024, - "ema_span_0": 1131.6414829955768, - "ema_span_1": 1137.7868339695306, - "enabled": true, - "initial_eprice_ema_dist": -0.0003383789949880434, - "initial_qty_pct": 0.005, - "markup_range": 0.0014265648440583618, - "min_markup": 0.0054097356387039055, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0370937141221393, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1534063329544186, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0104426941410156, - "ema_span_0": 417.6321452285503, - "ema_span_1": 541.4180739658083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029984219177280787, - "initial_qty_pct": 0.013363031751006421, - "markup_range": 7.010573397721282e-05, - "min_markup": 0.0028074393585992385, - "n_close_orders": 6, - "rentry_pprice_dist": 0.023684594715020553, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9646097045738005, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/IOTXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/IOTXUSDT.json deleted file mode 100644 index cf6eff9a3..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/JASMYUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/JASMYUSDT.json deleted file mode 100644 index ec5ebe6df..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9461984127653197, - "ema_span_0": 876.1010914259034, - "ema_span_1": 1411.1899224254166, - "enabled": true, - "initial_eprice_ema_dist": 0.00206223743229542, - "initial_qty_pct": 0.015066384831184559, - "markup_range": 0.0015641017368793744, - "min_markup": 0.005669014125737904, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030402515021544733, - "rentry_pprice_dist_wallet_exposure_weighting": 0.037463412375512206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/JOEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/JOEUSDT.json deleted file mode 100644 index 67ac8b2ed..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10019471182940975, - "ema_span_0": 467.50495335874245, - "ema_span_1": 501.072027143022, - "enabled": true, - "initial_eprice_ema_dist": 0.0027875175110054786, - "initial_qty_pct": 0.013263121329687525, - "markup_range": 0.003308486630147833, - "min_markup": 0.005932159347895808, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04602199135656369, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00047978102658506215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21348478501226764, - "ema_span_0": 578.6053110911937, - "ema_span_1": 536.3687046086876, - "enabled": true, - "initial_eprice_ema_dist": 0.0019114755355438492, - "initial_qty_pct": 0.008086298731652026, - "markup_range": 0.005795173062738924, - "min_markup": 0.0099925547949804, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02896875662863217, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8234525007833575, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/KAVAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/KAVAUSDT.json deleted file mode 100644 index cb0a532a8..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9981343043546285, - "ema_span_0": 616.1697130798476, - "ema_span_1": 1204.4785222119897, - "enabled": true, - "initial_eprice_ema_dist": -0.003286700364198224, - "initial_qty_pct": 0.011197307005157007, - "markup_range": 0.0005545569384790453, - "min_markup": 0.0017689918321148578, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04967264374776934, - "rentry_pprice_dist_wallet_exposure_weighting": 4.687857504261405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.051721682840642, - "ema_span_0": 1360.642957935954, - "ema_span_1": 1074.7246305737328, - "enabled": true, - "initial_eprice_ema_dist": 0.0008969338667493432, - "initial_qty_pct": 0.01577818768030297, - "markup_range": 0.005534066319481284, - "min_markup": 0.003995770267067804, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04497421082218448, - "rentry_pprice_dist_wallet_exposure_weighting": 5.627273643280507, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/KEYUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/KEYUSDT.json deleted file mode 100644 index b0dd32477..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8317672831997515, - "ema_span_0": 1379.0305224486792, - "ema_span_1": 1315.8139430261444, - "enabled": true, - "initial_eprice_ema_dist": -0.005556369161777596, - "initial_qty_pct": 0.014696673084211543, - "markup_range": 0.004126443243319796, - "min_markup": 0.0034499363711920444, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024337462617835055, - "rentry_pprice_dist_wallet_exposure_weighting": 0.40409688143295186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/KLAYUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/KLAYUSDT.json deleted file mode 100644 index a8d6cd0d3..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7548758837650864, - "ema_span_0": 1191.9312652010371, - "ema_span_1": 1355.0679887715685, - "enabled": true, - "initial_eprice_ema_dist": 0.000943229176790928, - "initial_qty_pct": 0.00992020481729889, - "markup_range": 0.003709573741304125, - "min_markup": 0.001454596543327943, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025806478096145762, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764646147703523, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/KNCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/KNCUSDT.json deleted file mode 100644 index 28dd4c729..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/KSMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/KSMUSDT.json deleted file mode 100644 index 37c8ce137..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.66657615106925, - "ema_span_0": 400, - "ema_span_1": 612.5008810265405, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010565388433706784, - "markup_range": 0.003956688754641532, - "min_markup": 0.0010088108264537318, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04083060314602456, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2864124271191457, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0401834470763212, - "ema_span_0": 668.3243217465639, - "ema_span_1": 471.55981714672646, - "enabled": true, - "initial_eprice_ema_dist": 0.002462550599710681, - "initial_qty_pct": 0.013241687755352895, - "markup_range": 0.004692154635557773, - "min_markup": 0.0031629465714315174, - "n_close_orders": 11, - "rentry_pprice_dist": 0.024921007690813107, - "rentry_pprice_dist_wallet_exposure_weighting": 2.523415804189766, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LDOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LDOUSDT.json deleted file mode 100644 index 1b5d43309..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7548758837650864, - "ema_span_0": 1191.9312652010371, - "ema_span_1": 1355.0679887715685, - "enabled": true, - "initial_eprice_ema_dist": 0.000943229176790928, - "initial_qty_pct": 0.00992020481729889, - "markup_range": 0.003709573741304125, - "min_markup": 0.001454596543327943, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025806478096145762, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764646147703523, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7465097299671224, - "ema_span_0": 1229.4937379669102, - "ema_span_1": 1339.649707108857, - "enabled": true, - "initial_eprice_ema_dist": -0.006967989062541248, - "initial_qty_pct": 0.006706950324019554, - "markup_range": 0.0008049961427947836, - "min_markup": 0.009760061711514244, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04125837059356699, - "rentry_pprice_dist_wallet_exposure_weighting": 7.373845083350206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LEVERUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LEVERUSDT.json deleted file mode 100644 index 60a9fc3bd..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9981343043546285, - "ema_span_0": 616.1697130798476, - "ema_span_1": 1204.4785222119897, - "enabled": true, - "initial_eprice_ema_dist": -0.003286700364198224, - "initial_qty_pct": 0.011197307005157007, - "markup_range": 0.0005545569384790453, - "min_markup": 0.0017689918321148578, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04967264374776934, - "rentry_pprice_dist_wallet_exposure_weighting": 4.687857504261405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LINAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LINAUSDT.json deleted file mode 100644 index 53146a3cb..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4997342797101396, - "ema_span_0": 684.8138383006407, - "ema_span_1": 1239.1449070996134, - "enabled": true, - "initial_eprice_ema_dist": -0.005588190728916151, - "initial_qty_pct": 0.015121748707332572, - "markup_range": 0.005599073628974565, - "min_markup": 0.005240420265385149, - "n_close_orders": 2, - "rentry_pprice_dist": 0.05161640380822091, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3028660432971493, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4098363261430227, - "ema_span_0": 897.4371476951306, - "ema_span_1": 1001.8878651585367, - "enabled": true, - "initial_eprice_ema_dist": 0.0018525341832203086, - "initial_qty_pct": 0.006665336296469922, - "markup_range": 0.00937826196110776, - "min_markup": 0.009832943480030217, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05046959415794507, - "rentry_pprice_dist_wallet_exposure_weighting": 8.441378548302362, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LINKUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LINKUSDT.json deleted file mode 100644 index bfd7a6cd5..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LITUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LITUSDT.json deleted file mode 100644 index 4f5f73795..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5980421145344694, - "ema_span_0": 1012.1361978101593, - "ema_span_1": 1369.7247598662195, - "enabled": true, - "initial_eprice_ema_dist": -0.0007152561960186003, - "initial_qty_pct": 0.005746446568450588, - "markup_range": 0.0034168661522610464, - "min_markup": 0.00491659365917792, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04617673818903448, - "rentry_pprice_dist_wallet_exposure_weighting": 3.366260302660422, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.25212684674431, - "ema_span_0": 1236.0061866226306, - "ema_span_1": 1120.9424351551172, - "enabled": true, - "initial_eprice_ema_dist": -0.008266509548968737, - "initial_qty_pct": 0.016548551367792173, - "markup_range": 0.013242923680041872, - "min_markup": 0.003848859172032385, - "n_close_orders": 4, - "rentry_pprice_dist": 0.034307040140498894, - "rentry_pprice_dist_wallet_exposure_weighting": 7.4110207686999106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LPTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LPTUSDT.json deleted file mode 100644 index 6a819919b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3371466143965313, - "ema_span_0": 1087.6046787389146, - "ema_span_1": 1375.8236443434478, - "enabled": true, - "initial_eprice_ema_dist": -0.0056029314032308075, - "initial_qty_pct": 0.011213071705653516, - "markup_range": 0.002603946800314544, - "min_markup": 0.005178835176920965, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03826562236454964, - "rentry_pprice_dist_wallet_exposure_weighting": 8.13841305577217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LQTYUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LQTYUSDT.json deleted file mode 100644 index ae5929508..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.341754829883286, - "ema_span_0": 1381.696357194486, - "ema_span_1": 898.3018642104006, - "enabled": true, - "initial_eprice_ema_dist": -0.007502246912564987, - "initial_qty_pct": 0.008190405753175794, - "markup_range": 0.001181834027785448, - "min_markup": 0.005822096880760171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04401027773725582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6448002396478179, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5534871384395967, - "ema_span_0": 497.72417068282743, - "ema_span_1": 402.4310180281065, - "enabled": true, - "initial_eprice_ema_dist": -0.006937579282307286, - "initial_qty_pct": 0.019998967246795736, - "markup_range": 0.004075980963864618, - "min_markup": 0.008206347744760006, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02201269981773479, - "rentry_pprice_dist_wallet_exposure_weighting": 8.86096231397286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LRCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LRCUSDT.json deleted file mode 100644 index 1dfa9fa3c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8344579615043264, - "ema_span_0": 1297.868968332399, - "ema_span_1": 1335.4096996861251, - "enabled": true, - "initial_eprice_ema_dist": -0.0025933602981439386, - "initial_qty_pct": 0.016904235207444374, - "markup_range": 0.0017135574434488244, - "min_markup": 0.005284610082813167, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02825134582431613, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0176789221671316, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9252689724179658, - "ema_span_0": 757.2148671061719, - "ema_span_1": 1279.2011497945443, - "enabled": true, - "initial_eprice_ema_dist": -0.0007325362826606098, - "initial_qty_pct": 0.016260177169856657, - "markup_range": 0.002917620023089104, - "min_markup": 0.0055176800794485, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05400845847640049, - "rentry_pprice_dist_wallet_exposure_weighting": 5.814090079994175, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LTCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LTCUSDT.json deleted file mode 100644 index fc5f65066..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1081120682023222, - "ema_span_0": 724.3842967342677, - "ema_span_1": 687.6058181393267, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01478164269149576, - "markup_range": 0.0012230031616078149, - "min_markup": 0.0033166480459192963, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025252828823763254, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2467143756229664, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8552521251115799, - "ema_span_0": 881.8768472139141, - "ema_span_1": 1308.9789986596709, - "enabled": true, - "initial_eprice_ema_dist": 0.0014424721938682199, - "initial_qty_pct": 0.007341584983861241, - "markup_range": 0.0011391099460800324, - "min_markup": 0.0033575290887672585, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02411353599686237, - "rentry_pprice_dist_wallet_exposure_weighting": 0.016370498522027762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/LUNA2USDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/LUNA2USDT.json deleted file mode 100644 index 5cf292b96..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15046741285088064, - "ema_span_0": 736.7203910497747, - "ema_span_1": 596.951172850221, - "enabled": true, - "initial_eprice_ema_dist": -0.009364199048624611, - "initial_qty_pct": 0.011606679451066481, - "markup_range": 0.003668172592159496, - "min_markup": 0.0024972871558696804, - "n_close_orders": 15, - "rentry_pprice_dist": 0.015417226843163254, - "rentry_pprice_dist_wallet_exposure_weighting": 9.009522109968897, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MAGICUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MAGICUSDT.json deleted file mode 100644 index 454864310..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21121918030792172, - "ema_span_0": 721.8896248656592, - "ema_span_1": 1360.6130392354266, - "enabled": true, - "initial_eprice_ema_dist": -0.007330703523834837, - "initial_qty_pct": 0.01289300914932402, - "markup_range": 0.0032900040213383356, - "min_markup": 0.007917111424929492, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03911008496356426, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5842375396326758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MANAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MANAUSDT.json deleted file mode 100644 index cf1e2942d..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MASKUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MASKUSDT.json deleted file mode 100644 index 438eb1aeb..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9620860718857802, - "ema_span_0": 791.3031842348479, - "ema_span_1": 1387.1962962780071, - "enabled": true, - "initial_eprice_ema_dist": 0.0029710000304895273, - "initial_qty_pct": 0.005584090472977711, - "markup_range": 0.00011421390958197202, - "min_markup": 0.0017914627562805843, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05360531489608533, - "rentry_pprice_dist_wallet_exposure_weighting": 7.8830810004983505, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MATICUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MATICUSDT.json deleted file mode 100644 index ec9d10a7f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5127191074644122, - "ema_span_0": 1209.0752348602116, - "ema_span_1": 1245.936047074045, - "enabled": true, - "initial_eprice_ema_dist": -0.00783831177808704, - "initial_qty_pct": 0.007646228817315402, - "markup_range": 0.005292446878475193, - "min_markup": 0.003756369238441901, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03361823663661565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16049418705746993, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MAVUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MAVUSDT.json deleted file mode 100644 index 0e102be8f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2214462657948828, - "ema_span_0": 1086.0872597938728, - "ema_span_1": 1100.4810601110871, - "enabled": true, - "initial_eprice_ema_dist": 0.0003789756160626287, - "initial_qty_pct": 0.010733817066611489, - "markup_range": 0.011650383667415184, - "min_markup": 0.007445882759028696, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03980909672342595, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0631334907892014, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MDTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MDTUSDT.json deleted file mode 100644 index 7a3712686..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2917787033497605, - "ema_span_0": 1344.9537971661955, - "ema_span_1": 436.4248240758233, - "enabled": true, - "initial_eprice_ema_dist": -0.004822333867779742, - "initial_qty_pct": 0.009453087771626114, - "markup_range": 0.001675059263184776, - "min_markup": 0.003995369493070447, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03099364507912738, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5924991535166688, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MINAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MINAUSDT.json deleted file mode 100644 index c1c6cdfaf..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5452025004680683, - "ema_span_0": 1339.3140007053344, - "ema_span_1": 1053.8346014318045, - "enabled": true, - "initial_eprice_ema_dist": -0.0031530925752150584, - "initial_qty_pct": 0.013772016294347775, - "markup_range": 0.0034056866766583433, - "min_markup": 0.005298198623231171, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029364026042394967, - "rentry_pprice_dist_wallet_exposure_weighting": 9.671751582209891, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MKRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MKRUSDT.json deleted file mode 100644 index 73c0d4db0..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.448881720988132, - "ema_span_0": 786.4973354385297, - "ema_span_1": 568.5907714177035, - "enabled": true, - "initial_eprice_ema_dist": -0.007948850853725877, - "initial_qty_pct": 0.015241779725150294, - "markup_range": 0.004527416939159713, - "min_markup": 0.0031450463066079047, - "n_close_orders": 9, - "rentry_pprice_dist": 0.021619623432236366, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7363085512083494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9440504563496455, - "ema_span_0": 670.9984492428504, - "ema_span_1": 1382.5326523555161, - "enabled": true, - "initial_eprice_ema_dist": 0.0029664815346501497, - "initial_qty_pct": 0.007147325770208928, - "markup_range": 0.00011612873974285131, - "min_markup": 0.0028322952399753762, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04953091217010036, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1494709499633642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/MTLUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/MTLUSDT.json deleted file mode 100644 index 84548163d..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.508943516866059, - "ema_span_0": 1266.4510224050705, - "ema_span_1": 1003.4753794357284, - "enabled": true, - "initial_eprice_ema_dist": -0.0020142454462381935, - "initial_qty_pct": 0.00870864458220254, - "markup_range": 0.003695702157477494, - "min_markup": 0.007223163185213094, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04575521532989267, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5576921537854274, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/NEARUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/NEARUSDT.json deleted file mode 100644 index f0eec3f9a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3841085740562584, - "ema_span_0": 1371.1241965548327, - "ema_span_1": 1387.5601579070685, - "enabled": true, - "initial_eprice_ema_dist": 0.002703581782074901, - "initial_qty_pct": 0.007245856643223554, - "markup_range": 0.002574344361750194, - "min_markup": 0.0030393522696450536, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02372557433447987, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6192450253478405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3919250201018858, - "ema_span_0": 1060.2158960918268, - "ema_span_1": 1177.1731290956418, - "enabled": true, - "initial_eprice_ema_dist": 0.0027981313427130673, - "initial_qty_pct": 0.011437346366293797, - "markup_range": 0.0037064397591261796, - "min_markup": 0.004152807034102169, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04733475424553607, - "rentry_pprice_dist_wallet_exposure_weighting": 9.908369167484524, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/NEOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/NEOUSDT.json deleted file mode 100644 index 846a2fc33..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8250877969133658, - "ema_span_0": 958.7180455395061, - "ema_span_1": 1040.8913901615765, - "enabled": true, - "initial_eprice_ema_dist": 0.0018251771825541457, - "initial_qty_pct": 0.00683638989611143, - "markup_range": 0.003498007385158342, - "min_markup": 0.004393179018755488, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03766658262453406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.741142232660412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.22158454138696282, - "ema_span_0": 617.2751880621905, - "ema_span_1": 1142.4603211825965, - "enabled": true, - "initial_eprice_ema_dist": -0.005348192640565982, - "initial_qty_pct": 0.010012971078924323, - "markup_range": 0.0016893867061480018, - "min_markup": 0.008582226768360573, - "n_close_orders": 10, - "rentry_pprice_dist": 0.015359862538519184, - "rentry_pprice_dist_wallet_exposure_weighting": 6.782601692438119, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/NKNUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/NKNUSDT.json deleted file mode 100644 index 66b6fad3a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6502594192908396, - "ema_span_0": 427.302724054113, - "ema_span_1": 525.1241138972119, - "enabled": true, - "initial_eprice_ema_dist": 0.0023047652177452284, - "initial_qty_pct": 0.01443980653941104, - "markup_range": 0.006152045986096421, - "min_markup": 0.009373094415952785, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029678349703712765, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762279862782721, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10010264283071404, - "ema_span_0": 1074.7107635989628, - "ema_span_1": 824.4020377981421, - "enabled": true, - "initial_eprice_ema_dist": 0.002997278810551917, - "initial_qty_pct": 0.019997349195799628, - "markup_range": 0.004116237409615031, - "min_markup": 0.006676342857971211, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029872158206496465, - "rentry_pprice_dist_wallet_exposure_weighting": 8.605189052077773, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/NMRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/NMRUSDT.json deleted file mode 100644 index 90691d649..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/OCEANUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/OCEANUSDT.json deleted file mode 100644 index b26197ecd..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5292692989195638, - "ema_span_0": 775.5792201548077, - "ema_span_1": 790.3492310915038, - "enabled": true, - "initial_eprice_ema_dist": -0.001880550018596288, - "initial_qty_pct": 0.018079363052155833, - "markup_range": 0.002789004401964322, - "min_markup": 0.004231742862200032, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03813133766079587, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4735632044926827, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17206336873738548, - "ema_span_0": 1438.9665075699522, - "ema_span_1": 1085.7116498904888, - "enabled": true, - "initial_eprice_ema_dist": -0.0026449263041083823, - "initial_qty_pct": 0.019984495640104415, - "markup_range": 0.012644869120393708, - "min_markup": 0.007255569489115546, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029308000076854707, - "rentry_pprice_dist_wallet_exposure_weighting": 4.296578413876355, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/OGNUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/OGNUSDT.json deleted file mode 100644 index c7c2f8bf4..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2217567213607032, - "ema_span_0": 683.8293148453361, - "ema_span_1": 1045.930823611072, - "enabled": true, - "initial_eprice_ema_dist": 0.001192929551335642, - "initial_qty_pct": 0.01161025552401619, - "markup_range": 0.002726245576964028, - "min_markup": 0.006327700262616104, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04105473263536897, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4376273610876, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7082283674718726, - "ema_span_0": 1131.8396694015312, - "ema_span_1": 717.9391290179749, - "enabled": true, - "initial_eprice_ema_dist": -0.008394939185752272, - "initial_qty_pct": 0.012449510789844796, - "markup_range": 0.0005573825171878327, - "min_markup": 0.0026917469876966494, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03734338310139008, - "rentry_pprice_dist_wallet_exposure_weighting": 0.15166157559238377, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/OMGUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/OMGUSDT.json deleted file mode 100644 index 9563f604f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2916212898447389, - "ema_span_0": 558.5924969044192, - "ema_span_1": 609.0076501189745, - "enabled": true, - "initial_eprice_ema_dist": -0.008391773292204903, - "initial_qty_pct": 0.019602929367910492, - "markup_range": 0.010665910178031772, - "min_markup": 0.002155920567569581, - "n_close_orders": 15, - "rentry_pprice_dist": 0.037429964583052214, - "rentry_pprice_dist_wallet_exposure_weighting": 1.059012227840908, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1563091898658058, - "ema_span_0": 509.5750826043466, - "ema_span_1": 416.1793919164289, - "enabled": true, - "initial_eprice_ema_dist": -0.0012788787668857825, - "initial_qty_pct": 0.0077909627178497495, - "markup_range": 0.003547466737381803, - "min_markup": 0.0072453079849926294, - "n_close_orders": 12, - "rentry_pprice_dist": 0.042819641678887015, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ONEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ONEUSDT.json deleted file mode 100644 index 751528dad..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.010728713869667, - "ema_span_0": 404.3805153091619, - "ema_span_1": 895.3187408007893, - "enabled": true, - "initial_eprice_ema_dist": -0.005872619899779888, - "initial_qty_pct": 0.009407514964527476, - "markup_range": 0.0019875770646914145, - "min_markup": 0.007220018850337885, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03883316449210311, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3686696457267695, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8238000490597432, - "ema_span_0": 1016.4337070155108, - "ema_span_1": 915.1214130618383, - "enabled": true, - "initial_eprice_ema_dist": 0.0007831719440346082, - "initial_qty_pct": 0.013976881040781519, - "markup_range": 0.0053851497781930435, - "min_markup": 0.0054348661294066685, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03683703455568767, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9213870105954695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ONTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ONTUSDT.json deleted file mode 100644 index a721e0276..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25343745137797186, - "ema_span_0": 1209.799889267291, - "ema_span_1": 561.3024485228449, - "enabled": true, - "initial_eprice_ema_dist": -0.000868597903903903, - "initial_qty_pct": 0.006379959950152951, - "markup_range": 0.013174477175909452, - "min_markup": 0.004977617778157702, - "n_close_orders": 11, - "rentry_pprice_dist": 0.038213259567223795, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5024703156381913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3610810877333834, - "ema_span_0": 1387.859631016273, - "ema_span_1": 830.0336606892711, - "enabled": true, - "initial_eprice_ema_dist": -4.7693696982364265e-05, - "initial_qty_pct": 0.01409087864308198, - "markup_range": 0.008065203688859808, - "min_markup": 0.003815556092409007, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02435442439173191, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853916217735233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/OPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/OPUSDT.json deleted file mode 100644 index c03ed78bf..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1737768366463537, - "ema_span_0": 896.2340233374994, - "ema_span_1": 589.5963101508198, - "enabled": true, - "initial_eprice_ema_dist": 0.001218085131085882, - "initial_qty_pct": 0.01415394363069659, - "markup_range": 0.0021746648607091, - "min_markup": 0.0033774997082325585, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04824834814203018, - "rentry_pprice_dist_wallet_exposure_weighting": 2.204716000948487, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0575484627542227, - "ema_span_0": 1067.5582564003012, - "ema_span_1": 422.8511433535947, - "enabled": true, - "initial_eprice_ema_dist": 0.0002492545114339976, - "initial_qty_pct": 0.007658054470493523, - "markup_range": 0.00214324393092925, - "min_markup": 0.003279407549061367, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05854209606514442, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2201369583826327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/OXTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/OXTUSDT.json deleted file mode 100644 index 706f97605..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4026251919198502, - "ema_span_0": 991.1601774811496, - "ema_span_1": 967.6078068597097, - "enabled": true, - "initial_eprice_ema_dist": -0.0013705759607982536, - "initial_qty_pct": 0.01099558849045541, - "markup_range": 0.003028882218683161, - "min_markup": 0.0028309397765345374, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02010617855435312, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3227593045078776, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/PENDLEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/PENDLEUSDT.json deleted file mode 100644 index 2586e1366..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6502594192908396, - "ema_span_0": 427.302724054113, - "ema_span_1": 525.1241138972119, - "enabled": true, - "initial_eprice_ema_dist": 0.0023047652177452284, - "initial_qty_pct": 0.01443980653941104, - "markup_range": 0.006152045986096421, - "min_markup": 0.009373094415952785, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029678349703712765, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762279862782721, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9499051479360794, - "ema_span_0": 622.1083373545156, - "ema_span_1": 1357.1605131698723, - "enabled": true, - "initial_eprice_ema_dist": -0.0052618939405264945, - "initial_qty_pct": 0.013970634422238976, - "markup_range": 0.007023294326105997, - "min_markup": 0.00536912115698267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03611137316591374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.263986724814306, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/PEOPLEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/PEOPLEUSDT.json deleted file mode 100644 index 28dd4c729..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7695226925541676, - "ema_span_0": 862.4293751005667, - "ema_span_1": 1270.6718277665173, - "enabled": true, - "initial_eprice_ema_dist": 0.002827827349330221, - "initial_qty_pct": 0.01015003322366737, - "markup_range": 0.0013486781918281886, - "min_markup": 0.003338335736674881, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05007175688105885, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6788402873258654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/PERPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/PERPUSDT.json deleted file mode 100644 index eb0b6457a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4997342797101396, - "ema_span_0": 684.8138383006407, - "ema_span_1": 1239.1449070996134, - "enabled": true, - "initial_eprice_ema_dist": -0.005588190728916151, - "initial_qty_pct": 0.015121748707332572, - "markup_range": 0.005599073628974565, - "min_markup": 0.005240420265385149, - "n_close_orders": 2, - "rentry_pprice_dist": 0.05161640380822091, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3028660432971493, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/PHBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/PHBUSDT.json deleted file mode 100644 index 5cd167778..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10019471182940975, - "ema_span_0": 467.50495335874245, - "ema_span_1": 501.072027143022, - "enabled": true, - "initial_eprice_ema_dist": 0.0027875175110054786, - "initial_qty_pct": 0.013263121329687525, - "markup_range": 0.003308486630147833, - "min_markup": 0.005932159347895808, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04602199135656369, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00047978102658506215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8516888661345936, - "ema_span_0": 401.12836005586195, - "ema_span_1": 1428.0395786056317, - "enabled": true, - "initial_eprice_ema_dist": 0.0029167220269721824, - "initial_qty_pct": 0.01782174329230994, - "markup_range": 0.003055926162536204, - "min_markup": 0.0025475301688727197, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026603491012028718, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6083947531291125, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/QNTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/QNTUSDT.json deleted file mode 100644 index f71fede25..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2744467310865617, - "ema_span_0": 405.10318436485136, - "ema_span_1": 519.3352452918157, - "enabled": true, - "initial_eprice_ema_dist": 0.002767839774503037, - "initial_qty_pct": 0.01161713024087238, - "markup_range": 0.002302629723792086, - "min_markup": 0.0026762194350294917, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02400454707662801, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5909659355634345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6781979838353416, - "ema_span_0": 916.7758355160095, - "ema_span_1": 504.90512658694564, - "enabled": true, - "initial_eprice_ema_dist": 0.0015326582129405611, - "initial_qty_pct": 0.019563202704950763, - "markup_range": 0.002408624757390176, - "min_markup": 0.002502061617203441, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0338065466507848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8869981057936199, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/QTUMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/QTUMUSDT.json deleted file mode 100644 index 3bb7c191f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10093919533531587, - "ema_span_0": 774.2958923275753, - "ema_span_1": 533.2535451477125, - "enabled": true, - "initial_eprice_ema_dist": 0.0004741688198622525, - "initial_qty_pct": 0.01851658732669561, - "markup_range": 0.003920994631736299, - "min_markup": 0.00407725032022307, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038138285868704984, - "rentry_pprice_dist_wallet_exposure_weighting": 2.208551392385098, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0230013332526442, - "ema_span_0": 948.6876780252531, - "ema_span_1": 1287.560466844553, - "enabled": true, - "initial_eprice_ema_dist": 0.0012379335212399359, - "initial_qty_pct": 0.013450735419898477, - "markup_range": 0.003736597199601087, - "min_markup": 0.005822176662193961, - "n_close_orders": 14, - "rentry_pprice_dist": 0.035598806580745095, - "rentry_pprice_dist_wallet_exposure_weighting": 2.203668366035464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RADUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RADUSDT.json deleted file mode 100644 index 0280e4e65..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.837113039634205, - "ema_span_0": 830.7764330967107, - "ema_span_1": 692.0764617267124, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.012697680183739304, - "markup_range": 0.00011421390958197202, - "min_markup": 0.004968342991597388, - "n_close_orders": 7, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0401588346473017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RAYUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RAYUSDT.json deleted file mode 100644 index 3302e0582..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1076557094684094, - "ema_span_0": 1292.3950982720557, - "ema_span_1": 1303.7317851295784, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010106393546435541, - "markup_range": 0.0013758356909457474, - "min_markup": 0.003938501371448148, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029858901316643576, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9607394449103155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5201668901180903, - "ema_span_0": 707.2250848373449, - "ema_span_1": 716.1105828582283, - "enabled": true, - "initial_eprice_ema_dist": 0.0027096615049866995, - "initial_qty_pct": 0.0065485449384614074, - "markup_range": 0.0011620678195813701, - "min_markup": 0.002783751905608409, - "n_close_orders": 13, - "rentry_pprice_dist": 0.013406032799101379, - "rentry_pprice_dist_wallet_exposure_weighting": 5.142204170273534, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RDNTUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RDNTUSDT.json deleted file mode 100644 index fb7b28f42..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 832.5107891463934, - "ema_span_1": 785.9208010017048, - "enabled": true, - "initial_eprice_ema_dist": -0.005195942271057837, - "initial_qty_pct": 0.0066627666917414875, - "markup_range": 0.004489243484944683, - "min_markup": 0.005413319725681065, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0303850539551967, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5464892140195856, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.409582682882414, - "ema_span_0": 1002.4232181507942, - "ema_span_1": 1162.201808755403, - "enabled": true, - "initial_eprice_ema_dist": -0.002008362870056947, - "initial_qty_pct": 0.0115997436551457, - "markup_range": 0.0035646301318566095, - "min_markup": 0.0047998547792190305, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03333307030129612, - "rentry_pprice_dist_wallet_exposure_weighting": 1.087021691886046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/REEFUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/REEFUSDT.json deleted file mode 100644 index 48e9fa1a9..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.396905198984233, - "ema_span_0": 944.029003724747, - "ema_span_1": 1101.4181700261593, - "enabled": true, - "initial_eprice_ema_dist": -0.002900365914467947, - "initial_qty_pct": 0.006472923121550627, - "markup_range": 0.012612255304370108, - "min_markup": 0.0037362855421466767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03797875765139709, - "rentry_pprice_dist_wallet_exposure_weighting": 4.480393235712382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RENUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RENUSDT.json deleted file mode 100644 index 8302a883b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.36495964064822867, - "ema_span_0": 856.850836239504, - "ema_span_1": 876.0216461952947, - "enabled": true, - "initial_eprice_ema_dist": -0.0018571144493828874, - "initial_qty_pct": 0.009917841260770818, - "markup_range": 0.003539946515060692, - "min_markup": 0.004841339352740727, - "n_close_orders": 11, - "rentry_pprice_dist": 0.034058268566436345, - "rentry_pprice_dist_wallet_exposure_weighting": 4.55581179533905, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10573208917330273, - "ema_span_0": 1349.1821744657475, - "ema_span_1": 1411.0035732087042, - "enabled": true, - "initial_eprice_ema_dist": 0.002936245373452529, - "initial_qty_pct": 0.019774684547833293, - "markup_range": 0.0026978289681034986, - "min_markup": 0.003595099290559894, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03870962149358532, - "rentry_pprice_dist_wallet_exposure_weighting": 9.70692709248828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RLCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RLCUSDT.json deleted file mode 100644 index 3f9487652..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.549576514954369, - "ema_span_0": 700.5555759399181, - "ema_span_1": 700.0659881649507, - "enabled": true, - "initial_eprice_ema_dist": -0.009947416156307202, - "initial_qty_pct": 0.013255259805000906, - "markup_range": 0.006469182454139899, - "min_markup": 0.005989846357583506, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04327653390255187, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6907843363591483, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0376355203597838, - "ema_span_0": 633.386007336164, - "ema_span_1": 887.3728270616908, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.013699748249200672, - "markup_range": 0.008459985981420575, - "min_markup": 0.006781846332321432, - "n_close_orders": 11, - "rentry_pprice_dist": 0.035444110685798405, - "rentry_pprice_dist_wallet_exposure_weighting": 5.226529926365776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RNDRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RNDRUSDT.json deleted file mode 100644 index 8e8ba621f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3919250201018858, - "ema_span_0": 1060.2158960918268, - "ema_span_1": 1177.1731290956418, - "enabled": true, - "initial_eprice_ema_dist": 0.0027981313427130673, - "initial_qty_pct": 0.011437346366293797, - "markup_range": 0.0037064397591261796, - "min_markup": 0.004152807034102169, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04733475424553607, - "rentry_pprice_dist_wallet_exposure_weighting": 9.908369167484524, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ROSEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ROSEUSDT.json deleted file mode 100644 index 9ee9a3c95..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.337239246715127, - "ema_span_0": 1143.4094067321248, - "ema_span_1": 492.85365548426046, - "enabled": true, - "initial_eprice_ema_dist": -0.0024457695084391176, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.004063423362444695, - "min_markup": 0.001454596543327943, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03505831567224242, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6319118133606905, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RSRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RSRUSDT.json deleted file mode 100644 index e51904f6a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.46904428054662695, - "ema_span_0": 770.5028815380779, - "ema_span_1": 744.5553862589587, - "enabled": true, - "initial_eprice_ema_dist": 0.002609499260626503, - "initial_qty_pct": 0.01335267991072591, - "markup_range": 0.006241586715190461, - "min_markup": 0.004732007822910442, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04498166637477749, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4255671528658533, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6839614721957181, - "ema_span_0": 1403.4616543965421, - "ema_span_1": 1386.981168845382, - "enabled": true, - "initial_eprice_ema_dist": 0.00158947134393034, - "initial_qty_pct": 0.008334342446129284, - "markup_range": 0.008066070458946998, - "min_markup": 0.008675202482777394, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040795543123919774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2509372669767798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RUNEUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RUNEUSDT.json deleted file mode 100644 index 0f5d71a00..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10037304056961531, - "ema_span_0": 994.6762990473986, - "ema_span_1": 1103.8806034579907, - "enabled": true, - "initial_eprice_ema_dist": -0.0064877309346694344, - "initial_qty_pct": 0.006721573023020864, - "markup_range": 0.0019259664387609118, - "min_markup": 0.005373303199029612, - "n_close_orders": 14, - "rentry_pprice_dist": 0.01979535022729973, - "rentry_pprice_dist_wallet_exposure_weighting": 2.202675127245405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0575484627542227, - "ema_span_0": 1067.5582564003012, - "ema_span_1": 422.8511433535947, - "enabled": true, - "initial_eprice_ema_dist": 0.0002492545114339976, - "initial_qty_pct": 0.007658054470493523, - "markup_range": 0.00214324393092925, - "min_markup": 0.003279407549061367, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05854209606514442, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2201369583826327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/RVNUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/RVNUSDT.json deleted file mode 100644 index 0db6141f7..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.741757894699294, - "ema_span_0": 1173.25915040044, - "ema_span_1": 1344.9421422811963, - "enabled": true, - "initial_eprice_ema_dist": -0.009940031806438253, - "initial_qty_pct": 0.008290606526578778, - "markup_range": 0.00023080798570940996, - "min_markup": 0.004975177247404583, - "n_close_orders": 5, - "rentry_pprice_dist": 0.031514744060659926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.338696656450341, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8231565401472163, - "ema_span_0": 976.1455948884427, - "ema_span_1": 892.4936083479396, - "enabled": true, - "initial_eprice_ema_dist": 0.0029839436438813807, - "initial_qty_pct": 0.017004098294829927, - "markup_range": 0.0010897149551822934, - "min_markup": 0.002500071840538706, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027708266055787432, - "rentry_pprice_dist_wallet_exposure_weighting": 8.707629332157412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SANDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SANDUSDT.json deleted file mode 100644 index 17f009bb3..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358331656288614, - "ema_span_0": 825.3959971235149, - "ema_span_1": 925.9925455486562, - "enabled": true, - "initial_eprice_ema_dist": 0.0008680423389016931, - "initial_qty_pct": 0.010039405402017962, - "markup_range": 0.0033696794708820716, - "min_markup": 0.002184090674088523, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023959573229806623, - "rentry_pprice_dist_wallet_exposure_weighting": 3.573158532066101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6022801362329805, - "ema_span_0": 785.8215590462997, - "ema_span_1": 1428.4392666241056, - "enabled": true, - "initial_eprice_ema_dist": -0.00705284302021325, - "initial_qty_pct": 0.01526966102624325, - "markup_range": 0.003841531553454811, - "min_markup": 0.0053179326142975955, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03880756261120414, - "rentry_pprice_dist_wallet_exposure_weighting": 5.855593710561918, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SCUSDT.json deleted file mode 100644 index 3c34023e7..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.341754829883286, - "ema_span_0": 1381.696357194486, - "ema_span_1": 898.3018642104006, - "enabled": true, - "initial_eprice_ema_dist": -0.007502246912564987, - "initial_qty_pct": 0.008190405753175794, - "markup_range": 0.001181834027785448, - "min_markup": 0.005822096880760171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04401027773725582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6448002396478179, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9734837982044294, - "ema_span_0": 1337.3018945926017, - "ema_span_1": 866.8616283439067, - "enabled": true, - "initial_eprice_ema_dist": 0.0008353614283271758, - "initial_qty_pct": 0.009091592197713624, - "markup_range": 0.002086770696473691, - "min_markup": 0.002323029888884738, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02754770669369124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7797656951385146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SEIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SEIUSDT.json deleted file mode 100644 index 0c0597988..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.20443456141807378, - "ema_span_0": 1143.7590608148823, - "ema_span_1": 505.9599590814514, - "enabled": true, - "initial_eprice_ema_dist": -0.005136515186398207, - "initial_qty_pct": 0.015849222061658383, - "markup_range": 0.001174404553658167, - "min_markup": 0.00794335339529394, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024182428093108357, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8585615928827853, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5127191074644122, - "ema_span_0": 1209.0752348602116, - "ema_span_1": 1245.936047074045, - "enabled": true, - "initial_eprice_ema_dist": -0.00783831177808704, - "initial_qty_pct": 0.007646228817315402, - "markup_range": 0.005292446878475193, - "min_markup": 0.003756369238441901, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03361823663661565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16049418705746993, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SFPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SFPUSDT.json deleted file mode 100644 index ad175c326..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4688005380099436, - "ema_span_0": 1427.240890515485, - "ema_span_1": 1397.8725924008033, - "enabled": true, - "initial_eprice_ema_dist": 0.002771289891218431, - "initial_qty_pct": 0.018399033060614915, - "markup_range": 0.0026160976058305784, - "min_markup": 0.002553274544198999, - "n_close_orders": 6, - "rentry_pprice_dist": 0.035697308344930366, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6319118133606905, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7465097299671224, - "ema_span_0": 1229.4937379669102, - "ema_span_1": 1339.649707108857, - "enabled": true, - "initial_eprice_ema_dist": -0.006967989062541248, - "initial_qty_pct": 0.006706950324019554, - "markup_range": 0.0008049961427947836, - "min_markup": 0.009760061711514244, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04125837059356699, - "rentry_pprice_dist_wallet_exposure_weighting": 7.373845083350206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SKLUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SKLUSDT.json deleted file mode 100644 index 7613106e2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9835196748626635, - "ema_span_0": 850.1218813498359, - "ema_span_1": 575.1470609094193, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.019016975628777785, - "markup_range": 0.006360067572732123, - "min_markup": 0.006238392512025082, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03902524439820568, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6574576308701303, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.541548981431565, - "ema_span_0": 1374.6469710305294, - "ema_span_1": 1272.3315621931883, - "enabled": true, - "initial_eprice_ema_dist": -0.008541113529147172, - "initial_qty_pct": 0.011401068455024085, - "markup_range": 0.003937174503725552, - "min_markup": 0.004968342991597388, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04573547952901243, - "rentry_pprice_dist_wallet_exposure_weighting": 9.742469512479017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SNXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SNXUSDT.json deleted file mode 100644 index 69694152b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8325993977343975, - "ema_span_0": 613.1010610726044, - "ema_span_1": 1410.3032274120324, - "enabled": true, - "initial_eprice_ema_dist": -0.000841409724236921, - "initial_qty_pct": 0.013424367818308908, - "markup_range": 0.0074865593717514155, - "min_markup": 0.005133150021766462, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03967014370693948, - "rentry_pprice_dist_wallet_exposure_weighting": 6.736819016528358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1787474697966132, - "ema_span_0": 594.5285391720925, - "ema_span_1": 1100.1015396187781, - "enabled": true, - "initial_eprice_ema_dist": -9.581890405466732e-05, - "initial_qty_pct": 0.010775651749424698, - "markup_range": 0.006696796121318975, - "min_markup": 0.007960166759427366, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049530953687867536, - "rentry_pprice_dist_wallet_exposure_weighting": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SOLUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SOLUSDT.json deleted file mode 100644 index bddecb63f..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4105703484072927, - "ema_span_0": 1247.6247279832355, - "ema_span_1": 1293.7198958430267, - "enabled": true, - "initial_eprice_ema_dist": -0.0015934526752411171, - "initial_qty_pct": 0.02, - "markup_range": 0.0028559825835691934, - "min_markup": 0.0032176359083182808, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03456731194371036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19136836263093726, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9734837982044294, - "ema_span_0": 1337.3018945926017, - "ema_span_1": 866.8616283439067, - "enabled": true, - "initial_eprice_ema_dist": 0.0008353614283271758, - "initial_qty_pct": 0.009091592197713624, - "markup_range": 0.002086770696473691, - "min_markup": 0.002323029888884738, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02754770669369124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7797656951385146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SPELLUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SPELLUSDT.json deleted file mode 100644 index 7f0fde808..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8851455953423754, - "ema_span_0": 589.8082383137008, - "ema_span_1": 830.3095662539462, - "enabled": true, - "initial_eprice_ema_dist": -0.009981692918517875, - "initial_qty_pct": 0.015738638853291992, - "markup_range": 0.003975132006789361, - "min_markup": 0.005534415710820503, - "n_close_orders": 14, - "rentry_pprice_dist": 0.035916500797180645, - "rentry_pprice_dist_wallet_exposure_weighting": 2.47076255774158, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SRMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SRMUSDT.json deleted file mode 100644 index c2339f555..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7310193868426007, - "ema_span_0": 1392.0816408501973, - "ema_span_1": 1369.3006021992335, - "enabled": true, - "initial_eprice_ema_dist": 0.002619723963840364, - "initial_qty_pct": 0.012761299160746052, - "markup_range": 3.783593956941449e-06, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028071656842355526, - "rentry_pprice_dist_wallet_exposure_weighting": 1.507569298518642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SSVUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SSVUSDT.json deleted file mode 100644 index 5c05728b2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1205260260426775, - "ema_span_0": 1212.0546329433664, - "ema_span_1": 1228.777699166912, - "enabled": true, - "initial_eprice_ema_dist": -0.002142947667564575, - "initial_qty_pct": 0.009765274489990797, - "markup_range": 0.005762749404703746, - "min_markup": 0.005770414975020122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03505831567224242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.940481762043566, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7465097299671224, - "ema_span_0": 1229.4937379669102, - "ema_span_1": 1339.649707108857, - "enabled": true, - "initial_eprice_ema_dist": -0.006967989062541248, - "initial_qty_pct": 0.006706950324019554, - "markup_range": 0.0008049961427947836, - "min_markup": 0.009760061711514244, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04125837059356699, - "rentry_pprice_dist_wallet_exposure_weighting": 7.373845083350206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/STGUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/STGUSDT.json deleted file mode 100644 index aa8edd483..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9584361374175134, - "ema_span_0": 1404.0793251370017, - "ema_span_1": 987.7942033799167, - "enabled": true, - "initial_eprice_ema_dist": 0.002947831949022201, - "initial_qty_pct": 0.011602450973669727, - "markup_range": 0.002485797100252398, - "min_markup": 0.00547195756116448, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029750873675416525, - "rentry_pprice_dist_wallet_exposure_weighting": 4.869063556870773, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80277892313809, - "ema_span_0": 1436.834338987463, - "ema_span_1": 1386.5508225927904, - "enabled": true, - "initial_eprice_ema_dist": 0.002834520787073184, - "initial_qty_pct": 0.009303687366583258, - "markup_range": 6.665884094385342e-08, - "min_markup": 0.0020903931564476255, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04557852401904558, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2657045592750347, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/STMXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/STMXUSDT.json deleted file mode 100644 index 28c02ce55..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2123640902652209, - "ema_span_0": 1158.1532192768093, - "ema_span_1": 1154.8445098354118, - "enabled": true, - "initial_eprice_ema_dist": 0.002839192348048143, - "initial_qty_pct": 0.011535440930123758, - "markup_range": 0.00543726700112656, - "min_markup": 0.006558120826201822, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03179493347307616, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9932136879771867, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9520515728727079, - "ema_span_0": 1263.5212779280173, - "ema_span_1": 1098.9502091806548, - "enabled": true, - "initial_eprice_ema_dist": -0.004279294579022789, - "initial_qty_pct": 0.007263072834903574, - "markup_range": 0.006647861629591746, - "min_markup": 0.008594742656350072, - "n_close_orders": 7, - "rentry_pprice_dist": 0.035566556492932534, - "rentry_pprice_dist_wallet_exposure_weighting": 0.35619012006838746, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/STORJUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/STORJUSDT.json deleted file mode 100644 index 02a8328ef..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7187592749146647, - "ema_span_0": 497.26451374421487, - "ema_span_1": 1121.2832802732885, - "enabled": true, - "initial_eprice_ema_dist": 0.002878751432283443, - "initial_qty_pct": 0.01203903780576777, - "markup_range": 0.0019565028666160196, - "min_markup": 0.005463499646289359, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04368239785513233, - "rentry_pprice_dist_wallet_exposure_weighting": 1.689498507680282, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80277892313809, - "ema_span_0": 1436.834338987463, - "ema_span_1": 1386.5508225927904, - "enabled": true, - "initial_eprice_ema_dist": 0.002834520787073184, - "initial_qty_pct": 0.009303687366583258, - "markup_range": 6.665884094385342e-08, - "min_markup": 0.0020903931564476255, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04557852401904558, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2657045592750347, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/STXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/STXUSDT.json deleted file mode 100644 index c64e05dfa..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.173292938839362, - "ema_span_0": 1151.7891775414712, - "ema_span_1": 664.4483532262285, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012135370674556202, - "markup_range": 0.00012470032702840506, - "min_markup": 0.0012655947852999176, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02705624112123542, - "rentry_pprice_dist_wallet_exposure_weighting": 4.460736562825172, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SUIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SUIUSDT.json deleted file mode 100644 index c44e100ef..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.42824982280660573, - "ema_span_0": 825.6608984132054, - "ema_span_1": 661.6972507084427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016893048828815203, - "initial_qty_pct": 0.019979006127762683, - "markup_range": 0.004471869707239796, - "min_markup": 0.006436230391616414, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791316321427188, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2888025728685455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3610810877333834, - "ema_span_0": 1387.859631016273, - "ema_span_1": 830.0336606892711, - "enabled": true, - "initial_eprice_ema_dist": -4.7693696982364265e-05, - "initial_qty_pct": 0.01409087864308198, - "markup_range": 0.008065203688859808, - "min_markup": 0.003815556092409007, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02435442439173191, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853916217735233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SUSHIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SUSHIUSDT.json deleted file mode 100644 index d9ecbf853..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10019471182940975, - "ema_span_0": 467.50495335874245, - "ema_span_1": 501.072027143022, - "enabled": true, - "initial_eprice_ema_dist": 0.0027875175110054786, - "initial_qty_pct": 0.013263121329687525, - "markup_range": 0.003308486630147833, - "min_markup": 0.005932159347895808, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04602199135656369, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00047978102658506215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8598910486070648, - "ema_span_0": 571.0217362479318, - "ema_span_1": 497.65326119396866, - "enabled": true, - "initial_eprice_ema_dist": 0.000832297404049764, - "initial_qty_pct": 0.014050213992501942, - "markup_range": 0.005406724403765477, - "min_markup": 0.007680093168428415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.045036170453262296, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8340672757433265, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/SXPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/SXPUSDT.json deleted file mode 100644 index a06553a1a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1737768366463537, - "ema_span_0": 896.2340233374994, - "ema_span_1": 589.5963101508198, - "enabled": true, - "initial_eprice_ema_dist": 0.001218085131085882, - "initial_qty_pct": 0.01415394363069659, - "markup_range": 0.0021746648607091, - "min_markup": 0.0033774997082325585, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04824834814203018, - "rentry_pprice_dist_wallet_exposure_weighting": 2.204716000948487, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4416091341221842, - "ema_span_0": 827.4706169927598, - "ema_span_1": 770.6871650830933, - "enabled": true, - "initial_eprice_ema_dist": -0.007114300356406167, - "initial_qty_pct": 0.009651864885132741, - "markup_range": 0.000495771567248677, - "min_markup": 0.0038232288179883478, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04352105313736622, - "rentry_pprice_dist_wallet_exposure_weighting": 9.243889617944236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/THETAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/THETAUSDT.json deleted file mode 100644 index 9df668344..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1343720276998734, - "ema_span_0": 1104.4173663030556, - "ema_span_1": 1073.0110657345351, - "enabled": true, - "initial_eprice_ema_dist": -0.007979467962263412, - "initial_qty_pct": 0.012814138826955496, - "markup_range": 0.0039876600910200575, - "min_markup": 0.004313593884777903, - "n_close_orders": 5, - "rentry_pprice_dist": 0.033295986545100735, - "rentry_pprice_dist_wallet_exposure_weighting": 4.157710045355585, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4349078091765308, - "ema_span_0": 509.31743476678673, - "ema_span_1": 1144.5630320954324, - "enabled": true, - "initial_eprice_ema_dist": -0.0014527910592694283, - "initial_qty_pct": 0.01759587907076947, - "markup_range": 0.0022565799978959988, - "min_markup": 0.006253966055522724, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027457325020295305, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1844709926438637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/TLMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/TLMUSDT.json deleted file mode 100644 index 9ff9a1274..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.184583982179656, - "ema_span_0": 609.2059106712003, - "ema_span_1": 1035.9339038412597, - "enabled": true, - "initial_eprice_ema_dist": -0.000460772865694403, - "initial_qty_pct": 0.005111532123228903, - "markup_range": 0.005300685769543917, - "min_markup": 0.007228483290157517, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024515932877781435, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22969875704421283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/TOMOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/TOMOUSDT.json deleted file mode 100644 index b343a6700..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.78902668154397, - "ema_span_0": 400, - "ema_span_1": 401.6104733714814, - "enabled": true, - "initial_eprice_ema_dist": -0.008822896481994979, - "initial_qty_pct": 0.009235418438330686, - "markup_range": 0.00798394833236395, - "min_markup": 0.005338159157427459, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04170802545498165, - "rentry_pprice_dist_wallet_exposure_weighting": 6.088379246402266, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7566798515938866, - "ema_span_0": 1265.9970830201867, - "ema_span_1": 1057.6384728837036, - "enabled": true, - "initial_eprice_ema_dist": -0.008698781851117884, - "initial_qty_pct": 0.01825476844420395, - "markup_range": 0.011967541668927214, - "min_markup": 0.004191963718008434, - "n_close_orders": 10, - "rentry_pprice_dist": 0.054883300472977375, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802304056030765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/TRBUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/TRBUSDT.json deleted file mode 100644 index 1c4a542bb..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4017483967587676, - "ema_span_0": 516.9004643126635, - "ema_span_1": 400, - "enabled": true, - "initial_eprice_ema_dist": 0.0029863170708370945, - "initial_qty_pct": 0.01194917259495779, - "markup_range": 0.001503648936299865, - "min_markup": 0.006573839173355267, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04902115272507997, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6904565697890794, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.880009341672455, - "ema_span_0": 701.9369706349446, - "ema_span_1": 1177.24817569763, - "enabled": true, - "initial_eprice_ema_dist": 0.0014561238038451332, - "initial_qty_pct": 0.010554747239126125, - "markup_range": 0.0035760584844470125, - "min_markup": 0.0037629567769551083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04368027463100656, - "rentry_pprice_dist_wallet_exposure_weighting": 9.800471931452684, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/TRUUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/TRUUSDT.json deleted file mode 100644 index 01feb8740..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1476656502939706, - "ema_span_0": 933.5206971239695, - "ema_span_1": 1095.9741385919708, - "enabled": true, - "initial_eprice_ema_dist": 0.0027413779901458053, - "initial_qty_pct": 0.006831053597006566, - "markup_range": 0.0032137093332441275, - "min_markup": 0.004205101007790303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03810405184615373, - "rentry_pprice_dist_wallet_exposure_weighting": 1.284107925654067, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.541548981431565, - "ema_span_0": 1374.6469710305294, - "ema_span_1": 1272.3315621931883, - "enabled": true, - "initial_eprice_ema_dist": -0.008541113529147172, - "initial_qty_pct": 0.011401068455024085, - "markup_range": 0.003937174503725552, - "min_markup": 0.004968342991597388, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04573547952901243, - "rentry_pprice_dist_wallet_exposure_weighting": 9.742469512479017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/TRXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/TRXUSDT.json deleted file mode 100644 index 548679d15..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2011168852475647, - "ema_span_0": 650.4047923574631, - "ema_span_1": 470.145123795836, - "enabled": true, - "initial_eprice_ema_dist": 0.0015403617974944315, - "initial_qty_pct": 0.011495807038087025, - "markup_range": 0.0004990903172308976, - "min_markup": 0.001623791896855179, - "n_close_orders": 14, - "rentry_pprice_dist": 0.024153854903558102, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3673601950375286, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7310193868426007, - "ema_span_0": 1392.0816408501973, - "ema_span_1": 1369.3006021992335, - "enabled": true, - "initial_eprice_ema_dist": 0.002619723963840364, - "initial_qty_pct": 0.012761299160746052, - "markup_range": 3.783593956941449e-06, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028071656842355526, - "rentry_pprice_dist_wallet_exposure_weighting": 1.507569298518642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/TUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/TUSDT.json deleted file mode 100644 index 14ce6a81b..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6380116486373719, - "ema_span_0": 1424.2213775539014, - "ema_span_1": 1351.4121474681021, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014553993472746253, - "markup_range": 0.0008564865870384841, - "min_markup": 0.0021797102702710313, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042148413734165, - "rentry_pprice_dist_wallet_exposure_weighting": 3.580644243358244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/UMAUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/UMAUSDT.json deleted file mode 100644 index c7f7ef37c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6873672870876237, - "ema_span_0": 674.814122528463, - "ema_span_1": 788.3206335454101, - "enabled": true, - "initial_eprice_ema_dist": 0.002822552906109198, - "initial_qty_pct": 0.019925628096881837, - "markup_range": 0.003589691896712043, - "min_markup": 0.008465639069265757, - "n_close_orders": 14, - "rentry_pprice_dist": 0.022212233625903858, - "rentry_pprice_dist_wallet_exposure_weighting": 8.144459299264094, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/UNFIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/UNFIUSDT.json deleted file mode 100644 index 0edf3999e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3100807399509733, - "ema_span_0": 513.5490097314743, - "ema_span_1": 733.9381006599374, - "enabled": true, - "initial_eprice_ema_dist": -0.00688693139135385, - "initial_qty_pct": 0.008303784357975463, - "markup_range": 0.011374975925963213, - "min_markup": 0.008314838627241316, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05222180157189911, - "rentry_pprice_dist_wallet_exposure_weighting": 0.46350203321275335, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9920603152790013, - "ema_span_0": 624.3931604244164, - "ema_span_1": 689.7922144458057, - "enabled": true, - "initial_eprice_ema_dist": -0.009672742672452812, - "initial_qty_pct": 0.005789752616114187, - "markup_range": 0.0014188872312999124, - "min_markup": 0.005218401406013735, - "n_close_orders": 14, - "rentry_pprice_dist": 0.056157995710625894, - "rentry_pprice_dist_wallet_exposure_weighting": 8.52765874089328, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/UNIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/UNIUSDT.json deleted file mode 100644 index 2a4fc11a0..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15389729494934665, - "ema_span_0": 933.9740837276265, - "ema_span_1": 592.4216963707654, - "enabled": true, - "initial_eprice_ema_dist": 0.002999940662443664, - "initial_qty_pct": 0.019595848258228073, - "markup_range": 0.0017241116780508956, - "min_markup": 0.003272939840165835, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03580504256624019, - "rentry_pprice_dist_wallet_exposure_weighting": 0.004600199946388914, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9461984127653197, - "ema_span_0": 876.1010914259034, - "ema_span_1": 1411.1899224254166, - "enabled": true, - "initial_eprice_ema_dist": 0.00206223743229542, - "initial_qty_pct": 0.015066384831184559, - "markup_range": 0.0015641017368793744, - "min_markup": 0.005669014125737904, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030402515021544733, - "rentry_pprice_dist_wallet_exposure_weighting": 0.037463412375512206, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/USDCUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/USDCUSDT.json deleted file mode 100644 index ac4a90a3c..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.508943516866059, - "ema_span_0": 1266.4510224050705, - "ema_span_1": 1003.4753794357284, - "enabled": true, - "initial_eprice_ema_dist": -0.0020142454462381935, - "initial_qty_pct": 0.00870864458220254, - "markup_range": 0.003695702157477494, - "min_markup": 0.007223163185213094, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04575521532989267, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5576921537854274, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/VETUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/VETUSDT.json deleted file mode 100644 index b1f5c9c57..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4094488998407715, - "ema_span_0": 530.7428384503781, - "ema_span_1": 550.1784301353707, - "enabled": true, - "initial_eprice_ema_dist": -0.008676240328527514, - "initial_qty_pct": 0.006707452888356948, - "markup_range": 0.0010804828151730124, - "min_markup": 0.0025685134759434857, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014077064162697378, - "rentry_pprice_dist_wallet_exposure_weighting": 6.201142864457871, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8516888661345936, - "ema_span_0": 401.12836005586195, - "ema_span_1": 1428.0395786056317, - "enabled": true, - "initial_eprice_ema_dist": 0.0029167220269721824, - "initial_qty_pct": 0.01782174329230994, - "markup_range": 0.003055926162536204, - "min_markup": 0.0025475301688727197, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026603491012028718, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6083947531291125, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/WAVESUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/WAVESUSDT.json deleted file mode 100644 index 4a9fbe25a..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.751402066478981, - "ema_span_0": 815.6758472397362, - "ema_span_1": 893.4578952035137, - "enabled": true, - "initial_eprice_ema_dist": -0.0012125170160610596, - "initial_qty_pct": 0.008391926393526834, - "markup_range": 1.5033008696905663e-05, - "min_markup": 0.004859883745516535, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02584774452073919, - "rentry_pprice_dist_wallet_exposure_weighting": 4.251130139100051, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.666189398387334, - "ema_span_0": 1397.2030043493123, - "ema_span_1": 652.6121110356738, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.006577521522179626, - "markup_range": 0.0, - "min_markup": 0.0012964423359111445, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05497456083805744, - "rentry_pprice_dist_wallet_exposure_weighting": 9.732103537067127, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/WLDUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/WLDUSDT.json deleted file mode 100644 index 1688bf4d6..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.549576514954369, - "ema_span_0": 700.5555759399181, - "ema_span_1": 700.0659881649507, - "enabled": true, - "initial_eprice_ema_dist": -0.009947416156307202, - "initial_qty_pct": 0.013255259805000906, - "markup_range": 0.006469182454139899, - "min_markup": 0.005989846357583506, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04327653390255187, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6907843363591483, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.541548981431565, - "ema_span_0": 1374.6469710305294, - "ema_span_1": 1272.3315621931883, - "enabled": true, - "initial_eprice_ema_dist": -0.008541113529147172, - "initial_qty_pct": 0.011401068455024085, - "markup_range": 0.003937174503725552, - "min_markup": 0.004968342991597388, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04573547952901243, - "rentry_pprice_dist_wallet_exposure_weighting": 9.742469512479017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/WOOUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/WOOUSDT.json deleted file mode 100644 index 6e65a18ff..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6171096195489716, - "ema_span_0": 1440, - "ema_span_1": 1013.2405026276444, - "enabled": true, - "initial_eprice_ema_dist": -0.000899262565851091, - "initial_qty_pct": 0.006110808513615911, - "markup_range": 0.0009147783462165784, - "min_markup": 0.0011141231482822372, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03590399957769143, - "rentry_pprice_dist_wallet_exposure_weighting": 7.076815297324709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0104426941410156, - "ema_span_0": 417.6321452285503, - "ema_span_1": 541.4180739658083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029984219177280787, - "initial_qty_pct": 0.013363031751006421, - "markup_range": 7.010573397721282e-05, - "min_markup": 0.0028074393585992385, - "n_close_orders": 6, - "rentry_pprice_dist": 0.023684594715020553, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9646097045738005, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XEMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XEMUSDT.json deleted file mode 100644 index de3c8e152..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1076557094684094, - "ema_span_0": 1292.3950982720557, - "ema_span_1": 1303.7317851295784, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010106393546435541, - "markup_range": 0.0013758356909457474, - "min_markup": 0.003938501371448148, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029858901316643576, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9607394449103155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XLMUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XLMUSDT.json deleted file mode 100644 index 63a901aea..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2744467310865617, - "ema_span_0": 405.10318436485136, - "ema_span_1": 519.3352452918157, - "enabled": true, - "initial_eprice_ema_dist": 0.002767839774503037, - "initial_qty_pct": 0.01161713024087238, - "markup_range": 0.002302629723792086, - "min_markup": 0.0026762194350294917, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02400454707662801, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5909659355634345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9440504563496455, - "ema_span_0": 670.9984492428504, - "ema_span_1": 1382.5326523555161, - "enabled": true, - "initial_eprice_ema_dist": 0.0029664815346501497, - "initial_qty_pct": 0.007147325770208928, - "markup_range": 0.00011612873974285131, - "min_markup": 0.0028322952399753762, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04953091217010036, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1494709499633642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XMRUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XMRUSDT.json deleted file mode 100644 index 182d86c89..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.16766415745902696, - "ema_span_0": 744.1620140794424, - "ema_span_1": 854.1789986068621, - "enabled": true, - "initial_eprice_ema_dist": -0.007008707404626438, - "initial_qty_pct": 0.00787542703344586, - "markup_range": 0.0010617059347405387, - "min_markup": 0.004025487585506566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.01709526488190027, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6099942021467453, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.864045853133412, - "ema_span_0": 850.269782175087, - "ema_span_1": 693.1878556254624, - "enabled": true, - "initial_eprice_ema_dist": 0.002759120465704269, - "initial_qty_pct": 0.014813459024708205, - "markup_range": 0.0018033789229788691, - "min_markup": 0.0032956003090641715, - "n_close_orders": 12, - "rentry_pprice_dist": 0.014880835978972554, - "rentry_pprice_dist_wallet_exposure_weighting": 7.507156909652987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XRPUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XRPUSDT.json deleted file mode 100644 index 651aeffd4..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033314066053704, - "ema_span_0": 570.4891353812185, - "ema_span_1": 817.6579770619803, - "enabled": true, - "initial_eprice_ema_dist": -0.008620202074115159, - "initial_qty_pct": 0.007375630906712132, - "markup_range": 0.005031576551531487, - "min_markup": 0.005461944181247269, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029750435997755616, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9197614878360865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9829474924416866, - "ema_span_0": 1340.4765372226711, - "ema_span_1": 1339.2920029936695, - "enabled": true, - "initial_eprice_ema_dist": 0.001543135817787779, - "initial_qty_pct": 0.012160119939676509, - "markup_range": 0.00036926990971757707, - "min_markup": 0.007331963452599296, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04997762634001514, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XTZUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XTZUSDT.json deleted file mode 100644 index 6f8d12029..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.077244693932134, - "ema_span_0": 1058.576019749733, - "ema_span_1": 1258.9209202591228, - "enabled": true, - "initial_eprice_ema_dist": 0.0025202061082440688, - "initial_qty_pct": 0.013397085981305139, - "markup_range": 0.002883598133611114, - "min_markup": 0.0035843177125622757, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03424961964735372, - "rentry_pprice_dist_wallet_exposure_weighting": 1.074608336185159, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.663962205521371, - "ema_span_0": 483.88926404551836, - "ema_span_1": 846.6665090375519, - "enabled": true, - "initial_eprice_ema_dist": -0.001800044562739661, - "initial_qty_pct": 0.014704482854579157, - "markup_range": 0.0010996461599713288, - "min_markup": 0.00489570203609263, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0297056364515327, - "rentry_pprice_dist_wallet_exposure_weighting": 1.396707088858995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XVGUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XVGUSDT.json deleted file mode 100644 index 9140b4abe..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.331964882096682, - "ema_span_0": 1065.6707537389448, - "ema_span_1": 1049.4419238259131, - "enabled": true, - "initial_eprice_ema_dist": 0.001669681861236945, - "initial_qty_pct": 0.011467540454376673, - "markup_range": 6.967055447643778e-05, - "min_markup": 0.0033146630854107096, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02948148823455994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2432128372803763, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1766623589074268, - "ema_span_0": 519.0153825041982, - "ema_span_1": 695.112915107658, - "enabled": true, - "initial_eprice_ema_dist": 0.0006266239550093967, - "initial_qty_pct": 0.010622634343203798, - "markup_range": 0.0017976337021877078, - "min_markup": 0.007105371315771568, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026085515741912025, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18788411684501563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/XVSUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/XVSUSDT.json deleted file mode 100644 index 9a7e81d03..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1163429764822047, - "ema_span_0": 778.3852876266045, - "ema_span_1": 500.489378562041, - "enabled": true, - "initial_eprice_ema_dist": 9.633186356697778e-05, - "initial_qty_pct": 0.011345875019089045, - "markup_range": 0.00934743383066865, - "min_markup": 0.004405957869048295, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024405305943534922, - "rentry_pprice_dist_wallet_exposure_weighting": 4.326177773898883, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10010264283071404, - "ema_span_0": 1074.7107635989628, - "ema_span_1": 824.4020377981421, - "enabled": true, - "initial_eprice_ema_dist": 0.002997278810551917, - "initial_qty_pct": 0.019997349195799628, - "markup_range": 0.004116237409615031, - "min_markup": 0.006676342857971211, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029872158206496465, - "rentry_pprice_dist_wallet_exposure_weighting": 8.605189052077773, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/YFIUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/YFIUSDT.json deleted file mode 100644 index cd56d6ee4..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1839515768311335, - "ema_span_0": 516.8069766502348, - "ema_span_1": 435.93864016551765, - "enabled": true, - "initial_eprice_ema_dist": -0.0038979154003671666, - "initial_qty_pct": 0.011775118312706414, - "markup_range": 0.0005574680077363058, - "min_markup": 0.002774787491231702, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03115923767089177, - "rentry_pprice_dist_wallet_exposure_weighting": 0.28776824557761416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2917787033497605, - "ema_span_0": 1344.9537971661955, - "ema_span_1": 436.4248240758233, - "enabled": true, - "initial_eprice_ema_dist": -0.004822333867779742, - "initial_qty_pct": 0.009453087771626114, - "markup_range": 0.001675059263184776, - "min_markup": 0.003995369493070447, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03099364507912738, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5924991535166688, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/YGGUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/YGGUSDT.json deleted file mode 100644 index f6a902ff2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7481118386504956, - "ema_span_0": 1419.9539820312973, - "ema_span_1": 916.663447619298, - "enabled": true, - "initial_eprice_ema_dist": -0.0062613123560343095, - "initial_qty_pct": 0.0126687513346393, - "markup_range": 0.003697951542644542, - "min_markup": 0.008331572822903978, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02337625708334466, - "rentry_pprice_dist_wallet_exposure_weighting": 3.548748471325427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7253425675798318, - "ema_span_0": 596.8888377033405, - "ema_span_1": 578.3191874380922, - "enabled": true, - "initial_eprice_ema_dist": -0.00758939816392905, - "initial_qty_pct": 0.009893169243769834, - "markup_range": 0.004882189200907474, - "min_markup": 0.005170362920145627, - "n_close_orders": 8, - "rentry_pprice_dist": 0.017086658449206395, - "rentry_pprice_dist_wallet_exposure_weighting": 8.69599842237154, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZECUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ZECUSDT.json deleted file mode 100644 index ecf659232..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0988492763500168, - "ema_span_0": 840.4833924055439, - "ema_span_1": 1195.6344453376678, - "enabled": true, - "initial_eprice_ema_dist": -0.002643454613555825, - "initial_qty_pct": 0.010139548763063552, - "markup_range": 0.0019175334866138156, - "min_markup": 0.00634446099472259, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03574456209819619, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6437156327688496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15046741285088064, - "ema_span_0": 736.7203910497747, - "ema_span_1": 596.951172850221, - "enabled": true, - "initial_eprice_ema_dist": -0.009364199048624611, - "initial_qty_pct": 0.011606679451066481, - "markup_range": 0.003668172592159496, - "min_markup": 0.0024972871558696804, - "n_close_orders": 15, - "rentry_pprice_dist": 0.015417226843163254, - "rentry_pprice_dist_wallet_exposure_weighting": 9.009522109968897, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZENUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ZENUSDT.json deleted file mode 100644 index 95015556e..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1205260260426775, - "ema_span_0": 1212.0546329433664, - "ema_span_1": 1228.777699166912, - "enabled": true, - "initial_eprice_ema_dist": -0.002142947667564575, - "initial_qty_pct": 0.009765274489990797, - "markup_range": 0.005762749404703746, - "min_markup": 0.005770414975020122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03505831567224242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.940481762043566, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35657925534529245, - "ema_span_0": 1303.5050393380775, - "ema_span_1": 1274.6197375472702, - "enabled": true, - "initial_eprice_ema_dist": 0.0016364286247297403, - "initial_qty_pct": 0.019974535236854808, - "markup_range": 0.010730912424305851, - "min_markup": 0.005552708787626075, - "n_close_orders": 2, - "rentry_pprice_dist": 0.032184520481613264, - "rentry_pprice_dist_wallet_exposure_weighting": 7.036235912619348, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZILUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ZILUSDT.json deleted file mode 100644 index 7529a4808..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7178340719098681, - "ema_span_0": 415.15061957302555, - "ema_span_1": 1089.7877857241194, - "enabled": true, - "initial_eprice_ema_dist": -0.00201450643275256, - "initial_qty_pct": 0.005416436126375446, - "markup_range": 0.0022723318779975525, - "min_markup": 0.002190136171187756, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02639571495087306, - "rentry_pprice_dist_wallet_exposure_weighting": 8.457003519600361, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3389007463645637, - "ema_span_0": 1341.506280103092, - "ema_span_1": 1335.774321360955, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.012307899823146454, - "markup_range": 0.0021274643394395315, - "min_markup": 0.002253642765114612, - "n_close_orders": 5, - "rentry_pprice_dist": 0.028205288209876715, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2168814665980414, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZRXUSDT.json b/configs/live/multisymbol/archived/2023-12-23_no_AU/ZRXUSDT.json deleted file mode 100644 index 10a705e33..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9584361374175134, - "ema_span_0": 1404.0793251370017, - "ema_span_1": 987.7942033799167, - "enabled": true, - "initial_eprice_ema_dist": 0.002947831949022201, - "initial_qty_pct": 0.011602450973669727, - "markup_range": 0.002485797100252398, - "min_markup": 0.00547195756116448, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029750873675416525, - "rentry_pprice_dist_wallet_exposure_weighting": 4.869063556870773, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21348478501226764, - "ema_span_0": 578.6053110911937, - "ema_span_1": 536.3687046086876, - "enabled": true, - "initial_eprice_ema_dist": 0.0019114755355438492, - "initial_qty_pct": 0.008086298731652026, - "markup_range": 0.005795173062738924, - "min_markup": 0.0099925547949804, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02896875662863217, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8234525007833575, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2023-12-23_no_AU/metrics_no_AU.txt b/configs/live/multisymbol/archived/2023-12-23_no_AU/metrics_no_AU.txt deleted file mode 100644 index 945d933d2..000000000 --- a/configs/live/multisymbol/archived/2023-12-23_no_AU/metrics_no_AU.txt +++ /dev/null @@ -1,462 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-12-23 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKUSDT | 0.003789 | 0.003101 | 0.02307 | 0.01259 | 0.009692 | 0.007715 | 42.48 | 0.04061 | 0.0 | 0.03799 | 0.07242 | 91.29 | 271999999.996 | -| FRONTUSDT | 0.002541 | 0.002409 | 0.04652 | 0.03449 | 0.006744 | 0.009635 | 48.93 | 0.0652 | 0.0 | 0.06122 | 0.0877 | 88.38 | 271999999.997 | -| SEIUSDT | 0.002716 | 0.002048 | 0.08891 | 0.0481 | 0.009923 | 0.009998 | 117.5 | 0.0854 | 0.0 | 0.07908 | 0.1268 | 124.88 | 271999999.997 | -| YGGUSDT | 0.002524 | 0.002326 | 0.06432 | 0.01324 | 0.009966 | 0.01033 | 72.9 | 0.06341 | 0.0 | 0.05795 | 0.07 | 136.83 | 271999999.997 | -| 1000PEPEUSDT | 0.003185 | 0.001705 | 0.02176 | 0.0002737 | 0.01518 | 0.01126 | 86.42 | 0.04498 | 0.0 | 0.006425 | 0.03151 | 228.29 | 271999999.997 | -| BNTUSDT | 0.001523 | 0.001456 | 0.04358 | 0.004656 | 0.008246 | 0.006707 | 69.77 | 0.03123 | 0.0 | 0.01596 | 0.02969 | 131.46 | 271999999.998 | -| MINAUSDT | 0.001592 | 0.001219 | 0.02311 | 0.006667 | 0.006795 | 0.007311 | 52.27 | 0.03928 | 0.0 | 0.02889 | 0.1142 | 315.5 | 271999999.998 | -| ARKMUSDT | 0.002286 | 0.001913 | 0.05089 | 0.02654 | 0.007788 | 0.009691 | 60.47 | 0.07 | 0.0 | 0.06539 | 0.1247 | 144.88 | 271999999.998 | -| FETUSDT | 0.001579 | 0.001571 | 0.03273 | 0.01382 | 0.006099 | 0.005081 | 66.25 | 0.02115 | 0.0 | 0.01399 | 0.05591 | 336.88 | 271999999.998 | -| CYBERUSDT | 0.001921 | 0.0023 | 0.02522 | 0.004667 | 0.004985 | 0.004806 | 23.45 | 0.0275 | 0.0 | 0.01523 | 0.0266 | 120.46 | 271999999.998 | -| HFTUSDT | 0.001696 | 0.001179 | 0.0742 | 0.02892 | 0.01019 | 0.01343 | 80.12 | 0.0982 | 0.0 | 0.08926 | 0.1289 | 257.46 | 271999999.998 | -| MAVUSDT | 0.002212 | 0.001785 | 0.0913 | 0.02113 | 0.01094 | 0.009718 | 69.2 | 0.05917 | 0.0 | 0.05414 | 0.09594 | 173.46 | 271999999.998 | -| GLMRUSDT | 0.001878 | 0.001497 | 0.04076 | 0.0002451 | 0.008026 | 0.006872 | 51.73 | 0.03299 | 0.0 | 0.0131 | 0.01851 | 84.92 | 271999999.998 | -| DODOXUSDT | 0.002103 | 0.001881 | 0.07118 | 0.001997 | 0.009973 | 0.008867 | 74.43 | 0.05509 | 0.0 | 0.03749 | 0.054 | 133.46 | 271999999.998 | -| 1000LUNCUSDT | 0.001974 | 0.001823 | 0.03817 | 0.008129 | 0.007278 | 0.007145 | 99.13 | 0.04826 | 0.0 | 0.03835 | 0.09904 | 466.42 | 271999999.998 | -| PENDLEUSDT | 0.001536 | 0.001149 | 0.03371 | 0.0 | 0.009271 | 0.007599 | 73.77 | 0.03711 | 0.0 | 0.01238 | 0.02196 | 144.88 | 271999999.998 | -| BLURUSDT | 0.002336 | 0.001547 | 0.03072 | 0.01162 | 0.009294 | 0.008549 | 107.6 | 0.05022 | 0.0 | 0.04274 | 0.1164 | 235.46 | 271999999.998 | -| WLDUSDT | 0.002419 | 0.001832 | 0.07937 | 0.04581 | 0.01383 | 0.01229 | 52.87 | 0.07118 | 0.0 | 0.06554 | 0.1267 | 148.46 | 271999999.998 | -| HIFIUSDT | 0.00162 | 0.002145 | 0.1691 | 0.1038 | 0.01307 | 0.01421 | 119.4 | 0.08807 | 0.0 | 0.08089 | 0.0933 | 94.38 | 271999999.998 | -| INJUSDT | 0.001768 | 0.001206 | 0.03138 | 0.001786 | 0.008138 | 0.0088 | 87.02 | 0.05322 | 0.0 | 0.02901 | 0.0648 | 489.88 | 271999999.998 | -| COMBOUSDT | 0.001995 | 0.00158 | 0.05174 | 0.02516 | 0.0108 | 0.009691 | 54.13 | 0.06181 | 0.0 | 0.05809 | 0.09154 | 200.46 | 271999999.998 | -| RNDRUSDT | 0.001653 | 0.001829 | 0.04907 | 0.01121 | 0.009329 | 0.01047 | 78.0 | 0.07288 | 0.0 | 0.06795 | 0.1248 | 319.88 | 271999999.998 | -| SUIUSDT | 0.001724 | 0.001392 | 0.07198 | 0.01253 | 0.01088 | 0.009878 | 100.5 | 0.07689 | 0.0 | 0.07124 | 0.1334 | 230.29 | 271999999.998 | -| SOLUSDT | 0.001543 | 0.002628 | 0.05242 | 0.02838 | 0.01171 | 0.01285 | 107.9 | 0.08537 | 0.0 | 0.07788 | 0.1938 | 1191.67 | 271999999.998 | -| STXUSDT | 0.001595 | 0.001456 | 0.0681 | 0.005653 | 0.01175 | 0.01044 | 106.1 | 0.06391 | 0.0 | 0.05303 | 0.105 | 301.38 | 271999999.998 | -| RDNTUSDT | 0.001621 | 0.001351 | 0.06243 | 0.04311 | 0.01065 | 0.01294 | 83.95 | 0.09173 | 0.0 | 0.08394 | 0.1344 | 258.46 | 271999999.998 | -| MDTUSDT | 0.001636 | 0.001055 | 0.03042 | 0.007246 | 0.007142 | 0.006536 | 48.98 | 0.0325 | 0.0 | 0.02044 | 0.04942 | 172.46 | 271999999.998 | -| CRVUSDT | 0.0007455 | 0.001682 | 0.04567 | 0.01815 | 0.01385 | 0.01599 | 97.32 | 0.1054 | 0.0 | 0.09348 | 0.243 | 1204.67 | 271999999.999 | -| XEMUSDT | 0.0006034 | 0.00123 | 0.03305 | 0.01636 | 0.01112 | 0.01296 | 112.5 | 0.07757 | 0.0 | 0.07063 | 0.1644 | 1021.67 | 271999999.999 | -| AAVEUSDT | 0.001099 | 0.002386 | 0.04043 | 0.02184 | 0.009521 | 0.01267 | 98.4 | 0.08199 | 0.0 | 0.07357 | 0.2256 | 1158.67 | 271999999.999 | -| EGLDUSDT | 0.0006738 | 0.001368 | 0.04096 | 0.01416 | 0.00964 | 0.01521 | 88.4 | 0.095 | 0.0 | 0.08425 | 0.2451 | 1191.67 | 271999999.999 | -| ALPHAUSDT | 0.0009048 | 0.00172 | 0.03022 | 0.008663 | 0.01226 | 0.01125 | 115.6 | 0.05538 | 0.0 | 0.03501 | 0.2421 | 1120.67 | 271999999.999 | -| LEVERUSDT | 0.001348 | 0.0005877 | 0.01895 | 0.006646 | 0.01543 | 0.01276 | 72.15 | 0.05672 | 0.0 | 0.02597 | 0.09259 | 264.46 | 271999999.999 | -| KNCUSDT | 0.0005318 | 0.0005977 | 0.01417 | 0.004125 | 0.01629 | 0.01268 | 115.6 | 0.0513 | 0.0 | 0.02028 | 0.1086 | 1275.62 | 271999999.999 | -| ETHUSDT | 0.0005048 | 0.001561 | 0.03962 | 0.02779 | 0.005532 | 0.008505 | 119.6 | 0.0522 | 0.0 | 0.04955 | 0.1176 | 1448.96 | 271999999.999 | -| LRCUSDT | 0.0009388 | 0.001813 | 0.05063 | 0.01354 | 0.01047 | 0.01055 | 114.0 | 0.06494 | 0.0 | 0.05712 | 0.2153 | 1156.67 | 271999999.999 | -| XVGUSDT | 0.001412 | 0.001083 | 0.02585 | 0.01572 | 0.00913 | 0.007552 | 44.93 | 0.03616 | 0.0 | 0.03402 | 0.08306 | 167.46 | 271999999.999 | -| OMGUSDT | 0.001064 | 0.001804 | 0.08269 | 0.02454 | 0.01446 | 0.01446 | 114.3 | 0.09059 | 0.0 | 0.08188 | 0.2059 | 1265.58 | 271999999.999 | -| IDEXUSDT | 0.0008935 | 0.0008369 | 0.07855 | 0.02737 | 0.01315 | 0.01215 | 110.5 | 0.09766 | 0.0 | 0.08876 | 0.1246 | 230.46 | 271999999.999 | -| ACHUSDT | 0.001143 | 0.001312 | 0.06347 | 0.03426 | 0.008711 | 0.01073 | 66.5 | 0.08041 | 0.0 | 0.07502 | 0.1121 | 300.38 | 271999999.999 | -| QNTUSDT | 0.000549 | 0.00049 | 0.02133 | 0.002504 | 0.007884 | 0.007838 | 101.6 | 0.04013 | 0.0 | 0.01741 | 0.06527 | 425.88 | 271999999.999 | -| UMAUSDT | 0.001235 | 0.000915 | 0.03901 | 0.003616 | 0.007402 | 0.006579 | 98.22 | 0.03957 | 0.0 | 0.03004 | 0.1018 | 223.46 | 271999999.999 | -| RSRUSDT | 0.0005651 | 0.001115 | 0.03071 | 0.003696 | 0.01548 | 0.01189 | 104.6 | 0.04812 | 0.0 | 0.02087 | 0.1573 | 1156.67 | 271999999.999 | -| TRBUSDT | 0.001003 | 0.001299 | 0.03153 | 0.01448 | 0.01551 | 0.01498 | 115.5 | 0.0766 | 0.0 | 0.0633 | 0.1943 | 1202.67 | 271999999.999 | -| MANAUSDT | 0.0008604 | 0.001391 | 0.01927 | 0.008913 | 0.009093 | 0.009666 | 84.02 | 0.0601 | 0.0 | 0.05254 | 0.2476 | 1009.67 | 271999999.999 | -| ROSEUSDT | 0.0008427 | 0.000713 | 0.02384 | 0.002956 | 0.01118 | 0.009655 | 107.2 | 0.05022 | 0.0 | 0.02592 | 0.09502 | 718.83 | 271999999.999 | -| FTMUSDT | 0.0005158 | 0.0009338 | 0.01368 | 0.004636 | 0.01194 | 0.01079 | 102.5 | 0.05246 | 0.0 | 0.03464 | 0.2405 | 1181.67 | 271999999.999 | -| HBARUSDT | 0.001092 | 0.00177 | 0.07056 | 0.01209 | 0.01154 | 0.01115 | 116.7 | 0.06262 | 0.0 | 0.05237 | 0.1484 | 1007.67 | 271999999.999 | -| GALUSDT | 0.0009016 | 0.001349 | 0.04487 | 0.01555 | 0.00924 | 0.01207 | 115.1 | 0.07481 | 0.0 | 0.05999 | 0.1037 | 593.38 | 271999999.999 | -| BANDUSDT | 0.0007411 | 0.001306 | 0.03556 | 0.01133 | 0.01314 | 0.01237 | 106.8 | 0.07125 | 0.0 | 0.05925 | 0.1436 | 1238.67 | 271999999.999 | -| AGIXUSDT | 0.0009896 | 0.001061 | 0.03758 | 0.01814 | 0.008893 | 0.01101 | 76.37 | 0.0798 | 0.0 | 0.07373 | 0.09843 | 306.38 | 271999999.999 | -| FXSUSDT | 0.0006945 | 0.0003882 | 0.01172 | 0.0007486 | 0.01716 | 0.0124 | 75.92 | 0.05008 | 0.0 | 0.006567 | 0.0663 | 333.83 | 271999999.999 | -| ETCUSDT | 0.0007151 | 0.001411 | 0.02138 | 0.008434 | 0.005943 | 0.005666 | 70.58 | 0.03016 | 0.0 | 0.02522 | 0.1286 | 1433.62 | 271999999.999 | -| DEFIUSDT | 0.0005221 | 0.001287 | 0.04421 | 0.016 | 0.01063 | 0.01069 | 117.0 | 0.06209 | 0.0 | 0.05681 | 0.1805 | 1208.67 | 271999999.999 | -| ENJUSDT | 0.0007027 | 0.001216 | 0.05038 | 0.01179 | 0.01192 | 0.01632 | 109.7 | 0.1011 | 0.0 | 0.07355 | 0.2392 | 1176.67 | 271999999.999 | -| SNXUSDT | 0.00125 | 0.00168 | 0.05961 | 0.02342 | 0.0165 | 0.01599 | 110.2 | 0.08521 | 0.0 | 0.06381 | 0.2473 | 1222.67 | 271999999.999 | -| MTLUSDT | 0.0009214 | 0.001071 | 0.03389 | 0.01017 | 0.0136 | 0.01267 | 116.5 | 0.06351 | 0.0 | 0.04462 | 0.2361 | 993.67 | 271999999.999 | -| HOTUSDT | 0.0008899 | 0.001458 | 0.01675 | 0.004595 | 0.009199 | 0.008026 | 110.3 | 0.03578 | 0.0 | 0.01535 | 0.1276 | 994.67 | 271999999.999 | -| 1000SHIBUSDT | 0.0009478 | 0.002434 | 0.04293 | 0.003462 | 0.008503 | 0.008642 | 111.9 | 0.05009 | 0.0 | 0.03362 | 0.2155 | 953.25 | 271999999.999 | -| ZENUSDT | 0.0006415 | 0.001948 | 0.0369 | 0.01082 | 0.01271 | 0.01165 | 119.0 | 0.06189 | 0.0 | 0.04349 | 0.1131 | 1120.67 | 271999999.999 | -| SPELLUSDT | 0.0007481 | 0.00067 | 0.0371 | 0.004215 | 0.01173 | 0.009022 | 118.0 | 0.04032 | 0.0 | 0.01723 | 0.06459 | 469.46 | 271999999.999 | -| OGNUSDT | 0.0007366 | 0.001902 | 0.04114 | 0.01272 | 0.01489 | 0.01435 | 114.0 | 0.07531 | 0.0 | 0.0406 | 0.09143 | 992.67 | 271999999.999 | -| WOOUSDT | 0.0005031 | 0.0002587 | 0.00903 | 8.052e-05 | 0.01311 | 0.01053 | 58.85 | 0.04927 | 0.0 | 0.008879 | 0.02413 | 620.83 | 271999999.999 | -| SUSHIUSDT | 0.0007648 | 0.001603 | 0.031 | 0.00656 | 0.01525 | 0.01251 | 103.8 | 0.05312 | 0.0 | 0.03322 | 0.2485 | 1201.67 | 271999999.999 | -| RENUSDT | 0.0005034 | 0.0007908 | 0.03724 | 0.006325 | 0.01593 | 0.01956 | 91.42 | 0.1309 | 0.0 | 0.09767 | 0.2256 | 1162.67 | 271999999.999 | -| CELOUSDT | 0.0005169 | 0.0007947 | 0.04163 | 0.01067 | 0.01158 | 0.01265 | 118.2 | 0.08352 | 0.0 | 0.06207 | 0.138 | 813.83 | 271999999.999 | -| NEARUSDT | 0.0007901 | 0.001302 | 0.02433 | 0.008127 | 0.00804 | 0.007419 | 78.73 | 0.0386 | 0.0 | 0.03054 | 0.1594 | 1160.62 | 271999999.999 | -| APEUSDT | 0.0007561 | 0.001102 | 0.02866 | 0.004878 | 0.006957 | 0.006944 | 66.53 | 0.04366 | 0.0 | 0.03406 | 0.157 | 642.33 | 271999999.999 | -| EDUUSDT | 0.001135 | 0.001197 | 0.02906 | 0.00273 | 0.01148 | 0.009753 | 114.6 | 0.04884 | 0.0 | 0.01217 | 0.05172 | 233.46 | 271999999.999 | -| API3USDT | 0.0006908 | 0.0007763 | 0.0316 | 0.007314 | 0.01255 | 0.01038 | 82.07 | 0.04752 | 0.0 | 0.03284 | 0.09006 | 665.83 | 271999999.999 | -| GRTUSDT | 0.0007784 | 0.001649 | 0.06056 | 0.01284 | 0.01278 | 0.01749 | 108.5 | 0.1145 | 0.0 | 0.09811 | 0.2446 | 1094.67 | 271999999.999 | -| AMBUSDT | 0.001118 | 0.001179 | 0.06722 | 0.02342 | 0.01672 | 0.01714 | 85.22 | 0.104 | 0.0 | 0.09126 | 0.1808 | 264.46 | 271999999.999 | -| BELUSDT | 0.0007241 | 0.001612 | 0.02919 | 0.009198 | 0.01568 | 0.0139 | 118.5 | 0.07827 | 0.0 | 0.06615 | 0.1754 | 1125.67 | 271999999.999 | -| CELRUSDT | 0.0009024 | 0.001867 | 0.03946 | 0.01457 | 0.01445 | 0.01319 | 111.1 | 0.06727 | 0.0 | 0.05924 | 0.1844 | 995.67 | 271999999.999 | -| APTUSDT | 0.0008643 | 0.0004866 | 0.01563 | 0.004684 | 0.008811 | 0.01071 | 60.5 | 0.06917 | 0.0 | 0.04412 | 0.1297 | 426.88 | 271999999.999 | -| DENTUSDT | 0.0006449 | 0.001648 | 0.03127 | 0.007002 | 0.01028 | 0.01038 | 105.6 | 0.06456 | 0.0 | 0.0467 | 0.1069 | 1000.79 | 271999999.999 | -| BALUSDT | 0.0005637 | 0.0004588 | 0.01655 | 0.0008854 | 0.01392 | 0.01032 | 119.9 | 0.04241 | 0.0 | 0.01303 | 0.1913 | 1204.67 | 271999999.999 | -| YFIUSDT | 0.001279 | 0.00256 | 0.02593 | 0.009424 | 0.01029 | 0.01342 | 116.2 | 0.08151 | 0.0 | 0.06461 | 0.203 | 1205.67 | 271999999.999 | -| ATAUSDT | 0.0005288 | 0.0008732 | 0.03533 | 0.01008 | 0.01415 | 0.01276 | 115.8 | 0.06463 | 0.0 | 0.03574 | 0.08007 | 840.83 | 271999999.999 | -| STGUSDT | 0.0005816 | 0.0008275 | 0.02554 | 0.001419 | 0.009975 | 0.008635 | 117.9 | 0.04086 | 0.0 | 0.01109 | 0.02778 | 481.46 | 271999999.999 | -| OCEANUSDT | 0.0009317 | 0.001533 | 0.04047 | 0.01244 | 0.01337 | 0.0129 | 102.4 | 0.06955 | 0.0 | 0.05931 | 0.1755 | 1141.67 | 271999999.999 | -| BLZUSDT | 0.001022 | 0.001175 | 0.02456 | 0.007224 | 0.01369 | 0.01352 | 111.7 | 0.06709 | 0.0 | 0.04477 | 0.2392 | 1188.67 | 271999999.999 | -| SANDUSDT | 0.000806 | 0.001878 | 0.03218 | 0.009284 | 0.008007 | 0.009532 | 86.05 | 0.05914 | 0.0 | 0.05166 | 0.1757 | 1058.67 | 271999999.999 | -| AVAXUSDT | 0.0007567 | 0.001605 | 0.06182 | 0.02143 | 0.01294 | 0.01775 | 117.4 | 0.1048 | 0.0 | 0.09103 | 0.241 | 1182.67 | 271999999.999 | -| SFPUSDT | 0.0008113 | 0.001536 | 0.04084 | 0.0187 | 0.01345 | 0.0149 | 98.75 | 0.08502 | 0.0 | 0.0727 | 0.2032 | 1028.67 | 271999999.999 | -| ONEUSDT | 0.0005331 | 0.001275 | 0.03942 | 0.01096 | 0.01337 | 0.01215 | 90.68 | 0.0692 | 0.0 | 0.05216 | 0.1562 | 1006.67 | 271999999.999 | -| LINAUSDT | 0.000688 | 0.001129 | 0.04384 | 0.008472 | 0.01896 | 0.01784 | 115.8 | 0.1003 | 0.0 | 0.06545 | 0.2073 | 1005.67 | 271999999.999 | -| PHBUSDT | 0.0006551 | 0.0005773 | 0.04249 | 0.0124 | 0.01563 | 0.01304 | 99.48 | 0.06556 | 0.0 | 0.06011 | 0.1124 | 306.38 | 271999999.999 | -| KAVAUSDT | 0.0005478 | 0.0005677 | 0.02381 | 0.009266 | 0.01772 | 0.01598 | 116.6 | 0.07674 | 0.0 | 0.04606 | 0.2363 | 1239.67 | 271999999.999 | -| 1000FLOKIUSDT | 0.001127 | 0.001215 | 0.0371 | 0.0265 | 0.009934 | 0.01145 | 75.05 | 0.09883 | 0.0 | 0.08985 | 0.1428 | 227.29 | 271999999.999 | -| DOGEUSDT | 0.0009267 | 0.002376 | 0.0399 | 0.01238 | 0.007695 | 0.009051 | 107.8 | 0.06876 | 0.0 | 0.06274 | 0.1519 | 1257.58 | 271999999.999 | -| IMXUSDT | 0.000934 | 0.001265 | 0.05426 | 0.01323 | 0.01117 | 0.009279 | 96.48 | 0.04991 | 0.0 | 0.04658 | 0.1045 | 676.83 | 271999999.999 | -| 1INCHUSDT | 0.0007963 | 0.0008923 | 0.01785 | 0.003686 | 0.01149 | 0.009692 | 103.6 | 0.04174 | 0.0 | 0.02105 | 0.2382 | 1089.54 | 271999999.999 | -| XLMUSDT | 0.0006163 | 0.001935 | 0.0276 | 0.007851 | 0.008417 | 0.009055 | 109.2 | 0.05082 | 0.0 | 0.03432 | 0.1274 | 1429.62 | 271999999.999 | -| JOEUSDT | 0.0006699 | 0.0006317 | 0.04414 | 0.01051 | 0.01634 | 0.01273 | 92.8 | 0.06807 | 0.0 | 0.0637 | 0.09338 | 265.46 | 271999999.999 | -| BICOUSDT | 0.001469 | 0.001305 | 0.02197 | 0.0002525 | 0.006643 | 0.005284 | 27.4 | 0.02275 | 0.0 | 0.002764 | 0.004843 | 82.46 | 271999999.999 | -| LITUSDT | 0.0008513 | 0.0009115 | 0.01448 | 0.003443 | 0.01374 | 0.01182 | 108.4 | 0.05176 | 0.0 | 0.02017 | 0.1389 | 1034.67 | 271999999.999 | -| MATICUSDT | 0.001186 | 0.003118 | 0.04686 | 0.02369 | 0.008016 | 0.01196 | 115.5 | 0.08865 | 0.0 | 0.08071 | 0.1877 | 1153.67 | 271999999.999 | -| LDOUSDT | 0.000833 | 0.001023 | 0.02017 | 0.0061 | 0.008334 | 0.006863 | 74.12 | 0.03189 | 0.0 | 0.01932 | 0.07512 | 453.46 | 271999999.999 | -| BLUEBIRDUSDT | 0.000577 | 0.0003467 | 0.02218 | 0.009192 | 0.005505 | 0.004764 | 79.53 | 0.02731 | 0.0 | 0.02546 | 0.06142 | 412.46 | 271999999.999 | -| RLCUSDT | 0.001125 | 0.002763 | 0.0549 | 0.02611 | 0.01418 | 0.01456 | 117.1 | 0.09402 | 0.0 | 0.08477 | 0.2201 | 1236.67 | 271999999.999 | -| VETUSDT | 0.000713 | 0.00179 | 0.03923 | 0.01326 | 0.005823 | 0.007749 | 98.68 | 0.05079 | 0.0 | 0.04462 | 0.163 | 1404.62 | 271999999.999 | -| XVSUSDT | 0.001237 | 0.0008577 | 0.05993 | 0.01873 | 0.0111 | 0.01271 | 90.58 | 0.08893 | 0.0 | 0.07835 | 0.1324 | 250.88 | 271999999.999 | -| OXTUSDT | 0.000988 | 0.001135 | 0.02755 | 0.007438 | 0.006407 | 0.005045 | 38.12 | 0.02048 | 0.0 | 0.007809 | 0.03166 | 130.46 | 271999999.999 | -| SXPUSDT | 0.0005631 | 0.002422 | 0.02748 | 0.006571 | 0.01549 | 0.01342 | 112.1 | 0.06232 | 0.0 | 0.03989 | 0.1667 | 1246.58 | 271999999.999 | -| IDUSDT | 0.001035 | 0.0008201 | 0.03531 | 0.01779 | 0.01289 | 0.0121 | 105.7 | 0.0773 | 0.0 | 0.07135 | 0.1204 | 271.38 | 271999999.999 | -| AGLDUSDT | 0.001001 | 0.0009461 | 0.03779 | 0.001621 | 0.01119 | 0.009658 | 94.63 | 0.05035 | 0.0 | 0.02936 | 0.05437 | 143.88 | 271999999.999 | -| ANKRUSDT | 0.0008983 | 0.00149 | 0.02097 | 0.007579 | 0.007878 | 0.007998 | 93.6 | 0.03897 | 0.0 | 0.0273 | 0.2346 | 1057.67 | 271999999.999 | -| CHZUSDT | 0.0005143 | 0.001422 | 0.01554 | 7.45e-05 | 0.0105 | 0.008864 | 105.1 | 0.04146 | 0.0 | 0.0121 | 0.08648 | 1062.67 | 271999999.999 | -| KEYUSDT | 0.001183 | 0.001469 | 0.02954 | 0.01263 | 0.008385 | 0.008611 | 69.4 | 0.05271 | 0.0 | 0.04383 | 0.1525 | 209.46 | 271999999.999 | -| GALAUSDT | 0.0008731 | 0.001319 | 0.0304 | 0.007175 | 0.008225 | 0.008316 | 93.65 | 0.04452 | 0.0 | 0.03408 | 0.1219 | 822.83 | 271999999.999 | -| MAGICUSDT | 0.000651 | 0.0006474 | 0.00983 | 0.000152 | 0.01147 | 0.008753 | 77.87 | 0.03454 | 0.0 | 0.003007 | 0.01311 | 328.83 | 271999999.999 | -| RUNEUSDT | 0.0008948 | 0.002208 | 0.05267 | 0.01954 | 0.009698 | 0.01439 | 113.5 | 0.09705 | 0.0 | 0.08726 | 0.2205 | 1201.67 | 271999999.999 | -| CFXUSDT | 0.0009893 | 0.0009657 | 0.03207 | 0.01806 | 0.009223 | 0.008993 | 76.35 | 0.05481 | 0.0 | 0.05173 | 0.09057 | 302.38 | 271999999.999 | -| DOTUSDT | 0.0009195 | 0.001907 | 0.06498 | 0.02319 | 0.00915 | 0.01207 | 108.7 | 0.07759 | 0.0 | 0.07175 | 0.2499 | 1214.67 | 271999999.999 | -| ALGOUSDT | 0.0008859 | 0.001714 | 0.03664 | 0.01074 | 0.01049 | 0.009853 | 98.77 | 0.04652 | 0.0 | 0.03353 | 0.2192 | 1281.58 | 271999999.999 | -| COTIUSDT | 0.0007139 | 0.00155 | 0.04692 | 0.01466 | 0.01055 | 0.01064 | 87.92 | 0.06609 | 0.0 | 0.06011 | 0.2337 | 1014.67 | 271999999.999 | -| RADUSDT | 0.001234 | 0.000999 | 0.03935 | 0.008575 | 0.007922 | 0.007213 | 73.68 | 0.05275 | 0.0 | 0.04871 | 0.1038 | 223.46 | 271999999.999 | -| IOTAUSDT | 0.0005291 | 0.001163 | 0.01065 | 0.002764 | 0.01088 | 0.008683 | 103.7 | 0.03546 | 0.0 | 0.007703 | 0.07122 | 1406.62 | 271999999.999 | -| NEOUSDT | 0.0005429 | 0.0007428 | 0.01193 | 0.001403 | 0.01076 | 0.008592 | 85.53 | 0.03447 | 0.0 | 0.006835 | 0.06866 | 1401.62 | 271999999.999 | -| BCHUSDT | 0.0005548 | 0.001486 | 0.01847 | 0.0003134 | 0.0113 | 0.008951 | 94.93 | 0.03665 | 0.0 | 0.00613 | 0.06025 | 1448.96 | 271999999.999 | -| RVNUSDT | 0.0005409 | 0.001729 | 0.02556 | 0.009541 | 0.009595 | 0.008138 | 92.97 | 0.04143 | 0.0 | 0.03128 | 0.1307 | 1029.67 | 271999999.999 | -| ANTUSDT | 0.0007517 | 0.0005141 | 0.01395 | 0.002375 | 0.009066 | 0.008088 | 68.42 | 0.04118 | 0.0 | 0.01403 | 0.05472 | 722.79 | 271999999.999 | -| CVXUSDT | 0.001163 | 0.00053 | 0.03504 | 0.01692 | 0.01052 | 0.008995 | 79.05 | 0.04785 | 0.0 | 0.04227 | 0.07627 | 453.46 | 271999999.999 | -| CTKUSDT | 0.0006786 | 0.00176 | 0.02129 | 0.003612 | 0.01249 | 0.01255 | 94.27 | 0.05662 | 0.0 | 0.03096 | 0.1985 | 1124.67 | 271999999.999 | -| COMPUSDT | 0.0009022 | 0.001326 | 0.04943 | 0.007418 | 0.01239 | 0.01145 | 91.32 | 0.0622 | 0.0 | 0.04884 | 0.2361 | 1267.58 | 271999999.999 | -| GMXUSDT | 0.0007224 | 0.0006613 | 0.07421 | 0.02067 | 0.01079 | 0.01218 | 72.05 | 0.06109 | 0.0 | 0.04258 | 0.05795 | 305.38 | 271999999.999 | -| MKRUSDT | 0.001064 | 0.002012 | 0.06631 | 0.01162 | 0.009623 | 0.01171 | 95.9 | 0.07667 | 0.0 | 0.06762 | 0.222 | 1223.67 | 271999999.999 | -| OPUSDT | 0.0009202 | 0.000856 | 0.03449 | 0.01325 | 0.01615 | 0.01385 | 104.7 | 0.07736 | 0.0 | 0.06837 | 0.1041 | 566.38 | 271999999.999 | -| CHRUSDT | 0.0005859 | 0.001326 | 0.04814 | 0.01202 | 0.0123 | 0.01364 | 105.3 | 0.0867 | 0.0 | 0.07163 | 0.2165 | 1012.67 | 271999999.999 | -| THETAUSDT | 0.0008141 | 0.002283 | 0.04711 | 0.01147 | 0.012 | 0.01354 | 107.5 | 0.08284 | 0.0 | 0.06617 | 0.2247 | 1301.62 | 271999999.999 | -| ARBUSDT | 0.001331 | 0.001229 | 0.05976 | 0.02081 | 0.008008 | 0.007847 | 112.4 | 0.05297 | 0.0 | 0.05144 | 0.0898 | 271.33 | 271999999.999 | -| GMTUSDT | 0.0006429 | 0.0003581 | 0.01201 | 0.0001421 | 0.01263 | 0.01142 | 100.3 | 0.0652 | 0.0 | 0.01503 | 0.02319 | 644.79 | 271999999.999 | -| SKLUSDT | 0.0009131 | 0.001837 | 0.06297 | 0.01886 | 0.01579 | 0.01498 | 109.6 | 0.08353 | 0.0 | 0.06965 | 0.2397 | 1106.67 | 271999999.999 | -| SSVUSDT | 0.0009834 | 0.0007746 | 0.02651 | 0.00328 | 0.01205 | 0.01007 | 79.2 | 0.05962 | 0.0 | 0.0379 | 0.07882 | 298.46 | 271999999.999 | -| LQTYUSDT | 0.001277 | 0.001005 | 0.02947 | 0.01574 | 0.01371 | 0.01245 | 80.17 | 0.07254 | 0.0 | 0.06229 | 0.1384 | 284.46 | 271999999.999 | -| ASTRUSDT | 0.001214 | 0.001048 | 0.07876 | 0.02422 | 0.0142 | 0.01217 | 109.8 | 0.06493 | 0.0 | 0.06095 | 0.1204 | 308.88 | 271999999.999 | -| FILUSDT | 0.0007729 | 0.001409 | 0.03015 | 0.004603 | 0.006533 | 0.00861 | 100.6 | 0.04721 | 0.0 | 0.0314 | 0.144 | 1158.71 | 271999999.999 | -| PEOPLEUSDT | 0.0005747 | 0.0006545 | 0.01394 | 0.004076 | 0.01473 | 0.01199 | 100.1 | 0.05096 | 0.0 | 0.01864 | 0.1735 | 725.79 | 271999999.999 | -| HOOKUSDT | 0.001191 | 0.001179 | 0.08115 | 0.03971 | 0.01248 | 0.01283 | 89.45 | 0.0852 | 0.0 | 0.07619 | 0.1287 | 330.83 | 271999999.999 | -| NMRUSDT | 0.001091 | 0.001048 | 0.03665 | 0.009579 | 0.008405 | 0.009517 | 58.75 | 0.0689 | 0.0 | 0.06003 | 0.1078 | 180.46 | 271999999.999 | -| ATOMUSDT | 0.0005896 | 0.001448 | 0.03333 | 0.006246 | 0.009986 | 0.008686 | 92.25 | 0.04728 | 0.0 | 0.02659 | 0.1232 | 1411.46 | 271999999.999 | -| NKNUSDT | 0.001057 | 0.002137 | 0.07022 | 0.02599 | 0.0117 | 0.01364 | 102.0 | 0.09238 | 0.0 | 0.0841 | 0.2234 | 984.67 | 271999999.999 | -| ALICEUSDT | 0.0009642 | 0.002248 | 0.05804 | 0.02213 | 0.01211 | 0.01324 | 110.3 | 0.0827 | 0.0 | 0.07321 | 0.2247 | 1008.83 | 271999999.999 | -| UNFIUSDT | 0.0009838 | 0.001312 | 0.04069 | 0.01434 | 0.01732 | 0.01788 | 113.0 | 0.1119 | 0.0 | 0.09661 | 0.236 | 1033.67 | 271999999.999 | -| CKBUSDT | 0.001083 | 0.001018 | 0.05868 | 0.003664 | 0.01046 | 0.008598 | 99.52 | 0.04882 | 0.0 | 0.03293 | 0.06056 | 294.46 | 271999999.999 | -| STMXUSDT | 0.0007678 | 0.001155 | 0.06322 | 0.02643 | 0.01453 | 0.01725 | 113.5 | 0.1087 | 0.0 | 0.09541 | 0.217 | 1002.67 | 271999999.999 | -| ARPAUSDT | 0.000963 | 0.001473 | 0.05149 | 0.01673 | 0.009053 | 0.01097 | 88.6 | 0.07644 | 0.0 | 0.06986 | 0.1346 | 791.83 | 271999999.999 | -| ZRXUSDT | 0.0008222 | 0.001198 | 0.03501 | 0.01495 | 0.0114 | 0.01455 | 78.67 | 0.07985 | 0.0 | 0.06592 | 0.24 | 1273.58 | 271999999.999 | -| ICPUSDT | 0.00119 | 0.001166 | 0.04481 | 0.01167 | 0.007503 | 0.006471 | 98.98 | 0.03448 | 0.0 | 0.03032 | 0.08112 | 448.88 | 271999999.999 | -| ZILUSDT | 0.0005915 | 0.0006317 | 0.01492 | 0.003438 | 0.008987 | 0.009561 | 75.97 | 0.05096 | 0.0 | 0.02318 | 0.1321 | 1279.58 | 271999999.999 | -| REEFUSDT | 0.0009867 | 0.001729 | 0.0325 | 0.0072 | 0.01126 | 0.01139 | 108.2 | 0.06749 | 0.0 | 0.0458 | 0.1493 | 1030.67 | 271999999.999 | -| TRUUSDT | 0.001311 | 0.0007495 | 0.03531 | 0.02458 | 0.01415 | 0.01381 | 80.17 | 0.08334 | 0.0 | 0.07684 | 0.1213 | 287.46 | 271999999.999 | -| LINKUSDT | 0.001056 | 0.002171 | 0.06395 | 0.01504 | 0.00966 | 0.01228 | 108.0 | 0.06566 | 0.0 | 0.05526 | 0.2255 | 1432.62 | 271999999.999 | -| STORJUSDT | 0.0008807 | 0.0013 | 0.03264 | 0.01492 | 0.01355 | 0.0133 | 118.4 | 0.07144 | 0.0 | 0.06154 | 0.1858 | 1189.67 | 271999999.999 | -| KSMUSDT | 0.000727 | 0.0009455 | 0.02868 | 0.01584 | 0.01319 | 0.01279 | 116.6 | 0.06823 | 0.0 | 0.06237 | 0.2341 | 1160.67 | 271999999.999 | -| XRPUSDT | 0.0009968 | 0.001741 | 0.02158 | 0.005313 | 0.008165 | 0.007838 | 108.6 | 0.03877 | 0.0 | 0.02209 | 0.228 | 1443.62 | 271999999.999 | -| ZECUSDT | 0.0005564 | 0.0009185 | 0.02648 | 0.008185 | 0.01171 | 0.01109 | 115.6 | 0.0541 | 0.0 | 0.03953 | 0.2007 | 1413.62 | 271999999.999 | -| TLMUSDT | 0.001152 | 0.0004187 | 0.007039 | 0.0 | 0.007617 | 0.006369 | 87.67 | 0.02596 | 0.0 | 0.002012 | 0.009863 | 264.46 | 271999999.999 | -| WAVESUSDT | 0.0007127 | 0.001231 | 0.0343 | 0.01431 | 0.009699 | 0.01279 | 86.42 | 0.079 | 0.0 | 0.06927 | 0.1989 | 1224.67 | 271999999.999 | -| EOSUSDT | 0.0002977 | 0.0007578 | 0.0168 | 0.0002139 | 0.01121 | 0.009783 | 116.5 | 0.04427 | 0.0 | 0.009528 | 0.08995 | 1441.62 | 272000000.0 | -| DUSKUSDT | 0.0002487 | 0.0003339 | 0.01926 | 0.0 | 0.01648 | 0.01238 | 75.5 | 0.05372 | 0.0 | 0.01544 | 0.04794 | 711.83 | 272000000.0 | -| CTSIUSDT | 0.0003624 | 0.0005182 | 0.02065 | 0.0003716 | 0.01356 | 0.01109 | 99.12 | 0.05349 | 0.0 | 0.01686 | 0.1174 | 784.83 | 272000000.0 | -| FLMUSDT | 0.0003664 | 0.0003763 | 0.01104 | 0.002882 | 0.01264 | 0.01067 | 96.17 | 0.04898 | 0.0 | 0.02147 | 0.1801 | 1176.67 | 272000000.0 | -| BTCUSDT | 0.0002393 | 0.0006622 | 0.03126 | 0.01057 | 0.006523 | 0.007716 | 119.3 | 0.04216 | 0.0 | 0.03651 | 0.1334 | 1448.96 | 272000000.0 | -| AXSUSDT | 0.0004368 | 0.001247 | 0.04645 | 0.01176 | 0.01345 | 0.01199 | 99.42 | 0.0761 | 0.0 | 0.06446 | 0.1329 | 1123.67 | 272000000.0 | -| QTUMUSDT | 0.0004516 | 0.0008355 | 0.04396 | 0.005517 | 0.01506 | 0.01528 | 105.4 | 0.0838 | 0.0 | 0.06258 | 0.2494 | 1398.62 | 272000000.0 | -| LPTUSDT | 0.0001504 | 0.0002037 | 0.01316 | 0.00355 | 0.0134 | 0.01153 | 101.0 | 0.0677 | 0.0 | 0.03307 | 0.1058 | 768.83 | 272000000.0 | -| AUDIOUSDT | 0.0004296 | 0.0008638 | 0.03336 | 0.01328 | 0.01148 | 0.009786 | 104.1 | 0.04561 | 0.0 | 0.03234 | 0.1806 | 852.83 | 272000000.0 | -| TRXUSDT | 0.0002664 | 0.001143 | 0.02838 | 0.01797 | 0.008295 | 0.009654 | 114.5 | 0.05692 | 0.0 | 0.0535 | 0.1233 | 1434.62 | 272000000.0 | -| IOSTUSDT | 0.0004843 | 0.001051 | 0.03777 | 0.00542 | 0.01314 | 0.01246 | 119.7 | 0.05777 | 0.0 | 0.04159 | 0.2463 | 1397.62 | 272000000.0 | -| JASMYUSDT | 0.0003995 | 0.000531 | 0.01417 | 0.003559 | 0.01119 | 0.009023 | 95.45 | 0.03874 | 0.0 | 0.01759 | 0.07876 | 608.83 | 272000000.0 | -| BNBUSDT | 0.0004179 | 0.001333 | 0.0185 | 0.003928 | 0.006507 | 0.006058 | 112.1 | 0.02873 | 0.0 | 0.01594 | 0.1046 | 1408.62 | 272000000.0 | -| ADAUSDT | 0.0004431 | 0.001363 | 0.01852 | 0.005157 | 0.009634 | 0.008266 | 96.35 | 0.03962 | 0.0 | 0.02119 | 0.1501 | 1418.62 | 272000000.0 | -| USDCUSDT | -6.2e-10 | -6.2e-09 | 0.008638 | 0.0 | 0.002265 | 0.0005769 | nan | 0.007219 | 0.8 | 4.476e-05 | 4.576e-05 | 282.25 | 272000000.0 | -| DASHUSDT | 0.0002592 | 0.0005766 | 0.0199 | 0.002604 | 0.01587 | 0.01396 | 109.8 | 0.0693 | 0.0 | 0.03763 | 0.2013 | 1414.62 | 272000000.0 | -| ENSUSDT | 0.0004489 | 0.0008516 | 0.03639 | 0.00604 | 0.01261 | 0.01107 | 98.38 | 0.05924 | 0.0 | 0.03797 | 0.0956 | 749.83 | 272000000.0 | -| HIGHUSDT | 0.0004839 | 0.0005871 | 0.0302 | 0.008731 | 0.01473 | 0.01461 | 72.77 | 0.09155 | 0.0 | 0.05712 | 0.0849 | 315.88 | 272000000.0 | -| ONTUSDT | 0.0003373 | 0.0007203 | 0.0343 | 0.006097 | 0.01425 | 0.0136 | 119.9 | 0.07882 | 0.0 | 0.05289 | 0.1494 | 1407.62 | 272000000.0 | -| DARUSDT | 0.0003673 | 0.0005656 | 0.0129 | 0.0008474 | 0.01105 | 0.008781 | 99.35 | 0.03557 | 0.0 | 0.008525 | 0.04676 | 599.83 | 272000000.0 | -| BATUSDT | 0.0003375 | 0.0008072 | 0.02665 | 0.009037 | 0.01146 | 0.01081 | 111.6 | 0.05122 | 0.0 | 0.03115 | 0.1694 | 1405.62 | 272000000.0 | -| XMRUSDT | 0.0003756 | 0.001068 | 0.02887 | 0.0106 | 0.005898 | 0.007095 | 68.8 | 0.03956 | 0.0 | 0.03617 | 0.2386 | 1415.62 | 272000000.0 | -| TUSDT | 0.0002167 | 0.0001989 | 0.01484 | 0.0 | 0.01609 | 0.01159 | 96.43 | 0.04998 | 0.0 | 0.01066 | 0.03336 | 321.42 | 272000000.0 | -| XTZUSDT | 0.0004698 | 0.001417 | 0.02602 | 0.009249 | 0.01074 | 0.009055 | 111.4 | 0.04343 | 0.0 | 0.03158 | 0.1042 | 1412.62 | 272000000.0 | -| ARUSDT | 0.0003094 | 0.000457 | 0.02114 | 0.006033 | 0.01005 | 0.009747 | 99.03 | 0.05319 | 0.0 | 0.02559 | 0.104 | 812.83 | 272000000.0 | -| DYDXUSDT | 0.0004405 | 0.0006846 | 0.0268 | 0.0002006 | 0.01269 | 0.01136 | 109.8 | 0.06089 | 0.0 | 0.02668 | 0.08407 | 830.83 | 272000000.0 | -| FOOTBALLUSDT | 0.0002105 | 0.0004132 | 0.0299 | 0.009046 | 0.0073 | 0.007896 | 88.28 | 0.05588 | 0.0 | 0.04522 | 0.09267 | 474.83 | 272000000.0 | -| MASKUSDT | 0.000407 | 0.0007793 | 0.02107 | 0.008719 | 0.01185 | 0.01003 | 98.08 | 0.04633 | 0.0 | 0.0329 | 0.1311 | 844.83 | 272000000.0 | -| LTCUSDT | 0.000482 | 0.000912 | 0.02474 | 0.007389 | 0.008067 | 0.01122 | 100.2 | 0.05583 | 0.0 | 0.04466 | 0.2401 | 1440.62 | 272000000.0 | -| DGBUSDT | 0.0004618 | 0.0008911 | 0.03576 | 0.01015 | 0.009372 | 0.01557 | 117.5 | 0.1048 | 0.0 | 0.08372 | 0.2441 | 972.83 | 272000000.0 | -| UNIUSDT | 0.0004855 | 0.00101 | 0.02912 | 0.004634 | 0.01224 | 0.01029 | 96.12 | 0.03879 | 0.0 | 0.01857 | 0.2466 | 1187.67 | 272000000.0 | -| 1000XECUSDT | 0.0003202 | 0.0004143 | 0.01329 | 0.002741 | 0.01117 | 0.009352 | 122.8 | 0.03886 | 0.0 | 0.01254 | 0.1261 | 823.83 | 272280000.0 | -| FLOWUSDT | 0.0001833 | 0.0002767 | 0.0278 | 0.0009588 | 0.01717 | 0.01291 | 124.6 | 0.06002 | 0.0 | 0.02627 | 0.1083 | 677.83 | 272461666.666 | -| LUNA2USDT | 0.0005464 | 0.0005899 | 0.0101 | 0.001645 | 0.01294 | 0.01079 | 136.4 | 0.04609 | 0.0 | 0.008807 | 0.1365 | 465.83 | 273639999.999 | -| ICXUSDT | 0.0004897 | 0.0008481 | 0.0305 | 0.008034 | 0.01316 | 0.01189 | 147.2 | 0.05545 | 0.0 | 0.04065 | 0.1832 | 1190.67 | 274723333.333 | -| IOTXUSDT | 0.0001074 | 0.0001929 | 0.01773 | 0.008955 | 0.01335 | 0.01239 | 152.4 | 0.06805 | 0.0 | 0.0515 | 0.1227 | 859.83 | 275236666.667 | -| BNXUSDT | 0.0003858 | 0.000529 | 0.02532 | 6.935e-05 | 0.01356 | 0.0115 | 160.8 | 0.06327 | 0.0 | 0.02534 | 0.0348 | 300.38 | 276081666.666 | -| C98USDT | 0.0002683 | 0.0004091 | 0.02936 | 0.003155 | 0.01822 | 0.01623 | 166.4 | 0.09893 | 0.0 | 0.06913 | 0.2065 | 847.83 | 276640000.0 | -| BTCDOMUSDT | 8.582e-05 | 9.37e-05 | 0.03261 | 0.009376 | 0.007303 | 0.005619 | 182.2 | 0.03592 | 0.0 | 0.03272 | 0.05801 | 911.83 | 278216666.667 | -| PERPUSDT | 0.0006848 | 0.0005392 | 0.07032 | 0.04409 | 0.01814 | 0.01548 | 253.3 | 0.07784 | 0.0 | 0.07216 | 0.09314 | 288.46 | 285334999.999 | -| GTCUSDT | 0.0004747 | 0.0007534 | 0.1188 | 0.04956 | 0.02501 | 0.03314 | 279.9 | 0.189 | 0.0 | 0.1584 | 0.2309 | 921.83 | 293833991.563 | -| BAKEUSDT | 0.0004126 | 0.0004645 | 0.05348 | 0.03829 | 0.01946 | 0.02768 | 344.0 | 0.2122 | 0.0 | 0.1742 | 0.2697 | 944.67 | 321525702.906 | -| TOMOUSDT | 0.000691 | 0.001249 | 0.05582 | 0.01052 | 0.01815 | 0.02083 | 854.4 | 0.145 | 0.0 | 0.09969 | 0.1941 | 1163.67 | 345443333.333 | -| KLAYUSDT | 0.0005474 | 0.0009207 | 0.1367 | 0.1196 | 0.04529 | 0.08003 | 1141.0 | 0.4428 | 0.0 | 0.3068 | 0.3461 | 798.83 | 490828625.062 | -| COCOSUSDT | 7.313e-05 | 0.0007313 | 0.01791 | 0.0128 | 40.01 | 0.4065 | 5007.0 | 0.05432 | 0.4 | 0.05077 | 0.1295 | 301.38 | 760676666.667 | -| HNTUSDT | 0.0001548 | 0.0007469 | 0.02479 | 0.0136 | 0.01139 | 0.01244 | 6590.0 | 0.07381 | 0.0 | 0.06747 | 0.2207 | 1177.67 | 919003333.333 | -| CVCUSDT | 0.0001046 | 0.0008624 | 0.0161 | 0.006068 | 0.01072 | 0.01387 | 9259.0 | 0.06878 | 0.0 | 0.05089 | 0.2079 | 1133.67 | 1185896666.67 | -| SRMUSDT | 6.533e-05 | 0.0004292 | 0.0194 | 0.0008153 | 0.01794 | 0.01369 | 9600.0 | 0.06495 | 0.0 | 0.02811 | 0.1649 | 1200.88 | 1220025000.0 | -| RAYUSDT | 6.155e-05 | 0.0004797 | 0.02327 | 0.01035 | 20.01 | 0.215 | 9600.0 | 0.08708 | 0.2 | 0.07488 | 0.2113 | 851.83 | 1220043333.33 | -| FTTUSDT | 3.356e-05 | 0.0003356 | 0.01602 | 0.0009095 | 40.01 | 0.4122 | 9620.0 | 0.08114 | 0.4 | 0.03483 | 0.4411 | 613.83 | 1413029628.54 | -| BTSUSDT | 3.547e-05 | 0.0003262 | 0.01896 | 0.01097 | 20.01 | 0.2119 | 11730.0 | 0.09622 | 0.2 | 0.08284 | 0.1949 | 1051.67 | 1432696666.67 | -| SCUSDT | 7.299e-05 | 0.0007299 | 0.01237 | 0.005551 | 20.01 | 0.2101 | 13220.0 | 0.05592 | 0.2 | 0.03519 | 0.1339 | 981.67 | 1581571666.67 | -| BTCSTUSDT | 1.554e-06 | 1.554e-05 | 0.0001256 | 0.0 | 60.0 | 0.6029 | 24310.0 | 0.008261 | 0.6 | 0.0002078 | 0.006803 | 1020.67 | 2690905000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKMUSDT | 0.004079 | 0.002788 | 0.05583 | 0.02039 | 0.009527 | 0.01008 | 41.62 | 0.06386 | 0.0 | 0.05449 | 0.1276 | 144.88 | 271999999.996 | -| HFTUSDT | 0.003964 | 0.001762 | 0.06009 | 0.04045 | 0.008362 | 0.008323 | 83.37 | 0.04951 | 0.0 | 0.0527 | 0.07437 | 257.46 | 271999999.996 | -| MAVUSDT | 0.003985 | 0.001826 | 0.02879 | 0.008812 | 0.01205 | 0.009568 | 80.43 | 0.04727 | 0.0 | 0.04293 | 0.09193 | 173.46 | 271999999.996 | -| PENDLEUSDT | 0.004062 | 0.002191 | 0.05467 | 0.02102 | 0.0114 | 0.00921 | 92.38 | 0.04221 | 0.0 | 0.04034 | 0.0675 | 144.88 | 271999999.996 | -| WLDUSDT | 0.004156 | 0.00159 | 0.01896 | 0.002216 | 0.01552 | 0.01348 | 76.52 | 0.06885 | 0.0 | 0.01901 | 0.04782 | 148.46 | 271999999.996 | -| FRONTUSDT | 0.003327 | 0.002172 | 0.03965 | 0.02634 | 0.01232 | 0.01008 | 49.4 | 0.05336 | 0.0 | 0.05322 | 0.117 | 88.38 | 271999999.997 | -| EDUUSDT | 0.002618 | 0.001892 | 0.04942 | 0.004621 | 0.00911 | 0.008786 | 68.32 | 0.05485 | 0.0 | 0.04171 | 0.1219 | 233.46 | 271999999.997 | -| GLMRUSDT | 0.002941 | 0.00186 | 0.03992 | 0.02265 | 0.008096 | 0.006389 | 57.9 | 0.03844 | 0.0 | 0.04 | 0.0581 | 84.92 | 271999999.997 | -| DODOXUSDT | 0.002585 | 0.001633 | 0.01667 | 0.00234 | 0.00869 | 0.007011 | 42.53 | 0.02792 | 0.0 | 0.005463 | 0.02625 | 133.46 | 271999999.997 | -| 1000FLOKIUSDT | 0.003401 | 0.001511 | 0.01958 | 0.00251 | 0.009721 | 0.008831 | 82.33 | 0.04051 | 0.0 | 0.01593 | 0.1221 | 227.29 | 271999999.997 | -| BICOUSDT | 0.003168 | 0.001699 | 0.06101 | 0.03641 | 0.009433 | 0.01081 | 36.88 | 0.0768 | 0.0 | 0.08369 | 0.1432 | 82.46 | 271999999.997 | -| AGLDUSDT | 0.003395 | 0.002145 | 0.03027 | 0.008973 | 0.01039 | 0.01121 | 62.53 | 0.05538 | 0.0 | 0.04722 | 0.2027 | 143.88 | 271999999.997 | -| BLURUSDT | 0.002569 | 0.001536 | 0.02684 | 0.01368 | 0.009235 | 0.01179 | 59.23 | 0.08345 | 0.0 | 0.09193 | 0.1868 | 235.46 | 271999999.997 | -| COMBOUSDT | 0.003007 | 0.001626 | 0.0364 | 0.02099 | 0.009553 | 0.00847 | 70.92 | 0.05238 | 0.0 | 0.05563 | 0.07308 | 200.46 | 271999999.997 | -| UMAUSDT | 0.001892 | 0.001033 | 0.05476 | 0.01422 | 0.009978 | 0.01157 | 86.12 | 0.07348 | 0.0 | 0.07676 | 0.2108 | 223.46 | 271999999.998 | -| TRBUSDT | 0.001804 | 0.001159 | 0.02302 | 0.00732 | 0.01618 | 0.01448 | 82.05 | 0.07406 | 0.0 | 0.03475 | 0.2312 | 1202.67 | 271999999.998 | -| FETUSDT | 0.002195 | 0.001635 | 0.02956 | 0.004897 | 0.01197 | 0.009811 | 103.5 | 0.04379 | 0.0 | 0.01933 | 0.09075 | 336.88 | 271999999.998 | -| LUNA2USDT | 0.001762 | 0.001205 | 0.02683 | 0.001842 | 0.006466 | 0.007385 | 41.25 | 0.05916 | 0.0 | 0.04823 | 0.2214 | 465.83 | 271999999.998 | -| BLZUSDT | 0.001918 | 0.001283 | 0.01776 | 0.005661 | 0.0137 | 0.01141 | 109.8 | 0.05378 | 0.0 | 0.03854 | 0.2421 | 1188.67 | 271999999.998 | -| HIGHUSDT | 0.001651 | 0.002013 | 0.06803 | 0.02403 | 0.01176 | 0.01378 | 73.42 | 0.08658 | 0.0 | 0.09425 | 0.137 | 315.88 | 271999999.998 | -| OXTUSDT | 0.0019 | 0.001763 | 0.01679 | 0.003192 | 0.006945 | 0.005111 | 46.2 | 0.02129 | 0.0 | 0.005481 | 0.01782 | 130.46 | 271999999.998 | -| IDUSDT | 0.001609 | 0.001413 | 0.02019 | 0.003484 | 0.007247 | 0.006591 | 58.17 | 0.03725 | 0.0 | 0.03023 | 0.1814 | 271.38 | 271999999.998 | -| SEIUSDT | 0.002182 | 0.001272 | 0.02981 | 0.01591 | 0.01105 | 0.01071 | 112.0 | 0.08673 | 0.0 | 0.09534 | 0.1472 | 124.88 | 271999999.998 | -| RADUSDT | 0.001828 | 0.001639 | 0.0272 | 0.009059 | 0.004641 | 0.005003 | 37.37 | 0.03247 | 0.0 | 0.03328 | 0.1707 | 223.46 | 271999999.998 | -| TUSDT | 0.001606 | 0.001045 | 0.02955 | 0.01256 | 0.008507 | 0.008112 | 62.37 | 0.04134 | 0.0 | 0.03876 | 0.1205 | 321.42 | 271999999.998 | -| SUIUSDT | 0.001723 | 0.001195 | 0.03414 | 0.005462 | 0.008055 | 0.00784 | 65.7 | 0.04378 | 0.0 | 0.03165 | 0.06916 | 230.29 | 271999999.998 | -| YGGUSDT | 0.002342 | 0.002744 | 0.0647 | 0.02204 | 0.008691 | 0.009394 | 44.25 | 0.06176 | 0.0 | 0.06517 | 0.1002 | 136.83 | 271999999.998 | -| LQTYUSDT | 0.00159 | 0.001996 | 0.06019 | 0.0003368 | 0.01109 | 0.01169 | 75.15 | 0.07592 | 0.0 | 0.05491 | 0.129 | 284.46 | 271999999.998 | -| HOOKUSDT | 0.002191 | 0.002115 | 0.06185 | 0.0173 | 0.01063 | 0.01173 | 58.85 | 0.06742 | 0.0 | 0.0666 | 0.1194 | 330.83 | 271999999.998 | -| STMXUSDT | 0.001785 | 0.001766 | 0.03555 | 0.01736 | 0.01201 | 0.01117 | 118.3 | 0.07304 | 0.0 | 0.08046 | 0.2274 | 1002.67 | 271999999.998 | -| MDTUSDT | 0.002067 | 0.001432 | 0.02298 | 0.009903 | 0.009387 | 0.01045 | 66.95 | 0.06095 | 0.0 | 0.06066 | 0.1995 | 172.46 | 271999999.998 | -| XEMUSDT | 0.001151 | 0.001692 | 0.05004 | 0.02693 | 0.00912 | 0.01093 | 113.0 | 0.07724 | 0.0 | 0.08551 | 0.2472 | 1021.67 | 271999999.999 | -| AAVEUSDT | 0.0005216 | 0.0008082 | 0.02399 | 0.009518 | 0.01474 | 0.01233 | 109.5 | 0.06408 | 0.0 | 0.05969 | 0.1683 | 1158.67 | 271999999.999 | -| LEVERUSDT | 0.001031 | 0.001507 | 0.04625 | 0.003827 | 0.00852 | 0.008482 | 44.5 | 0.05083 | 0.0 | 0.03331 | 0.09493 | 264.46 | 271999999.999 | -| BNTUSDT | 0.001194 | 0.002022 | 0.02244 | 0.004656 | 0.009154 | 0.007508 | 47.45 | 0.03109 | 0.0 | 0.01618 | 0.04712 | 131.46 | 271999999.999 | -| CTSIUSDT | 0.0005037 | 0.000874 | 0.02147 | 0.007129 | 0.01146 | 0.009837 | 89.73 | 0.0485 | 0.0 | 0.03564 | 0.1297 | 784.83 | 271999999.999 | -| XVGUSDT | 0.001403 | 0.002313 | 0.03038 | 0.01463 | 0.007637 | 0.007212 | 47.03 | 0.04216 | 0.0 | 0.04439 | 0.09621 | 167.46 | 271999999.999 | -| OMGUSDT | 0.000683 | 0.001064 | 0.02746 | 0.01292 | 0.01358 | 0.01276 | 114.5 | 0.07229 | 0.0 | 0.07529 | 0.2352 | 1265.58 | 271999999.999 | -| MINAUSDT | 0.001208 | 0.0008716 | 0.02925 | 0.004779 | 0.01123 | 0.009291 | 109.6 | 0.05085 | 0.0 | 0.0211 | 0.1254 | 315.5 | 271999999.999 | -| IDEXUSDT | 0.001205 | 0.001346 | 0.0353 | 0.01583 | 0.007624 | 0.007318 | 56.38 | 0.04347 | 0.0 | 0.04595 | 0.09921 | 230.46 | 271999999.999 | -| ACHUSDT | 0.0009774 | 0.001148 | 0.03119 | 0.002746 | 0.01188 | 0.009951 | 88.13 | 0.05208 | 0.0 | 0.02374 | 0.07669 | 300.38 | 271999999.999 | -| FLMUSDT | 0.00132 | 0.0008936 | 0.01876 | 0.004185 | 0.01587 | 0.01408 | 106.1 | 0.07471 | 0.0 | 0.03913 | 0.2263 | 1176.67 | 271999999.999 | -| QTUMUSDT | 0.0005692 | 0.000963 | 0.03743 | 0.01371 | 0.01261 | 0.0128 | 96.73 | 0.06898 | 0.0 | 0.07102 | 0.2359 | 1398.62 | 271999999.999 | -| RSRUSDT | 0.001114 | 0.002265 | 0.03938 | 0.0212 | 0.01303 | 0.01311 | 104.3 | 0.07544 | 0.0 | 0.0807 | 0.2187 | 1156.67 | 271999999.999 | -| MANAUSDT | 0.0007748 | 0.001705 | 0.03476 | 0.01522 | 0.01027 | 0.01057 | 97.27 | 0.05663 | 0.0 | 0.05854 | 0.2241 | 1009.67 | 271999999.999 | -| ROSEUSDT | 0.00113 | 0.001241 | 0.04158 | 0.01878 | 0.01008 | 0.01019 | 100.9 | 0.06041 | 0.0 | 0.06474 | 0.1722 | 718.83 | 271999999.999 | -| HBARUSDT | 0.0008357 | 0.001311 | 0.0503 | 0.01167 | 0.01203 | 0.01171 | 115.8 | 0.07341 | 0.0 | 0.06644 | 0.2333 | 1007.67 | 271999999.999 | -| GALUSDT | 0.001269 | 0.001866 | 0.03098 | 0.01738 | 0.0112 | 0.009593 | 112.8 | 0.04664 | 0.0 | 0.04823 | 0.1065 | 593.38 | 271999999.999 | -| AGIXUSDT | 0.001427 | 0.001418 | 0.0307 | 0.01198 | 0.007529 | 0.008672 | 72.48 | 0.07844 | 0.0 | 0.08651 | 0.2013 | 306.38 | 271999999.999 | -| FXSUSDT | 0.001423 | 0.001423 | 0.04863 | 0.02888 | 0.01046 | 0.008439 | 100.3 | 0.03675 | 0.0 | 0.03724 | 0.06467 | 333.83 | 271999999.999 | -| DEFIUSDT | 0.000918 | 0.001468 | 0.06599 | 0.0428 | 0.009995 | 0.01119 | 111.7 | 0.0754 | 0.0 | 0.08234 | 0.1429 | 1208.67 | 271999999.999 | -| ENJUSDT | 0.0007181 | 0.001521 | 0.047 | 0.01012 | 0.009248 | 0.01081 | 89.05 | 0.08265 | 0.0 | 0.08831 | 0.2332 | 1176.67 | 271999999.999 | -| SNXUSDT | 0.0005681 | 0.0007235 | 0.02839 | 0.006093 | 0.01991 | 0.01878 | 113.7 | 0.1031 | 0.0 | 0.06118 | 0.2467 | 1222.67 | 271999999.999 | -| HOTUSDT | 0.001047 | 0.001718 | 0.07699 | 0.01254 | 0.01271 | 0.01331 | 117.9 | 0.08114 | 0.0 | 0.07562 | 0.174 | 994.67 | 271999999.999 | -| ARKUSDT | 0.0008002 | 0.00185 | 0.04989 | 0.0 | 0.01859 | 0.02116 | 67.47 | 0.117 | 0.0 | 0.08247 | 0.1526 | 91.29 | 271999999.999 | -| ZENUSDT | 0.0006994 | 0.001267 | 0.06459 | 0.003056 | 0.01944 | 0.01901 | 101.4 | 0.1094 | 0.0 | 0.0973 | 0.2426 | 1120.67 | 271999999.999 | -| SPELLUSDT | 0.001297 | 0.001078 | 0.02231 | 0.01279 | 0.007479 | 0.008997 | 94.28 | 0.07264 | 0.0 | 0.07866 | 0.1661 | 469.46 | 271999999.999 | -| OGNUSDT | 0.0009197 | 0.001078 | 0.02908 | 0.01341 | 0.01244 | 0.0111 | 97.22 | 0.06672 | 0.0 | 0.07037 | 0.2169 | 992.67 | 271999999.999 | -| JASMYUSDT | 0.0009398 | 0.001251 | 0.02568 | 0.01137 | 0.008848 | 0.008607 | 113.2 | 0.05733 | 0.0 | 0.06063 | 0.1558 | 608.83 | 271999999.999 | -| WOOUSDT | 0.0009189 | 0.0009592 | 0.03168 | 0.01666 | 0.008572 | 0.008635 | 47.07 | 0.04782 | 0.0 | 0.04924 | 0.1306 | 620.83 | 271999999.999 | -| SUSHIUSDT | 0.001266 | 0.002072 | 0.05514 | 0.02352 | 0.01473 | 0.01435 | 118.7 | 0.08327 | 0.0 | 0.09097 | 0.2295 | 1201.67 | 271999999.999 | -| CELOUSDT | 0.00061 | 0.0008054 | 0.03778 | 0.01096 | 0.0124 | 0.01214 | 100.7 | 0.06685 | 0.0 | 0.05041 | 0.1665 | 813.83 | 271999999.999 | -| APEUSDT | 0.001054 | 0.001601 | 0.04461 | 0.01264 | 0.009002 | 0.009869 | 102.2 | 0.06337 | 0.0 | 0.06146 | 0.2442 | 642.33 | 271999999.999 | -| API3USDT | 0.0005644 | 0.00067 | 0.03932 | 0.0129 | 0.01118 | 0.01332 | 85.7 | 0.08096 | 0.0 | 0.07446 | 0.233 | 665.83 | 271999999.999 | -| GRTUSDT | 0.00123 | 0.002206 | 0.05079 | 0.02105 | 0.01199 | 0.01241 | 83.2 | 0.07842 | 0.0 | 0.08442 | 0.2392 | 1094.67 | 271999999.999 | -| AMBUSDT | 0.001301 | 0.00215 | 0.02117 | 0.009323 | 0.007056 | 0.005622 | 46.43 | 0.02744 | 0.0 | 0.02325 | 0.05975 | 264.46 | 271999999.999 | -| CELRUSDT | 0.00108 | 0.002166 | 0.04558 | 0.01932 | 0.008479 | 0.009771 | 91.22 | 0.06536 | 0.0 | 0.07073 | 0.2018 | 995.67 | 271999999.999 | -| APTUSDT | 0.0005908 | 0.0009421 | 0.01183 | 0.0005075 | 0.01075 | 0.009097 | 91.63 | 0.038 | 0.0 | 0.006386 | 0.03426 | 426.88 | 271999999.999 | -| DASHUSDT | 0.0005158 | 0.001026 | 0.05069 | 0.02013 | 0.01433 | 0.01365 | 118.3 | 0.07795 | 0.0 | 0.08386 | 0.1909 | 1414.62 | 271999999.999 | -| YFIUSDT | 0.001002 | 0.001728 | 0.03659 | 0.02395 | 0.0103 | 0.01186 | 112.6 | 0.08105 | 0.0 | 0.08949 | 0.2239 | 1205.67 | 271999999.999 | -| ATAUSDT | 0.0009663 | 0.001591 | 0.04725 | 0.01536 | 0.0119 | 0.01133 | 90.3 | 0.06668 | 0.0 | 0.06833 | 0.2382 | 840.83 | 271999999.999 | -| OCEANUSDT | 0.001111 | 0.001785 | 0.09452 | 0.01167 | 0.01706 | 0.01596 | 108.3 | 0.08707 | 0.0 | 0.08458 | 0.2131 | 1141.67 | 271999999.999 | -| AVAXUSDT | 0.0006714 | 0.0009207 | 0.03547 | 0.01216 | 0.01592 | 0.01459 | 111.7 | 0.0833 | 0.0 | 0.0842 | 0.2166 | 1182.67 | 271999999.999 | -| SFPUSDT | 0.0008073 | 0.001493 | 0.02021 | 0.008704 | 0.01311 | 0.01154 | 106.8 | 0.05603 | 0.0 | 0.03713 | 0.1794 | 1028.67 | 271999999.999 | -| ONEUSDT | 0.0009392 | 0.001951 | 0.05368 | 0.02877 | 0.01263 | 0.01453 | 110.8 | 0.08937 | 0.0 | 0.0997 | 0.2121 | 1006.67 | 271999999.999 | -| ENSUSDT | 0.0006498 | 0.001214 | 0.04635 | 0.01998 | 0.01324 | 0.01296 | 102.6 | 0.07469 | 0.0 | 0.0801 | 0.2075 | 749.83 | 271999999.999 | -| 1000LUNCUSDT | 0.001402 | 0.0007231 | 0.01532 | 0.00276 | 0.009597 | 0.009912 | 115.9 | 0.0543 | 0.0 | 0.02915 | 0.1249 | 466.42 | 271999999.999 | -| PHBUSDT | 0.001409 | 0.001182 | 0.03176 | 0.01512 | 0.009404 | 0.01082 | 83.85 | 0.06313 | 0.0 | 0.06744 | 0.12 | 306.38 | 271999999.999 | -| FLOWUSDT | 0.0007078 | 0.0007625 | 0.03629 | 0.01266 | 0.01188 | 0.01219 | 108.9 | 0.07052 | 0.0 | 0.06263 | 0.1522 | 677.83 | 271999999.999 | -| BNXUSDT | 0.001242 | 0.001644 | 0.03903 | 0.01125 | 0.007985 | 0.007045 | 80.95 | 0.03883 | 0.0 | 0.03739 | 0.0739 | 300.38 | 271999999.999 | -| IMXUSDT | 0.0008169 | 0.0007432 | 0.02026 | 0.003201 | 0.01466 | 0.01236 | 100.9 | 0.05821 | 0.0 | 0.02228 | 0.1466 | 676.83 | 271999999.999 | -| JOEUSDT | 0.00121 | 0.0007508 | 0.06109 | 0.0159 | 0.01394 | 0.01517 | 83.95 | 0.0886 | 0.0 | 0.08936 | 0.1485 | 265.46 | 271999999.999 | -| LITUSDT | 0.001135 | 0.001834 | 0.08491 | 0.02087 | 0.01769 | 0.01794 | 110.8 | 0.103 | 0.0 | 0.0978 | 0.2136 | 1034.67 | 271999999.999 | -| ONTUSDT | 0.0008284 | 0.001384 | 0.06339 | 0.02053 | 0.0115 | 0.01199 | 106.9 | 0.07489 | 0.0 | 0.07634 | 0.1561 | 1407.62 | 271999999.999 | -| DARUSDT | 0.0006733 | 0.0008824 | 0.02825 | 0.005904 | 0.01159 | 0.0102 | 88.17 | 0.05796 | 0.0 | 0.03509 | 0.117 | 599.83 | 271999999.999 | -| MATICUSDT | 0.0005273 | 0.001223 | 0.03447 | 0.01579 | 0.01178 | 0.0125 | 110.8 | 0.08636 | 0.0 | 0.09575 | 0.2061 | 1153.67 | 271999999.999 | -| LDOUSDT | 0.001125 | 0.001196 | 0.04738 | 0.03516 | 0.01318 | 0.01419 | 97.82 | 0.08416 | 0.0 | 0.09186 | 0.1429 | 453.46 | 271999999.999 | -| RLCUSDT | 0.0009315 | 0.001916 | 0.06652 | 0.02145 | 0.01528 | 0.01546 | 104.0 | 0.09565 | 0.0 | 0.09614 | 0.218 | 1236.67 | 271999999.999 | -| VETUSDT | 0.0006246 | 0.001374 | 0.04491 | 0.02081 | 0.01078 | 0.01229 | 100.1 | 0.06991 | 0.0 | 0.07591 | 0.2215 | 1404.62 | 271999999.999 | -| XVSUSDT | 0.001191 | 0.0007192 | 0.03513 | 0.003371 | 0.01465 | 0.01584 | 104.0 | 0.08864 | 0.0 | 0.0644 | 0.2191 | 250.88 | 271999999.999 | -| KEYUSDT | 0.00127 | 0.001444 | 0.05523 | 0.02418 | 0.008849 | 0.009496 | 81.23 | 0.06703 | 0.0 | 0.07215 | 0.09066 | 209.46 | 271999999.999 | -| MAGICUSDT | 0.0008097 | 0.000813 | 0.03567 | 0.004788 | 0.01382 | 0.01202 | 82.82 | 0.06922 | 0.0 | 0.06012 | 0.1572 | 328.83 | 271999999.999 | -| RUNEUSDT | 0.0007227 | 0.0005541 | 0.01428 | 0.003405 | 0.01781 | 0.01314 | 116.2 | 0.05105 | 0.0 | 0.0159 | 0.08319 | 1201.67 | 271999999.999 | -| CFXUSDT | 0.0005528 | 0.0007328 | 0.01227 | 0.002205 | 0.01264 | 0.01098 | 101.7 | 0.04996 | 0.0 | 0.01751 | 0.1157 | 302.38 | 271999999.999 | -| HIFIUSDT | 0.001317 | 0.002398 | 0.01683 | 0.003043 | 0.005153 | 0.00449 | 68.38 | 0.02262 | 0.0 | 0.0108 | 0.05158 | 94.38 | 271999999.999 | -| INJUSDT | 0.001422 | 0.001249 | 0.03369 | 0.009007 | 0.0109 | 0.009498 | 114.1 | 0.04911 | 0.0 | 0.04233 | 0.1424 | 489.88 | 271999999.999 | -| ALGOUSDT | 0.0008763 | 0.001492 | 0.04425 | 0.01575 | 0.0133 | 0.0119 | 117.0 | 0.07184 | 0.0 | 0.07655 | 0.2114 | 1281.58 | 271999999.999 | -| COTIUSDT | 0.0005268 | 0.0009426 | 0.0472 | 0.003958 | 0.01648 | 0.01675 | 113.5 | 0.09676 | 0.0 | 0.07678 | 0.2378 | 1014.67 | 271999999.999 | -| IOTAUSDT | 0.0006324 | 0.0008771 | 0.02383 | 0.006946 | 0.008677 | 0.007448 | 87.97 | 0.02887 | 0.0 | 0.01837 | 0.0792 | 1406.62 | 271999999.999 | -| NEOUSDT | 0.0009907 | 0.001362 | 0.07679 | 0.01577 | 0.01038 | 0.0125 | 113.0 | 0.07118 | 0.0 | 0.07088 | 0.167 | 1401.62 | 271999999.999 | -| GMXUSDT | 0.0006655 | 0.000799 | 0.02827 | 0.01091 | 0.009119 | 0.007204 | 66.67 | 0.02939 | 0.0 | 0.01959 | 0.05031 | 305.38 | 271999999.999 | -| MKRUSDT | 0.0006854 | 0.0004496 | 0.009292 | 0.003224 | 0.01488 | 0.01158 | 101.8 | 0.04993 | 0.0 | 0.02183 | 0.1894 | 1223.67 | 271999999.999 | -| XTZUSDT | 0.0005564 | 0.001273 | 0.03847 | 0.01587 | 0.01012 | 0.008755 | 111.4 | 0.04572 | 0.0 | 0.04676 | 0.1383 | 1412.62 | 271999999.999 | -| SOLUSDT | 0.0007449 | 0.001081 | 0.02257 | 0.01007 | 0.0094 | 0.01019 | 70.65 | 0.06069 | 0.0 | 0.06517 | 0.1832 | 1191.67 | 271999999.999 | -| CHRUSDT | 0.0009195 | 0.001729 | 0.05188 | 0.02392 | 0.01446 | 0.01363 | 108.4 | 0.0889 | 0.0 | 0.09944 | 0.1977 | 1012.67 | 271999999.999 | -| STXUSDT | 0.0006351 | 0.000589 | 0.01225 | 0.00575 | 0.008342 | 0.007808 | 82.38 | 0.03704 | 0.0 | 0.02691 | 0.102 | 301.38 | 271999999.999 | -| THETAUSDT | 0.0006909 | 0.001239 | 0.05469 | 0.01368 | 0.01252 | 0.01296 | 81.52 | 0.07578 | 0.0 | 0.07843 | 0.2398 | 1301.62 | 271999999.999 | -| ARBUSDT | 0.001003 | 0.0008612 | 0.0477 | 0.02296 | 0.01092 | 0.0107 | 105.3 | 0.05637 | 0.0 | 0.05873 | 0.09522 | 271.33 | 271999999.999 | -| SKLUSDT | 0.0007097 | 0.0009151 | 0.02373 | 0.002948 | 0.01785 | 0.01479 | 112.7 | 0.07425 | 0.0 | 0.02345 | 0.1701 | 1106.67 | 271999999.999 | -| SSVUSDT | 0.001361 | 0.0008307 | 0.02228 | 0.01256 | 0.01167 | 0.01179 | 96.02 | 0.09007 | 0.0 | 0.09961 | 0.1649 | 298.46 | 271999999.999 | -| ASTRUSDT | 0.0006401 | 0.0003981 | 0.02091 | 0.0 | 0.01679 | 0.01375 | 83.25 | 0.07051 | 0.0 | 0.01825 | 0.194 | 308.88 | 271999999.999 | -| RDNTUSDT | 0.001347 | 0.001335 | 0.02337 | 0.006833 | 0.008876 | 0.007263 | 70.73 | 0.02962 | 0.0 | 0.006902 | 0.02785 | 258.46 | 271999999.999 | -| NMRUSDT | 0.001201 | 0.001881 | 0.04096 | 0.0015 | 0.009338 | 0.009086 | 78.85 | 0.05338 | 0.0 | 0.02771 | 0.163 | 180.46 | 271999999.999 | -| ATOMUSDT | 0.0009905 | 0.002331 | 0.06556 | 0.03527 | 0.009646 | 0.01255 | 119.1 | 0.08547 | 0.0 | 0.09431 | 0.2074 | 1411.46 | 271999999.999 | -| NKNUSDT | 0.0005273 | 0.001026 | 0.04278 | 0.004138 | 0.01706 | 0.01886 | 110.4 | 0.1018 | 0.0 | 0.07481 | 0.2469 | 984.67 | 271999999.999 | -| ALICEUSDT | 0.0006123 | 0.001284 | 0.06152 | 0.01175 | 0.01779 | 0.01799 | 112.6 | 0.1031 | 0.0 | 0.09685 | 0.2088 | 1008.83 | 271999999.999 | -| CKBUSDT | 0.001034 | 0.001276 | 0.03235 | 0.007582 | 0.007488 | 0.005696 | 86.87 | 0.02338 | 0.0 | 0.01081 | 0.04973 | 294.46 | 271999999.999 | -| C98USDT | 0.0006537 | 0.0009628 | 0.05496 | 0.006668 | 0.01669 | 0.01642 | 104.0 | 0.09091 | 0.0 | 0.07914 | 0.1882 | 847.83 | 271999999.999 | -| ZRXUSDT | 0.0009229 | 0.001079 | 0.04387 | 0.004515 | 0.01336 | 0.01318 | 106.0 | 0.07748 | 0.0 | 0.06646 | 0.2496 | 1273.58 | 271999999.999 | -| ICPUSDT | 0.0008898 | 0.0004263 | 0.03398 | 0.011 | 0.01458 | 0.01721 | 107.2 | 0.0835 | 0.0 | 0.06074 | 0.1865 | 448.88 | 271999999.999 | -| ZILUSDT | 0.0005292 | 0.001176 | 0.04837 | 0.02676 | 0.01091 | 0.01092 | 111.1 | 0.07388 | 0.0 | 0.08031 | 0.1542 | 1279.58 | 271999999.999 | -| REEFUSDT | 0.001296 | 0.002216 | 0.06163 | 0.01421 | 0.0108 | 0.01189 | 93.0 | 0.06961 | 0.0 | 0.05377 | 0.2306 | 1030.67 | 271999999.999 | -| TRUUSDT | 0.0005184 | 0.0005187 | 0.02311 | 0.00113 | 0.01696 | 0.0141 | 94.73 | 0.0697 | 0.0 | 0.01805 | 0.1064 | 287.46 | 271999999.999 | -| LINKUSDT | 0.001091 | 0.001783 | 0.05629 | 0.03697 | 0.01124 | 0.01203 | 117.9 | 0.0748 | 0.0 | 0.08138 | 0.1943 | 1432.62 | 271999999.999 | -| KSMUSDT | 0.0006583 | 0.0014 | 0.04929 | 0.02026 | 0.009965 | 0.00975 | 92.83 | 0.05948 | 0.0 | 0.06344 | 0.1675 | 1160.67 | 271999999.999 | -| TLMUSDT | 0.001276 | 0.0008631 | 0.01944 | 0.009594 | 0.007205 | 0.00741 | 83.1 | 0.05148 | 0.0 | 0.0525 | 0.2413 | 264.46 | 271999999.999 | -| PERPUSDT | 0.001281 | 0.001317 | 0.02898 | 0.008491 | 0.009251 | 0.007526 | 74.9 | 0.03149 | 0.0 | 0.02074 | 0.05976 | 288.46 | 271999999.999 | -| 1000PEPEUSDT | 0.001477 | 0.00134 | 0.01295 | 0.001642 | 0.00879 | 0.006987 | 48.83 | 0.0284 | 0.0 | 0.007809 | 0.06459 | 228.29 | 271999999.999 | -| DGBUSDT | 0.0006221 | 0.001354 | 0.07757 | 0.01929 | 0.01124 | 0.01387 | 114.3 | 0.0891 | 0.0 | 0.09248 | 0.248 | 972.83 | 271999999.999 | -| BAKEUSDT | 0.00101 | 0.0007023 | 0.01757 | 0.001839 | 0.01541 | 0.01336 | 108.7 | 0.06267 | 0.0 | 0.0165 | 0.1008 | 944.67 | 271999999.999 | -| UNIUSDT | 0.0006026 | 0.001388 | 0.03374 | 0.01397 | 0.009801 | 0.008091 | 93.68 | 0.0387 | 0.0 | 0.03678 | 0.1321 | 1187.67 | 271999999.999 | -| CRVUSDT | 0.0004466 | 0.001054 | 0.04817 | 0.01046 | 0.01662 | 0.01568 | 109.8 | 0.09542 | 0.0 | 0.09906 | 0.2478 | 1204.67 | 272000000.0 | -| EOSUSDT | 0.0004261 | 0.0007937 | 0.04305 | 0.01221 | 0.01332 | 0.01231 | 115.2 | 0.06172 | 0.0 | 0.05862 | 0.1981 | 1441.62 | 272000000.0 | -| DUSKUSDT | 0.0004173 | 0.0006699 | 0.02567 | 0.002634 | 0.01486 | 0.01075 | 104.6 | 0.04485 | 0.0 | 0.02489 | 0.2098 | 711.83 | 272000000.0 | -| EGLDUSDT | 0.0004989 | 0.0007221 | 0.02687 | 0.009793 | 0.01387 | 0.01293 | 102.7 | 0.05107 | 0.0 | 0.03455 | 0.1276 | 1191.67 | 272000000.0 | -| ALPHAUSDT | 0.0003347 | 0.0005991 | 0.02459 | 0.001227 | 0.01859 | 0.01749 | 117.4 | 0.1037 | 0.0 | 0.06815 | 0.2499 | 1120.67 | 272000000.0 | -| ETHUSDT | 0.000219 | 0.000574 | 0.04108 | 0.01134 | 0.006303 | 0.007833 | 112.2 | 0.04993 | 0.0 | 0.05091 | 0.1395 | 1448.96 | 272000000.0 | -| LRCUSDT | 0.000316 | 0.0007061 | 0.02819 | 0.003184 | 0.01933 | 0.01737 | 117.4 | 0.09109 | 0.0 | 0.0579 | 0.2401 | 1156.67 | 272000000.0 | -| QNTUSDT | 0.0004787 | 0.000612 | 0.03038 | 0.011 | 0.00949 | 0.008801 | 111.2 | 0.03988 | 0.0 | 0.03212 | 0.09525 | 425.88 | 272000000.0 | -| BTCUSDT | 0.0001487 | 0.000184 | 0.0231 | 0.01247 | 0.009715 | 0.008833 | 109.5 | 0.04605 | 0.0 | 0.04357 | 0.1022 | 1448.96 | 272000000.0 | -| AXSUSDT | 9.635e-05 | 0.0002693 | 0.006067 | 0.001049 | 0.01619 | 0.01287 | 105.7 | 0.05552 | 0.0 | 0.01355 | 0.1827 | 1123.67 | 272000000.0 | -| 1000XECUSDT | 0.0004653 | 0.000548 | 0.01172 | 0.001229 | 0.01178 | 0.009719 | 119.1 | 0.04072 | 0.0 | 0.007275 | 0.08938 | 823.83 | 272000000.0 | -| FTMUSDT | 0.0003553 | 0.0008967 | 0.02626 | 0.01008 | 0.01573 | 0.01396 | 112.4 | 0.07235 | 0.0 | 0.06337 | 0.196 | 1181.67 | 272000000.0 | -| LPTUSDT | 0.0003497 | 0.0004208 | 0.02655 | 0.0003523 | 0.01698 | 0.01507 | 99.0 | 0.08653 | 0.0 | 0.04733 | 0.136 | 768.83 | 272000000.0 | -| BANDUSDT | 0.0001199 | 0.0001704 | 0.005427 | 0.0001345 | 0.01853 | 0.01371 | 95.45 | 0.05616 | 0.0 | 0.005002 | 0.02685 | 1238.67 | 272000000.0 | -| AUDIOUSDT | 0.0001522 | 0.0002731 | 0.01371 | 0.005261 | 0.01307 | 0.01157 | 97.77 | 0.05596 | 0.0 | 0.03358 | 0.1861 | 852.83 | 272000000.0 | -| TRXUSDT | 8.718e-05 | 0.0002525 | 0.02018 | 0.009003 | 0.00995 | 0.009088 | 114.6 | 0.04717 | 0.0 | 0.04406 | 0.2113 | 1434.62 | 272000000.0 | -| ETCUSDT | 0.000362 | 0.0007731 | 0.02214 | 0.007521 | 0.01068 | 0.01028 | 102.2 | 0.05583 | 0.0 | 0.04367 | 0.2007 | 1433.62 | 272000000.0 | -| IOSTUSDT | 0.0003241 | 0.0006644 | 0.03245 | 0.006543 | 0.01117 | 0.01229 | 109.9 | 0.07682 | 0.0 | 0.06532 | 0.2465 | 1397.62 | 272000000.0 | -| MTLUSDT | 0.0003907 | 0.0006092 | 0.03119 | 0.005526 | 0.01956 | 0.01994 | 105.0 | 0.1174 | 0.0 | 0.09304 | 0.2499 | 993.67 | 272000000.0 | -| 1000SHIBUSDT | 0.0002496 | 0.0005644 | 0.02247 | 0.0 | 0.01595 | 0.01728 | 111.8 | 0.09899 | 0.0 | 0.04593 | 0.1255 | 953.25 | 272000000.0 | -| CYBERUSDT | 0.0001752 | 0.0008308 | 0.003768 | 0.000242 | 0.0163 | 0.01253 | 84.13 | 0.04964 | 0.0 | 0.002928 | 0.01909 | 120.46 | 272000000.0 | -| RENUSDT | 0.0003969 | 0.0005833 | 0.03519 | 0.0 | 0.02336 | 0.02124 | 116.3 | 0.1103 | 0.0 | 0.06187 | 0.166 | 1162.67 | 272000000.0 | -| NEARUSDT | 0.0002978 | 0.0006114 | 0.02164 | 0.004774 | 0.01856 | 0.01556 | 117.0 | 0.07703 | 0.0 | 0.0337 | 0.2355 | 1160.62 | 272000000.0 | -| BELUSDT | 0.0003029 | 0.0005964 | 0.02033 | 0.002206 | 0.01772 | 0.01617 | 117.2 | 0.08705 | 0.0 | 0.03939 | 0.2439 | 1125.67 | 272000000.0 | -| DENTUSDT | 0.0003419 | 0.0008174 | 0.02383 | 0.008797 | 0.01089 | 0.01138 | 96.08 | 0.06744 | 0.0 | 0.06405 | 0.1998 | 1000.79 | 272000000.0 | -| BALUSDT | 0.0004249 | 0.0009318 | 0.04972 | 0.01852 | 0.01443 | 0.01374 | 111.7 | 0.07391 | 0.0 | 0.06193 | 0.147 | 1204.67 | 272000000.0 | -| STGUSDT | 0.0002272 | 0.0002931 | 0.009945 | 0.002553 | 0.01353 | 0.01147 | 110.9 | 0.04965 | 0.0 | 0.02101 | 0.1602 | 481.46 | 272000000.0 | -| SANDUSDT | 0.0003994 | 0.001093 | 0.03857 | 0.00684 | 0.01549 | 0.0151 | 93.48 | 0.0921 | 0.0 | 0.08034 | 0.2483 | 1058.67 | 272000000.0 | -| GTCUSDT | 9.257e-05 | 0.0001834 | 0.006522 | 0.001098 | 0.01777 | 0.01374 | 102.2 | 0.06134 | 0.0 | 0.008547 | 0.06776 | 921.83 | 272000000.0 | -| LINAUSDT | 0.0004733 | 0.0007871 | 0.02572 | 0.005908 | 0.01865 | 0.01748 | 117.0 | 0.09643 | 0.0 | 0.06293 | 0.2465 | 1005.67 | 272000000.0 | -| KAVAUSDT | 0.0004766 | 0.00113 | 0.02949 | 0.006517 | 0.01555 | 0.01303 | 107.0 | 0.06037 | 0.0 | 0.03008 | 0.1705 | 1239.67 | 272000000.0 | -| DOGEUSDT | 0.0002952 | 0.0008615 | 0.01407 | 0.0005698 | 0.01065 | 0.008984 | 104.7 | 0.04322 | 0.0 | 0.01316 | 0.1901 | 1257.58 | 272000000.0 | -| 1INCHUSDT | 0.0003131 | 0.0006339 | 0.03155 | 0.0003327 | 0.01788 | 0.01527 | 96.15 | 0.0815 | 0.0 | 0.04893 | 0.2371 | 1089.54 | 272000000.0 | -| BLUEBIRDUSDT | 0.0001689 | 0.0001664 | 0.02638 | 0.0 | 0.0101 | 0.009094 | 118.3 | 0.0685 | 0.0 | 0.04537 | 0.0745 | 412.46 | 272000000.0 | -| SXPUSDT | 0.000225 | 0.0004569 | 0.0228 | 0.003189 | 0.0176 | 0.01401 | 112.8 | 0.07515 | 0.0 | 0.03654 | 0.1543 | 1246.58 | 272000000.0 | -| ANKRUSDT | 0.0004233 | 0.0009304 | 0.03999 | 0.00546 | 0.0178 | 0.01958 | 107.1 | 0.1141 | 0.0 | 0.09978 | 0.2212 | 1057.67 | 272000000.0 | -| CHZUSDT | 0.0003365 | 0.0009357 | 0.03645 | 0.00167 | 0.01597 | 0.01646 | 119.2 | 0.09705 | 0.0 | 0.06161 | 0.2474 | 1062.67 | 272000000.0 | -| DOTUSDT | 0.0004056 | 0.0008664 | 0.0471 | 0.009817 | 0.01129 | 0.009911 | 87.6 | 0.06466 | 0.0 | 0.05965 | 0.1913 | 1214.67 | 272000000.0 | -| BATUSDT | 0.0003162 | 0.0006407 | 0.03277 | 0.004974 | 0.01737 | 0.01402 | 109.2 | 0.06615 | 0.0 | 0.05221 | 0.2474 | 1405.62 | 272000000.0 | -| BCHUSDT | 0.0004068 | 0.0004806 | 0.03541 | 0.007203 | 0.01416 | 0.01483 | 111.1 | 0.08668 | 0.0 | 0.06427 | 0.1831 | 1448.96 | 272000000.0 | -| RVNUSDT | 0.0002894 | 0.0006312 | 0.02576 | 0.006102 | 0.01248 | 0.01173 | 83.2 | 0.06493 | 0.0 | 0.04497 | 0.1842 | 1029.67 | 272000000.0 | -| ICXUSDT | 0.0004229 | 0.0007198 | 0.02973 | 0.008279 | 0.01529 | 0.01166 | 97.27 | 0.05483 | 0.0 | 0.04717 | 0.1709 | 1190.67 | 272000000.0 | -| RNDRUSDT | 0.0004958 | 0.000629 | 0.02026 | 0.004441 | 0.0166 | 0.01438 | 117.2 | 0.07178 | 0.0 | 0.02304 | 0.09377 | 319.88 | 272000000.0 | -| ANTUSDT | 7.758e-05 | 0.0003746 | 0.00807 | 0.0002824 | 0.01812 | 0.0135 | 99.98 | 0.05707 | 0.0 | 0.009392 | 0.03407 | 722.79 | 272000000.0 | -| XMRUSDT | 0.0003956 | 0.00109 | 0.04908 | 0.01555 | 0.007509 | 0.008721 | 101.4 | 0.05167 | 0.0 | 0.04938 | 0.1272 | 1415.62 | 272000000.0 | -| CTKUSDT | 0.0002964 | 0.0006736 | 0.0199 | 0.01125 | 0.01035 | 0.01102 | 109.0 | 0.06128 | 0.0 | 0.06508 | 0.1728 | 1124.67 | 272000000.0 | -| OPUSDT | 0.0002752 | 0.0004296 | 0.0291 | 0.02031 | 0.0165 | 0.01484 | 91.82 | 0.07967 | 0.0 | 0.08748 | 0.2024 | 566.38 | 272000000.0 | -| GMTUSDT | 0.0002441 | 0.0005054 | 0.008305 | 0.003935 | 0.01304 | 0.01058 | 99.58 | 0.04647 | 0.0 | 0.02433 | 0.1224 | 644.79 | 272000000.0 | -| ARUSDT | 8.434e-05 | 0.000117 | 0.01492 | 0.008575 | 0.01976 | 0.01575 | 93.08 | 0.07544 | 0.0 | 0.06294 | 0.1508 | 812.83 | 272000000.0 | -| DYDXUSDT | 0.0004015 | 0.0005813 | 0.01918 | 0.006785 | 0.01398 | 0.01271 | 96.25 | 0.07128 | 0.0 | 0.0645 | 0.1874 | 830.83 | 272000000.0 | -| FILUSDT | 0.0002977 | 0.0005536 | 0.02043 | 0.009018 | 0.01509 | 0.01341 | 118.2 | 0.07576 | 0.0 | 0.07638 | 0.2163 | 1158.71 | 272000000.0 | -| FOOTBALLUSDT | 0.0003689 | 0.0006802 | 0.03959 | 0.01214 | 0.006767 | 0.006745 | 102.8 | 0.04701 | 0.0 | 0.0464 | 0.09075 | 474.83 | 272000000.0 | -| PEOPLEUSDT | 0.0001214 | 0.000263 | 0.004735 | 0.0001665 | 0.01621 | 0.01269 | 107.2 | 0.05289 | 0.0 | 0.003827 | 0.02498 | 725.79 | 272000000.0 | -| UNFIUSDT | 0.0003252 | 0.0004576 | 0.016 | 0.003128 | 0.02078 | 0.01674 | 118.2 | 0.1028 | 0.0 | 0.06181 | 0.2489 | 1033.67 | 272000000.0 | -| LTCUSDT | 0.0004263 | 0.0007334 | 0.01929 | 0.009856 | 0.007237 | 0.006823 | 119.1 | 0.03492 | 0.0 | 0.03123 | 0.1386 | 1440.62 | 272000000.0 | -| IOTXUSDT | 9.965e-05 | 0.0001345 | 0.006497 | 0.001071 | 0.01759 | 0.01347 | 102.6 | 0.05446 | 0.0 | 0.007059 | 0.1168 | 859.83 | 272000000.0 | -| STORJUSDT | 0.0004705 | 0.0005469 | 0.01377 | 0.006136 | 0.01419 | 0.012 | 101.2 | 0.05667 | 0.0 | 0.0402 | 0.2468 | 1189.67 | 272000000.0 | -| XRPUSDT | 0.0004443 | 0.0007795 | 0.02286 | 0.009013 | 0.01342 | 0.01314 | 118.1 | 0.06737 | 0.0 | 0.06183 | 0.2049 | 1443.62 | 272000000.0 | -| ZECUSDT | 0.0004933 | 0.0009981 | 0.08192 | 0.008624 | 0.01283 | 0.01552 | 116.7 | 0.09389 | 0.0 | 0.09456 | 0.1749 | 1413.62 | 272000000.0 | -| WAVESUSDT | 0.000194 | 0.0002185 | 0.007084 | 0.002344 | 0.01658 | 0.01338 | 117.5 | 0.05924 | 0.0 | 0.02283 | 0.1436 | 1224.67 | 272000000.0 | -| KNCUSDT | 9.254e-05 | 0.0002655 | 0.006851 | 0.001509 | 0.01834 | 0.01339 | 120.2 | 0.05511 | 0.0 | 0.009071 | 0.128 | 1275.62 | 272020000.0 | -| ADAUSDT | 0.0005643 | 0.001013 | 0.03047 | 0.01564 | 0.008761 | 0.009676 | 120.7 | 0.05504 | 0.0 | 0.05333 | 0.145 | 1418.62 | 272071666.666 | -| XLMUSDT | 0.0001715 | 0.0002527 | 0.007258 | 0.00144 | 0.01441 | 0.01096 | 122.3 | 0.04233 | 0.0 | 0.005082 | 0.05512 | 1429.62 | 272230000.0 | -| BNBUSDT | 0.0001334 | 0.0002895 | 0.02948 | 0.006906 | 0.01194 | 0.009806 | 126.7 | 0.04881 | 0.0 | 0.04344 | 0.1825 | 1408.62 | 272671666.667 | -| ARPAUSDT | 0.0002119 | 0.0005163 | 0.007494 | 0.0003631 | 0.01576 | 0.01195 | 129.3 | 0.04845 | 0.0 | 0.003449 | 0.06963 | 791.83 | 272931666.666 | -| COMPUSDT | 0.0002739 | 0.000379 | 0.0285 | 0.005555 | 0.01792 | 0.01581 | 129.8 | 0.09122 | 0.0 | 0.06462 | 0.1588 | 1267.58 | 272980000.0 | -| CVXUSDT | 0.0004993 | 0.0007134 | 0.05444 | 0.04452 | 0.009778 | 0.0131 | 130.1 | 0.07641 | 0.0 | 0.0832 | 0.2015 | 453.46 | 273008333.333 | -| KLAYUSDT | 5.94e-05 | 7.856e-05 | 0.005901 | 0.0008137 | 0.01699 | 0.01294 | 138.7 | 0.05267 | 0.0 | 0.008654 | 0.08625 | 798.83 | 273865000.0 | -| BTCDOMUSDT | 8.362e-05 | 7.215e-05 | 0.02238 | 0.0 | 0.01154 | 0.007966 | 285.0 | 0.03004 | 0.0 | 0.005932 | 0.01298 | 911.83 | 288501666.667 | -| MASKUSDT | 8.849e-05 | 0.000183 | 0.01116 | 0.006396 | 0.01747 | 0.01529 | 97.12 | 0.07464 | 0.0 | 0.05835 | 0.284 | 844.83 | 305958104.293 | -| TOMOUSDT | 0.001322 | 0.001594 | 0.07095 | 0.02326 | 0.02269 | 0.02047 | 854.4 | 0.1081 | 0.0 | 0.09072 | 0.2187 | 1163.67 | 345443333.332 | -| USDCUSDT | 4.106e-06 | 7.162e-07 | 0.01209 | 0.0 | 40.0 | 0.4018 | 4163.0 | 0.01171 | 0.8 | 0.0001981 | 0.0002583 | 282.25 | 676346666.667 | -| GALAUSDT | 0.000125 | 0.0002454 | 0.0185 | 0.01429 | 0.02305 | 0.03359 | 400.8 | 0.31 | 0.0 | 0.4522 | 0.6216 | 822.83 | 706935780.697 | -| COCOSUSDT | 7.449e-05 | 0.0007449 | 0.03111 | 0.008459 | 40.01 | 0.4115 | 5007.0 | 0.07781 | 0.4 | 0.05952 | 0.122 | 301.38 | 760676666.667 | -| HNTUSDT | 5.128e-05 | 0.000271 | 0.0113 | 0.00109 | 0.01955 | 0.01555 | 6591.0 | 0.07902 | 0.0 | 0.03045 | 0.1855 | 1177.67 | 919056666.667 | -| CVCUSDT | 1.978e-05 | 0.0001733 | 0.005449 | 6.248e-05 | 0.0133 | 0.01034 | 9255.0 | 0.05122 | 0.0 | 0.003982 | 0.01909 | 1133.67 | 1185513333.33 | -| SRMUSDT | 6.777e-05 | 0.0004692 | 0.01328 | 0.00543 | 0.01011 | 0.00906 | 9595.0 | 0.04476 | 0.0 | 0.03756 | 0.1682 | 1200.88 | 1219471666.67 | -| RAYUSDT | 5.788e-05 | 0.0004636 | 0.0188 | 0.003292 | 20.01 | 0.2041 | 9596.0 | 0.0322 | 0.2 | 0.02305 | 0.09362 | 851.83 | 1219556666.67 | -| FTTUSDT | 7.244e-05 | 0.0007244 | 0.05581 | 0.02248 | 40.01 | 0.407 | 9620.0 | 0.07891 | 0.4 | 0.08157 | 0.1371 | 613.83 | 1221951666.67 | -| BTSUSDT | 9.243e-06 | 8.163e-05 | 0.01091 | 0.007511 | 20.02 | 0.2139 | 11730.0 | 0.0687 | 0.2 | 0.04874 | 0.1489 | 1051.67 | 1432613333.33 | -| SCUSDT | 3.677e-05 | 0.0003677 | 0.01337 | 0.004813 | 20.01 | 0.2045 | 13210.0 | 0.03822 | 0.2 | 0.03324 | 0.1909 | 981.67 | 1581423333.33 | -| BTCSTUSDT | 3.63e-06 | 3.63e-05 | 0.01718 | 0.0 | 60.0 | 0.6001 | 24310.0 | 0.004988 | 0.6 | 8.71e-05 | 0.006186 | 1020.67 | 2690905000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/1000FLOKIUSDT.json deleted file mode 100644 index 27c3c7ea5..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10001068717462122, - "ema_span_0": 1388.420506457803, - "ema_span_1": 405.5981329510556, - "enabled": true, - "initial_eprice_ema_dist": -0.008234599359277612, - "initial_qty_pct": 0.015726353698551625, - "markup_range": 0.006055760310440219, - "min_markup": 0.0024064896736204692, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02602231875215248, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1338739749399473, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.727565826864478, - "ema_span_0": 1439.9430113247765, - "ema_span_1": 1409.3389608753075, - "enabled": true, - "initial_eprice_ema_dist": -0.0012011675821898822, - "initial_qty_pct": 0.012952424946635826, - "markup_range": 0.006871823587073234, - "min_markup": 0.0025268327318947294, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0337054177285124, - "rentry_pprice_dist_wallet_exposure_weighting": 5.681977808960477, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000LUNCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/1000LUNCUSDT.json deleted file mode 100644 index a000a5618..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3135651880284045, - "ema_span_0": 514.362057535703, - "ema_span_1": 488.99254878986324, - "enabled": true, - "initial_eprice_ema_dist": 0.002379039584133862, - "initial_qty_pct": 0.006390290279725705, - "markup_range": 0.0021801843668706874, - "min_markup": 0.0089001313647723, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03161121645371086, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0879845930032974, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000PEPEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/1000PEPEUSDT.json deleted file mode 100644 index d10c88b8a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.32170119939699604, - "ema_span_0": 1134.518510807012, - "ema_span_1": 1324.809624599857, - "enabled": true, - "initial_eprice_ema_dist": -0.00036424474112588603, - "initial_qty_pct": 0.01574152775825642, - "markup_range": 0.0055343436640053, - "min_markup": 0.006248470763440779, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032523780230534025, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7001577985053333, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7936590038914226, - "ema_span_0": 1416.6690127087463, - "ema_span_1": 1362.485823019, - "enabled": true, - "initial_eprice_ema_dist": 0.0024609928207111062, - "initial_qty_pct": 0.0073646416082817304, - "markup_range": 0.0028733495615411516, - "min_markup": 0.00975689685836081, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04589725552454332, - "rentry_pprice_dist_wallet_exposure_weighting": 6.994487793167962, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000SHIBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/1000SHIBUSDT.json deleted file mode 100644 index 09598660d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.020691559451297, - "ema_span_0": 400, - "ema_span_1": 774.6048168736422, - "enabled": true, - "initial_eprice_ema_dist": 0.0012040292827267954, - "initial_qty_pct": 0.00601072228878128, - "markup_range": 0.002519533155161096, - "min_markup": 0.002039539878468083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.019936134592632042, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4064538558156699, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11814702320918723, - "ema_span_0": 1311.9318805106657, - "ema_span_1": 1287.7612158812105, - "enabled": true, - "initial_eprice_ema_dist": 0.000956895293724553, - "initial_qty_pct": 0.015521454790508725, - "markup_range": 0.002151799460952336, - "min_markup": 0.002249250067877081, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04096897855031437, - "rentry_pprice_dist_wallet_exposure_weighting": 6.970630032157269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000XECUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/1000XECUSDT.json deleted file mode 100644 index 90bcab763..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2013987436240465, - "ema_span_0": 1255.4281202357718, - "ema_span_1": 838.9503047296461, - "enabled": true, - "initial_eprice_ema_dist": 0.002981167750202808, - "initial_qty_pct": 0.008627480735883951, - "markup_range": 0.0011298541837039464, - "min_markup": 0.001961649446917289, - "n_close_orders": 16, - "rentry_pprice_dist": 0.024891349636365877, - "rentry_pprice_dist_wallet_exposure_weighting": 0.006119807188264013, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/1INCHUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/1INCHUSDT.json deleted file mode 100644 index 74698bf9f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.19331283301559402, - "ema_span_0": 1317.8381646930968, - "ema_span_1": 1271.9152377205874, - "enabled": true, - "initial_eprice_ema_dist": 0.002999238515903029, - "initial_qty_pct": 0.019275101756852174, - "markup_range": 0.0024870169389542233, - "min_markup": 0.0038985077146292215, - "n_close_orders": 9, - "rentry_pprice_dist": 0.036883592677402585, - "rentry_pprice_dist_wallet_exposure_weighting": 5.784631349056349, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AAVEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AAVEUSDT.json deleted file mode 100644 index 2f0cb125d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.253784539261661, - "ema_span_0": 697.0536646041054, - "ema_span_1": 809.4427323989121, - "enabled": true, - "initial_eprice_ema_dist": -0.006010234461624627, - "initial_qty_pct": 0.008613515109653224, - "markup_range": 0.0038051123119190017, - "min_markup": 0.005655139086423082, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030543911273457156, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6170090633448045, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2013987436240465, - "ema_span_0": 1255.4281202357718, - "ema_span_1": 838.9503047296461, - "enabled": true, - "initial_eprice_ema_dist": 0.002981167750202808, - "initial_qty_pct": 0.008627480735883951, - "markup_range": 0.0011298541837039464, - "min_markup": 0.001961649446917289, - "n_close_orders": 16, - "rentry_pprice_dist": 0.024891349636365877, - "rentry_pprice_dist_wallet_exposure_weighting": 0.006119807188264013, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ACHUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ACHUSDT.json deleted file mode 100644 index 55dcd5468..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8271959941216143, - "ema_span_0": 968.6498885350597, - "ema_span_1": 454.11278723231663, - "enabled": true, - "initial_eprice_ema_dist": -0.008029975503925613, - "initial_qty_pct": 0.006802340215225203, - "markup_range": 0.0006369892250652274, - "min_markup": 0.004133842177261452, - "n_close_orders": 13, - "rentry_pprice_dist": 0.026678628933883772, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14558253349535594, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.189537412568953, - "ema_span_0": 1088.0759087126635, - "ema_span_1": 1201.7903110500115, - "enabled": true, - "initial_eprice_ema_dist": 0.0019923221795651964, - "initial_qty_pct": 0.009082157824751034, - "markup_range": 0.009878154003381335, - "min_markup": 0.009093965842795036, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03281446769096122, - "rentry_pprice_dist_wallet_exposure_weighting": 4.7319735139183585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ADAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ADAUSDT.json deleted file mode 100644 index 715395d60..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35424661844691196, - "ema_span_0": 441.4779746092039, - "ema_span_1": 1067.7076812966789, - "enabled": true, - "initial_eprice_ema_dist": -0.00531869397469693, - "initial_qty_pct": 0.0056497753346014855, - "markup_range": 0.00022966304447854743, - "min_markup": 0.0019972013348434955, - "n_close_orders": 5, - "rentry_pprice_dist": 0.013542212975156311, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7147030945723465, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6698037934804533, - "ema_span_0": 1370.539039659797, - "ema_span_1": 1136.1256073919042, - "enabled": true, - "initial_eprice_ema_dist": -0.008836413828574991, - "initial_qty_pct": 0.011328985420461457, - "markup_range": 0.0028829112996672174, - "min_markup": 0.0031003945455914976, - "n_close_orders": 3, - "rentry_pprice_dist": 0.035305655496841164, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9794093796452454, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AGIXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AGIXUSDT.json deleted file mode 100644 index 4680ebe2a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358791154116679, - "ema_span_0": 825.5228520854362, - "ema_span_1": 930.5614549047939, - "enabled": true, - "initial_eprice_ema_dist": 0.0008721520022025943, - "initial_qty_pct": 0.010098211120495228, - "markup_range": 0.0033307611948601504, - "min_markup": 0.0022295906962043663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02392162425162726, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5966878232828394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.233843659051374, - "ema_span_0": 620.9439410068148, - "ema_span_1": 1141.4467876090778, - "enabled": true, - "initial_eprice_ema_dist": -0.005471578687433655, - "initial_qty_pct": 0.010059669904209461, - "markup_range": 0.0017407994687275836, - "min_markup": 0.009034052144763766, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015280419834390631, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802659146736087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AGLDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AGLDUSDT.json deleted file mode 100644 index 3695bff78..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5212351831480254, - "ema_span_0": 936.1765289607704, - "ema_span_1": 1071.651475023756, - "enabled": true, - "initial_eprice_ema_dist": -0.003090729871813043, - "initial_qty_pct": 0.010943429973030477, - "markup_range": 0.006899977067368584, - "min_markup": 0.006327690497756268, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04670705414082499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0453399819780371, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7453212129078355, - "ema_span_0": 431.7494906871677, - "ema_span_1": 1366.7087315502185, - "enabled": true, - "initial_eprice_ema_dist": 0.000578192394375502, - "initial_qty_pct": 0.016283084739638118, - "markup_range": 0.001311271770463208, - "min_markup": 0.005233983760590109, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03348695481326547, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0727812414503375, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ALGOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ALGOUSDT.json deleted file mode 100644 index ce4fa4edf..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3135651880284045, - "ema_span_0": 514.362057535703, - "ema_span_1": 488.99254878986324, - "enabled": true, - "initial_eprice_ema_dist": 0.002379039584133862, - "initial_qty_pct": 0.006390290279725705, - "markup_range": 0.0021801843668706874, - "min_markup": 0.0089001313647723, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03161121645371086, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0879845930032974, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.189537412568953, - "ema_span_0": 1088.0759087126635, - "ema_span_1": 1201.7903110500115, - "enabled": true, - "initial_eprice_ema_dist": 0.0019923221795651964, - "initial_qty_pct": 0.009082157824751034, - "markup_range": 0.009878154003381335, - "min_markup": 0.009093965842795036, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03281446769096122, - "rentry_pprice_dist_wallet_exposure_weighting": 4.7319735139183585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ALICEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ALICEUSDT.json deleted file mode 100644 index b455083e6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100644559707755, - "ema_span_0": 438.66836477264434, - "ema_span_1": 445.8331676413342, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.007533032591465177, - "markup_range": 0.007156320508651157, - "min_markup": 0.0058117855721224855, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509890353304822, - "rentry_pprice_dist_wallet_exposure_weighting": 1.404095253730318, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30906564301844636, - "ema_span_0": 1437.4919090483247, - "ema_span_1": 1256.7996405007086, - "enabled": true, - "initial_eprice_ema_dist": -0.00011402378946140085, - "initial_qty_pct": 0.019266574506648867, - "markup_range": 0.007760908258217274, - "min_markup": 0.009930945732328467, - "n_close_orders": 2, - "rentry_pprice_dist": 0.038268604669729256, - "rentry_pprice_dist_wallet_exposure_weighting": 4.68853789900921, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ALPHAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ALPHAUSDT.json deleted file mode 100644 index f89ab4ce0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5997256125741337, - "ema_span_0": 675.5248086604771, - "ema_span_1": 463.3502593727627, - "enabled": true, - "initial_eprice_ema_dist": 0.000534457780442675, - "initial_qty_pct": 0.009326481302871779, - "markup_range": 0.0040608292640282794, - "min_markup": 0.007692198544655454, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02926961449527582, - "rentry_pprice_dist_wallet_exposure_weighting": 4.011487202146822, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11814702320918723, - "ema_span_0": 1311.9318805106657, - "ema_span_1": 1287.7612158812105, - "enabled": true, - "initial_eprice_ema_dist": 0.000956895293724553, - "initial_qty_pct": 0.015521454790508725, - "markup_range": 0.002151799460952336, - "min_markup": 0.002249250067877081, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04096897855031437, - "rentry_pprice_dist_wallet_exposure_weighting": 6.970630032157269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AMBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AMBUSDT.json deleted file mode 100644 index deb396152..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.27096035018830045, - "ema_span_0": 1269.5197471401505, - "ema_span_1": 898.2966827186488, - "enabled": true, - "initial_eprice_ema_dist": -0.006163257160822988, - "initial_qty_pct": 0.018500732913510638, - "markup_range": 0.006841402135543796, - "min_markup": 0.007926055054261747, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03553139040733693, - "rentry_pprice_dist_wallet_exposure_weighting": 1.694898736755689, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ANKRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ANKRUSDT.json deleted file mode 100644 index 5c0c95b2f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.754834844604402, - "ema_span_0": 1191.952584685572, - "ema_span_1": 1354.8866514359167, - "enabled": true, - "initial_eprice_ema_dist": 0.0009427906731153082, - "initial_qty_pct": 0.009928053270175718, - "markup_range": 0.0037096896600965898, - "min_markup": 0.0014544355574588551, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025802622427628007, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764709046299057, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23930100933629636, - "ema_span_0": 936.2331523851435, - "ema_span_1": 873.031859037828, - "enabled": true, - "initial_eprice_ema_dist": 0.002883197659507809, - "initial_qty_pct": 0.019999651876562143, - "markup_range": 0.0012163911121609, - "min_markup": 0.008271029613320494, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03851137756004341, - "rentry_pprice_dist_wallet_exposure_weighting": 6.812393965306702, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ANTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ANTUSDT.json deleted file mode 100644 index 0448111e6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8273173092573307, - "ema_span_0": 967.1603181671228, - "ema_span_1": 1038.1117262925218, - "enabled": true, - "initial_eprice_ema_dist": 0.0016613575661468991, - "initial_qty_pct": 0.006990443028462147, - "markup_range": 0.0036391411258036702, - "min_markup": 0.004384230648547791, - "n_close_orders": 9, - "rentry_pprice_dist": 0.037697336874444, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7226400083214459, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11814702320918723, - "ema_span_0": 1311.9318805106657, - "ema_span_1": 1287.7612158812105, - "enabled": true, - "initial_eprice_ema_dist": 0.000956895293724553, - "initial_qty_pct": 0.015521454790508725, - "markup_range": 0.002151799460952336, - "min_markup": 0.002249250067877081, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04096897855031437, - "rentry_pprice_dist_wallet_exposure_weighting": 6.970630032157269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/APEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/APEUSDT.json deleted file mode 100644 index 88c69d988..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872605987200902, - "ema_span_0": 843.3742944769075, - "ema_span_1": 864.9139424453962, - "enabled": true, - "initial_eprice_ema_dist": 0.001216530679788105, - "initial_qty_pct": 0.008195645246324936, - "markup_range": 0.00645550405501119, - "min_markup": 0.0034573961453619236, - "n_close_orders": 3, - "rentry_pprice_dist": 0.033557305806778716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.988991802464223, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9399172304657406, - "ema_span_0": 961.9426368050015, - "ema_span_1": 953.2222052254747, - "enabled": true, - "initial_eprice_ema_dist": -0.009559464876427937, - "initial_qty_pct": 0.014506928400441484, - "markup_range": 0.0020056632855944916, - "min_markup": 0.0027261989340979123, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02537035077673717, - "rentry_pprice_dist_wallet_exposure_weighting": 5.367904903634112, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/API3USDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/API3USDT.json deleted file mode 100644 index 85900e5cc..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6959364814853224, - "ema_span_0": 846.2818797069314, - "ema_span_1": 667.5589269514833, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.007698026194857894, - "markup_range": 0.003650842593233969, - "min_markup": 0.0034504183594871412, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03181961660381122, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3262778152875043, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11814702320918723, - "ema_span_0": 1311.9318805106657, - "ema_span_1": 1287.7612158812105, - "enabled": true, - "initial_eprice_ema_dist": 0.000956895293724553, - "initial_qty_pct": 0.015521454790508725, - "markup_range": 0.002151799460952336, - "min_markup": 0.002249250067877081, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04096897855031437, - "rentry_pprice_dist_wallet_exposure_weighting": 6.970630032157269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/APTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/APTUSDT.json deleted file mode 100644 index 93c7a1bd2..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.576159674193559, - "ema_span_0": 625.382472891261, - "ema_span_1": 653.5440331035952, - "enabled": true, - "initial_eprice_ema_dist": -0.0011369005919328425, - "initial_qty_pct": 0.00782116147808587, - "markup_range": 0.0015136280098836067, - "min_markup": 0.004278340216667975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026199885334896974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9341649235801395, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.315157615759062, - "ema_span_0": 1288.638511763472, - "ema_span_1": 1178.166122578907, - "enabled": true, - "initial_eprice_ema_dist": -0.008352613483176433, - "initial_qty_pct": 0.005219245056790691, - "markup_range": 0.0022674979607707063, - "min_markup": 0.002748393639133431, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04629170038288606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.11533556541437862, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ARBUSDT.json deleted file mode 100644 index 9cbe1f64a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0326705786431252, - "ema_span_0": 604.038530534182, - "ema_span_1": 593.1936821764934, - "enabled": true, - "initial_eprice_ema_dist": -0.00668937672890069, - "initial_qty_pct": 0.019351048497405286, - "markup_range": 0.0034942125844474497, - "min_markup": 0.004154469214673117, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024539182484321853, - "rentry_pprice_dist_wallet_exposure_weighting": 3.621466219267716, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3494299671902126, - "ema_span_0": 1099.5790342782948, - "ema_span_1": 891.6931536882142, - "enabled": true, - "initial_eprice_ema_dist": 0.002067981400178223, - "initial_qty_pct": 0.006877338106826703, - "markup_range": 0.003371214635599383, - "min_markup": 0.003649602767132133, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0293128063288612, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5801575590666186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARKMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ARKMUSDT.json deleted file mode 100644 index ce00ca2e3..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.216917306949467, - "ema_span_0": 915.9802211066468, - "ema_span_1": 915.4877103272769, - "enabled": true, - "initial_eprice_ema_dist": -0.0005489194795821341, - "initial_qty_pct": 0.01160342726162193, - "markup_range": 0.0030821912593581966, - "min_markup": 0.004878378396481663, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02445624010688296, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4821943257112777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2356928402237624, - "ema_span_0": 1427.8027918257126, - "ema_span_1": 989.1340105907262, - "enabled": true, - "initial_eprice_ema_dist": -0.005340205744521353, - "initial_qty_pct": 0.007313021550325117, - "markup_range": 0.008901674224334835, - "min_markup": 0.005422658306909489, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494774681849112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310951245638644, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARKUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ARKUSDT.json deleted file mode 100644 index e431c14f0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9609135415246004, - "ema_span_0": 1403.5698139372596, - "ema_span_1": 986.2957480481507, - "enabled": true, - "initial_eprice_ema_dist": 0.002947454337247563, - "initial_qty_pct": 0.011597624865224218, - "markup_range": 0.0024845949302958656, - "min_markup": 0.005474116949369086, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029803783296612842, - "rentry_pprice_dist_wallet_exposure_weighting": 4.827121921787006, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6899290101211653, - "ema_span_0": 1411.1525438549577, - "ema_span_1": 1373.797232314367, - "enabled": true, - "initial_eprice_ema_dist": -0.0011670437295357812, - "initial_qty_pct": 0.013767177800042421, - "markup_range": 0.006711035149841956, - "min_markup": 0.009361408391124903, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0360233523272543, - "rentry_pprice_dist_wallet_exposure_weighting": 6.073823543142589, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARPAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ARPAUSDT.json deleted file mode 100644 index 876e27c53..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.106900394665009, - "ema_span_0": 1290.8273741237329, - "ema_span_1": 1304.1638617014348, - "enabled": true, - "initial_eprice_ema_dist": 0.0029984539237203523, - "initial_qty_pct": 0.010252114458830812, - "markup_range": 0.0013727175399165165, - "min_markup": 0.003935802528457953, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029801864958430596, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9610268762232803, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.005884778430044, - "ema_span_0": 417.57850046513363, - "ema_span_1": 538.7435709340597, - "enabled": true, - "initial_eprice_ema_dist": 0.0027538009432371037, - "initial_qty_pct": 0.01345481178486626, - "markup_range": 4.854932280747448e-05, - "min_markup": 0.0028396134734603746, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02400875253640311, - "rentry_pprice_dist_wallet_exposure_weighting": 2.752216616454941, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ARUSDT.json deleted file mode 100644 index 19280e28f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0871899405157714, - "ema_span_0": 552.9693847341467, - "ema_span_1": 656.5594904617175, - "enabled": true, - "initial_eprice_ema_dist": -0.003898036590157887, - "initial_qty_pct": 0.007907575036427134, - "markup_range": 0.007587342923906934, - "min_markup": 0.004194339676899615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03864097158082685, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6235335931801858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7936590038914226, - "ema_span_0": 1416.6690127087463, - "ema_span_1": 1362.485823019, - "enabled": true, - "initial_eprice_ema_dist": 0.0024609928207111062, - "initial_qty_pct": 0.0073646416082817304, - "markup_range": 0.0028733495615411516, - "min_markup": 0.00975689685836081, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04589725552454332, - "rentry_pprice_dist_wallet_exposure_weighting": 6.994487793167962, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ASTRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ASTRUSDT.json deleted file mode 100644 index f9a71d3b7..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1758804642072591, - "ema_span_0": 510.35258952046496, - "ema_span_1": 582.751362191825, - "enabled": true, - "initial_eprice_ema_dist": 0.0013542055701862069, - "initial_qty_pct": 0.012656949938989059, - "markup_range": 0.0023649770431966952, - "min_markup": 0.0031515091310822243, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02650613699963896, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6932212832986564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11814702320918723, - "ema_span_0": 1311.9318805106657, - "ema_span_1": 1287.7612158812105, - "enabled": true, - "initial_eprice_ema_dist": 0.000956895293724553, - "initial_qty_pct": 0.015521454790508725, - "markup_range": 0.002151799460952336, - "min_markup": 0.002249250067877081, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04096897855031437, - "rentry_pprice_dist_wallet_exposure_weighting": 6.970630032157269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ATAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ATAUSDT.json deleted file mode 100644 index 33b435a39..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2129292602387045, - "ema_span_0": 1099.8180435192135, - "ema_span_1": 1104.3748205904287, - "enabled": true, - "initial_eprice_ema_dist": -0.007654241773142833, - "initial_qty_pct": 0.006308448069205101, - "markup_range": 0.004361346293489825, - "min_markup": 0.004928506629181462, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03407286912369517, - "rentry_pprice_dist_wallet_exposure_weighting": 4.339965860689328, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.233843659051374, - "ema_span_0": 620.9439410068148, - "ema_span_1": 1141.4467876090778, - "enabled": true, - "initial_eprice_ema_dist": -0.005471578687433655, - "initial_qty_pct": 0.010059669904209461, - "markup_range": 0.0017407994687275836, - "min_markup": 0.009034052144763766, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015280419834390631, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802659146736087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ATOMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ATOMUSDT.json deleted file mode 100644 index 8cc328626..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.576159674193559, - "ema_span_0": 625.382472891261, - "ema_span_1": 653.5440331035952, - "enabled": true, - "initial_eprice_ema_dist": -0.0011369005919328425, - "initial_qty_pct": 0.00782116147808587, - "markup_range": 0.0015136280098836067, - "min_markup": 0.004278340216667975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026199885334896974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9341649235801395, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320635405488337, - "ema_span_0": 1377.7334935653412, - "ema_span_1": 1315.7297625154665, - "enabled": true, - "initial_eprice_ema_dist": -0.005557979440468435, - "initial_qty_pct": 0.014696556079592117, - "markup_range": 0.004149952239189911, - "min_markup": 0.00345076664826615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02433193338283072, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040436078836901, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AUDIOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AUDIOUSDT.json deleted file mode 100644 index 8a04c78b7..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11814702320918723, - "ema_span_0": 1311.9318805106657, - "ema_span_1": 1287.7612158812105, - "enabled": true, - "initial_eprice_ema_dist": 0.000956895293724553, - "initial_qty_pct": 0.015521454790508725, - "markup_range": 0.002151799460952336, - "min_markup": 0.002249250067877081, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04096897855031437, - "rentry_pprice_dist_wallet_exposure_weighting": 6.970630032157269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AVAXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AVAXUSDT.json deleted file mode 100644 index 375919e28..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7365704414152916, - "ema_span_0": 886.129141934448, - "ema_span_1": 1303.2189380763864, - "enabled": true, - "initial_eprice_ema_dist": 0.00034918794174462135, - "initial_qty_pct": 0.0073137193168916915, - "markup_range": 0.0002696910496149988, - "min_markup": 0.002537095195496491, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03299344074837391, - "rentry_pprice_dist_wallet_exposure_weighting": 4.925510698897232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.019785857969705, - "ema_span_0": 1032.7860926258877, - "ema_span_1": 1383.7207473361148, - "enabled": true, - "initial_eprice_ema_dist": 0.0029965681023830354, - "initial_qty_pct": 0.012163187837760008, - "markup_range": 0.008344216913244754, - "min_markup": 0.006463203573178485, - "n_close_orders": 2, - "rentry_pprice_dist": 0.048758040725881434, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3111828470232654, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/AXSUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/AXSUSDT.json deleted file mode 100644 index e8292a30d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872605987200902, - "ema_span_0": 843.3742944769075, - "ema_span_1": 864.9139424453962, - "enabled": true, - "initial_eprice_ema_dist": 0.001216530679788105, - "initial_qty_pct": 0.008195645246324936, - "markup_range": 0.00645550405501119, - "min_markup": 0.0034573961453619236, - "n_close_orders": 3, - "rentry_pprice_dist": 0.033557305806778716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.988991802464223, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6092236442211914, - "ema_span_0": 539.9791170514443, - "ema_span_1": 1431.1042679908815, - "enabled": true, - "initial_eprice_ema_dist": 0.002999491625433787, - "initial_qty_pct": 0.008278150469337796, - "markup_range": 0.0006674921843433056, - "min_markup": 0.0012364306562510855, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05428474957073753, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49996556619800603, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BAKEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BAKEUSDT.json deleted file mode 100644 index 0f5e11e76..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BALUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BALUSDT.json deleted file mode 100644 index d2299374d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 923.9275166946718, - "ema_span_1": 943.9911678701433, - "enabled": true, - "initial_eprice_ema_dist": -0.004302610443883405, - "initial_qty_pct": 0.005889927213589283, - "markup_range": 0.005287332854339719, - "min_markup": 0.00481346151178551, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0394368994923157, - "rentry_pprice_dist_wallet_exposure_weighting": 0.15751620502931427, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.334577043377333, - "ema_span_0": 866.5891523302652, - "ema_span_1": 890.5873067013968, - "enabled": true, - "initial_eprice_ema_dist": 0.0016627975790283447, - "initial_qty_pct": 0.01804009064746666, - "markup_range": 0.009248963180544587, - "min_markup": 0.0049070694183952395, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04580828135548051, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2351204454500158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BANDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BANDUSDT.json deleted file mode 100644 index 144aa5d15..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2641362300999307, - "ema_span_0": 439.68591677974763, - "ema_span_1": 491.4002950783783, - "enabled": true, - "initial_eprice_ema_dist": -0.0028050808561551283, - "initial_qty_pct": 0.014883361109011811, - "markup_range": 0.0061039552169209026, - "min_markup": 0.006193378185680342, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04757423145973606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2927593001298544, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6772505722902364, - "ema_span_0": 592.1853270939573, - "ema_span_1": 711.0967462437977, - "enabled": true, - "initial_eprice_ema_dist": 0.0014804614751454102, - "initial_qty_pct": 0.02, - "markup_range": 0.0034473512637887647, - "min_markup": 0.004000896336319276, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0553517889856698, - "rentry_pprice_dist_wallet_exposure_weighting": 4.466237879622266, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BATUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BATUSDT.json deleted file mode 100644 index 546bbc243..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.37583276517751, - "ema_span_0": 1022.5931474666991, - "ema_span_1": 784.8180582181259, - "enabled": true, - "initial_eprice_ema_dist": -0.0028933324520247793, - "initial_qty_pct": 0.007835576638073466, - "markup_range": 0.003299609625811331, - "min_markup": 0.007646559702907744, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03779523368963648, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5024287895151014, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.25778151187844517, - "ema_span_0": 1333.4561607683609, - "ema_span_1": 1023.0498143563754, - "enabled": true, - "initial_eprice_ema_dist": -0.009354643508332296, - "initial_qty_pct": 0.010543046192024775, - "markup_range": 0.007024079044035576, - "min_markup": 0.008452111276383295, - "n_close_orders": 7, - "rentry_pprice_dist": 0.036812172050336274, - "rentry_pprice_dist_wallet_exposure_weighting": 2.741987568320406, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BCHUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BCHUSDT.json deleted file mode 100644 index 1c96a3afe..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.494663096559708, - "ema_span_0": 1435.2612154343242, - "ema_span_1": 1281.8125045281074, - "enabled": true, - "initial_eprice_ema_dist": -0.0028999954921944964, - "initial_qty_pct": 0.013613350172592121, - "markup_range": 0.001272434874731811, - "min_markup": 0.003700319893435414, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03958671536464662, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3275718097174118, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5072348487197096, - "ema_span_0": 1291.4836529875563, - "ema_span_1": 1407.8115469183908, - "enabled": true, - "initial_eprice_ema_dist": 5.633113627768216e-05, - "initial_qty_pct": 0.007991016399812104, - "markup_range": 0.007485350198837225, - "min_markup": 0.003740509912933957, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030875879742131903, - "rentry_pprice_dist_wallet_exposure_weighting": 4.816841765196222, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BELUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BELUSDT.json deleted file mode 100644 index 766862424..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1107990734440274, - "ema_span_0": 1187.0297967779309, - "ema_span_1": 1061.1369229556215, - "enabled": true, - "initial_eprice_ema_dist": 7.380235099925537e-05, - "initial_qty_pct": 0.018428102555074977, - "markup_range": 0.0018285765333738901, - "min_markup": 0.0022455575908887715, - "n_close_orders": 6, - "rentry_pprice_dist": 0.047426080893467504, - "rentry_pprice_dist_wallet_exposure_weighting": 0.29098416270095506, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4597270174910709, - "ema_span_0": 1320.1469989681038, - "ema_span_1": 1235.888173563862, - "enabled": true, - "initial_eprice_ema_dist": 0.0005098653260316934, - "initial_qty_pct": 0.009077613114768415, - "markup_range": 0.003710043937811769, - "min_markup": 0.008409584407417028, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04915502869998958, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650750871176982, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BICOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BICOUSDT.json deleted file mode 100644 index ac0fcc6e3..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BICOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872391040129907, - "ema_span_0": 1227.677879308853, - "ema_span_1": 1321.9435653298738, - "enabled": true, - "initial_eprice_ema_dist": 6.875571249006968e-05, - "initial_qty_pct": 0.0050180565237401475, - "markup_range": 0.0007845643795819266, - "min_markup": 0.0034294712116233255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.01912283477089432, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12906820980223024, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BIGTIMEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BIGTIMEUSDT.json deleted file mode 100644 index c48618c05..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BIGTIMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8346782291828186, - "ema_span_0": 1296.6977885146393, - "ema_span_1": 1345.0875579447963, - "enabled": true, - "initial_eprice_ema_dist": -0.0026348931484374474, - "initial_qty_pct": 0.016939118082848717, - "markup_range": 0.0017125371779823971, - "min_markup": 0.005282415562047414, - "n_close_orders": 11, - "rentry_pprice_dist": 0.028246843624729776, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0295676545662378, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7750101400442486, - "ema_span_0": 1320.2696206355258, - "ema_span_1": 735.2869206182583, - "enabled": true, - "initial_eprice_ema_dist": -0.004040409082477572, - "initial_qty_pct": 0.005163922094282229, - "markup_range": 0.00875233349419754, - "min_markup": 0.009560639083380467, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032775850660841016, - "rentry_pprice_dist_wallet_exposure_weighting": 2.87001389891411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BLUEBIRDUSDT.json deleted file mode 100644 index 93dcdec5b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0241941468393185, - "ema_span_0": 854.5154633098247, - "ema_span_1": 1323.101255136699, - "enabled": true, - "initial_eprice_ema_dist": -0.004078971371150064, - "initial_qty_pct": 0.010749332238160055, - "markup_range": 0.0007992664209335222, - "min_markup": 0.0012641731578285265, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018427301438846414, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9471057366993407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2110175086766635, - "ema_span_0": 1142.3462518062308, - "ema_span_1": 775.8617301933227, - "enabled": true, - "initial_eprice_ema_dist": 0.0018380314783033418, - "initial_qty_pct": 0.013663277997224572, - "markup_range": 0.0006559595671607894, - "min_markup": 0.0029997672715825876, - "n_close_orders": 5, - "rentry_pprice_dist": 0.026750716807570938, - "rentry_pprice_dist_wallet_exposure_weighting": 4.484286285078949, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BLURUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BLURUSDT.json deleted file mode 100644 index 98a452565..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7649596061130892, - "ema_span_0": 1129.7774903837344, - "ema_span_1": 1064.056203139215, - "enabled": true, - "initial_eprice_ema_dist": 0.002085786428089617, - "initial_qty_pct": 0.012836987591214079, - "markup_range": 0.002474766705097072, - "min_markup": 0.007622716118254176, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0364534551652637, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1086190381493821, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0415850620906246, - "ema_span_0": 508.96259788148313, - "ema_span_1": 1405.3404137345779, - "enabled": true, - "initial_eprice_ema_dist": -0.002047762184921681, - "initial_qty_pct": 0.007796209154868364, - "markup_range": 0.0034167338251863575, - "min_markup": 0.0042088207720382895, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02120113742587117, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5548155586946635, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BLZUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BLZUSDT.json deleted file mode 100644 index e586023bb..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.240786925662353, - "ema_span_0": 1341.4574332698608, - "ema_span_1": 915.9865048293101, - "enabled": true, - "initial_eprice_ema_dist": -0.005318143439766036, - "initial_qty_pct": 0.008465746654740338, - "markup_range": 0.0022169002504451277, - "min_markup": 0.006736084405600496, - "n_close_orders": 10, - "rentry_pprice_dist": 0.043905682107342775, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8475086727018422, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7683360773661545, - "ema_span_0": 1234.5735793947715, - "ema_span_1": 1182.526257399062, - "enabled": true, - "initial_eprice_ema_dist": 0.002248791473923822, - "initial_qty_pct": 0.018866989139200676, - "markup_range": 0.0020912789103538425, - "min_markup": 0.007615193452807916, - "n_close_orders": 12, - "rentry_pprice_dist": 0.05406286602542849, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780058520887276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BNBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BNBUSDT.json deleted file mode 100644 index 9240f0192..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6926985904682654, - "ema_span_0": 1174.2181107371332, - "ema_span_1": 1409.8698326104613, - "enabled": true, - "initial_eprice_ema_dist": 0.0019754265208844525, - "initial_qty_pct": 0.01653657773134153, - "markup_range": 0.001340047200363153, - "min_markup": 0.002072369563277908, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02229679226417164, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5938509725748373, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7216841591007186, - "ema_span_0": 1263.8490796256517, - "ema_span_1": 1207.2471023552573, - "enabled": true, - "initial_eprice_ema_dist": 0.0029979064698970968, - "initial_qty_pct": 0.0064698754547966725, - "markup_range": 0.001620435065840483, - "min_markup": 0.002181350887498909, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023871466051747028, - "rentry_pprice_dist_wallet_exposure_weighting": 3.891811047469158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BNTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BNTUSDT.json deleted file mode 100644 index 36b81eaf2..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.216917306949467, - "ema_span_0": 915.9802211066468, - "ema_span_1": 915.4877103272769, - "enabled": true, - "initial_eprice_ema_dist": -0.0005489194795821341, - "initial_qty_pct": 0.01160342726162193, - "markup_range": 0.0030821912593581966, - "min_markup": 0.004878378396481663, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02445624010688296, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4821943257112777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9962124273035156, - "ema_span_0": 1404.134945294438, - "ema_span_1": 516.287338018794, - "enabled": true, - "initial_eprice_ema_dist": 0.002981167750202808, - "initial_qty_pct": 0.01966287146969542, - "markup_range": 0.004535777655221748, - "min_markup": 0.007399664415034845, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05110197237154828, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2351204454500158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BNXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BNXUSDT.json deleted file mode 100644 index 0b326804c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BONDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BONDUSDT.json deleted file mode 100644 index 4e7fdb513..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BONDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2682890798862727, - "ema_span_0": 632.1305394716604, - "ema_span_1": 446.0122065994606, - "enabled": true, - "initial_eprice_ema_dist": -0.007254302953006664, - "initial_qty_pct": 0.006313257586029646, - "markup_range": 0.001035484202141247, - "min_markup": 0.0031882761069496734, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04812120811473066, - "rentry_pprice_dist_wallet_exposure_weighting": 6.057896071427606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BSVUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BSVUSDT.json deleted file mode 100644 index 9dc98b4c8..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3784984584343154, - "ema_span_0": 849.6056361830362, - "ema_span_1": 1176.474410216494, - "enabled": true, - "initial_eprice_ema_dist": -0.001972662826097839, - "initial_qty_pct": 0.011577591700557872, - "markup_range": 0.0035539360236690916, - "min_markup": 0.0049434807501742275, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033481026370005045, - "rentry_pprice_dist_wallet_exposure_weighting": 1.074853172733533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BTCDOMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BTCDOMUSDT.json deleted file mode 100644 index c9ad1d6c0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35424661844691196, - "ema_span_0": 441.4779746092039, - "ema_span_1": 1067.7076812966789, - "enabled": true, - "initial_eprice_ema_dist": -0.00531869397469693, - "initial_qty_pct": 0.0056497753346014855, - "markup_range": 0.00022966304447854743, - "min_markup": 0.0019972013348434955, - "n_close_orders": 5, - "rentry_pprice_dist": 0.013542212975156311, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7147030945723465, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7675356695294622, - "ema_span_0": 1393.4546224480537, - "ema_span_1": 1368.6820585392252, - "enabled": true, - "initial_eprice_ema_dist": 0.002627474568962309, - "initial_qty_pct": 0.014613064644839368, - "markup_range": 6.007043140302867e-07, - "min_markup": 0.001041562919519315, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027968843709405767, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4766732171762642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/BTCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/BTCUSDT.json deleted file mode 100644 index bfbc4d26c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7862968909226588, - "ema_span_0": 1244.728182189878, - "ema_span_1": 1167.514773021885, - "enabled": true, - "initial_eprice_ema_dist": -0.0003633765030265621, - "initial_qty_pct": 0.013825972266251355, - "markup_range": 0.0028181430004715242, - "min_markup": 0.002772733392322867, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021167677599601094, - "rentry_pprice_dist_wallet_exposure_weighting": 2.273528729156889, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8249924078489226, - "ema_span_0": 669.7462100202348, - "ema_span_1": 1102.0638236239795, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011644203308690045, - "markup_range": 0.00017161848466332644, - "min_markup": 0.0015061965976320075, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025349863778944465, - "rentry_pprice_dist_wallet_exposure_weighting": 4.476648317606985, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/C98USDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/C98USDT.json deleted file mode 100644 index ac968246e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9893296082523437, - "ema_span_0": 874.7203664860392, - "ema_span_1": 865.1657411257919, - "enabled": true, - "initial_eprice_ema_dist": -0.0077946137657555845, - "initial_qty_pct": 0.005664645418252266, - "markup_range": 0.002673068146602038, - "min_markup": 0.008181563017914978, - "n_close_orders": 15, - "rentry_pprice_dist": 0.05852383188379929, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9314186458502194, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30906564301844636, - "ema_span_0": 1437.4919090483247, - "ema_span_1": 1256.7996405007086, - "enabled": true, - "initial_eprice_ema_dist": -0.00011402378946140085, - "initial_qty_pct": 0.019266574506648867, - "markup_range": 0.007760908258217274, - "min_markup": 0.009930945732328467, - "n_close_orders": 2, - "rentry_pprice_dist": 0.038268604669729256, - "rentry_pprice_dist_wallet_exposure_weighting": 4.68853789900921, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CELOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CELOUSDT.json deleted file mode 100644 index 3c3f03d43..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6959364814853224, - "ema_span_0": 846.2818797069314, - "ema_span_1": 667.5589269514833, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.007698026194857894, - "markup_range": 0.003650842593233969, - "min_markup": 0.0034504183594871412, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03181961660381122, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3262778152875043, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7683360773661545, - "ema_span_0": 1234.5735793947715, - "ema_span_1": 1182.526257399062, - "enabled": true, - "initial_eprice_ema_dist": 0.002248791473923822, - "initial_qty_pct": 0.018866989139200676, - "markup_range": 0.0020912789103538425, - "min_markup": 0.007615193452807916, - "n_close_orders": 12, - "rentry_pprice_dist": 0.05406286602542849, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780058520887276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CELRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CELRUSDT.json deleted file mode 100644 index 186991118..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.27096035018830045, - "ema_span_0": 1269.5197471401505, - "ema_span_1": 898.2966827186488, - "enabled": true, - "initial_eprice_ema_dist": -0.006163257160822988, - "initial_qty_pct": 0.018500732913510638, - "markup_range": 0.006841402135543796, - "min_markup": 0.007926055054261747, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03553139040733693, - "rentry_pprice_dist_wallet_exposure_weighting": 1.694898736755689, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CFXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CFXUSDT.json deleted file mode 100644 index cdb7d1eba..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.167140586306193, - "ema_span_0": 707.0139563318876, - "ema_span_1": 986.6557082420491, - "enabled": true, - "initial_eprice_ema_dist": 0.0013304464037827435, - "initial_qty_pct": 0.009692734589303961, - "markup_range": 0.0030041528435637553, - "min_markup": 0.0060026949515076, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04238608588829712, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6919457098262045, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8249924078489226, - "ema_span_0": 669.7462100202348, - "ema_span_1": 1102.0638236239795, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011644203308690045, - "markup_range": 0.00017161848466332644, - "min_markup": 0.0015061965976320075, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025349863778944465, - "rentry_pprice_dist_wallet_exposure_weighting": 4.476648317606985, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CHRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CHRUSDT.json deleted file mode 100644 index 1a7e96d51..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6475996977230042, - "ema_span_0": 1327.4835112758085, - "ema_span_1": 1246.3991645383985, - "enabled": true, - "initial_eprice_ema_dist": -0.0019821962339490336, - "initial_qty_pct": 0.007840114499406728, - "markup_range": 0.0072505102752336145, - "min_markup": 0.007640126509850268, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03250340913085186, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9660799829915403, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.833734960392188, - "ema_span_0": 1122.3290940738093, - "ema_span_1": 1103.387890801711, - "enabled": true, - "initial_eprice_ema_dist": -0.004661557881565731, - "initial_qty_pct": 0.013489237242046603, - "markup_range": 0.007402399651867324, - "min_markup": 0.008828852082536205, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03961542937713208, - "rentry_pprice_dist_wallet_exposure_weighting": 1.631881917800236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CHZUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CHZUSDT.json deleted file mode 100644 index 0eb298c95..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7365704414152916, - "ema_span_0": 886.129141934448, - "ema_span_1": 1303.2189380763864, - "enabled": true, - "initial_eprice_ema_dist": 0.00034918794174462135, - "initial_qty_pct": 0.0073137193168916915, - "markup_range": 0.0002696910496149988, - "min_markup": 0.002537095195496491, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03299344074837391, - "rentry_pprice_dist_wallet_exposure_weighting": 4.925510698897232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38378794359993323, - "ema_span_0": 476.9109740173736, - "ema_span_1": 659.0428580647598, - "enabled": true, - "initial_eprice_ema_dist": 0.0027465969541848644, - "initial_qty_pct": 0.019927721003175844, - "markup_range": 0.0061778827690639766, - "min_markup": 0.005287461494442256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03924498315601018, - "rentry_pprice_dist_wallet_exposure_weighting": 6.80703315013386, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CKBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CKBUSDT.json deleted file mode 100644 index 62bbb6377..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2356928402237624, - "ema_span_0": 1427.8027918257126, - "ema_span_1": 989.1340105907262, - "enabled": true, - "initial_eprice_ema_dist": -0.005340205744521353, - "initial_qty_pct": 0.007313021550325117, - "markup_range": 0.008901674224334835, - "min_markup": 0.005422658306909489, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494774681849112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310951245638644, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/COMBOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/COMBOUSDT.json deleted file mode 100644 index d83ffa3f2..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9999896266278707, - "ema_span_0": 1359.6353848270103, - "ema_span_1": 1381.8092888166154, - "enabled": true, - "initial_eprice_ema_dist": -0.004574444249276495, - "initial_qty_pct": 0.018461573769578892, - "markup_range": 0.0013650649907910848, - "min_markup": 0.003482942654520292, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03131063089035589, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7445950561586382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2356928402237624, - "ema_span_0": 1427.8027918257126, - "ema_span_1": 989.1340105907262, - "enabled": true, - "initial_eprice_ema_dist": -0.005340205744521353, - "initial_qty_pct": 0.007313021550325117, - "markup_range": 0.008901674224334835, - "min_markup": 0.005422658306909489, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494774681849112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310951245638644, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/COMPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/COMPUSDT.json deleted file mode 100644 index 5229eac01..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.41340289592683754, - "ema_span_0": 1287.6992116484275, - "ema_span_1": 1204.8487927002093, - "enabled": true, - "initial_eprice_ema_dist": 0.0025057527537306525, - "initial_qty_pct": 0.011236563405633575, - "markup_range": 0.007468298070626314, - "min_markup": 0.008025746181353448, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036613599724704, - "rentry_pprice_dist_wallet_exposure_weighting": 6.298204345670309, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/COTIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/COTIUSDT.json deleted file mode 100644 index 598cb04b0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.677018133332895, - "ema_span_0": 1235.7525515833377, - "ema_span_1": 1277.1433184735629, - "enabled": true, - "initial_eprice_ema_dist": -0.003130536615432617, - "initial_qty_pct": 0.01841343032582347, - "markup_range": 0.005340723932525618, - "min_markup": 0.005325276677515647, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03785221672463879, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0150521373378953, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.781033998959295, - "ema_span_0": 1411.6020388362047, - "ema_span_1": 456.75227193934194, - "enabled": true, - "initial_eprice_ema_dist": -0.0037782132081332093, - "initial_qty_pct": 0.015185573144830315, - "markup_range": 0.006660155814512747, - "min_markup": 0.005864518374732328, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03670591007903218, - "rentry_pprice_dist_wallet_exposure_weighting": 5.2704885637723065, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CRVUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CRVUSDT.json deleted file mode 100644 index b4faf6434..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7649596061130892, - "ema_span_0": 1129.7774903837344, - "ema_span_1": 1064.056203139215, - "enabled": true, - "initial_eprice_ema_dist": 0.002085786428089617, - "initial_qty_pct": 0.012836987591214079, - "markup_range": 0.002474766705097072, - "min_markup": 0.007622716118254176, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0364534551652637, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1086190381493821, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9466784286934358, - "ema_span_0": 905.0697721880944, - "ema_span_1": 912.9214311181881, - "enabled": true, - "initial_eprice_ema_dist": -0.007575040567385521, - "initial_qty_pct": 0.012106984643908462, - "markup_range": 0.0071962271813877125, - "min_markup": 0.0025092713565010795, - "n_close_orders": 2, - "rentry_pprice_dist": 0.037089632374749694, - "rentry_pprice_dist_wallet_exposure_weighting": 5.184381954830113, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CTKUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CTKUSDT.json deleted file mode 100644 index 65e980a14..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10001068717462122, - "ema_span_0": 1388.420506457803, - "ema_span_1": 405.5981329510556, - "enabled": true, - "initial_eprice_ema_dist": -0.008234599359277612, - "initial_qty_pct": 0.015726353698551625, - "markup_range": 0.006055760310440219, - "min_markup": 0.0024064896736204692, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02602231875215248, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1338739749399473, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2110175086766635, - "ema_span_0": 1142.3462518062308, - "ema_span_1": 775.8617301933227, - "enabled": true, - "initial_eprice_ema_dist": 0.0018380314783033418, - "initial_qty_pct": 0.013663277997224572, - "markup_range": 0.0006559595671607894, - "min_markup": 0.0029997672715825876, - "n_close_orders": 5, - "rentry_pprice_dist": 0.026750716807570938, - "rentry_pprice_dist_wallet_exposure_weighting": 4.484286285078949, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CTSIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CTSIUSDT.json deleted file mode 100644 index 5c5c34bef..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1758804642072591, - "ema_span_0": 510.35258952046496, - "ema_span_1": 582.751362191825, - "enabled": true, - "initial_eprice_ema_dist": 0.0013542055701862069, - "initial_qty_pct": 0.012656949938989059, - "markup_range": 0.0023649770431966952, - "min_markup": 0.0031515091310822243, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02650613699963896, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6932212832986564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2254201254479689, - "ema_span_0": 754.8776059340863, - "ema_span_1": 648.1161567916351, - "enabled": true, - "initial_eprice_ema_dist": -0.006936943023553597, - "initial_qty_pct": 0.008491423014435846, - "markup_range": 0.0034510328091540677, - "min_markup": 0.005708815265135584, - "n_close_orders": 4, - "rentry_pprice_dist": 0.036607404452838124, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1276851864775603, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CVXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CVXUSDT.json deleted file mode 100644 index 14b9b2c2e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7681336482631624, - "ema_span_0": 631.527076475957, - "ema_span_1": 828.5490050867977, - "enabled": true, - "initial_eprice_ema_dist": -0.0020834779357337047, - "initial_qty_pct": 0.006310631710393618, - "markup_range": 0.002668947694119416, - "min_markup": 0.00559746324383762, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032436522687022504, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3737679276306998, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7216841591007186, - "ema_span_0": 1263.8490796256517, - "ema_span_1": 1207.2471023552573, - "enabled": true, - "initial_eprice_ema_dist": 0.0029979064698970968, - "initial_qty_pct": 0.0064698754547966725, - "markup_range": 0.001620435065840483, - "min_markup": 0.002181350887498909, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023871466051747028, - "rentry_pprice_dist_wallet_exposure_weighting": 3.891811047469158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/CYBERUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/CYBERUSDT.json deleted file mode 100644 index d32953d3c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9609135415246004, - "ema_span_0": 1403.5698139372596, - "ema_span_1": 986.2957480481507, - "enabled": true, - "initial_eprice_ema_dist": 0.002947454337247563, - "initial_qty_pct": 0.011597624865224218, - "markup_range": 0.0024845949302958656, - "min_markup": 0.005474116949369086, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029803783296612842, - "rentry_pprice_dist_wallet_exposure_weighting": 4.827121921787006, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2682890798862727, - "ema_span_0": 632.1305394716604, - "ema_span_1": 446.0122065994606, - "enabled": true, - "initial_eprice_ema_dist": -0.007254302953006664, - "initial_qty_pct": 0.006313257586029646, - "markup_range": 0.001035484202141247, - "min_markup": 0.0031882761069496734, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04812120811473066, - "rentry_pprice_dist_wallet_exposure_weighting": 6.057896071427606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DARUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DARUSDT.json deleted file mode 100644 index a996c0636..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320635405488337, - "ema_span_0": 1300.5536820606558, - "ema_span_1": 1369.937330690802, - "enabled": true, - "initial_eprice_ema_dist": 0.0023874831572265956, - "initial_qty_pct": 0.014544963420882275, - "markup_range": 0.0076891683356736, - "min_markup": 0.005287461494442256, - "n_close_orders": 11, - "rentry_pprice_dist": 0.025945669732574148, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DASHUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DASHUSDT.json deleted file mode 100644 index cd6b4b3f4..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5473051432272358, - "ema_span_0": 413.7108767036566, - "ema_span_1": 594.4359574789827, - "enabled": true, - "initial_eprice_ema_dist": -0.0015636043401956188, - "initial_qty_pct": 0.008644178133148798, - "markup_range": 0.0032659546601176543, - "min_markup": 0.003672995077607256, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03448449340311196, - "rentry_pprice_dist_wallet_exposure_weighting": 4.063447093933854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7987196231211298, - "ema_span_0": 659.9612392275959, - "ema_span_1": 985.200714112829, - "enabled": true, - "initial_eprice_ema_dist": -0.0051835994042280726, - "initial_qty_pct": 0.014841703969268438, - "markup_range": 0.0037815135108540837, - "min_markup": 0.0036403742959783656, - "n_close_orders": 16, - "rentry_pprice_dist": 0.02541316944112589, - "rentry_pprice_dist_wallet_exposure_weighting": 6.622485017403033, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DEFIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DEFIUSDT.json deleted file mode 100644 index c5c923f4c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7292297521921662, - "ema_span_0": 537.2585927287286, - "ema_span_1": 700.4486384573443, - "enabled": true, - "initial_eprice_ema_dist": -0.001257852395133144, - "initial_qty_pct": 0.01717134415211984, - "markup_range": 0.00046346376119427347, - "min_markup": 0.005717744360779679, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03519218036728101, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0664360194182443, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2356928402237624, - "ema_span_0": 1427.8027918257126, - "ema_span_1": 989.1340105907262, - "enabled": true, - "initial_eprice_ema_dist": -0.005340205744521353, - "initial_qty_pct": 0.007313021550325117, - "markup_range": 0.008901674224334835, - "min_markup": 0.005422658306909489, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494774681849112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310951245638644, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DENTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DENTUSDT.json deleted file mode 100644 index c43bddb66..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4614385771405074, - "ema_span_0": 727.7915891801439, - "ema_span_1": 1402.9328547334374, - "enabled": true, - "initial_eprice_ema_dist": -0.005990773349544054, - "initial_qty_pct": 0.0064349278400888076, - "markup_range": 0.004823582063649305, - "min_markup": 0.005515936452553967, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02997612371533758, - "rentry_pprice_dist_wallet_exposure_weighting": 5.008944680842955, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3494299671902126, - "ema_span_0": 1099.5790342782948, - "ema_span_1": 891.6931536882142, - "enabled": true, - "initial_eprice_ema_dist": 0.002067981400178223, - "initial_qty_pct": 0.006877338106826703, - "markup_range": 0.003371214635599383, - "min_markup": 0.003649602767132133, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0293128063288612, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5801575590666186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DGBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DGBUSDT.json deleted file mode 100644 index 513adf96c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.724785317488146, - "ema_span_0": 1305.1685051317481, - "ema_span_1": 1239.7518555161787, - "enabled": true, - "initial_eprice_ema_dist": -0.00876988373157748, - "initial_qty_pct": 0.009285095635790034, - "markup_range": 0.003230632776522042, - "min_markup": 0.003277079758254424, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03478729446165419, - "rentry_pprice_dist_wallet_exposure_weighting": 3.186056280037116, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2456961987438916, - "ema_span_0": 1018.4680148899135, - "ema_span_1": 795.8544606770614, - "enabled": true, - "initial_eprice_ema_dist": -0.008684348351159167, - "initial_qty_pct": 0.018575833019864433, - "markup_range": 0.002891776961011528, - "min_markup": 0.00554347316054491, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019444001414174662, - "rentry_pprice_dist_wallet_exposure_weighting": 5.8542749862116565, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DODOXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DODOXUSDT.json deleted file mode 100644 index a0f7df3d6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18107037609715146, - "ema_span_0": 534.4984274804051, - "ema_span_1": 525.8514541543207, - "enabled": true, - "initial_eprice_ema_dist": -0.00568511670263008, - "initial_qty_pct": 0.013876379097443346, - "markup_range": 0.003361549327320251, - "min_markup": 0.0037459290539795715, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016992396397882446, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4255615311562195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DOGEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DOGEUSDT.json deleted file mode 100644 index 929a6d1f8..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18107037609715146, - "ema_span_0": 534.4984274804051, - "ema_span_1": 525.8514541543207, - "enabled": true, - "initial_eprice_ema_dist": -0.00568511670263008, - "initial_qty_pct": 0.013876379097443346, - "markup_range": 0.003361549327320251, - "min_markup": 0.0037459290539795715, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016992396397882446, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4255615311562195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5869640230496587, - "ema_span_0": 1380.5212698115627, - "ema_span_1": 1418.4084949780413, - "enabled": true, - "initial_eprice_ema_dist": -0.005981297445439179, - "initial_qty_pct": 0.009154623305304997, - "markup_range": 0.0012897923814616553, - "min_markup": 0.002585761843114575, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030599470045037946, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5881754325681502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DOTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DOTUSDT.json deleted file mode 100644 index de0a1b148..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9295961467888398, - "ema_span_0": 963.8979774269824, - "ema_span_1": 888.4244758500278, - "enabled": true, - "initial_eprice_ema_dist": -0.0070262833903947195, - "initial_qty_pct": 0.012437039284533226, - "markup_range": 0.004492387751566958, - "min_markup": 0.005634490370496687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02388421916858395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3005133885012596, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8027787542027762, - "ema_span_0": 1436.8343438285362, - "ema_span_1": 1386.5511655702765, - "enabled": true, - "initial_eprice_ema_dist": 0.002834521224448135, - "initial_qty_pct": 0.00930399121755424, - "markup_range": 6.664167120364612e-08, - "min_markup": 0.0020903953001758444, - "n_close_orders": 15, - "rentry_pprice_dist": 0.045578517135331204, - "rentry_pprice_dist_wallet_exposure_weighting": 3.265703824925942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DUSKUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DUSKUSDT.json deleted file mode 100644 index e11439088..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6705209616578605, - "ema_span_0": 1083.3547295750038, - "ema_span_1": 634.1252722984411, - "enabled": true, - "initial_eprice_ema_dist": -0.0017641404912276618, - "initial_qty_pct": 0.009746112646765446, - "markup_range": 0.0033178362680796776, - "min_markup": 0.0066470663150352835, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04292049842163451, - "rentry_pprice_dist_wallet_exposure_weighting": 0.912722616868512, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/DYDXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/DYDXUSDT.json deleted file mode 100644 index d51819b2f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7936590038914226, - "ema_span_0": 1416.6690127087463, - "ema_span_1": 1362.485823019, - "enabled": true, - "initial_eprice_ema_dist": 0.0024609928207111062, - "initial_qty_pct": 0.0073646416082817304, - "markup_range": 0.0028733495615411516, - "min_markup": 0.00975689685836081, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04589725552454332, - "rentry_pprice_dist_wallet_exposure_weighting": 6.994487793167962, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/EDUUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/EDUUSDT.json deleted file mode 100644 index bb3d92d35..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.380924028420745, - "ema_span_0": 1060.359257037373, - "ema_span_1": 611.9109050693339, - "enabled": true, - "initial_eprice_ema_dist": 0.00029642522149046405, - "initial_qty_pct": 0.00647505547056164, - "markup_range": 0.008458431084205256, - "min_markup": 0.006542395815989623, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03600915717938197, - "rentry_pprice_dist_wallet_exposure_weighting": 5.082004488772913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/EGLDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/EGLDUSDT.json deleted file mode 100644 index 81135423d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1250440227178462, - "ema_span_0": 1234.831813548717, - "ema_span_1": 1066.317823060109, - "enabled": true, - "initial_eprice_ema_dist": -0.005783825160567683, - "initial_qty_pct": 0.014475737585293795, - "markup_range": 0.005702387510139781, - "min_markup": 0.003287925190436558, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027619319889671194, - "rentry_pprice_dist_wallet_exposure_weighting": 2.430137487762621, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1201567046504906, - "ema_span_0": 614.5634183054134, - "ema_span_1": 693.8028395078741, - "enabled": true, - "initial_eprice_ema_dist": 0.002357679243998225, - "initial_qty_pct": 0.012565361087548408, - "markup_range": 0.0008879536758302892, - "min_markup": 0.004463133208382252, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048203579326384714, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0006272224817946995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ENJUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ENJUSDT.json deleted file mode 100644 index 084ca6a38..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.301581931902507, - "ema_span_0": 1250.584625771209, - "ema_span_1": 1305.754832169856, - "enabled": true, - "initial_eprice_ema_dist": 0.0011282941633741534, - "initial_qty_pct": 0.011828505718820237, - "markup_range": 0.004376869172830702, - "min_markup": 0.0056642254962501765, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03347699928613873, - "rentry_pprice_dist_wallet_exposure_weighting": 4.820275399938184, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.983609344274, - "ema_span_1": 481.33407436832346, - "enabled": true, - "initial_eprice_ema_dist": -0.007907591506015874, - "initial_qty_pct": 0.0069435379847247805, - "markup_range": 0.004328709614016812, - "min_markup": 0.004581408868169906, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01905164421695529, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7835177548993126, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ENSUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ENSUSDT.json deleted file mode 100644 index 27c3c7ea5..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10001068717462122, - "ema_span_0": 1388.420506457803, - "ema_span_1": 405.5981329510556, - "enabled": true, - "initial_eprice_ema_dist": -0.008234599359277612, - "initial_qty_pct": 0.015726353698551625, - "markup_range": 0.006055760310440219, - "min_markup": 0.0024064896736204692, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02602231875215248, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1338739749399473, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.727565826864478, - "ema_span_0": 1439.9430113247765, - "ema_span_1": 1409.3389608753075, - "enabled": true, - "initial_eprice_ema_dist": -0.0012011675821898822, - "initial_qty_pct": 0.012952424946635826, - "markup_range": 0.006871823587073234, - "min_markup": 0.0025268327318947294, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0337054177285124, - "rentry_pprice_dist_wallet_exposure_weighting": 5.681977808960477, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/EOSUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/EOSUSDT.json deleted file mode 100644 index eb481a74e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.316972780009348, - "ema_span_0": 554.5737431891346, - "ema_span_1": 676.3472218225754, - "enabled": true, - "initial_eprice_ema_dist": 0.0007066626162150962, - "initial_qty_pct": 0.010224342958451805, - "markup_range": 0.0014843086571736841, - "min_markup": 0.004089354591992062, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027130948937332762, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646650578741386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.727565826864478, - "ema_span_0": 1439.9430113247765, - "ema_span_1": 1409.3389608753075, - "enabled": true, - "initial_eprice_ema_dist": -0.0012011675821898822, - "initial_qty_pct": 0.012952424946635826, - "markup_range": 0.006871823587073234, - "min_markup": 0.0025268327318947294, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0337054177285124, - "rentry_pprice_dist_wallet_exposure_weighting": 5.681977808960477, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ETCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ETCUSDT.json deleted file mode 100644 index 172baa938..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0241941468393185, - "ema_span_0": 854.5154633098247, - "ema_span_1": 1323.101255136699, - "enabled": true, - "initial_eprice_ema_dist": -0.004078971371150064, - "initial_qty_pct": 0.010749332238160055, - "markup_range": 0.0007992664209335222, - "min_markup": 0.0012641731578285265, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018427301438846414, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9471057366993407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9287809249490262, - "ema_span_0": 444.1079291744426, - "ema_span_1": 759.5604506204405, - "enabled": true, - "initial_eprice_ema_dist": -0.003401161259949965, - "initial_qty_pct": 0.014666255944116555, - "markup_range": 0.0014079876902474396, - "min_markup": 0.002133305676736536, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03404460563447964, - "rentry_pprice_dist_wallet_exposure_weighting": 1.32143834746176, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ETHUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ETHUSDT.json deleted file mode 100644 index ef4b8aa80..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.540138954519198, - "ema_span_0": 1174.89882113018, - "ema_span_1": 1381.5375790464013, - "enabled": true, - "initial_eprice_ema_dist": 0.001693262207703886, - "initial_qty_pct": 0.012710220376589467, - "markup_range": 0.0021186491868327444, - "min_markup": 0.0018726019019261022, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014966050992528302, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09335644393205807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6092236442211914, - "ema_span_0": 539.9791170514443, - "ema_span_1": 1431.1042679908815, - "enabled": true, - "initial_eprice_ema_dist": 0.002999491625433787, - "initial_qty_pct": 0.008278150469337796, - "markup_range": 0.0006674921843433056, - "min_markup": 0.0012364306562510855, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05428474957073753, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49996556619800603, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FETUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FETUSDT.json deleted file mode 100644 index c21b9523c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.576159674193559, - "ema_span_0": 625.382472891261, - "ema_span_1": 653.5440331035952, - "enabled": true, - "initial_eprice_ema_dist": -0.0011369005919328425, - "initial_qty_pct": 0.00782116147808587, - "markup_range": 0.0015136280098836067, - "min_markup": 0.004278340216667975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026199885334896974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9341649235801395, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7987196231211298, - "ema_span_0": 659.9612392275959, - "ema_span_1": 985.200714112829, - "enabled": true, - "initial_eprice_ema_dist": -0.0051835994042280726, - "initial_qty_pct": 0.014841703969268438, - "markup_range": 0.0037815135108540837, - "min_markup": 0.0036403742959783656, - "n_close_orders": 16, - "rentry_pprice_dist": 0.02541316944112589, - "rentry_pprice_dist_wallet_exposure_weighting": 6.622485017403033, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FILUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FILUSDT.json deleted file mode 100644 index 2993bdfce..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5836895678750075, - "ema_span_0": 923.2133069654768, - "ema_span_1": 509.0207042537475, - "enabled": true, - "initial_eprice_ema_dist": -0.005468261848568301, - "initial_qty_pct": 0.010831887076363154, - "markup_range": 0.0024759294694826793, - "min_markup": 0.0038801398577469445, - "n_close_orders": 6, - "rentry_pprice_dist": 0.01808151243335834, - "rentry_pprice_dist_wallet_exposure_weighting": 6.104914344369326, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.306299357885784, - "ema_span_0": 1433.4976632686808, - "ema_span_1": 1221.2619546387925, - "enabled": true, - "initial_eprice_ema_dist": 0.0025183978173258653, - "initial_qty_pct": 0.015339815120780979, - "markup_range": 0.0011060715769700266, - "min_markup": 0.004241668938977198, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04787091476393872, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0362585722412225, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FLMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FLMUSDT.json deleted file mode 100644 index 5b8773a38..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0557591000623985, - "ema_span_0": 1114.054934818359, - "ema_span_1": 1375.8044096563435, - "enabled": true, - "initial_eprice_ema_dist": 0.0014368021066835746, - "initial_qty_pct": 0.0055427786500124206, - "markup_range": 0.0036720634473713346, - "min_markup": 0.009850446787923729, - "n_close_orders": 12, - "rentry_pprice_dist": 0.05491102894623964, - "rentry_pprice_dist_wallet_exposure_weighting": 5.22600329030483, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FLOWUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FLOWUSDT.json deleted file mode 100644 index 3c05ec73b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.167140586306193, - "ema_span_0": 707.0139563318876, - "ema_span_1": 986.6557082420491, - "enabled": true, - "initial_eprice_ema_dist": 0.0013304464037827435, - "initial_qty_pct": 0.009692734589303961, - "markup_range": 0.0030041528435637553, - "min_markup": 0.0060026949515076, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04238608588829712, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6919457098262045, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6258540135694786, - "ema_span_0": 711.9546807372815, - "ema_span_1": 858.0282468378499, - "enabled": true, - "initial_eprice_ema_dist": 0.0008079581405647542, - "initial_qty_pct": 0.007453152435662164, - "markup_range": 0.0008088054964302434, - "min_markup": 0.009099592555569072, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03472296891038273, - "rentry_pprice_dist_wallet_exposure_weighting": 4.079941162308193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FOOTBALLUSDT.json deleted file mode 100644 index 27f31d0ad..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5836895678750075, - "ema_span_0": 923.2133069654768, - "ema_span_1": 509.0207042537475, - "enabled": true, - "initial_eprice_ema_dist": -0.005468261848568301, - "initial_qty_pct": 0.010831887076363154, - "markup_range": 0.0024759294694826793, - "min_markup": 0.0038801398577469445, - "n_close_orders": 6, - "rentry_pprice_dist": 0.01808151243335834, - "rentry_pprice_dist_wallet_exposure_weighting": 6.104914344369326, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.233843659051374, - "ema_span_0": 620.9439410068148, - "ema_span_1": 1141.4467876090778, - "enabled": true, - "initial_eprice_ema_dist": -0.005471578687433655, - "initial_qty_pct": 0.010059669904209461, - "markup_range": 0.0017407994687275836, - "min_markup": 0.009034052144763766, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015280419834390631, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802659146736087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FRONTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FRONTUSDT.json deleted file mode 100644 index e0b86adb8..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FRONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.540138954519198, - "ema_span_0": 1174.89882113018, - "ema_span_1": 1381.5375790464013, - "enabled": true, - "initial_eprice_ema_dist": 0.001693262207703886, - "initial_qty_pct": 0.012710220376589467, - "markup_range": 0.0021186491868327444, - "min_markup": 0.0018726019019261022, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014966050992528302, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09335644393205807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1201567046504906, - "ema_span_0": 614.5634183054134, - "ema_span_1": 693.8028395078741, - "enabled": true, - "initial_eprice_ema_dist": 0.002357679243998225, - "initial_qty_pct": 0.012565361087548408, - "markup_range": 0.0008879536758302892, - "min_markup": 0.004463133208382252, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048203579326384714, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0006272224817946995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FTMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FTMUSDT.json deleted file mode 100644 index 02b3eced6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17271166206056668, - "ema_span_0": 1287.7065618562121, - "ema_span_1": 802.5467958165303, - "enabled": true, - "initial_eprice_ema_dist": -0.003282733673020841, - "initial_qty_pct": 0.015392217703824096, - "markup_range": 0.004561154940882703, - "min_markup": 0.003634000731983019, - "n_close_orders": 2, - "rentry_pprice_dist": 0.032283772901008236, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8057619711211246, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9244249241389804, - "ema_span_0": 552.7495426568219, - "ema_span_1": 953.2458349863433, - "enabled": true, - "initial_eprice_ema_dist": 0.002997583838137984, - "initial_qty_pct": 0.013860610620086216, - "markup_range": 0.0028635079198033454, - "min_markup": 0.00256274313637698, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04590379600172608, - "rentry_pprice_dist_wallet_exposure_weighting": 2.715808991611394, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/FXSUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/FXSUSDT.json deleted file mode 100644 index 1a0e846e3..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.35424661844691196, - "ema_span_0": 441.4779746092039, - "ema_span_1": 1067.7076812966789, - "enabled": true, - "initial_eprice_ema_dist": -0.00531869397469693, - "initial_qty_pct": 0.0056497753346014855, - "markup_range": 0.00022966304447854743, - "min_markup": 0.0019972013348434955, - "n_close_orders": 5, - "rentry_pprice_dist": 0.013542212975156311, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7147030945723465, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7750101400442486, - "ema_span_0": 1320.2696206355258, - "ema_span_1": 735.2869206182583, - "enabled": true, - "initial_eprice_ema_dist": -0.004040409082477572, - "initial_qty_pct": 0.005163922094282229, - "markup_range": 0.00875233349419754, - "min_markup": 0.009560639083380467, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032775850660841016, - "rentry_pprice_dist_wallet_exposure_weighting": 2.87001389891411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GALAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GALAUSDT.json deleted file mode 100644 index 274f00cff..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.42326362662281, - "ema_span_0": 825.6397772866048, - "ema_span_1": 805.5690736952308, - "enabled": true, - "initial_eprice_ema_dist": -0.0028262924368349803, - "initial_qty_pct": 0.00905698128501423, - "markup_range": 0.002955442292143253, - "min_markup": 0.0021774715698266427, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03275826162428477, - "rentry_pprice_dist_wallet_exposure_weighting": 2.074459229843532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9466784286934358, - "ema_span_0": 905.0697721880944, - "ema_span_1": 912.9214311181881, - "enabled": true, - "initial_eprice_ema_dist": -0.007575040567385521, - "initial_qty_pct": 0.012106984643908462, - "markup_range": 0.0071962271813877125, - "min_markup": 0.0025092713565010795, - "n_close_orders": 2, - "rentry_pprice_dist": 0.037089632374749694, - "rentry_pprice_dist_wallet_exposure_weighting": 5.184381954830113, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GALUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GALUSDT.json deleted file mode 100644 index 0ee1d9e8c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872605987200902, - "ema_span_0": 843.3742944769075, - "ema_span_1": 864.9139424453962, - "enabled": true, - "initial_eprice_ema_dist": 0.001216530679788105, - "initial_qty_pct": 0.008195645246324936, - "markup_range": 0.00645550405501119, - "min_markup": 0.0034573961453619236, - "n_close_orders": 3, - "rentry_pprice_dist": 0.033557305806778716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.988991802464223, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.233843659051374, - "ema_span_0": 620.9439410068148, - "ema_span_1": 1141.4467876090778, - "enabled": true, - "initial_eprice_ema_dist": -0.005471578687433655, - "initial_qty_pct": 0.010059669904209461, - "markup_range": 0.0017407994687275836, - "min_markup": 0.009034052144763766, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015280419834390631, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802659146736087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GASUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GASUSDT.json deleted file mode 100644 index 1b75617c9..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.37583276517751, - "ema_span_0": 1022.5931474666991, - "ema_span_1": 784.8180582181259, - "enabled": true, - "initial_eprice_ema_dist": -0.0028933324520247793, - "initial_qty_pct": 0.007835576638073466, - "markup_range": 0.003299609625811331, - "min_markup": 0.007646559702907744, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03779523368963648, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5024287895151014, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2486272461137027, - "ema_span_0": 1232.4458545323457, - "ema_span_1": 1195.5581022152178, - "enabled": true, - "initial_eprice_ema_dist": 0.0023874831572265956, - "initial_qty_pct": 0.008420651435400066, - "markup_range": 0.001667859617214723, - "min_markup": 0.00333195652467545, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02304289948674446, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4710624791304434, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GLMRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GLMRUSDT.json deleted file mode 100644 index 03152012b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GLMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100644559707755, - "ema_span_0": 438.66836477264434, - "ema_span_1": 445.8331676413342, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.007533032591465177, - "markup_range": 0.007156320508651157, - "min_markup": 0.0058117855721224855, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509890353304822, - "rentry_pprice_dist_wallet_exposure_weighting": 1.404095253730318, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.07230474230769, - "ema_span_0": 519.4561311102589, - "ema_span_1": 1195.4591606510032, - "enabled": true, - "initial_eprice_ema_dist": -0.006801435406277902, - "initial_qty_pct": 0.011761043729737653, - "markup_range": 0.004597852182179693, - "min_markup": 0.007600216441903419, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03541873007866607, - "rentry_pprice_dist_wallet_exposure_weighting": 2.675944478680237, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GMTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GMTUSDT.json deleted file mode 100644 index 1ef4c92ba..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7365704414152916, - "ema_span_0": 886.129141934448, - "ema_span_1": 1303.2189380763864, - "enabled": true, - "initial_eprice_ema_dist": 0.00034918794174462135, - "initial_qty_pct": 0.0073137193168916915, - "markup_range": 0.0002696910496149988, - "min_markup": 0.002537095195496491, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03299344074837391, - "rentry_pprice_dist_wallet_exposure_weighting": 4.925510698897232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8027787542027762, - "ema_span_0": 1436.8343438285362, - "ema_span_1": 1386.5511655702765, - "enabled": true, - "initial_eprice_ema_dist": 0.002834521224448135, - "initial_qty_pct": 0.00930399121755424, - "markup_range": 6.664167120364612e-08, - "min_markup": 0.0020903953001758444, - "n_close_orders": 15, - "rentry_pprice_dist": 0.045578517135331204, - "rentry_pprice_dist_wallet_exposure_weighting": 3.265703824925942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GMXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GMXUSDT.json deleted file mode 100644 index 58603ff3c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.677018133332895, - "ema_span_0": 1235.7525515833377, - "ema_span_1": 1277.1433184735629, - "enabled": true, - "initial_eprice_ema_dist": -0.003130536615432617, - "initial_qty_pct": 0.01841343032582347, - "markup_range": 0.005340723932525618, - "min_markup": 0.005325276677515647, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03785221672463879, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0150521373378953, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9464456688446498, - "ema_span_0": 868.7673184514623, - "ema_span_1": 1407.8588514523296, - "enabled": true, - "initial_eprice_ema_dist": 0.00203800796678905, - "initial_qty_pct": 0.015361415762473511, - "markup_range": 0.0016235093678653788, - "min_markup": 0.005651787881076957, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030298170179919877, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07589368742006575, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GRTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GRTUSDT.json deleted file mode 100644 index 95cee557c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779649591638629, - "ema_span_0": 595.7416991281194, - "ema_span_1": 604.7085024047242, - "enabled": true, - "initial_eprice_ema_dist": 0.0015988424681306628, - "initial_qty_pct": 0.019999642304098238, - "markup_range": 0.003944627215381558, - "min_markup": 0.002315715030187344, - "n_close_orders": 7, - "rentry_pprice_dist": 0.037191821435395754, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7826047853260443, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.07230474230769, - "ema_span_0": 519.4561311102589, - "ema_span_1": 1195.4591606510032, - "enabled": true, - "initial_eprice_ema_dist": -0.006801435406277902, - "initial_qty_pct": 0.011761043729737653, - "markup_range": 0.004597852182179693, - "min_markup": 0.007600216441903419, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03541873007866607, - "rentry_pprice_dist_wallet_exposure_weighting": 2.675944478680237, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/GTCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/GTCUSDT.json deleted file mode 100644 index a55c44e6c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9450254739964751, - "ema_span_0": 650.6524438545817, - "ema_span_1": 769.8378377413521, - "enabled": true, - "initial_eprice_ema_dist": -0.0004755301438063976, - "initial_qty_pct": 0.0054751376378018, - "markup_range": 0.005101066321536194, - "min_markup": 0.0032649608946259782, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04062181181652203, - "rentry_pprice_dist_wallet_exposure_weighting": 4.410112245669042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0557591000623985, - "ema_span_0": 1114.054934818359, - "ema_span_1": 1375.8044096563435, - "enabled": true, - "initial_eprice_ema_dist": 0.0014368021066835746, - "initial_qty_pct": 0.0055427786500124206, - "markup_range": 0.0036720634473713346, - "min_markup": 0.009850446787923729, - "n_close_orders": 12, - "rentry_pprice_dist": 0.05491102894623964, - "rentry_pprice_dist_wallet_exposure_weighting": 5.22600329030483, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/HBARUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/HBARUSDT.json deleted file mode 100644 index c3bedc996..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4287214709146252, - "ema_span_0": 825.7656912994428, - "ema_span_1": 662.2507978770427, - "enabled": true, - "initial_eprice_ema_dist": -0.0016882213435780282, - "initial_qty_pct": 0.01998135446500153, - "markup_range": 0.004468429306920641, - "min_markup": 0.006450020720549206, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02791682002501692, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2848252941800267, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.154180485969061, - "ema_span_0": 1439.964688542487, - "ema_span_1": 1365.0867776074645, - "enabled": true, - "initial_eprice_ema_dist": 0.002869433927519122, - "initial_qty_pct": 0.019990391884107745, - "markup_range": 0.004749748379973055, - "min_markup": 0.01, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03216093311598728, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6660842039057195, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/HFTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/HFTUSDT.json deleted file mode 100644 index 57581e52b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2641362300999307, - "ema_span_0": 439.68591677974763, - "ema_span_1": 491.4002950783783, - "enabled": true, - "initial_eprice_ema_dist": -0.0028050808561551283, - "initial_qty_pct": 0.014883361109011811, - "markup_range": 0.0061039552169209026, - "min_markup": 0.006193378185680342, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04757423145973606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2927593001298544, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.178304880661967, - "ema_span_0": 520.6953706361433, - "ema_span_1": 694.772029341207, - "enabled": true, - "initial_eprice_ema_dist": 0.0003768367623444417, - "initial_qty_pct": 0.010622061388592946, - "markup_range": 0.0018067301241174272, - "min_markup": 0.007109201632585021, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026080543508385443, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1900725181943552, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/HIFIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/HIFIUSDT.json deleted file mode 100644 index 6d9885b60..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/HIFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6475996977230042, - "ema_span_0": 1327.4835112758085, - "ema_span_1": 1246.3991645383985, - "enabled": true, - "initial_eprice_ema_dist": -0.0019821962339490336, - "initial_qty_pct": 0.007840114499406728, - "markup_range": 0.0072505102752336145, - "min_markup": 0.007640126509850268, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03250340913085186, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9660799829915403, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2456961987438916, - "ema_span_0": 1018.4680148899135, - "ema_span_1": 795.8544606770614, - "enabled": true, - "initial_eprice_ema_dist": -0.008684348351159167, - "initial_qty_pct": 0.018575833019864433, - "markup_range": 0.002891776961011528, - "min_markup": 0.00554347316054491, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019444001414174662, - "rentry_pprice_dist_wallet_exposure_weighting": 5.8542749862116565, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/HIGHUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/HIGHUSDT.json deleted file mode 100644 index fd25cb413..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.316972780009348, - "ema_span_0": 554.5737431891346, - "ema_span_1": 676.3472218225754, - "enabled": true, - "initial_eprice_ema_dist": 0.0007066626162150962, - "initial_qty_pct": 0.010224342958451805, - "markup_range": 0.0014843086571736841, - "min_markup": 0.004089354591992062, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027130948937332762, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646650578741386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7750101400442486, - "ema_span_0": 1320.2696206355258, - "ema_span_1": 735.2869206182583, - "enabled": true, - "initial_eprice_ema_dist": -0.004040409082477572, - "initial_qty_pct": 0.005163922094282229, - "markup_range": 0.00875233349419754, - "min_markup": 0.009560639083380467, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032775850660841016, - "rentry_pprice_dist_wallet_exposure_weighting": 2.87001389891411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/HOOKUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/HOOKUSDT.json deleted file mode 100644 index 19eb02450..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6567560382005619, - "ema_span_0": 1008.8060844318467, - "ema_span_1": 1285.9250387476184, - "enabled": true, - "initial_eprice_ema_dist": -0.007211845330496552, - "initial_qty_pct": 0.01296708075317405, - "markup_range": 0.00902288121364897, - "min_markup": 0.0021178134663742848, - "n_close_orders": 4, - "rentry_pprice_dist": 0.024386780464401764, - "rentry_pprice_dist_wallet_exposure_weighting": 6.745818148225621, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000009403417283, - "ema_span_0": 1408.1699568598206, - "ema_span_1": 1439.9763548281778, - "enabled": true, - "initial_eprice_ema_dist": -0.00736224144906754, - "initial_qty_pct": 0.019999655050966635, - "markup_range": 0.009995376087173621, - "min_markup": 0.008031750194250169, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027042324250607402, - "rentry_pprice_dist_wallet_exposure_weighting": 5.007444805947261, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/HOTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/HOTUSDT.json deleted file mode 100644 index f34d576b7..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.821804254371002, - "ema_span_0": 1306.3618601765213, - "ema_span_1": 1248.9025476182549, - "enabled": true, - "initial_eprice_ema_dist": -0.007154678412509795, - "initial_qty_pct": 0.007572770992952595, - "markup_range": 0.005036651311141578, - "min_markup": 0.005104848305967937, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02672152893434645, - "rentry_pprice_dist_wallet_exposure_weighting": 2.747903588304996, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4454279628560046, - "ema_span_0": 1418.476680508864, - "ema_span_1": 934.9190757683803, - "enabled": true, - "initial_eprice_ema_dist": -0.006917830890492063, - "initial_qty_pct": 0.017659187801892223, - "markup_range": 0.008101005232503218, - "min_markup": 0.004694459140867039, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023242415956755268, - "rentry_pprice_dist_wallet_exposure_weighting": 6.815685285346589, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ICPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ICPUSDT.json deleted file mode 100644 index bc497785e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9295961467888398, - "ema_span_0": 963.8979774269824, - "ema_span_1": 888.4244758500278, - "enabled": true, - "initial_eprice_ema_dist": -0.0070262833903947195, - "initial_qty_pct": 0.012437039284533226, - "markup_range": 0.004492387751566958, - "min_markup": 0.005634490370496687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02388421916858395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3005133885012596, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5072348487197096, - "ema_span_0": 1291.4836529875563, - "ema_span_1": 1407.8115469183908, - "enabled": true, - "initial_eprice_ema_dist": 5.633113627768216e-05, - "initial_qty_pct": 0.007991016399812104, - "markup_range": 0.007485350198837225, - "min_markup": 0.003740509912933957, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030875879742131903, - "rentry_pprice_dist_wallet_exposure_weighting": 4.816841765196222, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ICXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ICXUSDT.json deleted file mode 100644 index ae31de15f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8653974461596584, - "ema_span_0": 680.8036543018981, - "ema_span_1": 742.0037234362132, - "enabled": true, - "initial_eprice_ema_dist": -0.008624290097045816, - "initial_qty_pct": 0.006327245877214741, - "markup_range": 0.005164771307704245, - "min_markup": 0.004204509520384469, - "n_close_orders": 11, - "rentry_pprice_dist": 0.028495475719511672, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5166204660201488, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6258540135694786, - "ema_span_0": 711.9546807372815, - "ema_span_1": 858.0282468378499, - "enabled": true, - "initial_eprice_ema_dist": 0.0008079581405647542, - "initial_qty_pct": 0.007453152435662164, - "markup_range": 0.0008088054964302434, - "min_markup": 0.009099592555569072, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03472296891038273, - "rentry_pprice_dist_wallet_exposure_weighting": 4.079941162308193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/IDEXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/IDEXUSDT.json deleted file mode 100644 index 40eee1ae4..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.821804254371002, - "ema_span_0": 1306.3618601765213, - "ema_span_1": 1248.9025476182549, - "enabled": true, - "initial_eprice_ema_dist": -0.007154678412509795, - "initial_qty_pct": 0.007572770992952595, - "markup_range": 0.005036651311141578, - "min_markup": 0.005104848305967937, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02672152893434645, - "rentry_pprice_dist_wallet_exposure_weighting": 2.747903588304996, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23930100933629636, - "ema_span_0": 1433.4976632686808, - "ema_span_1": 1271.9152377205874, - "enabled": true, - "initial_eprice_ema_dist": -0.0011670437295357812, - "initial_qty_pct": 0.01240969541820523, - "markup_range": 0.00964513026518975, - "min_markup": 0.004581408868169906, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015208274955498244, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0727812414503375, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/IDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/IDUSDT.json deleted file mode 100644 index 81e7031b1..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.316972780009348, - "ema_span_0": 554.5737431891346, - "ema_span_1": 676.3472218225754, - "enabled": true, - "initial_eprice_ema_dist": 0.0007066626162150962, - "initial_qty_pct": 0.010224342958451805, - "markup_range": 0.0014843086571736841, - "min_markup": 0.004089354591992062, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027130948937332762, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646650578741386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273141152987725, - "ema_span_0": 851.5069878538493, - "ema_span_1": 1318.3342054632453, - "enabled": true, - "initial_eprice_ema_dist": -0.008568874845354724, - "initial_qty_pct": 0.005466373789027542, - "markup_range": 0.009236639976900175, - "min_markup": 0.002816549642286266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321205572018044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5022531707745765, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/IMXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/IMXUSDT.json deleted file mode 100644 index 9a8941435..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8653974461596584, - "ema_span_0": 680.8036543018981, - "ema_span_1": 742.0037234362132, - "enabled": true, - "initial_eprice_ema_dist": -0.008624290097045816, - "initial_qty_pct": 0.006327245877214741, - "markup_range": 0.005164771307704245, - "min_markup": 0.004204509520384469, - "n_close_orders": 11, - "rentry_pprice_dist": 0.028495475719511672, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5166204660201488, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5072348487197096, - "ema_span_0": 1291.4836529875563, - "ema_span_1": 1407.8115469183908, - "enabled": true, - "initial_eprice_ema_dist": 5.633113627768216e-05, - "initial_qty_pct": 0.007991016399812104, - "markup_range": 0.007485350198837225, - "min_markup": 0.003740509912933957, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030875879742131903, - "rentry_pprice_dist_wallet_exposure_weighting": 4.816841765196222, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/INJUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/INJUSDT.json deleted file mode 100644 index 2151d872a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5489842413525333, - "ema_span_0": 691.5634447411517, - "ema_span_1": 642.9840414677363, - "enabled": true, - "initial_eprice_ema_dist": -0.007372369815955612, - "initial_qty_pct": 0.015735441283979888, - "markup_range": 0.005764737636288706, - "min_markup": 0.004580899580788442, - "n_close_orders": 2, - "rentry_pprice_dist": 0.031921688765491944, - "rentry_pprice_dist_wallet_exposure_weighting": 1.632559821892781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6258540135694786, - "ema_span_0": 711.9546807372815, - "ema_span_1": 858.0282468378499, - "enabled": true, - "initial_eprice_ema_dist": 0.0008079581405647542, - "initial_qty_pct": 0.007453152435662164, - "markup_range": 0.0008088054964302434, - "min_markup": 0.009099592555569072, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03472296891038273, - "rentry_pprice_dist_wallet_exposure_weighting": 4.079941162308193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/IOSTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/IOSTUSDT.json deleted file mode 100644 index cbfede60d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.263058559426954, - "ema_span_0": 864.3191415061491, - "ema_span_1": 901.3221485244619, - "enabled": true, - "initial_eprice_ema_dist": 0.0020867952256900363, - "initial_qty_pct": 0.019999945401526165, - "markup_range": 0.0016395735872139468, - "min_markup": 0.006641613218861361, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0372472397493371, - "rentry_pprice_dist_wallet_exposure_weighting": 3.247641754937212, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5499554005712329, - "ema_span_0": 564.9828549241132, - "ema_span_1": 1358.9855609727879, - "enabled": true, - "initial_eprice_ema_dist": -0.006230342670805604, - "initial_qty_pct": 0.00931005015007884, - "markup_range": 0.0032883067852086017, - "min_markup": 0.006172699685546896, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028255220320027172, - "rentry_pprice_dist_wallet_exposure_weighting": 6.714899498245584, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/IOTAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/IOTAUSDT.json deleted file mode 100644 index 667d73646..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10294523325725574, - "ema_span_0": 719.1735387056117, - "ema_span_1": 636.811810255116, - "enabled": true, - "initial_eprice_ema_dist": 0.001811586406636841, - "initial_qty_pct": 0.010356350239136195, - "markup_range": 0.0061591729264051966, - "min_markup": 0.0046934552730989445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02478647136472125, - "rentry_pprice_dist_wallet_exposure_weighting": 5.136076037344524, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/IOTXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/IOTXUSDT.json deleted file mode 100644 index b9a28fb1f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872605987200902, - "ema_span_0": 843.3742944769075, - "ema_span_1": 864.9139424453962, - "enabled": true, - "initial_eprice_ema_dist": 0.001216530679788105, - "initial_qty_pct": 0.008195645246324936, - "markup_range": 0.00645550405501119, - "min_markup": 0.0034573961453619236, - "n_close_orders": 3, - "rentry_pprice_dist": 0.033557305806778716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.988991802464223, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.315157615759062, - "ema_span_0": 1288.638511763472, - "ema_span_1": 1178.166122578907, - "enabled": true, - "initial_eprice_ema_dist": -0.008352613483176433, - "initial_qty_pct": 0.005219245056790691, - "markup_range": 0.0022674979607707063, - "min_markup": 0.002748393639133431, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04629170038288606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.11533556541437862, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/JASMYUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/JASMYUSDT.json deleted file mode 100644 index 893403e4f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8273173092573307, - "ema_span_0": 967.1603181671228, - "ema_span_1": 1038.1117262925218, - "enabled": true, - "initial_eprice_ema_dist": 0.0016613575661468991, - "initial_qty_pct": 0.006990443028462147, - "markup_range": 0.0036391411258036702, - "min_markup": 0.004384230648547791, - "n_close_orders": 9, - "rentry_pprice_dist": 0.037697336874444, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7226400083214459, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4454279628560046, - "ema_span_0": 1418.476680508864, - "ema_span_1": 934.9190757683803, - "enabled": true, - "initial_eprice_ema_dist": -0.006917830890492063, - "initial_qty_pct": 0.017659187801892223, - "markup_range": 0.008101005232503218, - "min_markup": 0.004694459140867039, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023242415956755268, - "rentry_pprice_dist_wallet_exposure_weighting": 6.815685285346589, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/JOEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/JOEUSDT.json deleted file mode 100644 index 42e66ef34..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2641362300999307, - "ema_span_0": 439.68591677974763, - "ema_span_1": 491.4002950783783, - "enabled": true, - "initial_eprice_ema_dist": -0.0028050808561551283, - "initial_qty_pct": 0.014883361109011811, - "markup_range": 0.0061039552169209026, - "min_markup": 0.006193378185680342, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04757423145973606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2927593001298544, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.781033998959295, - "ema_span_0": 1411.6020388362047, - "ema_span_1": 456.75227193934194, - "enabled": true, - "initial_eprice_ema_dist": -0.0037782132081332093, - "initial_qty_pct": 0.015185573144830315, - "markup_range": 0.006660155814512747, - "min_markup": 0.005864518374732328, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03670591007903218, - "rentry_pprice_dist_wallet_exposure_weighting": 5.2704885637723065, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/KAVAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/KAVAUSDT.json deleted file mode 100644 index cbab5c660..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2129292602387045, - "ema_span_0": 1099.8180435192135, - "ema_span_1": 1104.3748205904287, - "enabled": true, - "initial_eprice_ema_dist": -0.007654241773142833, - "initial_qty_pct": 0.006308448069205101, - "markup_range": 0.004361346293489825, - "min_markup": 0.004928506629181462, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03407286912369517, - "rentry_pprice_dist_wallet_exposure_weighting": 4.339965860689328, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.122531541838455, - "ema_span_0": 1436.5044034684909, - "ema_span_1": 1439.8437967796247, - "enabled": true, - "initial_eprice_ema_dist": -0.00027338469295530246, - "initial_qty_pct": 0.019001610408118506, - "markup_range": 0.0021340398493759818, - "min_markup": 0.006581311519631812, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04725704923515873, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9684261739755318, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/KEYUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/KEYUSDT.json deleted file mode 100644 index 1054f8f43..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.821804254371002, - "ema_span_0": 1306.3618601765213, - "ema_span_1": 1248.9025476182549, - "enabled": true, - "initial_eprice_ema_dist": -0.007154678412509795, - "initial_qty_pct": 0.007572770992952595, - "markup_range": 0.005036651311141578, - "min_markup": 0.005104848305967937, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02672152893434645, - "rentry_pprice_dist_wallet_exposure_weighting": 2.747903588304996, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/KLAYUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/KLAYUSDT.json deleted file mode 100644 index fee71ac11..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.754834844604402, - "ema_span_0": 1191.952584685572, - "ema_span_1": 1354.8866514359167, - "enabled": true, - "initial_eprice_ema_dist": 0.0009427906731153082, - "initial_qty_pct": 0.009928053270175718, - "markup_range": 0.0037096896600965898, - "min_markup": 0.0014544355574588551, - "n_close_orders": 3, - "rentry_pprice_dist": 0.025802622427628007, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5764709046299057, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4597270174910709, - "ema_span_0": 1320.1469989681038, - "ema_span_1": 1235.888173563862, - "enabled": true, - "initial_eprice_ema_dist": 0.0005098653260316934, - "initial_qty_pct": 0.009077613114768415, - "markup_range": 0.003710043937811769, - "min_markup": 0.008409584407417028, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04915502869998958, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650750871176982, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/KNCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/KNCUSDT.json deleted file mode 100644 index 8c72ca6b9..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.218299125467128, - "ema_span_0": 687.8433575466609, - "ema_span_1": 1436.05702241226, - "enabled": true, - "initial_eprice_ema_dist": 0.002761249498097738, - "initial_qty_pct": 0.005396096672639209, - "markup_range": 0.0021320877903742977, - "min_markup": 0.005794883639682267, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05065966246211877, - "rentry_pprice_dist_wallet_exposure_weighting": 1.206469740218457, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3361348820288277, - "ema_span_0": 1430.0345647398833, - "ema_span_1": 1364.1188221503317, - "enabled": true, - "initial_eprice_ema_dist": 0.002514135012418887, - "initial_qty_pct": 0.02, - "markup_range": 0.0023365541124102927, - "min_markup": 0.004561568753796449, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0458247934490793, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12946324882152238, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/KSMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/KSMUSDT.json deleted file mode 100644 index ec1028731..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5936135915759646, - "ema_span_0": 627.7260361896247, - "ema_span_1": 1238.9547036354513, - "enabled": true, - "initial_eprice_ema_dist": -0.006716531652070077, - "initial_qty_pct": 0.010775620251336004, - "markup_range": 0.005029305358760996, - "min_markup": 0.004392911240127008, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03580224889415905, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0819413516554321, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.22101433356346964, - "ema_span_0": 1394.4514652852463, - "ema_span_1": 438.40582223369086, - "enabled": true, - "initial_eprice_ema_dist": -0.004444678338243468, - "initial_qty_pct": 0.006068699833606215, - "markup_range": 0.003397180782343071, - "min_markup": 0.003859608242038287, - "n_close_orders": 14, - "rentry_pprice_dist": 0.01954666419983594, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1621043347550404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LDOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LDOUSDT.json deleted file mode 100644 index 94845fe49..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.122531541838455, - "ema_span_0": 1436.5044034684909, - "ema_span_1": 1439.8437967796247, - "enabled": true, - "initial_eprice_ema_dist": -0.00027338469295530246, - "initial_qty_pct": 0.019001610408118506, - "markup_range": 0.0021340398493759818, - "min_markup": 0.006581311519631812, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04725704923515873, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9684261739755318, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LEVERUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LEVERUSDT.json deleted file mode 100644 index 4feb50ad6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872391040129907, - "ema_span_0": 1227.677879308853, - "ema_span_1": 1321.9435653298738, - "enabled": true, - "initial_eprice_ema_dist": 6.875571249006968e-05, - "initial_qty_pct": 0.0050180565237401475, - "markup_range": 0.0007845643795819266, - "min_markup": 0.0034294712116233255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.01912283477089432, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12906820980223024, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.154180485969061, - "ema_span_0": 1439.964688542487, - "ema_span_1": 1365.0867776074645, - "enabled": true, - "initial_eprice_ema_dist": 0.002869433927519122, - "initial_qty_pct": 0.019990391884107745, - "markup_range": 0.004749748379973055, - "min_markup": 0.01, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03216093311598728, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6660842039057195, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LINAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LINAUSDT.json deleted file mode 100644 index 426a1883d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5990018530777126, - "ema_span_0": 1221.7253838454178, - "ema_span_1": 1341.4497244803463, - "enabled": true, - "initial_eprice_ema_dist": -0.0030247064044223284, - "initial_qty_pct": 0.012884129893216856, - "markup_range": 0.007349108734311059, - "min_markup": 0.005748326027927392, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04991827639955655, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4318085771986833, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5477199416606162, - "ema_span_0": 848.4093305345355, - "ema_span_1": 754.7610210950482, - "enabled": true, - "initial_eprice_ema_dist": -0.0008062671938873273, - "initial_qty_pct": 0.008702704128157674, - "markup_range": 0.004470224074994813, - "min_markup": 0.005726846724644345, - "n_close_orders": 6, - "rentry_pprice_dist": 0.053837505196058934, - "rentry_pprice_dist_wallet_exposure_weighting": 4.172706634156805, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LINKUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LINKUSDT.json deleted file mode 100644 index 25b757d50..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7715563234191893, - "ema_span_0": 1399.7568983046679, - "ema_span_1": 1439.1373730921864, - "enabled": true, - "initial_eprice_ema_dist": -0.007308296472590616, - "initial_qty_pct": 0.012356366052131851, - "markup_range": 0.006038106117817782, - "min_markup": 0.006645211102396095, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384497874855367, - "rentry_pprice_dist_wallet_exposure_weighting": 3.13128640197629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3784984584343154, - "ema_span_0": 849.6056361830362, - "ema_span_1": 1176.474410216494, - "enabled": true, - "initial_eprice_ema_dist": -0.001972662826097839, - "initial_qty_pct": 0.011577591700557872, - "markup_range": 0.0035539360236690916, - "min_markup": 0.0049434807501742275, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033481026370005045, - "rentry_pprice_dist_wallet_exposure_weighting": 1.074853172733533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LITUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LITUSDT.json deleted file mode 100644 index 5c57fca7a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5023326620332145, - "ema_span_0": 1261.3205169259948, - "ema_span_1": 1034.648102261348, - "enabled": true, - "initial_eprice_ema_dist": 0.0026755343571391267, - "initial_qty_pct": 0.006382649035449824, - "markup_range": 0.003229405273011326, - "min_markup": 0.005148225036870233, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0465415363368091, - "rentry_pprice_dist_wallet_exposure_weighting": 3.016079286737674, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3591611260416367, - "ema_span_0": 1415.594872402821, - "ema_span_1": 1395.4226935499983, - "enabled": true, - "initial_eprice_ema_dist": 0.0004128180262376978, - "initial_qty_pct": 0.011159095850396476, - "markup_range": 0.00964513026518975, - "min_markup": 0.009542352536819136, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03444334083422658, - "rentry_pprice_dist_wallet_exposure_weighting": 6.503954189652068, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LOOMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LOOMUSDT.json deleted file mode 100644 index ac21480d1..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LOOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.218299125467128, - "ema_span_0": 687.8433575466609, - "ema_span_1": 1436.05702241226, - "enabled": true, - "initial_eprice_ema_dist": 0.002761249498097738, - "initial_qty_pct": 0.005396096672639209, - "markup_range": 0.0021320877903742977, - "min_markup": 0.005794883639682267, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05065966246211877, - "rentry_pprice_dist_wallet_exposure_weighting": 1.206469740218457, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LPTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LPTUSDT.json deleted file mode 100644 index 863732c7b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10024949436236455, - "ema_span_0": 1428.8540084870174, - "ema_span_1": 1427.638063982526, - "enabled": true, - "initial_eprice_ema_dist": 0.002998791736069894, - "initial_qty_pct": 0.019999188513501222, - "markup_range": 0.0020404605334866967, - "min_markup": 0.0019593225033227146, - "n_close_orders": 6, - "rentry_pprice_dist": 0.048084845198756325, - "rentry_pprice_dist_wallet_exposure_weighting": 6.9127205511197225, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LQTYUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LQTYUSDT.json deleted file mode 100644 index 2b2abb35f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100644559707755, - "ema_span_0": 438.66836477264434, - "ema_span_1": 445.8331676413342, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.007533032591465177, - "markup_range": 0.007156320508651157, - "min_markup": 0.0058117855721224855, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509890353304822, - "rentry_pprice_dist_wallet_exposure_weighting": 1.404095253730318, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2456961987438916, - "ema_span_0": 1018.4680148899135, - "ema_span_1": 795.8544606770614, - "enabled": true, - "initial_eprice_ema_dist": -0.008684348351159167, - "initial_qty_pct": 0.018575833019864433, - "markup_range": 0.002891776961011528, - "min_markup": 0.00554347316054491, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019444001414174662, - "rentry_pprice_dist_wallet_exposure_weighting": 5.8542749862116565, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LRCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LRCUSDT.json deleted file mode 100644 index a8ec2f4d7..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8346782291828186, - "ema_span_0": 1296.6977885146393, - "ema_span_1": 1345.0875579447963, - "enabled": true, - "initial_eprice_ema_dist": -0.0026348931484374474, - "initial_qty_pct": 0.016939118082848717, - "markup_range": 0.0017125371779823971, - "min_markup": 0.005282415562047414, - "n_close_orders": 11, - "rentry_pprice_dist": 0.028246843624729776, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0295676545662378, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966611265790077, - "ema_span_0": 750.1807326208676, - "ema_span_1": 1278.6419194586156, - "enabled": true, - "initial_eprice_ema_dist": -0.000635562711087762, - "initial_qty_pct": 0.015283619974582122, - "markup_range": 0.0031306135256490347, - "min_markup": 0.0054162711357089496, - "n_close_orders": 10, - "rentry_pprice_dist": 0.053750662018880714, - "rentry_pprice_dist_wallet_exposure_weighting": 5.656486880500548, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LTCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LTCUSDT.json deleted file mode 100644 index 35d28e349..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7365704414152916, - "ema_span_0": 886.129141934448, - "ema_span_1": 1303.2189380763864, - "enabled": true, - "initial_eprice_ema_dist": 0.00034918794174462135, - "initial_qty_pct": 0.0073137193168916915, - "markup_range": 0.0002696910496149988, - "min_markup": 0.002537095195496491, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03299344074837391, - "rentry_pprice_dist_wallet_exposure_weighting": 4.925510698897232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.954396661188109, - "ema_span_0": 1440, - "ema_span_1": 1378.0711812050488, - "enabled": true, - "initial_eprice_ema_dist": -0.0026704141638782715, - "initial_qty_pct": 0.013243493911012956, - "markup_range": 0.0015303237799485082, - "min_markup": 0.002813923783363508, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024994587385340217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.614414091378521, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/LUNA2USDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/LUNA2USDT.json deleted file mode 100644 index 143b21799..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 619.7198720229416, - "ema_span_1": 589.0811863453209, - "enabled": true, - "initial_eprice_ema_dist": -0.007600787462813661, - "initial_qty_pct": 0.015435481119943717, - "markup_range": 0.0022902208757584483, - "min_markup": 0.0023893170495822057, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01778904085180592, - "rentry_pprice_dist_wallet_exposure_weighting": 6.215760731286285, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MAGICUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MAGICUSDT.json deleted file mode 100644 index 9c02b6581..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3659317528853556, - "ema_span_0": 869.738750409254, - "ema_span_1": 723.9003480452997, - "enabled": true, - "initial_eprice_ema_dist": 0.002994205097893594, - "initial_qty_pct": 0.008892715252433986, - "markup_range": 0.00812003437798894, - "min_markup": 0.007031197415951387, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03775250577634158, - "rentry_pprice_dist_wallet_exposure_weighting": 4.155531484125437, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1201567046504906, - "ema_span_0": 614.5634183054134, - "ema_span_1": 693.8028395078741, - "enabled": true, - "initial_eprice_ema_dist": 0.002357679243998225, - "initial_qty_pct": 0.012565361087548408, - "markup_range": 0.0008879536758302892, - "min_markup": 0.004463133208382252, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048203579326384714, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0006272224817946995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MANAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MANAUSDT.json deleted file mode 100644 index 0c8dc2fe1..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3293395553794425, - "ema_span_0": 1064.8083457605508, - "ema_span_1": 1049.2507199614047, - "enabled": true, - "initial_eprice_ema_dist": 0.0016112139727694486, - "initial_qty_pct": 0.01145123376979684, - "markup_range": 6.795026270229236e-05, - "min_markup": 0.0033174742142069737, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0294713293449093, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2512382137685414, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7453212129078355, - "ema_span_0": 431.7494906871677, - "ema_span_1": 1366.7087315502185, - "enabled": true, - "initial_eprice_ema_dist": 0.000578192394375502, - "initial_qty_pct": 0.016283084739638118, - "markup_range": 0.001311271770463208, - "min_markup": 0.005233983760590109, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03348695481326547, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0727812414503375, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MASKUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MASKUSDT.json deleted file mode 100644 index fc99b90fe..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8273173092573307, - "ema_span_0": 967.1603181671228, - "ema_span_1": 1038.1117262925218, - "enabled": true, - "initial_eprice_ema_dist": 0.0016613575661468991, - "initial_qty_pct": 0.006990443028462147, - "markup_range": 0.0036391411258036702, - "min_markup": 0.004384230648547791, - "n_close_orders": 9, - "rentry_pprice_dist": 0.037697336874444, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7226400083214459, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.178304880661967, - "ema_span_0": 520.6953706361433, - "ema_span_1": 694.772029341207, - "enabled": true, - "initial_eprice_ema_dist": 0.0003768367623444417, - "initial_qty_pct": 0.010622061388592946, - "markup_range": 0.0018067301241174272, - "min_markup": 0.007109201632585021, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026080543508385443, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1900725181943552, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MATICUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MATICUSDT.json deleted file mode 100644 index 311514dfd..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.216917306949467, - "ema_span_0": 915.9802211066468, - "ema_span_1": 915.4877103272769, - "enabled": true, - "initial_eprice_ema_dist": -0.0005489194795821341, - "initial_qty_pct": 0.01160342726162193, - "markup_range": 0.0030821912593581966, - "min_markup": 0.004878378396481663, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02445624010688296, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4821943257112777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2254201254479689, - "ema_span_0": 754.8776059340863, - "ema_span_1": 648.1161567916351, - "enabled": true, - "initial_eprice_ema_dist": -0.006936943023553597, - "initial_qty_pct": 0.008491423014435846, - "markup_range": 0.0034510328091540677, - "min_markup": 0.005708815265135584, - "n_close_orders": 4, - "rentry_pprice_dist": 0.036607404452838124, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1276851864775603, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MAVUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MAVUSDT.json deleted file mode 100644 index 48778fa52..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MDTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MDTUSDT.json deleted file mode 100644 index 90fb6b821..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1107990734440274, - "ema_span_0": 1187.0297967779309, - "ema_span_1": 1061.1369229556215, - "enabled": true, - "initial_eprice_ema_dist": 7.380235099925537e-05, - "initial_qty_pct": 0.018428102555074977, - "markup_range": 0.0018285765333738901, - "min_markup": 0.0022455575908887715, - "n_close_orders": 6, - "rentry_pprice_dist": 0.047426080893467504, - "rentry_pprice_dist_wallet_exposure_weighting": 0.29098416270095506, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.954396661188109, - "ema_span_0": 1440, - "ema_span_1": 1378.0711812050488, - "enabled": true, - "initial_eprice_ema_dist": -0.0026704141638782715, - "initial_qty_pct": 0.013243493911012956, - "markup_range": 0.0015303237799485082, - "min_markup": 0.002813923783363508, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024994587385340217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.614414091378521, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MINAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MINAUSDT.json deleted file mode 100644 index 84c6915c5..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358791154116679, - "ema_span_0": 825.5228520854362, - "ema_span_1": 930.5614549047939, - "enabled": true, - "initial_eprice_ema_dist": 0.0008721520022025943, - "initial_qty_pct": 0.010098211120495228, - "markup_range": 0.0033307611948601504, - "min_markup": 0.0022295906962043663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02392162425162726, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5966878232828394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MKRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MKRUSDT.json deleted file mode 100644 index 5a8d30f0a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0326705786431252, - "ema_span_0": 604.038530534182, - "ema_span_1": 593.1936821764934, - "enabled": true, - "initial_eprice_ema_dist": -0.00668937672890069, - "initial_qty_pct": 0.019351048497405286, - "markup_range": 0.0034942125844474497, - "min_markup": 0.004154469214673117, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024539182484321853, - "rentry_pprice_dist_wallet_exposure_weighting": 3.621466219267716, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7649756049361236, - "ema_span_0": 1439.5695736273915, - "ema_span_1": 1361.9158152431196, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.005040988926185589, - "markup_range": 0.0011664650253415153, - "min_markup": 0.0021627243406894424, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04596926358632685, - "rentry_pprice_dist_wallet_exposure_weighting": 4.252794000492193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/MTLUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/MTLUSDT.json deleted file mode 100644 index 8c15a6f3d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8008857052679335, - "ema_span_0": 1009.285090490301, - "ema_span_1": 1039.2971000301943, - "enabled": true, - "initial_eprice_ema_dist": 0.0007434456183525658, - "initial_qty_pct": 0.005713551032754992, - "markup_range": 0.003872333695087145, - "min_markup": 0.008808290062222151, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04509230391614585, - "rentry_pprice_dist_wallet_exposure_weighting": 2.833856393692009, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10024949436236455, - "ema_span_0": 1428.8540084870174, - "ema_span_1": 1427.638063982526, - "enabled": true, - "initial_eprice_ema_dist": 0.002998791736069894, - "initial_qty_pct": 0.019999188513501222, - "markup_range": 0.0020404605334866967, - "min_markup": 0.0019593225033227146, - "n_close_orders": 6, - "rentry_pprice_dist": 0.048084845198756325, - "rentry_pprice_dist_wallet_exposure_weighting": 6.9127205511197225, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/NEARUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/NEARUSDT.json deleted file mode 100644 index 5111ddfdb..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.659189212061829, - "ema_span_0": 1365.8601988581383, - "ema_span_1": 1305.8014969945489, - "enabled": true, - "initial_eprice_ema_dist": 0.0027618657169072207, - "initial_qty_pct": 0.006785342793673023, - "markup_range": 0.002129018390181677, - "min_markup": 0.002048284556886897, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015093916672259353, - "rentry_pprice_dist_wallet_exposure_weighting": 3.137930459458364, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7936590038914226, - "ema_span_0": 1416.6690127087463, - "ema_span_1": 1362.485823019, - "enabled": true, - "initial_eprice_ema_dist": 0.0024609928207111062, - "initial_qty_pct": 0.0073646416082817304, - "markup_range": 0.0028733495615411516, - "min_markup": 0.00975689685836081, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04589725552454332, - "rentry_pprice_dist_wallet_exposure_weighting": 6.994487793167962, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/NEOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/NEOUSDT.json deleted file mode 100644 index 7905ac0aa..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9450254739964751, - "ema_span_0": 650.6524438545817, - "ema_span_1": 769.8378377413521, - "enabled": true, - "initial_eprice_ema_dist": -0.0004755301438063976, - "initial_qty_pct": 0.0054751376378018, - "markup_range": 0.005101066321536194, - "min_markup": 0.0032649608946259782, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04062181181652203, - "rentry_pprice_dist_wallet_exposure_weighting": 4.410112245669042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.233843659051374, - "ema_span_0": 620.9439410068148, - "ema_span_1": 1141.4467876090778, - "enabled": true, - "initial_eprice_ema_dist": -0.005471578687433655, - "initial_qty_pct": 0.010059669904209461, - "markup_range": 0.0017407994687275836, - "min_markup": 0.009034052144763766, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015280419834390631, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802659146736087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/NKNUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/NKNUSDT.json deleted file mode 100644 index 7d2942380..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21646299306954195, - "ema_span_0": 1245.5960172432847, - "ema_span_1": 1430.0230557109317, - "enabled": true, - "initial_eprice_ema_dist": 0.0027250723405953217, - "initial_qty_pct": 0.019999807407558554, - "markup_range": 0.006085868511667488, - "min_markup": 0.0064235851062050785, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03907353222819518, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7662173270480634, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/NMRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/NMRUSDT.json deleted file mode 100644 index 48de92e94..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1250440227178462, - "ema_span_0": 1234.831813548717, - "ema_span_1": 1066.317823060109, - "enabled": true, - "initial_eprice_ema_dist": -0.005783825160567683, - "initial_qty_pct": 0.014475737585293795, - "markup_range": 0.005702387510139781, - "min_markup": 0.003287925190436558, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027619319889671194, - "rentry_pprice_dist_wallet_exposure_weighting": 2.430137487762621, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.154180485969061, - "ema_span_0": 1439.964688542487, - "ema_span_1": 1365.0867776074645, - "enabled": true, - "initial_eprice_ema_dist": 0.002869433927519122, - "initial_qty_pct": 0.019990391884107745, - "markup_range": 0.004749748379973055, - "min_markup": 0.01, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03216093311598728, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6660842039057195, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/OCEANUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/OCEANUSDT.json deleted file mode 100644 index b00572eb1..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.533405254770163, - "ema_span_0": 775.4895619172624, - "ema_span_1": 788.4095459087989, - "enabled": true, - "initial_eprice_ema_dist": -0.0018805655282243664, - "initial_qty_pct": 0.01829002700641193, - "markup_range": 0.002801303608066756, - "min_markup": 0.004223758393267011, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03814051832707354, - "rentry_pprice_dist_wallet_exposure_weighting": 2.465630925193031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000009403417283, - "ema_span_0": 1408.1699568598206, - "ema_span_1": 1439.9763548281778, - "enabled": true, - "initial_eprice_ema_dist": -0.00736224144906754, - "initial_qty_pct": 0.019999655050966635, - "markup_range": 0.009995376087173621, - "min_markup": 0.008031750194250169, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027042324250607402, - "rentry_pprice_dist_wallet_exposure_weighting": 5.007444805947261, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/OGNUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/OGNUSDT.json deleted file mode 100644 index 53286d140..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.167140586306193, - "ema_span_0": 707.0139563318876, - "ema_span_1": 986.6557082420491, - "enabled": true, - "initial_eprice_ema_dist": 0.0013304464037827435, - "initial_qty_pct": 0.009692734589303961, - "markup_range": 0.0030041528435637553, - "min_markup": 0.0060026949515076, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04238608588829712, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6919457098262045, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6789445457146472, - "ema_span_0": 1134.1073832684133, - "ema_span_1": 715.3529989760832, - "enabled": true, - "initial_eprice_ema_dist": -0.008287897195802653, - "initial_qty_pct": 0.01240969541820523, - "markup_range": 0.0005635738235470305, - "min_markup": 0.00291024947733036, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03733224102259951, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1916587579904952, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/OMGUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/OMGUSDT.json deleted file mode 100644 index 62371dd70..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0871899405157714, - "ema_span_0": 552.9693847341467, - "ema_span_1": 656.5594904617175, - "enabled": true, - "initial_eprice_ema_dist": -0.003898036590157887, - "initial_qty_pct": 0.007907575036427134, - "markup_range": 0.007587342923906934, - "min_markup": 0.004194339676899615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03864097158082685, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6235335931801858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1872353008134056, - "ema_span_0": 425.6173365059851, - "ema_span_1": 1292.095929253593, - "enabled": true, - "initial_eprice_ema_dist": -0.009675109434018158, - "initial_qty_pct": 0.006877035399950096, - "markup_range": 0.006681294355793213, - "min_markup": 0.009800723279584663, - "n_close_orders": 14, - "rentry_pprice_dist": 0.042867770783054274, - "rentry_pprice_dist_wallet_exposure_weighting": 0.363928909775072, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ONEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ONEUSDT.json deleted file mode 100644 index cc839f646..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0871899405157714, - "ema_span_0": 552.9693847341467, - "ema_span_1": 656.5594904617175, - "enabled": true, - "initial_eprice_ema_dist": -0.003898036590157887, - "initial_qty_pct": 0.007907575036427134, - "markup_range": 0.007587342923906934, - "min_markup": 0.004194339676899615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03864097158082685, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6235335931801858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9354386918364692, - "ema_span_0": 868.7699860098405, - "ema_span_1": 1110.056156458294, - "enabled": true, - "initial_eprice_ema_dist": -0.004791508185702378, - "initial_qty_pct": 0.010815922196327123, - "markup_range": 0.001988491697399681, - "min_markup": 0.006873297720390339, - "n_close_orders": 12, - "rentry_pprice_dist": 0.038531700814758846, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6388012311802014, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ONTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ONTUSDT.json deleted file mode 100644 index 574cdd53e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3659317528853556, - "ema_span_0": 869.738750409254, - "ema_span_1": 723.9003480452997, - "enabled": true, - "initial_eprice_ema_dist": 0.002994205097893594, - "initial_qty_pct": 0.008892715252433986, - "markup_range": 0.00812003437798894, - "min_markup": 0.007031197415951387, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03775250577634158, - "rentry_pprice_dist_wallet_exposure_weighting": 4.155531484125437, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6899290101211653, - "ema_span_0": 1411.1525438549577, - "ema_span_1": 1373.797232314367, - "enabled": true, - "initial_eprice_ema_dist": -0.0011670437295357812, - "initial_qty_pct": 0.013767177800042421, - "markup_range": 0.006711035149841956, - "min_markup": 0.009361408391124903, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0360233523272543, - "rentry_pprice_dist_wallet_exposure_weighting": 6.073823543142589, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/OPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/OPUSDT.json deleted file mode 100644 index ab2fd7f27..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.659189212061829, - "ema_span_0": 1365.8601988581383, - "ema_span_1": 1305.8014969945489, - "enabled": true, - "initial_eprice_ema_dist": 0.0027618657169072207, - "initial_qty_pct": 0.006785342793673023, - "markup_range": 0.002129018390181677, - "min_markup": 0.002048284556886897, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015093916672259353, - "rentry_pprice_dist_wallet_exposure_weighting": 3.137930459458364, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.046979649057886, - "ema_span_0": 1061.1274375353632, - "ema_span_1": 427.4382143164889, - "enabled": true, - "initial_eprice_ema_dist": 0.0006034453124001384, - "initial_qty_pct": 0.0073284933476516975, - "markup_range": 0.0018921851523770884, - "min_markup": 0.00393709839264385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.058585126487639375, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19195114998346485, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ORBSUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ORBSUSDT.json deleted file mode 100644 index 8b9ecd972..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ORBSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.020691559451297, - "ema_span_0": 400, - "ema_span_1": 774.6048168736422, - "enabled": true, - "initial_eprice_ema_dist": 0.0012040292827267954, - "initial_qty_pct": 0.00601072228878128, - "markup_range": 0.002519533155161096, - "min_markup": 0.002039539878468083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.019936134592632042, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4064538558156699, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/OXTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/OXTUSDT.json deleted file mode 100644 index 0cde48e6f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5997256125741337, - "ema_span_0": 675.5248086604771, - "ema_span_1": 463.3502593727627, - "enabled": true, - "initial_eprice_ema_dist": 0.000534457780442675, - "initial_qty_pct": 0.009326481302871779, - "markup_range": 0.0040608292640282794, - "min_markup": 0.007692198544655454, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02926961449527582, - "rentry_pprice_dist_wallet_exposure_weighting": 4.011487202146822, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320635405488337, - "ema_span_0": 1377.7334935653412, - "ema_span_1": 1315.7297625154665, - "enabled": true, - "initial_eprice_ema_dist": -0.005557979440468435, - "initial_qty_pct": 0.014696556079592117, - "markup_range": 0.004149952239189911, - "min_markup": 0.00345076664826615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02433193338283072, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040436078836901, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/PENDLEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/PENDLEUSDT.json deleted file mode 100644 index 62bbb6377..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2356928402237624, - "ema_span_0": 1427.8027918257126, - "ema_span_1": 989.1340105907262, - "enabled": true, - "initial_eprice_ema_dist": -0.005340205744521353, - "initial_qty_pct": 0.007313021550325117, - "markup_range": 0.008901674224334835, - "min_markup": 0.005422658306909489, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494774681849112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310951245638644, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/PEOPLEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/PEOPLEUSDT.json deleted file mode 100644 index b4c589a18..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9450254739964751, - "ema_span_0": 650.6524438545817, - "ema_span_1": 769.8378377413521, - "enabled": true, - "initial_eprice_ema_dist": -0.0004755301438063976, - "initial_qty_pct": 0.0054751376378018, - "markup_range": 0.005101066321536194, - "min_markup": 0.0032649608946259782, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04062181181652203, - "rentry_pprice_dist_wallet_exposure_weighting": 4.410112245669042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/PERPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/PERPUSDT.json deleted file mode 100644 index e62d0039f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9450254739964751, - "ema_span_0": 650.6524438545817, - "ema_span_1": 769.8378377413521, - "enabled": true, - "initial_eprice_ema_dist": -0.0004755301438063976, - "initial_qty_pct": 0.0054751376378018, - "markup_range": 0.005101066321536194, - "min_markup": 0.0032649608946259782, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04062181181652203, - "rentry_pprice_dist_wallet_exposure_weighting": 4.410112245669042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.291755675842417, - "ema_span_0": 1329.4655439697156, - "ema_span_1": 436.4975807530978, - "enabled": true, - "initial_eprice_ema_dist": -0.004821975710257179, - "initial_qty_pct": 0.009453459260410768, - "markup_range": 0.0016755298534680194, - "min_markup": 0.003995304577275092, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973163740896623, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6152150374534491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/PHBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/PHBUSDT.json deleted file mode 100644 index 19a279f4d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2641362300999307, - "ema_span_0": 439.68591677974763, - "ema_span_1": 491.4002950783783, - "enabled": true, - "initial_eprice_ema_dist": -0.0028050808561551283, - "initial_qty_pct": 0.014883361109011811, - "markup_range": 0.0061039552169209026, - "min_markup": 0.006193378185680342, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04757423145973606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2927593001298544, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3494299671902126, - "ema_span_0": 1099.5790342782948, - "ema_span_1": 891.6931536882142, - "enabled": true, - "initial_eprice_ema_dist": 0.002067981400178223, - "initial_qty_pct": 0.006877338106826703, - "markup_range": 0.003371214635599383, - "min_markup": 0.003649602767132133, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0293128063288612, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5801575590666186, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/POLYXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/POLYXUSDT.json deleted file mode 100644 index 76a27c525..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/POLYXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6567560382005619, - "ema_span_0": 1008.8060844318467, - "ema_span_1": 1285.9250387476184, - "enabled": true, - "initial_eprice_ema_dist": -0.007211845330496552, - "initial_qty_pct": 0.01296708075317405, - "markup_range": 0.00902288121364897, - "min_markup": 0.0021178134663742848, - "n_close_orders": 4, - "rentry_pprice_dist": 0.024386780464401764, - "rentry_pprice_dist_wallet_exposure_weighting": 6.745818148225621, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320635405488337, - "ema_span_0": 1377.7334935653412, - "ema_span_1": 1315.7297625154665, - "enabled": true, - "initial_eprice_ema_dist": -0.005557979440468435, - "initial_qty_pct": 0.014696556079592117, - "markup_range": 0.004149952239189911, - "min_markup": 0.00345076664826615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02433193338283072, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040436078836901, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/POWRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/POWRUSDT.json deleted file mode 100644 index 1c3569cfe..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/POWRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.677018133332895, - "ema_span_0": 1235.7525515833377, - "ema_span_1": 1277.1433184735629, - "enabled": true, - "initial_eprice_ema_dist": -0.003130536615432617, - "initial_qty_pct": 0.01841343032582347, - "markup_range": 0.005340723932525618, - "min_markup": 0.005325276677515647, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03785221672463879, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0150521373378953, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/QNTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/QNTUSDT.json deleted file mode 100644 index 1a2dcdf25..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.274683365002125, - "ema_span_0": 403.36673250730666, - "ema_span_1": 529.2751872434008, - "enabled": true, - "initial_eprice_ema_dist": 0.0027652240594404237, - "initial_qty_pct": 0.011622106514069511, - "markup_range": 0.0023922108996611274, - "min_markup": 0.002775101069107754, - "n_close_orders": 12, - "rentry_pprice_dist": 0.024151424790624893, - "rentry_pprice_dist_wallet_exposure_weighting": 5.53791301814851, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9384516237308655, - "ema_span_0": 1369.022437607885, - "ema_span_1": 703.669247297781, - "enabled": true, - "initial_eprice_ema_dist": 0.001941031902916225, - "initial_qty_pct": 0.015305639636130233, - "markup_range": 0.0007261272940515864, - "min_markup": 0.0014506776823708125, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03289821810199609, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3475749936327484, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/QTUMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/QTUMUSDT.json deleted file mode 100644 index 45f4142b4..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10094822451928008, - "ema_span_0": 775.1661584209725, - "ema_span_1": 528.9665921675529, - "enabled": true, - "initial_eprice_ema_dist": 0.0004305773654945008, - "initial_qty_pct": 0.01851487703920418, - "markup_range": 0.0039217078571030985, - "min_markup": 0.004075518907803436, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038140184292195775, - "rentry_pprice_dist_wallet_exposure_weighting": 2.208450865395706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.040644160398579, - "ema_span_0": 1115.3112271179605, - "ema_span_1": 592.7646321548445, - "enabled": true, - "initial_eprice_ema_dist": -0.002300909049115994, - "initial_qty_pct": 0.0069369262029872975, - "markup_range": 0.007227420925775015, - "min_markup": 0.004564193433975704, - "n_close_orders": 2, - "rentry_pprice_dist": 0.026816797408983375, - "rentry_pprice_dist_wallet_exposure_weighting": 4.005882486829598, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RADUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RADUSDT.json deleted file mode 100644 index 9470f9106..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0326705786431252, - "ema_span_0": 604.038530534182, - "ema_span_1": 593.1936821764934, - "enabled": true, - "initial_eprice_ema_dist": -0.00668937672890069, - "initial_qty_pct": 0.019351048497405286, - "markup_range": 0.0034942125844474497, - "min_markup": 0.004154469214673117, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024539182484321853, - "rentry_pprice_dist_wallet_exposure_weighting": 3.621466219267716, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RDNTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RDNTUSDT.json deleted file mode 100644 index 75d3910f0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6926985904682654, - "ema_span_0": 1174.2181107371332, - "ema_span_1": 1409.8698326104613, - "enabled": true, - "initial_eprice_ema_dist": 0.0019754265208844525, - "initial_qty_pct": 0.01653657773134153, - "markup_range": 0.001340047200363153, - "min_markup": 0.002072369563277908, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02229679226417164, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5938509725748373, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2356928402237624, - "ema_span_0": 1427.8027918257126, - "ema_span_1": 989.1340105907262, - "enabled": true, - "initial_eprice_ema_dist": -0.005340205744521353, - "initial_qty_pct": 0.007313021550325117, - "markup_range": 0.008901674224334835, - "min_markup": 0.005422658306909489, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494774681849112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310951245638644, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/REEFUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/REEFUSDT.json deleted file mode 100644 index bb3d92d35..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.380924028420745, - "ema_span_0": 1060.359257037373, - "ema_span_1": 611.9109050693339, - "enabled": true, - "initial_eprice_ema_dist": 0.00029642522149046405, - "initial_qty_pct": 0.00647505547056164, - "markup_range": 0.008458431084205256, - "min_markup": 0.006542395815989623, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03600915717938197, - "rentry_pprice_dist_wallet_exposure_weighting": 5.082004488772913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RENUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RENUSDT.json deleted file mode 100644 index ed339ba94..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.36828833109826425, - "ema_span_0": 911.4618088371025, - "ema_span_1": 907.5855515292684, - "enabled": true, - "initial_eprice_ema_dist": -0.009377701654827255, - "initial_qty_pct": 0.00610776711901373, - "markup_range": 0.006639373010761411, - "min_markup": 0.004375696912958147, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029045895386394738, - "rentry_pprice_dist_wallet_exposure_weighting": 5.583908164591865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.36190426584165203, - "ema_span_0": 1321.3349005232963, - "ema_span_1": 1103.1344181764816, - "enabled": true, - "initial_eprice_ema_dist": -0.008635941934900858, - "initial_qty_pct": 0.018095587657353168, - "markup_range": 0.009916260269344133, - "min_markup": 0.009660444396686554, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04633291789010038, - "rentry_pprice_dist_wallet_exposure_weighting": 5.959262012839135, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RIFUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RIFUSDT.json deleted file mode 100644 index 26b97c05d..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RIFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100644559707755, - "ema_span_0": 438.66836477264434, - "ema_span_1": 445.8331676413342, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.007533032591465177, - "markup_range": 0.007156320508651157, - "min_markup": 0.0058117855721224855, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509890353304822, - "rentry_pprice_dist_wallet_exposure_weighting": 1.404095253730318, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RLCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RLCUSDT.json deleted file mode 100644 index d8a47a060..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2407120055366132, - "ema_span_0": 823.8455691237507, - "ema_span_1": 719.69750308346, - "enabled": true, - "initial_eprice_ema_dist": -0.001977039688913021, - "initial_qty_pct": 0.010656794138825955, - "markup_range": 0.008141981201497428, - "min_markup": 0.007012057038425875, - "n_close_orders": 13, - "rentry_pprice_dist": 0.037876876415264944, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23015855674223562, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9466784286934358, - "ema_span_0": 905.0697721880944, - "ema_span_1": 912.9214311181881, - "enabled": true, - "initial_eprice_ema_dist": -0.007575040567385521, - "initial_qty_pct": 0.012106984643908462, - "markup_range": 0.0071962271813877125, - "min_markup": 0.0025092713565010795, - "n_close_orders": 2, - "rentry_pprice_dist": 0.037089632374749694, - "rentry_pprice_dist_wallet_exposure_weighting": 5.184381954830113, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RNDRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RNDRUSDT.json deleted file mode 100644 index f13c20609..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.253784539261661, - "ema_span_0": 697.0536646041054, - "ema_span_1": 809.4427323989121, - "enabled": true, - "initial_eprice_ema_dist": -0.006010234461624627, - "initial_qty_pct": 0.008613515109653224, - "markup_range": 0.0038051123119190017, - "min_markup": 0.005655139086423082, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030543911273457156, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6170090633448045, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8027787542027762, - "ema_span_0": 1436.8343438285362, - "ema_span_1": 1386.5511655702765, - "enabled": true, - "initial_eprice_ema_dist": 0.002834521224448135, - "initial_qty_pct": 0.00930399121755424, - "markup_range": 6.664167120364612e-08, - "min_markup": 0.0020903953001758444, - "n_close_orders": 15, - "rentry_pprice_dist": 0.045578517135331204, - "rentry_pprice_dist_wallet_exposure_weighting": 3.265703824925942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ROSEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ROSEUSDT.json deleted file mode 100644 index 85a88c4ea..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.576159674193559, - "ema_span_0": 625.382472891261, - "ema_span_1": 653.5440331035952, - "enabled": true, - "initial_eprice_ema_dist": -0.0011369005919328425, - "initial_qty_pct": 0.00782116147808587, - "markup_range": 0.0015136280098836067, - "min_markup": 0.004278340216667975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026199885334896974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9341649235801395, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2486272461137027, - "ema_span_0": 1232.4458545323457, - "ema_span_1": 1195.5581022152178, - "enabled": true, - "initial_eprice_ema_dist": 0.0023874831572265956, - "initial_qty_pct": 0.008420651435400066, - "markup_range": 0.001667859617214723, - "min_markup": 0.00333195652467545, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02304289948674446, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4710624791304434, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RSRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RSRUSDT.json deleted file mode 100644 index 9e1a35150..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5212351831480254, - "ema_span_0": 936.1765289607704, - "ema_span_1": 1071.651475023756, - "enabled": true, - "initial_eprice_ema_dist": -0.003090729871813043, - "initial_qty_pct": 0.010943429973030477, - "markup_range": 0.006899977067368584, - "min_markup": 0.006327690497756268, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04670705414082499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0453399819780371, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.893484887705359, - "ema_span_0": 499.9206121434548, - "ema_span_1": 522.7813915799373, - "enabled": true, - "initial_eprice_ema_dist": 1.3647894549735935e-05, - "initial_qty_pct": 0.016173708643101897, - "markup_range": 0.004315559481418016, - "min_markup": 0.007399664415034845, - "n_close_orders": 3, - "rentry_pprice_dist": 0.048175631917146695, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1859632533942563, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RUNEUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RUNEUSDT.json deleted file mode 100644 index c37f5b247..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11281211197422117, - "ema_span_0": 997.8868324621063, - "ema_span_1": 1108.9712828782992, - "enabled": true, - "initial_eprice_ema_dist": -0.006656306573630208, - "initial_qty_pct": 0.006890424823065341, - "markup_range": 0.0018948270268947065, - "min_markup": 0.005512994394363772, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019686104292234892, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2213921854542322, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.046979649057886, - "ema_span_0": 1061.1274375353632, - "ema_span_1": 427.4382143164889, - "enabled": true, - "initial_eprice_ema_dist": 0.0006034453124001384, - "initial_qty_pct": 0.0073284933476516975, - "markup_range": 0.0018921851523770884, - "min_markup": 0.00393709839264385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.058585126487639375, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19195114998346485, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/RVNUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/RVNUSDT.json deleted file mode 100644 index 76b37a1f3..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6567560382005619, - "ema_span_0": 1008.8060844318467, - "ema_span_1": 1285.9250387476184, - "enabled": true, - "initial_eprice_ema_dist": -0.007211845330496552, - "initial_qty_pct": 0.01296708075317405, - "markup_range": 0.00902288121364897, - "min_markup": 0.0021178134663742848, - "n_close_orders": 4, - "rentry_pprice_dist": 0.024386780464401764, - "rentry_pprice_dist_wallet_exposure_weighting": 6.745818148225621, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9384516237308655, - "ema_span_0": 1369.022437607885, - "ema_span_1": 703.669247297781, - "enabled": true, - "initial_eprice_ema_dist": 0.001941031902916225, - "initial_qty_pct": 0.015305639636130233, - "markup_range": 0.0007261272940515864, - "min_markup": 0.0014506776823708125, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03289821810199609, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3475749936327484, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SANDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SANDUSDT.json deleted file mode 100644 index fe6a197c4..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358791154116679, - "ema_span_0": 825.5228520854362, - "ema_span_1": 930.5614549047939, - "enabled": true, - "initial_eprice_ema_dist": 0.0008721520022025943, - "initial_qty_pct": 0.010098211120495228, - "markup_range": 0.0033307611948601504, - "min_markup": 0.0022295906962043663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02392162425162726, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5966878232828394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5914708060921532, - "ema_span_0": 432.09214208815104, - "ema_span_1": 1422.282987092167, - "enabled": true, - "initial_eprice_ema_dist": -0.005106940808365431, - "initial_qty_pct": 0.01721862617298024, - "markup_range": 0.004000446743198034, - "min_markup": 0.006430983667940515, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04119686617596331, - "rentry_pprice_dist_wallet_exposure_weighting": 5.0414911804694995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SEIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SEIUSDT.json deleted file mode 100644 index 73b19cf69..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.306299357885784, - "ema_span_0": 1433.4976632686808, - "ema_span_1": 1221.2619546387925, - "enabled": true, - "initial_eprice_ema_dist": 0.0025183978173258653, - "initial_qty_pct": 0.015339815120780979, - "markup_range": 0.0011060715769700266, - "min_markup": 0.004241668938977198, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04787091476393872, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0362585722412225, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SFPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SFPUSDT.json deleted file mode 100644 index 794e5f732..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.575862377954457, - "ema_span_0": 1169.7608266857865, - "ema_span_1": 1214.9802469948397, - "enabled": true, - "initial_eprice_ema_dist": 0.0003719865620804136, - "initial_qty_pct": 0.018441583953272937, - "markup_range": 0.0015192582830027023, - "min_markup": 0.003572618965727433, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0405778633692259, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9171392720961675, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1392413294203174, - "ema_span_0": 599.2510962429279, - "ema_span_1": 701.8826520407325, - "enabled": true, - "initial_eprice_ema_dist": -0.007803927506204677, - "initial_qty_pct": 0.008435130987898123, - "markup_range": 0.0071391643687921166, - "min_markup": 0.004308100182569908, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03756929813175627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.06443855970836043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SKLUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SKLUSDT.json deleted file mode 100644 index c8e0d895b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9837339180732757, - "ema_span_0": 848.6698359070043, - "ema_span_1": 575.1070153298431, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.019026765644641553, - "markup_range": 0.006364585770855597, - "min_markup": 0.006233496587982319, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0390239723682346, - "rentry_pprice_dist_wallet_exposure_weighting": 2.658590793005517, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6705209616578605, - "ema_span_0": 1083.3547295750038, - "ema_span_1": 634.1252722984411, - "enabled": true, - "initial_eprice_ema_dist": -0.0017641404912276618, - "initial_qty_pct": 0.009746112646765446, - "markup_range": 0.0033178362680796776, - "min_markup": 0.0066470663150352835, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04292049842163451, - "rentry_pprice_dist_wallet_exposure_weighting": 0.912722616868512, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SLPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SLPUSDT.json deleted file mode 100644 index 11b9759fa..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SLPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.540138954519198, - "ema_span_0": 1174.89882113018, - "ema_span_1": 1381.5375790464013, - "enabled": true, - "initial_eprice_ema_dist": 0.001693262207703886, - "initial_qty_pct": 0.012710220376589467, - "markup_range": 0.0021186491868327444, - "min_markup": 0.0018726019019261022, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014966050992528302, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09335644393205807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.291755675842417, - "ema_span_0": 1329.4655439697156, - "ema_span_1": 436.4975807530978, - "enabled": true, - "initial_eprice_ema_dist": -0.004821975710257179, - "initial_qty_pct": 0.009453459260410768, - "markup_range": 0.0016755298534680194, - "min_markup": 0.003995304577275092, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973163740896623, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6152150374534491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SNXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SNXUSDT.json deleted file mode 100644 index def1ed291..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8327003513041973, - "ema_span_0": 613.100493810385, - "ema_span_1": 1410.3210386023734, - "enabled": true, - "initial_eprice_ema_dist": -0.0008435052053426323, - "initial_qty_pct": 0.013426925840925641, - "markup_range": 0.007487729963764102, - "min_markup": 0.005132493006109973, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03967307871671411, - "rentry_pprice_dist_wallet_exposure_weighting": 6.737403611166463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1475614561379768, - "ema_span_0": 1284.4178268948383, - "ema_span_1": 1222.016530533947, - "enabled": true, - "initial_eprice_ema_dist": 0.0027172904615045037, - "initial_qty_pct": 0.007594292140117166, - "markup_range": 0.009516373815847062, - "min_markup": 0.008814489274300714, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0518261808882454, - "rentry_pprice_dist_wallet_exposure_weighting": 4.37678457499634, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SOLUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SOLUSDT.json deleted file mode 100644 index 7938a30f3..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872391040129907, - "ema_span_0": 1227.677879308853, - "ema_span_1": 1321.9435653298738, - "enabled": true, - "initial_eprice_ema_dist": 6.875571249006968e-05, - "initial_qty_pct": 0.0050180565237401475, - "markup_range": 0.0007845643795819266, - "min_markup": 0.0034294712116233255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.01912283477089432, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12906820980223024, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.315157615759062, - "ema_span_0": 1288.638511763472, - "ema_span_1": 1178.166122578907, - "enabled": true, - "initial_eprice_ema_dist": -0.008352613483176433, - "initial_qty_pct": 0.005219245056790691, - "markup_range": 0.0022674979607707063, - "min_markup": 0.002748393639133431, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04629170038288606, - "rentry_pprice_dist_wallet_exposure_weighting": 0.11533556541437862, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SPELLUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SPELLUSDT.json deleted file mode 100644 index d26c9da20..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5489842413525333, - "ema_span_0": 691.5634447411517, - "ema_span_1": 642.9840414677363, - "enabled": true, - "initial_eprice_ema_dist": -0.007372369815955612, - "initial_qty_pct": 0.015735441283979888, - "markup_range": 0.005764737636288706, - "min_markup": 0.004580899580788442, - "n_close_orders": 2, - "rentry_pprice_dist": 0.031921688765491944, - "rentry_pprice_dist_wallet_exposure_weighting": 1.632559821892781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3784984584343154, - "ema_span_0": 849.6056361830362, - "ema_span_1": 1176.474410216494, - "enabled": true, - "initial_eprice_ema_dist": -0.001972662826097839, - "initial_qty_pct": 0.011577591700557872, - "markup_range": 0.0035539360236690916, - "min_markup": 0.0049434807501742275, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033481026370005045, - "rentry_pprice_dist_wallet_exposure_weighting": 1.074853172733533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SSVUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SSVUSDT.json deleted file mode 100644 index 8c73e3d14..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10294523325725574, - "ema_span_0": 719.1735387056117, - "ema_span_1": 636.811810255116, - "enabled": true, - "initial_eprice_ema_dist": 0.001811586406636841, - "initial_qty_pct": 0.010356350239136195, - "markup_range": 0.0061591729264051966, - "min_markup": 0.0046934552730989445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02478647136472125, - "rentry_pprice_dist_wallet_exposure_weighting": 5.136076037344524, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3591611260416367, - "ema_span_0": 1415.594872402821, - "ema_span_1": 1395.4226935499983, - "enabled": true, - "initial_eprice_ema_dist": 0.0004128180262376978, - "initial_qty_pct": 0.011159095850396476, - "markup_range": 0.00964513026518975, - "min_markup": 0.009542352536819136, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03444334083422658, - "rentry_pprice_dist_wallet_exposure_weighting": 6.503954189652068, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/STGUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/STGUSDT.json deleted file mode 100644 index e6f7a19d5..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9609135415246004, - "ema_span_0": 1403.5698139372596, - "ema_span_1": 986.2957480481507, - "enabled": true, - "initial_eprice_ema_dist": 0.002947454337247563, - "initial_qty_pct": 0.011597624865224218, - "markup_range": 0.0024845949302958656, - "min_markup": 0.005474116949369086, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029803783296612842, - "rentry_pprice_dist_wallet_exposure_weighting": 4.827121921787006, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8027787542027762, - "ema_span_0": 1436.8343438285362, - "ema_span_1": 1386.5511655702765, - "enabled": true, - "initial_eprice_ema_dist": 0.002834521224448135, - "initial_qty_pct": 0.00930399121755424, - "markup_range": 6.664167120364612e-08, - "min_markup": 0.0020903953001758444, - "n_close_orders": 15, - "rentry_pprice_dist": 0.045578517135331204, - "rentry_pprice_dist_wallet_exposure_weighting": 3.265703824925942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/STMXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/STMXUSDT.json deleted file mode 100644 index 981f8a3c1..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6963133216779539, - "ema_span_0": 1274.2385749363366, - "ema_span_1": 1348.484289402739, - "enabled": true, - "initial_eprice_ema_dist": 0.0026742058936879585, - "initial_qty_pct": 0.01705665302076961, - "markup_range": 0.002121129786193186, - "min_markup": 0.009945399090426223, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04469650661623575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4473637940570643, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7750101400442486, - "ema_span_0": 1320.2696206355258, - "ema_span_1": 735.2869206182583, - "enabled": true, - "initial_eprice_ema_dist": -0.004040409082477572, - "initial_qty_pct": 0.005163922094282229, - "markup_range": 0.00875233349419754, - "min_markup": 0.009560639083380467, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032775850660841016, - "rentry_pprice_dist_wallet_exposure_weighting": 2.87001389891411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/STORJUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/STORJUSDT.json deleted file mode 100644 index 62ba3a75b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9450254739964751, - "ema_span_0": 650.6524438545817, - "ema_span_1": 769.8378377413521, - "enabled": true, - "initial_eprice_ema_dist": -0.0004755301438063976, - "initial_qty_pct": 0.0054751376378018, - "markup_range": 0.005101066321536194, - "min_markup": 0.0032649608946259782, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04062181181652203, - "rentry_pprice_dist_wallet_exposure_weighting": 4.410112245669042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8027787542027762, - "ema_span_0": 1436.8343438285362, - "ema_span_1": 1386.5511655702765, - "enabled": true, - "initial_eprice_ema_dist": 0.002834521224448135, - "initial_qty_pct": 0.00930399121755424, - "markup_range": 6.664167120364612e-08, - "min_markup": 0.0020903953001758444, - "n_close_orders": 15, - "rentry_pprice_dist": 0.045578517135331204, - "rentry_pprice_dist_wallet_exposure_weighting": 3.265703824925942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/STPTUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/STPTUSDT.json deleted file mode 100644 index 543529f51..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/STPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358791154116679, - "ema_span_0": 825.5228520854362, - "ema_span_1": 930.5614549047939, - "enabled": true, - "initial_eprice_ema_dist": 0.0008721520022025943, - "initial_qty_pct": 0.010098211120495228, - "markup_range": 0.0033307611948601504, - "min_markup": 0.0022295906962043663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02392162425162726, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5966878232828394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358678277703722, - "ema_span_0": 1288.638511763472, - "ema_span_1": 694.772029341207, - "enabled": true, - "initial_eprice_ema_dist": -0.007298186441815336, - "initial_qty_pct": 0.015305639636130233, - "markup_range": 0.007760908258217274, - "min_markup": 0.004065589679472495, - "n_close_orders": 2, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2351204454500158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/STRAXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/STRAXUSDT.json deleted file mode 100644 index e1bf8f53a..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/STRAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.42326362662281, - "ema_span_0": 825.6397772866048, - "ema_span_1": 805.5690736952308, - "enabled": true, - "initial_eprice_ema_dist": -0.0028262924368349803, - "initial_qty_pct": 0.00905698128501423, - "markup_range": 0.002955442292143253, - "min_markup": 0.0021774715698266427, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03275826162428477, - "rentry_pprice_dist_wallet_exposure_weighting": 2.074459229843532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7750101400442486, - "ema_span_0": 1320.2696206355258, - "ema_span_1": 735.2869206182583, - "enabled": true, - "initial_eprice_ema_dist": -0.004040409082477572, - "initial_qty_pct": 0.005163922094282229, - "markup_range": 0.00875233349419754, - "min_markup": 0.009560639083380467, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032775850660841016, - "rentry_pprice_dist_wallet_exposure_weighting": 2.87001389891411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/STXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/STXUSDT.json deleted file mode 100644 index d5392d234..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0871899405157714, - "ema_span_0": 552.9693847341467, - "ema_span_1": 656.5594904617175, - "enabled": true, - "initial_eprice_ema_dist": -0.003898036590157887, - "initial_qty_pct": 0.007907575036427134, - "markup_range": 0.007587342923906934, - "min_markup": 0.004194339676899615, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03864097158082685, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6235335931801858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9384516237308655, - "ema_span_0": 1369.022437607885, - "ema_span_1": 703.669247297781, - "enabled": true, - "initial_eprice_ema_dist": 0.001941031902916225, - "initial_qty_pct": 0.015305639636130233, - "markup_range": 0.0007261272940515864, - "min_markup": 0.0014506776823708125, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03289821810199609, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3475749936327484, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SUIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SUIUSDT.json deleted file mode 100644 index bac6c24f0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5936135915759646, - "ema_span_0": 627.7260361896247, - "ema_span_1": 1238.9547036354513, - "enabled": true, - "initial_eprice_ema_dist": -0.006716531652070077, - "initial_qty_pct": 0.010775620251336004, - "markup_range": 0.005029305358760996, - "min_markup": 0.004392911240127008, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03580224889415905, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0819413516554321, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9961098407519073, - "ema_span_0": 760.0159794797612, - "ema_span_1": 1182.7403796781857, - "enabled": true, - "initial_eprice_ema_dist": -0.007560937435280787, - "initial_qty_pct": 0.011087802236124197, - "markup_range": 0.0005111242591281135, - "min_markup": 0.003008262613061435, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023681835528013062, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6066129098736585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SUSHIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SUSHIUSDT.json deleted file mode 100644 index f82704b1e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.795194121736346, - "ema_span_0": 599.2550114147947, - "ema_span_1": 649.8694142935987, - "enabled": true, - "initial_eprice_ema_dist": 0.0018288311266071123, - "initial_qty_pct": 0.018299382403805034, - "markup_range": 0.0032878786069451436, - "min_markup": 0.003418086036040924, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04419541633064149, - "rentry_pprice_dist_wallet_exposure_weighting": 4.044034498685389, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9135535574813285, - "ema_span_0": 536.4799858709168, - "ema_span_1": 1323.0244048191205, - "enabled": true, - "initial_eprice_ema_dist": -0.006901370862832469, - "initial_qty_pct": 0.014397015749938062, - "markup_range": 0.007103792067301212, - "min_markup": 0.004991269471653163, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04548662486136155, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1087617122259665, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/SXPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/SXPUSDT.json deleted file mode 100644 index fb622c8c8..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.42326362662281, - "ema_span_0": 825.6397772866048, - "ema_span_1": 805.5690736952308, - "enabled": true, - "initial_eprice_ema_dist": -0.0028262924368349803, - "initial_qty_pct": 0.00905698128501423, - "markup_range": 0.002955442292143253, - "min_markup": 0.0021774715698266427, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03275826162428477, - "rentry_pprice_dist_wallet_exposure_weighting": 2.074459229843532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/THETAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/THETAUSDT.json deleted file mode 100644 index 8b329ba1e..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5489842413525333, - "ema_span_0": 691.5634447411517, - "ema_span_1": 642.9840414677363, - "enabled": true, - "initial_eprice_ema_dist": -0.007372369815955612, - "initial_qty_pct": 0.015735441283979888, - "markup_range": 0.005764737636288706, - "min_markup": 0.004580899580788442, - "n_close_orders": 2, - "rentry_pprice_dist": 0.031921688765491944, - "rentry_pprice_dist_wallet_exposure_weighting": 1.632559821892781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9244249241389804, - "ema_span_0": 552.7495426568219, - "ema_span_1": 953.2458349863433, - "enabled": true, - "initial_eprice_ema_dist": 0.002997583838137984, - "initial_qty_pct": 0.013860610620086216, - "markup_range": 0.0028635079198033454, - "min_markup": 0.00256274313637698, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04590379600172608, - "rentry_pprice_dist_wallet_exposure_weighting": 2.715808991611394, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/TIAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/TIAUSDT.json deleted file mode 100644 index e0505d799..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/TIAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100644559707755, - "ema_span_0": 438.66836477264434, - "ema_span_1": 445.8331676413342, - "enabled": true, - "initial_eprice_ema_dist": -0.01, - "initial_qty_pct": 0.007533032591465177, - "markup_range": 0.007156320508651157, - "min_markup": 0.0058117855721224855, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509890353304822, - "rentry_pprice_dist_wallet_exposure_weighting": 1.404095253730318, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7683360773661545, - "ema_span_0": 1234.5735793947715, - "ema_span_1": 1182.526257399062, - "enabled": true, - "initial_eprice_ema_dist": 0.002248791473923822, - "initial_qty_pct": 0.018866989139200676, - "markup_range": 0.0020912789103538425, - "min_markup": 0.007615193452807916, - "n_close_orders": 12, - "rentry_pprice_dist": 0.05406286602542849, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780058520887276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/TLMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/TLMUSDT.json deleted file mode 100644 index 467ba93e6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10094822451928008, - "ema_span_0": 775.1661584209725, - "ema_span_1": 528.9665921675529, - "enabled": true, - "initial_eprice_ema_dist": 0.0004305773654945008, - "initial_qty_pct": 0.01851487703920418, - "markup_range": 0.0039217078571030985, - "min_markup": 0.004075518907803436, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038140184292195775, - "rentry_pprice_dist_wallet_exposure_weighting": 2.208450865395706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1392413294203174, - "ema_span_0": 599.2510962429279, - "ema_span_1": 701.8826520407325, - "enabled": true, - "initial_eprice_ema_dist": -0.007803927506204677, - "initial_qty_pct": 0.008435130987898123, - "markup_range": 0.0071391643687921166, - "min_markup": 0.004308100182569908, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03756929813175627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.06443855970836043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/TRBUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/TRBUSDT.json deleted file mode 100644 index 6e5dbe458..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.408402181035909, - "ema_span_0": 525.8286165073457, - "ema_span_1": 401.64718304714097, - "enabled": true, - "initial_eprice_ema_dist": 0.002992028614572553, - "initial_qty_pct": 0.011935957485162619, - "markup_range": 0.001493547436783545, - "min_markup": 0.006537147307115773, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0486196103795389, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7543522057805484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.693323380505466, - "ema_span_0": 1341.0385370862668, - "ema_span_1": 1168.951919977392, - "enabled": true, - "initial_eprice_ema_dist": 0.0015288720272723922, - "initial_qty_pct": 0.007564759953369207, - "markup_range": 0.002944576050034205, - "min_markup": 0.005342752088917672, - "n_close_orders": 12, - "rentry_pprice_dist": 0.05809622011455424, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8262999192766742, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/TRUUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/TRUUSDT.json deleted file mode 100644 index b44271938..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.147872625701811, - "ema_span_0": 943.421207147712, - "ema_span_1": 1106.2070233961708, - "enabled": true, - "initial_eprice_ema_dist": 0.00287995506374919, - "initial_qty_pct": 0.006805586855140683, - "markup_range": 0.003475705902475284, - "min_markup": 0.004534291188920234, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0381179351462731, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3243421773616224, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1201567046504906, - "ema_span_0": 614.5634183054134, - "ema_span_1": 693.8028395078741, - "enabled": true, - "initial_eprice_ema_dist": 0.002357679243998225, - "initial_qty_pct": 0.012565361087548408, - "markup_range": 0.0008879536758302892, - "min_markup": 0.004463133208382252, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048203579326384714, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0006272224817946995, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/TRXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/TRXUSDT.json deleted file mode 100644 index 36e922003..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8872391040129907, - "ema_span_0": 1227.677879308853, - "ema_span_1": 1321.9435653298738, - "enabled": true, - "initial_eprice_ema_dist": 6.875571249006968e-05, - "initial_qty_pct": 0.0050180565237401475, - "markup_range": 0.0007845643795819266, - "min_markup": 0.0034294712116233255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.01912283477089432, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12906820980223024, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7675356695294622, - "ema_span_0": 1393.4546224480537, - "ema_span_1": 1368.6820585392252, - "enabled": true, - "initial_eprice_ema_dist": 0.002627474568962309, - "initial_qty_pct": 0.014613064644839368, - "markup_range": 6.007043140302867e-07, - "min_markup": 0.001041562919519315, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027968843709405767, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4766732171762642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/TUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/TUSDT.json deleted file mode 100644 index 59b038c73..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.316972780009348, - "ema_span_0": 554.5737431891346, - "ema_span_1": 676.3472218225754, - "enabled": true, - "initial_eprice_ema_dist": 0.0007066626162150962, - "initial_qty_pct": 0.010224342958451805, - "markup_range": 0.0014843086571736841, - "min_markup": 0.004089354591992062, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027130948937332762, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646650578741386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0415850620906246, - "ema_span_0": 508.96259788148313, - "ema_span_1": 1405.3404137345779, - "enabled": true, - "initial_eprice_ema_dist": -0.002047762184921681, - "initial_qty_pct": 0.007796209154868364, - "markup_range": 0.0034167338251863575, - "min_markup": 0.0042088207720382895, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02120113742587117, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5548155586946635, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/UMAUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/UMAUSDT.json deleted file mode 100644 index 70f79b9e4..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7715563234191893, - "ema_span_0": 1399.7568983046679, - "ema_span_1": 1439.1373730921864, - "enabled": true, - "initial_eprice_ema_dist": -0.007308296472590616, - "initial_qty_pct": 0.012356366052131851, - "markup_range": 0.006038106117817782, - "min_markup": 0.006645211102396095, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384497874855367, - "rentry_pprice_dist_wallet_exposure_weighting": 3.13128640197629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000009403417283, - "ema_span_0": 1408.1699568598206, - "ema_span_1": 1439.9763548281778, - "enabled": true, - "initial_eprice_ema_dist": -0.00736224144906754, - "initial_qty_pct": 0.019999655050966635, - "markup_range": 0.009995376087173621, - "min_markup": 0.008031750194250169, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027042324250607402, - "rentry_pprice_dist_wallet_exposure_weighting": 5.007444805947261, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/UNFIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/UNFIUSDT.json deleted file mode 100644 index fae1f95c6..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9893296082523437, - "ema_span_0": 874.7203664860392, - "ema_span_1": 865.1657411257919, - "enabled": true, - "initial_eprice_ema_dist": -0.0077946137657555845, - "initial_qty_pct": 0.005664645418252266, - "markup_range": 0.002673068146602038, - "min_markup": 0.008181563017914978, - "n_close_orders": 15, - "rentry_pprice_dist": 0.05852383188379929, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9314186458502194, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.804508626271034, - "ema_span_0": 1396.6248230953436, - "ema_span_1": 741.9282239293738, - "enabled": true, - "initial_eprice_ema_dist": -0.005910435684958671, - "initial_qty_pct": 0.012548744282311454, - "markup_range": 0.0018029536592812515, - "min_markup": 0.005218437808043673, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015208274955498244, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7954078374719776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/UNIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/UNIUSDT.json deleted file mode 100644 index 6f81e2729..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.020691559451297, - "ema_span_0": 400, - "ema_span_1": 774.6048168736422, - "enabled": true, - "initial_eprice_ema_dist": 0.0012040292827267954, - "initial_qty_pct": 0.00601072228878128, - "markup_range": 0.002519533155161096, - "min_markup": 0.002039539878468083, - "n_close_orders": 9, - "rentry_pprice_dist": 0.019936134592632042, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4064538558156699, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9464456688446498, - "ema_span_0": 868.7673184514623, - "ema_span_1": 1407.8588514523296, - "enabled": true, - "initial_eprice_ema_dist": 0.00203800796678905, - "initial_qty_pct": 0.015361415762473511, - "markup_range": 0.0016235093678653788, - "min_markup": 0.005651787881076957, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030298170179919877, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07589368742006575, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/USDCUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/USDCUSDT.json deleted file mode 100644 index e0251ce4c..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8008857052679335, - "ema_span_0": 1009.285090490301, - "ema_span_1": 1039.2971000301943, - "enabled": true, - "initial_eprice_ema_dist": 0.0007434456183525658, - "initial_qty_pct": 0.005713551032754992, - "markup_range": 0.003872333695087145, - "min_markup": 0.008808290062222151, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04509230391614585, - "rentry_pprice_dist_wallet_exposure_weighting": 2.833856393692009, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/VETUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/VETUSDT.json deleted file mode 100644 index e6d92864b..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.403343128712556, - "ema_span_0": 530.3983369594597, - "ema_span_1": 553.7407325758327, - "enabled": true, - "initial_eprice_ema_dist": -0.008700396449652538, - "initial_qty_pct": 0.006815112298321839, - "markup_range": 0.0010966256033144342, - "min_markup": 0.002604589328004409, - "n_close_orders": 15, - "rentry_pprice_dist": 0.01411914233395918, - "rentry_pprice_dist_wallet_exposure_weighting": 6.158417811485988, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0415850620906246, - "ema_span_0": 508.96259788148313, - "ema_span_1": 1405.3404137345779, - "enabled": true, - "initial_eprice_ema_dist": -0.002047762184921681, - "initial_qty_pct": 0.007796209154868364, - "markup_range": 0.0034167338251863575, - "min_markup": 0.0042088207720382895, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02120113742587117, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5548155586946635, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/WAVESUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/WAVESUSDT.json deleted file mode 100644 index f52072f30..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7681336482631624, - "ema_span_0": 631.527076475957, - "ema_span_1": 828.5490050867977, - "enabled": true, - "initial_eprice_ema_dist": -0.0020834779357337047, - "initial_qty_pct": 0.006310631710393618, - "markup_range": 0.002668947694119416, - "min_markup": 0.00559746324383762, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032436522687022504, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3737679276306998, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9121421344624778, - "ema_span_0": 721.1251219702132, - "ema_span_1": 1150.8345584701594, - "enabled": true, - "initial_eprice_ema_dist": 0.0022686918843395245, - "initial_qty_pct": 0.006515385336641121, - "markup_range": 0.0, - "min_markup": 0.0016276182682950862, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048670649528362246, - "rentry_pprice_dist_wallet_exposure_weighting": 5.405434920929156, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/WAXPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/WAXPUSDT.json deleted file mode 100644 index 4a76d7304..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/WAXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.380924028420745, - "ema_span_0": 1060.359257037373, - "ema_span_1": 611.9109050693339, - "enabled": true, - "initial_eprice_ema_dist": 0.00029642522149046405, - "initial_qty_pct": 0.00647505547056164, - "markup_range": 0.008458431084205256, - "min_markup": 0.006542395815989623, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03600915717938197, - "rentry_pprice_dist_wallet_exposure_weighting": 5.082004488772913, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.804508626271034, - "ema_span_0": 1396.6248230953436, - "ema_span_1": 741.9282239293738, - "enabled": true, - "initial_eprice_ema_dist": -0.005910435684958671, - "initial_qty_pct": 0.012548744282311454, - "markup_range": 0.0018029536592812515, - "min_markup": 0.005218437808043673, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015208274955498244, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7954078374719776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/WLDUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/WLDUSDT.json deleted file mode 100644 index cf6474924..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9295961467888398, - "ema_span_0": 963.8979774269824, - "ema_span_1": 888.4244758500278, - "enabled": true, - "initial_eprice_ema_dist": -0.0070262833903947195, - "initial_qty_pct": 0.012437039284533226, - "markup_range": 0.004492387751566958, - "min_markup": 0.005634490370496687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02388421916858395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3005133885012596, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5477199416606162, - "ema_span_0": 848.4093305345355, - "ema_span_1": 754.7610210950482, - "enabled": true, - "initial_eprice_ema_dist": -0.0008062671938873273, - "initial_qty_pct": 0.008702704128157674, - "markup_range": 0.004470224074994813, - "min_markup": 0.005726846724644345, - "n_close_orders": 6, - "rentry_pprice_dist": 0.053837505196058934, - "rentry_pprice_dist_wallet_exposure_weighting": 4.172706634156805, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/WOOUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/WOOUSDT.json deleted file mode 100644 index d240b3fd7..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.43512420407997504, - "ema_span_0": 993.5860303929242, - "ema_span_1": 1175.5239009759625, - "enabled": true, - "initial_eprice_ema_dist": 0.0012934479551850496, - "initial_qty_pct": 0.006827740863585729, - "markup_range": 0.003142728978476539, - "min_markup": 0.006001100142474061, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03909930442764353, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09349986519559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9391831146027663, - "ema_span_0": 1351.429273942314, - "ema_span_1": 1261.4980468931813, - "enabled": true, - "initial_eprice_ema_dist": -0.0012989041306011653, - "initial_qty_pct": 0.017915034342195442, - "markup_range": 0.0010131850901705733, - "min_markup": 0.0035734248110383315, - "n_close_orders": 6, - "rentry_pprice_dist": 0.040593487046618935, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14048722843854514, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XEMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XEMUSDT.json deleted file mode 100644 index 040601fe1..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.106900394665009, - "ema_span_0": 1290.8273741237329, - "ema_span_1": 1304.1638617014348, - "enabled": true, - "initial_eprice_ema_dist": 0.0029984539237203523, - "initial_qty_pct": 0.010252114458830812, - "markup_range": 0.0013727175399165165, - "min_markup": 0.003935802528457953, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029801864958430596, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9610268762232803, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.178304880661967, - "ema_span_0": 520.6953706361433, - "ema_span_1": 694.772029341207, - "enabled": true, - "initial_eprice_ema_dist": 0.0003768367623444417, - "initial_qty_pct": 0.010622061388592946, - "markup_range": 0.0018067301241174272, - "min_markup": 0.007109201632585021, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026080543508385443, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1900725181943552, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XLMUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XLMUSDT.json deleted file mode 100644 index 2bad08508..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.274683365002125, - "ema_span_0": 403.36673250730666, - "ema_span_1": 529.2751872434008, - "enabled": true, - "initial_eprice_ema_dist": 0.0027652240594404237, - "initial_qty_pct": 0.011622106514069511, - "markup_range": 0.0023922108996611274, - "min_markup": 0.002775101069107754, - "n_close_orders": 12, - "rentry_pprice_dist": 0.024151424790624893, - "rentry_pprice_dist_wallet_exposure_weighting": 5.53791301814851, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9961098407519073, - "ema_span_0": 760.0159794797612, - "ema_span_1": 1182.7403796781857, - "enabled": true, - "initial_eprice_ema_dist": -0.007560937435280787, - "initial_qty_pct": 0.011087802236124197, - "markup_range": 0.0005111242591281135, - "min_markup": 0.003008262613061435, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023681835528013062, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6066129098736585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XMRUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XMRUSDT.json deleted file mode 100644 index ea3785db4..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4870318995964089, - "ema_span_0": 973.0276401158295, - "ema_span_1": 850.1993391428446, - "enabled": true, - "initial_eprice_ema_dist": -0.008379791908101047, - "initial_qty_pct": 0.01189557133067565, - "markup_range": 0.0012611203099522302, - "min_markup": 0.0033089727343305927, - "n_close_orders": 10, - "rentry_pprice_dist": 0.021875163124048885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19493081536728532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0540952339388348, - "ema_span_0": 840.8105035001865, - "ema_span_1": 809.3310503480456, - "enabled": true, - "initial_eprice_ema_dist": 0.0010731840104801968, - "initial_qty_pct": 0.006331208422010066, - "markup_range": 0.001817780138602416, - "min_markup": 0.002716882059175753, - "n_close_orders": 14, - "rentry_pprice_dist": 0.014196970591013245, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1434624126101096, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XRPUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XRPUSDT.json deleted file mode 100644 index 3b4e2d948..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4266544812009934, - "ema_span_0": 572.5922385557195, - "ema_span_1": 847.8908964550294, - "enabled": true, - "initial_eprice_ema_dist": -0.008618030770429405, - "initial_qty_pct": 0.007282660712140188, - "markup_range": 0.006729802066223069, - "min_markup": 0.00580026499468452, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029517454984644444, - "rentry_pprice_dist_wallet_exposure_weighting": 2.859843120560769, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2238036691178893, - "ema_span_0": 1099.3785433883486, - "ema_span_1": 754.0449537651739, - "enabled": true, - "initial_eprice_ema_dist": 0.002309284561243936, - "initial_qty_pct": 0.0077818905465695245, - "markup_range": 0.004035631537299432, - "min_markup": 0.005845521403621744, - "n_close_orders": 4, - "rentry_pprice_dist": 0.034776756908602116, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6652006652040698, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XTZUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XTZUSDT.json deleted file mode 100644 index f20815835..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2587366531653335, - "ema_span_0": 1320.3203094925138, - "ema_span_1": 1400.137074137274, - "enabled": true, - "initial_eprice_ema_dist": 0.002961638072694838, - "initial_qty_pct": 0.017175083404273265, - "markup_range": 0.0037961741441035197, - "min_markup": 0.003787875544317801, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044349652189838044, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5063531646966566, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7445818384497208, - "ema_span_0": 514.91124475972, - "ema_span_1": 567.7918296592834, - "enabled": true, - "initial_eprice_ema_dist": -0.00646790462897329, - "initial_qty_pct": 0.010949760568779903, - "markup_range": 0.00457708798142361, - "min_markup": 0.004081010855203998, - "n_close_orders": 8, - "rentry_pprice_dist": 0.025945669732574148, - "rentry_pprice_dist_wallet_exposure_weighting": 0.25372219289840087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XVGUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XVGUSDT.json deleted file mode 100644 index 5ea641236..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9295961467888398, - "ema_span_0": 963.8979774269824, - "ema_span_1": 888.4244758500278, - "enabled": true, - "initial_eprice_ema_dist": -0.0070262833903947195, - "initial_qty_pct": 0.012437039284533226, - "markup_range": 0.004492387751566958, - "min_markup": 0.005634490370496687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02388421916858395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3005133885012596, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.181762167831372, - "ema_span_0": 743.5173284055112, - "ema_span_1": 439.58175610149084, - "enabled": true, - "initial_eprice_ema_dist": -0.000487545314499426, - "initial_qty_pct": 0.01026230553024564, - "markup_range": 0.00708918521007311, - "min_markup": 0.008550730292101953, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028822617879357207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.498284631619438, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/XVSUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/XVSUSDT.json deleted file mode 100644 index 86a22db24..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.533405254770163, - "ema_span_0": 775.4895619172624, - "ema_span_1": 788.4095459087989, - "enabled": true, - "initial_eprice_ema_dist": -0.0018805655282243664, - "initial_qty_pct": 0.01829002700641193, - "markup_range": 0.002801303608066756, - "min_markup": 0.004223758393267011, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03814051832707354, - "rentry_pprice_dist_wallet_exposure_weighting": 2.465630925193031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.41340289592683754, - "ema_span_0": 1287.6992116484275, - "ema_span_1": 1204.8487927002093, - "enabled": true, - "initial_eprice_ema_dist": 0.0025057527537306525, - "initial_qty_pct": 0.011236563405633575, - "markup_range": 0.007468298070626314, - "min_markup": 0.008025746181353448, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036613599724704, - "rentry_pprice_dist_wallet_exposure_weighting": 6.298204345670309, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/YFIUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/YFIUSDT.json deleted file mode 100644 index a52149afc..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8271959941216143, - "ema_span_0": 968.6498885350597, - "ema_span_1": 454.11278723231663, - "enabled": true, - "initial_eprice_ema_dist": -0.008029975503925613, - "initial_qty_pct": 0.006802340215225203, - "markup_range": 0.0006369892250652274, - "min_markup": 0.004133842177261452, - "n_close_orders": 13, - "rentry_pprice_dist": 0.026678628933883772, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14558253349535594, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.291755675842417, - "ema_span_0": 1329.4655439697156, - "ema_span_1": 436.4975807530978, - "enabled": true, - "initial_eprice_ema_dist": -0.004821975710257179, - "initial_qty_pct": 0.009453459260410768, - "markup_range": 0.0016755298534680194, - "min_markup": 0.003995304577275092, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973163740896623, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6152150374534491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/YGGUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/YGGUSDT.json deleted file mode 100644 index 38678f7ea..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7532215524070002, - "ema_span_0": 842.8541881014295, - "ema_span_1": 695.4707848683289, - "enabled": true, - "initial_eprice_ema_dist": -0.006167788999834761, - "initial_qty_pct": 0.016205523696574256, - "markup_range": 0.007517401599495501, - "min_markup": 0.00590330385975649, - "n_close_orders": 4, - "rentry_pprice_dist": 0.026963625790853547, - "rentry_pprice_dist_wallet_exposure_weighting": 4.616414416084344, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.233843659051374, - "ema_span_0": 620.9439410068148, - "ema_span_1": 1141.4467876090778, - "enabled": true, - "initial_eprice_ema_dist": -0.005471578687433655, - "initial_qty_pct": 0.010059669904209461, - "markup_range": 0.0017407994687275836, - "min_markup": 0.009034052144763766, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015280419834390631, - "rentry_pprice_dist_wallet_exposure_weighting": 6.802659146736087, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZECUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ZECUSDT.json deleted file mode 100644 index a94f19ae2..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0128240915133007, - "ema_span_0": 932.3911173270195, - "ema_span_1": 1149.2273127716846, - "enabled": true, - "initial_eprice_ema_dist": -0.002471326520539762, - "initial_qty_pct": 0.01142259511013884, - "markup_range": 0.001708587995320978, - "min_markup": 0.006025430963965282, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03694109047150397, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5481786325224176, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 619.7198720229416, - "ema_span_1": 589.0811863453209, - "enabled": true, - "initial_eprice_ema_dist": -0.007600787462813661, - "initial_qty_pct": 0.015435481119943717, - "markup_range": 0.0022902208757584483, - "min_markup": 0.0023893170495822057, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01778904085180592, - "rentry_pprice_dist_wallet_exposure_weighting": 6.215760731286285, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZENUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ZENUSDT.json deleted file mode 100644 index 3f59cad1f..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4136826514284775, - "ema_span_0": 1172.0526023692364, - "ema_span_1": 1304.5391540972628, - "enabled": true, - "initial_eprice_ema_dist": 0.0027261945878426243, - "initial_qty_pct": 0.0073113858900907165, - "markup_range": 0.0042423033746825465, - "min_markup": 0.003628514344888744, - "n_close_orders": 13, - "rentry_pprice_dist": 0.029826891152041596, - "rentry_pprice_dist_wallet_exposure_weighting": 5.546853144380387, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4207735296813352, - "ema_span_0": 1144.1595135703124, - "ema_span_1": 1310.4010039100344, - "enabled": true, - "initial_eprice_ema_dist": 0.0025899403175953305, - "initial_qty_pct": 0.019674181193930523, - "markup_range": 0.01, - "min_markup": 0.007174137359703636, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03761648993353362, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8639038388518343, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZILUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ZILUSDT.json deleted file mode 100644 index f829eed40..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6959364814853224, - "ema_span_0": 846.2818797069314, - "ema_span_1": 667.5589269514833, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.007698026194857894, - "markup_range": 0.003650842593233969, - "min_markup": 0.0034504183594871412, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03181961660381122, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3262778152875043, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9391831146027663, - "ema_span_0": 1351.429273942314, - "ema_span_1": 1261.4980468931813, - "enabled": true, - "initial_eprice_ema_dist": -0.0012989041306011653, - "initial_qty_pct": 0.017915034342195442, - "markup_range": 0.0010131850901705733, - "min_markup": 0.0035734248110383315, - "n_close_orders": 6, - "rentry_pprice_dist": 0.040593487046618935, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14048722843854514, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZRXUSDT.json b/configs/live/multisymbol/archived/2024-01-06_no_AU/ZRXUSDT.json deleted file mode 100644 index 1536da0b9..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9609135415246004, - "ema_span_0": 1403.5698139372596, - "ema_span_1": 986.2957480481507, - "enabled": true, - "initial_eprice_ema_dist": 0.002947454337247563, - "initial_qty_pct": 0.011597624865224218, - "markup_range": 0.0024845949302958656, - "min_markup": 0.005474116949369086, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029803783296612842, - "rentry_pprice_dist_wallet_exposure_weighting": 4.827121921787006, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4607722603333463, - "ema_span_0": 835.6810448441245, - "ema_span_1": 448.1610335264463, - "enabled": true, - "initial_eprice_ema_dist": 0.0014609710964969146, - "initial_qty_pct": 0.010691410049637978, - "markup_range": 0.007787184431162112, - "min_markup": 0.00986767348824199, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03583198440302255, - "rentry_pprice_dist_wallet_exposure_weighting": 4.287792559306566, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-01-06_no_AU/metrics_no_AU.txt b/configs/live/multisymbol/archived/2024-01-06_no_AU/metrics_no_AU.txt deleted file mode 100644 index a52c88da0..000000000 --- a/configs/live/multisymbol/archived/2024-01-06_no_AU/metrics_no_AU.txt +++ /dev/null @@ -1,470 +0,0 @@ -### single symbol backtest metrics ### - -update: 2024-01-06 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| POWRUSDT | 0.009533 | 0.002722 | 0.01937 | 0.0 | 0.01137 | 0.00906 | 58.95 | 0.03552 | 0.0 | 0.006485 | 0.02649 | 69.88 | 273499999.99 | -| TIAUSDT | 0.009696 | 0.003996 | 0.01728 | 0.0007657 | 0.01113 | 0.008736 | 16.07 | 0.03328 | 0.0 | 0.00604 | 0.0205 | 65.21 | 273499999.99 | -| LOOMUSDT | 0.007526 | 0.00368 | 0.006209 | 0.001268 | 0.01172 | 0.01086 | 57.52 | 0.04557 | 0.0 | 0.00744 | 0.06398 | 85.38 | 273499999.992 | -| STRAXUSDT | 0.006491 | 0.00214 | 0.01369 | 0.002909 | 0.008835 | 0.007347 | 50.98 | 0.03078 | 0.0 | 0.00459 | 0.01212 | 85.88 | 273499999.994 | -| CYBERUSDT | 0.005159 | 0.002234 | 0.01838 | 0.0008544 | 0.008982 | 0.008419 | 52.88 | 0.0424 | 0.0 | 0.01557 | 0.1489 | 136.46 | 273499999.995 | -| MAVUSDT | 0.004542 | 0.001595 | 0.01222 | 0.0008352 | 0.01112 | 0.008889 | 79.83 | 0.0356 | 0.0 | 0.006567 | 0.0263 | 189.46 | 273499999.995 | -| GLMRUSDT | 0.004843 | 0.001877 | 0.02564 | 0.0 | 0.01011 | 0.008261 | 68.27 | 0.03646 | 0.0 | 0.009486 | 0.01603 | 100.92 | 273499999.995 | -| BSVUSDT | 0.004523 | 0.002016 | 0.0245 | 0.0 | 0.008091 | 0.006575 | 53.42 | 0.03551 | 0.0 | 0.006751 | 0.01438 | 76.46 | 273499999.995 | -| GASUSDT | 0.003608 | 0.002648 | 0.0181 | 0.005558 | 0.01105 | 0.01277 | 47.05 | 0.06898 | 0.0 | 0.04993 | 0.1626 | 71.88 | 273499999.996 | -| SEIUSDT | 0.003796 | 0.002417 | 0.07077 | 0.001863 | 0.01217 | 0.01095 | 117.5 | 0.07133 | 0.0 | 0.04119 | 0.08346 | 140.88 | 273499999.996 | -| SLPUSDT | 0.004257 | 0.002026 | 0.01274 | 0.001529 | 0.004392 | 0.003752 | 39.93 | 0.01375 | 0.0 | 0.00348 | 0.01759 | 65.38 | 273499999.996 | -| YGGUSDT | 0.003527 | 0.002505 | 0.06672 | 0.01354 | 0.01176 | 0.01148 | 74.08 | 0.07042 | 0.0 | 0.0566 | 0.07906 | 152.83 | 273499999.996 | -| BIGTIMEUSDT | 0.004121 | 0.004298 | 0.0369 | 0.004982 | 0.009058 | 0.007177 | 70.52 | 0.03084 | 0.0 | 0.01729 | 0.0358 | 84.38 | 273499999.996 | -| BONDUSDT | 0.003604 | 0.003456 | 0.04147 | 0.004195 | 0.009526 | 0.008168 | 44.15 | 0.05102 | 0.0 | 0.03142 | 0.05402 | 81.38 | 273499999.996 | -| ARKMUSDT | 0.003348 | 0.0025 | 0.05789 | 0.03115 | 0.008064 | 0.008809 | 33.6 | 0.05688 | 0.0 | 0.0537 | 0.09429 | 160.88 | 273499999.997 | -| FRONTUSDT | 0.002776 | 0.002322 | 0.05821 | 0.04383 | 0.007492 | 0.01071 | 49.28 | 0.06573 | 0.0 | 0.06187 | 0.08767 | 104.38 | 273499999.997 | -| ARKUSDT | 0.003284 | 0.002074 | 0.06445 | 0.04916 | 0.01352 | 0.01393 | 97.82 | 0.07053 | 0.0 | 0.06589 | 0.07968 | 107.29 | 273499999.997 | -| 1000LUNCUSDT | 0.003041 | 0.002037 | 0.01286 | 0.002841 | 0.007205 | 0.006215 | 118.8 | 0.02669 | 0.0 | 0.005053 | 0.03628 | 482.42 | 273499999.997 | -| RIFUSDT | 0.003201 | 0.002063 | 0.01946 | 0.0003862 | 0.009849 | 0.007666 | 33.73 | 0.03279 | 0.0 | 0.004699 | 0.01179 | 75.46 | 273499999.997 | -| WAXPUSDT | 0.00271 | 0.001163 | 0.01014 | 0.0 | 0.008785 | 0.007423 | 50.78 | 0.0348 | 0.0 | 0.004367 | 0.009841 | 78.38 | 273499999.997 | -| WLDUSDT | 0.003155 | 0.002303 | 0.05662 | 0.01005 | 0.008175 | 0.00679 | 39.17 | 0.03741 | 0.0 | 0.03361 | 0.04469 | 164.46 | 273499999.997 | -| HIFIUSDT | 0.00259 | 0.001398 | 0.03693 | 0.0002642 | 0.01153 | 0.0104 | 75.07 | 0.06344 | 0.0 | 0.0297 | 0.06421 | 110.38 | 273499999.997 | -| RNDRUSDT | 0.002683 | 0.001945 | 0.03155 | 0.01168 | 0.009498 | 0.008983 | 79.93 | 0.05692 | 0.0 | 0.05015 | 0.09488 | 335.88 | 273499999.997 | -| BNTUSDT | 0.001594 | 0.001783 | 0.04413 | 0.01475 | 0.007074 | 0.005971 | 69.35 | 0.03419 | 0.0 | 0.03191 | 0.04992 | 147.46 | 273499999.998 | -| XVGUSDT | 0.001853 | 0.001767 | 0.0676 | 0.02463 | 0.008863 | 0.008062 | 52.03 | 0.05004 | 0.0 | 0.0462 | 0.07493 | 183.46 | 273499999.998 | -| MINAUSDT | 0.001837 | 0.001263 | 0.02219 | 0.006598 | 0.006785 | 0.007236 | 52.27 | 0.03838 | 0.0 | 0.02763 | 0.1142 | 331.5 | 273499999.998 | -| IDEXUSDT | 0.001771 | 0.001185 | 0.06431 | 0.04771 | 0.009221 | 0.01109 | 110.3 | 0.1089 | 0.0 | 0.09846 | 0.1213 | 246.46 | 273499999.998 | -| TRBUSDT | 0.002268 | 0.00151 | 0.03244 | 0.01553 | 0.01529 | 0.01475 | 115.3 | 0.07604 | 0.0 | 0.06266 | 0.1943 | 1218.67 | 273499999.998 | -| FETUSDT | 0.001706 | 0.001189 | 0.01953 | 0.004852 | 0.007703 | 0.006572 | 43.45 | 0.02987 | 0.0 | 0.01578 | 0.05137 | 352.88 | 273499999.998 | -| AMBUSDT | 0.001526 | 0.001443 | 0.08281 | 0.02592 | 0.01541 | 0.01685 | 75.27 | 0.106 | 0.0 | 0.09425 | 0.1864 | 280.46 | 273499999.998 | -| HFTUSDT | 0.001629 | 0.0009068 | 0.049 | 0.02194 | 0.01612 | 0.01326 | 105.3 | 0.06787 | 0.0 | 0.06098 | 0.09234 | 273.46 | 273499999.998 | -| DODOXUSDT | 0.002036 | 0.001548 | 0.06083 | 0.02635 | 0.007732 | 0.008506 | 39.53 | 0.06238 | 0.0 | 0.05696 | 0.08138 | 149.46 | 273499999.998 | -| BICOUSDT | 0.002383 | 0.001004 | 0.00456 | 0.0 | 0.005142 | 0.004272 | 41.18 | 0.01756 | 0.0 | 0.0006087 | 0.00253 | 98.46 | 273499999.998 | -| LDOUSDT | 0.001801 | 0.001549 | 0.06292 | 0.004463 | 0.01233 | 0.01152 | 96.35 | 0.07379 | 0.0 | 0.04581 | 0.2374 | 469.46 | 273499999.998 | -| OXTUSDT | 0.002367 | 0.00132 | 0.0532 | 0.02354 | 0.01032 | 0.01065 | 69.12 | 0.06936 | 0.0 | 0.05701 | 0.07904 | 146.46 | 273499999.998 | -| PENDLEUSDT | 0.001711 | 0.00124 | 0.04772 | 0.0007249 | 0.009585 | 0.008269 | 74.72 | 0.04376 | 0.0 | 0.01706 | 0.05007 | 160.88 | 273499999.998 | -| KEYUSDT | 0.001871 | 0.001565 | 0.02396 | 0.006855 | 0.00783 | 0.007973 | 95.2 | 0.04933 | 0.0 | 0.03278 | 0.157 | 225.46 | 273499999.998 | -| BLURUSDT | 0.002269 | 0.001258 | 0.02491 | 0.005002 | 0.01067 | 0.008433 | 93.37 | 0.03621 | 0.0 | 0.01667 | 0.08913 | 251.46 | 273499999.998 | -| INJUSDT | 0.00195 | 0.001456 | 0.04939 | 0.007313 | 0.0118 | 0.008897 | 112.7 | 0.04103 | 0.0 | 0.02589 | 0.0522 | 505.88 | 273499999.998 | -| RADUSDT | 0.001557 | 0.001062 | 0.04729 | 0.004261 | 0.008892 | 0.007512 | 92.83 | 0.04923 | 0.0 | 0.03711 | 0.08989 | 239.46 | 273499999.998 | -| COMBOUSDT | 0.001994 | 0.001551 | 0.05361 | 0.02807 | 0.01035 | 0.009699 | 76.68 | 0.06819 | 0.0 | 0.0627 | 0.1134 | 216.46 | 273499999.998 | -| ORBSUSDT | 0.002248 | 0.002281 | 0.0595 | 0.05369 | 0.007209 | 0.009886 | 67.62 | 0.06166 | 0.0 | 0.05757 | 0.08106 | 79.71 | 273499999.998 | -| SUIUSDT | 0.002372 | 0.001299 | 0.03462 | 0.01138 | 0.01105 | 0.01059 | 94.0 | 0.08966 | 0.0 | 0.08205 | 0.1469 | 246.29 | 273499999.998 | -| STXUSDT | 0.002261 | 0.001006 | 0.02601 | 0.002599 | 0.01286 | 0.01 | 108.5 | 0.04806 | 0.0 | 0.02328 | 0.07455 | 317.38 | 273499999.998 | -| ARBUSDT | 0.002382 | 0.001434 | 0.07001 | 0.01782 | 0.009397 | 0.009391 | 77.72 | 0.0781 | 0.0 | 0.07144 | 0.1172 | 287.33 | 273499999.998 | -| LQTYUSDT | 0.001529 | 0.001487 | 0.03372 | 0.0161 | 0.01189 | 0.01043 | 76.43 | 0.06639 | 0.0 | 0.05914 | 0.1326 | 300.46 | 273499999.998 | -| ASTRUSDT | 0.001843 | 0.0009372 | 0.02026 | 0.002244 | 0.008463 | 0.006973 | 40.7 | 0.03009 | 0.0 | 0.0126 | 0.09178 | 324.88 | 273499999.998 | -| RDNTUSDT | 0.002242 | 0.001395 | 0.0416 | 0.02144 | 0.00911 | 0.01211 | 68.83 | 0.08665 | 0.0 | 0.07882 | 0.1494 | 274.46 | 273499999.998 | -| NMRUSDT | 0.001884 | 0.001076 | 0.02489 | 0.0005088 | 0.008361 | 0.006656 | 66.07 | 0.02941 | 0.0 | 0.005489 | 0.02383 | 196.46 | 273499999.998 | -| ICPUSDT | 0.001981 | 0.001337 | 0.04596 | 0.01167 | 0.007602 | 0.006542 | 110.3 | 0.03605 | 0.0 | 0.02949 | 0.07656 | 464.88 | 273499999.998 | -| STPTUSDT | 0.002121 | 0.0009593 | 0.01378 | 0.0 | 0.006267 | 0.005489 | 38.13 | 0.02281 | 0.0 | 0.004851 | 0.008382 | 78.38 | 273499999.998 | -| MDTUSDT | 0.001523 | 0.0007435 | 0.02848 | 0.01125 | 0.01395 | 0.01086 | 106.2 | 0.04336 | 0.0 | 0.0215 | 0.04528 | 188.46 | 273499999.998 | -| 1000PEPEUSDT | 0.002442 | 0.002214 | 0.03819 | 0.01289 | 0.009728 | 0.008956 | 78.82 | 0.06598 | 0.0 | 0.06184 | 0.1061 | 244.29 | 273499999.998 | -| CRVUSDT | 0.0007568 | 0.001674 | 0.04536 | 0.01795 | 0.01385 | 0.01611 | 97.32 | 0.1048 | 0.0 | 0.09303 | 0.243 | 1220.67 | 273499999.999 | -| XEMUSDT | 0.000629 | 0.001227 | 0.03339 | 0.01654 | 0.01113 | 0.01297 | 112.5 | 0.07729 | 0.0 | 0.07031 | 0.1646 | 1037.67 | 273499999.999 | -| AAVEUSDT | 0.001193 | 0.002532 | 0.04769 | 0.02572 | 0.009874 | 0.01313 | 98.6 | 0.08578 | 0.0 | 0.07722 | 0.2257 | 1175.67 | 273499999.999 | -| EGLDUSDT | 0.0009057 | 0.001681 | 0.04574 | 0.01417 | 0.01038 | 0.0143 | 95.42 | 0.1008 | 0.0 | 0.08898 | 0.2392 | 1207.67 | 273499999.999 | -| ALPHAUSDT | 0.001351 | 0.002414 | 0.04641 | 0.01584 | 0.01024 | 0.01037 | 93.42 | 0.05887 | 0.0 | 0.0456 | 0.1402 | 1136.67 | 273499999.999 | -| CTSIUSDT | 0.0009841 | 0.001155 | 0.04043 | 0.01696 | 0.009512 | 0.01094 | 102.0 | 0.06651 | 0.0 | 0.06152 | 0.151 | 800.83 | 273499999.999 | -| KNCUSDT | 0.000582 | 0.0006205 | 0.01018 | 0.003571 | 0.01502 | 0.01214 | 119.0 | 0.04822 | 0.0 | 0.01429 | 0.07852 | 1291.62 | 273499999.999 | -| ETHUSDT | 0.0005283 | 0.001565 | 0.03699 | 0.02349 | 0.005821 | 0.009767 | 117.0 | 0.06009 | 0.0 | 0.0565 | 0.1237 | 1464.96 | 273499999.999 | -| LRCUSDT | 0.001114 | 0.001841 | 0.04926 | 0.01192 | 0.01044 | 0.01038 | 114.0 | 0.06352 | 0.0 | 0.05554 | 0.2152 | 1172.67 | 273499999.999 | -| OMGUSDT | 0.0006451 | 0.001083 | 0.03129 | 0.007906 | 0.01197 | 0.009829 | 109.8 | 0.04551 | 0.0 | 0.0313 | 0.07568 | 1281.58 | 273499999.999 | -| ACHUSDT | 0.001109 | 0.001091 | 0.03048 | 0.01598 | 0.009042 | 0.009292 | 55.8 | 0.06192 | 0.0 | 0.05626 | 0.1191 | 316.38 | 273499999.999 | -| QNTUSDT | 0.0006144 | 0.0005321 | 0.02151 | 0.002272 | 0.007938 | 0.008049 | 101.6 | 0.05582 | 0.0 | 0.023 | 0.06489 | 441.88 | 273499999.999 | -| UMAUSDT | 0.001473 | 0.001017 | 0.03476 | 0.003619 | 0.007448 | 0.006475 | 98.22 | 0.03927 | 0.0 | 0.027 | 0.106 | 239.46 | 273499999.999 | -| RSRUSDT | 0.0006225 | 0.001203 | 0.03286 | 0.0042 | 0.01566 | 0.01213 | 105.9 | 0.05041 | 0.0 | 0.02622 | 0.1508 | 1172.67 | 273499999.999 | -| MANAUSDT | 0.0008901 | 0.001389 | 0.02134 | 0.01078 | 0.009196 | 0.009982 | 84.02 | 0.05955 | 0.0 | 0.05179 | 0.2476 | 1025.67 | 273499999.999 | -| ROSEUSDT | 0.0007694 | 0.001043 | 0.02273 | 0.006146 | 0.007827 | 0.007517 | 75.02 | 0.04054 | 0.0 | 0.02673 | 0.1075 | 734.83 | 273499999.999 | -| FTMUSDT | 0.0007878 | 0.001636 | 0.04784 | 0.01019 | 0.01347 | 0.01513 | 82.8 | 0.09479 | 0.0 | 0.08154 | 0.227 | 1197.67 | 273499999.999 | -| HBARUSDT | 0.001153 | 0.001768 | 0.07004 | 0.01186 | 0.0115 | 0.01111 | 116.7 | 0.06232 | 0.0 | 0.05204 | 0.1485 | 1023.67 | 273499999.999 | -| BANDUSDT | 0.0007893 | 0.001358 | 0.04597 | 0.01272 | 0.01643 | 0.016 | 105.4 | 0.09356 | 0.0 | 0.08364 | 0.2419 | 1254.67 | 273499999.999 | -| AGIXUSDT | 0.001066 | 0.001061 | 0.04196 | 0.02169 | 0.009009 | 0.01108 | 76.37 | 0.07882 | 0.0 | 0.07289 | 0.09853 | 322.38 | 273499999.999 | -| FXSUSDT | 0.0008336 | 0.0005771 | 0.01816 | 0.00306 | 0.005581 | 0.004768 | 38.0 | 0.02439 | 0.0 | 0.01569 | 0.06737 | 349.83 | 273499999.999 | -| AUDIOUSDT | 0.0008916 | 0.0007696 | 0.02263 | 0.012 | 0.01143 | 0.009386 | 92.32 | 0.04016 | 0.0 | 0.02898 | 0.07001 | 868.83 | 273499999.999 | -| ETCUSDT | 0.0008452 | 0.001417 | 0.02438 | 0.01143 | 0.006106 | 0.005952 | 70.58 | 0.03284 | 0.0 | 0.03011 | 0.1294 | 1449.62 | 273499999.999 | -| DEFIUSDT | 0.0006572 | 0.001294 | 0.05021 | 0.02195 | 0.01242 | 0.01579 | 119.3 | 0.09838 | 0.0 | 0.08833 | 0.2458 | 1224.67 | 273499999.999 | -| ENJUSDT | 0.000831 | 0.001569 | 0.04286 | 0.01078 | 0.01195 | 0.01198 | 116.0 | 0.06419 | 0.0 | 0.04377 | 0.237 | 1192.67 | 273499999.999 | -| SNXUSDT | 0.001332 | 0.001689 | 0.06101 | 0.02334 | 0.01663 | 0.01628 | 110.2 | 0.08497 | 0.0 | 0.06351 | 0.2473 | 1238.67 | 273499999.999 | -| IOSTUSDT | 0.0006464 | 0.001268 | 0.04542 | 0.01304 | 0.01368 | 0.01537 | 119.4 | 0.0914 | 0.0 | 0.0723 | 0.2128 | 1413.62 | 273499999.999 | -| MTLUSDT | 0.001148 | 0.001059 | 0.02628 | 0.008488 | 0.01282 | 0.01197 | 116.5 | 0.05945 | 0.0 | 0.03769 | 0.2276 | 1009.67 | 273499999.999 | -| HOTUSDT | 0.001378 | 0.002583 | 0.04217 | 0.02324 | 0.008397 | 0.00996 | 103.5 | 0.06852 | 0.0 | 0.0632 | 0.1834 | 1010.67 | 273499999.999 | -| 1000SHIBUSDT | 0.001329 | 0.002312 | 0.01446 | 0.008357 | 0.005494 | 0.009775 | 71.3 | 0.06085 | 0.0 | 0.05019 | 0.2234 | 969.25 | 273499999.999 | -| ZENUSDT | 0.0008609 | 0.001885 | 0.03166 | 0.01314 | 0.01044 | 0.01021 | 82.52 | 0.05226 | 0.0 | 0.03657 | 0.09681 | 1136.67 | 273499999.999 | -| SPELLUSDT | 0.0009818 | 0.0008269 | 0.04841 | 0.009002 | 0.01023 | 0.008231 | 104.1 | 0.04068 | 0.0 | 0.03119 | 0.08866 | 485.46 | 273499999.999 | -| OGNUSDT | 0.001104 | 0.001788 | 0.03067 | 0.009575 | 0.01461 | 0.01373 | 113.4 | 0.07084 | 0.0 | 0.03308 | 0.09026 | 1008.67 | 273499999.999 | -| JASMYUSDT | 0.0006471 | 0.0005822 | 0.01468 | 0.003727 | 0.01116 | 0.009096 | 95.45 | 0.03914 | 0.0 | 0.01827 | 0.07923 | 624.83 | 273499999.999 | -| SUSHIUSDT | 0.0009717 | 0.001576 | 0.04017 | 0.008311 | 0.01701 | 0.01673 | 113.0 | 0.08427 | 0.0 | 0.05157 | 0.2062 | 1217.67 | 273499999.999 | -| RENUSDT | 0.0006532 | 0.0009456 | 0.03991 | 0.002729 | 0.01347 | 0.01695 | 110.8 | 0.1115 | 0.0 | 0.0755 | 0.243 | 1178.67 | 273499999.999 | -| CELOUSDT | 0.0007276 | 0.0007034 | 0.02297 | 0.004263 | 0.01063 | 0.00912 | 72.55 | 0.04279 | 0.0 | 0.02133 | 0.1319 | 829.83 | 273499999.999 | -| NEARUSDT | 0.0008857 | 0.001393 | 0.03374 | 0.01864 | 0.007699 | 0.01599 | 81.42 | 0.09099 | 0.0 | 0.0807 | 0.234 | 1176.62 | 273499999.999 | -| APEUSDT | 0.0006638 | 0.0007738 | 0.02133 | 0.0005316 | 0.01026 | 0.008409 | 115.6 | 0.03851 | 0.0 | 0.01344 | 0.08761 | 658.33 | 273499999.999 | -| EDUUSDT | 0.001156 | 0.001017 | 0.02534 | 0.001619 | 0.01089 | 0.009675 | 115.8 | 0.04924 | 0.0 | 0.01207 | 0.04985 | 249.46 | 273499999.999 | -| API3USDT | 0.0008458 | 0.0007706 | 0.02598 | 0.007375 | 0.01011 | 0.009468 | 94.87 | 0.04835 | 0.0 | 0.03048 | 0.08485 | 681.83 | 273499999.999 | -| GRTUSDT | 0.0009917 | 0.001946 | 0.0439 | 0.01388 | 0.01303 | 0.0146 | 114.2 | 0.08525 | 0.0 | 0.07087 | 0.2187 | 1110.67 | 273499999.999 | -| BELUSDT | 0.0007671 | 0.001605 | 0.02918 | 0.009142 | 0.01565 | 0.01395 | 118.5 | 0.07778 | 0.0 | 0.06539 | 0.1754 | 1141.67 | 273499999.999 | -| CELRUSDT | 0.00112 | 0.001991 | 0.07349 | 0.0192 | 0.01469 | 0.0168 | 104.2 | 0.1075 | 0.0 | 0.09122 | 0.2476 | 1011.67 | 273499999.999 | -| APTUSDT | 0.0008294 | 0.0009797 | 0.02531 | 0.008401 | 0.008298 | 0.01053 | 60.43 | 0.06614 | 0.0 | 0.04846 | 0.1415 | 442.88 | 273499999.999 | -| LUNA2USDT | 0.0006649 | 0.0004578 | 0.01239 | 0.0001211 | 0.01086 | 0.01034 | 89.25 | 0.05589 | 0.0 | 0.02286 | 0.2237 | 481.83 | 273499999.999 | -| DENTUSDT | 0.0007694 | 0.001647 | 0.03209 | 0.008285 | 0.01028 | 0.01051 | 105.6 | 0.06423 | 0.0 | 0.04627 | 0.1072 | 1016.79 | 273499999.999 | -| BALUSDT | 0.0006832 | 0.0006868 | 0.02786 | 0.008707 | 0.01364 | 0.01165 | 119.8 | 0.05879 | 0.0 | 0.049 | 0.1975 | 1220.67 | 273499999.999 | -| YFIUSDT | 0.001347 | 0.002642 | 0.02251 | 0.01026 | 0.008379 | 0.01099 | 105.2 | 0.05908 | 0.0 | 0.04732 | 0.1657 | 1221.67 | 273499999.999 | -| ATAUSDT | 0.0005318 | 0.000744 | 0.02943 | 0.008296 | 0.01146 | 0.01036 | 98.67 | 0.05743 | 0.0 | 0.04152 | 0.08699 | 856.83 | 273499999.999 | -| STGUSDT | 0.0006262 | 0.0008192 | 0.02512 | 0.001307 | 0.01008 | 0.008668 | 117.9 | 0.04049 | 0.0 | 0.011 | 0.02782 | 497.46 | 273499999.999 | -| OCEANUSDT | 0.0009534 | 0.001542 | 0.04038 | 0.01225 | 0.01332 | 0.01283 | 102.4 | 0.06902 | 0.0 | 0.05834 | 0.1753 | 1156.67 | 273499999.999 | -| BLZUSDT | 0.001037 | 0.001318 | 0.02779 | 0.01049 | 0.01371 | 0.01386 | 111.9 | 0.07155 | 0.0 | 0.0551 | 0.2372 | 1204.67 | 273499999.999 | -| SANDUSDT | 0.0008764 | 0.001877 | 0.03242 | 0.009174 | 0.008015 | 0.009484 | 86.05 | 0.05985 | 0.0 | 0.05296 | 0.1755 | 1073.67 | 273499999.999 | -| SFPUSDT | 0.0008479 | 0.001484 | 0.04122 | 0.01807 | 0.01394 | 0.01425 | 98.75 | 0.07945 | 0.0 | 0.07006 | 0.1649 | 1044.67 | 273499999.999 | -| ONEUSDT | 0.0006648 | 0.001541 | 0.04307 | 0.01135 | 0.0127 | 0.0113 | 101.6 | 0.06292 | 0.0 | 0.0521 | 0.1417 | 1022.67 | 273499999.999 | -| ENSUSDT | 0.0007863 | 0.001138 | 0.06472 | 0.006615 | 0.01185 | 0.01231 | 98.65 | 0.08655 | 0.0 | 0.07267 | 0.1405 | 765.83 | 273499999.999 | -| LINAUSDT | 0.0007323 | 0.001199 | 0.05097 | 0.01532 | 0.01904 | 0.01972 | 115.8 | 0.1168 | 0.0 | 0.09079 | 0.2083 | 1021.67 | 273499999.999 | -| PHBUSDT | 0.001258 | 0.0008586 | 0.05305 | 0.01179 | 0.01629 | 0.01317 | 99.48 | 0.06426 | 0.0 | 0.05679 | 0.1119 | 322.38 | 273499999.999 | -| KAVAUSDT | 0.0005803 | 0.0009863 | 0.03626 | 0.01666 | 0.01286 | 0.01472 | 119.8 | 0.09313 | 0.0 | 0.07988 | 0.2317 | 1255.67 | 273499999.999 | -| 1000FLOKIUSDT | 0.001242 | 0.0008841 | 0.0481 | 0.00899 | 0.01023 | 0.009214 | 74.9 | 0.07144 | 0.0 | 0.0667 | 0.1221 | 243.29 | 273499999.999 | -| DOGEUSDT | 0.00105 | 0.002493 | 0.05482 | 0.008764 | 0.006912 | 0.008843 | 119.5 | 0.05265 | 0.0 | 0.04253 | 0.2261 | 1273.58 | 273499999.999 | -| IMXUSDT | 0.0009385 | 0.001063 | 0.03885 | 0.01177 | 0.01036 | 0.008655 | 102.8 | 0.04762 | 0.0 | 0.04031 | 0.09516 | 692.83 | 273499999.999 | -| 1INCHUSDT | 0.0008316 | 0.0009187 | 0.01924 | 0.006051 | 0.0115 | 0.009755 | 103.6 | 0.04359 | 0.0 | 0.02772 | 0.2377 | 1104.54 | 273499999.999 | -| XLMUSDT | 0.0006341 | 0.001947 | 0.02624 | 0.006508 | 0.008323 | 0.008838 | 109.2 | 0.04885 | 0.0 | 0.03114 | 0.1272 | 1445.62 | 273499999.999 | -| JOEUSDT | 0.001107 | 0.0008389 | 0.05109 | 0.008939 | 0.01695 | 0.013 | 109.2 | 0.06699 | 0.0 | 0.06135 | 0.09254 | 281.46 | 273499999.999 | -| POLYXUSDT | 0.00128 | 0.001704 | 0.02133 | 0.0 | 0.007428 | 0.006116 | 51.08 | 0.03082 | 0.0 | 0.005678 | 0.03548 | 71.88 | 273499999.999 | -| LITUSDT | 0.0009652 | 0.0009503 | 0.01425 | 0.003338 | 0.01388 | 0.01184 | 106.9 | 0.0513 | 0.0 | 0.01999 | 0.1423 | 1049.67 | 273499999.999 | -| MATICUSDT | 0.00148 | 0.003735 | 0.05679 | 0.03112 | 0.008793 | 0.01236 | 109.7 | 0.09176 | 0.0 | 0.08264 | 0.2164 | 1169.67 | 273499999.999 | -| BLUEBIRDUSDT | 0.0006081 | 0.0003457 | 0.02506 | 0.01264 | 0.005566 | 0.004974 | 79.53 | 0.02751 | 0.0 | 0.02563 | 0.06212 | 428.46 | 273499999.999 | -| RLCUSDT | 0.001177 | 0.002711 | 0.05168 | 0.02546 | 0.0128 | 0.01649 | 114.3 | 0.109 | 0.0 | 0.09725 | 0.212 | 1252.67 | 273499999.999 | -| VETUSDT | 0.00075 | 0.001811 | 0.04087 | 0.0138 | 0.005903 | 0.007866 | 98.68 | 0.05208 | 0.0 | 0.0452 | 0.163 | 1420.62 | 273499999.999 | -| XVSUSDT | 0.001249 | 0.0008493 | 0.06468 | 0.02897 | 0.014 | 0.01375 | 104.0 | 0.08661 | 0.0 | 0.0783 | 0.1359 | 266.88 | 273499999.999 | -| SXPUSDT | 0.0007339 | 0.002423 | 0.0358 | 0.01501 | 0.01064 | 0.01157 | 112.8 | 0.06254 | 0.0 | 0.05606 | 0.2042 | 1262.58 | 273499999.999 | -| IDUSDT | 0.0006882 | 0.0005524 | 0.02221 | 0.003132 | 0.01061 | 0.008583 | 50.82 | 0.03983 | 0.0 | 0.01449 | 0.05857 | 287.38 | 273499999.999 | -| AGLDUSDT | 0.001048 | 0.0008113 | 0.06844 | 0.02864 | 0.0176 | 0.01345 | 86.58 | 0.07159 | 0.0 | 0.06722 | 0.08337 | 159.88 | 273499999.999 | -| ANKRUSDT | 0.0009106 | 0.001484 | 0.02088 | 0.007493 | 0.007859 | 0.007973 | 93.6 | 0.03874 | 0.0 | 0.02694 | 0.2346 | 1072.67 | 273499999.999 | -| CHZUSDT | 0.0006456 | 0.001368 | 0.009136 | 0.0009936 | 0.01029 | 0.008569 | 100.5 | 0.03786 | 0.0 | 0.0101 | 0.1206 | 1077.67 | 273499999.999 | -| GALAUSDT | 0.000783 | 0.001109 | 0.02178 | 0.006805 | 0.00951 | 0.007823 | 76.28 | 0.03508 | 0.0 | 0.01945 | 0.08729 | 838.83 | 273499999.999 | -| MAGICUSDT | 0.0007328 | 0.0006792 | 0.04373 | 0.0 | 0.01655 | 0.01512 | 107.7 | 0.0801 | 0.0 | 0.04425 | 0.06106 | 344.83 | 273499999.999 | -| RUNEUSDT | 0.001022 | 0.002264 | 0.05472 | 0.02105 | 0.009912 | 0.01555 | 113.8 | 0.1114 | 0.0 | 0.0987 | 0.2217 | 1217.67 | 273499999.999 | -| CFXUSDT | 0.0006901 | 0.000747 | 0.03948 | 0.02396 | 0.01443 | 0.01317 | 89.57 | 0.07219 | 0.0 | 0.06518 | 0.1013 | 318.38 | 273499999.999 | -| DOTUSDT | 0.001057 | 0.002011 | 0.05854 | 0.01451 | 0.008438 | 0.009786 | 103.0 | 0.05976 | 0.0 | 0.05332 | 0.244 | 1230.67 | 273499999.999 | -| ALGOUSDT | 0.001118 | 0.001787 | 0.0303 | 0.01505 | 0.009171 | 0.01028 | 96.97 | 0.05522 | 0.0 | 0.04793 | 0.2348 | 1297.58 | 273499999.999 | -| COTIUSDT | 0.000851 | 0.001776 | 0.0617 | 0.01938 | 0.01413 | 0.01589 | 109.2 | 0.1041 | 0.0 | 0.09244 | 0.2375 | 1030.67 | 273499999.999 | -| IOTAUSDT | 0.0005706 | 0.001355 | 0.04504 | 0.005989 | 0.01194 | 0.01421 | 105.3 | 0.08789 | 0.0 | 0.06677 | 0.183 | 1422.62 | 273499999.999 | -| BCHUSDT | 0.0005825 | 0.001488 | 0.01838 | 0.0003072 | 0.01126 | 0.008963 | 94.93 | 0.03656 | 0.0 | 0.005939 | 0.02315 | 1464.96 | 273499999.999 | -| RVNUSDT | 0.0006755 | 0.001341 | 0.05559 | 0.005949 | 0.01155 | 0.01488 | 109.2 | 0.1047 | 0.0 | 0.08112 | 0.2236 | 1045.67 | 273499999.999 | -| ICXUSDT | 0.0006155 | 0.001086 | 0.04185 | 0.01737 | 0.01042 | 0.01336 | 116.5 | 0.08083 | 0.0 | 0.07125 | 0.2238 | 1206.67 | 273499999.999 | -| CVXUSDT | 0.001213 | 0.0007943 | 0.03681 | 0.01809 | 0.009244 | 0.007695 | 107.7 | 0.03514 | 0.0 | 0.03046 | 0.0654 | 469.46 | 273499999.999 | -| CTKUSDT | 0.0007652 | 0.002017 | 0.05784 | 0.005362 | 0.01154 | 0.01304 | 111.5 | 0.07608 | 0.0 | 0.05984 | 0.2037 | 1140.67 | 273499999.999 | -| GMXUSDT | 0.0009479 | 0.000751 | 0.1023 | 0.02876 | 0.01415 | 0.01191 | 104.5 | 0.05594 | 0.0 | 0.04604 | 0.08887 | 321.38 | 273499999.999 | -| MKRUSDT | 0.001228 | 0.002121 | 0.07637 | 0.01576 | 0.011 | 0.01292 | 103.5 | 0.08158 | 0.0 | 0.06873 | 0.2057 | 1239.67 | 273499999.999 | -| XTZUSDT | 0.0005006 | 0.001233 | 0.02961 | 0.005538 | 0.01401 | 0.01225 | 116.7 | 0.05429 | 0.0 | 0.03171 | 0.1525 | 1428.62 | 273499999.999 | -| SOLUSDT | 0.000886 | 0.001643 | 0.0219 | 0.01433 | 0.007067 | 0.01054 | 109.3 | 0.0714 | 0.0 | 0.0653 | 0.1653 | 1207.67 | 273499999.999 | -| OPUSDT | 0.001496 | 0.001391 | 0.02532 | 0.01236 | 0.005815 | 0.007124 | 73.0 | 0.04398 | 0.0 | 0.04082 | 0.07973 | 582.38 | 273499999.999 | -| CHRUSDT | 0.000606 | 0.001332 | 0.04918 | 0.01244 | 0.01237 | 0.01379 | 105.3 | 0.08691 | 0.0 | 0.07192 | 0.2172 | 1028.67 | 273499999.999 | -| THETAUSDT | 0.0009347 | 0.002331 | 0.05681 | 0.01509 | 0.01149 | 0.01297 | 107.5 | 0.08302 | 0.0 | 0.07264 | 0.2325 | 1317.62 | 273499999.999 | -| GMTUSDT | 0.000616 | 0.0004789 | 0.02176 | 0.006469 | 0.01089 | 0.009497 | 100.3 | 0.04936 | 0.0 | 0.02841 | 0.1049 | 660.79 | 273499999.999 | -| SKLUSDT | 0.001035 | 0.001844 | 0.06448 | 0.02023 | 0.01584 | 0.01504 | 109.6 | 0.08347 | 0.0 | 0.06936 | 0.2397 | 1121.67 | 273499999.999 | -| SSVUSDT | 0.00113 | 0.0008084 | 0.04616 | 0.01277 | 0.01226 | 0.01417 | 110.2 | 0.1002 | 0.0 | 0.08512 | 0.1214 | 314.46 | 273499999.999 | -| ARUSDT | 0.0006585 | 0.0009384 | 0.03954 | 0.01228 | 0.01285 | 0.01047 | 87.52 | 0.05149 | 0.0 | 0.03947 | 0.1213 | 828.83 | 273499999.999 | -| DYDXUSDT | 0.0005691 | 0.0007839 | 0.01083 | 0.0009299 | 0.0113 | 0.008845 | 63.83 | 0.03525 | 0.0 | 0.005403 | 0.07235 | 846.83 | 273499999.999 | -| FILUSDT | 0.0008288 | 0.001358 | 0.04056 | 0.008678 | 0.0075 | 0.01114 | 92.67 | 0.07681 | 0.0 | 0.06613 | 0.1629 | 1175.71 | 273499999.999 | -| HOOKUSDT | 0.001405 | 0.00125 | 0.08509 | 0.01778 | 0.01438 | 0.01661 | 89.18 | 0.09942 | 0.0 | 0.07873 | 0.1247 | 346.83 | 273499999.999 | -| ATOMUSDT | 0.0006796 | 0.001481 | 0.02549 | 0.006999 | 0.008601 | 0.008968 | 118.5 | 0.04811 | 0.0 | 0.03211 | 0.1893 | 1427.46 | 273499999.999 | -| NKNUSDT | 0.001203 | 0.002164 | 0.08358 | 0.02356 | 0.01219 | 0.01349 | 108.7 | 0.07773 | 0.0 | 0.06494 | 0.2253 | 1000.67 | 273499999.999 | -| ALICEUSDT | 0.001145 | 0.00218 | 0.0462 | 0.01865 | 0.01124 | 0.01138 | 109.8 | 0.07918 | 0.0 | 0.07246 | 0.232 | 1024.83 | 273499999.999 | -| UNFIUSDT | 0.001004 | 0.000946 | 0.02222 | 0.007188 | 0.01659 | 0.01467 | 116.6 | 0.06849 | 0.0 | 0.02786 | 0.2197 | 1049.67 | 273499999.999 | -| CKBUSDT | 0.001264 | 0.001064 | 0.06388 | 0.007675 | 0.01115 | 0.00979 | 91.5 | 0.0651 | 0.0 | 0.03598 | 0.07431 | 310.46 | 273499999.999 | -| STMXUSDT | 0.0008138 | 0.001187 | 0.06006 | 0.02032 | 0.01741 | 0.01862 | 117.9 | 0.1047 | 0.0 | 0.09161 | 0.2156 | 1018.67 | 273499999.999 | -| ZRXUSDT | 0.0008577 | 0.001201 | 0.03246 | 0.0129 | 0.01085 | 0.01256 | 78.67 | 0.06404 | 0.0 | 0.04821 | 0.2401 | 1289.58 | 273499999.999 | -| ZILUSDT | 0.0006499 | 0.001048 | 0.02461 | 0.0096 | 0.0104 | 0.01149 | 117.6 | 0.06029 | 0.0 | 0.04518 | 0.1639 | 1295.58 | 273499999.999 | -| REEFUSDT | 0.001017 | 0.001523 | 0.02942 | 0.007439 | 0.01061 | 0.01046 | 108.2 | 0.06119 | 0.0 | 0.04072 | 0.2276 | 1045.67 | 273499999.999 | -| TRUUSDT | 0.001252 | 0.0007876 | 0.03359 | 0.02314 | 0.01382 | 0.01358 | 80.17 | 0.08186 | 0.0 | 0.07558 | 0.1208 | 303.46 | 273499999.999 | -| LINKUSDT | 0.001106 | 0.002179 | 0.06997 | 0.01867 | 0.01031 | 0.01608 | 109.5 | 0.09995 | 0.0 | 0.08653 | 0.2436 | 1448.62 | 273499999.999 | -| KSMUSDT | 0.0007824 | 0.001459 | 0.04778 | 0.02034 | 0.01184 | 0.01177 | 92.53 | 0.06958 | 0.0 | 0.06448 | 0.2159 | 1177.67 | 273499999.999 | -| XRPUSDT | 0.001021 | 0.001897 | 0.025 | 0.006311 | 0.008103 | 0.007846 | 112.6 | 0.04366 | 0.0 | 0.02859 | 0.1906 | 1459.62 | 273499999.999 | -| ZECUSDT | 0.0006066 | 0.0009386 | 0.02837 | 0.008723 | 0.01242 | 0.01175 | 106.2 | 0.05948 | 0.0 | 0.04443 | 0.2291 | 1429.62 | 273499999.999 | -| TLMUSDT | 0.0007722 | 0.0005011 | 0.03066 | 0.0 | 0.01202 | 0.01039 | 106.9 | 0.06271 | 0.0 | 0.03343 | 0.05052 | 280.46 | 273499999.999 | -| PERPUSDT | 0.0005169 | 0.0002906 | 0.009335 | 6.84e-05 | 0.0132 | 0.0103 | 81.6 | 0.0412 | 0.0 | 0.0045 | 0.01386 | 304.46 | 273499999.999 | -| WAVESUSDT | 0.001055 | 0.001652 | 0.03763 | 0.02482 | 0.01037 | 0.0145 | 102.7 | 0.09735 | 0.0 | 0.08742 | 0.2079 | 1240.67 | 273499999.999 | -| DGBUSDT | 0.0005468 | 0.0008132 | 0.03526 | 0.01037 | 0.01213 | 0.01383 | 112.2 | 0.08951 | 0.0 | 0.07206 | 0.2302 | 988.83 | 273499999.999 | -| BAKEUSDT | 0.0005052 | 0.0004958 | 0.02984 | 0.003309 | 0.01636 | 0.01629 | 83.4 | 0.09474 | 0.0 | 0.06416 | 0.1863 | 960.67 | 273499999.999 | -| UNIUSDT | 0.000787 | 0.001654 | 0.03247 | 0.02401 | 0.007281 | 0.01157 | 117.7 | 0.07623 | 0.0 | 0.0697 | 0.1645 | 1203.67 | 273499999.999 | -| EOSUSDT | 0.00032 | 0.0007129 | 0.02237 | 0.001049 | 0.009682 | 0.009166 | 112.0 | 0.04814 | 0.0 | 0.01804 | 0.09171 | 1457.62 | 273500000.0 | -| DUSKUSDT | 0.0002707 | 0.0003659 | 0.03051 | 0.004751 | 0.01653 | 0.01814 | 90.52 | 0.1111 | 0.0 | 0.07768 | 0.1779 | 727.83 | 273500000.0 | -| FLMUSDT | 0.0003429 | 0.0005938 | 0.02551 | 0.00472 | 0.01587 | 0.01862 | 117.5 | 0.1212 | 0.0 | 0.09574 | 0.2112 | 1192.67 | 273500000.0 | -| BTCUSDT | 0.0002653 | 0.0006556 | 0.03289 | 0.009855 | 0.006778 | 0.007321 | 109.9 | 0.03964 | 0.0 | 0.03345 | 0.1305 | 1464.96 | 273500000.0 | -| AXSUSDT | 0.0004857 | 0.001252 | 0.03466 | 0.007359 | 0.01163 | 0.01061 | 113.0 | 0.05749 | 0.0 | 0.03915 | 0.12 | 1139.67 | 273500000.0 | -| QTUMUSDT | 0.000489 | 0.0008385 | 0.04368 | 0.005469 | 0.015 | 0.01526 | 105.4 | 0.08341 | 0.0 | 0.06207 | 0.2494 | 1414.62 | 273500000.0 | -| LPTUSDT | 0.0002875 | 0.0003593 | 0.0176 | 0.0007538 | 0.01455 | 0.01202 | 117.5 | 0.062 | 0.0 | 0.02445 | 0.1053 | 784.83 | 273500000.0 | -| TRXUSDT | 0.000336 | 0.001415 | 0.01761 | 0.01088 | 0.006085 | 0.008389 | 115.8 | 0.04677 | 0.0 | 0.04207 | 0.1917 | 1450.62 | 273500000.0 | -| WOOUSDT | 0.0003488 | 0.0003701 | 0.02345 | 0.0006869 | 0.01507 | 0.01394 | 90.97 | 0.08129 | 0.0 | 0.05105 | 0.1715 | 636.83 | 273500000.0 | -| BNBUSDT | 0.0004546 | 0.001439 | 0.02708 | 0.01005 | 0.007151 | 0.008356 | 105.1 | 0.04912 | 0.0 | 0.04421 | 0.1407 | 1424.62 | 273500000.0 | -| ADAUSDT | 0.0004749 | 0.001241 | 0.01204 | 0.001475 | 0.0048 | 0.004521 | 71.02 | 0.02053 | 0.0 | 0.01027 | 0.1129 | 1434.62 | 273500000.0 | -| DASHUSDT | 0.0003344 | 0.0006948 | 0.02343 | 0.003786 | 0.01224 | 0.01241 | 114.1 | 0.07509 | 0.0 | 0.0489 | 0.2163 | 1430.62 | 273500000.0 | -| AVAXUSDT | 0.0003489 | 0.0006261 | 0.01316 | 0.002284 | 0.01123 | 0.008878 | 103.8 | 0.03993 | 0.0 | 0.01507 | 0.07809 | 1198.67 | 273500000.0 | -| BNXUSDT | 0.0002304 | 0.000331 | 0.02487 | 0.0 | 0.014 | 0.01211 | 98.83 | 0.06359 | 0.0 | 0.02576 | 0.04248 | 316.38 | 273500000.0 | -| ONTUSDT | 0.0004064 | 0.0007631 | 0.03671 | 0.00242 | 0.01461 | 0.01433 | 119.9 | 0.08475 | 0.0 | 0.04985 | 0.1361 | 1423.62 | 273500000.0 | -| DARUSDT | 0.0004558 | 0.0006536 | 0.02229 | 0.01056 | 0.01162 | 0.01078 | 99.2 | 0.06341 | 0.0 | 0.05776 | 0.119 | 615.83 | 273500000.0 | -| BATUSDT | 0.0004244 | 0.0009441 | 0.03535 | 0.01255 | 0.01248 | 0.01314 | 103.1 | 0.07656 | 0.0 | 0.06113 | 0.2097 | 1421.62 | 273500000.0 | -| XMRUSDT | 0.000404 | 0.00107 | 0.03319 | 0.01229 | 0.00724 | 0.008014 | 95.58 | 0.0446 | 0.0 | 0.04019 | 0.2387 | 1431.62 | 273500000.0 | -| COMPUSDT | 0.0004635 | 0.0006931 | 0.01605 | 0.006099 | 0.01171 | 0.009804 | 81.87 | 0.0435 | 0.0 | 0.02536 | 0.1142 | 1283.58 | 273500000.0 | -| TUSDT | 0.0003792 | 0.0003408 | 0.02828 | 0.0 | 0.01181 | 0.01098 | 108.2 | 0.07382 | 0.0 | 0.04545 | 0.0748 | 337.42 | 273500000.0 | -| FOOTBALLUSDT | 0.0002738 | 0.0005209 | 0.03443 | 0.001842 | 0.007619 | 0.007038 | 119.8 | 0.04578 | 0.0 | 0.02589 | 0.06226 | 490.83 | 273500000.0 | -| PEOPLEUSDT | 0.0004501 | 0.0004896 | 0.009774 | 0.0001067 | 0.01236 | 0.01004 | 100.0 | 0.04898 | 0.0 | 0.01262 | 0.0692 | 741.79 | 273500000.0 | -| MASKUSDT | 0.0004804 | 0.000807 | 0.02139 | 0.008755 | 0.01174 | 0.009991 | 98.08 | 0.04651 | 0.0 | 0.03312 | 0.1315 | 860.83 | 273500000.0 | -| LTCUSDT | 0.0001564 | 0.0003101 | 0.01069 | 0.00153 | 0.0101 | 0.009549 | 100.8 | 0.04373 | 0.0 | 0.01521 | 0.2155 | 1456.62 | 273500000.0 | -| ARPAUSDT | 0.0004856 | 0.0007357 | 0.01794 | 0.005039 | 0.009144 | 0.007469 | 75.52 | 0.03156 | 0.0 | 0.01611 | 0.04845 | 807.83 | 273500000.0 | -| STORJUSDT | 0.0004546 | 0.0004862 | 0.01784 | 0.001327 | 0.01383 | 0.0117 | 117.8 | 0.05223 | 0.0 | 0.0204 | 0.1748 | 1205.67 | 273500000.0 | -| ANTUSDT | 0.0008118 | 0.0005976 | 0.0129 | 0.001934 | 0.01147 | 0.009107 | 120.1 | 0.03646 | 0.0 | 0.00947 | 0.07832 | 738.79 | 273513333.333 | -| 1000XECUSDT | 0.000369 | 0.0004227 | 0.01392 | 0.00313 | 0.01112 | 0.009584 | 122.8 | 0.0413 | 0.0 | 0.01622 | 0.2245 | 839.83 | 273780000.0 | -| NEOUSDT | 0.0002274 | 0.0003759 | 0.01738 | 0.003577 | 0.01322 | 0.01129 | 134.8 | 0.05535 | 0.0 | 0.02723 | 0.09067 | 1417.62 | 274976666.666 | -| HIGHUSDT | 0.0006024 | 0.0005964 | 0.04541 | 0.02057 | 0.0135 | 0.01452 | 135.2 | 0.09544 | 0.0 | 0.0697 | 0.09573 | 331.88 | 275024999.999 | -| BTCDOMUSDT | 7.784e-05 | 7.184e-05 | 0.03556 | 0.007723 | 0.005976 | 0.005155 | 142.6 | 0.03502 | 0.0 | 0.03081 | 0.06219 | 927.83 | 275760000.0 | -| GALUSDT | 0.0007853 | 0.001016 | 0.03013 | 0.002065 | 0.0116 | 0.01027 | 143.5 | 0.06252 | 0.0 | 0.03789 | 0.05878 | 609.38 | 275846666.666 | -| IOTXUSDT | 0.0006164 | 0.0007005 | 0.03421 | 0.01178 | 0.01203 | 0.01307 | 164.5 | 0.08345 | 0.0 | 0.07179 | 0.1329 | 875.83 | 277951666.666 | -| LEVERUSDT | 0.0013 | 0.001156 | 0.05261 | 0.04645 | 0.00842 | 0.01117 | 169.7 | 0.07629 | 0.0 | 0.0709 | 0.1213 | 280.46 | 278466666.665 | -| USDCUSDT | -3.803e-10 | -3.803e-09 | 0.004183 | 0.0 | 0.002071 | 0.0004988 | nan | 0.006517 | 0.8 | 3.005e-05 | 3.277e-05 | 298.25 | 280000000.0 | -| C98USDT | 0.0003961 | 0.0005684 | 0.02936 | 0.01307 | 0.01932 | 0.02076 | 202.6 | 0.1409 | 0.0 | 0.1185 | 0.2121 | 863.83 | 283613845.034 | -| GTCUSDT | 0.0002782 | 0.0004645 | 0.05818 | 0.03421 | 0.0175 | 0.01918 | 258.1 | 0.1185 | 0.0 | 0.0927 | 0.1761 | 937.83 | 287313333.333 | -| FLOWUSDT | 0.0004332 | 0.0005824 | 0.05172 | 0.02604 | 0.01761 | 0.01919 | 261.1 | 0.125 | 0.0 | 0.1092 | 0.1449 | 693.83 | 288532238.579 | -| KLAYUSDT | 0.001026 | 0.0009968 | 0.1345 | 0.1176 | 0.04451 | 0.07948 | 1141.0 | 0.442 | 0.0 | 0.3064 | 0.3461 | 814.83 | 492293447.944 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| POWRUSDT | 0.01089 | 0.004261 | 0.02243 | 0.01019 | 0.004819 | 0.004116 | 40.18 | 0.02273 | 0.0 | 0.01607 | 0.0782 | 69.88 | 273499999.989 | -| STPTUSDT | 0.007364 | 0.003918 | 0.09603 | 0.02385 | 0.005593 | 0.004663 | 47.25 | 0.02561 | 0.0 | 0.0256 | 0.05057 | 78.38 | 273499999.993 | -| MAVUSDT | 0.005716 | 0.003155 | 0.06083 | 0.02974 | 0.01105 | 0.01181 | 58.2 | 0.0693 | 0.0 | 0.06082 | 0.1405 | 189.46 | 273499999.994 | -| BSVUSDT | 0.006418 | 0.002118 | 0.02376 | 0.01138 | 0.009247 | 0.008377 | 46.58 | 0.04786 | 0.0 | 0.04748 | 0.1114 | 76.46 | 273499999.994 | -| FRONTUSDT | 0.004648 | 0.001985 | 0.03273 | 0.02281 | 0.01497 | 0.01211 | 48.17 | 0.05621 | 0.0 | 0.05824 | 0.1087 | 104.38 | 273499999.995 | -| ARKMUSDT | 0.004459 | 0.00343 | 0.03485 | 0.01535 | 0.007311 | 0.006267 | 44.5 | 0.0398 | 0.0 | 0.04123 | 0.1365 | 160.88 | 273499999.996 | -| HFTUSDT | 0.003708 | 0.001817 | 0.05839 | 0.03753 | 0.008242 | 0.008136 | 83.37 | 0.04831 | 0.0 | 0.05136 | 0.07472 | 273.46 | 273499999.996 | -| PENDLEUSDT | 0.003724 | 0.00236 | 0.1155 | 0.07912 | 0.01051 | 0.0125 | 117.7 | 0.09053 | 0.0 | 0.09996 | 0.1282 | 160.88 | 273499999.996 | -| SLPUSDT | 0.004158 | 0.001995 | 0.01822 | 0.006242 | 0.00964 | 0.008095 | 37.33 | 0.03793 | 0.0 | 0.02493 | 0.113 | 65.38 | 273499999.996 | -| YGGUSDT | 0.003851 | 0.002785 | 0.06376 | 0.01155 | 0.00856 | 0.009069 | 40.97 | 0.05325 | 0.0 | 0.0487 | 0.08253 | 152.83 | 273499999.996 | -| PERPUSDT | 0.003741 | 0.001893 | 0.01875 | 0.007128 | 0.008974 | 0.007386 | 65.8 | 0.03306 | 0.0 | 0.02215 | 0.08206 | 304.46 | 273499999.996 | -| TRBUSDT | 0.002583 | 0.001363 | 0.01908 | 0.01038 | 0.01703 | 0.01446 | 91.25 | 0.07525 | 0.0 | 0.0742 | 0.221 | 1218.67 | 273499999.997 | -| GLMRUSDT | 0.003402 | 0.001927 | 0.05234 | 0.01053 | 0.0122 | 0.01038 | 46.58 | 0.05858 | 0.0 | 0.05519 | 0.08914 | 100.92 | 273499999.997 | -| DODOXUSDT | 0.00348 | 0.003093 | 0.01891 | 0.00872 | 0.004283 | 0.004355 | 27.28 | 0.0272 | 0.0 | 0.02522 | 0.09382 | 149.46 | 273499999.997 | -| RIFUSDT | 0.003088 | 0.00487 | 0.05124 | 0.01258 | 0.009395 | 0.009306 | 57.45 | 0.07991 | 0.0 | 0.08244 | 0.1446 | 75.46 | 273499999.997 | -| WAXPUSDT | 0.002591 | 0.004541 | 0.09761 | 0.06959 | 0.007925 | 0.01166 | 50.17 | 0.07573 | 0.0 | 0.08218 | 0.09753 | 78.38 | 273499999.997 | -| OXTUSDT | 0.003318 | 0.002006 | 0.03148 | 0.003184 | 0.00764 | 0.005847 | 43.13 | 0.02572 | 0.0 | 0.01549 | 0.175 | 146.46 | 273499999.997 | -| AGLDUSDT | 0.003026 | 0.002574 | 0.03066 | 0.01545 | 0.009638 | 0.009563 | 91.73 | 0.05254 | 0.0 | 0.05405 | 0.12 | 159.88 | 273499999.997 | -| SEIUSDT | 0.003242 | 0.001386 | 0.03235 | 0.01939 | 0.01438 | 0.01395 | 94.75 | 0.08172 | 0.0 | 0.08934 | 0.1486 | 140.88 | 273499999.997 | -| COMBOUSDT | 0.002965 | 0.002082 | 0.04626 | 0.02661 | 0.007657 | 0.007488 | 69.57 | 0.05263 | 0.0 | 0.0562 | 0.1093 | 216.46 | 273499999.997 | -| STRAXUSDT | 0.003289 | 0.002827 | 0.02166 | 0.003928 | 0.009521 | 0.008008 | 48.5 | 0.04013 | 0.0 | 0.02885 | 0.09156 | 85.88 | 273499999.997 | -| BIGTIMEUSDT | 0.002668 | 0.006379 | 0.02444 | 0.0111 | 0.01083 | 0.0147 | 54.52 | 0.09029 | 0.0 | 0.098 | 0.2386 | 84.38 | 273499999.997 | -| TIAUSDT | 0.003058 | 0.005146 | 0.0371 | 0.01174 | 0.01636 | 0.015 | 27.0 | 0.07514 | 0.0 | 0.06141 | 0.1279 | 65.21 | 273499999.997 | -| LEVERUSDT | 0.002493 | 0.001599 | 0.04716 | 0.01154 | 0.01231 | 0.01086 | 86.78 | 0.05759 | 0.0 | 0.0469 | 0.1668 | 280.46 | 273499999.998 | -| BNTUSDT | 0.001716 | 0.002259 | 0.03306 | 0.01088 | 0.0151 | 0.01442 | 102.9 | 0.08673 | 0.0 | 0.08718 | 0.2048 | 147.46 | 273499999.998 | -| XVGUSDT | 0.002005 | 0.002233 | 0.0473 | 0.02452 | 0.01014 | 0.01075 | 59.7 | 0.06748 | 0.0 | 0.07225 | 0.1553 | 183.46 | 273499999.998 | -| IDEXUSDT | 0.001911 | 0.002013 | 0.05782 | 0.01482 | 0.006253 | 0.006045 | 58.68 | 0.04333 | 0.0 | 0.0459 | 0.09973 | 246.46 | 273499999.998 | -| FETUSDT | 0.001895 | 0.00169 | 0.04544 | 0.007757 | 0.009938 | 0.009851 | 67.92 | 0.0591 | 0.0 | 0.04075 | 0.1134 | 352.88 | 273499999.998 | -| EDUUSDT | 0.002344 | 0.002081 | 0.04464 | 0.0181 | 0.009502 | 0.00997 | 75.28 | 0.08226 | 0.0 | 0.08963 | 0.1658 | 249.46 | 273499999.998 | -| AMBUSDT | 0.00157 | 0.002568 | 0.02489 | 0.01512 | 0.005007 | 0.007825 | 41.07 | 0.04204 | 0.0 | 0.04454 | 0.1751 | 280.46 | 273499999.998 | -| LUNA2USDT | 0.001639 | 0.00121 | 0.02992 | 0.003087 | 0.00707 | 0.008072 | 45.98 | 0.05967 | 0.0 | 0.05229 | 0.2403 | 481.83 | 273499999.998 | -| BLZUSDT | 0.002029 | 0.001768 | 0.03787 | 0.01213 | 0.01859 | 0.01715 | 102.8 | 0.08532 | 0.0 | 0.06436 | 0.2309 | 1204.67 | 273499999.998 | -| 1000FLOKIUSDT | 0.002187 | 0.001599 | 0.02315 | 0.003339 | 0.009321 | 0.008888 | 84.75 | 0.04745 | 0.0 | 0.02444 | 0.1004 | 243.29 | 273499999.998 | -| BNXUSDT | 0.001759 | 0.002059 | 0.0356 | 0.02627 | 0.006087 | 0.01038 | 80.4 | 0.06837 | 0.0 | 0.07357 | 0.2048 | 316.38 | 273499999.998 | -| HIGHUSDT | 0.001687 | 0.001427 | 0.02271 | 0.004368 | 0.009514 | 0.007823 | 90.68 | 0.03919 | 0.0 | 0.02503 | 0.07997 | 331.88 | 273499999.998 | -| BICOUSDT | 0.002051 | 0.002018 | 0.03547 | 0.02453 | 0.006399 | 0.01053 | 40.62 | 0.08166 | 0.0 | 0.0893 | 0.1526 | 98.46 | 273499999.998 | -| IDUSDT | 0.001835 | 0.001462 | 0.02118 | 0.003798 | 0.007388 | 0.006597 | 58.17 | 0.03659 | 0.0 | 0.02921 | 0.1814 | 287.38 | 273499999.998 | -| KEYUSDT | 0.001703 | 0.001936 | 0.04651 | 0.01452 | 0.009818 | 0.009409 | 93.5 | 0.05661 | 0.0 | 0.04299 | 0.1046 | 225.46 | 273499999.998 | -| BLURUSDT | 0.0023 | 0.00162 | 0.02539 | 0.0129 | 0.007144 | 0.009988 | 63.33 | 0.07285 | 0.0 | 0.07798 | 0.1764 | 251.46 | 273499999.998 | -| WLDUSDT | 0.001792 | 0.000965 | 0.02026 | 0.008532 | 0.01641 | 0.01607 | 72.58 | 0.08914 | 0.0 | 0.09011 | 0.2135 | 164.46 | 273499999.998 | -| RADUSDT | 0.00198 | 0.00151 | 0.03071 | 0.003183 | 0.008429 | 0.007347 | 94.9 | 0.04711 | 0.0 | 0.02595 | 0.06749 | 239.46 | 273499999.998 | -| TUSDT | 0.001893 | 0.001097 | 0.03126 | 0.01759 | 0.007075 | 0.00945 | 73.5 | 0.05911 | 0.0 | 0.06055 | 0.1866 | 337.42 | 273499999.998 | -| SUIUSDT | 0.002313 | 0.001507 | 0.05275 | 0.03976 | 0.008402 | 0.01124 | 86.58 | 0.08011 | 0.0 | 0.08739 | 0.116 | 246.29 | 273499999.998 | -| SSVUSDT | 0.001846 | 0.001173 | 0.03436 | 0.003775 | 0.01125 | 0.009672 | 87.85 | 0.05438 | 0.0 | 0.03169 | 0.07104 | 314.46 | 273499999.998 | -| HOOKUSDT | 0.001765 | 0.001609 | 0.07079 | 0.01038 | 0.01374 | 0.01392 | 97.13 | 0.08618 | 0.0 | 0.0861 | 0.1713 | 346.83 | 273499999.998 | -| RDNTUSDT | 0.002355 | 0.001859 | 0.03967 | 0.01258 | 0.007096 | 0.005482 | 70.43 | 0.02533 | 0.0 | 0.02183 | 0.05108 | 274.46 | 273499999.998 | -| NMRUSDT | 0.002008 | 0.001413 | 0.03612 | 0.009073 | 0.01068 | 0.01203 | 109.0 | 0.06784 | 0.0 | 0.06093 | 0.2374 | 196.46 | 273499999.998 | -| STMXUSDT | 0.001795 | 0.001898 | 0.03177 | 0.01307 | 0.0109 | 0.01012 | 113.7 | 0.06029 | 0.0 | 0.06268 | 0.2194 | 1018.67 | 273499999.998 | -| REEFUSDT | 0.001783 | 0.002422 | 0.0651 | 0.03426 | 0.01119 | 0.01263 | 101.3 | 0.08129 | 0.0 | 0.08484 | 0.2311 | 1045.67 | 273499999.998 | -| CRVUSDT | 0.0005164 | 0.00117 | 0.04583 | 0.01154 | 0.01521 | 0.01414 | 110.2 | 0.08064 | 0.0 | 0.07283 | 0.2195 | 1220.67 | 273499999.999 | -| XEMUSDT | 0.001203 | 0.001699 | 0.05022 | 0.02665 | 0.009147 | 0.01083 | 113.0 | 0.07523 | 0.0 | 0.08321 | 0.2472 | 1037.67 | 273499999.999 | -| DUSKUSDT | 0.0005251 | 0.0007166 | 0.021 | 0.002295 | 0.01399 | 0.01017 | 97.9 | 0.04181 | 0.0 | 0.01918 | 0.1464 | 727.83 | 273499999.999 | -| AAVEUSDT | 0.0007243 | 0.0007835 | 0.02228 | 0.01274 | 0.008985 | 0.009205 | 72.22 | 0.04947 | 0.0 | 0.05259 | 0.2165 | 1175.67 | 273499999.999 | -| EGLDUSDT | 0.0006859 | 0.0009161 | 0.02595 | 0.01341 | 0.01429 | 0.01195 | 98.22 | 0.05211 | 0.0 | 0.04533 | 0.136 | 1207.67 | 273499999.999 | -| CTSIUSDT | 0.0007604 | 0.0009885 | 0.02919 | 0.00964 | 0.01206 | 0.01172 | 108.0 | 0.08338 | 0.0 | 0.09207 | 0.2428 | 800.83 | 273499999.999 | -| KNCUSDT | 0.0008427 | 0.001546 | 0.04197 | 0.02315 | 0.01494 | 0.01501 | 117.3 | 0.08554 | 0.0 | 0.09474 | 0.2143 | 1291.62 | 273499999.999 | -| OMGUSDT | 0.0008246 | 0.001342 | 0.03268 | 0.01608 | 0.01336 | 0.01319 | 116.2 | 0.08301 | 0.0 | 0.09225 | 0.2427 | 1281.58 | 273499999.999 | -| ACHUSDT | 0.0008801 | 0.001152 | 0.03122 | 0.01059 | 0.01069 | 0.008799 | 88.3 | 0.04224 | 0.0 | 0.02545 | 0.0761 | 316.38 | 273499999.999 | -| FLMUSDT | 0.001315 | 0.0008592 | 0.01592 | 0.004835 | 0.01762 | 0.01501 | 119.8 | 0.07036 | 0.0 | 0.03458 | 0.2137 | 1192.67 | 273499999.999 | -| UMAUSDT | 0.001415 | 0.0008499 | 0.04039 | 0.001253 | 0.0106 | 0.008764 | 102.1 | 0.04492 | 0.0 | 0.01859 | 0.1265 | 239.46 | 273499999.999 | -| QTUMUSDT | 0.0006237 | 0.001065 | 0.03303 | 0.008812 | 0.00975 | 0.009176 | 94.67 | 0.05044 | 0.0 | 0.04223 | 0.2145 | 1414.62 | 273499999.999 | -| RSRUSDT | 0.001144 | 0.002139 | 0.04852 | 0.01726 | 0.01524 | 0.0131 | 104.8 | 0.06456 | 0.0 | 0.05699 | 0.2042 | 1172.67 | 273499999.999 | -| MANAUSDT | 0.0009296 | 0.001818 | 0.03776 | 0.02 | 0.01012 | 0.01038 | 97.25 | 0.05534 | 0.0 | 0.05866 | 0.2169 | 1025.67 | 273499999.999 | -| ROSEUSDT | 0.0009462 | 0.000856 | 0.02072 | 0.00923 | 0.007718 | 0.007663 | 94.12 | 0.04257 | 0.0 | 0.043 | 0.1446 | 734.83 | 273499999.999 | -| HBARUSDT | 0.0009076 | 0.00138 | 0.04719 | 0.009341 | 0.01246 | 0.01145 | 114.0 | 0.06599 | 0.0 | 0.05392 | 0.2319 | 1023.67 | 273499999.999 | -| GALUSDT | 0.001481 | 0.001937 | 0.06015 | 0.0128 | 0.008646 | 0.01153 | 90.87 | 0.07353 | 0.0 | 0.07568 | 0.2426 | 609.38 | 273499999.999 | -| BANDUSDT | 0.0007464 | 0.001117 | 0.03267 | 0.004636 | 0.01856 | 0.01564 | 118.1 | 0.0748 | 0.0 | 0.03395 | 0.1529 | 1254.67 | 273499999.999 | -| AGIXUSDT | 0.001375 | 0.001528 | 0.05824 | 0.004161 | 0.008049 | 0.009058 | 60.73 | 0.06047 | 0.0 | 0.0559 | 0.1566 | 322.38 | 273499999.999 | -| FXSUSDT | 0.001212 | 0.001097 | 0.07227 | 0.04298 | 0.01182 | 0.01165 | 116.5 | 0.08575 | 0.0 | 0.09524 | 0.1729 | 349.83 | 273499999.999 | -| DEFIUSDT | 0.001186 | 0.001792 | 0.08358 | 0.04312 | 0.01027 | 0.01097 | 98.52 | 0.07389 | 0.0 | 0.08067 | 0.1823 | 1224.67 | 273499999.999 | -| ENJUSDT | 0.0007234 | 0.001508 | 0.05091 | 0.01274 | 0.009519 | 0.01142 | 107.8 | 0.08913 | 0.0 | 0.09802 | 0.2332 | 1192.67 | 273499999.999 | -| SNXUSDT | 0.0005877 | 0.0008101 | 0.02836 | 0.006969 | 0.01728 | 0.01586 | 112.1 | 0.08328 | 0.0 | 0.06219 | 0.2304 | 1238.67 | 273499999.999 | -| HOTUSDT | 0.0009981 | 0.001393 | 0.06298 | 0.01668 | 0.01202 | 0.01366 | 103.5 | 0.08988 | 0.0 | 0.09493 | 0.179 | 1010.67 | 273499999.999 | -| ARKUSDT | 0.0008902 | 0.003425 | 0.0327 | 0.00485 | 0.01201 | 0.009968 | 57.65 | 0.05257 | 0.0 | 0.02179 | 0.0607 | 107.29 | 273499999.999 | -| ZENUSDT | 0.0007451 | 0.001352 | 0.05918 | 0.006499 | 0.01717 | 0.01526 | 114.6 | 0.08966 | 0.0 | 0.08473 | 0.2473 | 1136.67 | 273499999.999 | -| SPELLUSDT | 0.001423 | 0.001159 | 0.02049 | 0.007346 | 0.009264 | 0.00948 | 89.72 | 0.05132 | 0.0 | 0.04145 | 0.1642 | 485.46 | 273499999.999 | -| OGNUSDT | 0.001003 | 0.001117 | 0.02855 | 0.01297 | 0.0123 | 0.01101 | 97.22 | 0.06598 | 0.0 | 0.06912 | 0.2163 | 1008.67 | 273499999.999 | -| JASMYUSDT | 0.001066 | 0.00131 | 0.0566 | 0.006388 | 0.01096 | 0.012 | 91.02 | 0.08591 | 0.0 | 0.08734 | 0.1826 | 624.83 | 273499999.999 | -| WOOUSDT | 0.001451 | 0.001225 | 0.04728 | 0.02771 | 0.01324 | 0.01322 | 108.1 | 0.08639 | 0.0 | 0.0952 | 0.1693 | 636.83 | 273499999.999 | -| SUSHIUSDT | 0.001466 | 0.002453 | 0.06299 | 0.03396 | 0.01451 | 0.01469 | 119.5 | 0.08852 | 0.0 | 0.09786 | 0.2447 | 1217.67 | 273499999.999 | -| RENUSDT | 0.0008745 | 0.001154 | 0.06278 | 0.006172 | 0.02255 | 0.02077 | 118.9 | 0.1171 | 0.0 | 0.0994 | 0.2354 | 1178.67 | 273499999.999 | -| CELOUSDT | 0.00104 | 0.001049 | 0.03189 | 0.01031 | 0.01678 | 0.01391 | 97.7 | 0.0597 | 0.0 | 0.03931 | 0.1582 | 829.83 | 273499999.999 | -| APEUSDT | 0.0006989 | 0.001061 | 0.03515 | 0.007031 | 0.009653 | 0.00828 | 58.48 | 0.05008 | 0.0 | 0.04005 | 0.161 | 658.33 | 273499999.999 | -| ADAUSDT | 0.0007119 | 0.001145 | 0.04207 | 0.02337 | 0.01095 | 0.01084 | 118.3 | 0.06757 | 0.0 | 0.07348 | 0.219 | 1434.62 | 273499999.999 | -| GRTUSDT | 0.001343 | 0.002137 | 0.05385 | 0.0226 | 0.01202 | 0.01232 | 83.37 | 0.07644 | 0.0 | 0.08147 | 0.2329 | 1110.67 | 273499999.999 | -| CELRUSDT | 0.001376 | 0.0022 | 0.04544 | 0.01899 | 0.008485 | 0.0097 | 91.22 | 0.06485 | 0.0 | 0.07009 | 0.2018 | 1011.67 | 273499999.999 | -| DASHUSDT | 0.0005936 | 0.001063 | 0.06382 | 0.02107 | 0.01187 | 0.01353 | 118.3 | 0.08238 | 0.0 | 0.08535 | 0.1911 | 1430.62 | 273499999.999 | -| YFIUSDT | 0.0009742 | 0.001715 | 0.03289 | 0.01975 | 0.01011 | 0.01127 | 112.6 | 0.08048 | 0.0 | 0.08885 | 0.2239 | 1221.67 | 273499999.999 | -| ATAUSDT | 0.001007 | 0.001693 | 0.05998 | 0.007639 | 0.009181 | 0.01028 | 105.0 | 0.06793 | 0.0 | 0.06572 | 0.163 | 856.83 | 273499999.999 | -| OCEANUSDT | 0.001125 | 0.00178 | 0.1068 | 0.01541 | 0.01792 | 0.01749 | 114.9 | 0.09626 | 0.0 | 0.09666 | 0.2117 | 1156.67 | 273499999.999 | -| AVAXUSDT | 0.0007494 | 0.00101 | 0.0384 | 0.01003 | 0.01619 | 0.01418 | 111.7 | 0.08023 | 0.0 | 0.07965 | 0.1945 | 1198.67 | 273499999.999 | -| SFPUSDT | 0.001014 | 0.002028 | 0.04957 | 0.0298 | 0.01205 | 0.01212 | 114.3 | 0.07638 | 0.0 | 0.08372 | 0.238 | 1044.67 | 273499999.999 | -| ONEUSDT | 0.0009658 | 0.001652 | 0.03842 | 0.01935 | 0.01151 | 0.00991 | 114.6 | 0.04877 | 0.0 | 0.04844 | 0.2114 | 1022.67 | 273499999.999 | -| ENSUSDT | 0.001185 | 0.001216 | 0.04079 | 0.01526 | 0.0118 | 0.01119 | 102.6 | 0.05923 | 0.0 | 0.05796 | 0.1822 | 765.83 | 273499999.999 | -| PHBUSDT | 0.001159 | 0.0006806 | 0.02218 | 0.01228 | 0.009365 | 0.008589 | 66.3 | 0.04755 | 0.0 | 0.04811 | 0.1058 | 322.38 | 273499999.999 | -| FLOWUSDT | 0.0005518 | 0.0006068 | 0.0212 | 0.00666 | 0.01026 | 0.009452 | 98.23 | 0.04645 | 0.0 | 0.03376 | 0.1443 | 693.83 | 273499999.999 | -| KAVAUSDT | 0.0005814 | 0.001317 | 0.0372 | 0.01112 | 0.01615 | 0.01362 | 95.9 | 0.06464 | 0.0 | 0.04715 | 0.1664 | 1255.67 | 273499999.999 | -| IMXUSDT | 0.0009095 | 0.0007631 | 0.02967 | 0.004318 | 0.01174 | 0.01131 | 118.8 | 0.06867 | 0.0 | 0.05771 | 0.1155 | 692.83 | 273499999.999 | -| XLMUSDT | 0.0008927 | 0.001466 | 0.04377 | 0.02684 | 0.008375 | 0.009598 | 119.8 | 0.06794 | 0.0 | 0.07351 | 0.2328 | 1445.62 | 273499999.999 | -| JOEUSDT | 0.001159 | 0.000751 | 0.05246 | 0.005239 | 0.01531 | 0.01407 | 83.32 | 0.07574 | 0.0 | 0.05981 | 0.09317 | 281.46 | 273499999.999 | -| POLYXUSDT | 0.0009668 | 0.002852 | 0.02033 | 0.0004053 | 0.007284 | 0.00569 | 47.03 | 0.02305 | 0.0 | 0.005217 | 0.01465 | 71.88 | 273499999.999 | -| LITUSDT | 0.001117 | 0.00179 | 0.06128 | 0.02634 | 0.01529 | 0.01592 | 111.6 | 0.09027 | 0.0 | 0.09604 | 0.2127 | 1049.67 | 273499999.999 | -| ONTUSDT | 0.0008587 | 0.001285 | 0.0533 | 0.014 | 0.01465 | 0.01347 | 117.5 | 0.07534 | 0.0 | 0.06259 | 0.1795 | 1423.62 | 273499999.999 | -| DARUSDT | 0.0009802 | 0.001155 | 0.04822 | 0.02188 | 0.01113 | 0.01232 | 109.7 | 0.08496 | 0.0 | 0.09264 | 0.1752 | 615.83 | 273499999.999 | -| MATICUSDT | 0.0006446 | 0.001384 | 0.03879 | 0.01568 | 0.01204 | 0.01247 | 108.0 | 0.08516 | 0.0 | 0.0937 | 0.2073 | 1169.67 | 273499999.999 | -| LDOUSDT | 0.00128 | 0.001213 | 0.04916 | 0.01565 | 0.01585 | 0.01567 | 84.82 | 0.08157 | 0.0 | 0.07257 | 0.1315 | 469.46 | 273499999.999 | -| GASUSDT | 0.0005846 | 0.003461 | 0.01302 | 0.004806 | 0.006789 | 0.005694 | 38.18 | 0.02708 | 0.0 | 0.01938 | 0.05651 | 71.88 | 273499999.999 | -| RLCUSDT | 0.0005802 | 0.001198 | 0.03989 | 0.0114 | 0.01468 | 0.01305 | 102.8 | 0.07339 | 0.0 | 0.06373 | 0.1873 | 1252.67 | 273499999.999 | -| VETUSDT | 0.0007203 | 0.001458 | 0.03909 | 0.01678 | 0.008474 | 0.01002 | 102.3 | 0.06121 | 0.0 | 0.06447 | 0.2128 | 1420.62 | 273499999.999 | -| XVSUSDT | 0.001224 | 0.000712 | 0.02469 | 0.003184 | 0.01378 | 0.01283 | 105.2 | 0.06736 | 0.0 | 0.04365 | 0.2116 | 266.88 | 273499999.999 | -| MAGICUSDT | 0.001191 | 0.0009022 | 0.04461 | 0.03299 | 0.0153 | 0.0138 | 91.87 | 0.07787 | 0.0 | 0.0846 | 0.1267 | 344.83 | 273499999.999 | -| RUNEUSDT | 0.0006879 | 0.0005764 | 0.01362 | 0.003015 | 0.01782 | 0.01313 | 116.2 | 0.05098 | 0.0 | 0.01512 | 0.08219 | 1217.67 | 273499999.999 | -| CFXUSDT | 0.0006327 | 0.000831 | 0.009231 | 0.001688 | 0.007544 | 0.006091 | 99.05 | 0.02455 | 0.0 | 0.005063 | 0.02577 | 318.38 | 273499999.999 | -| LOOMUSDT | 0.0007147 | 0.0043 | 0.01298 | 0.005073 | 0.004472 | 0.004088 | 44.2 | 0.02398 | 0.0 | 0.01848 | 0.05439 | 85.38 | 273499999.999 | -| HIFIUSDT | 0.0009104 | 0.00166 | 0.03871 | 0.0009057 | 0.008826 | 0.008005 | 50.03 | 0.03958 | 0.0 | 0.02134 | 0.1804 | 110.38 | 273499999.999 | -| INJUSDT | 0.001429 | 0.001086 | 0.02406 | 0.007404 | 0.01031 | 0.008847 | 114.5 | 0.04116 | 0.0 | 0.02727 | 0.0736 | 505.88 | 273499999.999 | -| ALGOUSDT | 0.0009318 | 0.001385 | 0.04314 | 0.009816 | 0.01217 | 0.01058 | 116.5 | 0.0578 | 0.0 | 0.04337 | 0.1179 | 1297.58 | 273499999.999 | -| COTIUSDT | 0.0005551 | 0.001012 | 0.04798 | 0.009201 | 0.01634 | 0.01578 | 114.7 | 0.09451 | 0.0 | 0.09313 | 0.2493 | 1030.67 | 273499999.999 | -| NEOUSDT | 0.001065 | 0.00143 | 0.08009 | 0.01092 | 0.01049 | 0.01256 | 113.0 | 0.07141 | 0.0 | 0.07261 | 0.1686 | 1417.62 | 273499999.999 | -| ICXUSDT | 0.0005641 | 0.0009126 | 0.02154 | 0.003432 | 0.01144 | 0.009594 | 99.95 | 0.04631 | 0.0 | 0.02481 | 0.09961 | 1206.67 | 273499999.999 | -| ORBSUSDT | 0.0009191 | 0.003238 | 0.03233 | 0.0047 | 0.008277 | 0.00652 | 41.73 | 0.02947 | 0.0 | 0.01449 | 0.02417 | 79.71 | 273499999.999 | -| CTKUSDT | 0.0006298 | 0.001224 | 0.02497 | 0.01206 | 0.009893 | 0.01089 | 108.9 | 0.06636 | 0.0 | 0.0718 | 0.2234 | 1140.67 | 273499999.999 | -| COMPUSDT | 0.00051 | 0.000692 | 0.04226 | 0.009267 | 0.01725 | 0.0177 | 105.3 | 0.1001 | 0.0 | 0.09584 | 0.2375 | 1283.58 | 273499999.999 | -| GMXUSDT | 0.0008161 | 0.0006348 | 0.03723 | 0.01555 | 0.01036 | 0.007741 | 98.33 | 0.03417 | 0.0 | 0.03232 | 0.09243 | 321.38 | 273499999.999 | -| MKRUSDT | 0.000681 | 0.0004278 | 0.008641 | 0.003384 | 0.01389 | 0.01062 | 101.0 | 0.04173 | 0.0 | 0.008235 | 0.04573 | 1239.67 | 273499999.999 | -| XTZUSDT | 0.0007631 | 0.001607 | 0.04656 | 0.01633 | 0.009264 | 0.008481 | 95.28 | 0.05172 | 0.0 | 0.05529 | 0.2009 | 1428.62 | 273499999.999 | -| SOLUSDT | 0.000859 | 0.000837 | 0.01236 | 0.00265 | 0.01301 | 0.01034 | 95.33 | 0.04612 | 0.0 | 0.02011 | 0.1631 | 1207.67 | 273499999.999 | -| CHRUSDT | 0.00124 | 0.002078 | 0.05363 | 0.01784 | 0.01417 | 0.01311 | 109.6 | 0.08419 | 0.0 | 0.0923 | 0.2457 | 1028.67 | 273499999.999 | -| STXUSDT | 0.001091 | 0.0007738 | 0.0141 | 0.004332 | 0.009564 | 0.008036 | 82.1 | 0.03533 | 0.0 | 0.01977 | 0.0993 | 317.38 | 273499999.999 | -| ARBUSDT | 0.0009932 | 0.0004956 | 0.0243 | 0.01031 | 0.008685 | 0.007465 | 60.57 | 0.0343 | 0.0 | 0.02354 | 0.06272 | 287.33 | 273499999.999 | -| SKLUSDT | 0.0008625 | 0.001075 | 0.01759 | 0.001998 | 0.01356 | 0.01019 | 103.0 | 0.03965 | 0.0 | 0.01313 | 0.1236 | 1121.67 | 273499999.999 | -| LQTYUSDT | 0.001352 | 0.001816 | 0.06105 | 0.01733 | 0.009584 | 0.01074 | 63.95 | 0.06994 | 0.0 | 0.06998 | 0.2052 | 300.46 | 273499999.999 | -| ASTRUSDT | 0.0005982 | 0.0003191 | 0.02201 | 0.0001154 | 0.01776 | 0.01362 | 82.78 | 0.06717 | 0.0 | 0.02002 | 0.2263 | 324.88 | 273499999.999 | -| ATOMUSDT | 0.001016 | 0.002326 | 0.06516 | 0.03489 | 0.009648 | 0.01259 | 119.1 | 0.08528 | 0.0 | 0.09409 | 0.2074 | 1427.46 | 273499999.999 | -| ALICEUSDT | 0.0006872 | 0.001344 | 0.06274 | 0.01079 | 0.0186 | 0.01761 | 111.8 | 0.09793 | 0.0 | 0.09324 | 0.2063 | 1024.83 | 273499999.999 | -| LTCUSDT | 0.0005048 | 0.001029 | 0.03896 | 0.01544 | 0.008254 | 0.007776 | 114.1 | 0.04607 | 0.0 | 0.04766 | 0.1415 | 1456.62 | 273499999.999 | -| CKBUSDT | 0.001271 | 0.001365 | 0.03694 | 0.009581 | 0.007545 | 0.005642 | 87.22 | 0.02567 | 0.0 | 0.02175 | 0.0501 | 310.46 | 273499999.999 | -| ARPAUSDT | 0.0007698 | 0.001169 | 0.02188 | 0.008948 | 0.008072 | 0.008701 | 105.7 | 0.05779 | 0.0 | 0.06131 | 0.1673 | 807.83 | 273499999.999 | -| C98USDT | 0.000773 | 0.001017 | 0.05708 | 0.01032 | 0.01751 | 0.01624 | 103.8 | 0.09159 | 0.0 | 0.09311 | 0.1857 | 863.83 | 273499999.999 | -| ZRXUSDT | 0.0009947 | 0.001121 | 0.04437 | 0.008962 | 0.01495 | 0.01347 | 116.3 | 0.07374 | 0.0 | 0.06221 | 0.2458 | 1289.58 | 273499999.999 | -| ICPUSDT | 0.001144 | 0.0004476 | 0.01898 | 0.0003854 | 0.0107 | 0.008822 | 113.6 | 0.04147 | 0.0 | 0.01671 | 0.107 | 464.88 | 273499999.999 | -| ZILUSDT | 0.0007371 | 0.001464 | 0.03347 | 0.01435 | 0.0124 | 0.01132 | 96.68 | 0.06024 | 0.0 | 0.06124 | 0.1953 | 1295.58 | 273499999.999 | -| TRUUSDT | 0.0007239 | 0.0006348 | 0.01455 | 0.00291 | 0.01314 | 0.01081 | 57.8 | 0.04446 | 0.0 | 0.01102 | 0.2309 | 303.46 | 273499999.999 | -| LINKUSDT | 0.001153 | 0.001792 | 0.05375 | 0.0352 | 0.0112 | 0.01198 | 117.9 | 0.07403 | 0.0 | 0.08063 | 0.1989 | 1448.62 | 273499999.999 | -| KSMUSDT | 0.0007262 | 0.001084 | 0.03045 | 0.01241 | 0.007605 | 0.007651 | 71.57 | 0.05122 | 0.0 | 0.05488 | 0.1724 | 1177.67 | 273499999.999 | -| TLMUSDT | 0.0013 | 0.0008244 | 0.02801 | 0.01071 | 0.01073 | 0.009208 | 119.8 | 0.05268 | 0.0 | 0.04963 | 0.2292 | 280.46 | 273499999.999 | -| MDTUSDT | 0.001281 | 0.001384 | 0.02833 | 0.0114 | 0.008679 | 0.01164 | 60.05 | 0.08214 | 0.0 | 0.09026 | 0.2085 | 188.46 | 273499999.999 | -| 1000PEPEUSDT | 0.0006713 | 0.0006713 | 0.011 | 0.001381 | 0.01256 | 0.01195 | 61.6 | 0.06046 | 0.0 | 0.02104 | 0.06794 | 244.29 | 273499999.999 | -| DGBUSDT | 0.0006411 | 0.001256 | 0.08634 | 0.01506 | 0.01337 | 0.01466 | 102.8 | 0.08719 | 0.0 | 0.09052 | 0.2388 | 988.83 | 273499999.999 | -| UNIUSDT | 0.0006881 | 0.001411 | 0.03538 | 0.01539 | 0.009752 | 0.008183 | 93.67 | 0.0387 | 0.0 | 0.03812 | 0.1222 | 1203.67 | 273499999.999 | -| EOSUSDT | 0.000496 | 0.0008929 | 0.04472 | 0.01558 | 0.01219 | 0.0126 | 100.6 | 0.06909 | 0.0 | 0.06962 | 0.2286 | 1457.62 | 273500000.0 | -| ALPHAUSDT | 0.0003158 | 0.0005395 | 0.02562 | 0.0008834 | 0.01973 | 0.01726 | 118.4 | 0.09925 | 0.0 | 0.06532 | 0.2492 | 1136.67 | 273500000.0 | -| LRCUSDT | 0.0003486 | 0.00075 | 0.02819 | 0.007934 | 0.01882 | 0.01662 | 117.4 | 0.079 | 0.0 | 0.05519 | 0.2439 | 1172.67 | 273500000.0 | -| MINAUSDT | 0.0002425 | 0.0001354 | 0.004758 | 0.0003267 | 0.01482 | 0.01108 | 92.17 | 0.0459 | 0.0 | 0.005504 | 0.1328 | 331.5 | 273500000.0 | -| QNTUSDT | 0.0003268 | 0.0003222 | 0.01388 | 0.00296 | 0.01003 | 0.00785 | 89.53 | 0.03054 | 0.0 | 0.006707 | 0.03729 | 441.88 | 273500000.0 | -| BTCUSDT | 0.0001635 | 0.0002162 | 0.02097 | 0.009767 | 0.008632 | 0.007517 | 101.1 | 0.03488 | 0.0 | 0.02421 | 0.09032 | 1464.96 | 273500000.0 | -| AXSUSDT | 0.0001576 | 0.0004126 | 0.01028 | 0.00461 | 0.01556 | 0.01342 | 105.7 | 0.05185 | 0.0 | 0.02076 | 0.2431 | 1139.67 | 273500000.0 | -| 1000XECUSDT | 0.0004083 | 0.0005351 | 0.01067 | 0.004336 | 0.007501 | 0.006109 | 89.17 | 0.02791 | 0.0 | 0.01663 | 0.1083 | 839.83 | 273500000.0 | -| FTMUSDT | 0.00046 | 0.001107 | 0.02829 | 0.008481 | 0.01559 | 0.01331 | 80.72 | 0.06999 | 0.0 | 0.06204 | 0.2048 | 1197.67 | 273500000.0 | -| LPTUSDT | 0.0003205 | 0.0003479 | 0.02147 | 0.0002177 | 0.02124 | 0.01737 | 90.07 | 0.0859 | 0.0 | 0.02832 | 0.09788 | 784.83 | 273500000.0 | -| AUDIOUSDT | 0.0002343 | 0.0003942 | 0.02695 | 3.357e-05 | 0.0196 | 0.01814 | 108.5 | 0.09971 | 0.0 | 0.05515 | 0.1585 | 868.83 | 273500000.0 | -| TRXUSDT | 9.769e-05 | 0.0002855 | 0.02333 | 0.009952 | 0.01001 | 0.00916 | 114.6 | 0.04851 | 0.0 | 0.04723 | 0.2115 | 1450.62 | 273500000.0 | -| ETCUSDT | 0.0004759 | 0.0008995 | 0.03341 | 0.01331 | 0.01054 | 0.01168 | 102.1 | 0.06633 | 0.0 | 0.06998 | 0.2331 | 1449.62 | 273500000.0 | -| IOSTUSDT | 0.0003636 | 0.0007446 | 0.03303 | 0.004182 | 0.01225 | 0.01215 | 109.9 | 0.07182 | 0.0 | 0.05717 | 0.2407 | 1413.62 | 273500000.0 | -| MTLUSDT | 0.0002972 | 0.0004651 | 0.02888 | 0.005113 | 0.02105 | 0.01965 | 93.17 | 0.1107 | 0.0 | 0.08557 | 0.2485 | 1009.67 | 273500000.0 | -| 1000SHIBUSDT | 0.0001991 | 0.0004535 | 0.01819 | 3.009e-05 | 0.01428 | 0.01418 | 114.7 | 0.08061 | 0.0 | 0.04237 | 0.1422 | 969.25 | 273500000.0 | -| CYBERUSDT | 0.0004661 | 0.0007216 | 0.007766 | 0.0 | 0.01461 | 0.01061 | 80.75 | 0.04863 | 0.0 | 0.005811 | 0.04026 | 136.46 | 273500000.0 | -| BNBUSDT | 0.0002545 | 0.0005425 | 0.02625 | 0.01363 | 0.0085 | 0.009965 | 118.1 | 0.06241 | 0.0 | 0.06387 | 0.18 | 1424.62 | 273500000.0 | -| NEARUSDT | 0.0003954 | 0.0005692 | 0.02088 | 0.003492 | 0.01693 | 0.0144 | 106.2 | 0.07432 | 0.0 | 0.04122 | 0.2406 | 1176.62 | 273500000.0 | -| API3USDT | 0.000363 | 0.0004019 | 0.02086 | 0.0 | 0.01739 | 0.01551 | 109.5 | 0.08009 | 0.0 | 0.03243 | 0.1598 | 681.83 | 273500000.0 | -| BELUSDT | 0.0002667 | 0.000592 | 0.01793 | 0.001095 | 0.01875 | 0.01608 | 117.3 | 0.08258 | 0.0 | 0.03748 | 0.2482 | 1141.67 | 273500000.0 | -| APTUSDT | 0.0004507 | 0.0006749 | 0.007836 | 0.0008843 | 0.01215 | 0.009396 | 113.3 | 0.03827 | 0.0 | 0.004729 | 0.03579 | 442.88 | 273500000.0 | -| DENTUSDT | 0.0003983 | 0.0008129 | 0.0233 | 0.01047 | 0.01081 | 0.0132 | 98.82 | 0.08028 | 0.0 | 0.0856 | 0.2484 | 1016.79 | 273500000.0 | -| BALUSDT | 0.000353 | 0.0007288 | 0.05734 | 0.005956 | 0.0199 | 0.01634 | 114.7 | 0.07762 | 0.0 | 0.05617 | 0.115 | 1220.67 | 273500000.0 | -| STGUSDT | 0.0002316 | 0.0002933 | 0.009916 | 0.002538 | 0.01357 | 0.01143 | 110.9 | 0.04964 | 0.0 | 0.0211 | 0.1602 | 497.46 | 273500000.0 | -| SANDUSDT | 0.0004649 | 0.001145 | 0.04128 | 0.006744 | 0.01579 | 0.01533 | 98.95 | 0.08992 | 0.0 | 0.08099 | 0.2496 | 1073.67 | 273500000.0 | -| LINAUSDT | 0.0004696 | 0.0007685 | 0.02283 | 0.005517 | 0.01815 | 0.01505 | 117.0 | 0.07319 | 0.0 | 0.05017 | 0.214 | 1021.67 | 273500000.0 | -| 1000LUNCUSDT | 0.0002845 | 0.0001659 | 0.003817 | 0.0002245 | 0.01253 | 0.01 | 112.4 | 0.04141 | 0.0 | 0.003193 | 0.09746 | 482.42 | 273500000.0 | -| DOGEUSDT | 0.0004344 | 0.001451 | 0.02008 | 0.009297 | 0.009611 | 0.01201 | 119.8 | 0.07504 | 0.0 | 0.07849 | 0.25 | 1273.58 | 273500000.0 | -| 1INCHUSDT | 0.0003335 | 0.0006325 | 0.03194 | 0.0003282 | 0.0179 | 0.01534 | 96.15 | 0.08147 | 0.0 | 0.04865 | 0.2372 | 1104.54 | 273500000.0 | -| BLUEBIRDUSDT | 0.000255 | 0.0002421 | 0.01881 | 0.005503 | 0.008329 | 0.00682 | 100.3 | 0.0301 | 0.0 | 0.01399 | 0.05305 | 428.46 | 273500000.0 | -| ANKRUSDT | 0.0004112 | 0.0009073 | 0.03739 | 0.005539 | 0.01769 | 0.01865 | 106.7 | 0.1104 | 0.0 | 0.09977 | 0.234 | 1072.67 | 273500000.0 | -| CHZUSDT | 0.0003867 | 0.000987 | 0.04627 | 0.003959 | 0.01791 | 0.01751 | 119.2 | 0.1024 | 0.0 | 0.08605 | 0.2418 | 1077.67 | 273500000.0 | -| BATUSDT | 0.000413 | 0.0008385 | 0.03799 | 0.003154 | 0.01448 | 0.0115 | 115.9 | 0.05756 | 0.0 | 0.0372 | 0.1681 | 1421.62 | 273500000.0 | -| BCHUSDT | 0.0003707 | 0.0004541 | 0.03067 | 0.004204 | 0.01176 | 0.0112 | 99.65 | 0.06394 | 0.0 | 0.04573 | 0.1414 | 1464.96 | 273500000.0 | -| RVNUSDT | 0.0004198 | 0.0007069 | 0.01739 | 0.006849 | 0.01087 | 0.01081 | 90.12 | 0.06725 | 0.0 | 0.06626 | 0.2169 | 1045.67 | 273500000.0 | -| RNDRUSDT | 0.0003214 | 0.0003535 | 0.01199 | 0.004168 | 0.01384 | 0.01032 | 95.43 | 0.04199 | 0.0 | 0.02102 | 0.07166 | 335.88 | 273500000.0 | -| ANTUSDT | 0.0001735 | 0.0003465 | 0.03201 | 0.0 | 0.02058 | 0.01696 | 112.3 | 0.08507 | 0.0 | 0.04717 | 0.1184 | 738.79 | 273500000.0 | -| XMRUSDT | 0.0004241 | 0.001331 | 0.04393 | 0.02939 | 0.006015 | 0.009386 | 118.5 | 0.06832 | 0.0 | 0.07392 | 0.1304 | 1431.62 | 273500000.0 | -| CVXUSDT | 0.0003804 | 0.0007493 | 0.03342 | 0.02606 | 0.008864 | 0.01088 | 88.67 | 0.06361 | 0.0 | 0.0688 | 0.2068 | 469.46 | 273500000.0 | -| OPUSDT | 0.0004261 | 0.0004552 | 0.029 | 0.02057 | 0.01635 | 0.01482 | 91.82 | 0.07882 | 0.0 | 0.08647 | 0.2019 | 582.38 | 273500000.0 | -| THETAUSDT | 0.0004208 | 0.0006214 | 0.02601 | 0.005891 | 0.01557 | 0.01184 | 95.68 | 0.05108 | 0.0 | 0.0326 | 0.09662 | 1317.62 | 273500000.0 | -| GMTUSDT | 0.0002719 | 0.0004422 | 0.01358 | 0.007226 | 0.01367 | 0.01141 | 99.6 | 0.04616 | 0.0 | 0.02856 | 0.1198 | 660.79 | 273500000.0 | -| DYDXUSDT | 0.0003906 | 0.0004951 | 0.01464 | 0.0004871 | 0.01528 | 0.01268 | 90.32 | 0.05864 | 0.0 | 0.01736 | 0.1208 | 846.83 | 273500000.0 | -| FILUSDT | 0.0004372 | 0.0007111 | 0.0216 | 0.00899 | 0.01431 | 0.01299 | 118.2 | 0.07443 | 0.0 | 0.07663 | 0.2188 | 1175.71 | 273500000.0 | -| FOOTBALLUSDT | 0.0004726 | 0.0006884 | 0.0283 | 0.0001782 | 0.005601 | 0.005139 | 109.2 | 0.03223 | 0.0 | 0.01911 | 0.07572 | 490.83 | 273500000.0 | -| PEOPLEUSDT | 0.0003446 | 0.0003646 | 0.004789 | 8.425e-05 | 0.01449 | 0.01084 | 96.83 | 0.04402 | 0.0 | 0.002876 | 0.01537 | 741.79 | 273500000.0 | -| NKNUSDT | 0.0004967 | 0.0009253 | 0.03496 | 0.002848 | 0.01766 | 0.01675 | 116.0 | 0.08754 | 0.0 | 0.05688 | 0.247 | 1000.67 | 273500000.0 | -| STORJUSDT | 0.0004712 | 0.0005424 | 0.01381 | 0.006241 | 0.01416 | 0.01198 | 101.2 | 0.05652 | 0.0 | 0.04042 | 0.2468 | 1205.67 | 273500000.0 | -| XRPUSDT | 0.0004812 | 0.0008215 | 0.01567 | 0.00354 | 0.009122 | 0.007817 | 112.9 | 0.03631 | 0.0 | 0.02103 | 0.2089 | 1459.62 | 273500000.0 | -| ZECUSDT | 0.0004999 | 0.0009959 | 0.07916 | 0.01321 | 0.01258 | 0.01462 | 116.7 | 0.09249 | 0.0 | 0.09755 | 0.2116 | 1429.62 | 273500000.0 | -| WAVESUSDT | 0.0001922 | 0.0002413 | 0.006067 | 0.001128 | 0.0142 | 0.01098 | 98.12 | 0.04699 | 0.0 | 0.01247 | 0.1605 | 1240.67 | 273500000.0 | -| IOTAUSDT | 8.831e-05 | 0.0001262 | 0.006102 | 0.0003983 | 0.01599 | 0.01138 | 142.1 | 0.04542 | 0.0 | 0.004341 | 0.08044 | 1422.62 | 275705000.0 | -| DOTUSDT | 0.0001172 | 0.0002562 | 0.0187 | 0.009537 | 0.01515 | 0.01143 | 181.2 | 0.05017 | 0.0 | 0.04001 | 0.1357 | 1230.67 | 279625000.0 | -| BONDUSDT | 0.0004041 | 0.0003957 | 0.03559 | 0.02829 | 0.01867 | 0.01835 | 79.45 | 0.1444 | 0.0 | 0.1684 | 0.2074 | 81.38 | 280335633.632 | -| GTCUSDT | 0.0004046 | 0.0007006 | 0.0186 | 0.008036 | 0.01705 | 0.01529 | 196.7 | 0.07843 | 0.0 | 0.06199 | 0.2236 | 937.83 | 281165000.0 | -| ETHUSDT | 5.791e-05 | 0.0002701 | 0.01018 | 0.0008874 | 0.01747 | 0.01188 | 211.9 | 0.04578 | 0.0 | 0.009725 | 0.05944 | 1464.96 | 282690000.0 | -| KLAYUSDT | 0.000197 | 0.0002211 | 0.03273 | 0.003298 | 0.02068 | 0.0214 | 247.9 | 0.1145 | 0.0 | 0.06704 | 0.1414 | 814.83 | 286288333.333 | -| BTCDOMUSDT | 0.0001389 | 7.048e-05 | 0.02316 | 0.0003009 | 0.009971 | 0.006623 | 298.7 | 0.02583 | 0.0 | 0.007528 | 0.01275 | 927.83 | 291370000.0 | -| ARUSDT | 0.0003579 | 0.0004076 | 0.02244 | 0.008566 | 0.01653 | 0.01685 | 131.0 | 0.09771 | 0.0 | 0.09255 | 0.3042 | 828.83 | 328769146.982 | -| IOTXUSDT | 0.0004597 | 0.0004477 | 0.04133 | 0.03328 | 0.01756 | 0.01896 | 354.4 | 0.1359 | 0.0 | 0.1588 | 0.2856 | 875.83 | 338409126.089 | -| SXPUSDT | 8.394e-05 | 0.0001701 | 0.02718 | 0.021 | 0.02119 | 0.02797 | 471.7 | 0.1924 | 0.0 | 0.2475 | 0.5945 | 1262.58 | 667888893.456 | -| USDCUSDT | 1.274e-06 | 2.703e-07 | 0.006404 | 0.0 | 0.003563 | 0.001795 | 4163.0 | 0.01161 | 0.4 | 8.961e-05 | 0.0001378 | 298.25 | 680346666.667 | -| BAKEUSDT | 0.0005391 | 0.0002271 | 0.01048 | 0.004419 | 0.01708 | 0.01851 | 132.4 | 0.1346 | 0.0 | 0.1509 | 0.6543 | 960.67 | 684141334.864 | -| GALAUSDT | -0.005012 | -0.01634 | 108.1 | 0.2344 | 0.1158 | 0.1769 | 8650.0 | 2.066 | 3.853 | 1.0 | 1.0 | 838.83 | 2003670755.12 | -| MASKUSDT | -0.001592 | -0.01592 | 0.06073 | 0.0475 | 0.01614 | 0.0373 | 10370.0 | 0.1986 | 2.128 | 1.0 | 1.0 | 860.83 | 2158674531.41 | -| UNFIUSDT | -0.001308 | -0.01308 | 0.2325 | 0.2233 | 0.07788 | 0.09843 | 13830.0 | 0.3378 | 1.179 | 1.0 | 1.0 | 1049.67 | 2494552655.35 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000BONKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1000BONKUSDT.json deleted file mode 100644 index c65fb2b2b..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000BONKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8158988178029767, - "ema_span_0": 630.6700219427997, - "ema_span_1": 988.0721029782436, - "enabled": true, - "initial_eprice_ema_dist": -0.0051730670407105035, - "initial_qty_pct": 0.014900701380176646, - "markup_range": 0.00373635516843561, - "min_markup": 0.0036300385320731797, - "n_close_orders": 16, - "rentry_pprice_dist": 0.025179848919236258, - "rentry_pprice_dist_wallet_exposure_weighting": 6.56600867991594, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1000FLOKIUSDT.json deleted file mode 100644 index 49b90be54..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2256919206736003, - "ema_span_0": 1101.5036131447491, - "ema_span_1": 462.7274875789373, - "enabled": true, - "initial_eprice_ema_dist": -0.0034303471516296093, - "initial_qty_pct": 0.016574094562677267, - "markup_range": 0.005653899702441475, - "min_markup": 0.007474268355254473, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03531314859729816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3733321988478504, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7272935781485725, - "ema_span_0": 1439.9418291040436, - "ema_span_1": 1415.4578697154998, - "enabled": true, - "initial_eprice_ema_dist": -0.0012038358144404147, - "initial_qty_pct": 0.012974128964331833, - "markup_range": 0.006867431512625359, - "min_markup": 0.002529144685584898, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03369771810077721, - "rentry_pprice_dist_wallet_exposure_weighting": 5.682347551929316, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000LUNCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1000LUNCUSDT.json deleted file mode 100644 index b2abd169e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9096882693184065, - "ema_span_0": 725.4853256941044, - "ema_span_1": 1165.6555990547017, - "enabled": true, - "initial_eprice_ema_dist": 0.0021667958892405484, - "initial_qty_pct": 0.006613662603725277, - "markup_range": 4.069142357194305e-05, - "min_markup": 0.0019250821320548582, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048696259243225466, - "rentry_pprice_dist_wallet_exposure_weighting": 5.34175213638984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000PEPEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1000PEPEUSDT.json deleted file mode 100644 index 4f5681b5d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033221402342788, - "ema_span_0": 530.40834479273, - "ema_span_1": 553.7406233199865, - "enabled": true, - "initial_eprice_ema_dist": -0.008700376344713693, - "initial_qty_pct": 0.0068151379224953785, - "markup_range": 0.0010966287702562094, - "min_markup": 0.0026045896311858554, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014118048362395455, - "rentry_pprice_dist_wallet_exposure_weighting": 6.158408017417416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5550251511063604, - "ema_span_0": 716.2919582271431, - "ema_span_1": 1026.6782465521924, - "enabled": true, - "initial_eprice_ema_dist": 0.000239765333420248, - "initial_qty_pct": 0.006477330915374071, - "markup_range": 0.00369205266920978, - "min_markup": 0.0037555989761534634, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05184506187346326, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8872504509911123, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000SHIBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1000SHIBUSDT.json deleted file mode 100644 index 0e16f6212..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0119952211114476, - "ema_span_0": 400, - "ema_span_1": 782.0167460569916, - "enabled": true, - "initial_eprice_ema_dist": 0.0019276790065508233, - "initial_qty_pct": 0.005934097752452366, - "markup_range": 0.0024290085401056515, - "min_markup": 0.00225877826171538, - "n_close_orders": 9, - "rentry_pprice_dist": 0.019908154779860448, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43826259955089786, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4982885224851143, - "ema_span_0": 1031.0760074261716, - "ema_span_1": 1195.2518215202156, - "enabled": true, - "initial_eprice_ema_dist": -0.0096881787756797, - "initial_qty_pct": 0.006825144849256261, - "markup_range": 0.0025379533703321624, - "min_markup": 0.002319783402850734, - "n_close_orders": 3, - "rentry_pprice_dist": 0.037036963691665876, - "rentry_pprice_dist_wallet_exposure_weighting": 2.822434337163259, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000XECUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1000XECUSDT.json deleted file mode 100644 index 5273ce72a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2013871609225149, - "ema_span_0": 1255.2480349430573, - "ema_span_1": 838.8453517765862, - "enabled": true, - "initial_eprice_ema_dist": 0.002980140322476089, - "initial_qty_pct": 0.008627201932267185, - "markup_range": 0.001138146991559723, - "min_markup": 0.0019619594653723436, - "n_close_orders": 16, - "rentry_pprice_dist": 0.024891004401750596, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0060136291080017295, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/1INCHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/1INCHUSDT.json deleted file mode 100644 index dd3997ff8..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1946615545459407, - "ema_span_0": 1318.5446289123033, - "ema_span_1": 1289.561271228651, - "enabled": true, - "initial_eprice_ema_dist": 0.0029990840231062803, - "initial_qty_pct": 0.019198079701195362, - "markup_range": 0.0024402800749482854, - "min_markup": 0.003909302473398212, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03660234125015879, - "rentry_pprice_dist_wallet_exposure_weighting": 5.78332235709517, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AAVEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AAVEUSDT.json deleted file mode 100644 index f36e70b28..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2323714453801804, - "ema_span_0": 698.5601327526128, - "ema_span_1": 807.5052716319987, - "enabled": true, - "initial_eprice_ema_dist": -0.005921499420700241, - "initial_qty_pct": 0.008690960875837135, - "markup_range": 0.003807973674971341, - "min_markup": 0.005656962160368147, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030531166319683525, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6165552896209899, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2013871609225149, - "ema_span_0": 1255.2480349430573, - "ema_span_1": 838.8453517765862, - "enabled": true, - "initial_eprice_ema_dist": 0.002980140322476089, - "initial_qty_pct": 0.008627201932267185, - "markup_range": 0.001138146991559723, - "min_markup": 0.0019619594653723436, - "n_close_orders": 16, - "rentry_pprice_dist": 0.024891004401750596, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0060136291080017295, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ACHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ACHUSDT.json deleted file mode 100644 index 136fcb2ff..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1250357338796583, - "ema_span_0": 911.5048657824906, - "ema_span_1": 587.2273804955296, - "enabled": true, - "initial_eprice_ema_dist": -0.004104164415518372, - "initial_qty_pct": 0.016982593936354522, - "markup_range": 0.008340070303466113, - "min_markup": 0.0054927358606795115, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0397798872003406, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7574987830169673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1893802155685924, - "ema_span_0": 1085.875848372504, - "ema_span_1": 1200.9004549641293, - "enabled": true, - "initial_eprice_ema_dist": 0.001991757534165369, - "initial_qty_pct": 0.009083868220501551, - "markup_range": 0.00987106976996741, - "min_markup": 0.009109781288387365, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03282024165889593, - "rentry_pprice_dist_wallet_exposure_weighting": 4.755959728970233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ADAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ADAUSDT.json deleted file mode 100644 index 4b2447f5a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30108993444385723, - "ema_span_0": 450.4406679469729, - "ema_span_1": 1071.6828975832439, - "enabled": true, - "initial_eprice_ema_dist": -0.004908936845700969, - "initial_qty_pct": 0.005428150209424524, - "markup_range": 0.0004144151117485868, - "min_markup": 0.002038278921248555, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01286414167514065, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3797760203890226, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.188555713506627, - "ema_span_0": 680.1846987216659, - "ema_span_1": 1416.6427278650579, - "enabled": true, - "initial_eprice_ema_dist": 0.0014738558278124085, - "initial_qty_pct": 0.005574170517253556, - "markup_range": 4.328737746592266e-05, - "min_markup": 0.008739480764029356, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03737307538589109, - "rentry_pprice_dist_wallet_exposure_weighting": 4.868521306167907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AGIXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AGIXUSDT.json deleted file mode 100644 index b74054eda..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0221251246758905, - "ema_span_0": 912.2259508831431, - "ema_span_1": 1008.2403932830847, - "enabled": true, - "initial_eprice_ema_dist": -0.00017388900125742685, - "initial_qty_pct": 0.006080155684310265, - "markup_range": 0.0006159699597775149, - "min_markup": 0.004223839159252918, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028464717850108047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3590702464769926, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3791651864238768, - "ema_span_0": 849.6457026181579, - "ema_span_1": 1178.7336900798684, - "enabled": true, - "initial_eprice_ema_dist": -0.001970318935468464, - "initial_qty_pct": 0.011576417883555457, - "markup_range": 0.003556381656652438, - "min_markup": 0.004946815607331975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0334794117114653, - "rentry_pprice_dist_wallet_exposure_weighting": 1.07566756145502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AGLDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AGLDUSDT.json deleted file mode 100644 index db7cb6fb1..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1009479218223154, - "ema_span_0": 775.1685551980484, - "ema_span_1": 528.9675670138131, - "enabled": true, - "initial_eprice_ema_dist": 0.00043057007109410686, - "initial_qty_pct": 0.018514796619851812, - "markup_range": 0.003921708543970103, - "min_markup": 0.004075767305459166, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038139867505577615, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2085578689971372, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.745806692145818, - "ema_span_0": 426.72466691284706, - "ema_span_1": 1367.5283526604446, - "enabled": true, - "initial_eprice_ema_dist": 0.0005735627604568854, - "initial_qty_pct": 0.01627599590305295, - "markup_range": 0.0012752233899955897, - "min_markup": 0.005271373719247575, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03348638998123191, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0725518675298595, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ALGOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ALGOUSDT.json deleted file mode 100644 index 36a9947b4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.626339412251971, - "ema_span_0": 732.537978505191, - "ema_span_1": 783.8350479981731, - "enabled": true, - "initial_eprice_ema_dist": 0.00020249501981268322, - "initial_qty_pct": 0.010395854748402062, - "markup_range": 0.005619463035510733, - "min_markup": 0.0053028226480292505, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03209148183852388, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7485768918486206, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1893802155685924, - "ema_span_0": 1085.875848372504, - "ema_span_1": 1200.9004549641293, - "enabled": true, - "initial_eprice_ema_dist": 0.001991757534165369, - "initial_qty_pct": 0.009083868220501551, - "markup_range": 0.00987106976996741, - "min_markup": 0.009109781288387365, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03282024165889593, - "rentry_pprice_dist_wallet_exposure_weighting": 4.755959728970233, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ALICEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ALICEUSDT.json deleted file mode 100644 index 39b9102e5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4440554404637328, - "ema_span_0": 829.5658957574398, - "ema_span_1": 745.8119169136484, - "enabled": true, - "initial_eprice_ema_dist": -0.004058733976123628, - "initial_qty_pct": 0.009940397988242432, - "markup_range": 0.005500265965850586, - "min_markup": 0.005042150906174887, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03548406411526561, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7584600013586582, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30859245318156914, - "ema_span_0": 1434.1719183383814, - "ema_span_1": 1252.7984725489864, - "enabled": true, - "initial_eprice_ema_dist": -8.987206251674337e-05, - "initial_qty_pct": 0.01940354513912137, - "markup_range": 0.007847236339380413, - "min_markup": 0.009899139198730787, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03828146935395971, - "rentry_pprice_dist_wallet_exposure_weighting": 4.687127692407285, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ALPHAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ALPHAUSDT.json deleted file mode 100644 index c049f7df5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.601946257307737, - "ema_span_0": 679.2060560720818, - "ema_span_1": 462.907807880856, - "enabled": true, - "initial_eprice_ema_dist": 0.0005106757826778502, - "initial_qty_pct": 0.009306173562107653, - "markup_range": 0.00422384028121732, - "min_markup": 0.007869925407053923, - "n_close_orders": 13, - "rentry_pprice_dist": 0.029257341464954713, - "rentry_pprice_dist_wallet_exposure_weighting": 4.027294408035432, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11775816832083302, - "ema_span_0": 1310.9515544137532, - "ema_span_1": 1287.881124977336, - "enabled": true, - "initial_eprice_ema_dist": 0.0009637295842831199, - "initial_qty_pct": 0.015645387482417377, - "markup_range": 0.002121231901763195, - "min_markup": 0.002279287340507164, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040914696573318816, - "rentry_pprice_dist_wallet_exposure_weighting": 6.973796802342527, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AMBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AMBUSDT.json deleted file mode 100644 index f35c699a5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2256919206736003, - "ema_span_0": 1101.5036131447491, - "ema_span_1": 462.7274875789373, - "enabled": true, - "initial_eprice_ema_dist": -0.0034303471516296093, - "initial_qty_pct": 0.016574094562677267, - "markup_range": 0.005653899702441475, - "min_markup": 0.007474268355254473, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03531314859729816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3733321988478504, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9958935241159512, - "ema_span_0": 761.3789807812936, - "ema_span_1": 1184.427031266694, - "enabled": true, - "initial_eprice_ema_dist": -0.007591596898360642, - "initial_qty_pct": 0.01113775250458756, - "markup_range": 0.0005100610708108653, - "min_markup": 0.0030030174671310476, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023674760227035803, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132685040383516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ANKRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ANKRUSDT.json deleted file mode 100644 index 7211721a0..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.784155833749645, - "ema_span_0": 1175.0408031157326, - "ema_span_1": 1353.9049932298228, - "enabled": true, - "initial_eprice_ema_dist": 0.0009505367688301806, - "initial_qty_pct": 0.009909758490419867, - "markup_range": 0.0037141490034148404, - "min_markup": 0.0014754374933976838, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02565383672658946, - "rentry_pprice_dist_wallet_exposure_weighting": 1.565745514963549, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21322450139030596, - "ema_span_0": 935.4856894610932, - "ema_span_1": 866.5374841520046, - "enabled": true, - "initial_eprice_ema_dist": 0.0028889026763033107, - "initial_qty_pct": 0.01999661977533198, - "markup_range": 0.0013243611086657127, - "min_markup": 0.008166844437197807, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03760828815663454, - "rentry_pprice_dist_wallet_exposure_weighting": 6.710328817287049, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ANTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ANTUSDT.json deleted file mode 100644 index 3cb846f81..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5619031685602304, - "ema_span_0": 1261.329166220125, - "ema_span_1": 762.3907336290989, - "enabled": true, - "initial_eprice_ema_dist": 0.001644313790621044, - "initial_qty_pct": 0.00900560625196739, - "markup_range": 0.0024211138379159037, - "min_markup": 0.0013842454017804833, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044171285980154906, - "rentry_pprice_dist_wallet_exposure_weighting": 2.623165726329451, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11775816832083302, - "ema_span_0": 1310.9515544137532, - "ema_span_1": 1287.881124977336, - "enabled": true, - "initial_eprice_ema_dist": 0.0009637295842831199, - "initial_qty_pct": 0.015645387482417377, - "markup_range": 0.002121231901763195, - "min_markup": 0.002279287340507164, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040914696573318816, - "rentry_pprice_dist_wallet_exposure_weighting": 6.973796802342527, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/APEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/APEUSDT.json deleted file mode 100644 index 191f2290c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.494823228790086, - "ema_span_0": 1435.201227311355, - "ema_span_1": 1281.6972579366216, - "enabled": true, - "initial_eprice_ema_dist": -0.0029005110725144555, - "initial_qty_pct": 0.013611299040416684, - "markup_range": 0.0012958261981936476, - "min_markup": 0.003701454169828314, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03959009013981101, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3273215926270416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6334869736915982, - "ema_span_0": 695.5601468647546, - "ema_span_1": 842.4799854191405, - "enabled": true, - "initial_eprice_ema_dist": 0.0008118813879307309, - "initial_qty_pct": 0.0074489024423807565, - "markup_range": 0.0009236910698588863, - "min_markup": 0.009197917746299505, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034760190290755506, - "rentry_pprice_dist_wallet_exposure_weighting": 4.076630168149809, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/API3USDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/API3USDT.json deleted file mode 100644 index f4e3ac3b8..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6970682211002261, - "ema_span_0": 824.6294228638478, - "ema_span_1": 665.6060379779635, - "enabled": true, - "initial_eprice_ema_dist": 0.0029958630061544538, - "initial_qty_pct": 0.007763454128866125, - "markup_range": 0.0035434379382813432, - "min_markup": 0.0036254490685249997, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03190242925450784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.272443014834707, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6106139474445618, - "ema_span_0": 540.0123965694439, - "ema_span_1": 1431.1516061766247, - "enabled": true, - "initial_eprice_ema_dist": 0.002999545897493819, - "initial_qty_pct": 0.008277220657571102, - "markup_range": 0.0006673627185602962, - "min_markup": 0.0012378932717199344, - "n_close_orders": 7, - "rentry_pprice_dist": 0.054289228939704684, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49971742053853463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/APTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/APTUSDT.json deleted file mode 100644 index 84f4a538e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4648345909245368, - "ema_span_0": 731.1641654759205, - "ema_span_1": 1401.2055600660842, - "enabled": true, - "initial_eprice_ema_dist": -0.006024315917198597, - "initial_qty_pct": 0.006445356817094231, - "markup_range": 0.004859395636862858, - "min_markup": 0.005488801258318786, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02995818318839077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.999159961134586, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3252969009193714, - "ema_span_0": 1274.066568885679, - "ema_span_1": 1177.2507885567413, - "enabled": true, - "initial_eprice_ema_dist": -0.008363536940436213, - "initial_qty_pct": 0.0051851525858614645, - "markup_range": 0.0022468362341934475, - "min_markup": 0.002819749838116762, - "n_close_orders": 7, - "rentry_pprice_dist": 0.046283326872007084, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1151821345163894, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ARBUSDT.json deleted file mode 100644 index 205cb2505..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18019205628271512, - "ema_span_0": 534.5492787919588, - "ema_span_1": 526.2165293023638, - "enabled": true, - "initial_eprice_ema_dist": -0.005660659913679484, - "initial_qty_pct": 0.013950521433389056, - "markup_range": 0.0033846665329454913, - "min_markup": 0.003731847621795424, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016985622879874054, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424033445206709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3406645847400225, - "ema_span_0": 1101.907341153422, - "ema_span_1": 891.0252453593743, - "enabled": true, - "initial_eprice_ema_dist": 0.002062236282977762, - "initial_qty_pct": 0.0068616831944981515, - "markup_range": 0.003370050939301824, - "min_markup": 0.0036505146264338736, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029400067384880813, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5745779907915507, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARKMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ARKMUSDT.json deleted file mode 100644 index d514c9d26..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7750106431223234, - "ema_span_0": 581.3553790546858, - "ema_span_1": 575.2479198694201, - "enabled": true, - "initial_eprice_ema_dist": 0.0015903059196145772, - "initial_qty_pct": 0.019874281867488037, - "markup_range": 0.003827735451067156, - "min_markup": 0.0024326133652013016, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03701020627167878, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9432556882239647, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.235696752780167, - "ema_span_0": 1427.8029367041474, - "ema_span_1": 989.1351223190757, - "enabled": true, - "initial_eprice_ema_dist": -0.005340211910044059, - "initial_qty_pct": 0.007313025292972939, - "markup_range": 0.008901672553121827, - "min_markup": 0.005422684763450301, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494558832972968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310977910024807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ARKUSDT.json deleted file mode 100644 index bc2153f6c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.689912164924663, - "ema_span_0": 1411.0253303053623, - "ema_span_1": 1369.8977373730422, - "enabled": true, - "initial_eprice_ema_dist": -0.0011674841584428332, - "initial_qty_pct": 0.013767221949558803, - "markup_range": 0.006710534306328603, - "min_markup": 0.00936155727203136, - "n_close_orders": 3, - "rentry_pprice_dist": 0.036017277502864375, - "rentry_pprice_dist_wallet_exposure_weighting": 6.075846254622623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARPAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ARPAUSDT.json deleted file mode 100644 index c5458a5a3..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8436564470093553, - "ema_span_0": 697.791396673915, - "ema_span_1": 732.654294932861, - "enabled": true, - "initial_eprice_ema_dist": -0.007565573843539482, - "initial_qty_pct": 0.005822042038729934, - "markup_range": 0.005186004464713603, - "min_markup": 0.004399182647920236, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029198583168471872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3064578047854982, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.654569307665235, - "ema_span_0": 608.1273555909727, - "ema_span_1": 1163.7972534186836, - "enabled": true, - "initial_eprice_ema_dist": -0.003957845462116394, - "initial_qty_pct": 0.005000751213776687, - "markup_range": 0.0018042417459693128, - "min_markup": 0.0011170950983336466, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014859637802946012, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2320296467134297, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ARUSDT.json deleted file mode 100644 index 424c57984..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.086731723078385, - "ema_span_0": 551.8888254765498, - "ema_span_1": 655.6800360150555, - "enabled": true, - "initial_eprice_ema_dist": -0.0038711784866043786, - "initial_qty_pct": 0.007906162508990414, - "markup_range": 0.007523767860505048, - "min_markup": 0.004195136349782745, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03865774199065825, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6249305768065143, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9666455285132008, - "ema_span_0": 749.5556681060626, - "ema_span_1": 1281.5796264232197, - "enabled": true, - "initial_eprice_ema_dist": -0.0006371902893265684, - "initial_qty_pct": 0.01529321728480354, - "markup_range": 0.0031192914001468043, - "min_markup": 0.005608917835450441, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375270496431996, - "rentry_pprice_dist_wallet_exposure_weighting": 5.643360405005932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ASTRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ASTRUSDT.json deleted file mode 100644 index 3ec26591f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206242766548868, - "ema_span_0": 917.3708939136229, - "ema_span_1": 1321.1310185893055, - "enabled": true, - "initial_eprice_ema_dist": -0.004079844677879833, - "initial_qty_pct": 0.010808465659587214, - "markup_range": 0.0008065455976179746, - "min_markup": 0.001266492092352165, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01854559140707636, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9172077445733564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11775816832083302, - "ema_span_0": 1310.9515544137532, - "ema_span_1": 1287.881124977336, - "enabled": true, - "initial_eprice_ema_dist": 0.0009637295842831199, - "initial_qty_pct": 0.015645387482417377, - "markup_range": 0.002121231901763195, - "min_markup": 0.002279287340507164, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040914696573318816, - "rentry_pprice_dist_wallet_exposure_weighting": 6.973796802342527, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ATAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ATAUSDT.json deleted file mode 100644 index ad336c479..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2030884200919085, - "ema_span_0": 1099.9242059471053, - "ema_span_1": 1099.8047597962877, - "enabled": true, - "initial_eprice_ema_dist": -0.007736859149265648, - "initial_qty_pct": 0.006509782639342933, - "markup_range": 0.00435833380550507, - "min_markup": 0.00498501536153391, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0340439745986292, - "rentry_pprice_dist_wallet_exposure_weighting": 4.3362662049554554, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273198163927014, - "ema_span_0": 851.5056353333787, - "ema_span_1": 1318.331522256712, - "enabled": true, - "initial_eprice_ema_dist": -0.008568952195744677, - "initial_qty_pct": 0.005466290393975134, - "markup_range": 0.009236640075707844, - "min_markup": 0.002816493298217054, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321118772775666, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5023140467224514, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ATOMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ATOMUSDT.json deleted file mode 100644 index 76a1c7401..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5736298274894174, - "ema_span_0": 625.2470327281831, - "ema_span_1": 647.7403011561087, - "enabled": true, - "initial_eprice_ema_dist": -0.0011806343476836398, - "initial_qty_pct": 0.007822923798774774, - "markup_range": 0.0014977785956921392, - "min_markup": 0.004294769867465393, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026254389513060937, - "rentry_pprice_dist_wallet_exposure_weighting": 3.927995885522945, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320735056232349, - "ema_span_0": 1377.7338140853751, - "ema_span_1": 1315.72788196419, - "enabled": true, - "initial_eprice_ema_dist": -0.005557970672093364, - "initial_qty_pct": 0.014696599957221824, - "markup_range": 0.0041499510581069, - "min_markup": 0.003450766991245179, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243317882260661, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040504812283739, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AUDIOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AUDIOUSDT.json deleted file mode 100644 index 3060f8d43..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.008411151222328, - "ema_span_0": 931.9099417876482, - "ema_span_1": 1146.649158467737, - "enabled": true, - "initial_eprice_ema_dist": -0.002367571903723875, - "initial_qty_pct": 0.01154784289355355, - "markup_range": 0.0017249108387440762, - "min_markup": 0.006021751363220017, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03691671195992522, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5481971136523165, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.11775816832083302, - "ema_span_0": 1310.9515544137532, - "ema_span_1": 1287.881124977336, - "enabled": true, - "initial_eprice_ema_dist": 0.0009637295842831199, - "initial_qty_pct": 0.015645387482417377, - "markup_range": 0.002121231901763195, - "min_markup": 0.002279287340507164, - "n_close_orders": 4, - "rentry_pprice_dist": 0.040914696573318816, - "rentry_pprice_dist_wallet_exposure_weighting": 6.973796802342527, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AVAXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AVAXUSDT.json deleted file mode 100644 index 44096228f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0221251246758905, - "ema_span_0": 912.2259508831431, - "ema_span_1": 1008.2403932830847, - "enabled": true, - "initial_eprice_ema_dist": -0.00017388900125742685, - "initial_qty_pct": 0.006080155684310265, - "markup_range": 0.0006159699597775149, - "min_markup": 0.004223839159252918, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028464717850108047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3590702464769926, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0192875436980582, - "ema_span_0": 1032.8994654624103, - "ema_span_1": 1385.4072381523056, - "enabled": true, - "initial_eprice_ema_dist": 0.002971254160538454, - "initial_qty_pct": 0.012277579255860049, - "markup_range": 0.008361957268469266, - "min_markup": 0.006450754889495843, - "n_close_orders": 2, - "rentry_pprice_dist": 0.048769217740130474, - "rentry_pprice_dist_wallet_exposure_weighting": 2.312930173639497, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/AXSUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/AXSUSDT.json deleted file mode 100644 index 1b5e6af17..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8523939577450942, - "ema_span_0": 826.8069540020092, - "ema_span_1": 973.2985551893474, - "enabled": true, - "initial_eprice_ema_dist": -0.0007635613112937079, - "initial_qty_pct": 0.009517117110908333, - "markup_range": 0.0028107382694230903, - "min_markup": 0.005045101342684657, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03333036126012268, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1747509145484787, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6106139474445618, - "ema_span_0": 540.0123965694439, - "ema_span_1": 1431.1516061766247, - "enabled": true, - "initial_eprice_ema_dist": 0.002999545897493819, - "initial_qty_pct": 0.008277220657571102, - "markup_range": 0.0006673627185602962, - "min_markup": 0.0012378932717199344, - "n_close_orders": 7, - "rentry_pprice_dist": 0.054289228939704684, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49971742053853463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BADGERUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BADGERUSDT.json deleted file mode 100644 index c34bf7a99..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BADGERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8339897013364591, - "ema_span_0": 1250.76886069086, - "ema_span_1": 703.6394157557396, - "enabled": true, - "initial_eprice_ema_dist": -0.008349637903638756, - "initial_qty_pct": 0.007313025292972939, - "markup_range": 0.0023644557940525612, - "min_markup": 0.00936155727203136, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0192392914219942, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9606374707515837, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BAKEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BAKEUSDT.json deleted file mode 100644 index 00cbb7590..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7173484818920766, - "ema_span_0": 846.6918065058243, - "ema_span_1": 1257.689950473755, - "enabled": true, - "initial_eprice_ema_dist": 0.00032612805408514177, - "initial_qty_pct": 0.0073900984595696734, - "markup_range": 0.0005466301391330323, - "min_markup": 0.002709031406513354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03345079206319907, - "rentry_pprice_dist_wallet_exposure_weighting": 4.866621721915447, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6722644495757322, - "ema_span_0": 1035.8112690069995, - "ema_span_1": 1428.3423868955856, - "enabled": true, - "initial_eprice_ema_dist": 0.002997025215600329, - "initial_qty_pct": 0.006638879783996336, - "markup_range": 4.141954555737774e-05, - "min_markup": 0.001193102132730302, - "n_close_orders": 8, - "rentry_pprice_dist": 0.054929591831113136, - "rentry_pprice_dist_wallet_exposure_weighting": 5.629906224842371, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BALUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BALUSDT.json deleted file mode 100644 index a821845e3..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 953.7879563079778, - "ema_span_1": 940.4626360358659, - "enabled": true, - "initial_eprice_ema_dist": -0.003820216038838927, - "initial_qty_pct": 0.006368610907384597, - "markup_range": 0.005537120939533476, - "min_markup": 0.004964413218946407, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03951549958138876, - "rentry_pprice_dist_wallet_exposure_weighting": 0.13439867337899522, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5484404490821884, - "ema_span_0": 1265.2046920489242, - "ema_span_1": 747.0709866841762, - "enabled": true, - "initial_eprice_ema_dist": 0.0029641314861277215, - "initial_qty_pct": 0.006034866176370064, - "markup_range": 0.004497930214807225, - "min_markup": 0.007353822060384097, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04862215500536045, - "rentry_pprice_dist_wallet_exposure_weighting": 3.886588864265925, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BANDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BANDUSDT.json deleted file mode 100644 index fea90fe0b..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2680467937977629, - "ema_span_0": 439.16684320630895, - "ema_span_1": 502.9076983755037, - "enabled": true, - "initial_eprice_ema_dist": -0.0028053611011727, - "initial_qty_pct": 0.01587853856036197, - "markup_range": 0.0061264398228227015, - "min_markup": 0.006070149269617435, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04711784373529613, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4020212493256846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.67991752235889, - "ema_span_0": 593.929812914102, - "ema_span_1": 741.4842600483224, - "enabled": true, - "initial_eprice_ema_dist": 0.0013744438601003997, - "initial_qty_pct": 0.02, - "markup_range": 0.0034667360150093685, - "min_markup": 0.004006731664747872, - "n_close_orders": 10, - "rentry_pprice_dist": 0.055419236773849995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.439286521103501, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BATUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BATUSDT.json deleted file mode 100644 index a11645b88..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3826507776606123, - "ema_span_0": 963.2540003407426, - "ema_span_1": 802.1996503062062, - "enabled": true, - "initial_eprice_ema_dist": -0.0019788354643194145, - "initial_qty_pct": 0.007581971059035189, - "markup_range": 0.00329364775953301, - "min_markup": 0.007908431827070904, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03778390386772886, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4983616684476435, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9096882693184065, - "ema_span_0": 725.4853256941044, - "ema_span_1": 1165.6555990547017, - "enabled": true, - "initial_eprice_ema_dist": 0.0021667958892405484, - "initial_qty_pct": 0.006613662603725277, - "markup_range": 4.069142357194305e-05, - "min_markup": 0.0019250821320548582, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048696259243225466, - "rentry_pprice_dist_wallet_exposure_weighting": 5.34175213638984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BCHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BCHUSDT.json deleted file mode 100644 index 3f7b6bde3..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.494823228790086, - "ema_span_0": 1435.201227311355, - "ema_span_1": 1281.6972579366216, - "enabled": true, - "initial_eprice_ema_dist": -0.0029005110725144555, - "initial_qty_pct": 0.013611299040416684, - "markup_range": 0.0012958261981936476, - "min_markup": 0.003701454169828314, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03959009013981101, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3273215926270416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.507201210881818, - "ema_span_0": 1291.0353590090895, - "ema_span_1": 1408.534155951322, - "enabled": true, - "initial_eprice_ema_dist": -6.981022249257062e-05, - "initial_qty_pct": 0.007991981097936243, - "markup_range": 0.0074784678600192025, - "min_markup": 0.0037408014722810612, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03090707768869273, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8160685526605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BEAMXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BEAMXUSDT.json deleted file mode 100644 index 6233ccb91..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BEAMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.056664649985533, - "ema_span_0": 471.6447586785013, - "ema_span_1": 1168.88950534664, - "enabled": true, - "initial_eprice_ema_dist": -0.006573257708820409, - "initial_qty_pct": 0.011746613171119063, - "markup_range": 0.0047047561401711135, - "min_markup": 0.007683070220930499, - "n_close_orders": 7, - "rentry_pprice_dist": 0.035331840113413664, - "rentry_pprice_dist_wallet_exposure_weighting": 2.725951577199605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BELUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BELUSDT.json deleted file mode 100644 index d38d7336e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1063426644375278, - "ema_span_0": 1187.2572789141848, - "ema_span_1": 1061.1734951051355, - "enabled": true, - "initial_eprice_ema_dist": 7.281380161706847e-05, - "initial_qty_pct": 0.018555881105089257, - "markup_range": 0.0018346820007118449, - "min_markup": 0.0022505217723157887, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0474345378567378, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2977721641622809, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45715312207423775, - "ema_span_0": 1314.4276667704594, - "ema_span_1": 1203.5027271369152, - "enabled": true, - "initial_eprice_ema_dist": 0.0005321104698602545, - "initial_qty_pct": 0.009132237663235463, - "markup_range": 0.0036636444859870078, - "min_markup": 0.008611154869308827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04907939979814107, - "rentry_pprice_dist_wallet_exposure_weighting": 6.648595895886412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BICOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BICOUSDT.json deleted file mode 100644 index 87a1f8310..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BICOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BIGTIMEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BIGTIMEUSDT.json deleted file mode 100644 index 8fe96f7b5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BIGTIMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.832488058065092, - "ema_span_0": 1354.3965177487773, - "ema_span_1": 1342.0391460300264, - "enabled": true, - "initial_eprice_ema_dist": -0.002615275349008593, - "initial_qty_pct": 0.016983219627403706, - "markup_range": 0.0017605169782668297, - "min_markup": 0.005419666825816411, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0282366716033217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0357402681242407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1236112742616142, - "ema_span_0": 1436.1386264388434, - "ema_span_1": 1439.8126479639855, - "enabled": true, - "initial_eprice_ema_dist": -0.0002385572476429997, - "initial_qty_pct": 0.019022575997131648, - "markup_range": 0.0021443528015219994, - "min_markup": 0.006571278295207881, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047255815439786394, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9606374707515837, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BLUEBIRDUSDT.json deleted file mode 100644 index b0a8df88e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206242766548868, - "ema_span_0": 917.3708939136229, - "ema_span_1": 1321.1310185893055, - "enabled": true, - "initial_eprice_ema_dist": -0.004079844677879833, - "initial_qty_pct": 0.010808465659587214, - "markup_range": 0.0008065455976179746, - "min_markup": 0.001266492092352165, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01854559140707636, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9172077445733564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4291645634432717, - "ema_span_0": 1133.5466412287071, - "ema_span_1": 1091.6201077631574, - "enabled": true, - "initial_eprice_ema_dist": -0.0040822628446483405, - "initial_qty_pct": 0.006548952994104304, - "markup_range": 0.002380396714429824, - "min_markup": 0.001101245697118944, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02378873694425675, - "rentry_pprice_dist_wallet_exposure_weighting": 4.607633155394581, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BLURUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BLURUSDT.json deleted file mode 100644 index 1f262b26c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.626339412251971, - "ema_span_0": 732.537978505191, - "ema_span_1": 783.8350479981731, - "enabled": true, - "initial_eprice_ema_dist": 0.00020249501981268322, - "initial_qty_pct": 0.010395854748402062, - "markup_range": 0.005619463035510733, - "min_markup": 0.0053028226480292505, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03209148183852388, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7485768918486206, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0404863690445394, - "ema_span_0": 508.8138146540647, - "ema_span_1": 1405.6476023947666, - "enabled": true, - "initial_eprice_ema_dist": -0.002069637735690762, - "initial_qty_pct": 0.00793227650564069, - "markup_range": 0.0034936225017886307, - "min_markup": 0.004201652198626002, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021273347464579075, - "rentry_pprice_dist_wallet_exposure_weighting": 5.456605278937464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BLZUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BLZUSDT.json deleted file mode 100644 index 8ddfc0d4c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.757550701392332, - "ema_span_0": 656.8997356830669, - "ema_span_1": 593.5725950186251, - "enabled": true, - "initial_eprice_ema_dist": -0.0011078371638891219, - "initial_qty_pct": 0.010379897004105068, - "markup_range": 0.0023950023310377153, - "min_markup": 0.005122238543907485, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03597516707295339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.612998503792191, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8505943895608667, - "ema_span_0": 1190.387845533543, - "ema_span_1": 1190.7076800950892, - "enabled": true, - "initial_eprice_ema_dist": 0.0019181575219607528, - "initial_qty_pct": 0.0176979156857322, - "markup_range": 0.0028773584463093996, - "min_markup": 0.006638375172053945, - "n_close_orders": 9, - "rentry_pprice_dist": 0.053603374846468294, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8967366598662885, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BNBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BNBUSDT.json deleted file mode 100644 index f7cdb34ec..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6935416815638322, - "ema_span_0": 1166.9336687903944, - "ema_span_1": 1409.5845104450193, - "enabled": true, - "initial_eprice_ema_dist": 0.0019810800158855334, - "initial_qty_pct": 0.016530773112349937, - "markup_range": 0.00133965557458907, - "min_markup": 0.0020967223833583603, - "n_close_orders": 15, - "rentry_pprice_dist": 0.022303289640880568, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5942690515355142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7084211309851294, - "ema_span_0": 1336.8263316648622, - "ema_span_1": 1220.6279028887634, - "enabled": true, - "initial_eprice_ema_dist": 0.002999123295498026, - "initial_qty_pct": 0.006864779772121913, - "markup_range": 0.0017360139301640148, - "min_markup": 0.0021724431727941636, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02344395737092809, - "rentry_pprice_dist_wallet_exposure_weighting": 4.001473849346777, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BNTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BNTUSDT.json deleted file mode 100644 index 8ef875ae4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9991554731811703, - "ema_span_0": 1116.142795275561, - "ema_span_1": 763.837190909602, - "enabled": true, - "initial_eprice_ema_dist": -0.004904598208907616, - "initial_qty_pct": 0.016144720977643173, - "markup_range": 0.0006361809712322564, - "min_markup": 0.0029965042049443775, - "n_close_orders": 6, - "rentry_pprice_dist": 0.026810227133194513, - "rentry_pprice_dist_wallet_exposure_weighting": 4.344101627721864, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BNXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BNXUSDT.json deleted file mode 100644 index adb67d067..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7660476198306834, - "ema_span_0": 1370.0735071165946, - "ema_span_1": 1367.620967449746, - "enabled": true, - "initial_eprice_ema_dist": 0.002616063853460125, - "initial_qty_pct": 0.0182430417837314, - "markup_range": 7.57243905269582e-06, - "min_markup": 0.0010289274837848917, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027945228701002828, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4751824433880456, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BONDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BONDUSDT.json deleted file mode 100644 index b6045403b..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BONDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18019205628271512, - "ema_span_0": 534.5492787919588, - "ema_span_1": 526.2165293023638, - "enabled": true, - "initial_eprice_ema_dist": -0.005660659913679484, - "initial_qty_pct": 0.013950521433389056, - "markup_range": 0.0033846665329454913, - "min_markup": 0.003731847621795424, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016985622879874054, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424033445206709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2285474773034974, - "ema_span_0": 910.1991296474632, - "ema_span_1": 1156.2972444107575, - "enabled": true, - "initial_eprice_ema_dist": 0.002595630124460573, - "initial_qty_pct": 0.014167721703075573, - "markup_range": 0.00172601526842613, - "min_markup": 0.002631013158127875, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03652117762737971, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7884443726057944, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BSVUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BSVUSDT.json deleted file mode 100644 index 5fa87719f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032776664775772, - "ema_span_0": 602.33034596505, - "ema_span_1": 592.9054544845752, - "enabled": true, - "initial_eprice_ema_dist": -0.006686331686418298, - "initial_qty_pct": 0.019326850484717484, - "markup_range": 0.003465884369896487, - "min_markup": 0.004260650451596385, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02454199009973456, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6236545139944023, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7460868823246048, - "ema_span_0": 512.4732120181827, - "ema_span_1": 568.655079654436, - "enabled": true, - "initial_eprice_ema_dist": -0.006390691286739958, - "initial_qty_pct": 0.011006508307210925, - "markup_range": 0.004667511789597811, - "min_markup": 0.004183648550354828, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026035667751698716, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23782093280234554, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BTCDOMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BTCDOMUSDT.json deleted file mode 100644 index 39699e8fd..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30108993444385723, - "ema_span_0": 450.4406679469729, - "ema_span_1": 1071.6828975832439, - "enabled": true, - "initial_eprice_ema_dist": -0.004908936845700969, - "initial_qty_pct": 0.005428150209424524, - "markup_range": 0.0004144151117485868, - "min_markup": 0.002038278921248555, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01286414167514065, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3797760203890226, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4291645634432717, - "ema_span_0": 1133.5466412287071, - "ema_span_1": 1091.6201077631574, - "enabled": true, - "initial_eprice_ema_dist": -0.0040822628446483405, - "initial_qty_pct": 0.006548952994104304, - "markup_range": 0.002380396714429824, - "min_markup": 0.001101245697118944, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02378873694425675, - "rentry_pprice_dist_wallet_exposure_weighting": 4.607633155394581, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/BTCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/BTCUSDT.json deleted file mode 100644 index dba386131..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7855644349912533, - "ema_span_0": 1246.0916885708134, - "ema_span_1": 1155.4485962711967, - "enabled": true, - "initial_eprice_ema_dist": -0.0002780738224889087, - "initial_qty_pct": 0.014384412697112728, - "markup_range": 0.0028082853537282986, - "min_markup": 0.002781730617860171, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02091927033145736, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2741837974545382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.824010889354615, - "ema_span_0": 668.4791978282874, - "ema_span_1": 1100.6743726560933, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.00017041521132076496, - "min_markup": 0.0015067320644080204, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025352022876576147, - "rentry_pprice_dist_wallet_exposure_weighting": 4.485829797874352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/C98USDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/C98USDT.json deleted file mode 100644 index 225b285d9..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9892011135965713, - "ema_span_0": 875.956183867657, - "ema_span_1": 872.3335331755394, - "enabled": true, - "initial_eprice_ema_dist": -0.007800837596464441, - "initial_qty_pct": 0.005662169890086724, - "markup_range": 0.0026706470618728232, - "min_markup": 0.008263373176973749, - "n_close_orders": 15, - "rentry_pprice_dist": 0.05852655500879667, - "rentry_pprice_dist_wallet_exposure_weighting": 2.930748730854311, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30859245318156914, - "ema_span_0": 1434.1719183383814, - "ema_span_1": 1252.7984725489864, - "enabled": true, - "initial_eprice_ema_dist": -8.987206251674337e-05, - "initial_qty_pct": 0.01940354513912137, - "markup_range": 0.007847236339380413, - "min_markup": 0.009899139198730787, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03828146935395971, - "rentry_pprice_dist_wallet_exposure_weighting": 4.687127692407285, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CAKEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CAKEUSDT.json deleted file mode 100644 index a5f3f1a71..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.77990910296944, - "ema_span_1": 481.40264702069203, - "enabled": true, - "initial_eprice_ema_dist": -0.007907952187919867, - "initial_qty_pct": 0.006943791878564269, - "markup_range": 0.004328720747878866, - "min_markup": 0.0045810740938474, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051668186614655, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7835198819831177, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CELOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CELOUSDT.json deleted file mode 100644 index 728312d0c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6970682211002261, - "ema_span_0": 824.6294228638478, - "ema_span_1": 665.6060379779635, - "enabled": true, - "initial_eprice_ema_dist": 0.0029958630061544538, - "initial_qty_pct": 0.007763454128866125, - "markup_range": 0.0035434379382813432, - "min_markup": 0.0036254490685249997, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03190242925450784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.272443014834707, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.040644160398579, - "ema_span_0": 1115.3112271179605, - "ema_span_1": 592.7646321548445, - "enabled": true, - "initial_eprice_ema_dist": -0.002300909049115994, - "initial_qty_pct": 0.0069369262029872975, - "markup_range": 0.007227420925775015, - "min_markup": 0.004564193433975704, - "n_close_orders": 2, - "rentry_pprice_dist": 0.026816797408983375, - "rentry_pprice_dist_wallet_exposure_weighting": 4.005882486829598, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CELRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CELRUSDT.json deleted file mode 100644 index ee48ab91f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2256919206736003, - "ema_span_0": 1101.5036131447491, - "ema_span_1": 462.7274875789373, - "enabled": true, - "initial_eprice_ema_dist": -0.0034303471516296093, - "initial_qty_pct": 0.016574094562677267, - "markup_range": 0.005653899702441475, - "min_markup": 0.007474268355254473, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03531314859729816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3733321988478504, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273198163927014, - "ema_span_0": 851.5056353333787, - "ema_span_1": 1318.331522256712, - "enabled": true, - "initial_eprice_ema_dist": -0.008568952195744677, - "initial_qty_pct": 0.005466290393975134, - "markup_range": 0.009236640075707844, - "min_markup": 0.002816493298217054, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321118772775666, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5023140467224514, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CFXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CFXUSDT.json deleted file mode 100644 index 148ccebb3..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4508673797138316, - "ema_span_0": 995.9623499439299, - "ema_span_1": 746.3830247953897, - "enabled": true, - "initial_eprice_ema_dist": -0.008071301081133964, - "initial_qty_pct": 0.005369471436440499, - "markup_range": 0.001110867402070223, - "min_markup": 0.00520649031408648, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029825605900795853, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1402535652882007, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.824010889354615, - "ema_span_0": 668.4791978282874, - "ema_span_1": 1100.6743726560933, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.00017041521132076496, - "min_markup": 0.0015067320644080204, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025352022876576147, - "rentry_pprice_dist_wallet_exposure_weighting": 4.485829797874352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CHRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CHRUSDT.json deleted file mode 100644 index 96c446413..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.626887886798055, - "ema_span_0": 1312.3621774300395, - "ema_span_1": 1232.1162098280477, - "enabled": true, - "initial_eprice_ema_dist": -0.0021442214911262794, - "initial_qty_pct": 0.009092273530899793, - "markup_range": 0.0063789955121524656, - "min_markup": 0.00783771503771136, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03235829516149942, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9531624761861326, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8339897013364591, - "ema_span_0": 1133.3233979176964, - "ema_span_1": 1103.2304621397645, - "enabled": true, - "initial_eprice_ema_dist": -0.004765780652515871, - "initial_qty_pct": 0.013451535078292828, - "markup_range": 0.007432047760257556, - "min_markup": 0.009059242459340549, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03962514525133902, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6282740949724641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CHZUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CHZUSDT.json deleted file mode 100644 index ee1f04266..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7173484818920766, - "ema_span_0": 846.6918065058243, - "ema_span_1": 1257.689950473755, - "enabled": true, - "initial_eprice_ema_dist": 0.00032612805408514177, - "initial_qty_pct": 0.0073900984595696734, - "markup_range": 0.0005466301391330323, - "min_markup": 0.002709031406513354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03345079206319907, - "rentry_pprice_dist_wallet_exposure_weighting": 4.866621721915447, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38378371619047846, - "ema_span_0": 476.87302804776846, - "ema_span_1": 659.0440415388473, - "enabled": true, - "initial_eprice_ema_dist": 0.0027465316593383447, - "initial_qty_pct": 0.01992762713202853, - "markup_range": 0.006177960747112716, - "min_markup": 0.0052872255954718, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03924649266806704, - "rentry_pprice_dist_wallet_exposure_weighting": 6.806768694019017, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CKBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CKBUSDT.json deleted file mode 100644 index 369aaa6a2..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2416241523139757, - "ema_span_0": 1018.3704551777645, - "ema_span_1": 810.0438671816446, - "enabled": true, - "initial_eprice_ema_dist": -0.00868247899434076, - "initial_qty_pct": 0.018701297125973907, - "markup_range": 0.002893755666155936, - "min_markup": 0.0055259173917061085, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019457936794410175, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853050663062912, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/COMBOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/COMBOUSDT.json deleted file mode 100644 index f872bfc8d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2421283026652539, - "ema_span_0": 807.7103711817177, - "ema_span_1": 718.987959942205, - "enabled": true, - "initial_eprice_ema_dist": -0.001837886888110054, - "initial_qty_pct": 0.010728799105224559, - "markup_range": 0.008338352741168086, - "min_markup": 0.006950368713506059, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03787913644652291, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2291753625891539, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.235696752780167, - "ema_span_0": 1427.8029367041474, - "ema_span_1": 989.1351223190757, - "enabled": true, - "initial_eprice_ema_dist": -0.005340211910044059, - "initial_qty_pct": 0.007313025292972939, - "markup_range": 0.008901672553121827, - "min_markup": 0.005422684763450301, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494558832972968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310977910024807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/COMPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/COMPUSDT.json deleted file mode 100644 index 9a0b07673..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2010616448819738, - "ema_span_0": 1005.1193880193073, - "ema_span_1": 1008.9638222422772, - "enabled": true, - "initial_eprice_ema_dist": 0.0011606633834450241, - "initial_qty_pct": 0.009050074422133242, - "markup_range": 0.00286659378694708, - "min_markup": 0.00623357434342159, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03651194456788559, - "rentry_pprice_dist_wallet_exposure_weighting": 3.005283889703562, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4134524017929821, - "ema_span_0": 1288.4049057202112, - "ema_span_1": 1204.3718689311431, - "enabled": true, - "initial_eprice_ema_dist": 0.002508519022970903, - "initial_qty_pct": 0.01123758228201798, - "markup_range": 0.007466158559757927, - "min_markup": 0.008036794650605956, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036614349358860085, - "rentry_pprice_dist_wallet_exposure_weighting": 6.298902173303999, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/COTIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/COTIUSDT.json deleted file mode 100644 index 0018f43e1..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6676031233786508, - "ema_span_0": 1235.9695259181974, - "ema_span_1": 1276.8979712521502, - "enabled": true, - "initial_eprice_ema_dist": -0.0031229179200812124, - "initial_qty_pct": 0.019142454895024138, - "markup_range": 0.00534341590589768, - "min_markup": 0.00532570878831663, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03786633009144583, - "rentry_pprice_dist_wallet_exposure_weighting": 1.015641853361395, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7807382616875167, - "ema_span_0": 1411.6019284592235, - "ema_span_1": 456.8362854381633, - "enabled": true, - "initial_eprice_ema_dist": -0.0037696870241536408, - "initial_qty_pct": 0.015204199637545709, - "markup_range": 0.006657249540542965, - "min_markup": 0.005872323425601706, - "n_close_orders": 8, - "rentry_pprice_dist": 0.036675880431982055, - "rentry_pprice_dist_wallet_exposure_weighting": 5.269966005462712, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CRVUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CRVUSDT.json deleted file mode 100644 index 35a8f01fc..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679242690818959, - "ema_span_0": 1130.1172679402177, - "ema_span_1": 1062.2624148300865, - "enabled": true, - "initial_eprice_ema_dist": 0.0020840887739776584, - "initial_qty_pct": 0.01280580975141579, - "markup_range": 0.0024780225458215866, - "min_markup": 0.007619060594589585, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036387766892450095, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1288907042948102, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6090305061783474, - "ema_span_0": 817.5956820905083, - "ema_span_1": 626.6862284276103, - "enabled": true, - "initial_eprice_ema_dist": 0.0005370906403338774, - "initial_qty_pct": 0.00733498104793331, - "markup_range": 0.006572376103974576, - "min_markup": 0.004690923413572172, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03646188291279932, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8661472919197357, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CTKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CTKUSDT.json deleted file mode 100644 index 2478c2d0c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10034175580923055, - "ema_span_0": 1388.8685259954011, - "ema_span_1": 405.30809885076565, - "enabled": true, - "initial_eprice_ema_dist": -0.008108959996335397, - "initial_qty_pct": 0.015735480081163416, - "markup_range": 0.006132821541294141, - "min_markup": 0.002490059619649027, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026036245744799947, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1291493363502965, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9991554731811703, - "ema_span_0": 1116.142795275561, - "ema_span_1": 763.837190909602, - "enabled": true, - "initial_eprice_ema_dist": -0.004904598208907616, - "initial_qty_pct": 0.016144720977643173, - "markup_range": 0.0006361809712322564, - "min_markup": 0.0029965042049443775, - "n_close_orders": 6, - "rentry_pprice_dist": 0.026810227133194513, - "rentry_pprice_dist_wallet_exposure_weighting": 4.344101627721864, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CTSIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CTSIUSDT.json deleted file mode 100644 index 19ca81530..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.31546696881445296, - "ema_span_0": 681.73237061549, - "ema_span_1": 658.3941307287196, - "enabled": true, - "initial_eprice_ema_dist": 0.0007034089512444596, - "initial_qty_pct": 0.01029915196310068, - "markup_range": 0.002038793612253115, - "min_markup": 0.004088357991427266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02719140553108017, - "rentry_pprice_dist_wallet_exposure_weighting": 5.648333343932799, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6106139474445618, - "ema_span_0": 540.0123965694439, - "ema_span_1": 1431.1516061766247, - "enabled": true, - "initial_eprice_ema_dist": 0.002999545897493819, - "initial_qty_pct": 0.008277220657571102, - "markup_range": 0.0006673627185602962, - "min_markup": 0.0012378932717199344, - "n_close_orders": 7, - "rentry_pprice_dist": 0.054289228939704684, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49971742053853463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CVXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CVXUSDT.json deleted file mode 100644 index b60532373..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7703656550559126, - "ema_span_0": 631.796410292257, - "ema_span_1": 830.2213135974577, - "enabled": true, - "initial_eprice_ema_dist": -0.002108133869984519, - "initial_qty_pct": 0.00631500988633688, - "markup_range": 0.002660005198908099, - "min_markup": 0.005606326790926641, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032466668674912706, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3632733100757943, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.583598248930733, - "ema_span_0": 1380.3902693645273, - "ema_span_1": 1418.3556558860644, - "enabled": true, - "initial_eprice_ema_dist": -0.005954492545243663, - "initial_qty_pct": 0.009298732693751139, - "markup_range": 0.0012905227590980413, - "min_markup": 0.002585064633818879, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030576670595112147, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5961465384180216, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/CYBERUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/CYBERUSDT.json deleted file mode 100644 index 6ea68fbbf..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7855644349912533, - "ema_span_0": 1246.0916885708134, - "ema_span_1": 1155.4485962711967, - "enabled": true, - "initial_eprice_ema_dist": -0.0002780738224889087, - "initial_qty_pct": 0.014384412697112728, - "markup_range": 0.0028082853537282986, - "min_markup": 0.002781730617860171, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02091927033145736, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2741837974545382, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6722644495757322, - "ema_span_0": 1035.8112690069995, - "ema_span_1": 1428.3423868955856, - "enabled": true, - "initial_eprice_ema_dist": 0.002997025215600329, - "initial_qty_pct": 0.006638879783996336, - "markup_range": 4.141954555737774e-05, - "min_markup": 0.001193102132730302, - "n_close_orders": 8, - "rentry_pprice_dist": 0.054929591831113136, - "rentry_pprice_dist_wallet_exposure_weighting": 5.629906224842371, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DARUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DARUSDT.json deleted file mode 100644 index 76fd29bdf..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2253439900997174, - "ema_span_0": 754.8739704066925, - "ema_span_1": 647.9499108699124, - "enabled": true, - "initial_eprice_ema_dist": -0.006936539085744455, - "initial_qty_pct": 0.008491630936171812, - "markup_range": 0.003449702657984847, - "min_markup": 0.005711673779085416, - "n_close_orders": 4, - "rentry_pprice_dist": 0.036607367603404994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1276734827837807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DASHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DASHUSDT.json deleted file mode 100644 index 60f4c9861..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5560072704512888, - "ema_span_0": 480.58504511013405, - "ema_span_1": 584.4248002439504, - "enabled": true, - "initial_eprice_ema_dist": -0.0017755913626368734, - "initial_qty_pct": 0.00848151028572892, - "markup_range": 0.0034049659233737887, - "min_markup": 0.0028368581842737055, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03403901882173844, - "rentry_pprice_dist_wallet_exposure_weighting": 4.239997740277352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8158988178029767, - "ema_span_0": 630.6700219427997, - "ema_span_1": 988.0721029782436, - "enabled": true, - "initial_eprice_ema_dist": -0.0051730670407105035, - "initial_qty_pct": 0.014900701380176646, - "markup_range": 0.00373635516843561, - "min_markup": 0.0036300385320731797, - "n_close_orders": 16, - "rentry_pprice_dist": 0.025179848919236258, - "rentry_pprice_dist_wallet_exposure_weighting": 6.56600867991594, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DEFIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DEFIUSDT.json deleted file mode 100644 index d6cfa6908..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7696383994448681, - "ema_span_0": 543.8289323369627, - "ema_span_1": 684.9779607206501, - "enabled": true, - "initial_eprice_ema_dist": -0.0011350526127570121, - "initial_qty_pct": 0.01720965338406403, - "markup_range": 0.00046551014158509454, - "min_markup": 0.005817044496970332, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03478710633679756, - "rentry_pprice_dist_wallet_exposure_weighting": 2.13141770954979, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.235696752780167, - "ema_span_0": 1427.8029367041474, - "ema_span_1": 989.1351223190757, - "enabled": true, - "initial_eprice_ema_dist": -0.005340211910044059, - "initial_qty_pct": 0.007313025292972939, - "markup_range": 0.008901672553121827, - "min_markup": 0.005422684763450301, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494558832972968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310977910024807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DENTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DENTUSDT.json deleted file mode 100644 index 2f3c36211..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4648345909245368, - "ema_span_0": 731.1641654759205, - "ema_span_1": 1401.2055600660842, - "enabled": true, - "initial_eprice_ema_dist": -0.006024315917198597, - "initial_qty_pct": 0.006445356817094231, - "markup_range": 0.004859395636862858, - "min_markup": 0.005488801258318786, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02995818318839077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.999159961134586, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3406645847400225, - "ema_span_0": 1101.907341153422, - "ema_span_1": 891.0252453593743, - "enabled": true, - "initial_eprice_ema_dist": 0.002062236282977762, - "initial_qty_pct": 0.0068616831944981515, - "markup_range": 0.003370050939301824, - "min_markup": 0.0036505146264338736, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029400067384880813, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5745779907915507, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DGBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DGBUSDT.json deleted file mode 100644 index 3f982b6e0..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7426010315647622, - "ema_span_0": 1149.3313432663253, - "ema_span_1": 1234.22271717947, - "enabled": true, - "initial_eprice_ema_dist": -0.007959777153196337, - "initial_qty_pct": 0.008593620102350272, - "markup_range": 0.0034039984148603974, - "min_markup": 0.0018784806611675136, - "n_close_orders": 12, - "rentry_pprice_dist": 0.033140922439607194, - "rentry_pprice_dist_wallet_exposure_weighting": 4.40930534509353, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2416241523139757, - "ema_span_0": 1018.3704551777645, - "ema_span_1": 810.0438671816446, - "enabled": true, - "initial_eprice_ema_dist": -0.00868247899434076, - "initial_qty_pct": 0.018701297125973907, - "markup_range": 0.002893755666155936, - "min_markup": 0.0055259173917061085, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019457936794410175, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853050663062912, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DODOXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DODOXUSDT.json deleted file mode 100644 index f8ea0a356..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.924570499343246, - "ema_span_0": 1384.7197445260551, - "ema_span_1": 763.837190909602, - "enabled": true, - "initial_eprice_ema_dist": -0.005828055697912706, - "initial_qty_pct": 0.02, - "markup_range": 0.002652788740167997, - "min_markup": 0.0023934903153497544, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03282024165889593, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DOGEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DOGEUSDT.json deleted file mode 100644 index 71d166d75..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18019205628271512, - "ema_span_0": 534.5492787919588, - "ema_span_1": 526.2165293023638, - "enabled": true, - "initial_eprice_ema_dist": -0.005660659913679484, - "initial_qty_pct": 0.013950521433389056, - "markup_range": 0.0033846665329454913, - "min_markup": 0.003731847621795424, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016985622879874054, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424033445206709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.583598248930733, - "ema_span_0": 1380.3902693645273, - "ema_span_1": 1418.3556558860644, - "enabled": true, - "initial_eprice_ema_dist": -0.005954492545243663, - "initial_qty_pct": 0.009298732693751139, - "markup_range": 0.0012905227590980413, - "min_markup": 0.002585064633818879, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030576670595112147, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5961465384180216, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DOTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DOTUSDT.json deleted file mode 100644 index d450003b1..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2167472549265268, - "ema_span_0": 969.1016254149287, - "ema_span_1": 1241.3594631126512, - "enabled": true, - "initial_eprice_ema_dist": -0.005726016980321222, - "initial_qty_pct": 0.011316093685519045, - "markup_range": 0.0034595527012886767, - "min_markup": 0.004016623942232735, - "n_close_orders": 11, - "rentry_pprice_dist": 0.022381067770436327, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4369261087017993, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4291645634432717, - "ema_span_0": 1133.5466412287071, - "ema_span_1": 1091.6201077631574, - "enabled": true, - "initial_eprice_ema_dist": -0.0040822628446483405, - "initial_qty_pct": 0.006548952994104304, - "markup_range": 0.002380396714429824, - "min_markup": 0.001101245697118944, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02378873694425675, - "rentry_pprice_dist_wallet_exposure_weighting": 4.607633155394581, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DUSKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DUSKUSDT.json deleted file mode 100644 index 5c33703f1..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.924570499343246, - "ema_span_0": 552.7434864123568, - "ema_span_1": 953.2176621911838, - "enabled": true, - "initial_eprice_ema_dist": 0.002997587849122748, - "initial_qty_pct": 0.013860495451660461, - "markup_range": 0.002863248395996719, - "min_markup": 0.0025626998554168887, - "n_close_orders": 2, - "rentry_pprice_dist": 0.045903793927038326, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7156866587231256, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/DYDXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/DYDXUSDT.json deleted file mode 100644 index f68d3e1c5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3819283332815897, - "ema_span_0": 835.7733337922807, - "ema_span_1": 865.2249118735288, - "enabled": true, - "initial_eprice_ema_dist": -0.0020759338091898105, - "initial_qty_pct": 0.0060766850107295805, - "markup_range": 0.004500301378165132, - "min_markup": 0.004197653713295645, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02948077279687622, - "rentry_pprice_dist_wallet_exposure_weighting": 5.370954404382843, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5360680814615872, - "ema_span_0": 929.3046958453199, - "ema_span_1": 710.5463559907188, - "enabled": true, - "initial_eprice_ema_dist": -0.0011380674518091465, - "initial_qty_pct": 0.008934377030328705, - "markup_range": 0.003894947245719486, - "min_markup": 0.0053196825769478776, - "n_close_orders": 11, - "rentry_pprice_dist": 0.05275131541691962, - "rentry_pprice_dist_wallet_exposure_weighting": 4.240167183075193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/EDUUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/EDUUSDT.json deleted file mode 100644 index f7899fffc..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/EGLDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/EGLDUSDT.json deleted file mode 100644 index 38519c90f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0965640881007737, - "ema_span_0": 894.5743451091689, - "ema_span_1": 1060.3684027525283, - "enabled": true, - "initial_eprice_ema_dist": -0.0036204388027152173, - "initial_qty_pct": 0.015512057929671292, - "markup_range": 0.0046855891984089685, - "min_markup": 0.0042384830219084554, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027571743708978472, - "rentry_pprice_dist_wallet_exposure_weighting": 2.405052792291445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1339993537192408, - "ema_span_0": 620.8627305199273, - "ema_span_1": 719.3386839010539, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011869176653892203, - "markup_range": 0.000840933966235916, - "min_markup": 0.005214225304351701, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04809614023362284, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ENJUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ENJUSDT.json deleted file mode 100644 index 2861ee07a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8436564470093553, - "ema_span_0": 697.791396673915, - "ema_span_1": 732.654294932861, - "enabled": true, - "initial_eprice_ema_dist": -0.007565573843539482, - "initial_qty_pct": 0.005822042038729934, - "markup_range": 0.005186004464713603, - "min_markup": 0.004399182647920236, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029198583168471872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3064578047854982, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.77990910296944, - "ema_span_1": 481.40264702069203, - "enabled": true, - "initial_eprice_ema_dist": -0.007907952187919867, - "initial_qty_pct": 0.006943791878564269, - "markup_range": 0.004328720747878866, - "min_markup": 0.0045810740938474, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051668186614655, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7835198819831177, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ENSUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ENSUSDT.json deleted file mode 100644 index aa050b8c6..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10034175580923055, - "ema_span_0": 1388.8685259954011, - "ema_span_1": 405.30809885076565, - "enabled": true, - "initial_eprice_ema_dist": -0.008108959996335397, - "initial_qty_pct": 0.015735480081163416, - "markup_range": 0.006132821541294141, - "min_markup": 0.002490059619649027, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026036245744799947, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1291493363502965, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746469161075211, - "ema_span_0": 1344.662340057815, - "ema_span_1": 734.9205180193246, - "enabled": true, - "initial_eprice_ema_dist": -0.004047379651675582, - "initial_qty_pct": 0.005172881306755962, - "markup_range": 0.008776542343640751, - "min_markup": 0.009551821475938683, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03277395242008468, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8475990733498997, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/EOSUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/EOSUSDT.json deleted file mode 100644 index d9381508c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.31546696881445296, - "ema_span_0": 681.73237061549, - "ema_span_1": 658.3941307287196, - "enabled": true, - "initial_eprice_ema_dist": 0.0007034089512444596, - "initial_qty_pct": 0.01029915196310068, - "markup_range": 0.002038793612253115, - "min_markup": 0.004088357991427266, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02719140553108017, - "rentry_pprice_dist_wallet_exposure_weighting": 5.648333343932799, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7272935781485725, - "ema_span_0": 1439.9418291040436, - "ema_span_1": 1415.4578697154998, - "enabled": true, - "initial_eprice_ema_dist": -0.0012038358144404147, - "initial_qty_pct": 0.012974128964331833, - "markup_range": 0.006867431512625359, - "min_markup": 0.002529144685584898, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03369771810077721, - "rentry_pprice_dist_wallet_exposure_weighting": 5.682347551929316, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ETCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ETCUSDT.json deleted file mode 100644 index f9119ae22..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206242766548868, - "ema_span_0": 917.3708939136229, - "ema_span_1": 1321.1310185893055, - "enabled": true, - "initial_eprice_ema_dist": -0.004079844677879833, - "initial_qty_pct": 0.010808465659587214, - "markup_range": 0.0008065455976179746, - "min_markup": 0.001266492092352165, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01854559140707636, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9172077445733564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5140269242744568, - "ema_span_0": 610.3481766348452, - "ema_span_1": 612.3039500901576, - "enabled": true, - "initial_eprice_ema_dist": -0.0022915193905450612, - "initial_qty_pct": 0.011524682896922133, - "markup_range": 0.0010611895651896244, - "min_markup": 0.004576403700817075, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03446877512720354, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8109823943512433, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ETHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ETHUSDT.json deleted file mode 100644 index 368eff525..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.540452365610252, - "ema_span_0": 1172.032137394778, - "ema_span_1": 1360.6824259656994, - "enabled": true, - "initial_eprice_ema_dist": 0.0016753427895384193, - "initial_qty_pct": 0.012721839711207166, - "markup_range": 0.002121242758635443, - "min_markup": 0.001873547111422482, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014972937722714462, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0953608169925616, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.654569307665235, - "ema_span_0": 608.1273555909727, - "ema_span_1": 1163.7972534186836, - "enabled": true, - "initial_eprice_ema_dist": -0.003957845462116394, - "initial_qty_pct": 0.005000751213776687, - "markup_range": 0.0018042417459693128, - "min_markup": 0.0011170950983336466, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014859637802946012, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2320296467134297, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ETHWUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ETHWUSDT.json deleted file mode 100644 index 91e6735fa..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ETHWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032776664775772, - "ema_span_0": 602.33034596505, - "ema_span_1": 592.9054544845752, - "enabled": true, - "initial_eprice_ema_dist": -0.006686331686418298, - "initial_qty_pct": 0.019326850484717484, - "markup_range": 0.003465884369896487, - "min_markup": 0.004260650451596385, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02454199009973456, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6236545139944023, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9958935241159512, - "ema_span_0": 761.3789807812936, - "ema_span_1": 1184.427031266694, - "enabled": true, - "initial_eprice_ema_dist": -0.007591596898360642, - "initial_qty_pct": 0.01113775250458756, - "markup_range": 0.0005100610708108653, - "min_markup": 0.0030030174671310476, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023674760227035803, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132685040383516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FETUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FETUSDT.json deleted file mode 100644 index cd8de4bd3..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5736298274894174, - "ema_span_0": 625.2470327281831, - "ema_span_1": 647.7403011561087, - "enabled": true, - "initial_eprice_ema_dist": -0.0011806343476836398, - "initial_qty_pct": 0.007822923798774774, - "markup_range": 0.0014977785956921392, - "min_markup": 0.004294769867465393, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026254389513060937, - "rentry_pprice_dist_wallet_exposure_weighting": 3.927995885522945, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8158988178029767, - "ema_span_0": 630.6700219427997, - "ema_span_1": 988.0721029782436, - "enabled": true, - "initial_eprice_ema_dist": -0.0051730670407105035, - "initial_qty_pct": 0.014900701380176646, - "markup_range": 0.00373635516843561, - "min_markup": 0.0036300385320731797, - "n_close_orders": 16, - "rentry_pprice_dist": 0.025179848919236258, - "rentry_pprice_dist_wallet_exposure_weighting": 6.56600867991594, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FILUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FILUSDT.json deleted file mode 100644 index 1f6c974c4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5870099398941756, - "ema_span_0": 921.2085231148226, - "ema_span_1": 505.5288567668124, - "enabled": true, - "initial_eprice_ema_dist": -0.005637536132597143, - "initial_qty_pct": 0.010888782013735313, - "markup_range": 0.002535720591430556, - "min_markup": 0.004019674319723468, - "n_close_orders": 6, - "rentry_pprice_dist": 0.018136544974262397, - "rentry_pprice_dist_wallet_exposure_weighting": 6.11660075897139, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5484404490821884, - "ema_span_0": 1265.2046920489242, - "ema_span_1": 747.0709866841762, - "enabled": true, - "initial_eprice_ema_dist": 0.0029641314861277215, - "initial_qty_pct": 0.006034866176370064, - "markup_range": 0.004497930214807225, - "min_markup": 0.007353822060384097, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04862215500536045, - "rentry_pprice_dist_wallet_exposure_weighting": 3.886588864265925, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FLMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FLMUSDT.json deleted file mode 100644 index b0531f738..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.041840799522719, - "ema_span_0": 1080.130332485056, - "ema_span_1": 1365.8075300988623, - "enabled": true, - "initial_eprice_ema_dist": 0.001386886937097824, - "initial_qty_pct": 0.005670942661530309, - "markup_range": 0.0037989075539764322, - "min_markup": 0.009807387653301221, - "n_close_orders": 13, - "rentry_pprice_dist": 0.05490040125047837, - "rentry_pprice_dist_wallet_exposure_weighting": 5.20521491912046, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FLOWUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FLOWUSDT.json deleted file mode 100644 index 44ef68912..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1675232136783986, - "ema_span_0": 674.713986896031, - "ema_span_1": 982.3098519789337, - "enabled": true, - "initial_eprice_ema_dist": 0.0011763964830437963, - "initial_qty_pct": 0.009596513800741552, - "markup_range": 0.0035309770705637187, - "min_markup": 0.005574608553209718, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04235041593686087, - "rentry_pprice_dist_wallet_exposure_weighting": 4.7474296484355785, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6334869736915982, - "ema_span_0": 695.5601468647546, - "ema_span_1": 842.4799854191405, - "enabled": true, - "initial_eprice_ema_dist": 0.0008118813879307309, - "initial_qty_pct": 0.0074489024423807565, - "markup_range": 0.0009236910698588863, - "min_markup": 0.009197917746299505, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034760190290755506, - "rentry_pprice_dist_wallet_exposure_weighting": 4.076630168149809, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FOOTBALLUSDT.json deleted file mode 100644 index b805b18a8..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1029231932028439, - "ema_span_0": 719.5314946263667, - "ema_span_1": 631.1233600024781, - "enabled": true, - "initial_eprice_ema_dist": 0.0018181633614333186, - "initial_qty_pct": 0.010370054217609186, - "markup_range": 0.006194085838850265, - "min_markup": 0.004691976327073138, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024789789792299316, - "rentry_pprice_dist_wallet_exposure_weighting": 5.1070778772071685, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23441571329121044, - "ema_span_0": 842.8932623709835, - "ema_span_1": 1141.0837703669315, - "enabled": true, - "initial_eprice_ema_dist": -0.005463992553591712, - "initial_qty_pct": 0.010000462688567822, - "markup_range": 0.001748803061199693, - "min_markup": 0.009031656413763635, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015292039808625906, - "rentry_pprice_dist_wallet_exposure_weighting": 6.810553299925272, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FRONTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FRONTUSDT.json deleted file mode 100644 index 19e3f0735..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FRONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1547344601578344, - "ema_span_0": 1439.9661007566165, - "ema_span_1": 1365.151060788266, - "enabled": true, - "initial_eprice_ema_dist": 0.0028647824037840728, - "initial_qty_pct": 0.019992813094675353, - "markup_range": 0.004749865852126672, - "min_markup": 0.009999909508855761, - "n_close_orders": 4, - "rentry_pprice_dist": 0.032160414900013055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6657611930703515, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FTMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FTMUSDT.json deleted file mode 100644 index 76b1e247d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17212410218763066, - "ema_span_0": 1288.3557162180061, - "ema_span_1": 802.3551855954972, - "enabled": true, - "initial_eprice_ema_dist": -0.003268781159486412, - "initial_qty_pct": 0.01542043477364583, - "markup_range": 0.00456941980537822, - "min_markup": 0.0036248809563878526, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03230671369124868, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8063257354019766, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.924570499343246, - "ema_span_0": 552.7434864123568, - "ema_span_1": 953.2176621911838, - "enabled": true, - "initial_eprice_ema_dist": 0.002997587849122748, - "initial_qty_pct": 0.013860495451660461, - "markup_range": 0.002863248395996719, - "min_markup": 0.0025626998554168887, - "n_close_orders": 2, - "rentry_pprice_dist": 0.045903793927038326, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7156866587231256, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/FXSUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/FXSUSDT.json deleted file mode 100644 index 83ebfe106..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30108993444385723, - "ema_span_0": 450.4406679469729, - "ema_span_1": 1071.6828975832439, - "enabled": true, - "initial_eprice_ema_dist": -0.004908936845700969, - "initial_qty_pct": 0.005428150209424524, - "markup_range": 0.0004144151117485868, - "min_markup": 0.002038278921248555, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01286414167514065, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3797760203890226, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000009192011597, - "ema_span_0": 1408.2226600739054, - "ema_span_1": 1439.874724762754, - "enabled": true, - "initial_eprice_ema_dist": -0.0073610248921802904, - "initial_qty_pct": 0.01999969940503796, - "markup_range": 0.009990051544780991, - "min_markup": 0.00803586576913795, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027032587465283902, - "rentry_pprice_dist_wallet_exposure_weighting": 5.010117900862082, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GALAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GALAUSDT.json deleted file mode 100644 index 086c03396..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3929066120171405, - "ema_span_0": 839.8268312872983, - "ema_span_1": 812.34964470315, - "enabled": true, - "initial_eprice_ema_dist": -0.00283598655681286, - "initial_qty_pct": 0.009633427590484396, - "markup_range": 0.002951787833486654, - "min_markup": 0.0021862482743790746, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03286836003117065, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9881416874238589, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6722644495757322, - "ema_span_0": 1035.8112690069995, - "ema_span_1": 1428.3423868955856, - "enabled": true, - "initial_eprice_ema_dist": 0.002997025215600329, - "initial_qty_pct": 0.006638879783996336, - "markup_range": 4.141954555737774e-05, - "min_markup": 0.001193102132730302, - "n_close_orders": 8, - "rentry_pprice_dist": 0.054929591831113136, - "rentry_pprice_dist_wallet_exposure_weighting": 5.629906224842371, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GALUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GALUSDT.json deleted file mode 100644 index af770ef46..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8523939577450942, - "ema_span_0": 826.8069540020092, - "ema_span_1": 973.2985551893474, - "enabled": true, - "initial_eprice_ema_dist": -0.0007635613112937079, - "initial_qty_pct": 0.009517117110908333, - "markup_range": 0.0028107382694230903, - "min_markup": 0.005045101342684657, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03333036126012268, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1747509145484787, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23441571329121044, - "ema_span_0": 842.8932623709835, - "ema_span_1": 1141.0837703669315, - "enabled": true, - "initial_eprice_ema_dist": -0.005463992553591712, - "initial_qty_pct": 0.010000462688567822, - "markup_range": 0.001748803061199693, - "min_markup": 0.009031656413763635, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015292039808625906, - "rentry_pprice_dist_wallet_exposure_weighting": 6.810553299925272, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GASUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GASUSDT.json deleted file mode 100644 index a49cacc9b..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.601946257307737, - "ema_span_0": 679.2060560720818, - "ema_span_1": 462.907807880856, - "enabled": true, - "initial_eprice_ema_dist": 0.0005106757826778502, - "initial_qty_pct": 0.009306173562107653, - "markup_range": 0.00422384028121732, - "min_markup": 0.007869925407053923, - "n_close_orders": 13, - "rentry_pprice_dist": 0.029257341464954713, - "rentry_pprice_dist_wallet_exposure_weighting": 4.027294408035432, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.654569307665235, - "ema_span_0": 608.1273555909727, - "ema_span_1": 1163.7972534186836, - "enabled": true, - "initial_eprice_ema_dist": -0.003957845462116394, - "initial_qty_pct": 0.005000751213776687, - "markup_range": 0.0018042417459693128, - "min_markup": 0.0011170950983336466, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014859637802946012, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2320296467134297, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GLMRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GLMRUSDT.json deleted file mode 100644 index 73c7d1c94..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GLMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.056664649985533, - "ema_span_0": 471.6447586785013, - "ema_span_1": 1168.88950534664, - "enabled": true, - "initial_eprice_ema_dist": -0.006573257708820409, - "initial_qty_pct": 0.011746613171119063, - "markup_range": 0.0047047561401711135, - "min_markup": 0.007683070220930499, - "n_close_orders": 7, - "rentry_pprice_dist": 0.035331840113413664, - "rentry_pprice_dist_wallet_exposure_weighting": 2.725951577199605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GMTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GMTUSDT.json deleted file mode 100644 index dccd5b333..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5711293121575305, - "ema_span_0": 1102.533011935786, - "ema_span_1": 1159.670713011878, - "enabled": true, - "initial_eprice_ema_dist": -0.00039406516653839156, - "initial_qty_pct": 0.006250185809971405, - "markup_range": 0.004727095975296477, - "min_markup": 0.0029801108397235327, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04911273095661961, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0408346568183535, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GMXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GMXUSDT.json deleted file mode 100644 index 067cd3250..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679242690818959, - "ema_span_0": 1130.1172679402177, - "ema_span_1": 1062.2624148300865, - "enabled": true, - "initial_eprice_ema_dist": 0.0020840887739776584, - "initial_qty_pct": 0.01280580975141579, - "markup_range": 0.0024780225458215866, - "min_markup": 0.007619060594589585, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036387766892450095, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1288907042948102, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.948250847222004, - "ema_span_0": 911.7981057902331, - "ema_span_1": 1416.6707636809806, - "enabled": true, - "initial_eprice_ema_dist": 0.0013252099042811059, - "initial_qty_pct": 0.015426695763849621, - "markup_range": 0.0016153424934992504, - "min_markup": 0.0056577840840008106, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03020837968567641, - "rentry_pprice_dist_wallet_exposure_weighting": 0.06762231942734827, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GRTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GRTUSDT.json deleted file mode 100644 index 541ce57f9..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7750106431223234, - "ema_span_0": 581.3553790546858, - "ema_span_1": 575.2479198694201, - "enabled": true, - "initial_eprice_ema_dist": 0.0015903059196145772, - "initial_qty_pct": 0.019874281867488037, - "markup_range": 0.003827735451067156, - "min_markup": 0.0024326133652013016, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03701020627167878, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9432556882239647, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.056664649985533, - "ema_span_0": 471.6447586785013, - "ema_span_1": 1168.88950534664, - "enabled": true, - "initial_eprice_ema_dist": -0.006573257708820409, - "initial_qty_pct": 0.011746613171119063, - "markup_range": 0.0047047561401711135, - "min_markup": 0.007683070220930499, - "n_close_orders": 7, - "rentry_pprice_dist": 0.035331840113413664, - "rentry_pprice_dist_wallet_exposure_weighting": 2.725951577199605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/GTCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/GTCUSDT.json deleted file mode 100644 index 413d8804d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6722644495757322, - "ema_span_0": 1035.8112690069995, - "ema_span_1": 1428.3423868955856, - "enabled": true, - "initial_eprice_ema_dist": 0.002997025215600329, - "initial_qty_pct": 0.006638879783996336, - "markup_range": 4.141954555737774e-05, - "min_markup": 0.001193102132730302, - "n_close_orders": 8, - "rentry_pprice_dist": 0.054929591831113136, - "rentry_pprice_dist_wallet_exposure_weighting": 5.629906224842371, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/HBARUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/HBARUSDT.json deleted file mode 100644 index 52fd073ad..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3566513458439684, - "ema_span_0": 1286.16383457296, - "ema_span_1": 711.5797473355678, - "enabled": true, - "initial_eprice_ema_dist": -0.0009837399878911068, - "initial_qty_pct": 0.013874991114561763, - "markup_range": 0.0015486436214472953, - "min_markup": 0.003466683690760222, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02410010759470665, - "rentry_pprice_dist_wallet_exposure_weighting": 4.124534154859132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1547344601578344, - "ema_span_0": 1439.9661007566165, - "ema_span_1": 1365.151060788266, - "enabled": true, - "initial_eprice_ema_dist": 0.0028647824037840728, - "initial_qty_pct": 0.019992813094675353, - "markup_range": 0.004749865852126672, - "min_markup": 0.009999909508855761, - "n_close_orders": 4, - "rentry_pprice_dist": 0.032160414900013055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6657611930703515, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/HFTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/HFTUSDT.json deleted file mode 100644 index eebcc8949..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.765300081537949, - "ema_span_0": 509.45155647425645, - "ema_span_1": 666.6708760187495, - "enabled": true, - "initial_eprice_ema_dist": -0.006094696426148157, - "initial_qty_pct": 0.0078518451094686, - "markup_range": 0.007331712352773682, - "min_markup": 0.004125967908321303, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03665381046998756, - "rentry_pprice_dist_wallet_exposure_weighting": 1.856799174673176, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/HIFIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/HIFIUSDT.json deleted file mode 100644 index cc3c244d5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/HIFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032776664775772, - "ema_span_0": 602.33034596505, - "ema_span_1": 592.9054544845752, - "enabled": true, - "initial_eprice_ema_dist": -0.006686331686418298, - "initial_qty_pct": 0.019326850484717484, - "markup_range": 0.003465884369896487, - "min_markup": 0.004260650451596385, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02454199009973456, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6236545139944023, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320735056232349, - "ema_span_0": 1431.2324536804074, - "ema_span_1": 746.2184457949365, - "enabled": true, - "initial_eprice_ema_dist": -0.006601730455523961, - "initial_qty_pct": 0.019627589089832004, - "markup_range": 0.0007261019300851621, - "min_markup": 0.009039775337419943, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0334794117114653, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/HIGHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/HIGHUSDT.json deleted file mode 100644 index 910773128..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5560072704512888, - "ema_span_0": 480.58504511013405, - "ema_span_1": 584.4248002439504, - "enabled": true, - "initial_eprice_ema_dist": -0.0017755913626368734, - "initial_qty_pct": 0.00848151028572892, - "markup_range": 0.0034049659233737887, - "min_markup": 0.0028368581842737055, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03403901882173844, - "rentry_pprice_dist_wallet_exposure_weighting": 4.239997740277352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23441571329121044, - "ema_span_0": 842.8932623709835, - "ema_span_1": 1141.0837703669315, - "enabled": true, - "initial_eprice_ema_dist": -0.005463992553591712, - "initial_qty_pct": 0.010000462688567822, - "markup_range": 0.001748803061199693, - "min_markup": 0.009031656413763635, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015292039808625906, - "rentry_pprice_dist_wallet_exposure_weighting": 6.810553299925272, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/HOOKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/HOOKUSDT.json deleted file mode 100644 index 8b6945dbc..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.494823228790086, - "ema_span_0": 1435.201227311355, - "ema_span_1": 1281.6972579366216, - "enabled": true, - "initial_eprice_ema_dist": -0.0029005110725144555, - "initial_qty_pct": 0.013611299040416684, - "markup_range": 0.0012958261981936476, - "min_markup": 0.003701454169828314, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03959009013981101, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3273215926270416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000009192011597, - "ema_span_0": 1408.2226600739054, - "ema_span_1": 1439.874724762754, - "enabled": true, - "initial_eprice_ema_dist": -0.0073610248921802904, - "initial_qty_pct": 0.01999969940503796, - "markup_range": 0.009990051544780991, - "min_markup": 0.00803586576913795, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027032587465283902, - "rentry_pprice_dist_wallet_exposure_weighting": 5.010117900862082, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/HOTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/HOTUSDT.json deleted file mode 100644 index 7ef45535f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7034342091311374, - "ema_span_0": 1343.8066456539304, - "ema_span_1": 1213.1841734860898, - "enabled": true, - "initial_eprice_ema_dist": -0.0038049018421128776, - "initial_qty_pct": 0.009342835719448188, - "markup_range": 0.005055815169623435, - "min_markup": 0.005027128646338104, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026722853989080555, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5330545066012173, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.44089601844141824, - "ema_span_0": 1416.3174611583881, - "ema_span_1": 935.4470814777776, - "enabled": true, - "initial_eprice_ema_dist": -0.006756452234765265, - "initial_qty_pct": 0.01814006340666354, - "markup_range": 0.00808599676161844, - "min_markup": 0.005020398772843659, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0233230608478473, - "rentry_pprice_dist_wallet_exposure_weighting": 6.813849641332529, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ICPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ICPUSDT.json deleted file mode 100644 index b7a18c9f3..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.507201210881818, - "ema_span_0": 1291.0353590090895, - "ema_span_1": 1408.534155951322, - "enabled": true, - "initial_eprice_ema_dist": -6.981022249257062e-05, - "initial_qty_pct": 0.007991981097936243, - "markup_range": 0.0074784678600192025, - "min_markup": 0.0037408014722810612, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03090707768869273, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8160685526605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ICXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ICXUSDT.json deleted file mode 100644 index 13e1cfcda..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8436564470093553, - "ema_span_0": 697.791396673915, - "ema_span_1": 732.654294932861, - "enabled": true, - "initial_eprice_ema_dist": -0.007565573843539482, - "initial_qty_pct": 0.005822042038729934, - "markup_range": 0.005186004464713603, - "min_markup": 0.004399182647920236, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029198583168471872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3064578047854982, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6334869736915982, - "ema_span_0": 695.5601468647546, - "ema_span_1": 842.4799854191405, - "enabled": true, - "initial_eprice_ema_dist": 0.0008118813879307309, - "initial_qty_pct": 0.0074489024423807565, - "markup_range": 0.0009236910698588863, - "min_markup": 0.009197917746299505, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034760190290755506, - "rentry_pprice_dist_wallet_exposure_weighting": 4.076630168149809, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/IDEXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/IDEXUSDT.json deleted file mode 100644 index 49cfdcf53..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/IDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/IDUSDT.json deleted file mode 100644 index 2aadd91aa..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8523939577450942, - "ema_span_0": 826.8069540020092, - "ema_span_1": 973.2985551893474, - "enabled": true, - "initial_eprice_ema_dist": -0.0007635613112937079, - "initial_qty_pct": 0.009517117110908333, - "markup_range": 0.0028107382694230903, - "min_markup": 0.005045101342684657, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03333036126012268, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1747509145484787, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273198163927014, - "ema_span_0": 851.5056353333787, - "ema_span_1": 1318.331522256712, - "enabled": true, - "initial_eprice_ema_dist": -0.008568952195744677, - "initial_qty_pct": 0.005466290393975134, - "markup_range": 0.009236640075707844, - "min_markup": 0.002816493298217054, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321118772775666, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5023140467224514, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ILVUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ILVUSDT.json deleted file mode 100644 index 99c5b7ef8..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ILVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2416241523139757, - "ema_span_0": 1018.3704551777645, - "ema_span_1": 810.0438671816446, - "enabled": true, - "initial_eprice_ema_dist": -0.00868247899434076, - "initial_qty_pct": 0.018701297125973907, - "markup_range": 0.002893755666155936, - "min_markup": 0.0055259173917061085, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019457936794410175, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853050663062912, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/IMXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/IMXUSDT.json deleted file mode 100644 index 2afd5fd1f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.765300081537949, - "ema_span_0": 509.45155647425645, - "ema_span_1": 666.6708760187495, - "enabled": true, - "initial_eprice_ema_dist": -0.006094696426148157, - "initial_qty_pct": 0.0078518451094686, - "markup_range": 0.007331712352773682, - "min_markup": 0.004125967908321303, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03665381046998756, - "rentry_pprice_dist_wallet_exposure_weighting": 1.856799174673176, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.507201210881818, - "ema_span_0": 1291.0353590090895, - "ema_span_1": 1408.534155951322, - "enabled": true, - "initial_eprice_ema_dist": -6.981022249257062e-05, - "initial_qty_pct": 0.007991981097936243, - "markup_range": 0.0074784678600192025, - "min_markup": 0.0037408014722810612, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03090707768869273, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8160685526605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/INJUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/INJUSDT.json deleted file mode 100644 index 171e6a690..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.601946257307737, - "ema_span_0": 679.2060560720818, - "ema_span_1": 462.907807880856, - "enabled": true, - "initial_eprice_ema_dist": 0.0005106757826778502, - "initial_qty_pct": 0.009306173562107653, - "markup_range": 0.00422384028121732, - "min_markup": 0.007869925407053923, - "n_close_orders": 13, - "rentry_pprice_dist": 0.029257341464954713, - "rentry_pprice_dist_wallet_exposure_weighting": 4.027294408035432, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6334869736915982, - "ema_span_0": 695.5601468647546, - "ema_span_1": 842.4799854191405, - "enabled": true, - "initial_eprice_ema_dist": 0.0008118813879307309, - "initial_qty_pct": 0.0074489024423807565, - "markup_range": 0.0009236910698588863, - "min_markup": 0.009197917746299505, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034760190290755506, - "rentry_pprice_dist_wallet_exposure_weighting": 4.076630168149809, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/IOSTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/IOSTUSDT.json deleted file mode 100644 index 6b4b29171..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2630624646410573, - "ema_span_0": 864.3363727900279, - "ema_span_1": 901.3234263234191, - "enabled": true, - "initial_eprice_ema_dist": 0.002086803141068993, - "initial_qty_pct": 0.019999951936826632, - "markup_range": 0.00163956566482907, - "min_markup": 0.006644609371619244, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03724744437510253, - "rentry_pprice_dist_wallet_exposure_weighting": 3.247644744654228, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5499511970051284, - "ema_span_0": 564.9752149289509, - "ema_span_1": 1358.9132991625868, - "enabled": true, - "initial_eprice_ema_dist": -0.006229562933752563, - "initial_qty_pct": 0.009310369942893372, - "markup_range": 0.003288067633398009, - "min_markup": 0.0061721888454926155, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02825492945495087, - "rentry_pprice_dist_wallet_exposure_weighting": 6.707254720568646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/IOTAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/IOTAUSDT.json deleted file mode 100644 index b0ecb6eef..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1029231932028439, - "ema_span_0": 719.5314946263667, - "ema_span_1": 631.1233600024781, - "enabled": true, - "initial_eprice_ema_dist": 0.0018181633614333186, - "initial_qty_pct": 0.010370054217609186, - "markup_range": 0.006194085838850265, - "min_markup": 0.004691976327073138, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024789789792299316, - "rentry_pprice_dist_wallet_exposure_weighting": 5.1070778772071685, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.499629287360372, - "ema_span_0": 883.0775340372174, - "ema_span_1": 933.1427456064213, - "enabled": true, - "initial_eprice_ema_dist": 0.000372611317017532, - "initial_qty_pct": 0.010202221809728676, - "markup_range": 0.0023991069039841343, - "min_markup": 0.002289174237554193, - "n_close_orders": 13, - "rentry_pprice_dist": 0.038147387924601116, - "rentry_pprice_dist_wallet_exposure_weighting": 4.659495257189758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/IOTXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/IOTXUSDT.json deleted file mode 100644 index ac7480184..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5619031685602304, - "ema_span_0": 1261.329166220125, - "ema_span_1": 762.3907336290989, - "enabled": true, - "initial_eprice_ema_dist": 0.001644313790621044, - "initial_qty_pct": 0.00900560625196739, - "markup_range": 0.0024211138379159037, - "min_markup": 0.0013842454017804833, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044171285980154906, - "rentry_pprice_dist_wallet_exposure_weighting": 2.623165726329451, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5484404490821884, - "ema_span_0": 1265.2046920489242, - "ema_span_1": 747.0709866841762, - "enabled": true, - "initial_eprice_ema_dist": 0.0029641314861277215, - "initial_qty_pct": 0.006034866176370064, - "markup_range": 0.004497930214807225, - "min_markup": 0.007353822060384097, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04862215500536045, - "rentry_pprice_dist_wallet_exposure_weighting": 3.886588864265925, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/JASMYUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/JASMYUSDT.json deleted file mode 100644 index dd20eb73a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2030884200919085, - "ema_span_0": 1099.9242059471053, - "ema_span_1": 1099.8047597962877, - "enabled": true, - "initial_eprice_ema_dist": -0.007736859149265648, - "initial_qty_pct": 0.006509782639342933, - "markup_range": 0.00435833380550507, - "min_markup": 0.00498501536153391, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0340439745986292, - "rentry_pprice_dist_wallet_exposure_weighting": 4.3362662049554554, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23441571329121044, - "ema_span_0": 842.8932623709835, - "ema_span_1": 1141.0837703669315, - "enabled": true, - "initial_eprice_ema_dist": -0.005463992553591712, - "initial_qty_pct": 0.010000462688567822, - "markup_range": 0.001748803061199693, - "min_markup": 0.009031656413763635, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015292039808625906, - "rentry_pprice_dist_wallet_exposure_weighting": 6.810553299925272, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/JOEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/JOEUSDT.json deleted file mode 100644 index 9a767693f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2680467937977629, - "ema_span_0": 439.16684320630895, - "ema_span_1": 502.9076983755037, - "enabled": true, - "initial_eprice_ema_dist": -0.0028053611011727, - "initial_qty_pct": 0.01587853856036197, - "markup_range": 0.0061264398228227015, - "min_markup": 0.006070149269617435, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04711784373529613, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4020212493256846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7807382616875167, - "ema_span_0": 1411.6019284592235, - "ema_span_1": 456.8362854381633, - "enabled": true, - "initial_eprice_ema_dist": -0.0037696870241536408, - "initial_qty_pct": 0.015204199637545709, - "markup_range": 0.006657249540542965, - "min_markup": 0.005872323425601706, - "n_close_orders": 8, - "rentry_pprice_dist": 0.036675880431982055, - "rentry_pprice_dist_wallet_exposure_weighting": 5.269966005462712, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/KASUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/KASUSDT.json deleted file mode 100644 index 87a1f8310..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/KASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/KAVAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/KAVAUSDT.json deleted file mode 100644 index 2c335e870..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4122775274843693, - "ema_span_0": 518.0262521142672, - "ema_span_1": 426.5011544871866, - "enabled": true, - "initial_eprice_ema_dist": 0.0028050287401174268, - "initial_qty_pct": 0.012048190602412983, - "markup_range": 0.0014466123223439056, - "min_markup": 0.00577245630222905, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04793756356148688, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0116245840719864, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1236112742616142, - "ema_span_0": 1436.1386264388434, - "ema_span_1": 1439.8126479639855, - "enabled": true, - "initial_eprice_ema_dist": -0.0002385572476429997, - "initial_qty_pct": 0.019022575997131648, - "markup_range": 0.0021443528015219994, - "min_markup": 0.006571278295207881, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047255815439786394, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9606374707515837, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/KEYUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/KEYUSDT.json deleted file mode 100644 index 43e080148..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2323714453801804, - "ema_span_0": 698.5601327526128, - "ema_span_1": 807.5052716319987, - "enabled": true, - "initial_eprice_ema_dist": -0.005921499420700241, - "initial_qty_pct": 0.008690960875837135, - "markup_range": 0.003807973674971341, - "min_markup": 0.005656962160368147, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030531166319683525, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6165552896209899, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/KLAYUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/KLAYUSDT.json deleted file mode 100644 index 65f42222d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5530647951187069, - "ema_span_0": 690.340762651848, - "ema_span_1": 787.8889371169417, - "enabled": true, - "initial_eprice_ema_dist": 0.001248973216250272, - "initial_qty_pct": 0.005476685879124668, - "markup_range": 0.004618803509931985, - "min_markup": 0.0021885243655805683, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03814577729938381, - "rentry_pprice_dist_wallet_exposure_weighting": 4.578597593254098, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0.0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.15934988163697322, - "ema_span_0": 911.7981057902331, - "ema_span_1": 1229.9617807784891, - "enabled": true, - "initial_eprice_ema_dist": 0.000847589011933634, - "initial_qty_pct": 0.006034866176370064, - "markup_range": 0.009175128608742677, - "min_markup": 0.0023381067260414582, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0334794117114653, - "rentry_pprice_dist_wallet_exposure_weighting": 4.493116833003374, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/KNCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/KNCUSDT.json deleted file mode 100644 index d4778bfd1..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.105956613091266, - "ema_span_0": 474.25384779816073, - "ema_span_1": 633.8492340855336, - "enabled": true, - "initial_eprice_ema_dist": 0.0024903472710744094, - "initial_qty_pct": 0.008923695767748938, - "markup_range": 0.004455903783759802, - "min_markup": 0.0010296485141838528, - "n_close_orders": 16, - "rentry_pprice_dist": 0.052819040139337706, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9839217047742455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3420659141549067, - "ema_span_0": 1430.871324593424, - "ema_span_1": 1362.999559240091, - "enabled": true, - "initial_eprice_ema_dist": 0.002499647418070235, - "initial_qty_pct": 0.02, - "markup_range": 0.002344536686200843, - "min_markup": 0.004695593590592453, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04582072216118624, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1358427570715043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/KSMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/KSMUSDT.json deleted file mode 100644 index 44982e3b2..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5928212821708332, - "ema_span_0": 627.322398927725, - "ema_span_1": 1239.592503442927, - "enabled": true, - "initial_eprice_ema_dist": -0.006697268121856271, - "initial_qty_pct": 0.01078097378185016, - "markup_range": 0.005023807903718477, - "min_markup": 0.004542600409945405, - "n_close_orders": 6, - "rentry_pprice_dist": 0.035808459989452666, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0790251803685975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4156689281865604, - "ema_span_0": 684.9915196973883, - "ema_span_1": 938.2700281462033, - "enabled": true, - "initial_eprice_ema_dist": -0.005828055697912706, - "initial_qty_pct": 0.006554463198752474, - "markup_range": 0.002552201605974544, - "min_markup": 0.004630383013391167, - "n_close_orders": 6, - "rentry_pprice_dist": 0.035395762033595145, - "rentry_pprice_dist_wallet_exposure_weighting": 4.1882570883205155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LDOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LDOUSDT.json deleted file mode 100644 index 0efea43af..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1236112742616142, - "ema_span_0": 1436.1386264388434, - "ema_span_1": 1439.8126479639855, - "enabled": true, - "initial_eprice_ema_dist": -0.0002385572476429997, - "initial_qty_pct": 0.019022575997131648, - "markup_range": 0.0021443528015219994, - "min_markup": 0.006571278295207881, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047255815439786394, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9606374707515837, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LEVERUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LEVERUSDT.json deleted file mode 100644 index f1e2a710e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8870823288988265, - "ema_span_0": 1227.8132376622348, - "ema_span_1": 1321.8000795971352, - "enabled": true, - "initial_eprice_ema_dist": 6.853455988358813e-05, - "initial_qty_pct": 0.005017927303128846, - "markup_range": 0.0007870063587902356, - "min_markup": 0.0034423010081400768, - "n_close_orders": 8, - "rentry_pprice_dist": 0.01912117576487501, - "rentry_pprice_dist_wallet_exposure_weighting": 0.129835836003858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1547344601578344, - "ema_span_0": 1439.9661007566165, - "ema_span_1": 1365.151060788266, - "enabled": true, - "initial_eprice_ema_dist": 0.0028647824037840728, - "initial_qty_pct": 0.019992813094675353, - "markup_range": 0.004749865852126672, - "min_markup": 0.009999909508855761, - "n_close_orders": 4, - "rentry_pprice_dist": 0.032160414900013055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6657611930703515, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LINAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LINAUSDT.json deleted file mode 100644 index 34bf42673..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6015391161943333, - "ema_span_0": 1224.664612182744, - "ema_span_1": 1341.2848659460262, - "enabled": true, - "initial_eprice_ema_dist": -0.0030682886927305714, - "initial_qty_pct": 0.012904790994596647, - "markup_range": 0.007355749016473487, - "min_markup": 0.005800251931081329, - "n_close_orders": 2, - "rentry_pprice_dist": 0.050037945333779484, - "rentry_pprice_dist_wallet_exposure_weighting": 3.37983873938988, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5360680814615872, - "ema_span_0": 929.3046958453199, - "ema_span_1": 710.5463559907188, - "enabled": true, - "initial_eprice_ema_dist": -0.0011380674518091465, - "initial_qty_pct": 0.008934377030328705, - "markup_range": 0.003894947245719486, - "min_markup": 0.0053196825769478776, - "n_close_orders": 11, - "rentry_pprice_dist": 0.05275131541691962, - "rentry_pprice_dist_wallet_exposure_weighting": 4.240167183075193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LINKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LINKUSDT.json deleted file mode 100644 index 177b32093..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.13688734661642907, - "ema_span_0": 998.4750059991502, - "ema_span_1": 1108.5685689368033, - "enabled": true, - "initial_eprice_ema_dist": -0.006746568521798218, - "initial_qty_pct": 0.006721281757734063, - "markup_range": 0.0018943321418933017, - "min_markup": 0.005611121428261691, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019583257462673673, - "rentry_pprice_dist_wallet_exposure_weighting": 2.200176664392078, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3791651864238768, - "ema_span_0": 849.6457026181579, - "ema_span_1": 1178.7336900798684, - "enabled": true, - "initial_eprice_ema_dist": -0.001970318935468464, - "initial_qty_pct": 0.011576417883555457, - "markup_range": 0.003556381656652438, - "min_markup": 0.004946815607331975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0334794117114653, - "rentry_pprice_dist_wallet_exposure_weighting": 1.07566756145502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LITUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LITUSDT.json deleted file mode 100644 index 24a09adc9..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4877674992045526, - "ema_span_0": 1268.0212864826378, - "ema_span_1": 1042.4164608187, - "enabled": true, - "initial_eprice_ema_dist": 0.0026902528534008406, - "initial_qty_pct": 0.00647733321874685, - "markup_range": 0.003500658043832846, - "min_markup": 0.005175037151436816, - "n_close_orders": 9, - "rentry_pprice_dist": 0.046589226512406254, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0107383268837, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3555288793945406, - "ema_span_0": 1417.9443538993999, - "ema_span_1": 1406.7036597986423, - "enabled": true, - "initial_eprice_ema_dist": 0.0004281062717331165, - "initial_qty_pct": 0.011185529433391175, - "markup_range": 0.009949148027719849, - "min_markup": 0.009543491530795395, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03444151164561383, - "rentry_pprice_dist_wallet_exposure_weighting": 6.5408053800826185, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LOOMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LOOMUSDT.json deleted file mode 100644 index 5fece971a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LOOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.347754108643172, - "ema_span_0": 1047.7609009825105, - "ema_span_1": 1065.5064722739562, - "enabled": true, - "initial_eprice_ema_dist": 0.0016068037866277694, - "initial_qty_pct": 0.011428800033298483, - "markup_range": 6.77335585614986e-05, - "min_markup": 0.0037234931357455715, - "n_close_orders": 6, - "rentry_pprice_dist": 0.029454208885045855, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2577397497047336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LPTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LPTUSDT.json deleted file mode 100644 index e32c5bd22..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10024341634301931, - "ema_span_0": 1428.9774491242358, - "ema_span_1": 1427.2336650004054, - "enabled": true, - "initial_eprice_ema_dist": 0.002998729921908659, - "initial_qty_pct": 0.019997744013481505, - "markup_range": 0.0020442763872063918, - "min_markup": 0.001959431833416088, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04809315243063953, - "rentry_pprice_dist_wallet_exposure_weighting": 6.925130596389445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LQTYUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LQTYUSDT.json deleted file mode 100644 index a22c4a90d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6676031233786508, - "ema_span_0": 1235.9695259181974, - "ema_span_1": 1276.8979712521502, - "enabled": true, - "initial_eprice_ema_dist": -0.0031229179200812124, - "initial_qty_pct": 0.019142454895024138, - "markup_range": 0.00534341590589768, - "min_markup": 0.00532570878831663, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03786633009144583, - "rentry_pprice_dist_wallet_exposure_weighting": 1.015641853361395, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2416241523139757, - "ema_span_0": 1018.3704551777645, - "ema_span_1": 810.0438671816446, - "enabled": true, - "initial_eprice_ema_dist": -0.00868247899434076, - "initial_qty_pct": 0.018701297125973907, - "markup_range": 0.002893755666155936, - "min_markup": 0.0055259173917061085, - "n_close_orders": 13, - "rentry_pprice_dist": 0.019457936794410175, - "rentry_pprice_dist_wallet_exposure_weighting": 5.853050663062912, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LRCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LRCUSDT.json deleted file mode 100644 index 7b36f5975..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.832488058065092, - "ema_span_0": 1354.3965177487773, - "ema_span_1": 1342.0391460300264, - "enabled": true, - "initial_eprice_ema_dist": -0.002615275349008593, - "initial_qty_pct": 0.016983219627403706, - "markup_range": 0.0017605169782668297, - "min_markup": 0.005419666825816411, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0282366716033217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0357402681242407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9666455285132008, - "ema_span_0": 749.5556681060626, - "ema_span_1": 1281.5796264232197, - "enabled": true, - "initial_eprice_ema_dist": -0.0006371902893265684, - "initial_qty_pct": 0.01529321728480354, - "markup_range": 0.0031192914001468043, - "min_markup": 0.005608917835450441, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375270496431996, - "rentry_pprice_dist_wallet_exposure_weighting": 5.643360405005932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LTCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LTCUSDT.json deleted file mode 100644 index 69be407cf..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3819283332815897, - "ema_span_0": 835.7733337922807, - "ema_span_1": 865.2249118735288, - "enabled": true, - "initial_eprice_ema_dist": -0.0020759338091898105, - "initial_qty_pct": 0.0060766850107295805, - "markup_range": 0.004500301378165132, - "min_markup": 0.004197653713295645, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02948077279687622, - "rentry_pprice_dist_wallet_exposure_weighting": 5.370954404382843, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9283464640186603, - "ema_span_0": 1440, - "ema_span_1": 1374.3542137939, - "enabled": true, - "initial_eprice_ema_dist": -0.0026662142106820596, - "initial_qty_pct": 0.014119675647469621, - "markup_range": 0.0015526180338890265, - "min_markup": 0.0028246673622931645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024948940742379716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6288698465095317, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/LUNA2USDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/LUNA2USDT.json deleted file mode 100644 index 7e13b9fa1..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 619.1354180742154, - "ema_span_1": 594.6653164570171, - "enabled": true, - "initial_eprice_ema_dist": -0.007600878591903731, - "initial_qty_pct": 0.015431093340094746, - "markup_range": 0.002356556693810859, - "min_markup": 0.0023934903153497544, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01779865761221544, - "rentry_pprice_dist_wallet_exposure_weighting": 6.213724350756423, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MAGICUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MAGICUSDT.json deleted file mode 100644 index 32769faf2..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1250357338796583, - "ema_span_0": 911.5048657824906, - "ema_span_1": 587.2273804955296, - "enabled": true, - "initial_eprice_ema_dist": -0.004104164415518372, - "initial_qty_pct": 0.016982593936354522, - "markup_range": 0.008340070303466113, - "min_markup": 0.0054927358606795115, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0397798872003406, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7574987830169673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6090305061783474, - "ema_span_0": 817.5956820905083, - "ema_span_1": 626.6862284276103, - "enabled": true, - "initial_eprice_ema_dist": 0.0005370906403338774, - "initial_qty_pct": 0.00733498104793331, - "markup_range": 0.006572376103974576, - "min_markup": 0.004690923413572172, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03646188291279932, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8661472919197357, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MANAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MANAUSDT.json deleted file mode 100644 index b27c8bd27..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.347754108643172, - "ema_span_0": 1047.7609009825105, - "ema_span_1": 1065.5064722739562, - "enabled": true, - "initial_eprice_ema_dist": 0.0016068037866277694, - "initial_qty_pct": 0.011428800033298483, - "markup_range": 6.77335585614986e-05, - "min_markup": 0.0037234931357455715, - "n_close_orders": 6, - "rentry_pprice_dist": 0.029454208885045855, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2577397497047336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5550251511063604, - "ema_span_0": 716.2919582271431, - "ema_span_1": 1026.6782465521924, - "enabled": true, - "initial_eprice_ema_dist": 0.000239765333420248, - "initial_qty_pct": 0.006477330915374071, - "markup_range": 0.00369205266920978, - "min_markup": 0.0037555989761534634, - "n_close_orders": 6, - "rentry_pprice_dist": 0.05184506187346326, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8872504509911123, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MASKUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MASKUSDT.json deleted file mode 100644 index be7660289..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4877674992045526, - "ema_span_0": 1268.0212864826378, - "ema_span_1": 1042.4164608187, - "enabled": true, - "initial_eprice_ema_dist": 0.0026902528534008406, - "initial_qty_pct": 0.00647733321874685, - "markup_range": 0.003500658043832846, - "min_markup": 0.005175037151436816, - "n_close_orders": 9, - "rentry_pprice_dist": 0.046589226512406254, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0107383268837, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MATICUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MATICUSDT.json deleted file mode 100644 index 66ac39074..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2253439900997174, - "ema_span_0": 754.8739704066925, - "ema_span_1": 647.9499108699124, - "enabled": true, - "initial_eprice_ema_dist": -0.006936539085744455, - "initial_qty_pct": 0.008491630936171812, - "markup_range": 0.003449702657984847, - "min_markup": 0.005711673779085416, - "n_close_orders": 4, - "rentry_pprice_dist": 0.036607367603404994, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1276734827837807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MAVUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MAVUSDT.json deleted file mode 100644 index 68af50499..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9283464640186603, - "ema_span_0": 1440, - "ema_span_1": 1374.3542137939, - "enabled": true, - "initial_eprice_ema_dist": -0.0026662142106820596, - "initial_qty_pct": 0.014119675647469621, - "markup_range": 0.0015526180338890265, - "min_markup": 0.0028246673622931645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024948940742379716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6288698465095317, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MBLUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MBLUSDT.json deleted file mode 100644 index f49db5285..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MBLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MDTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MDTUSDT.json deleted file mode 100644 index 8bf93b56e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.359132998205847, - "ema_span_0": 825.1561150352977, - "ema_span_1": 930.42952188107, - "enabled": true, - "initial_eprice_ema_dist": 0.0008747841022529903, - "initial_qty_pct": 0.010097587714021748, - "markup_range": 0.003331479135371563, - "min_markup": 0.0022364777986810776, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023933030783828132, - "rentry_pprice_dist_wallet_exposure_weighting": 3.588781972324132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9283464640186603, - "ema_span_0": 1440, - "ema_span_1": 1374.3542137939, - "enabled": true, - "initial_eprice_ema_dist": -0.0026662142106820596, - "initial_qty_pct": 0.014119675647469621, - "markup_range": 0.0015526180338890265, - "min_markup": 0.0028246673622931645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024948940742379716, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6288698465095317, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MEMEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MEMEUSDT.json deleted file mode 100644 index f87237a63..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MEMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032776664775772, - "ema_span_0": 602.33034596505, - "ema_span_1": 592.9054544845752, - "enabled": true, - "initial_eprice_ema_dist": -0.006686331686418298, - "initial_qty_pct": 0.019326850484717484, - "markup_range": 0.003465884369896487, - "min_markup": 0.004260650451596385, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02454199009973456, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6236545139944023, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2410648168522753, - "ema_span_0": 1217.867442155748, - "ema_span_1": 1048.8320742284973, - "enabled": true, - "initial_eprice_ema_dist": -0.006945343508210832, - "initial_qty_pct": 0.011121541142070106, - "markup_range": 0.002652788740167997, - "min_markup": 0.0019832586298828064, - "n_close_orders": 4, - "rentry_pprice_dist": 0.028581551715282257, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9446392364217492, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MINAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MINAUSDT.json deleted file mode 100644 index 5424df57b..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.359132998205847, - "ema_span_0": 825.1561150352977, - "ema_span_1": 930.42952188107, - "enabled": true, - "initial_eprice_ema_dist": 0.0008747841022529903, - "initial_qty_pct": 0.010097587714021748, - "markup_range": 0.003331479135371563, - "min_markup": 0.0022364777986810776, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023933030783828132, - "rentry_pprice_dist_wallet_exposure_weighting": 3.588781972324132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4156689281865604, - "ema_span_0": 684.9915196973883, - "ema_span_1": 938.2700281462033, - "enabled": true, - "initial_eprice_ema_dist": -0.005828055697912706, - "initial_qty_pct": 0.006554463198752474, - "markup_range": 0.002552201605974544, - "min_markup": 0.004630383013391167, - "n_close_orders": 6, - "rentry_pprice_dist": 0.035395762033595145, - "rentry_pprice_dist_wallet_exposure_weighting": 4.1882570883205155, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MKRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MKRUSDT.json deleted file mode 100644 index 70f15ed0c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6970682211002261, - "ema_span_0": 824.6294228638478, - "ema_span_1": 665.6060379779635, - "enabled": true, - "initial_eprice_ema_dist": 0.0029958630061544538, - "initial_qty_pct": 0.007763454128866125, - "markup_range": 0.0035434379382813432, - "min_markup": 0.0036254490685249997, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03190242925450784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.272443014834707, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7652595682203795, - "ema_span_0": 1439.4971034524672, - "ema_span_1": 1365.8671135922016, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998518873616026, - "initial_qty_pct": 0.005030477125620324, - "markup_range": 0.001184772216885893, - "min_markup": 0.002200318441184597, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04593864508292723, - "rentry_pprice_dist_wallet_exposure_weighting": 4.295998330825639, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/MTLUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/MTLUSDT.json deleted file mode 100644 index f631d1f1a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.796410730710356, - "ema_span_0": 1011.0192473397711, - "ema_span_1": 1040.531602433019, - "enabled": true, - "initial_eprice_ema_dist": 0.0008016357425575652, - "initial_qty_pct": 0.005792117068611456, - "markup_range": 0.0038612310908585604, - "min_markup": 0.008863881511519449, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04503579178759553, - "rentry_pprice_dist_wallet_exposure_weighting": 2.834197296693692, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10024341634301931, - "ema_span_0": 1428.9774491242358, - "ema_span_1": 1427.2336650004054, - "enabled": true, - "initial_eprice_ema_dist": 0.002998729921908659, - "initial_qty_pct": 0.019997744013481505, - "markup_range": 0.0020442763872063918, - "min_markup": 0.001959431833416088, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04809315243063953, - "rentry_pprice_dist_wallet_exposure_weighting": 6.925130596389445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/NEARUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/NEARUSDT.json deleted file mode 100644 index c715b8c61..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6591890256027947, - "ema_span_0": 1365.8655291068233, - "ema_span_1": 1305.8005079668333, - "enabled": true, - "initial_eprice_ema_dist": 0.002761705224770022, - "initial_qty_pct": 0.006785428161582938, - "markup_range": 0.0021283597532345782, - "min_markup": 0.002048285013759793, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015094482564338752, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1379312653542297, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7943608092495966, - "ema_span_0": 1416.6708393076808, - "ema_span_1": 1362.5116168361706, - "enabled": true, - "initial_eprice_ema_dist": 0.0024623283696379016, - "initial_qty_pct": 0.007364645579293955, - "markup_range": 0.0028790433914158277, - "min_markup": 0.009754653929251499, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04588877386497721, - "rentry_pprice_dist_wallet_exposure_weighting": 6.995789565335181, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/NEOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/NEOUSDT.json deleted file mode 100644 index 616b01a60..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5530647951187069, - "ema_span_0": 690.340762651848, - "ema_span_1": 787.8889371169417, - "enabled": true, - "initial_eprice_ema_dist": 0.001248973216250272, - "initial_qty_pct": 0.005476685879124668, - "markup_range": 0.004618803509931985, - "min_markup": 0.0021885243655805683, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03814577729938381, - "rentry_pprice_dist_wallet_exposure_weighting": 4.578597593254098, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.23441571329121044, - "ema_span_0": 842.8932623709835, - "ema_span_1": 1141.0837703669315, - "enabled": true, - "initial_eprice_ema_dist": -0.005463992553591712, - "initial_qty_pct": 0.010000462688567822, - "markup_range": 0.001748803061199693, - "min_markup": 0.009031656413763635, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015292039808625906, - "rentry_pprice_dist_wallet_exposure_weighting": 6.810553299925272, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/NKNUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/NKNUSDT.json deleted file mode 100644 index eb028b291..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2167835355615672, - "ema_span_0": 1248.4735363678542, - "ema_span_1": 1429.6594173265796, - "enabled": true, - "initial_eprice_ema_dist": 0.002720481974521301, - "initial_qty_pct": 0.019999183961880967, - "markup_range": 0.006114521807598229, - "min_markup": 0.006421244655855414, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03907009307851165, - "rentry_pprice_dist_wallet_exposure_weighting": 6.766238064826341, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/NMRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/NMRUSDT.json deleted file mode 100644 index 979063aef..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0965640881007737, - "ema_span_0": 894.5743451091689, - "ema_span_1": 1060.3684027525283, - "enabled": true, - "initial_eprice_ema_dist": -0.0036204388027152173, - "initial_qty_pct": 0.015512057929671292, - "markup_range": 0.0046855891984089685, - "min_markup": 0.0042384830219084554, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027571743708978472, - "rentry_pprice_dist_wallet_exposure_weighting": 2.405052792291445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1547344601578344, - "ema_span_0": 1439.9661007566165, - "ema_span_1": 1365.151060788266, - "enabled": true, - "initial_eprice_ema_dist": 0.0028647824037840728, - "initial_qty_pct": 0.019992813094675353, - "markup_range": 0.004749865852126672, - "min_markup": 0.009999909508855761, - "n_close_orders": 4, - "rentry_pprice_dist": 0.032160414900013055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6657611930703515, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/NTRNUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/NTRNUSDT.json deleted file mode 100644 index 1fba326b6..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/NTRNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.895457303546347, - "ema_span_0": 498.9885067276947, - "ema_span_1": 525.1614227120004, - "enabled": true, - "initial_eprice_ema_dist": -2.699689038717153e-05, - "initial_qty_pct": 0.016276398633222902, - "markup_range": 0.004287394481326698, - "min_markup": 0.007433700575117856, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04815474489781955, - "rentry_pprice_dist_wallet_exposure_weighting": 2.185884428533784, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/OCEANUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/OCEANUSDT.json deleted file mode 100644 index 48ede346d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.53479545980366, - "ema_span_0": 777.0497067322802, - "ema_span_1": 788.5884606526572, - "enabled": true, - "initial_eprice_ema_dist": -0.001896885272325929, - "initial_qty_pct": 0.018301209791439108, - "markup_range": 0.0028158295355093454, - "min_markup": 0.004257426866310859, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03815068446473374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4568772163496226, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000009192011597, - "ema_span_0": 1408.2226600739054, - "ema_span_1": 1439.874724762754, - "enabled": true, - "initial_eprice_ema_dist": -0.0073610248921802904, - "initial_qty_pct": 0.01999969940503796, - "markup_range": 0.009990051544780991, - "min_markup": 0.00803586576913795, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027032587465283902, - "rentry_pprice_dist_wallet_exposure_weighting": 5.010117900862082, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/OGNUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/OGNUSDT.json deleted file mode 100644 index f4c40a1ff..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1675232136783986, - "ema_span_0": 674.713986896031, - "ema_span_1": 982.3098519789337, - "enabled": true, - "initial_eprice_ema_dist": 0.0011763964830437963, - "initial_qty_pct": 0.009596513800741552, - "markup_range": 0.0035309770705637187, - "min_markup": 0.005574608553209718, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04235041593686087, - "rentry_pprice_dist_wallet_exposure_weighting": 4.7474296484355785, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6787945019745019, - "ema_span_0": 1133.5758649597583, - "ema_span_1": 715.1925096698552, - "enabled": true, - "initial_eprice_ema_dist": -0.008349637903638756, - "initial_qty_pct": 0.012464086493146476, - "markup_range": 0.0005634501683248434, - "min_markup": 0.002911215907229385, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03733373962427672, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19642251467484315, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/OMGUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/OMGUSDT.json deleted file mode 100644 index a1ef28ab0..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.765300081537949, - "ema_span_0": 509.45155647425645, - "ema_span_1": 666.6708760187495, - "enabled": true, - "initial_eprice_ema_dist": -0.006094696426148157, - "initial_qty_pct": 0.0078518451094686, - "markup_range": 0.007331712352773682, - "min_markup": 0.004125967908321303, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03665381046998756, - "rentry_pprice_dist_wallet_exposure_weighting": 1.856799174673176, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1877792568362755, - "ema_span_0": 425.63452792461715, - "ema_span_1": 1292.1124719184365, - "enabled": true, - "initial_eprice_ema_dist": -0.009676369322069998, - "initial_qty_pct": 0.0068777691618285225, - "markup_range": 0.006716418781921619, - "min_markup": 0.009800893793092189, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04287367625047628, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3638331240488583, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ONEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ONEUSDT.json deleted file mode 100644 index 26c45b89d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.086731723078385, - "ema_span_0": 551.8888254765498, - "ema_span_1": 655.6800360150555, - "enabled": true, - "initial_eprice_ema_dist": -0.0038711784866043786, - "initial_qty_pct": 0.007906162508990414, - "markup_range": 0.007523767860505048, - "min_markup": 0.004195136349782745, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03865774199065825, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6249305768065143, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9537966206263309, - "ema_span_0": 869.8813573164808, - "ema_span_1": 1099.7355163262016, - "enabled": true, - "initial_eprice_ema_dist": -0.0047916505498495346, - "initial_qty_pct": 0.010617246958692544, - "markup_range": 0.002031781504121638, - "min_markup": 0.006926604373406353, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03871752943188565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5686866628653946, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ONGUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ONGUSDT.json deleted file mode 100644 index fccf88b32..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ONGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3566513458439684, - "ema_span_0": 1286.16383457296, - "ema_span_1": 711.5797473355678, - "enabled": true, - "initial_eprice_ema_dist": -0.0009837399878911068, - "initial_qty_pct": 0.013874991114561763, - "markup_range": 0.0015486436214472953, - "min_markup": 0.003466683690760222, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02410010759470665, - "rentry_pprice_dist_wallet_exposure_weighting": 4.124534154859132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ONTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ONTUSDT.json deleted file mode 100644 index 945c2292f..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.36614614903721143, - "ema_span_0": 866.5485055157798, - "ema_span_1": 724.3112135864033, - "enabled": true, - "initial_eprice_ema_dist": 0.0029419317910703542, - "initial_qty_pct": 0.00892316615905978, - "markup_range": 0.008130519241210702, - "min_markup": 0.007029427088289117, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037757635495991544, - "rentry_pprice_dist_wallet_exposure_weighting": 4.155794989682089, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.689912164924663, - "ema_span_0": 1411.0253303053623, - "ema_span_1": 1369.8977373730422, - "enabled": true, - "initial_eprice_ema_dist": -0.0011674841584428332, - "initial_qty_pct": 0.013767221949558803, - "markup_range": 0.006710534306328603, - "min_markup": 0.00936155727203136, - "n_close_orders": 3, - "rentry_pprice_dist": 0.036017277502864375, - "rentry_pprice_dist_wallet_exposure_weighting": 6.075846254622623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/OPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/OPUSDT.json deleted file mode 100644 index 0392211ca..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6591890256027947, - "ema_span_0": 1365.8655291068233, - "ema_span_1": 1305.8005079668333, - "enabled": true, - "initial_eprice_ema_dist": 0.002761705224770022, - "initial_qty_pct": 0.006785428161582938, - "markup_range": 0.0021283597532345782, - "min_markup": 0.002048285013759793, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015094482564338752, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1379312653542297, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0473843252337143, - "ema_span_0": 1061.0737763174616, - "ema_span_1": 427.70129909281377, - "enabled": true, - "initial_eprice_ema_dist": 0.0005996339578144874, - "initial_qty_pct": 0.007327733421310945, - "markup_range": 0.0018918977588880995, - "min_markup": 0.003937477286768133, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05858434040692998, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1922050638633619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ORBSUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ORBSUSDT.json deleted file mode 100644 index 87a1f8310..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ORBSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ORDIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ORDIUSDT.json deleted file mode 100644 index af34f7539..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ORDIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2323714453801804, - "ema_span_0": 698.5601327526128, - "ema_span_1": 807.5052716319987, - "enabled": true, - "initial_eprice_ema_dist": -0.005921499420700241, - "initial_qty_pct": 0.008690960875837135, - "markup_range": 0.003807973674971341, - "min_markup": 0.005656962160368147, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030531166319683525, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6165552896209899, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.499629287360372, - "ema_span_0": 883.0775340372174, - "ema_span_1": 933.1427456064213, - "enabled": true, - "initial_eprice_ema_dist": 0.000372611317017532, - "initial_qty_pct": 0.010202221809728676, - "markup_range": 0.0023991069039841343, - "min_markup": 0.002289174237554193, - "n_close_orders": 13, - "rentry_pprice_dist": 0.038147387924601116, - "rentry_pprice_dist_wallet_exposure_weighting": 4.659495257189758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/OXTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/OXTUSDT.json deleted file mode 100644 index cf1360eec..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.784155833749645, - "ema_span_0": 1175.0408031157326, - "ema_span_1": 1353.9049932298228, - "enabled": true, - "initial_eprice_ema_dist": 0.0009505367688301806, - "initial_qty_pct": 0.009909758490419867, - "markup_range": 0.0037141490034148404, - "min_markup": 0.0014754374933976838, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02565383672658946, - "rentry_pprice_dist_wallet_exposure_weighting": 1.565745514963549, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320735056232349, - "ema_span_0": 1377.7338140853751, - "ema_span_1": 1315.72788196419, - "enabled": true, - "initial_eprice_ema_dist": -0.005557970672093364, - "initial_qty_pct": 0.014696599957221824, - "markup_range": 0.0041499510581069, - "min_markup": 0.003450766991245179, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243317882260661, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040504812283739, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/PENDLEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/PENDLEUSDT.json deleted file mode 100644 index 361b38496..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273198163927014, - "ema_span_0": 851.5056353333787, - "ema_span_1": 1318.331522256712, - "enabled": true, - "initial_eprice_ema_dist": -0.008568952195744677, - "initial_qty_pct": 0.005466290393975134, - "markup_range": 0.009236640075707844, - "min_markup": 0.002816493298217054, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02321118772775666, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5023140467224514, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/PEOPLEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/PEOPLEUSDT.json deleted file mode 100644 index bac68552a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4348833651529247, - "ema_span_0": 992.4220146675138, - "ema_span_1": 1198.797346013984, - "enabled": true, - "initial_eprice_ema_dist": 0.00128014809502413, - "initial_qty_pct": 0.007056408913928601, - "markup_range": 0.0031430018298840524, - "min_markup": 0.00598718349471009, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03893893604506986, - "rentry_pprice_dist_wallet_exposure_weighting": 4.09072741564178, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9096882693184065, - "ema_span_0": 725.4853256941044, - "ema_span_1": 1165.6555990547017, - "enabled": true, - "initial_eprice_ema_dist": 0.0021667958892405484, - "initial_qty_pct": 0.006613662603725277, - "markup_range": 4.069142357194305e-05, - "min_markup": 0.0019250821320548582, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048696259243225466, - "rentry_pprice_dist_wallet_exposure_weighting": 5.34175213638984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/PERPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/PERPUSDT.json deleted file mode 100644 index 0a07bb8bb..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4508673797138316, - "ema_span_0": 995.9623499439299, - "ema_span_1": 746.3830247953897, - "enabled": true, - "initial_eprice_ema_dist": -0.008071301081133964, - "initial_qty_pct": 0.005369471436440499, - "markup_range": 0.001110867402070223, - "min_markup": 0.00520649031408648, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029825605900795853, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1402535652882007, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.291755675842417, - "ema_span_0": 1329.4655439697156, - "ema_span_1": 436.4975807530978, - "enabled": true, - "initial_eprice_ema_dist": -0.004821975710257179, - "initial_qty_pct": 0.009453459260410768, - "markup_range": 0.0016755298534680194, - "min_markup": 0.003995304577275092, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973163740896623, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6152150374534491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/PHBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/PHBUSDT.json deleted file mode 100644 index 23ab312fb..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2680467937977629, - "ema_span_0": 439.16684320630895, - "ema_span_1": 502.9076983755037, - "enabled": true, - "initial_eprice_ema_dist": -0.0028053611011727, - "initial_qty_pct": 0.01587853856036197, - "markup_range": 0.0061264398228227015, - "min_markup": 0.006070149269617435, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04711784373529613, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4020212493256846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3406645847400225, - "ema_span_0": 1101.907341153422, - "ema_span_1": 891.0252453593743, - "enabled": true, - "initial_eprice_ema_dist": 0.002062236282977762, - "initial_qty_pct": 0.0068616831944981515, - "markup_range": 0.003370050939301824, - "min_markup": 0.0036505146264338736, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029400067384880813, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5745779907915507, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/POLYXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/POLYXUSDT.json deleted file mode 100644 index 7d011428c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/POLYXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.784155833749645, - "ema_span_0": 1175.0408031157326, - "ema_span_1": 1353.9049932298228, - "enabled": true, - "initial_eprice_ema_dist": 0.0009505367688301806, - "initial_qty_pct": 0.009909758490419867, - "markup_range": 0.0037141490034148404, - "min_markup": 0.0014754374933976838, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02565383672658946, - "rentry_pprice_dist_wallet_exposure_weighting": 1.565745514963549, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.235696752780167, - "ema_span_0": 1427.8029367041474, - "ema_span_1": 989.1351223190757, - "enabled": true, - "initial_eprice_ema_dist": -0.005340211910044059, - "initial_qty_pct": 0.007313025292972939, - "markup_range": 0.008901672553121827, - "min_markup": 0.005422684763450301, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494558832972968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310977910024807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/POWRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/POWRUSDT.json deleted file mode 100644 index eed01fe4e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/POWRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5500279031081032, - "ema_span_0": 673.6932381978544, - "ema_span_1": 647.9464058050072, - "enabled": true, - "initial_eprice_ema_dist": -0.007293172332743211, - "initial_qty_pct": 0.015970235724614146, - "markup_range": 0.005832242730892804, - "min_markup": 0.004609346464315513, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03184919169862164, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6171003772692372, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9958935241159512, - "ema_span_0": 761.3789807812936, - "ema_span_1": 1184.427031266694, - "enabled": true, - "initial_eprice_ema_dist": -0.007591596898360642, - "initial_qty_pct": 0.01113775250458756, - "markup_range": 0.0005100610708108653, - "min_markup": 0.0030030174671310476, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023674760227035803, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132685040383516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/PYTHUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/PYTHUSDT.json deleted file mode 100644 index 204eb68fb..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/PYTHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3791651864238768, - "ema_span_0": 849.6457026181579, - "ema_span_1": 1178.7336900798684, - "enabled": true, - "initial_eprice_ema_dist": -0.001970318935468464, - "initial_qty_pct": 0.011576417883555457, - "markup_range": 0.003556381656652438, - "min_markup": 0.004946815607331975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0334794117114653, - "rentry_pprice_dist_wallet_exposure_weighting": 1.07566756145502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/QNTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/QNTUSDT.json deleted file mode 100644 index 149d3d67b..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3566513458439684, - "ema_span_0": 1286.16383457296, - "ema_span_1": 711.5797473355678, - "enabled": true, - "initial_eprice_ema_dist": -0.0009837399878911068, - "initial_qty_pct": 0.013874991114561763, - "markup_range": 0.0015486436214472953, - "min_markup": 0.003466683690760222, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02410010759470665, - "rentry_pprice_dist_wallet_exposure_weighting": 4.124534154859132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.937874629197145, - "ema_span_0": 1369.0225828624887, - "ema_span_1": 703.6394157557396, - "enabled": true, - "initial_eprice_ema_dist": 0.0019410378585243148, - "initial_qty_pct": 0.015305677954020243, - "markup_range": 0.0007261019300851621, - "min_markup": 0.0014506957841385689, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0328986809914612, - "rentry_pprice_dist_wallet_exposure_weighting": 2.347582291221971, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/QTUMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/QTUMUSDT.json deleted file mode 100644 index c2f011cb5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1009479218223154, - "ema_span_0": 775.1685551980484, - "ema_span_1": 528.9675670138131, - "enabled": true, - "initial_eprice_ema_dist": 0.00043057007109410686, - "initial_qty_pct": 0.018514796619851812, - "markup_range": 0.003921708543970103, - "min_markup": 0.004075767305459166, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038139867505577615, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2085578689971372, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.040644160398579, - "ema_span_0": 1115.3112271179605, - "ema_span_1": 592.7646321548445, - "enabled": true, - "initial_eprice_ema_dist": -0.002300909049115994, - "initial_qty_pct": 0.0069369262029872975, - "markup_range": 0.007227420925775015, - "min_markup": 0.004564193433975704, - "n_close_orders": 2, - "rentry_pprice_dist": 0.026816797408983375, - "rentry_pprice_dist_wallet_exposure_weighting": 4.005882486829598, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RADUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RADUSDT.json deleted file mode 100644 index d3cb52be5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RDNTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RDNTUSDT.json deleted file mode 100644 index 543a3a065..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6935416815638322, - "ema_span_0": 1166.9336687903944, - "ema_span_1": 1409.5845104450193, - "enabled": true, - "initial_eprice_ema_dist": 0.0019810800158855334, - "initial_qty_pct": 0.016530773112349937, - "markup_range": 0.00133965557458907, - "min_markup": 0.0020967223833583603, - "n_close_orders": 15, - "rentry_pprice_dist": 0.022303289640880568, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5942690515355142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.235696752780167, - "ema_span_0": 1427.8029367041474, - "ema_span_1": 989.1351223190757, - "enabled": true, - "initial_eprice_ema_dist": -0.005340211910044059, - "initial_qty_pct": 0.007313025292972939, - "markup_range": 0.008901672553121827, - "min_markup": 0.005422684763450301, - "n_close_orders": 6, - "rentry_pprice_dist": 0.024494558832972968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5310977910024807, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/REEFUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/REEFUSDT.json deleted file mode 100644 index f8d096dff..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1250357338796583, - "ema_span_0": 911.5048657824906, - "ema_span_1": 587.2273804955296, - "enabled": true, - "initial_eprice_ema_dist": -0.004104164415518372, - "initial_qty_pct": 0.016982593936354522, - "markup_range": 0.008340070303466113, - "min_markup": 0.0054927358606795115, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0397798872003406, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7574987830169673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.583598248930733, - "ema_span_0": 1380.3902693645273, - "ema_span_1": 1418.3556558860644, - "enabled": true, - "initial_eprice_ema_dist": -0.005954492545243663, - "initial_qty_pct": 0.009298732693751139, - "markup_range": 0.0012905227590980413, - "min_markup": 0.002585064633818879, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030576670595112147, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5961465384180216, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RENUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RENUSDT.json deleted file mode 100644 index 7a370ed4e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.36945355259715246, - "ema_span_0": 911.8800643130855, - "ema_span_1": 907.491702210099, - "enabled": true, - "initial_eprice_ema_dist": -0.009375363682735324, - "initial_qty_pct": 0.006107781580715487, - "markup_range": 0.006690667732357222, - "min_markup": 0.004370747710131203, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02901540735802456, - "rentry_pprice_dist_wallet_exposure_weighting": 5.583123350231351, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3619403712958049, - "ema_span_0": 1329.8649371273264, - "ema_span_1": 1146.5713830945083, - "enabled": true, - "initial_eprice_ema_dist": -0.00862445364928739, - "initial_qty_pct": 0.018164550581756325, - "markup_range": 0.009897478057166368, - "min_markup": 0.009986432351726967, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04632645321791377, - "rentry_pprice_dist_wallet_exposure_weighting": 5.949266329727153, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RIFUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RIFUSDT.json deleted file mode 100644 index 5ddf587df..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RIFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320735056232349, - "ema_span_0": 1377.7338140853751, - "ema_span_1": 1315.72788196419, - "enabled": true, - "initial_eprice_ema_dist": -0.005557970672093364, - "initial_qty_pct": 0.014696599957221824, - "markup_range": 0.0041499510581069, - "min_markup": 0.003450766991245179, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243317882260661, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040504812283739, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RLCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RLCUSDT.json deleted file mode 100644 index 6a13ca187..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2421283026652539, - "ema_span_0": 807.7103711817177, - "ema_span_1": 718.987959942205, - "enabled": true, - "initial_eprice_ema_dist": -0.001837886888110054, - "initial_qty_pct": 0.010728799105224559, - "markup_range": 0.008338352741168086, - "min_markup": 0.006950368713506059, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03787913644652291, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2291753625891539, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0407019492088418, - "ema_span_0": 936.6983413862337, - "ema_span_1": 872.2051206285332, - "enabled": true, - "initial_eprice_ema_dist": -0.005663705288142316, - "initial_qty_pct": 0.013272831386783509, - "markup_range": 0.009023770577162703, - "min_markup": 0.006500623294579846, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03467316890992254, - "rentry_pprice_dist_wallet_exposure_weighting": 5.424686612323352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RNDRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RNDRUSDT.json deleted file mode 100644 index 726abcd44..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2323714453801804, - "ema_span_0": 698.5601327526128, - "ema_span_1": 807.5052716319987, - "enabled": true, - "initial_eprice_ema_dist": -0.005921499420700241, - "initial_qty_pct": 0.008690960875837135, - "markup_range": 0.003807973674971341, - "min_markup": 0.005656962160368147, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030531166319683525, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6165552896209899, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2285474773034974, - "ema_span_0": 910.1991296474632, - "ema_span_1": 1156.2972444107575, - "enabled": true, - "initial_eprice_ema_dist": 0.002595630124460573, - "initial_qty_pct": 0.014167721703075573, - "markup_range": 0.00172601526842613, - "min_markup": 0.002631013158127875, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03652117762737971, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7884443726057944, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ROSEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ROSEUSDT.json deleted file mode 100644 index c3c243e8e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4508673797138316, - "ema_span_0": 995.9623499439299, - "ema_span_1": 746.3830247953897, - "enabled": true, - "initial_eprice_ema_dist": -0.008071301081133964, - "initial_qty_pct": 0.005369471436440499, - "markup_range": 0.001110867402070223, - "min_markup": 0.00520649031408648, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029825605900795853, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1402535652882007, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.583598248930733, - "ema_span_0": 1380.3902693645273, - "ema_span_1": 1418.3556558860644, - "enabled": true, - "initial_eprice_ema_dist": -0.005954492545243663, - "initial_qty_pct": 0.009298732693751139, - "markup_range": 0.0012905227590980413, - "min_markup": 0.002585064633818879, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030576670595112147, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5961465384180216, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RSRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RSRUSDT.json deleted file mode 100644 index bf5e57495..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5204625450504768, - "ema_span_0": 940.6817301564687, - "ema_span_1": 1074.3829488509375, - "enabled": true, - "initial_eprice_ema_dist": -0.0032165570956532124, - "initial_qty_pct": 0.010976143901524592, - "markup_range": 0.0069003323711309, - "min_markup": 0.006333550991655241, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04676582536528967, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0476976453276996, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.895457303546347, - "ema_span_0": 498.9885067276947, - "ema_span_1": 525.1614227120004, - "enabled": true, - "initial_eprice_ema_dist": -2.699689038717153e-05, - "initial_qty_pct": 0.016276398633222902, - "markup_range": 0.004287394481326698, - "min_markup": 0.007433700575117856, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04815474489781955, - "rentry_pprice_dist_wallet_exposure_weighting": 2.185884428533784, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RUNEUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RUNEUSDT.json deleted file mode 100644 index 622945400..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.13688734661642907, - "ema_span_0": 998.4750059991502, - "ema_span_1": 1108.5685689368033, - "enabled": true, - "initial_eprice_ema_dist": -0.006746568521798218, - "initial_qty_pct": 0.006721281757734063, - "markup_range": 0.0018943321418933017, - "min_markup": 0.005611121428261691, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019583257462673673, - "rentry_pprice_dist_wallet_exposure_weighting": 2.200176664392078, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0473843252337143, - "ema_span_0": 1061.0737763174616, - "ema_span_1": 427.70129909281377, - "enabled": true, - "initial_eprice_ema_dist": 0.0005996339578144874, - "initial_qty_pct": 0.007327733421310945, - "markup_range": 0.0018918977588880995, - "min_markup": 0.003937477286768133, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05858434040692998, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1922050638633619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/RVNUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/RVNUSDT.json deleted file mode 100644 index ebd11e433..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6466048715708412, - "ema_span_0": 1017.0255736389438, - "ema_span_1": 1178.5985677882454, - "enabled": true, - "initial_eprice_ema_dist": -0.007214689277490035, - "initial_qty_pct": 0.013643259813012428, - "markup_range": 0.00871024923041763, - "min_markup": 0.0021084569582727306, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02446088843409402, - "rentry_pprice_dist_wallet_exposure_weighting": 6.743761286005332, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.937874629197145, - "ema_span_0": 1369.0225828624887, - "ema_span_1": 703.6394157557396, - "enabled": true, - "initial_eprice_ema_dist": 0.0019410378585243148, - "initial_qty_pct": 0.015305677954020243, - "markup_range": 0.0007261019300851621, - "min_markup": 0.0014506957841385689, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0328986809914612, - "rentry_pprice_dist_wallet_exposure_weighting": 2.347582291221971, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SANDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SANDUSDT.json deleted file mode 100644 index 1dcef2292..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.359132998205847, - "ema_span_0": 825.1561150352977, - "ema_span_1": 930.42952188107, - "enabled": true, - "initial_eprice_ema_dist": 0.0008747841022529903, - "initial_qty_pct": 0.010097587714021748, - "markup_range": 0.003331479135371563, - "min_markup": 0.0022364777986810776, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023933030783828132, - "rentry_pprice_dist_wallet_exposure_weighting": 3.588781972324132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5844338682951851, - "ema_span_0": 437.80675745257815, - "ema_span_1": 1414.2993024047598, - "enabled": true, - "initial_eprice_ema_dist": -0.00505857765251992, - "initial_qty_pct": 0.01758607117321029, - "markup_range": 0.004075853042265002, - "min_markup": 0.006461369342908076, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04120997425728767, - "rentry_pprice_dist_wallet_exposure_weighting": 5.070902220004788, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SEIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SEIUSDT.json deleted file mode 100644 index 2f5e00056..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7034342091311374, - "ema_span_0": 1099.9242059471053, - "ema_span_1": 1257.2874526024762, - "enabled": true, - "initial_eprice_ema_dist": -0.0025846653034224737, - "initial_qty_pct": 0.010888782013735313, - "markup_range": 0.0008065455976179746, - "min_markup": 0.004542600409945405, - "n_close_orders": 6, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4568772163496226, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.188555713506627, - "ema_span_0": 680.1846987216659, - "ema_span_1": 1416.6427278650579, - "enabled": true, - "initial_eprice_ema_dist": 0.0014738558278124085, - "initial_qty_pct": 0.005574170517253556, - "markup_range": 4.328737746592266e-05, - "min_markup": 0.008739480764029356, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03737307538589109, - "rentry_pprice_dist_wallet_exposure_weighting": 4.868521306167907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SFPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SFPUSDT.json deleted file mode 100644 index 1a6148820..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5756021603407104, - "ema_span_0": 1170.0880600334112, - "ema_span_1": 1214.5716264925802, - "enabled": true, - "initial_eprice_ema_dist": 0.0003735154806173854, - "initial_qty_pct": 0.018509374847292676, - "markup_range": 0.0015209686254940098, - "min_markup": 0.003571115195242526, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04056487607735703, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9175927940802047, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9225392068218443, - "ema_span_0": 744.7072556543817, - "ema_span_1": 627.8096795733827, - "enabled": true, - "initial_eprice_ema_dist": -0.006623495942258786, - "initial_qty_pct": 0.011245912515697938, - "markup_range": 0.0036835507514937967, - "min_markup": 0.0034217473309932616, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03453027624955944, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9495046067905871, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SKLUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SKLUSDT.json deleted file mode 100644 index c6952e427..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 953.7879563079778, - "ema_span_1": 940.4626360358659, - "enabled": true, - "initial_eprice_ema_dist": -0.003820216038838927, - "initial_qty_pct": 0.006368610907384597, - "markup_range": 0.005537120939533476, - "min_markup": 0.004964413218946407, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03951549958138876, - "rentry_pprice_dist_wallet_exposure_weighting": 0.13439867337899522, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6721504442376666, - "ema_span_0": 1079.1542285701132, - "ema_span_1": 634.4721818471548, - "enabled": true, - "initial_eprice_ema_dist": -0.0018357211710689774, - "initial_qty_pct": 0.009770879323193378, - "markup_range": 0.0033272479658460327, - "min_markup": 0.006826166126666276, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04262375935763565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9716735417897078, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SLPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SLPUSDT.json deleted file mode 100644 index 09f80c28a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SLPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SNTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SNTUSDT.json deleted file mode 100644 index f49db5285..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SNXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SNXUSDT.json deleted file mode 100644 index 9afb6e89d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8391206022542055, - "ema_span_0": 626.2082453718243, - "ema_span_1": 1410.530315813652, - "enabled": true, - "initial_eprice_ema_dist": -0.0008421567801266986, - "initial_qty_pct": 0.013496599007532334, - "markup_range": 0.007490432741993803, - "min_markup": 0.005161515062973764, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0396393670674104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.701737627880279, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9791462663350334, - "ema_span_0": 489.72535568742273, - "ema_span_1": 1003.9290584822483, - "enabled": true, - "initial_eprice_ema_dist": 0.002124319441959216, - "initial_qty_pct": 0.005099674646530883, - "markup_range": 0.007530804099560131, - "min_markup": 0.004423871094019008, - "n_close_orders": 5, - "rentry_pprice_dist": 0.056336596120067264, - "rentry_pprice_dist_wallet_exposure_weighting": 0.930119795898973, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SOLUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SOLUSDT.json deleted file mode 100644 index 00f080de6..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9806875348682906, - "ema_span_0": 1228.4960176419243, - "ema_span_1": 1192.5410053044332, - "enabled": true, - "initial_eprice_ema_dist": -0.0009536912088364027, - "initial_qty_pct": 0.007341693307594916, - "markup_range": 0.0014259057080125937, - "min_markup": 0.0033182678578392334, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01835530452735579, - "rentry_pprice_dist_wallet_exposure_weighting": 0.01826593626451788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3252969009193714, - "ema_span_0": 1274.066568885679, - "ema_span_1": 1177.2507885567413, - "enabled": true, - "initial_eprice_ema_dist": -0.008363536940436213, - "initial_qty_pct": 0.0051851525858614645, - "markup_range": 0.0022468362341934475, - "min_markup": 0.002819749838116762, - "n_close_orders": 7, - "rentry_pprice_dist": 0.046283326872007084, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1151821345163894, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SPELLUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SPELLUSDT.json deleted file mode 100644 index ea605ff29..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5500279031081032, - "ema_span_0": 673.6932381978544, - "ema_span_1": 647.9464058050072, - "enabled": true, - "initial_eprice_ema_dist": -0.007293172332743211, - "initial_qty_pct": 0.015970235724614146, - "markup_range": 0.005832242730892804, - "min_markup": 0.004609346464315513, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03184919169862164, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6171003772692372, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7460868823246048, - "ema_span_0": 512.4732120181827, - "ema_span_1": 568.655079654436, - "enabled": true, - "initial_eprice_ema_dist": -0.006390691286739958, - "initial_qty_pct": 0.011006508307210925, - "markup_range": 0.004667511789597811, - "min_markup": 0.004183648550354828, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026035667751698716, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23782093280234554, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SSVUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SSVUSDT.json deleted file mode 100644 index 1de2bcbe4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1029231932028439, - "ema_span_0": 719.5314946263667, - "ema_span_1": 631.1233600024781, - "enabled": true, - "initial_eprice_ema_dist": 0.0018181633614333186, - "initial_qty_pct": 0.010370054217609186, - "markup_range": 0.006194085838850265, - "min_markup": 0.004691976327073138, - "n_close_orders": 3, - "rentry_pprice_dist": 0.024789789792299316, - "rentry_pprice_dist_wallet_exposure_weighting": 5.1070778772071685, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3555288793945406, - "ema_span_0": 1417.9443538993999, - "ema_span_1": 1406.7036597986423, - "enabled": true, - "initial_eprice_ema_dist": 0.0004281062717331165, - "initial_qty_pct": 0.011185529433391175, - "markup_range": 0.009949148027719849, - "min_markup": 0.009543491530795395, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03444151164561383, - "rentry_pprice_dist_wallet_exposure_weighting": 6.5408053800826185, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STEEMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STEEMUSDT.json deleted file mode 100644 index f49db5285..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STEEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.250941633403503, - "ema_span_0": 919.4181793109476, - "ema_span_1": 924.8637436394408, - "enabled": true, - "initial_eprice_ema_dist": -0.0006341790297231961, - "initial_qty_pct": 0.011091353403248707, - "markup_range": 0.003712801556056965, - "min_markup": 0.004648849093545656, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024946869106936314, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2392959366488103, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STGUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STGUSDT.json deleted file mode 100644 index 2f3446131..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9613877653478122, - "ema_span_0": 1403.5779304519267, - "ema_span_1": 986.2050301738243, - "enabled": true, - "initial_eprice_ema_dist": 0.0029473592220951865, - "initial_qty_pct": 0.011596392005587073, - "markup_range": 0.002492152053448273, - "min_markup": 0.005476422965420731, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029802481657744895, - "rentry_pprice_dist_wallet_exposure_weighting": 4.827021536890128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.654569307665235, - "ema_span_0": 608.1273555909727, - "ema_span_1": 1163.7972534186836, - "enabled": true, - "initial_eprice_ema_dist": -0.003957845462116394, - "initial_qty_pct": 0.005000751213776687, - "markup_range": 0.0018042417459693128, - "min_markup": 0.0011170950983336466, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014859637802946012, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2320296467134297, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STMXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STMXUSDT.json deleted file mode 100644 index 9dd905ec0..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6963430919735328, - "ema_span_0": 1274.3952872435016, - "ema_span_1": 1348.4880020689625, - "enabled": true, - "initial_eprice_ema_dist": 0.002673420060824307, - "initial_qty_pct": 0.01705152952179798, - "markup_range": 0.002122166509934916, - "min_markup": 0.009944993933688974, - "n_close_orders": 10, - "rentry_pprice_dist": 0.044696465221140375, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4476231923937053, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746469161075211, - "ema_span_0": 1344.662340057815, - "ema_span_1": 734.9205180193246, - "enabled": true, - "initial_eprice_ema_dist": -0.004047379651675582, - "initial_qty_pct": 0.005172881306755962, - "markup_range": 0.008776542343640751, - "min_markup": 0.009551821475938683, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03277395242008468, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8475990733498997, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STORJUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STORJUSDT.json deleted file mode 100644 index 123548b36..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5619031685602304, - "ema_span_0": 1261.329166220125, - "ema_span_1": 762.3907336290989, - "enabled": true, - "initial_eprice_ema_dist": 0.001644313790621044, - "initial_qty_pct": 0.00900560625196739, - "markup_range": 0.0024211138379159037, - "min_markup": 0.0013842454017804833, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044171285980154906, - "rentry_pprice_dist_wallet_exposure_weighting": 2.623165726329451, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4982885224851143, - "ema_span_0": 1031.0760074261716, - "ema_span_1": 1195.2518215202156, - "enabled": true, - "initial_eprice_ema_dist": -0.0096881787756797, - "initial_qty_pct": 0.006825144849256261, - "markup_range": 0.0025379533703321624, - "min_markup": 0.002319783402850734, - "n_close_orders": 3, - "rentry_pprice_dist": 0.037036963691665876, - "rentry_pprice_dist_wallet_exposure_weighting": 2.822434337163259, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STPTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STPTUSDT.json deleted file mode 100644 index 7668a9dc4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.301019306035295, - "ema_span_0": 1303.5645252614443, - "ema_span_1": 1410.530315813652, - "enabled": true, - "initial_eprice_ema_dist": 0.0008016357425575652, - "initial_qty_pct": 0.013950521433389056, - "markup_range": 0.009327067888177954, - "min_markup": 0.004016623942232735, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030531166319683525, - "rentry_pprice_dist_wallet_exposure_weighting": 4.124534154859132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STRAXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STRAXUSDT.json deleted file mode 100644 index 43e080148..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STRAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2323714453801804, - "ema_span_0": 698.5601327526128, - "ema_span_1": 807.5052716319987, - "enabled": true, - "initial_eprice_ema_dist": -0.005921499420700241, - "initial_qty_pct": 0.008690960875837135, - "markup_range": 0.003807973674971341, - "min_markup": 0.005656962160368147, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030531166319683525, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6165552896209899, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/STXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/STXUSDT.json deleted file mode 100644 index e42083495..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.086731723078385, - "ema_span_0": 551.8888254765498, - "ema_span_1": 655.6800360150555, - "enabled": true, - "initial_eprice_ema_dist": -0.0038711784866043786, - "initial_qty_pct": 0.007906162508990414, - "markup_range": 0.007523767860505048, - "min_markup": 0.004195136349782745, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03865774199065825, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6249305768065143, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.814969255822835, - "ema_span_0": 917.7742697582835, - "ema_span_1": 953.2176621911838, - "enabled": true, - "initial_eprice_ema_dist": -0.006065687656451341, - "initial_qty_pct": 0.01814006340666354, - "markup_range": 4.141954555737774e-05, - "min_markup": 0.001959431833416088, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03737307538589109, - "rentry_pprice_dist_wallet_exposure_weighting": 6.56600867991594, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SUIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SUIUSDT.json deleted file mode 100644 index 0c114f145..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0221251246758905, - "ema_span_0": 912.2259508831431, - "ema_span_1": 1008.2403932830847, - "enabled": true, - "initial_eprice_ema_dist": -0.00017388900125742685, - "initial_qty_pct": 0.006080155684310265, - "markup_range": 0.0006159699597775149, - "min_markup": 0.004223839159252918, - "n_close_orders": 8, - "rentry_pprice_dist": 0.028464717850108047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3590702464769926, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746469161075211, - "ema_span_0": 1344.662340057815, - "ema_span_1": 734.9205180193246, - "enabled": true, - "initial_eprice_ema_dist": -0.004047379651675582, - "initial_qty_pct": 0.005172881306755962, - "markup_range": 0.008776542343640751, - "min_markup": 0.009551821475938683, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03277395242008468, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8475990733498997, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SUPERUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SUPERUSDT.json deleted file mode 100644 index 10864b981..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SUPERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3566513458439684, - "ema_span_0": 1286.16383457296, - "ema_span_1": 711.5797473355678, - "enabled": true, - "initial_eprice_ema_dist": -0.0009837399878911068, - "initial_qty_pct": 0.013874991114561763, - "markup_range": 0.0015486436214472953, - "min_markup": 0.003466683690760222, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02410010759470665, - "rentry_pprice_dist_wallet_exposure_weighting": 4.124534154859132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1877792568362755, - "ema_span_0": 425.63452792461715, - "ema_span_1": 1292.1124719184365, - "enabled": true, - "initial_eprice_ema_dist": -0.009676369322069998, - "initial_qty_pct": 0.0068777691618285225, - "markup_range": 0.006716418781921619, - "min_markup": 0.009800893793092189, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04287367625047628, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3638331240488583, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SUSHIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SUSHIUSDT.json deleted file mode 100644 index d2b0fc2b4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5560072704512888, - "ema_span_0": 917.3708939136229, - "ema_span_1": 983.0578243417785, - "enabled": true, - "initial_eprice_ema_dist": -0.004616009104807251, - "initial_qty_pct": 0.006062156709855068, - "markup_range": 0.004859395636862858, - "min_markup": 0.001266492092352165, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03959009013981101, - "rentry_pprice_dist_wallet_exposure_weighting": 2.200176664392078, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.913551024030868, - "ema_span_0": 536.4903016108796, - "ema_span_1": 1323.2011378245309, - "enabled": true, - "initial_eprice_ema_dist": -0.006902245155444716, - "initial_qty_pct": 0.014397346286025575, - "markup_range": 0.007103759328925251, - "min_markup": 0.0049911555407524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547546669463546, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1087103506050293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/SXPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/SXPUSDT.json deleted file mode 100644 index 086c03396..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3929066120171405, - "ema_span_0": 839.8268312872983, - "ema_span_1": 812.34964470315, - "enabled": true, - "initial_eprice_ema_dist": -0.00283598655681286, - "initial_qty_pct": 0.009633427590484396, - "markup_range": 0.002951787833486654, - "min_markup": 0.0021862482743790746, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03286836003117065, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9881416874238589, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6722644495757322, - "ema_span_0": 1035.8112690069995, - "ema_span_1": 1428.3423868955856, - "enabled": true, - "initial_eprice_ema_dist": 0.002997025215600329, - "initial_qty_pct": 0.006638879783996336, - "markup_range": 4.141954555737774e-05, - "min_markup": 0.001193102132730302, - "n_close_orders": 8, - "rentry_pprice_dist": 0.054929591831113136, - "rentry_pprice_dist_wallet_exposure_weighting": 5.629906224842371, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/THETAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/THETAUSDT.json deleted file mode 100644 index 4513f4e5d..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5500279031081032, - "ema_span_0": 673.6932381978544, - "ema_span_1": 647.9464058050072, - "enabled": true, - "initial_eprice_ema_dist": -0.007293172332743211, - "initial_qty_pct": 0.015970235724614146, - "markup_range": 0.005832242730892804, - "min_markup": 0.004609346464315513, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03184919169862164, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6171003772692372, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2285474773034974, - "ema_span_0": 910.1991296474632, - "ema_span_1": 1156.2972444107575, - "enabled": true, - "initial_eprice_ema_dist": 0.002595630124460573, - "initial_qty_pct": 0.014167721703075573, - "markup_range": 0.00172601526842613, - "min_markup": 0.002631013158127875, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03652117762737971, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7884443726057944, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TIAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TIAUSDT.json deleted file mode 100644 index 46bea7fad..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TIAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032776664775772, - "ema_span_0": 602.33034596505, - "ema_span_1": 592.9054544845752, - "enabled": true, - "initial_eprice_ema_dist": -0.006686331686418298, - "initial_qty_pct": 0.019326850484717484, - "markup_range": 0.003465884369896487, - "min_markup": 0.004260650451596385, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02454199009973456, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6236545139944023, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.67991752235889, - "ema_span_0": 593.929812914102, - "ema_span_1": 741.4842600483224, - "enabled": true, - "initial_eprice_ema_dist": 0.0013744438601003997, - "initial_qty_pct": 0.02, - "markup_range": 0.0034667360150093685, - "min_markup": 0.004006731664747872, - "n_close_orders": 10, - "rentry_pprice_dist": 0.055419236773849995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.439286521103501, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TLMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TLMUSDT.json deleted file mode 100644 index 9eecc404e..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3560184944527934, - "ema_span_0": 1143.6311761630873, - "ema_span_1": 846.7372316981092, - "enabled": true, - "initial_eprice_ema_dist": 0.001176472752611811, - "initial_qty_pct": 0.017403316223023265, - "markup_range": 0.003219573747998967, - "min_markup": 0.003727082997918708, - "n_close_orders": 2, - "rentry_pprice_dist": 0.025299993963300856, - "rentry_pprice_dist_wallet_exposure_weighting": 6.978806058241652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7611384312703418, - "ema_span_0": 935.4856894610932, - "ema_span_1": 700.8244904820343, - "enabled": true, - "initial_eprice_ema_dist": 0.002508519022970903, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.002652788740167997, - "min_markup": 0.0071346702604017, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02378873694425675, - "rentry_pprice_dist_wallet_exposure_weighting": 4.295998330825639, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TOKENUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TOKENUSDT.json deleted file mode 100644 index f7d035765..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TOKENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.540452365610252, - "ema_span_0": 1172.032137394778, - "ema_span_1": 1360.6824259656994, - "enabled": true, - "initial_eprice_ema_dist": 0.0016753427895384193, - "initial_qty_pct": 0.012721839711207166, - "markup_range": 0.002121242758635443, - "min_markup": 0.001873547111422482, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014972937722714462, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0953608169925616, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8320735056232349, - "ema_span_0": 1377.7338140853751, - "ema_span_1": 1315.72788196419, - "enabled": true, - "initial_eprice_ema_dist": -0.005557970672093364, - "initial_qty_pct": 0.014696599957221824, - "markup_range": 0.0041499510581069, - "min_markup": 0.003450766991245179, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243317882260661, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4040504812283739, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TRBUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TRBUSDT.json deleted file mode 100644 index c8210b305..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4122775274843693, - "ema_span_0": 518.0262521142672, - "ema_span_1": 426.5011544871866, - "enabled": true, - "initial_eprice_ema_dist": 0.0028050287401174268, - "initial_qty_pct": 0.012048190602412983, - "markup_range": 0.0014466123223439056, - "min_markup": 0.00577245630222905, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04793756356148688, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0116245840719864, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5711293121575305, - "ema_span_0": 1102.533011935786, - "ema_span_1": 1159.670713011878, - "enabled": true, - "initial_eprice_ema_dist": -0.00039406516653839156, - "initial_qty_pct": 0.006250185809971405, - "markup_range": 0.004727095975296477, - "min_markup": 0.0029801108397235327, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04911273095661961, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0408346568183535, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TRUUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TRUUSDT.json deleted file mode 100644 index 78cae1316..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1250357338796583, - "ema_span_0": 911.5048657824906, - "ema_span_1": 587.2273804955296, - "enabled": true, - "initial_eprice_ema_dist": -0.004104164415518372, - "initial_qty_pct": 0.016982593936354522, - "markup_range": 0.008340070303466113, - "min_markup": 0.0054927358606795115, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0397798872003406, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7574987830169673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1946615545459407, - "ema_span_0": 1318.5446289123033, - "ema_span_1": 1289.561271228651, - "enabled": true, - "initial_eprice_ema_dist": 0.0029990840231062803, - "initial_qty_pct": 0.019198079701195362, - "markup_range": 0.0024402800749482854, - "min_markup": 0.003909302473398212, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03660234125015879, - "rentry_pprice_dist_wallet_exposure_weighting": 5.78332235709517, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TRXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TRXUSDT.json deleted file mode 100644 index 3df7e2499..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8870823288988265, - "ema_span_0": 1227.8132376622348, - "ema_span_1": 1321.8000795971352, - "enabled": true, - "initial_eprice_ema_dist": 6.853455988358813e-05, - "initial_qty_pct": 0.005017927303128846, - "markup_range": 0.0007870063587902356, - "min_markup": 0.0034423010081400768, - "n_close_orders": 8, - "rentry_pprice_dist": 0.01912117576487501, - "rentry_pprice_dist_wallet_exposure_weighting": 0.129835836003858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7660476198306834, - "ema_span_0": 1370.0735071165946, - "ema_span_1": 1367.620967449746, - "enabled": true, - "initial_eprice_ema_dist": 0.002616063853460125, - "initial_qty_pct": 0.0182430417837314, - "markup_range": 7.57243905269582e-06, - "min_markup": 0.0010289274837848917, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027945228701002828, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4751824433880456, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TUSDT.json deleted file mode 100644 index 5c79fdb13..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3560184944527934, - "ema_span_0": 1143.6311761630873, - "ema_span_1": 846.7372316981092, - "enabled": true, - "initial_eprice_ema_dist": 0.001176472752611811, - "initial_qty_pct": 0.017403316223023265, - "markup_range": 0.003219573747998967, - "min_markup": 0.003727082997918708, - "n_close_orders": 2, - "rentry_pprice_dist": 0.025299993963300856, - "rentry_pprice_dist_wallet_exposure_weighting": 6.978806058241652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0404863690445394, - "ema_span_0": 508.8138146540647, - "ema_span_1": 1405.6476023947666, - "enabled": true, - "initial_eprice_ema_dist": -0.002069637735690762, - "initial_qty_pct": 0.00793227650564069, - "markup_range": 0.0034936225017886307, - "min_markup": 0.004201652198626002, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021273347464579075, - "rentry_pprice_dist_wallet_exposure_weighting": 5.456605278937464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/TWTUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/TWTUSDT.json deleted file mode 100644 index 358eee416..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/TWTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032776664775772, - "ema_span_0": 602.33034596505, - "ema_span_1": 592.9054544845752, - "enabled": true, - "initial_eprice_ema_dist": -0.006686331686418298, - "initial_qty_pct": 0.019326850484717484, - "markup_range": 0.003465884369896487, - "min_markup": 0.004260650451596385, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02454199009973456, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6236545139944023, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/UMAUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/UMAUSDT.json deleted file mode 100644 index 243a6910a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18019205628271512, - "ema_span_0": 534.5492787919588, - "ema_span_1": 526.2165293023638, - "enabled": true, - "initial_eprice_ema_dist": -0.005660659913679484, - "initial_qty_pct": 0.013950521433389056, - "markup_range": 0.0033846665329454913, - "min_markup": 0.003731847621795424, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016985622879874054, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424033445206709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1339993537192408, - "ema_span_0": 620.8627305199273, - "ema_span_1": 719.3386839010539, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011869176653892203, - "markup_range": 0.000840933966235916, - "min_markup": 0.005214225304351701, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04809614023362284, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/UNFIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/UNFIUSDT.json deleted file mode 100644 index b7ca77cc8..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9892011135965713, - "ema_span_0": 875.956183867657, - "ema_span_1": 872.3335331755394, - "enabled": true, - "initial_eprice_ema_dist": -0.007800837596464441, - "initial_qty_pct": 0.005662169890086724, - "markup_range": 0.0026706470618728232, - "min_markup": 0.008263373176973749, - "n_close_orders": 15, - "rentry_pprice_dist": 0.05852655500879667, - "rentry_pprice_dist_wallet_exposure_weighting": 2.930748730854311, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/UNIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/UNIUSDT.json deleted file mode 100644 index a97244fbd..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0119952211114476, - "ema_span_0": 400, - "ema_span_1": 782.0167460569916, - "enabled": true, - "initial_eprice_ema_dist": 0.0019276790065508233, - "initial_qty_pct": 0.005934097752452366, - "markup_range": 0.0024290085401056515, - "min_markup": 0.00225877826171538, - "n_close_orders": 9, - "rentry_pprice_dist": 0.019908154779860448, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43826259955089786, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.948250847222004, - "ema_span_0": 911.7981057902331, - "ema_span_1": 1416.6707636809806, - "enabled": true, - "initial_eprice_ema_dist": 0.0013252099042811059, - "initial_qty_pct": 0.015426695763849621, - "markup_range": 0.0016153424934992504, - "min_markup": 0.0056577840840008106, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03020837968567641, - "rentry_pprice_dist_wallet_exposure_weighting": 0.06762231942734827, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/USDCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/USDCUSDT.json deleted file mode 100644 index 85caf3ecd..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.796410730710356, - "ema_span_0": 1011.0192473397711, - "ema_span_1": 1040.531602433019, - "enabled": true, - "initial_eprice_ema_dist": 0.0008016357425575652, - "initial_qty_pct": 0.005792117068611456, - "markup_range": 0.0038612310908585604, - "min_markup": 0.008863881511519449, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04503579178759553, - "rentry_pprice_dist_wallet_exposure_weighting": 2.834197296693692, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.654569307665235, - "ema_span_0": 608.1273555909727, - "ema_span_1": 1163.7972534186836, - "enabled": true, - "initial_eprice_ema_dist": -0.003957845462116394, - "initial_qty_pct": 0.005000751213776687, - "markup_range": 0.0018042417459693128, - "min_markup": 0.0011170950983336466, - "n_close_orders": 13, - "rentry_pprice_dist": 0.014859637802946012, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2320296467134297, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/USTCUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/USTCUSDT.json deleted file mode 100644 index 54c26395a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/USTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7529370582417454, - "ema_span_0": 843.0302491673476, - "ema_span_1": 747.7597975149588, - "enabled": true, - "initial_eprice_ema_dist": -0.006138376643075234, - "initial_qty_pct": 0.016314106646707474, - "markup_range": 0.007602330927603089, - "min_markup": 0.005900460452676445, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0270737968535868, - "rentry_pprice_dist_wallet_exposure_weighting": 4.553911293989479, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3791651864238768, - "ema_span_0": 849.6457026181579, - "ema_span_1": 1178.7336900798684, - "enabled": true, - "initial_eprice_ema_dist": -0.001970318935468464, - "initial_qty_pct": 0.011576417883555457, - "markup_range": 0.003556381656652438, - "min_markup": 0.004946815607331975, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0334794117114653, - "rentry_pprice_dist_wallet_exposure_weighting": 1.07566756145502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/VETUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/VETUSDT.json deleted file mode 100644 index 0c54ef591..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033221402342788, - "ema_span_0": 530.40834479273, - "ema_span_1": 553.7406233199865, - "enabled": true, - "initial_eprice_ema_dist": -0.008700376344713693, - "initial_qty_pct": 0.0068151379224953785, - "markup_range": 0.0010966287702562094, - "min_markup": 0.0026045896311858554, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014118048362395455, - "rentry_pprice_dist_wallet_exposure_weighting": 6.158408017417416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0404863690445394, - "ema_span_0": 508.8138146540647, - "ema_span_1": 1405.6476023947666, - "enabled": true, - "initial_eprice_ema_dist": -0.002069637735690762, - "initial_qty_pct": 0.00793227650564069, - "markup_range": 0.0034936225017886307, - "min_markup": 0.004201652198626002, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021273347464579075, - "rentry_pprice_dist_wallet_exposure_weighting": 5.456605278937464, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/WAVESUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/WAVESUSDT.json deleted file mode 100644 index e7267216c..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7703656550559126, - "ema_span_0": 631.796410292257, - "ema_span_1": 830.2213135974577, - "enabled": true, - "initial_eprice_ema_dist": -0.002108133869984519, - "initial_qty_pct": 0.00631500988633688, - "markup_range": 0.002660005198908099, - "min_markup": 0.005606326790926641, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032466668674912706, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3632733100757943, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9096882693184065, - "ema_span_0": 725.4853256941044, - "ema_span_1": 1165.6555990547017, - "enabled": true, - "initial_eprice_ema_dist": 0.0021667958892405484, - "initial_qty_pct": 0.006613662603725277, - "markup_range": 4.069142357194305e-05, - "min_markup": 0.0019250821320548582, - "n_close_orders": 11, - "rentry_pprice_dist": 0.048696259243225466, - "rentry_pprice_dist_wallet_exposure_weighting": 5.34175213638984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/WAXPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/WAXPUSDT.json deleted file mode 100644 index 57eff1d25..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/WAXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.805066044775026, - "ema_span_0": 1396.631450743203, - "ema_span_1": 741.8969275767038, - "enabled": true, - "initial_eprice_ema_dist": -0.005907888381037571, - "initial_qty_pct": 0.012538128572411008, - "markup_range": 0.0018026212436854183, - "min_markup": 0.005218032226440953, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015212918116522343, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7934790130573202, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/WLDUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/WLDUSDT.json deleted file mode 100644 index 3cd80b126..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4033221402342788, - "ema_span_0": 530.40834479273, - "ema_span_1": 553.7406233199865, - "enabled": true, - "initial_eprice_ema_dist": -0.008700376344713693, - "initial_qty_pct": 0.0068151379224953785, - "markup_range": 0.0010966287702562094, - "min_markup": 0.0026045896311858554, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014118048362395455, - "rentry_pprice_dist_wallet_exposure_weighting": 6.158408017417416, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.33456702144772615, - "ema_span_0": 866.5597671283036, - "ema_span_1": 889.7923039888518, - "enabled": true, - "initial_eprice_ema_dist": 0.0016640521954049768, - "initial_qty_pct": 0.018038742028664602, - "markup_range": 0.009249293142363118, - "min_markup": 0.0049064656734541575, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04580762407827507, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2353592628418903, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/WOOUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/WOOUSDT.json deleted file mode 100644 index 7e9af7fce..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5530647951187069, - "ema_span_0": 690.340762651848, - "ema_span_1": 787.8889371169417, - "enabled": true, - "initial_eprice_ema_dist": 0.001248973216250272, - "initial_qty_pct": 0.005476685879124668, - "markup_range": 0.004618803509931985, - "min_markup": 0.0021885243655805683, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03814577729938381, - "rentry_pprice_dist_wallet_exposure_weighting": 4.578597593254098, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9537966206263309, - "ema_span_0": 869.8813573164808, - "ema_span_1": 1099.7355163262016, - "enabled": true, - "initial_eprice_ema_dist": -0.0047916505498495346, - "initial_qty_pct": 0.010617246958692544, - "markup_range": 0.002031781504121638, - "min_markup": 0.006926604373406353, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03871752943188565, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5686866628653946, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XEMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XEMUSDT.json deleted file mode 100644 index 4c6604ed4..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5560072704512888, - "ema_span_0": 480.58504511013405, - "ema_span_1": 584.4248002439504, - "enabled": true, - "initial_eprice_ema_dist": -0.0017755913626368734, - "initial_qty_pct": 0.00848151028572892, - "markup_range": 0.0034049659233737887, - "min_markup": 0.0028368581842737055, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03403901882173844, - "rentry_pprice_dist_wallet_exposure_weighting": 4.239997740277352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.180480899991327, - "ema_span_0": 521.136584794594, - "ema_span_1": 694.0588720216742, - "enabled": true, - "initial_eprice_ema_dist": 0.00036753175523396325, - "initial_qty_pct": 0.010558816988597636, - "markup_range": 0.0017818149047509652, - "min_markup": 0.0071346702604017, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026082526398319643, - "rentry_pprice_dist_wallet_exposure_weighting": 0.17967874582422289, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XLMUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XLMUSDT.json deleted file mode 100644 index e72abb459..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2726985687255388, - "ema_span_0": 402.9932652064557, - "ema_span_1": 577.3054741800265, - "enabled": true, - "initial_eprice_ema_dist": 0.0028454818973671827, - "initial_qty_pct": 0.011780150807984134, - "markup_range": 0.002791132522773065, - "min_markup": 0.002796750776269394, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023922423707920002, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5660382864137, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9958935241159512, - "ema_span_0": 761.3789807812936, - "ema_span_1": 1184.427031266694, - "enabled": true, - "initial_eprice_ema_dist": -0.007591596898360642, - "initial_qty_pct": 0.01113775250458756, - "markup_range": 0.0005100610708108653, - "min_markup": 0.0030030174671310476, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023674760227035803, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132685040383516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XMRUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XMRUSDT.json deleted file mode 100644 index 8acf685b6..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.48779314977705124, - "ema_span_0": 973.0408040490249, - "ema_span_1": 851.3435178432846, - "enabled": true, - "initial_eprice_ema_dist": -0.008329547612915416, - "initial_qty_pct": 0.011908091152636349, - "markup_range": 0.0012818662084264352, - "min_markup": 0.0033050532744442964, - "n_close_orders": 10, - "rentry_pprice_dist": 0.021868968296482782, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19338799447501379, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.155895597647212, - "ema_span_0": 1209.6730103275934, - "ema_span_1": 820.1166938745706, - "enabled": true, - "initial_eprice_ema_dist": 0.0025409296675016507, - "initial_qty_pct": 0.016248953348148902, - "markup_range": 0.0007236019720518069, - "min_markup": 0.0038416583065198945, - "n_close_orders": 9, - "rentry_pprice_dist": 0.01721359488471775, - "rentry_pprice_dist_wallet_exposure_weighting": 4.009625863744671, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XRPUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XRPUSDT.json deleted file mode 100644 index d252d7f51..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4235277703368219, - "ema_span_0": 575.433854185144, - "ema_span_1": 843.4293531878612, - "enabled": true, - "initial_eprice_ema_dist": -0.008272831018355764, - "initial_qty_pct": 0.007132091096776798, - "markup_range": 0.006198594734597271, - "min_markup": 0.005551145312004001, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029519487480186502, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8503247158007325, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6109352348341963, - "ema_span_0": 756.2386880035301, - "ema_span_1": 724.4258648998097, - "enabled": true, - "initial_eprice_ema_dist": 0.0015797470093028537, - "initial_qty_pct": 0.00809402807072568, - "markup_range": 0.005298974655827438, - "min_markup": 0.002017364815669937, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03490764920786212, - "rentry_pprice_dist_wallet_exposure_weighting": 1.311816059402622, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XTZUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XTZUSDT.json deleted file mode 100644 index 8b0a865bc..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2549446190579692, - "ema_span_0": 1337.3548660623603, - "ema_span_1": 1397.3797504970314, - "enabled": true, - "initial_eprice_ema_dist": 0.002963475713494003, - "initial_qty_pct": 0.017175480560618305, - "markup_range": 0.0037951884961677494, - "min_markup": 0.0038047274400579124, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04438258443638693, - "rentry_pprice_dist_wallet_exposure_weighting": 1.516731910471702, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7460868823246048, - "ema_span_0": 512.4732120181827, - "ema_span_1": 568.655079654436, - "enabled": true, - "initial_eprice_ema_dist": -0.006390691286739958, - "initial_qty_pct": 0.011006508307210925, - "markup_range": 0.004667511789597811, - "min_markup": 0.004183648550354828, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026035667751698716, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23782093280234554, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XVGUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XVGUSDT.json deleted file mode 100644 index 499e1edf7..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7699240067980163, - "ema_span_0": 1399.5192074426031, - "ema_span_1": 1420.9695075495474, - "enabled": true, - "initial_eprice_ema_dist": -0.007310588680386751, - "initial_qty_pct": 0.012457695647946911, - "markup_range": 0.006067027399306634, - "min_markup": 0.006667350293802354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.023847212007258676, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138274720778858, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 527.001166709515, - "enabled": true, - "initial_eprice_ema_dist": -0.004047379651675582, - "initial_qty_pct": 0.016144720977643173, - "markup_range": 0.0034936225017886307, - "min_markup": 0.006826166126666276, - "n_close_orders": 14, - "rentry_pprice_dist": 0.023154783587594954, - "rentry_pprice_dist_wallet_exposure_weighting": 2.376997427261116, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/XVSUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/XVSUSDT.json deleted file mode 100644 index cdb9f99fd..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.53479545980366, - "ema_span_0": 777.0497067322802, - "ema_span_1": 788.5884606526572, - "enabled": true, - "initial_eprice_ema_dist": -0.001896885272325929, - "initial_qty_pct": 0.018301209791439108, - "markup_range": 0.0028158295355093454, - "min_markup": 0.004257426866310859, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03815068446473374, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4568772163496226, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2285474773034974, - "ema_span_0": 910.1991296474632, - "ema_span_1": 1156.2972444107575, - "enabled": true, - "initial_eprice_ema_dist": 0.002595630124460573, - "initial_qty_pct": 0.014167721703075573, - "markup_range": 0.00172601526842613, - "min_markup": 0.002631013158127875, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03652117762737971, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7884443726057944, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/YFIUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/YFIUSDT.json deleted file mode 100644 index 32c0831db..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8272171050580601, - "ema_span_0": 969.6889268733402, - "ema_span_1": 443.1116970962414, - "enabled": true, - "initial_eprice_ema_dist": -0.008062787222863275, - "initial_qty_pct": 0.00701643261076731, - "markup_range": 0.0006630017336950707, - "min_markup": 0.0041236485293884, - "n_close_orders": 13, - "rentry_pprice_dist": 0.026764010512255413, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12196006191078028, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.291755675842417, - "ema_span_0": 1329.4655439697156, - "ema_span_1": 436.4975807530978, - "enabled": true, - "initial_eprice_ema_dist": -0.004821975710257179, - "initial_qty_pct": 0.009453459260410768, - "markup_range": 0.0016755298534680194, - "min_markup": 0.003995304577275092, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973163740896623, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6152150374534491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/YGGUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/YGGUSDT.json deleted file mode 100644 index 2e89b0785..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18019205628271512, - "ema_span_0": 534.5492787919588, - "ema_span_1": 526.2165293023638, - "enabled": true, - "initial_eprice_ema_dist": -0.005660659913679484, - "initial_qty_pct": 0.013950521433389056, - "markup_range": 0.0033846665329454913, - "min_markup": 0.003731847621795424, - "n_close_orders": 2, - "rentry_pprice_dist": 0.016985622879874054, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424033445206709, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1816267641494727, - "ema_span_0": 743.444950933012, - "ema_span_1": 439.657775673278, - "enabled": true, - "initial_eprice_ema_dist": -0.0004917100339056043, - "initial_qty_pct": 0.010264595003945266, - "markup_range": 0.007086383876503561, - "min_markup": 0.008552996741070568, - "n_close_orders": 2, - "rentry_pprice_dist": 0.028824052986596183, - "rentry_pprice_dist_wallet_exposure_weighting": 5.497923084159516, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZECUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ZECUSDT.json deleted file mode 100644 index 4402dff55..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.008411151222328, - "ema_span_0": 931.9099417876482, - "ema_span_1": 1146.649158467737, - "enabled": true, - "initial_eprice_ema_dist": -0.002367571903723875, - "initial_qty_pct": 0.01154784289355355, - "markup_range": 0.0017249108387440762, - "min_markup": 0.006021751363220017, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03691671195992522, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5481971136523165, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 619.1354180742154, - "ema_span_1": 594.6653164570171, - "enabled": true, - "initial_eprice_ema_dist": -0.007600878591903731, - "initial_qty_pct": 0.015431093340094746, - "markup_range": 0.002356556693810859, - "min_markup": 0.0023934903153497544, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01779865761221544, - "rentry_pprice_dist_wallet_exposure_weighting": 6.213724350756423, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZENUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ZENUSDT.json deleted file mode 100644 index 62f6e1b81..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3560184944527934, - "ema_span_0": 1143.6311761630873, - "ema_span_1": 846.7372316981092, - "enabled": true, - "initial_eprice_ema_dist": 0.001176472752611811, - "initial_qty_pct": 0.017403316223023265, - "markup_range": 0.003219573747998967, - "min_markup": 0.003727082997918708, - "n_close_orders": 2, - "rentry_pprice_dist": 0.025299993963300856, - "rentry_pprice_dist_wallet_exposure_weighting": 6.978806058241652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4215817574640043, - "ema_span_0": 1146.621452859534, - "ema_span_1": 1317.2207004437712, - "enabled": true, - "initial_eprice_ema_dist": 0.0026005663069131953, - "initial_qty_pct": 0.01966103784355232, - "markup_range": 0.009988634001373283, - "min_markup": 0.007182464477389872, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03758461735902799, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8409627016073373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZILUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ZILUSDT.json deleted file mode 100644 index 5ecf243d5..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6970682211002261, - "ema_span_0": 824.6294228638478, - "ema_span_1": 665.6060379779635, - "enabled": true, - "initial_eprice_ema_dist": 0.0029958630061544538, - "initial_qty_pct": 0.007763454128866125, - "markup_range": 0.0035434379382813432, - "min_markup": 0.0036254490685249997, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03190242925450784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.272443014834707, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2410648168522753, - "ema_span_0": 1217.867442155748, - "ema_span_1": 1048.8320742284973, - "enabled": true, - "initial_eprice_ema_dist": -0.006945343508210832, - "initial_qty_pct": 0.011121541142070106, - "markup_range": 0.002652788740167997, - "min_markup": 0.0019832586298828064, - "n_close_orders": 4, - "rentry_pprice_dist": 0.028581551715282257, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9446392364217492, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZRXUSDT.json b/configs/live/multisymbol/archived/2024-02-02_no_AU/ZRXUSDT.json deleted file mode 100644 index e9e7cec37..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9613877653478122, - "ema_span_0": 1403.5779304519267, - "ema_span_1": 986.2050301738243, - "enabled": true, - "initial_eprice_ema_dist": 0.0029473592220951865, - "initial_qty_pct": 0.011596392005587073, - "markup_range": 0.002492152053448273, - "min_markup": 0.005476422965420731, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029802481657744895, - "rentry_pprice_dist_wallet_exposure_weighting": 4.827021536890128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4607631929873754, - "ema_span_0": 835.8013119674338, - "ema_span_1": 448.1353725521645, - "enabled": true, - "initial_eprice_ema_dist": 0.0014576531781865332, - "initial_qty_pct": 0.01069145532323565, - "markup_range": 0.007816500460188702, - "min_markup": 0.009887259861896522, - "n_close_orders": 5, - "rentry_pprice_dist": 0.035870129455594243, - "rentry_pprice_dist_wallet_exposure_weighting": 4.287602369988822, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-02-02_no_AU/metrics_no_AU.txt b/configs/live/multisymbol/archived/2024-02-02_no_AU/metrics_no_AU.txt deleted file mode 100644 index a59c04f4a..000000000 --- a/configs/live/multisymbol/archived/2024-02-02_no_AU/metrics_no_AU.txt +++ /dev/null @@ -1,508 +0,0 @@ -### single symbol backtest metrics ### - -update: 2024-02-03 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| 1000BONKUSDT | 0.002927 | 0.00647 | 0.06481 | 0.03365 | 0.009223 | 0.01171 | 31.67 | 0.07211 | 0.0 | 0.06731 | 0.09374 | 69.38 | 273499999.997 | -| UMAUSDT | 0.002556 | 0.001157 | 0.03964 | 0.003173 | 0.006632 | 0.006059 | 57.98 | 0.04136 | 0.0 | 0.02932 | 0.1043 | 266.46 | 273499999.997 | -| ARKMUSDT | 0.002636 | 0.001717 | 0.04579 | 0.01872 | 0.01204 | 0.01069 | 72.0 | 0.05392 | 0.0 | 0.03783 | 0.0634 | 186.88 | 273499999.997 | -| ORDIUSDT | 0.002982 | 0.004901 | 0.01662 | 0.002241 | 0.007987 | 0.006483 | 34.45 | 0.02748 | 0.0 | 0.006204 | 0.03513 | 85.46 | 273499999.997 | -| MAVUSDT | 0.002644 | 0.001548 | 0.01153 | 0.0007312 | 0.01145 | 0.009028 | 79.83 | 0.03621 | 0.0 | 0.0064 | 0.02628 | 216.46 | 273499999.997 | -| NTRNUSDT | 0.003065 | 0.003892 | 0.03156 | 0.005518 | 0.00753 | 0.005999 | 29.28 | 0.02492 | 0.0 | 0.01415 | 0.02426 | 78.46 | 273499999.997 | -| SEIUSDT | 0.00269 | 0.002376 | 0.05452 | 0.03978 | 0.009485 | 0.01257 | 106.4 | 0.1084 | 0.0 | 0.09752 | 0.1478 | 167.88 | 273499999.997 | -| RNDRUSDT | 0.002637 | 0.001932 | 0.02703 | 0.007738 | 0.009166 | 0.008485 | 79.93 | 0.04509 | 0.0 | 0.0302 | 0.09488 | 362.88 | 273499999.997 | -| YGGUSDT | 0.002555 | 0.002426 | 0.07082 | 0.02432 | 0.009253 | 0.01075 | 60.42 | 0.08808 | 0.0 | 0.08125 | 0.1028 | 179.83 | 273499999.997 | -| BIGTIMEUSDT | 0.002613 | 0.003993 | 0.0332 | 0.002868 | 0.009159 | 0.00732 | 70.52 | 0.03037 | 0.0 | 0.01566 | 0.03587 | 110.38 | 273499999.997 | -| PYTHUSDT | 0.003287 | 0.004408 | 0.03939 | 0.01905 | 0.007798 | 0.008835 | 28.78 | 0.0571 | 0.0 | 0.05507 | 0.08293 | 70.38 | 273499999.997 | -| MEMEUSDT | 0.002164 | 0.004071 | 0.05947 | 0.004931 | 0.009102 | 0.008377 | 20.12 | 0.04123 | 0.0 | 0.02746 | 0.04971 | 89.46 | 273499999.998 | -| XVGUSDT | 0.001588 | 0.001628 | 0.06747 | 0.01862 | 0.009441 | 0.008975 | 52.03 | 0.06978 | 0.0 | 0.06466 | 0.1056 | 210.46 | 273499999.998 | -| MINAUSDT | 0.001793 | 0.001291 | 0.02188 | 0.006152 | 0.00682 | 0.007201 | 52.23 | 0.03833 | 0.0 | 0.02751 | 0.1142 | 357.5 | 273499999.998 | -| POWRUSDT | 0.002286 | 0.003352 | 0.05081 | 0.001332 | 0.01124 | 0.009073 | 43.73 | 0.04112 | 0.0 | 0.02461 | 0.09118 | 96.88 | 273499999.998 | -| TRBUSDT | 0.002311 | 0.001432 | 0.02878 | 0.01141 | 0.01509 | 0.01403 | 115.5 | 0.06747 | 0.0 | 0.04793 | 0.1931 | 1245.67 | 273499999.998 | -| FETUSDT | 0.001645 | 0.001184 | 0.01925 | 0.003925 | 0.007743 | 0.006567 | 43.45 | 0.02978 | 0.0 | 0.01512 | 0.05137 | 378.88 | 273499999.998 | -| FRONTUSDT | 0.001744 | 0.002246 | 0.09521 | 0.05843 | 0.0116 | 0.0139 | 109.8 | 0.1089 | 0.0 | 0.09812 | 0.1365 | 130.38 | 273499999.998 | -| ARKUSDT | 0.001868 | 0.002635 | 0.09067 | 0.04856 | 0.01322 | 0.01465 | 97.92 | 0.08296 | 0.0 | 0.07616 | 0.1114 | 133.29 | 273499999.998 | -| CYBERUSDT | 0.00211 | 0.00249 | 0.02075 | 0.0007179 | 0.006545 | 0.005254 | 50.22 | 0.02302 | 0.0 | 0.008816 | 0.01445 | 162.46 | 273499999.998 | -| HFTUSDT | 0.001607 | 0.001019 | 0.03868 | 0.01525 | 0.01147 | 0.01086 | 79.17 | 0.06838 | 0.0 | 0.06223 | 0.1099 | 300.46 | 273499999.998 | -| GLMRUSDT | 0.001776 | 0.00182 | 0.05037 | 0.0 | 0.008477 | 0.007034 | 66.52 | 0.0374 | 0.0 | 0.02057 | 0.0376 | 127.92 | 273499999.998 | -| USTCUSDT | 0.00162 | 0.003789 | 0.04621 | 0.0 | 0.009765 | 0.008199 | 25.5 | 0.0419 | 0.0 | 0.01747 | 0.03108 | 65.46 | 273499999.998 | -| DODOXUSDT | 0.0016 | 0.00151 | 0.05449 | 0.02122 | 0.008387 | 0.008493 | 78.53 | 0.06728 | 0.0 | 0.06312 | 0.09688 | 175.46 | 273499999.998 | -| 1000LUNCUSDT | 0.0024 | 0.001894 | 0.04393 | 0.009365 | 0.007508 | 0.007793 | 93.75 | 0.05822 | 0.0 | 0.05048 | 0.133 | 508.42 | 273499999.998 | -| TOKENUSDT | 0.002108 | 0.004049 | 0.04258 | 0.02653 | 0.007258 | 0.01231 | 36.18 | 0.1054 | 0.0 | 0.09483 | 0.1557 | 89.33 | 273499999.998 | -| BEAMXUSDT | 0.002386 | 0.003561 | 0.04 | 0.02059 | 0.008903 | 0.009853 | 27.15 | 0.07223 | 0.0 | 0.06713 | 0.09948 | 74.42 | 273499999.998 | -| RIFUSDT | 0.001907 | 0.002422 | 0.04085 | 8.13e-05 | 0.007688 | 0.006205 | 28.3 | 0.03311 | 0.0 | 0.01461 | 0.05373 | 102.46 | 273499999.998 | -| SUPERUSDT | 0.001939 | 0.002307 | 0.03384 | 0.01755 | 0.009028 | 0.009954 | 37.93 | 0.0616 | 0.0 | 0.05517 | 0.1023 | 66.42 | 273499999.998 | -| BICOUSDT | 0.001839 | 0.001656 | 0.04017 | 0.02343 | 0.007344 | 0.007459 | 84.05 | 0.05877 | 0.0 | 0.05565 | 0.06685 | 124.46 | 273499999.998 | -| MATICUSDT | 0.001559 | 0.003715 | 0.05374 | 0.02959 | 0.008636 | 0.01192 | 109.7 | 0.08912 | 0.0 | 0.0806 | 0.2214 | 1196.67 | 273499999.998 | -| LDOUSDT | 0.001927 | 0.00159 | 0.06898 | 0.009524 | 0.0129 | 0.01304 | 96.35 | 0.09624 | 0.0 | 0.07704 | 0.2375 | 496.46 | 273499999.998 | -| GASUSDT | 0.001594 | 0.003078 | 0.03621 | 0.01095 | 0.008568 | 0.0116 | 48.62 | 0.09039 | 0.0 | 0.07491 | 0.2192 | 98.88 | 273499999.998 | -| PENDLEUSDT | 0.002034 | 0.001377 | 0.0494 | 0.0008426 | 0.009882 | 0.008462 | 77.18 | 0.04639 | 0.0 | 0.0198 | 0.05032 | 187.88 | 273499999.998 | -| BSVUSDT | 0.001787 | 0.001927 | 0.0343 | 0.003374 | 0.007791 | 0.006362 | 33.85 | 0.03805 | 0.0 | 0.0343 | 0.04874 | 102.46 | 273499999.998 | -| CAKEUSDT | 0.00151 | 0.00216 | 0.04326 | 0.01513 | 0.006706 | 0.006075 | 49.47 | 0.02983 | 0.0 | 0.02185 | 0.04484 | 89.46 | 273499999.998 | -| KEYUSDT | 0.00163 | 0.001585 | 0.03297 | 0.01198 | 0.008288 | 0.008215 | 68.85 | 0.04931 | 0.0 | 0.04144 | 0.1529 | 252.46 | 273499999.998 | -| BLURUSDT | 0.00214 | 0.001609 | 0.02688 | 0.00473 | 0.008911 | 0.00767 | 83.95 | 0.04166 | 0.0 | 0.02853 | 0.1118 | 277.46 | 273499999.998 | -| SLPUSDT | 0.001705 | 0.002086 | 0.03357 | 0.01362 | 0.006624 | 0.005647 | 34.5 | 0.02515 | 0.0 | 0.01423 | 0.03192 | 92.38 | 273499999.998 | -| WLDUSDT | 0.002126 | 0.002109 | 0.0436 | 0.01592 | 0.005747 | 0.005824 | 63.77 | 0.03482 | 0.0 | 0.02091 | 0.03313 | 191.46 | 273499999.998 | -| INJUSDT | 0.002296 | 0.00141 | 0.03749 | 0.009242 | 0.01017 | 0.009168 | 110.5 | 0.05189 | 0.0 | 0.02619 | 0.05894 | 532.88 | 273499999.998 | -| RADUSDT | 0.002103 | 0.001185 | 0.03683 | 0.002845 | 0.00815 | 0.007486 | 107.1 | 0.05694 | 0.0 | 0.04277 | 0.1112 | 266.46 | 273499999.998 | -| SUIUSDT | 0.002382 | 0.001027 | 0.02087 | 0.01159 | 0.008564 | 0.008346 | 44.6 | 0.06042 | 0.0 | 0.05235 | 0.1193 | 273.29 | 273499999.998 | -| STXUSDT | 0.001913 | 0.0009983 | 0.02547 | 0.002455 | 0.01289 | 0.009975 | 108.5 | 0.04727 | 0.0 | 0.02245 | 0.07455 | 344.38 | 273499999.998 | -| ARBUSDT | 0.002139 | 0.00128 | 0.08211 | 0.02812 | 0.008723 | 0.01143 | 99.32 | 0.09138 | 0.0 | 0.08325 | 0.1338 | 313.33 | 273499999.998 | -| STRAXUSDT | 0.002039 | 0.002821 | 0.05822 | 0.03616 | 0.009602 | 0.01099 | 70.18 | 0.1002 | 0.0 | 0.09097 | 0.1257 | 112.88 | 273499999.998 | -| ETHWUSDT | 0.001601 | 0.003281 | 0.07837 | 0.01554 | 0.01161 | 0.01163 | 45.3 | 0.06328 | 0.0 | 0.04673 | 0.07036 | 63.46 | 273499999.998 | -| ASTRUSDT | 0.001848 | 0.0009238 | 0.02998 | 0.0159 | 0.00755 | 0.008875 | 106.3 | 0.06536 | 0.0 | 0.06129 | 0.1237 | 350.88 | 273499999.998 | -| RDNTUSDT | 0.002274 | 0.001422 | 0.0372 | 0.01709 | 0.008487 | 0.009846 | 68.83 | 0.08319 | 0.0 | 0.07581 | 0.1494 | 301.46 | 273499999.998 | -| NMRUSDT | 0.001614 | 0.001106 | 0.03521 | 0.002434 | 0.008772 | 0.007167 | 73.17 | 0.0328 | 0.0 | 0.01591 | 0.05155 | 222.46 | 273499999.998 | -| ICPUSDT | 0.002202 | 0.00139 | 0.04229 | 0.002642 | 0.007451 | 0.0059 | 98.95 | 0.02796 | 0.0 | 0.01401 | 0.04888 | 491.88 | 273499999.998 | -| TIAUSDT | 0.002472 | 0.004064 | 0.0653 | 0.02912 | 0.012 | 0.01464 | 42.0 | 0.09879 | 0.0 | 0.08933 | 0.1466 | 92.21 | 273499999.998 | -| BONDUSDT | 0.001653 | 0.003369 | 0.04199 | 0.00353 | 0.0068 | 0.007058 | 30.3 | 0.05197 | 0.0 | 0.03979 | 0.1147 | 107.38 | 273499999.998 | -| 1000PEPEUSDT | 0.001911 | 0.002115 | 0.02705 | 0.01208 | 0.00557 | 0.009351 | 78.87 | 0.1099 | 0.0 | 0.09666 | 0.238 | 270.29 | 273499999.998 | -| CRVUSDT | 0.000771 | 0.001721 | 0.0448 | 0.01747 | 0.01359 | 0.01556 | 92.17 | 0.09794 | 0.0 | 0.08678 | 0.2429 | 1246.67 | 273499999.999 | -| AAVEUSDT | 0.001269 | 0.002516 | 0.04779 | 0.02556 | 0.009824 | 0.013 | 98.6 | 0.08495 | 0.0 | 0.07654 | 0.2259 | 1201.67 | 273499999.999 | -| EGLDUSDT | 0.001049 | 0.001704 | 0.04647 | 0.01456 | 0.01036 | 0.01518 | 93.6 | 0.1088 | 0.0 | 0.09555 | 0.2402 | 1233.67 | 273499999.999 | -| ALPHAUSDT | 0.001395 | 0.002415 | 0.04547 | 0.01476 | 0.01014 | 0.01024 | 93.42 | 0.05828 | 0.0 | 0.04484 | 0.1397 | 1163.67 | 273499999.999 | -| BNTUSDT | 0.001364 | 0.001675 | 0.04574 | 0.01786 | 0.007082 | 0.00612 | 69.33 | 0.03295 | 0.0 | 0.03034 | 0.05013 | 173.46 | 273499999.999 | -| CTSIUSDT | 0.0005482 | 0.0005834 | 0.02644 | 0.003951 | 0.01181 | 0.01184 | 98.83 | 0.08208 | 0.0 | 0.05924 | 0.1803 | 826.83 | 273499999.999 | -| KASUSDT | 0.001312 | 0.002073 | 0.06628 | 0.04154 | 0.009522 | 0.01302 | 46.82 | 0.08831 | 0.0 | 0.08119 | 0.1128 | 75.88 | 273499999.999 | -| ETHUSDT | 0.000537 | 0.00155 | 0.03786 | 0.0246 | 0.006068 | 0.01175 | 117.0 | 0.06044 | 0.0 | 0.05688 | 0.1237 | 1490.96 | 273499999.999 | -| LRCUSDT | 0.001183 | 0.001803 | 0.05131 | 0.01355 | 0.0106 | 0.01201 | 114.0 | 0.07332 | 0.0 | 0.06455 | 0.2342 | 1198.67 | 273499999.999 | -| OMGUSDT | 0.0009374 | 0.001431 | 0.03444 | 0.006543 | 0.01103 | 0.009706 | 96.25 | 0.04619 | 0.0 | 0.02987 | 0.1479 | 1308.58 | 273499999.999 | -| IDEXUSDT | 0.001365 | 0.001088 | 0.07753 | 0.01915 | 0.01132 | 0.01156 | 111.7 | 0.09568 | 0.0 | 0.08462 | 0.128 | 273.46 | 273499999.999 | -| ACHUSDT | 0.0008421 | 0.000797 | 0.05606 | 8.518e-05 | 0.01765 | 0.01504 | 105.1 | 0.0881 | 0.0 | 0.05746 | 0.08528 | 342.38 | 273499999.999 | -| QNTUSDT | 0.0009007 | 0.0007392 | 0.02246 | 0.003563 | 0.007251 | 0.006011 | 82.95 | 0.02681 | 0.0 | 0.007323 | 0.07868 | 468.88 | 273499999.999 | -| AXSUSDT | 0.0005004 | 0.001134 | 0.03112 | 0.005825 | 0.01191 | 0.01088 | 108.8 | 0.0619 | 0.0 | 0.04321 | 0.1129 | 1166.67 | 273499999.999 | -| RSRUSDT | 0.0006331 | 0.001201 | 0.03252 | 0.004022 | 0.01558 | 0.01202 | 116.8 | 0.04899 | 0.0 | 0.02399 | 0.1506 | 1199.67 | 273499999.999 | -| MANAUSDT | 0.0009268 | 0.001453 | 0.02608 | 0.01545 | 0.01013 | 0.01444 | 107.4 | 0.0945 | 0.0 | 0.0843 | 0.2472 | 1052.67 | 273499999.999 | -| FTMUSDT | 0.0008419 | 0.001623 | 0.04765 | 0.009789 | 0.01333 | 0.01481 | 82.8 | 0.09369 | 0.0 | 0.08036 | 0.227 | 1223.67 | 273499999.999 | -| HBARUSDT | 0.00093 | 0.001622 | 0.0309 | 0.01254 | 0.008196 | 0.00855 | 104.3 | 0.04822 | 0.0 | 0.0403 | 0.1448 | 1049.67 | 273499999.999 | -| GALUSDT | 0.0007187 | 0.0009709 | 0.02687 | 0.001207 | 0.01176 | 0.01028 | 83.8 | 0.05956 | 0.0 | 0.03584 | 0.07235 | 635.38 | 273499999.999 | -| BANDUSDT | 0.0008232 | 0.001399 | 0.04979 | 0.01415 | 0.01655 | 0.01602 | 105.4 | 0.09362 | 0.0 | 0.08366 | 0.2421 | 1280.67 | 273499999.999 | -| AGIXUSDT | 0.001343 | 0.0009927 | 0.02974 | 0.0217 | 0.008977 | 0.008714 | 84.57 | 0.05239 | 0.0 | 0.0494 | 0.07684 | 348.38 | 273499999.999 | -| FXSUSDT | 0.0007228 | 0.0005509 | 0.0169 | 0.001995 | 0.005277 | 0.00443 | 38.0 | 0.02209 | 0.0 | 0.01285 | 0.06316 | 375.83 | 273499999.999 | -| AUDIOUSDT | 0.0008882 | 0.0009102 | 0.03551 | 0.01382 | 0.01208 | 0.0101 | 103.1 | 0.04643 | 0.0 | 0.03217 | 0.181 | 894.83 | 273499999.999 | -| ETCUSDT | 0.0008352 | 0.001382 | 0.01998 | 0.007251 | 0.00601 | 0.0056 | 70.58 | 0.02937 | 0.0 | 0.02387 | 0.1291 | 1475.62 | 273499999.999 | -| DEFIUSDT | 0.0006925 | 0.001293 | 0.05009 | 0.02268 | 0.0121 | 0.01535 | 119.3 | 0.09632 | 0.0 | 0.08661 | 0.2109 | 1250.67 | 273499999.999 | -| ENJUSDT | 0.0005766 | 0.00114 | 0.029 | 0.01064 | 0.009498 | 0.009747 | 113.2 | 0.05968 | 0.0 | 0.05084 | 0.2431 | 1218.67 | 273499999.999 | -| SNXUSDT | 0.001304 | 0.001684 | 0.06182 | 0.02351 | 0.01653 | 0.01623 | 110.2 | 0.08481 | 0.0 | 0.06312 | 0.2477 | 1265.67 | 273499999.999 | -| IOSTUSDT | 0.0006504 | 0.001255 | 0.0441 | 0.01179 | 0.01343 | 0.0145 | 119.4 | 0.09066 | 0.0 | 0.07145 | 0.2128 | 1440.62 | 273499999.999 | -| MTLUSDT | 0.001132 | 0.001052 | 0.02776 | 0.008637 | 0.01286 | 0.01198 | 116.5 | 0.05984 | 0.0 | 0.0384 | 0.2278 | 1036.67 | 273499999.999 | -| HOTUSDT | 0.001246 | 0.002271 | 0.04168 | 0.01631 | 0.008331 | 0.009043 | 118.3 | 0.05238 | 0.0 | 0.04748 | 0.1745 | 1037.67 | 273499999.999 | -| 1000SHIBUSDT | 0.001317 | 0.00226 | 0.01246 | 0.006727 | 0.005296 | 0.009537 | 57.88 | 0.05434 | 0.0 | 0.04123 | 0.2228 | 995.25 | 273499999.999 | -| ZENUSDT | 0.0007131 | 0.001272 | 0.05687 | 0.00575 | 0.01623 | 0.02051 | 114.0 | 0.1209 | 0.0 | 0.08579 | 0.2484 | 1163.67 | 273499999.999 | -| SPELLUSDT | 0.001019 | 0.0008488 | 0.04755 | 0.008488 | 0.01027 | 0.008234 | 104.1 | 0.04072 | 0.0 | 0.03059 | 0.08932 | 512.46 | 273499999.999 | -| TWTUSDT | 0.00106 | 0.00158 | 0.0382 | 0.0009781 | 0.007564 | 0.006515 | 61.37 | 0.03104 | 0.0 | 0.01122 | 0.04837 | 89.38 | 273499999.999 | -| OGNUSDT | 0.001116 | 0.00176 | 0.03031 | 0.009369 | 0.0146 | 0.01366 | 113.4 | 0.07014 | 0.0 | 0.03249 | 0.09001 | 1035.67 | 273499999.999 | -| JASMYUSDT | 0.0005372 | 0.0006628 | 0.01916 | 0.004346 | 0.01072 | 0.008628 | 99.17 | 0.04098 | 0.0 | 0.01982 | 0.09217 | 651.83 | 273499999.999 | -| RENUSDT | 0.0006733 | 0.0009392 | 0.03923 | 0.002668 | 0.0133 | 0.01678 | 110.8 | 0.1108 | 0.0 | 0.07451 | 0.2434 | 1205.67 | 273499999.999 | -| CELOUSDT | 0.0008079 | 0.0007115 | 0.03087 | 0.008646 | 0.01159 | 0.01131 | 90.57 | 0.06508 | 0.0 | 0.04716 | 0.1305 | 855.83 | 273499999.999 | -| NEARUSDT | 0.000972 | 0.001388 | 0.03336 | 0.0185 | 0.007575 | 0.01563 | 81.42 | 0.08981 | 0.0 | 0.07969 | 0.2339 | 1203.62 | 273499999.999 | -| APEUSDT | 0.0006729 | 0.000787 | 0.02551 | 0.003769 | 0.0122 | 0.01043 | 106.7 | 0.05688 | 0.0 | 0.037 | 0.156 | 684.33 | 273499999.999 | -| EDUUSDT | 0.0008965 | 0.0006038 | 0.01151 | 0.001043 | 0.01041 | 0.008501 | 54.63 | 0.03528 | 0.0 | 0.006738 | 0.0542 | 275.46 | 273499999.999 | -| ADAUSDT | 0.0005138 | 0.001257 | 0.01238 | 0.001734 | 0.004612 | 0.004464 | 48.97 | 0.02192 | 0.0 | 0.01227 | 0.1086 | 1460.62 | 273499999.999 | -| API3USDT | 0.0008809 | 0.0007808 | 0.02791 | 0.00764 | 0.01039 | 0.009599 | 94.87 | 0.04835 | 0.0 | 0.03076 | 0.08505 | 707.83 | 273499999.999 | -| GRTUSDT | 0.001076 | 0.002119 | 0.04522 | 0.01544 | 0.01342 | 0.01688 | 114.2 | 0.0847 | 0.0 | 0.06918 | 0.2178 | 1138.67 | 273499999.999 | -| AMBUSDT | 0.001308 | 0.001223 | 0.07168 | 0.02256 | 0.01458 | 0.01579 | 75.0 | 0.1046 | 0.0 | 0.09363 | 0.1884 | 306.46 | 273499999.999 | -| BELUSDT | 0.0007896 | 0.001588 | 0.02936 | 0.009269 | 0.01571 | 0.01402 | 118.5 | 0.07714 | 0.0 | 0.0643 | 0.1754 | 1168.67 | 273499999.999 | -| CELRUSDT | 0.001069 | 0.001706 | 0.06296 | 0.01442 | 0.01398 | 0.01558 | 103.1 | 0.09625 | 0.0 | 0.08166 | 0.25 | 1037.67 | 273499999.999 | -| APTUSDT | 0.0007441 | 0.0007435 | 0.03254 | 0.006344 | 0.0101 | 0.01113 | 108.6 | 0.08112 | 0.0 | 0.05995 | 0.1158 | 468.88 | 273499999.999 | -| LUNA2USDT | 0.0006333 | 0.000461 | 0.01261 | 0.0005158 | 0.0108 | 0.01053 | 89.25 | 0.05783 | 0.0 | 0.0258 | 0.2345 | 508.83 | 273499999.999 | -| DENTUSDT | 0.0008341 | 0.001634 | 0.03186 | 0.008078 | 0.01024 | 0.01051 | 105.6 | 0.06392 | 0.0 | 0.04595 | 0.1073 | 1042.79 | 273499999.999 | -| SNTUSDT | 0.001258 | 0.001826 | 0.03336 | 0.01284 | 0.00656 | 0.005599 | 25.43 | 0.02965 | 0.0 | 0.02397 | 0.04788 | 90.46 | 273499999.999 | -| BALUSDT | 0.000694 | 0.0007245 | 0.02477 | 0.004475 | 0.01326 | 0.01067 | 93.85 | 0.04567 | 0.0 | 0.02858 | 0.1995 | 1246.67 | 273499999.999 | -| YFIUSDT | 0.00135 | 0.00264 | 0.02352 | 0.01103 | 0.008355 | 0.01029 | 105.2 | 0.05855 | 0.0 | 0.04688 | 0.1659 | 1248.67 | 273499999.999 | -| ATAUSDT | 0.000569 | 0.0007546 | 0.02945 | 0.007438 | 0.01145 | 0.01026 | 98.67 | 0.05691 | 0.0 | 0.04061 | 0.08636 | 882.83 | 273499999.999 | -| STEEMUSDT | 0.001236 | 0.001826 | 0.02182 | 0.003749 | 0.006223 | 0.005313 | 39.25 | 0.02355 | 0.0 | 0.01026 | 0.03796 | 84.38 | 273499999.999 | -| STGUSDT | 0.0006492 | 0.0008117 | 0.02541 | 0.001763 | 0.009963 | 0.008685 | 117.9 | 0.04192 | 0.0 | 0.01163 | 0.02776 | 524.46 | 273499999.999 | -| OCEANUSDT | 0.0009722 | 0.001537 | 0.04116 | 0.01304 | 0.01327 | 0.01273 | 102.4 | 0.06839 | 0.0 | 0.05769 | 0.1753 | 1184.67 | 273499999.999 | -| BLZUSDT | 0.0006553 | 0.0008452 | 0.03851 | 0.01143 | 0.01613 | 0.0174 | 118.5 | 0.1199 | 0.0 | 0.09735 | 0.2359 | 1230.67 | 273499999.999 | -| SANDUSDT | 0.0009341 | 0.001854 | 0.03618 | 0.0111 | 0.008231 | 0.009879 | 86.05 | 0.05918 | 0.0 | 0.05203 | 0.1755 | 1101.67 | 273499999.999 | -| AVAXUSDT | 0.0008486 | 0.001251 | 0.0166 | 0.007022 | 0.008753 | 0.007661 | 109.2 | 0.03859 | 0.0 | 0.02802 | 0.142 | 1224.67 | 273499999.999 | -| SFPUSDT | 0.0008326 | 0.001461 | 0.04108 | 0.01779 | 0.01386 | 0.01417 | 98.75 | 0.07866 | 0.0 | 0.0691 | 0.1648 | 1071.67 | 273499999.999 | -| ONEUSDT | 0.0007322 | 0.00152 | 0.04172 | 0.01102 | 0.0126 | 0.01128 | 101.6 | 0.06224 | 0.0 | 0.0512 | 0.1416 | 1049.67 | 273499999.999 | -| ENSUSDT | 0.001044 | 0.001174 | 0.06653 | 0.008082 | 0.01207 | 0.01315 | 98.65 | 0.08534 | 0.0 | 0.07131 | 0.1404 | 791.83 | 273499999.999 | -| LINAUSDT | 0.0007789 | 0.001321 | 0.05038 | 0.01493 | 0.01887 | 0.01959 | 115.8 | 0.1161 | 0.0 | 0.08998 | 0.2091 | 1048.67 | 273499999.999 | -| PHBUSDT | 0.001189 | 0.0008857 | 0.05078 | 0.01093 | 0.01622 | 0.01306 | 92.1 | 0.06336 | 0.0 | 0.05393 | 0.1123 | 349.38 | 273499999.999 | -| 1000FLOKIUSDT | 0.001193 | 0.0009639 | 0.04259 | 0.008121 | 0.01167 | 0.01002 | 119.8 | 0.07155 | 0.0 | 0.06679 | 0.1236 | 269.29 | 273499999.999 | -| DOGEUSDT | 0.001057 | 0.002474 | 0.05517 | 0.008428 | 0.006915 | 0.008357 | 119.5 | 0.05222 | 0.0 | 0.04178 | 0.2262 | 1299.58 | 273499999.999 | -| HIGHUSDT | 0.0005371 | 0.0005295 | 0.03117 | 0.005734 | 0.01348 | 0.0133 | 72.08 | 0.08794 | 0.0 | 0.0643 | 0.09105 | 358.88 | 273499999.999 | -| IMXUSDT | 0.001119 | 0.001262 | 0.04964 | 0.01588 | 0.01256 | 0.01135 | 107.8 | 0.06422 | 0.0 | 0.05694 | 0.1194 | 719.83 | 273499999.999 | -| 1INCHUSDT | 0.0008432 | 0.0009117 | 0.01984 | 0.006366 | 0.01154 | 0.009777 | 103.6 | 0.04361 | 0.0 | 0.02827 | 0.2377 | 1131.54 | 273499999.999 | -| XLMUSDT | 0.0006456 | 0.001978 | 0.02728 | 0.006156 | 0.008285 | 0.008972 | 109.2 | 0.05039 | 0.0 | 0.03169 | 0.1291 | 1472.62 | 273499999.999 | -| JOEUSDT | 0.001157 | 0.0008623 | 0.0523 | 0.008469 | 0.0167 | 0.01302 | 109.2 | 0.06755 | 0.0 | 0.06051 | 0.09387 | 307.46 | 273499999.999 | -| POLYXUSDT | 0.0008363 | 0.001726 | 0.01185 | 0.0016 | 0.00632 | 0.005493 | 48.43 | 0.02353 | 0.0 | 0.004552 | 0.01828 | 98.88 | 273499999.999 | -| LITUSDT | 0.0009574 | 0.0009565 | 0.01431 | 0.003406 | 0.01394 | 0.01189 | 106.9 | 0.05133 | 0.0 | 0.02021 | 0.1423 | 1077.67 | 273499999.999 | -| WAXPUSDT | 0.00117 | 0.001452 | 0.02632 | 0.0 | 0.006955 | 0.005482 | 47.6 | 0.02704 | 0.0 | 0.01137 | 0.02194 | 105.38 | 273499999.999 | -| RLCUSDT | 0.001263 | 0.002729 | 0.05305 | 0.02626 | 0.01277 | 0.01654 | 114.3 | 0.1079 | 0.0 | 0.09625 | 0.212 | 1279.67 | 273499999.999 | -| VETUSDT | 0.000779 | 0.001793 | 0.04014 | 0.01333 | 0.005873 | 0.007739 | 98.68 | 0.05163 | 0.0 | 0.04469 | 0.163 | 1447.62 | 273499999.999 | -| XVSUSDT | 0.00093 | 0.0008274 | 0.05016 | 0.0188 | 0.01311 | 0.01198 | 104.0 | 0.08422 | 0.0 | 0.0758 | 0.1359 | 293.88 | 273499999.999 | -| OXTUSDT | 0.001139 | 0.000921 | 0.01772 | 0.003217 | 0.007403 | 0.005802 | 45.43 | 0.02348 | 0.0 | 0.005392 | 0.02816 | 173.46 | 273499999.999 | -| SXPUSDT | 0.0007517 | 0.002416 | 0.0377 | 0.01593 | 0.0108 | 0.01172 | 112.8 | 0.06633 | 0.0 | 0.05998 | 0.205 | 1289.58 | 273499999.999 | -| IDUSDT | 0.0009432 | 0.0006951 | 0.03521 | 0.01627 | 0.01199 | 0.012 | 72.63 | 0.08139 | 0.0 | 0.07159 | 0.1191 | 313.38 | 273499999.999 | -| AGLDUSDT | 0.0009913 | 0.0008262 | 0.07632 | 0.005647 | 0.01799 | 0.0146 | 85.83 | 0.07196 | 0.0 | 0.05662 | 0.07015 | 185.88 | 273499999.999 | -| ANKRUSDT | 0.0009653 | 0.001492 | 0.02143 | 0.008009 | 0.007765 | 0.008154 | 93.6 | 0.03988 | 0.0 | 0.02854 | 0.2346 | 1099.67 | 273499999.999 | -| CHZUSDT | 0.000651 | 0.001368 | 0.009741 | 0.0009617 | 0.01033 | 0.008831 | 104.8 | 0.03937 | 0.0 | 0.01076 | 0.1198 | 1104.67 | 273499999.999 | -| GALAUSDT | 0.0009434 | 0.001154 | 0.02248 | 0.00647 | 0.009578 | 0.007802 | 76.28 | 0.03516 | 0.0 | 0.01908 | 0.08539 | 864.83 | 273499999.999 | -| MAGICUSDT | 0.001105 | 0.0009952 | 0.07308 | 0.01388 | 0.01828 | 0.01627 | 102.7 | 0.08492 | 0.0 | 0.05926 | 0.07458 | 370.83 | 273499999.999 | -| RUNEUSDT | 0.001084 | 0.002288 | 0.05231 | 0.0202 | 0.009714 | 0.01557 | 114.0 | 0.1107 | 0.0 | 0.09808 | 0.2232 | 1244.67 | 273499999.999 | -| CFXUSDT | 0.0005138 | 0.0005208 | 0.01759 | 0.0001452 | 0.01047 | 0.009012 | 75.92 | 0.05256 | 0.0 | 0.03145 | 0.06992 | 344.38 | 273499999.999 | -| DOTUSDT | 0.0008975 | 0.001616 | 0.04963 | 0.013 | 0.00794 | 0.008669 | 103.6 | 0.05251 | 0.0 | 0.04644 | 0.2467 | 1256.67 | 273499999.999 | -| ONGUSDT | 0.0009225 | 0.001208 | 0.04511 | 0.02926 | 0.009789 | 0.0136 | 59.45 | 0.109 | 0.0 | 0.09849 | 0.1037 | 65.42 | 273499999.999 | -| LOOMUSDT | 0.001149 | 0.00269 | 0.04198 | 0.0327 | 0.00964 | 0.01253 | 46.8 | 0.07965 | 0.0 | 0.07381 | 0.0965 | 112.38 | 273499999.999 | -| HIFIUSDT | 0.001413 | 0.002368 | 0.1097 | 0.04193 | 0.01141 | 0.01259 | 74.23 | 0.07932 | 0.0 | 0.07338 | 0.08965 | 136.38 | 273499999.999 | -| ALGOUSDT | 0.0009744 | 0.001607 | 0.03586 | 0.007177 | 0.009663 | 0.008242 | 104.0 | 0.03864 | 0.0 | 0.02403 | 0.1303 | 1323.58 | 273499999.999 | -| COTIUSDT | 0.000943 | 0.0018 | 0.06317 | 0.01951 | 0.01411 | 0.01579 | 109.2 | 0.1036 | 0.0 | 0.09193 | 0.2362 | 1056.67 | 273499999.999 | -| ILVUSDT | 0.001361 | 0.00241 | 0.03433 | 0.01168 | 0.007172 | 0.006103 | 23.45 | 0.02584 | 0.0 | 0.02013 | 0.03467 | 82.29 | 273499999.999 | -| COMBOUSDT | 0.001481 | 0.001426 | 0.05557 | 0.02115 | 0.01217 | 0.01163 | 96.45 | 0.08913 | 0.0 | 0.08066 | 0.1632 | 242.46 | 273499999.999 | -| IOTAUSDT | 0.0006053 | 0.001344 | 0.04526 | 0.006243 | 0.01196 | 0.01432 | 105.3 | 0.08836 | 0.0 | 0.06686 | 0.1831 | 1449.62 | 273499999.999 | -| BCHUSDT | 0.0005694 | 0.001469 | 0.01814 | 0.0002319 | 0.01125 | 0.008927 | 94.93 | 0.03658 | 0.0 | 0.005904 | 0.02315 | 1490.96 | 273499999.999 | -| RVNUSDT | 0.0007444 | 0.00134 | 0.05719 | 0.00599 | 0.01177 | 0.01504 | 109.2 | 0.1075 | 0.0 | 0.08429 | 0.2265 | 1072.67 | 273499999.999 | -| ICXUSDT | 0.00064 | 0.00102 | 0.03979 | 0.01848 | 0.01057 | 0.01431 | 116.6 | 0.09499 | 0.0 | 0.08443 | 0.2442 | 1232.67 | 273499999.999 | -| ORBSUSDT | 0.001489 | 0.002736 | 0.02509 | 0.008781 | 0.00624 | 0.007415 | 35.22 | 0.04454 | 0.0 | 0.03295 | 0.1236 | 106.71 | 273499999.999 | -| CVXUSDT | 0.001027 | 0.0007885 | 0.03752 | 0.01789 | 0.009186 | 0.007679 | 107.7 | 0.03481 | 0.0 | 0.0297 | 0.0654 | 495.46 | 273499999.999 | -| CTKUSDT | 0.0007965 | 0.001995 | 0.05807 | 0.005231 | 0.01159 | 0.01296 | 111.5 | 0.07544 | 0.0 | 0.0587 | 0.2037 | 1167.67 | 273499999.999 | -| COMPUSDT | 0.0007812 | 0.0008911 | 0.02905 | 0.009443 | 0.01242 | 0.01197 | 116.5 | 0.06369 | 0.0 | 0.04428 | 0.1737 | 1309.58 | 273499999.999 | -| GMXUSDT | 0.0009424 | 0.0006626 | 0.06417 | 0.02457 | 0.01262 | 0.01006 | 79.88 | 0.04078 | 0.0 | 0.03059 | 0.04651 | 348.38 | 273499999.999 | -| BADGERUSDT | 0.001477 | 0.002971 | 0.04266 | 0.0009596 | 0.00787 | 0.006397 | 35.08 | 0.03034 | 0.0 | 0.01189 | 0.01695 | 82.46 | 273499999.999 | -| TUSDT | 0.000858 | 0.000549 | 0.04379 | 0.0 | 0.01324 | 0.01309 | 116.4 | 0.08587 | 0.0 | 0.04964 | 0.07957 | 364.42 | 273499999.999 | -| XTZUSDT | 0.0005293 | 0.001224 | 0.02882 | 0.005501 | 0.01404 | 0.01225 | 116.7 | 0.05382 | 0.0 | 0.03073 | 0.1524 | 1455.62 | 273499999.999 | -| SOLUSDT | 0.001417 | 0.002332 | 0.03153 | 0.02049 | 0.007523 | 0.01428 | 109.6 | 0.1014 | 0.0 | 0.09093 | 0.1885 | 1234.67 | 273499999.999 | -| OPUSDT | 0.001365 | 0.001376 | 0.02525 | 0.01229 | 0.005827 | 0.007321 | 73.0 | 0.04303 | 0.0 | 0.03992 | 0.07972 | 609.38 | 273499999.999 | -| CHRUSDT | 0.000736 | 0.001404 | 0.0535 | 0.01336 | 0.01273 | 0.01452 | 100.9 | 0.09031 | 0.0 | 0.07348 | 0.2198 | 1054.67 | 273499999.999 | -| THETAUSDT | 0.0009952 | 0.00234 | 0.05807 | 0.01512 | 0.01144 | 0.01299 | 107.5 | 0.08237 | 0.0 | 0.07237 | 0.2331 | 1344.62 | 273499999.999 | -| SKLUSDT | 0.000525 | 0.0008567 | 0.02241 | 0.00689 | 0.01332 | 0.01129 | 112.7 | 0.05433 | 0.0 | 0.03698 | 0.1265 | 1149.67 | 273499999.999 | -| SSVUSDT | 0.001132 | 0.0008329 | 0.04429 | 0.01176 | 0.01235 | 0.01413 | 110.2 | 0.1006 | 0.0 | 0.08452 | 0.1223 | 341.46 | 273499999.999 | -| ARUSDT | 0.000719 | 0.0009268 | 0.03956 | 0.01217 | 0.01285 | 0.01043 | 87.52 | 0.0511 | 0.0 | 0.03912 | 0.1211 | 854.83 | 273499999.999 | -| LQTYUSDT | 0.00129 | 0.001393 | 0.04736 | 0.01282 | 0.01246 | 0.01136 | 76.4 | 0.06208 | 0.0 | 0.0521 | 0.1317 | 327.46 | 273499999.999 | -| DYDXUSDT | 0.0007371 | 0.001018 | 0.03375 | 0.01223 | 0.01091 | 0.01242 | 118.6 | 0.08697 | 0.0 | 0.07373 | 0.1802 | 872.83 | 273499999.999 | -| FILUSDT | 0.0009354 | 0.001403 | 0.04127 | 0.008758 | 0.007484 | 0.01079 | 92.5 | 0.07504 | 0.0 | 0.06423 | 0.1624 | 1201.71 | 273499999.999 | -| PEOPLEUSDT | 0.0006444 | 0.0005763 | 0.01543 | 3.794e-05 | 0.01279 | 0.01059 | 100.3 | 0.05424 | 0.0 | 0.01959 | 0.07089 | 768.79 | 273499999.999 | -| HOOKUSDT | 0.001184 | 0.0008336 | 0.01783 | 0.0002117 | 0.01263 | 0.009448 | 72.68 | 0.03732 | 0.0 | 0.006075 | 0.02221 | 373.83 | 273499999.999 | -| ATOMUSDT | 0.0007005 | 0.001466 | 0.02527 | 0.006923 | 0.008513 | 0.00877 | 118.5 | 0.04785 | 0.0 | 0.0317 | 0.1892 | 1453.46 | 273499999.999 | -| NKNUSDT | 0.001317 | 0.00217 | 0.08136 | 0.02088 | 0.01207 | 0.01296 | 108.7 | 0.07731 | 0.0 | 0.06449 | 0.2254 | 1027.67 | 273499999.999 | -| ALICEUSDT | 0.0009088 | 0.001666 | 0.03425 | 0.01078 | 0.01138 | 0.01176 | 103.5 | 0.07366 | 0.0 | 0.06349 | 0.2154 | 1050.83 | 273499999.999 | -| UNFIUSDT | 0.0009675 | 0.000935 | 0.02039 | 0.005518 | 0.0165 | 0.01449 | 116.6 | 0.06814 | 0.0 | 0.02749 | 0.2197 | 1076.67 | 273499999.999 | -| MBLUSDT | 0.001229 | 0.002013 | 0.03301 | 0.01233 | 0.006478 | 0.005799 | 32.27 | 0.0276 | 0.0 | 0.0219 | 0.04461 | 78.33 | 273499999.999 | -| CKBUSDT | 0.001267 | 0.001071 | 0.06654 | 0.01073 | 0.01105 | 0.009821 | 91.5 | 0.06391 | 0.0 | 0.03538 | 0.07428 | 336.46 | 273499999.999 | -| STMXUSDT | 0.0007884 | 0.001172 | 0.05734 | 0.01806 | 0.01698 | 0.0174 | 117.9 | 0.1038 | 0.0 | 0.09061 | 0.2156 | 1045.67 | 273499999.999 | -| ARPAUSDT | 0.0007115 | 0.0008136 | 0.02034 | 0.002803 | 0.009 | 0.007495 | 105.7 | 0.03681 | 0.0 | 0.01872 | 0.0812 | 833.83 | 273499999.999 | -| ZRXUSDT | 0.0008846 | 0.001196 | 0.03229 | 0.0127 | 0.01082 | 0.01238 | 78.67 | 0.06353 | 0.0 | 0.04756 | 0.2401 | 1316.58 | 273499999.999 | -| ZILUSDT | 0.0006441 | 0.001042 | 0.02527 | 0.00963 | 0.0104 | 0.01171 | 117.6 | 0.06231 | 0.0 | 0.04727 | 0.164 | 1322.58 | 273499999.999 | -| REEFUSDT | 0.0007945 | 0.001199 | 0.07404 | 0.01071 | 0.01763 | 0.01796 | 119.2 | 0.1027 | 0.0 | 0.08083 | 0.2488 | 1073.67 | 273499999.999 | -| TRUUSDT | 0.000909 | 0.0008307 | 0.06375 | 0.01541 | 0.01749 | 0.01515 | 100.7 | 0.09393 | 0.0 | 0.07425 | 0.1135 | 330.46 | 273499999.999 | -| LINKUSDT | 0.000675 | 0.001535 | 0.03465 | 0.01066 | 0.007422 | 0.009291 | 79.55 | 0.05392 | 0.0 | 0.04811 | 0.2197 | 1475.62 | 273499999.999 | -| KSMUSDT | 0.0008876 | 0.001484 | 0.04866 | 0.02072 | 0.01178 | 0.01173 | 96.78 | 0.06913 | 0.0 | 0.06405 | 0.2158 | 1204.67 | 273499999.999 | -| STPTUSDT | 0.001244 | 0.001135 | 0.0396 | 0.0134 | 0.008127 | 0.007304 | 72.32 | 0.03547 | 0.0 | 0.02112 | 0.05948 | 105.38 | 273499999.999 | -| XRPUSDT | 0.001056 | 0.001829 | 0.02241 | 0.004902 | 0.00795 | 0.007433 | 110.8 | 0.03681 | 0.0 | 0.01984 | 0.1806 | 1486.62 | 273499999.999 | -| ZECUSDT | 0.0006463 | 0.0009404 | 0.02821 | 0.00853 | 0.01243 | 0.01177 | 106.2 | 0.05922 | 0.0 | 0.044 | 0.2291 | 1456.62 | 273499999.999 | -| TLMUSDT | 0.0008077 | 0.0005339 | 0.02732 | 0.0 | 0.009652 | 0.01036 | 103.0 | 0.07721 | 0.0 | 0.0362 | 0.05399 | 307.46 | 273499999.999 | -| MDTUSDT | 0.001038 | 0.001041 | 0.02649 | 0.0058 | 0.006832 | 0.006308 | 48.98 | 0.03083 | 0.0 | 0.01804 | 0.0494 | 215.46 | 273499999.999 | -| WAVESUSDT | 0.001028 | 0.001637 | 0.03491 | 0.02205 | 0.0101 | 0.01353 | 102.7 | 0.09342 | 0.0 | 0.08406 | 0.2079 | 1267.67 | 273499999.999 | -| DGBUSDT | 0.0005021 | 0.0006454 | 0.03151 | 0.008576 | 0.01243 | 0.01605 | 117.6 | 0.1094 | 0.0 | 0.08457 | 0.2225 | 1014.83 | 273499999.999 | -| UNIUSDT | 0.000877 | 0.001682 | 0.03597 | 0.02815 | 0.007625 | 0.01291 | 117.7 | 0.08157 | 0.0 | 0.0743 | 0.1645 | 1230.67 | 273499999.999 | -| EOSUSDT | 0.0003332 | 0.0006907 | 0.02298 | 0.001017 | 0.009645 | 0.009205 | 112.0 | 0.04823 | 0.0 | 0.01805 | 0.1311 | 1483.62 | 273500000.0 | -| DUSKUSDT | 0.000301 | 0.0003762 | 0.03102 | 0.005146 | 0.01653 | 0.01815 | 90.52 | 0.1139 | 0.0 | 0.08108 | 0.1896 | 753.83 | 273500000.0 | -| KNCUSDT | 0.000298 | 0.0004911 | 0.01406 | 0.002161 | 0.01702 | 0.0137 | 119.0 | 0.05307 | 0.0 | 0.01415 | 0.08977 | 1318.62 | 273500000.0 | -| FLMUSDT | 0.0003421 | 0.0006057 | 0.02525 | 0.004875 | 0.01581 | 0.01892 | 117.5 | 0.1237 | 0.0 | 0.09617 | 0.2126 | 1218.67 | 273500000.0 | -| BTCUSDT | 0.0002984 | 0.0006806 | 0.03457 | 0.009923 | 0.006685 | 0.007318 | 109.9 | 0.04052 | 0.0 | 0.03452 | 0.1316 | 1490.96 | 273500000.0 | -| QTUMUSDT | 0.0004955 | 0.0008308 | 0.04342 | 0.005367 | 0.01497 | 0.01523 | 105.4 | 0.08278 | 0.0 | 0.06125 | 0.2494 | 1441.62 | 273500000.0 | -| ROSEUSDT | 0.0004753 | 0.0004474 | 0.01486 | 0.0006508 | 0.009909 | 0.007915 | 87.97 | 0.0407 | 0.0 | 0.01823 | 0.09945 | 761.83 | 273500000.0 | -| LPTUSDT | 0.0003146 | 0.0003645 | 0.01764 | 0.0008735 | 0.0145 | 0.0123 | 117.5 | 0.06738 | 0.0 | 0.02694 | 0.1089 | 810.83 | 273500000.0 | -| TRXUSDT | 0.0003242 | 0.001391 | 0.01727 | 0.01059 | 0.006067 | 0.008337 | 115.8 | 0.04626 | 0.0 | 0.04143 | 0.1917 | 1477.62 | 273500000.0 | -| WOOUSDT | 0.0003952 | 0.0003719 | 0.01278 | 0.0 | 0.01257 | 0.01008 | 65.4 | 0.04331 | 0.0 | 0.01076 | 0.02763 | 663.83 | 273500000.0 | -| BNBUSDT | 0.0004564 | 0.001423 | 0.02642 | 0.009289 | 0.007059 | 0.008024 | 105.1 | 0.04853 | 0.0 | 0.04312 | 0.1407 | 1450.62 | 273500000.0 | -| DASHUSDT | 0.0003424 | 0.0006491 | 0.02726 | 0.006033 | 0.0128 | 0.01395 | 112.2 | 0.08683 | 0.0 | 0.06588 | 0.2146 | 1456.62 | 273500000.0 | -| ONTUSDT | 0.0004125 | 0.0007614 | 0.03769 | 0.002361 | 0.01463 | 0.01434 | 119.9 | 0.08408 | 0.0 | 0.05034 | 0.1362 | 1450.62 | 273500000.0 | -| DARUSDT | 0.0004723 | 0.0006491 | 0.02164 | 0.01002 | 0.0115 | 0.01065 | 99.2 | 0.06224 | 0.0 | 0.05596 | 0.119 | 641.83 | 273500000.0 | -| BLUEBIRDUSDT | 0.0004921 | 0.000348 | 0.0247 | 0.01192 | 0.005526 | 0.004919 | 79.53 | 0.02631 | 0.0 | 0.02369 | 0.06104 | 454.46 | 273500000.0 | -| BATUSDT | 0.0004449 | 0.0008885 | 0.03311 | 0.0113 | 0.01234 | 0.01303 | 103.1 | 0.07351 | 0.0 | 0.05646 | 0.2097 | 1447.62 | 273500000.0 | -| NEOUSDT | 0.0003409 | 0.0004559 | 0.01682 | 0.006561 | 0.01222 | 0.01294 | 115.2 | 0.06869 | 0.0 | 0.04685 | 0.245 | 1444.62 | 273500000.0 | -| ANTUSDT | 0.0002263 | 0.0002463 | 0.01088 | 0.0 | 0.01526 | 0.01145 | 113.1 | 0.04527 | 0.0 | 0.007197 | 0.05729 | 764.79 | 273500000.0 | -| XMRUSDT | 0.0004228 | 0.001063 | 0.03291 | 0.01207 | 0.00718 | 0.007922 | 95.58 | 0.04394 | 0.0 | 0.03922 | 0.2388 | 1458.62 | 273500000.0 | -| MKRUSDT | 0.0003616 | 0.000887 | 0.01363 | 0.0005893 | 0.009914 | 0.007994 | 116.4 | 0.03282 | 0.0 | 0.006315 | 0.05233 | 1265.67 | 273500000.0 | -| MASKUSDT | 0.0004338 | 0.0007085 | 0.01821 | 0.007827 | 0.01488 | 0.01895 | 96.52 | 0.1009 | 0.0 | 0.07469 | 0.2455 | 887.83 | 273500000.0 | -| LTCUSDT | 0.0003553 | 0.0008617 | 0.01739 | 0.002064 | 0.008422 | 0.008163 | 110.5 | 0.04391 | 0.0 | 0.01776 | 0.1481 | 1483.62 | 273500000.0 | -| STORJUSDT | 0.0003617 | 0.0003529 | 0.01813 | 0.002795 | 0.01659 | 0.01416 | 107.7 | 0.07814 | 0.0 | 0.05001 | 0.1919 | 1232.67 | 273500000.0 | -| 1000XECUSDT | 0.0003823 | 0.000419 | 0.01392 | 0.003012 | 0.01115 | 0.009534 | 122.8 | 0.04115 | 0.0 | 0.01586 | 0.2244 | 865.83 | 273780000.0 | -| IOTXUSDT | 0.0002001 | 0.0002547 | 0.01764 | 0.0 | 0.01622 | 0.01254 | 129.8 | 0.05664 | 0.0 | 0.02561 | 0.07149 | 902.83 | 274481666.666 | -| FOOTBALLUSDT | 0.00023 | 0.0003989 | 0.02121 | 0.0 | 0.009166 | 0.007331 | 131.3 | 0.03574 | 0.0 | 0.008532 | 0.02725 | 516.83 | 274626666.666 | -| XEMUSDT | 0.0002944 | 0.0006074 | 0.03104 | 0.00603 | 0.01446 | 0.01757 | 132.4 | 0.1312 | 0.0 | 0.09722 | 0.2025 | 1064.67 | 274745000.0 | -| BTCDOMUSDT | 9.188e-05 | 7.623e-05 | 0.03365 | 0.005325 | 0.00566 | 0.004887 | 140.8 | 0.03053 | 0.0 | 0.02474 | 0.05756 | 953.83 | 275583333.333 | -| SUSHIUSDT | 0.0004659 | 0.000738 | 0.01773 | 0.004917 | 0.01354 | 0.01032 | 156.9 | 0.04707 | 0.0 | 0.03069 | 0.08491 | 1244.67 | 277195000.0 | -| PERPUSDT | 0.0007752 | 0.0004015 | 0.03802 | 0.02503 | 0.01109 | 0.008987 | 166.4 | 0.04901 | 0.0 | 0.04486 | 0.06817 | 331.46 | 278141666.666 | -| USDCUSDT | -3.548e-10 | -3.548e-09 | 0.004618 | 0.0 | 0.002105 | 0.0005107 | nan | 0.00654 | 0.8 | 3.108e-05 | 3.335e-05 | 325.25 | 280000000.0 | -| BNXUSDT | 0.0001492 | 0.0003127 | 0.02467 | 0.0 | 0.01392 | 0.01159 | 200.5 | 0.06103 | 0.0 | 0.02531 | 0.04165 | 342.38 | 281548333.333 | -| C98USDT | 0.0004297 | 0.0005691 | 0.02833 | 0.01266 | 0.01912 | 0.02055 | 202.6 | 0.1389 | 0.0 | 0.1162 | 0.2121 | 889.83 | 283379150.251 | -| FLOWUSDT | 0.0004732 | 0.0005682 | 0.05378 | 0.02999 | 0.01745 | 0.01912 | 261.1 | 0.1235 | 0.0 | 0.1078 | 0.1447 | 719.83 | 288386991.379 | -| BAKEUSDT | 0.000661 | 0.0004879 | 0.04265 | 0.02782 | 0.01635 | 0.02303 | 240.5 | 0.1524 | 0.0 | 0.1308 | 0.2511 | 986.67 | 289769716.635 | -| GMTUSDT | 0.0004465 | 0.0004863 | 0.08567 | 0.04311 | 0.02774 | 0.04157 | 340.7 | 0.2561 | 0.0 | 0.2037 | 0.2421 | 687.79 | 305943451.562 | -| GTCUSDT | 0.0003167 | 0.0004861 | 0.07426 | 0.02649 | 0.02302 | 0.03061 | 460.2 | 0.1764 | 0.0 | 0.1493 | 0.2371 | 964.83 | 312450890.336 | -| KAVAUSDT | 0.0005657 | 0.0009419 | 0.06318 | 0.04494 | 0.02464 | 0.03834 | 675.6 | 0.2738 | 0.0 | 0.2144 | 0.2835 | 1282.67 | 374028562.69 | -| LEVERUSDT | 0.001252 | 0.001145 | 0.1841 | 0.1787 | 0.1515 | 0.08659 | 2030.0 | 0.07497 | 0.0 | 0.06975 | 0.1213 | 307.46 | 464456666.665 | -| KLAYUSDT | 0.0004622 | 0.0002927 | 0.1044 | 0.08667 | 0.0435 | 0.06905 | 1129.0 | 0.4082 | 0.0 | 0.2896 | 0.334 | 841.83 | 477344007.212 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| UMAUSDT | 0.00557 | 0.001325 | 0.02386 | 0.01332 | 0.01318 | 0.01341 | 97.47 | 0.07969 | 0.0 | 0.08808 | 0.2291 | 266.46 | 273499999.994 | -| MAVUSDT | 0.003744 | 0.002173 | 0.03632 | 0.01897 | 0.009337 | 0.01055 | 68.73 | 0.0698 | 0.0 | 0.07549 | 0.1292 | 216.46 | 273499999.996 | -| RADUSDT | 0.004195 | 0.001926 | 0.02092 | 0.004549 | 0.006392 | 0.005293 | 73.48 | 0.02387 | 0.0 | 0.009835 | 0.0499 | 266.46 | 273499999.996 | -| YGGUSDT | 0.003766 | 0.004081 | 0.08111 | 0.04408 | 0.01203 | 0.01284 | 45.97 | 0.07083 | 0.0 | 0.07555 | 0.1255 | 179.83 | 273499999.996 | -| 1000BONKUSDT | 0.00276 | 0.006409 | 0.04263 | 0.01481 | 0.01179 | 0.01515 | 32.78 | 0.08688 | 0.0 | 0.09163 | 0.2036 | 69.38 | 273499999.997 | -| ARKMUSDT | 0.002617 | 0.00321 | 0.04495 | 0.02353 | 0.008142 | 0.008537 | 48.1 | 0.07034 | 0.0 | 0.07622 | 0.1365 | 186.88 | 273499999.997 | -| FRONTUSDT | 0.002721 | 0.002546 | 0.04287 | 0.006422 | 0.01222 | 0.01202 | 83.27 | 0.07146 | 0.0 | 0.06125 | 0.2047 | 130.38 | 273499999.997 | -| ARKUSDT | 0.002791 | 0.003334 | 0.03077 | 0.003969 | 0.01161 | 0.00988 | 57.65 | 0.0517 | 0.0 | 0.02023 | 0.06077 | 133.29 | 273499999.997 | -| HFTUSDT | 0.002516 | 0.001819 | 0.06016 | 0.03911 | 0.008481 | 0.009091 | 83.37 | 0.06054 | 0.0 | 0.06491 | 0.1079 | 300.46 | 273499999.997 | -| SNTUSDT | 0.002643 | 0.004662 | 0.1234 | 0.09869 | 0.007308 | 0.0103 | 60.37 | 0.05886 | 0.0 | 0.06308 | 0.1404 | 90.46 | 273499999.997 | -| SUPERUSDT | 0.003202 | 0.003131 | 0.02829 | 0.009467 | 0.01141 | 0.009402 | 34.6 | 0.04043 | 0.0 | 0.02947 | 0.06257 | 66.42 | 273499999.997 | -| PENDLEUSDT | 0.003373 | 0.002022 | 0.05671 | 0.0245 | 0.008527 | 0.009005 | 72.88 | 0.08652 | 0.0 | 0.09517 | 0.1326 | 187.88 | 273499999.997 | -| BLURUSDT | 0.002818 | 0.001796 | 0.0273 | 0.0144 | 0.007514 | 0.01093 | 63.33 | 0.06894 | 0.0 | 0.07314 | 0.1763 | 277.46 | 273499999.997 | -| SUIUSDT | 0.003197 | 0.001367 | 0.0267 | 0.009588 | 0.008644 | 0.007191 | 70.02 | 0.04033 | 0.0 | 0.03827 | 0.07488 | 273.29 | 273499999.997 | -| STRAXUSDT | 0.00251 | 0.004102 | 0.03929 | 0.01018 | 0.00921 | 0.01053 | 35.0 | 0.04441 | 0.0 | 0.02824 | 0.08657 | 112.88 | 273499999.997 | -| PYTHUSDT | 0.003167 | 0.00343 | 0.04706 | 0.03414 | 0.01149 | 0.01025 | 40.82 | 0.04941 | 0.0 | 0.05212 | 0.06706 | 70.38 | 273499999.997 | -| PERPUSDT | 0.003362 | 0.001853 | 0.01869 | 0.007138 | 0.009042 | 0.00738 | 65.8 | 0.03291 | 0.0 | 0.02128 | 0.08206 | 331.46 | 273499999.997 | -| LEVERUSDT | 0.001823 | 0.001526 | 0.04241 | 0.007683 | 0.01207 | 0.01035 | 86.78 | 0.05639 | 0.0 | 0.04497 | 0.1662 | 307.46 | 273499999.998 | -| KASUSDT | 0.001649 | 0.002207 | 0.03652 | 0.01169 | 0.009375 | 0.008322 | 56.53 | 0.04203 | 0.0 | 0.0295 | 0.07165 | 75.88 | 273499999.998 | -| XVGUSDT | 0.00235 | 0.002999 | 0.07548 | 0.04436 | 0.008343 | 0.0103 | 44.45 | 0.0722 | 0.0 | 0.07922 | 0.1811 | 210.46 | 273499999.998 | -| POWRUSDT | 0.001573 | 0.003114 | 0.02429 | 0.008981 | 0.007655 | 0.007842 | 38.62 | 0.04074 | 0.0 | 0.0344 | 0.1395 | 96.88 | 273499999.998 | -| TRBUSDT | 0.001835 | 0.0009666 | 0.01079 | 0.001833 | 0.01485 | 0.01134 | 108.6 | 0.04728 | 0.0 | 0.01638 | 0.1896 | 1245.67 | 273499999.998 | -| GALUSDT | 0.001599 | 0.00195 | 0.05659 | 0.009895 | 0.008477 | 0.01051 | 90.87 | 0.0729 | 0.0 | 0.07288 | 0.2423 | 635.38 | 273499999.998 | -| FETUSDT | 0.001577 | 0.001672 | 0.04806 | 0.0101 | 0.009967 | 0.009718 | 67.92 | 0.056 | 0.0 | 0.04011 | 0.1131 | 378.88 | 273499999.998 | -| WOOUSDT | 0.001538 | 0.001281 | 0.03905 | 0.01408 | 0.01147 | 0.01023 | 103.5 | 0.05214 | 0.0 | 0.05079 | 0.1547 | 663.83 | 273499999.998 | -| SUSHIUSDT | 0.001502 | 0.002423 | 0.06161 | 0.03262 | 0.01443 | 0.01453 | 119.5 | 0.08805 | 0.0 | 0.09729 | 0.2449 | 1244.67 | 273499999.998 | -| EDUUSDT | 0.001957 | 0.002044 | 0.04821 | 0.02281 | 0.009628 | 0.01009 | 75.87 | 0.07998 | 0.0 | 0.08628 | 0.1657 | 275.46 | 273499999.998 | -| AMBUSDT | 0.001856 | 0.001995 | 0.02378 | 0.008876 | 0.007507 | 0.007424 | 45.12 | 0.03864 | 0.0 | 0.0333 | 0.1592 | 306.46 | 273499999.998 | -| NTRNUSDT | 0.001957 | 0.004187 | 0.06497 | 0.03926 | 0.01561 | 0.01479 | 31.85 | 0.08627 | 0.0 | 0.09508 | 0.1673 | 78.46 | 273499999.998 | -| STEEMUSDT | 0.001701 | 0.003261 | 0.1041 | 0.07705 | 0.00647 | 0.007255 | 43.12 | 0.04615 | 0.0 | 0.04849 | 0.05695 | 84.38 | 273499999.998 | -| BLZUSDT | 0.001726 | 0.001784 | 0.03607 | 0.0132 | 0.01773 | 0.01632 | 107.0 | 0.08688 | 0.0 | 0.08204 | 0.2314 | 1230.67 | 273499999.998 | -| USTCUSDT | 0.002001 | 0.003936 | 0.01359 | 0.003816 | 0.007987 | 0.007085 | 33.7 | 0.02974 | 0.0 | 0.00982 | 0.08409 | 65.46 | 273499999.998 | -| ENSUSDT | 0.001931 | 0.001465 | 0.03958 | 0.01655 | 0.01023 | 0.009473 | 116.5 | 0.05717 | 0.0 | 0.05715 | 0.1543 | 791.83 | 273499999.998 | -| TOKENUSDT | 0.001851 | 0.004291 | 0.0343 | 0.01263 | 0.008872 | 0.009995 | 38.27 | 0.05737 | 0.0 | 0.05967 | 0.1784 | 89.33 | 273499999.998 | -| BEAMXUSDT | 0.002263 | 0.003973 | 0.06259 | 0.02848 | 0.01293 | 0.01353 | 25.08 | 0.07822 | 0.0 | 0.08529 | 0.1648 | 74.42 | 273499999.998 | -| HIGHUSDT | 0.001633 | 0.001758 | 0.04293 | 0.003482 | 0.007656 | 0.007615 | 53.62 | 0.04566 | 0.0 | 0.03305 | 0.1045 | 358.88 | 273499999.998 | -| RIFUSDT | 0.002088 | 0.004044 | 0.02939 | 0.01033 | 0.007894 | 0.009442 | 45.92 | 0.05947 | 0.0 | 0.06083 | 0.1479 | 102.46 | 273499999.998 | -| BICOUSDT | 0.002039 | 0.00192 | 0.05541 | 0.02748 | 0.009749 | 0.008481 | 56.5 | 0.03677 | 0.0 | 0.02929 | 0.08177 | 124.46 | 273499999.998 | -| WAXPUSDT | 0.001852 | 0.003807 | 0.1124 | 0.08312 | 0.007824 | 0.01141 | 62.6 | 0.07155 | 0.0 | 0.07735 | 0.09753 | 105.38 | 273499999.998 | -| OXTUSDT | 0.001651 | 0.001872 | 0.02932 | 0.00401 | 0.007566 | 0.005888 | 43.68 | 0.02601 | 0.0 | 0.01646 | 0.175 | 173.46 | 273499999.998 | -| IDUSDT | 0.001511 | 0.001425 | 0.02147 | 0.003483 | 0.007466 | 0.006518 | 58.17 | 0.03538 | 0.0 | 0.02727 | 0.1814 | 313.38 | 273499999.998 | -| AGLDUSDT | 0.001856 | 0.002423 | 0.0347 | 0.01786 | 0.009813 | 0.009645 | 91.73 | 0.05209 | 0.0 | 0.05459 | 0.12 | 185.88 | 273499999.998 | -| BSVUSDT | 0.001799 | 0.002185 | 0.03212 | 0.0113 | 0.008201 | 0.009318 | 33.2 | 0.06503 | 0.0 | 0.06876 | 0.1169 | 102.46 | 273499999.998 | -| KEYUSDT | 0.001514 | 0.001945 | 0.05324 | 0.01893 | 0.01018 | 0.009592 | 93.5 | 0.05508 | 0.0 | 0.04212 | 0.1046 | 252.46 | 273499999.998 | -| SLPUSDT | 0.001699 | 0.002158 | 0.07912 | 0.05565 | 0.01047 | 0.01314 | 47.38 | 0.09106 | 0.0 | 0.09922 | 0.1774 | 92.38 | 273499999.998 | -| ONGUSDT | 0.001994 | 0.003333 | 0.04636 | 0.02213 | 0.004842 | 0.003748 | 37.25 | 0.01707 | 0.0 | 0.01601 | 0.03273 | 65.42 | 273499999.998 | -| COMBOUSDT | 0.001589 | 0.001966 | 0.04989 | 0.02861 | 0.007948 | 0.007736 | 69.57 | 0.0512 | 0.0 | 0.05459 | 0.1093 | 242.46 | 273499999.998 | -| ORBSUSDT | 0.001561 | 0.003043 | 0.06148 | 0.03255 | 0.009166 | 0.007983 | 104.6 | 0.04708 | 0.0 | 0.04967 | 0.06194 | 106.71 | 273499999.998 | -| TUSDT | 0.002136 | 0.001226 | 0.03015 | 0.01637 | 0.007152 | 0.009485 | 73.5 | 0.05636 | 0.0 | 0.05693 | 0.1868 | 364.42 | 273499999.998 | -| SSVUSDT | 0.002065 | 0.001264 | 0.03469 | 0.003599 | 0.01135 | 0.009844 | 87.87 | 0.05396 | 0.0 | 0.03043 | 0.07087 | 341.46 | 273499999.998 | -| HOOKUSDT | 0.001517 | 0.001568 | 0.06843 | 0.009571 | 0.01359 | 0.01351 | 97.13 | 0.08489 | 0.0 | 0.08377 | 0.1713 | 373.83 | 273499999.998 | -| RDNTUSDT | 0.002273 | 0.001861 | 0.03706 | 0.01081 | 0.007025 | 0.005413 | 70.43 | 0.02524 | 0.0 | 0.02216 | 0.05108 | 301.46 | 273499999.998 | -| NMRUSDT | 0.002384 | 0.001536 | 0.03508 | 0.008034 | 0.01085 | 0.01198 | 109.0 | 0.06734 | 0.0 | 0.05897 | 0.2374 | 222.46 | 273499999.998 | -| MBLUSDT | 0.001669 | 0.002756 | 0.131 | 0.1035 | 0.009404 | 0.01326 | 82.65 | 0.0799 | 0.0 | 0.08696 | 0.1022 | 78.33 | 273499999.998 | -| TIAUSDT | 0.001549 | 0.003166 | 0.02514 | 0.004876 | 0.01769 | 0.01495 | 41.75 | 0.05815 | 0.0 | 0.03009 | 0.07142 | 92.21 | 273499999.998 | -| XEMUSDT | 0.001492 | 0.001728 | 0.05381 | 0.03019 | 0.009411 | 0.01164 | 113.0 | 0.08413 | 0.0 | 0.09354 | 0.2472 | 1064.67 | 273499999.999 | -| DUSKUSDT | 0.0005684 | 0.000576 | 0.02196 | 0.003709 | 0.01516 | 0.01217 | 97.37 | 0.05956 | 0.0 | 0.04243 | 0.2045 | 753.83 | 273499999.999 | -| MEMEUSDT | 0.0008807 | 0.002351 | 0.01636 | 0.001907 | 0.008913 | 0.006731 | 34.23 | 0.02816 | 0.0 | 0.01039 | 0.06138 | 89.46 | 273499999.999 | -| AAVEUSDT | 0.000916 | 0.0008095 | 0.02107 | 0.01153 | 0.008943 | 0.009055 | 72.22 | 0.04895 | 0.0 | 0.05171 | 0.2164 | 1201.67 | 273499999.999 | -| EGLDUSDT | 0.0007476 | 0.0009812 | 0.02756 | 0.01504 | 0.01426 | 0.01215 | 98.22 | 0.05592 | 0.0 | 0.05327 | 0.135 | 1233.67 | 273499999.999 | -| BNTUSDT | 0.0007909 | 0.001768 | 0.02358 | 0.005282 | 0.008931 | 0.007933 | 47.42 | 0.04048 | 0.0 | 0.02412 | 0.1133 | 173.46 | 273499999.999 | -| KNCUSDT | 0.0007984 | 0.001546 | 0.04197 | 0.02291 | 0.01499 | 0.01498 | 117.3 | 0.08497 | 0.0 | 0.09406 | 0.2143 | 1318.62 | 273499999.999 | -| OMGUSDT | 0.0008764 | 0.001336 | 0.03236 | 0.01585 | 0.01334 | 0.01313 | 116.2 | 0.08203 | 0.0 | 0.09107 | 0.2428 | 1308.58 | 273499999.999 | -| MINAUSDT | 0.001035 | 0.0006134 | 0.01985 | 0.007516 | 0.01212 | 0.0113 | 105.1 | 0.08593 | 0.0 | 0.09222 | 0.221 | 357.5 | 273499999.999 | -| IDEXUSDT | 0.001486 | 0.001576 | 0.04212 | 0.01458 | 0.009603 | 0.008203 | 77.73 | 0.03963 | 0.0 | 0.0313 | 0.1079 | 273.46 | 273499999.999 | -| ACHUSDT | 0.0008983 | 0.001162 | 0.03808 | 0.01728 | 0.0111 | 0.009372 | 88.3 | 0.05028 | 0.0 | 0.04791 | 0.08787 | 342.38 | 273499999.999 | -| FLMUSDT | 0.001094 | 0.0008568 | 0.01587 | 0.004783 | 0.01761 | 0.015 | 119.8 | 0.07 | 0.0 | 0.03409 | 0.2141 | 1218.67 | 273499999.999 | -| QTUMUSDT | 0.0006021 | 0.001052 | 0.03266 | 0.008662 | 0.009755 | 0.009081 | 94.67 | 0.0501 | 0.0 | 0.04175 | 0.2145 | 1441.62 | 273499999.999 | -| RSRUSDT | 0.001113 | 0.00212 | 0.04807 | 0.01691 | 0.01521 | 0.01309 | 104.8 | 0.06433 | 0.0 | 0.05632 | 0.2042 | 1199.67 | 273499999.999 | -| ROSEUSDT | 0.000733 | 0.0007024 | 0.02157 | 0.008532 | 0.00989 | 0.008305 | 109.1 | 0.04887 | 0.0 | 0.0496 | 0.1633 | 761.83 | 273499999.999 | -| HBARUSDT | 0.0008734 | 0.001358 | 0.04782 | 0.009208 | 0.0125 | 0.01146 | 114.0 | 0.06556 | 0.0 | 0.05327 | 0.2319 | 1049.67 | 273499999.999 | -| AGIXUSDT | 0.001046 | 0.001643 | 0.03481 | 0.01962 | 0.01021 | 0.01233 | 79.32 | 0.08305 | 0.0 | 0.09204 | 0.2237 | 348.38 | 273499999.999 | -| FXSUSDT | 0.001215 | 0.00113 | 0.09283 | 0.001452 | 0.01649 | 0.01533 | 110.7 | 0.08175 | 0.0 | 0.06844 | 0.09684 | 375.83 | 273499999.999 | -| ETCUSDT | 0.0005246 | 0.0009482 | 0.0276 | 0.01142 | 0.0106 | 0.01006 | 102.1 | 0.05504 | 0.0 | 0.051 | 0.1834 | 1475.62 | 273499999.999 | -| DEFIUSDT | 0.00117 | 0.00177 | 0.08259 | 0.04236 | 0.01022 | 0.01089 | 98.52 | 0.07336 | 0.0 | 0.08007 | 0.1823 | 1250.67 | 273499999.999 | -| ENJUSDT | 0.0007347 | 0.001489 | 0.04957 | 0.01198 | 0.009376 | 0.01117 | 107.8 | 0.08833 | 0.0 | 0.09693 | 0.2332 | 1218.67 | 273499999.999 | -| SNXUSDT | 0.000641 | 0.0007177 | 0.01449 | 0.005935 | 0.01607 | 0.0148 | 115.6 | 0.06879 | 0.0 | 0.05052 | 0.2344 | 1265.67 | 273499999.999 | -| HOTUSDT | 0.001017 | 0.001391 | 0.06519 | 0.01956 | 0.01232 | 0.01379 | 105.6 | 0.09104 | 0.0 | 0.0974 | 0.1781 | 1037.67 | 273499999.999 | -| ZENUSDT | 0.0007994 | 0.001352 | 0.05994 | 0.00705 | 0.01709 | 0.01537 | 114.6 | 0.09085 | 0.0 | 0.08675 | 0.2478 | 1163.67 | 273499999.999 | -| SPELLUSDT | 0.001122 | 0.001066 | 0.03398 | 0.01229 | 0.008664 | 0.00901 | 75.9 | 0.06461 | 0.0 | 0.06899 | 0.1517 | 512.46 | 273499999.999 | -| TWTUSDT | 0.001077 | 0.001746 | 0.03038 | 0.01029 | 0.007512 | 0.00589 | 68.08 | 0.02366 | 0.0 | 0.01537 | 0.03345 | 89.38 | 273499999.999 | -| OGNUSDT | 0.0009957 | 0.001127 | 0.0286 | 0.01293 | 0.01233 | 0.01094 | 97.22 | 0.06524 | 0.0 | 0.06804 | 0.2163 | 1035.67 | 273499999.999 | -| JASMYUSDT | 0.001271 | 0.001543 | 0.05043 | 0.005829 | 0.007814 | 0.01076 | 108.9 | 0.09109 | 0.0 | 0.09671 | 0.2352 | 651.83 | 273499999.999 | -| RENUSDT | 0.0008873 | 0.001157 | 0.0617 | 0.005999 | 0.02227 | 0.0204 | 118.9 | 0.1164 | 0.0 | 0.09862 | 0.2357 | 1205.67 | 273499999.999 | -| CELOUSDT | 0.0008084 | 0.0007952 | 0.03644 | 0.01312 | 0.01005 | 0.01038 | 84.17 | 0.06312 | 0.0 | 0.0635 | 0.1996 | 855.83 | 273499999.999 | -| APEUSDT | 0.0005487 | 0.000816 | 0.02536 | 0.009546 | 0.01033 | 0.01018 | 102.8 | 0.06037 | 0.0 | 0.05198 | 0.2122 | 684.33 | 273499999.999 | -| GRTUSDT | 0.001445 | 0.00214 | 0.05308 | 0.02205 | 0.01202 | 0.01226 | 83.35 | 0.07551 | 0.0 | 0.0804 | 0.2339 | 1138.67 | 273499999.999 | -| CELRUSDT | 0.001366 | 0.002162 | 0.0459 | 0.01902 | 0.008543 | 0.009683 | 91.22 | 0.06389 | 0.0 | 0.06894 | 0.2018 | 1037.67 | 273499999.999 | -| DASHUSDT | 0.0006096 | 0.001069 | 0.06609 | 0.02411 | 0.01192 | 0.01392 | 118.3 | 0.08654 | 0.0 | 0.09328 | 0.2151 | 1456.62 | 273499999.999 | -| LUNA2USDT | 0.001424 | 0.001215 | 0.02998 | 0.002964 | 0.006984 | 0.008063 | 45.98 | 0.05865 | 0.0 | 0.05016 | 0.2403 | 508.83 | 273499999.999 | -| GLMRUSDT | 0.001173 | 0.001726 | 0.05665 | 0.01592 | 0.01232 | 0.01057 | 46.58 | 0.05613 | 0.0 | 0.05107 | 0.08909 | 127.92 | 273499999.999 | -| YFIUSDT | 0.0009868 | 0.001691 | 0.03439 | 0.02136 | 0.01019 | 0.01162 | 112.6 | 0.0797 | 0.0 | 0.08794 | 0.2239 | 1248.67 | 273499999.999 | -| ATAUSDT | 0.0008504 | 0.001417 | 0.03878 | 0.01595 | 0.008396 | 0.008658 | 72.2 | 0.05848 | 0.0 | 0.063 | 0.2247 | 882.83 | 273499999.999 | -| OCEANUSDT | 0.001126 | 0.001756 | 0.1057 | 0.01505 | 0.01775 | 0.01733 | 114.9 | 0.09585 | 0.0 | 0.09593 | 0.2117 | 1184.67 | 273499999.999 | -| AVAXUSDT | 0.0008138 | 0.001011 | 0.03868 | 0.009913 | 0.01618 | 0.01416 | 111.7 | 0.07977 | 0.0 | 0.07857 | 0.1942 | 1224.67 | 273499999.999 | -| DODOXUSDT | 0.00136 | 0.001749 | 0.03176 | 0.009306 | 0.009814 | 0.007757 | 35.65 | 0.03352 | 0.0 | 0.02095 | 0.06718 | 175.46 | 273499999.999 | -| SFPUSDT | 0.0007836 | 0.0016 | 0.04173 | 0.01935 | 0.0115 | 0.01136 | 96.28 | 0.05974 | 0.0 | 0.06385 | 0.2096 | 1071.67 | 273499999.999 | -| ONEUSDT | 0.001008 | 0.001638 | 0.03891 | 0.0198 | 0.01141 | 0.00978 | 114.6 | 0.04846 | 0.0 | 0.04793 | 0.2115 | 1049.67 | 273499999.999 | -| PHBUSDT | 0.0009489 | 0.0006744 | 0.02145 | 0.01121 | 0.009476 | 0.008618 | 66.3 | 0.0465 | 0.0 | 0.04637 | 0.1059 | 349.38 | 273499999.999 | -| FLOWUSDT | 0.0005942 | 0.0006206 | 0.02109 | 0.006454 | 0.01015 | 0.009326 | 98.23 | 0.04574 | 0.0 | 0.03271 | 0.143 | 719.83 | 273499999.999 | -| KAVAUSDT | 0.0006098 | 0.001307 | 0.03572 | 0.0106 | 0.01596 | 0.01326 | 95.9 | 0.06108 | 0.0 | 0.0435 | 0.1664 | 1282.67 | 273499999.999 | -| 1000FLOKIUSDT | 0.001331 | 0.001533 | 0.02275 | 0.003156 | 0.009506 | 0.008893 | 84.75 | 0.04727 | 0.0 | 0.0237 | 0.1005 | 269.29 | 273499999.999 | -| IMXUSDT | 0.0008064 | 0.0007492 | 0.02822 | 0.003646 | 0.01161 | 0.01113 | 100.4 | 0.06412 | 0.0 | 0.0522 | 0.1154 | 719.83 | 273499999.999 | -| XLMUSDT | 0.0008009 | 0.001446 | 0.04493 | 0.02773 | 0.008343 | 0.009579 | 119.8 | 0.06751 | 0.0 | 0.07301 | 0.2328 | 1472.62 | 273499999.999 | -| JOEUSDT | 0.0009625 | 0.0007627 | 0.05157 | 0.004864 | 0.01512 | 0.01405 | 83.32 | 0.07489 | 0.0 | 0.05852 | 0.09325 | 307.46 | 273499999.999 | -| POLYXUSDT | 0.001215 | 0.002967 | 0.02494 | 0.004422 | 0.007279 | 0.005766 | 47.27 | 0.02829 | 0.0 | 0.01711 | 0.07405 | 98.88 | 273499999.999 | -| LITUSDT | 0.001115 | 0.001797 | 0.05901 | 0.02379 | 0.01502 | 0.01507 | 111.6 | 0.08601 | 0.0 | 0.09004 | 0.2126 | 1077.67 | 273499999.999 | -| ONTUSDT | 0.0008533 | 0.001272 | 0.0547 | 0.01553 | 0.01476 | 0.01373 | 117.5 | 0.07504 | 0.0 | 0.06194 | 0.1795 | 1450.62 | 273499999.999 | -| DARUSDT | 0.0006704 | 0.0008129 | 0.02268 | 0.006056 | 0.01118 | 0.009068 | 92.27 | 0.04954 | 0.0 | 0.04303 | 0.1351 | 641.83 | 273499999.999 | -| MATICUSDT | 0.0006513 | 0.001362 | 0.03847 | 0.01529 | 0.01203 | 0.01242 | 108.0 | 0.08422 | 0.0 | 0.09259 | 0.2073 | 1196.67 | 273499999.999 | -| LDOUSDT | 0.001271 | 0.001214 | 0.05267 | 0.01921 | 0.01626 | 0.01586 | 84.82 | 0.08076 | 0.0 | 0.07077 | 0.1314 | 496.46 | 273499999.999 | -| GASUSDT | 0.0007278 | 0.002045 | 0.01277 | 0.006401 | 0.005569 | 0.00577 | 36.35 | 0.04828 | 0.0 | 0.04881 | 0.0875 | 98.88 | 273499999.999 | -| RLCUSDT | 0.001181 | 0.001902 | 0.05854 | 0.01383 | 0.01495 | 0.01518 | 103.4 | 0.08966 | 0.0 | 0.08427 | 0.1806 | 1279.67 | 273499999.999 | -| VETUSDT | 0.000738 | 0.001453 | 0.03951 | 0.01678 | 0.008452 | 0.01001 | 102.3 | 0.06153 | 0.0 | 0.06492 | 0.213 | 1447.62 | 273499999.999 | -| XVSUSDT | 0.0009065 | 0.0008714 | 0.01784 | 0.006591 | 0.01116 | 0.009452 | 86.83 | 0.04169 | 0.0 | 0.02705 | 0.09527 | 293.88 | 273499999.999 | -| CAKEUSDT | 0.0005002 | 0.001361 | 0.04215 | 0.01904 | 0.008673 | 0.008897 | 48.6 | 0.08411 | 0.0 | 0.09206 | 0.1201 | 89.46 | 273499999.999 | -| SEIUSDT | 0.001414 | 0.001293 | 0.01731 | 0.009404 | 0.0106 | 0.009951 | 88.05 | 0.05236 | 0.0 | 0.04587 | 0.1016 | 167.88 | 273499999.999 | -| MAGICUSDT | 0.001137 | 0.0009304 | 0.02955 | 0.009672 | 0.01102 | 0.009877 | 66.32 | 0.05367 | 0.0 | 0.0396 | 0.1116 | 370.83 | 273499999.999 | -| RUNEUSDT | 0.0006125 | 0.0005681 | 0.01366 | 0.003016 | 0.01779 | 0.0131 | 116.2 | 0.05097 | 0.0 | 0.0149 | 0.08219 | 1244.67 | 273499999.999 | -| CFXUSDT | 0.0007082 | 0.0008403 | 0.01006 | 0.00225 | 0.007713 | 0.006278 | 99.05 | 0.02591 | 0.0 | 0.008427 | 0.06475 | 344.38 | 273499999.999 | -| WLDUSDT | 0.001028 | 0.001156 | 0.03268 | 0.006004 | 0.01666 | 0.01584 | 61.02 | 0.08805 | 0.0 | 0.07933 | 0.2187 | 191.46 | 273499999.999 | -| LOOMUSDT | 0.001257 | 0.003628 | 0.01699 | 0.004522 | 0.007101 | 0.00586 | 62.27 | 0.02702 | 0.0 | 0.01388 | 0.06249 | 112.38 | 273499999.999 | -| HIFIUSDT | 0.0008693 | 0.001904 | 0.02946 | 0.004672 | 0.01072 | 0.00902 | 64.07 | 0.03906 | 0.0 | 0.02734 | 0.2182 | 136.38 | 273499999.999 | -| INJUSDT | 0.001387 | 0.001097 | 0.02417 | 0.007107 | 0.01034 | 0.008774 | 114.5 | 0.04092 | 0.0 | 0.02651 | 0.07343 | 532.88 | 273499999.999 | -| ALGOUSDT | 0.000929 | 0.001437 | 0.04139 | 0.01015 | 0.01206 | 0.01039 | 116.5 | 0.05647 | 0.0 | 0.04207 | 0.1179 | 1323.58 | 273499999.999 | -| COTIUSDT | 0.0005526 | 0.0009978 | 0.04846 | 0.008895 | 0.01642 | 0.01576 | 114.7 | 0.09409 | 0.0 | 0.09216 | 0.2495 | 1056.67 | 273499999.999 | -| ILVUSDT | 0.0008702 | 0.001308 | 0.06414 | 0.01027 | 0.01151 | 0.01149 | 30.68 | 0.08872 | 0.0 | 0.09777 | 0.1236 | 82.29 | 273499999.999 | -| NEOUSDT | 0.001095 | 0.001441 | 0.08025 | 0.0107 | 0.01051 | 0.01256 | 113.0 | 0.07226 | 0.0 | 0.07247 | 0.1683 | 1444.62 | 273499999.999 | -| ICXUSDT | 0.0005685 | 0.0009149 | 0.02284 | 0.003326 | 0.01153 | 0.009578 | 99.95 | 0.04621 | 0.0 | 0.02474 | 0.09905 | 1232.67 | 273499999.999 | -| RNDRUSDT | 0.0009608 | 0.001026 | 0.02859 | 0.01683 | 0.01088 | 0.009342 | 57.88 | 0.04182 | 0.0 | 0.04153 | 0.08783 | 362.88 | 273499999.999 | -| CTKUSDT | 0.0007345 | 0.001545 | 0.03612 | 0.01491 | 0.01061 | 0.01045 | 108.0 | 0.06426 | 0.0 | 0.06982 | 0.2332 | 1167.67 | 273499999.999 | -| COMPUSDT | 0.0005016 | 0.0006855 | 0.0422 | 0.009633 | 0.01718 | 0.0176 | 105.3 | 0.1002 | 0.0 | 0.09674 | 0.2375 | 1309.58 | 273499999.999 | -| GMXUSDT | 0.0007522 | 0.0006055 | 0.03479 | 0.01075 | 0.009886 | 0.007255 | 97.42 | 0.02926 | 0.0 | 0.0224 | 0.05912 | 348.38 | 273499999.999 | -| BADGERUSDT | 0.001235 | 0.002313 | 0.04275 | 0.01601 | 0.007826 | 0.007368 | 31.6 | 0.0423 | 0.0 | 0.04075 | 0.06825 | 82.46 | 273499999.999 | -| MKRUSDT | 0.0006199 | 0.0004388 | 0.009565 | 0.004247 | 0.01395 | 0.0112 | 101.0 | 0.04884 | 0.0 | 0.02147 | 0.187 | 1265.67 | 273499999.999 | -| XTZUSDT | 0.0008616 | 0.001629 | 0.04831 | 0.01832 | 0.009333 | 0.00855 | 95.28 | 0.05311 | 0.0 | 0.05684 | 0.2011 | 1455.62 | 273499999.999 | -| SOLUSDT | 0.000868 | 0.0008319 | 0.01204 | 0.002484 | 0.01297 | 0.01031 | 95.33 | 0.04599 | 0.0 | 0.01926 | 0.1631 | 1234.67 | 273499999.999 | -| CHRUSDT | 0.001393 | 0.002082 | 0.0579 | 0.02008 | 0.01432 | 0.01338 | 109.6 | 0.08693 | 0.0 | 0.09737 | 0.2457 | 1054.67 | 273499999.999 | -| STXUSDT | 0.0009887 | 0.0007245 | 0.03368 | 0.01004 | 0.01284 | 0.01127 | 113.7 | 0.06313 | 0.0 | 0.03634 | 0.08058 | 344.38 | 273499999.999 | -| THETAUSDT | 0.0006745 | 0.0009276 | 0.03148 | 0.01696 | 0.01294 | 0.01266 | 117.3 | 0.07311 | 0.0 | 0.07903 | 0.1674 | 1344.62 | 273499999.999 | -| ARBUSDT | 0.0009027 | 0.0004992 | 0.01996 | 0.007192 | 0.008556 | 0.007292 | 60.57 | 0.03401 | 0.0 | 0.0221 | 0.06295 | 313.33 | 273499999.999 | -| SKLUSDT | 0.001016 | 0.001105 | 0.01768 | 0.001935 | 0.0135 | 0.01015 | 100.4 | 0.03957 | 0.0 | 0.01339 | 0.1234 | 1149.67 | 273499999.999 | -| ETHWUSDT | 0.001469 | 0.00346 | 0.02118 | 0.01056 | 0.007792 | 0.008181 | 40.67 | 0.06951 | 0.0 | 0.07507 | 0.1277 | 63.46 | 273499999.999 | -| LQTYUSDT | 0.001377 | 0.001783 | 0.05886 | 0.0163 | 0.009645 | 0.01053 | 65.08 | 0.06902 | 0.0 | 0.06773 | 0.2022 | 327.46 | 273499999.999 | -| ASTRUSDT | 0.0005713 | 0.0003301 | 0.02298 | 0.0001069 | 0.0179 | 0.01369 | 82.78 | 0.06682 | 0.0 | 0.01963 | 0.2269 | 350.88 | 273499999.999 | -| FOOTBALLUSDT | 0.0006938 | 0.0006851 | 0.03462 | 0.006546 | 0.006255 | 0.008286 | 116.1 | 0.08597 | 0.0 | 0.09356 | 0.1836 | 516.83 | 273499999.999 | -| PEOPLEUSDT | 0.0005802 | 0.0004345 | 0.005545 | 0.0006612 | 0.01463 | 0.01097 | 96.83 | 0.04603 | 0.0 | 0.008418 | 0.122 | 768.79 | 273499999.999 | -| ATOMUSDT | 0.001036 | 0.0023 | 0.06449 | 0.03453 | 0.009555 | 0.01236 | 119.1 | 0.08476 | 0.0 | 0.09347 | 0.2074 | 1453.46 | 273499999.999 | -| NKNUSDT | 0.0005077 | 0.0009148 | 0.03474 | 0.002773 | 0.01767 | 0.01667 | 116.0 | 0.08697 | 0.0 | 0.05596 | 0.247 | 1027.67 | 273499999.999 | -| ALICEUSDT | 0.0006857 | 0.001329 | 0.06277 | 0.01005 | 0.01873 | 0.01766 | 111.8 | 0.09827 | 0.0 | 0.09267 | 0.2065 | 1050.83 | 273499999.999 | -| LTCUSDT | 0.0005105 | 0.001052 | 0.04751 | 0.02285 | 0.008641 | 0.008862 | 114.1 | 0.05494 | 0.0 | 0.05853 | 0.1412 | 1483.62 | 273499999.999 | -| CKBUSDT | 0.0009675 | 0.0009283 | 0.06864 | 0.001535 | 0.01142 | 0.01106 | 87.2 | 0.07005 | 0.0 | 0.05765 | 0.2145 | 336.46 | 273499999.999 | -| STMXUSDT | 0.001475 | 0.001864 | 0.03157 | 0.0129 | 0.01091 | 0.01014 | 113.7 | 0.05993 | 0.0 | 0.06201 | 0.2198 | 1045.67 | 273499999.999 | -| ARPAUSDT | 0.0006129 | 0.000905 | 0.01534 | 0.004282 | 0.00559 | 0.005812 | 53.35 | 0.03461 | 0.0 | 0.03082 | 0.1639 | 833.83 | 273499999.999 | -| C98USDT | 0.0007839 | 0.001012 | 0.05737 | 0.01002 | 0.01752 | 0.01622 | 103.8 | 0.09112 | 0.0 | 0.09216 | 0.1858 | 889.83 | 273499999.999 | -| ZRXUSDT | 0.001056 | 0.001121 | 0.04383 | 0.00894 | 0.01483 | 0.01344 | 116.3 | 0.07327 | 0.0 | 0.06146 | 0.2455 | 1316.58 | 273499999.999 | -| BIGTIMEUSDT | 0.001397 | 0.003876 | 0.02728 | 0.008679 | 0.01648 | 0.01651 | 54.7 | 0.08727 | 0.0 | 0.06949 | 0.2146 | 110.38 | 273499999.999 | -| ICPUSDT | 0.001206 | 0.0004633 | 0.01965 | 0.0003642 | 0.01069 | 0.008908 | 113.6 | 0.04289 | 0.0 | 0.01711 | 0.104 | 491.88 | 273499999.999 | -| BONDUSDT | 0.0006439 | 0.001327 | 0.01182 | 0.002832 | 0.01017 | 0.008248 | 39.85 | 0.03492 | 0.0 | 0.01562 | 0.06271 | 107.38 | 273499999.999 | -| LINKUSDT | 0.001209 | 0.001787 | 0.05301 | 0.03438 | 0.01118 | 0.0119 | 117.9 | 0.0736 | 0.0 | 0.08011 | 0.1989 | 1475.62 | 273499999.999 | -| STORJUSDT | 0.0007964 | 0.0008912 | 0.02092 | 0.007605 | 0.01225 | 0.01062 | 86.18 | 0.06001 | 0.0 | 0.05346 | 0.1825 | 1232.67 | 273499999.999 | -| KSMUSDT | 0.0005075 | 0.0006929 | 0.02102 | 0.006533 | 0.01195 | 0.009272 | 78.7 | 0.04301 | 0.0 | 0.0232 | 0.09231 | 1204.67 | 273499999.999 | -| STPTUSDT | 0.001483 | 0.002282 | 0.05688 | 0.02783 | 0.005301 | 0.005251 | 39.4 | 0.03856 | 0.0 | 0.04076 | 0.08905 | 105.38 | 273499999.999 | -| ZECUSDT | 0.0005292 | 0.0009972 | 0.07923 | 0.0129 | 0.01262 | 0.01467 | 116.7 | 0.09218 | 0.0 | 0.09691 | 0.2116 | 1456.62 | 273499999.999 | -| TLMUSDT | 0.001257 | 0.0009397 | 0.02834 | 0.009363 | 0.007656 | 0.008908 | 78.35 | 0.04811 | 0.0 | 0.04225 | 0.2356 | 307.46 | 273499999.999 | -| MDTUSDT | 0.001081 | 0.001371 | 0.02953 | 0.01009 | 0.008821 | 0.01119 | 60.05 | 0.0758 | 0.0 | 0.08104 | 0.2082 | 215.46 | 273499999.999 | -| DGBUSDT | 0.0006744 | 0.001245 | 0.08605 | 0.01576 | 0.01335 | 0.01445 | 105.9 | 0.0856 | 0.0 | 0.08819 | 0.2359 | 1014.83 | 273499999.999 | -| UNIUSDT | 0.0007244 | 0.001394 | 0.03699 | 0.01672 | 0.009772 | 0.008367 | 92.68 | 0.04014 | 0.0 | 0.0403 | 0.1217 | 1230.67 | 273499999.999 | -| CRVUSDT | 0.0004882 | 0.001129 | 0.03536 | 0.01294 | 0.01311 | 0.01445 | 108.6 | 0.09243 | 0.0 | 0.09943 | 0.2484 | 1246.67 | 273500000.0 | -| EOSUSDT | 0.0004926 | 0.000886 | 0.0441 | 0.01562 | 0.01217 | 0.0125 | 100.6 | 0.0686 | 0.0 | 0.06885 | 0.2288 | 1483.62 | 273500000.0 | -| ALPHAUSDT | 0.0003292 | 0.0005369 | 0.02562 | 0.0008879 | 0.01971 | 0.01722 | 118.4 | 0.09919 | 0.0 | 0.06476 | 0.2499 | 1163.67 | 273500000.0 | -| CTSIUSDT | 0.0001725 | 0.0002211 | 0.007847 | 0.001219 | 0.01597 | 0.01176 | 97.78 | 0.04789 | 0.0 | 0.01207 | 0.2227 | 826.83 | 273500000.0 | -| ETHUSDT | 0.0001842 | 0.0004636 | 0.023 | 0.003613 | 0.005207 | 0.00411 | 68.5 | 0.02126 | 0.0 | 0.01387 | 0.06291 | 1490.96 | 273500000.0 | -| LRCUSDT | 0.0003597 | 0.0007554 | 0.02866 | 0.008909 | 0.01876 | 0.0166 | 117.4 | 0.08127 | 0.0 | 0.06396 | 0.2445 | 1198.67 | 273500000.0 | -| QNTUSDT | 0.0003477 | 0.0003204 | 0.01279 | 0.001964 | 0.01007 | 0.00781 | 89.53 | 0.03043 | 0.0 | 0.00665 | 0.03729 | 468.88 | 273500000.0 | -| BTCUSDT | 0.0001706 | 0.0002167 | 0.02228 | 0.01069 | 0.00869 | 0.007783 | 101.0 | 0.03598 | 0.0 | 0.02417 | 0.09045 | 1490.96 | 273500000.0 | -| AXSUSDT | 0.0001524 | 0.0004059 | 0.01008 | 0.004475 | 0.0157 | 0.01347 | 105.7 | 0.05174 | 0.0 | 0.02031 | 0.2429 | 1166.67 | 273500000.0 | -| 1000XECUSDT | 0.0004289 | 0.0005315 | 0.01051 | 0.004206 | 0.007493 | 0.006068 | 89.17 | 0.0277 | 0.0 | 0.01618 | 0.1083 | 865.83 | 273500000.0 | -| FTMUSDT | 0.0004722 | 0.001092 | 0.02795 | 0.008165 | 0.01541 | 0.01324 | 80.72 | 0.06952 | 0.0 | 0.06122 | 0.2048 | 1223.67 | 273500000.0 | -| LPTUSDT | 0.0003238 | 0.0003467 | 0.02331 | 0.0002107 | 0.02152 | 0.01768 | 115.2 | 0.08597 | 0.0 | 0.02841 | 0.09774 | 810.83 | 273500000.0 | -| AUDIOUSDT | 0.000253 | 0.0003926 | 0.02669 | 3.259e-05 | 0.01944 | 0.01803 | 108.5 | 0.09937 | 0.0 | 0.05478 | 0.1589 | 894.83 | 273500000.0 | -| TRXUSDT | 0.0001076 | 0.0003284 | 0.02822 | 0.01045 | 0.01019 | 0.009309 | 114.2 | 0.04999 | 0.0 | 0.04987 | 0.2122 | 1477.62 | 273500000.0 | -| IOSTUSDT | 0.0003605 | 0.0007348 | 0.03285 | 0.004118 | 0.01223 | 0.01207 | 109.9 | 0.07148 | 0.0 | 0.05661 | 0.2409 | 1440.62 | 273500000.0 | -| MTLUSDT | 0.0003095 | 0.0004602 | 0.029 | 0.004959 | 0.02115 | 0.01977 | 93.08 | 0.1114 | 0.0 | 0.08414 | 0.2481 | 1036.67 | 273500000.0 | -| 1000SHIBUSDT | 0.0002991 | 0.0006437 | 0.01217 | 0.003085 | 0.01058 | 0.008727 | 108.2 | 0.04582 | 0.0 | 0.0286 | 0.1492 | 995.25 | 273500000.0 | -| CYBERUSDT | 0.000213 | 0.0007967 | 0.00417 | 0.0001282 | 0.0167 | 0.01205 | 84.13 | 0.04876 | 0.0 | 0.002515 | 0.03422 | 162.46 | 273500000.0 | -| BNBUSDT | 0.0002682 | 0.0005574 | 0.02494 | 0.01379 | 0.008187 | 0.00953 | 118.1 | 0.05784 | 0.0 | 0.05852 | 0.2171 | 1450.62 | 273500000.0 | -| NEARUSDT | 0.0004217 | 0.000565 | 0.02044 | 0.003742 | 0.01682 | 0.01428 | 106.2 | 0.07377 | 0.0 | 0.04059 | 0.24 | 1203.62 | 273500000.0 | -| ADAUSDT | 0.0003965 | 0.0005591 | 0.01895 | 0.008711 | 0.01138 | 0.01016 | 109.1 | 0.05616 | 0.0 | 0.04767 | 0.1234 | 1460.62 | 273500000.0 | -| API3USDT | 0.0002507 | 0.0002154 | 0.02497 | 0.01822 | 0.01775 | 0.01519 | 109.6 | 0.07689 | 0.0 | 0.0838 | 0.2281 | 707.83 | 273500000.0 | -| BELUSDT | 0.0002537 | 0.0005886 | 0.01865 | 0.00195 | 0.01875 | 0.01652 | 117.3 | 0.07588 | 0.0 | 0.03194 | 0.249 | 1168.67 | 273500000.0 | -| APTUSDT | 0.0003822 | 0.00065 | 0.008078 | 0.001191 | 0.01211 | 0.009396 | 113.3 | 0.03843 | 0.0 | 0.004493 | 0.03566 | 468.88 | 273500000.0 | -| DENTUSDT | 0.0004217 | 0.0008053 | 0.02194 | 0.01056 | 0.01061 | 0.01295 | 98.82 | 0.07625 | 0.0 | 0.08026 | 0.2485 | 1042.79 | 273500000.0 | -| BALUSDT | 0.0001292 | 0.000285 | 0.01282 | 0.0003977 | 0.01692 | 0.01298 | 114.6 | 0.05553 | 0.0 | 0.01496 | 0.05709 | 1246.67 | 273500000.0 | -| STGUSDT | 0.000423 | 0.0005298 | 0.0134 | 0.002391 | 0.005522 | 0.004433 | 40.07 | 0.02138 | 0.0 | 0.01217 | 0.07816 | 524.46 | 273500000.0 | -| SANDUSDT | 0.0004786 | 0.001144 | 0.04083 | 0.0061 | 0.01584 | 0.01516 | 98.97 | 0.08943 | 0.0 | 0.07981 | 0.2499 | 1101.67 | 273500000.0 | -| GTCUSDT | 9.571e-05 | 0.0001918 | 0.00774 | 0.00136 | 0.01829 | 0.01381 | 107.1 | 0.07108 | 0.0 | 0.03165 | 0.2368 | 964.83 | 273500000.0 | -| LINAUSDT | 0.0004278 | 0.0006999 | 0.02249 | 0.00555 | 0.01792 | 0.01489 | 116.4 | 0.07127 | 0.0 | 0.04991 | 0.2177 | 1048.67 | 273500000.0 | -| 1000LUNCUSDT | 0.0002598 | 0.0001851 | 0.003963 | 0.0001475 | 0.01255 | 0.01015 | 118.0 | 0.04134 | 0.0 | 0.003165 | 0.0978 | 508.42 | 273500000.0 | -| DOGEUSDT | 0.0004449 | 0.00144 | 0.01995 | 0.009102 | 0.009566 | 0.01193 | 119.8 | 0.07422 | 0.0 | 0.07706 | 0.25 | 1299.58 | 273500000.0 | -| BNXUSDT | 0.0003565 | 0.0005874 | 0.01801 | 0.004758 | 0.00948 | 0.007189 | 93.78 | 0.03134 | 0.0 | 0.01905 | 0.06149 | 342.38 | 273500000.0 | -| 1INCHUSDT | 0.0003778 | 0.0006253 | 0.03097 | 0.0005523 | 0.01739 | 0.01524 | 96.15 | 0.08344 | 0.0 | 0.05019 | 0.2279 | 1131.54 | 273500000.0 | -| BLUEBIRDUSDT | 0.0001554 | 0.0001566 | 0.0188 | 0.005885 | 0.007596 | 0.006375 | 75.47 | 0.03516 | 0.0 | 0.02163 | 0.07126 | 454.46 | 273500000.0 | -| ANKRUSDT | 0.0004317 | 0.0009186 | 0.03645 | 0.005562 | 0.01735 | 0.01865 | 107.1 | 0.1093 | 0.0 | 0.09965 | 0.2398 | 1099.67 | 273500000.0 | -| CHZUSDT | 0.0004507 | 0.0009802 | 0.04921 | 0.00505 | 0.01828 | 0.01811 | 119.2 | 0.1018 | 0.0 | 0.08495 | 0.2418 | 1104.67 | 273500000.0 | -| DOTUSDT | 0.0003331 | 0.0005894 | 0.02342 | 0.008352 | 0.008293 | 0.007787 | 98.38 | 0.04679 | 0.0 | 0.04145 | 0.1316 | 1256.67 | 273500000.0 | -| BATUSDT | 6.354e-05 | 0.0001415 | 0.007027 | 0.0003943 | 0.01594 | 0.01145 | 88.2 | 0.04668 | 0.0 | 0.006845 | 0.09299 | 1447.62 | 273500000.0 | -| IOTAUSDT | 0.0004536 | 0.0005658 | 0.01666 | 0.003357 | 0.01272 | 0.009764 | 83.93 | 0.04266 | 0.0 | 0.01793 | 0.1343 | 1449.62 | 273500000.0 | -| BCHUSDT | 0.000359 | 0.000453 | 0.02993 | 0.003781 | 0.01166 | 0.01102 | 99.65 | 0.06367 | 0.0 | 0.04532 | 0.1412 | 1490.96 | 273500000.0 | -| RVNUSDT | 0.0004211 | 0.0006952 | 0.01726 | 0.006599 | 0.011 | 0.01082 | 90.12 | 0.06625 | 0.0 | 0.06456 | 0.2169 | 1072.67 | 273500000.0 | -| ANTUSDT | 0.0001673 | 0.0003422 | 0.03039 | 0.0 | 0.02012 | 0.01684 | 112.3 | 0.08451 | 0.0 | 0.04658 | 0.1188 | 764.79 | 273500000.0 | -| XMRUSDT | 0.0003586 | 0.0008565 | 0.0407 | 0.01564 | 0.007604 | 0.008188 | 95.1 | 0.04867 | 0.0 | 0.04974 | 0.1293 | 1458.62 | 273500000.0 | -| CVXUSDT | 0.0003175 | 0.0005014 | 0.0431 | 0.02092 | 0.01018 | 0.008737 | 111.5 | 0.04325 | 0.0 | 0.04401 | 0.1848 | 495.46 | 273500000.0 | -| OPUSDT | 0.0004387 | 0.0004477 | 0.02829 | 0.01966 | 0.01639 | 0.01472 | 91.82 | 0.07749 | 0.0 | 0.08482 | 0.2018 | 609.38 | 273500000.0 | -| GMTUSDT | 0.0004313 | 0.0005975 | 0.01093 | 0.00275 | 0.01345 | 0.01083 | 108.2 | 0.04758 | 0.0 | 0.022 | 0.1526 | 687.79 | 273500000.0 | -| DYDXUSDT | 0.00041 | 0.0005785 | 0.02151 | 0.006826 | 0.01636 | 0.01369 | 99.93 | 0.06224 | 0.0 | 0.03 | 0.1229 | 872.83 | 273500000.0 | -| ZILUSDT | 0.0004763 | 0.001084 | 0.03076 | 0.01293 | 0.009975 | 0.008757 | 110.8 | 0.04824 | 0.0 | 0.04941 | 0.1348 | 1322.58 | 273500000.0 | -| REEFUSDT | 0.0004726 | 0.0008181 | 0.01837 | 0.006085 | 0.009784 | 0.0082 | 85.78 | 0.04436 | 0.0 | 0.03841 | 0.2027 | 1073.67 | 273500000.0 | -| TRUUSDT | 0.0004774 | 0.0005088 | 0.03435 | 0.0 | 0.01797 | 0.01622 | 91.17 | 0.09088 | 0.0 | 0.05693 | 0.09378 | 330.46 | 273500000.0 | -| XRPUSDT | 0.0003457 | 0.000679 | 0.01575 | 0.00317 | 0.009404 | 0.008221 | 113.9 | 0.03739 | 0.0 | 0.02003 | 0.2114 | 1486.62 | 273500000.0 | -| 1000PEPEUSDT | 0.0004599 | 0.0009074 | 0.006542 | 0.0005549 | 0.01193 | 0.01027 | 57.75 | 0.04159 | 0.0 | 0.003385 | 0.04045 | 270.29 | 273500000.0 | -| WAVESUSDT | 0.0001842 | 0.0002626 | 0.006333 | 0.00117 | 0.01425 | 0.011 | 98.13 | 0.04691 | 0.0 | 0.01233 | 0.1603 | 1267.67 | 273500000.0 | -| BAKEUSDT | 0.0004454 | 0.0002026 | 0.005477 | 0.0002618 | 0.01789 | 0.01262 | 108.6 | 0.05022 | 0.0 | 0.00474 | 0.1222 | 986.67 | 273500000.0 | -| FILUSDT | 0.0001998 | 0.0003057 | 0.01441 | 0.003554 | 0.01476 | 0.0133 | 131.6 | 0.06677 | 0.0 | 0.04414 | 0.2435 | 1201.71 | 274663333.333 | -| SXPUSDT | 7.055e-05 | 0.0001394 | 0.0091 | 0.002526 | 0.01869 | 0.01403 | 133.9 | 0.0607 | 0.0 | 0.02296 | 0.1694 | 1289.58 | 274891666.667 | -| KLAYUSDT | 0.0002933 | 0.0002568 | 0.02276 | 0.005464 | 0.01329 | 0.01387 | 169.0 | 0.0819 | 0.0 | 0.07251 | 0.2419 | 841.83 | 278398333.333 | -| IOTXUSDT | 0.0003313 | 0.000355 | 0.01645 | 0.003295 | 0.01725 | 0.01424 | 182.3 | 0.08006 | 0.0 | 0.06563 | 0.2229 | 902.83 | 279735000.0 | -| BTCDOMUSDT | 0.0001782 | 0.0001277 | 0.01935 | 0.0004412 | 0.007404 | 0.00596 | 321.2 | 0.02759 | 0.0 | 0.007197 | 0.01929 | 953.83 | 293621666.666 | -| BANDUSDT | 0.0007918 | 0.001255 | 0.03983 | 0.01417 | 0.01954 | 0.01942 | 418.4 | 0.07863 | 0.0 | 0.04951 | 0.1909 | 1280.67 | 303336666.666 | -| ARUSDT | 0.0004559 | 0.0005092 | 0.03086 | 0.01063 | 0.01971 | 0.01928 | 158.0 | 0.1003 | 0.0 | 0.09885 | 0.2807 | 854.83 | 307997839.774 | -| MANAUSDT | 0.0003384 | 0.0007247 | 0.01306 | 0.00488 | 0.01501 | 0.01355 | 276.3 | 0.06993 | 0.0 | 0.04981 | 0.2822 | 1052.67 | 321286514.864 | -| ORDIUSDT | 0.000949 | 0.002202 | 0.1692 | 0.1558 | 0.04571 | 0.04439 | 493.3 | 0.2116 | 0.0 | 0.2765 | 0.3872 | 85.46 | 465674897.008 | -| USDCUSDT | 8.998e-07 | 2.3e-07 | 0.005795 | 0.0 | 0.002879 | 0.001679 | 4163.0 | 0.01052 | 0.4 | 5.536e-05 | 7.72e-05 | 325.25 | 680346666.667 | -| GALAUSDT | -0.08401 | -0.01585 | 0.03772 | 0.03317 | 0.03984 | 0.05627 | 1368.0 | 0.4131 | 10.71 | 1.0 | 1.0 | 864.83 | 1343896201.92 | -| MASKUSDT | -0.001544 | -0.01544 | 0.0541 | 0.04116 | 0.01465 | 0.0339 | 11020.0 | 0.1958 | 2.55 | 1.0 | 1.0 | 887.83 | 2227697113.29 | -| UNFIUSDT | -0.001275 | -0.01275 | 0.2255 | 0.2167 | 0.07996 | 0.09993 | 14480.0 | 0.3372 | 1.232 | 1.0 | 1.0 | 1076.67 | 2559885703.81 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000BONKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000BONKUSDT.json deleted file mode 100644 index c1a622d38..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000BONKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5076176852487743, - "ema_span_0": 870.6903870465236, - "ema_span_1": 640.0505371453597, - "enabled": true, - "initial_eprice_ema_dist": -0.004625045279078337, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.0013545152613237054, - "min_markup": 0.005295220636714294, - "n_close_orders": 13, - "rentry_pprice_dist": 0.020319585917755578, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9495540973434329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000FLOKIUSDT.json deleted file mode 100644 index 424fc83a0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1000253088461639, - "ema_span_0": 1097.8744732697232, - "ema_span_1": 406.91457583186894, - "enabled": true, - "initial_eprice_ema_dist": -0.0027409371987949004, - "initial_qty_pct": 0.018805446219805615, - "markup_range": 0.002479346622921817, - "min_markup": 0.006656628235282698, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02831082617853845, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7368907040172634, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.429232835173058, - "ema_span_0": 1373.8554224777074, - "ema_span_1": 575.1863608354481, - "enabled": true, - "initial_eprice_ema_dist": -0.0021964840780753082, - "initial_qty_pct": 0.009684351562086288, - "markup_range": 6.347250842397099e-05, - "min_markup": 0.0022125862752340516, - "n_close_orders": 13, - "rentry_pprice_dist": 0.023735025844592438, - "rentry_pprice_dist_wallet_exposure_weighting": 4.445847754812645, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000LUNCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000LUNCUSDT.json deleted file mode 100644 index a29a474d9..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000PEPEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000PEPEUSDT.json deleted file mode 100644 index b49c110f5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4059985463458717, - "ema_span_0": 548.3792196674449, - "ema_span_1": 548.3879932601744, - "enabled": true, - "initial_eprice_ema_dist": -0.008698964900674353, - "initial_qty_pct": 0.006795414926456369, - "markup_range": 0.0010845161472864424, - "min_markup": 0.0026131557642318543, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014124242142790474, - "rentry_pprice_dist_wallet_exposure_weighting": 6.135744239631218, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000RATSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000RATSUSDT.json deleted file mode 100644 index f8a581ffa..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000RATSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.187342573680735, - "ema_span_0": 420.8298168240888, - "ema_span_1": 1293.6703257472886, - "enabled": true, - "initial_eprice_ema_dist": -0.009730278881618249, - "initial_qty_pct": 0.006867192626880222, - "markup_range": 0.006912808454446304, - "min_markup": 0.009779929906242303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.042901841601788164, - "rentry_pprice_dist_wallet_exposure_weighting": 0.35839352560910487, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000SATSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000SATSUSDT.json deleted file mode 100644 index daad2d542..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000SATSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.337218641941045, - "ema_span_0": 1394.0595360103011, - "ema_span_1": 1209.904791055211, - "enabled": true, - "initial_eprice_ema_dist": -0.0020670190574686915, - "initial_qty_pct": 0.01463807095251366, - "markup_range": 0.007272680089655267, - "min_markup": 0.006039483470154668, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028533484009548606, - "rentry_pprice_dist_wallet_exposure_weighting": 6.256314642408412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000SHIBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000SHIBUSDT.json deleted file mode 100644 index 50bb09dfc..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000XECUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1000XECUSDT.json deleted file mode 100644 index 632cdb88a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/1INCHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/1INCHUSDT.json deleted file mode 100644 index 10dd142ce..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5590482888791055, - "ema_span_0": 538.1218079970611, - "ema_span_1": 1094.3248929582285, - "enabled": true, - "initial_eprice_ema_dist": 0.00013780156130994856, - "initial_qty_pct": 0.009301461556690956, - "markup_range": 0.00012061326048546869, - "min_markup": 0.0028697069440414657, - "n_close_orders": 12, - "rentry_pprice_dist": 0.021668125415918248, - "rentry_pprice_dist_wallet_exposure_weighting": 2.261304953987642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AAVEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AAVEUSDT.json deleted file mode 100644 index 242f7789c..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.247885911615898, - "ema_span_0": 701.0732650974925, - "ema_span_1": 807.528616151842, - "enabled": true, - "initial_eprice_ema_dist": -0.00593504535989968, - "initial_qty_pct": 0.008871061261948114, - "markup_range": 0.003804641519225573, - "min_markup": 0.005656748541260267, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0305329129680727, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6173753962108104, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ACEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ACEUSDT.json deleted file mode 100644 index dc927ac64..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ACEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ACHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ACHUSDT.json deleted file mode 100644 index 8ddacf78e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.9506399112412, - "ema_span_1": 481.34258197826495, - "enabled": true, - "initial_eprice_ema_dist": -0.007907509831981581, - "initial_qty_pct": 0.006931635358392313, - "markup_range": 0.004329404978522449, - "min_markup": 0.004579724919735104, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051569990412496, - "rentry_pprice_dist_wallet_exposure_weighting": 3.78351730916741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ADAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ADAUSDT.json deleted file mode 100644 index 08c1e60c1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6850516916385354, - "ema_span_0": 426.12185415017063, - "ema_span_1": 496.26050416975323, - "enabled": true, - "initial_eprice_ema_dist": -0.001927759450286079, - "initial_qty_pct": 0.00522237375491126, - "markup_range": 0.0002740301299901382, - "min_markup": 0.0018052120025589962, - "n_close_orders": 9, - "rentry_pprice_dist": 0.010638872767800392, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8083721509060042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AGIXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AGIXUSDT.json deleted file mode 100644 index e0c3c9aa3..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AGLDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AGLDUSDT.json deleted file mode 100644 index c1abdaec8..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.126630552136007, - "ema_span_0": 701.9618877279123, - "ema_span_1": 838.5478144716134, - "enabled": true, - "initial_eprice_ema_dist": 0.002265006252210066, - "initial_qty_pct": 0.006860001911838622, - "markup_range": 0.006033133341522965, - "min_markup": 0.009834404026120324, - "n_close_orders": 6, - "rentry_pprice_dist": 0.028661586790478182, - "rentry_pprice_dist_wallet_exposure_weighting": 5.255291272853817, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.942676089272254, - "ema_span_0": 1221.1673012685583, - "ema_span_1": 1106.6075785388434, - "enabled": true, - "initial_eprice_ema_dist": -0.0017605548748617988, - "initial_qty_pct": 0.005496329078201383, - "markup_range": 0.007959869824874228, - "min_markup": 0.0020854311731210193, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03839972302764517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7327213772260364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AIUSDT.json deleted file mode 100644 index 2bbae76db..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3600498718473935, - "ema_span_0": 1235.9051580847981, - "ema_span_1": 856.7371728695309, - "enabled": true, - "initial_eprice_ema_dist": -0.0017094417754341914, - "initial_qty_pct": 0.010625905406642312, - "markup_range": 0.0018945453426481402, - "min_markup": 0.0024216331971961104, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0271413542352054, - "rentry_pprice_dist_wallet_exposure_weighting": 3.817802557822029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9369121462422005, - "ema_span_0": 1440, - "ema_span_1": 1376.5256726361233, - "enabled": true, - "initial_eprice_ema_dist": -0.002784127828183163, - "initial_qty_pct": 0.013916927508297325, - "markup_range": 0.0015546850195966365, - "min_markup": 0.0028228232914522455, - "n_close_orders": 8, - "rentry_pprice_dist": 0.025062668478451598, - "rentry_pprice_dist_wallet_exposure_weighting": 2.628424800050207, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALGOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ALGOUSDT.json deleted file mode 100644 index e31e016e0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.148152593539759, - "ema_span_0": 718.846226023948, - "ema_span_1": 1002.9663942794539, - "enabled": true, - "initial_eprice_ema_dist": 0.0019186938752824973, - "initial_qty_pct": 0.010184220128854395, - "markup_range": 0.009131535314237214, - "min_markup": 0.009053243742168114, - "n_close_orders": 10, - "rentry_pprice_dist": 0.033327900962443154, - "rentry_pprice_dist_wallet_exposure_weighting": 4.566914240307952, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALICEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ALICEUSDT.json deleted file mode 100644 index ff2253beb..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1361865196523429, - "ema_span_0": 1333.4958726729335, - "ema_span_1": 1126.1129149010173, - "enabled": true, - "initial_eprice_ema_dist": -0.004619094663308742, - "initial_qty_pct": 0.007926153354800156, - "markup_range": 0.002741544490172375, - "min_markup": 0.001092880784452153, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03736049608158455, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7183316113401004, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30684661494471066, - "ema_span_0": 1439.8138192172642, - "ema_span_1": 1252.2760313364993, - "enabled": true, - "initial_eprice_ema_dist": 0.0001595903022150351, - "initial_qty_pct": 0.01945689895883202, - "markup_range": 0.008140567869363829, - "min_markup": 0.009998750068773035, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03819149732096614, - "rentry_pprice_dist_wallet_exposure_weighting": 4.717900638799864, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALPHAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ALPHAUSDT.json deleted file mode 100644 index 2accff4c5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6019934952984558, - "ema_span_0": 678.9097998235497, - "ema_span_1": 463.1156853848917, - "enabled": true, - "initial_eprice_ema_dist": 0.0005177663471187619, - "initial_qty_pct": 0.009311615707788988, - "markup_range": 0.004335328811402389, - "min_markup": 0.007890441163626, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02926411082808768, - "rentry_pprice_dist_wallet_exposure_weighting": 4.023729122646496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ALTUSDT.json deleted file mode 100644 index 881463023..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ALTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AMBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AMBUSDT.json deleted file mode 100644 index 67b4d8124..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2641897540963043, - "ema_span_0": 864.6786000387508, - "ema_span_1": 902.0154972656932, - "enabled": true, - "initial_eprice_ema_dist": 0.001992848939767834, - "initial_qty_pct": 0.02, - "markup_range": 0.0016797484433887344, - "min_markup": 0.006614224918287394, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03727336844316724, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2439113539076088, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ANKRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ANKRUSDT.json deleted file mode 100644 index c90800156..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6921253886815695, - "ema_span_0": 428.88845472586047, - "ema_span_1": 1033.2911537732355, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998259863056997, - "initial_qty_pct": 0.007231577146814722, - "markup_range": 0.002385642534751642, - "min_markup": 0.005016345350053768, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02511992574003009, - "rentry_pprice_dist_wallet_exposure_weighting": 4.425112144475232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21503899551100683, - "ema_span_0": 934.8841562338228, - "ema_span_1": 865.9335468099871, - "enabled": true, - "initial_eprice_ema_dist": 0.002893791627772019, - "initial_qty_pct": 0.01999968462993707, - "markup_range": 0.001319917425168107, - "min_markup": 0.008171179515138025, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03745476313808271, - "rentry_pprice_dist_wallet_exposure_weighting": 6.708130319957774, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ANTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ANTUSDT.json deleted file mode 100644 index e18a6e348..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/APEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/APEUSDT.json deleted file mode 100644 index cc7cb4e5f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.136980516315344, - "ema_span_0": 990.5411928116741, - "ema_span_1": 1107.7590226770542, - "enabled": true, - "initial_eprice_ema_dist": -0.00673973466369681, - "initial_qty_pct": 0.006748739638866885, - "markup_range": 0.001916299903031851, - "min_markup": 0.005651226545313381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019491943571174564, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2047101396037654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5749969457700788, - "ema_span_0": 569.413304156137, - "ema_span_1": 490.5430557314239, - "enabled": true, - "initial_eprice_ema_dist": -0.0086863081186085, - "initial_qty_pct": 0.0087043398163937, - "markup_range": 0.005588308732260884, - "min_markup": 0.005238778285633801, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243385509821733, - "rentry_pprice_dist_wallet_exposure_weighting": 6.451868010973641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/API3USDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/API3USDT.json deleted file mode 100644 index 44027f003..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7594354352831985, - "ema_span_0": 542.7741159369552, - "ema_span_1": 602.4812499261363, - "enabled": true, - "initial_eprice_ema_dist": -0.007776011232012096, - "initial_qty_pct": 0.005702446882948222, - "markup_range": 0.005049156016364269, - "min_markup": 0.007182498839164601, - "n_close_orders": 6, - "rentry_pprice_dist": 0.034107437490716805, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2714999547385133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/APTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/APTUSDT.json deleted file mode 100644 index 495062506..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.69477399614593, - "ema_span_0": 1433.4632473474794, - "ema_span_1": 620.7265149034098, - "enabled": true, - "initial_eprice_ema_dist": 0.002999785245586115, - "initial_qty_pct": 0.005481849096515688, - "markup_range": 0.0010998158449765268, - "min_markup": 0.0036006586206092186, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027066507512961233, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7090014923887336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ARBUSDT.json deleted file mode 100644 index 3209943af..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6377931024910679, - "ema_span_0": 790.3551732113342, - "ema_span_1": 928.0416080681598, - "enabled": true, - "initial_eprice_ema_dist": -0.004133945688039767, - "initial_qty_pct": 0.008048027690748702, - "markup_range": 0.009974866091135832, - "min_markup": 0.005678798071303473, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02380397376271462, - "rentry_pprice_dist_wallet_exposure_weighting": 2.805796385987601, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARKMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ARKMUSDT.json deleted file mode 100644 index 3d19a12a0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.573826907856526, - "ema_span_0": 625.2193451640411, - "ema_span_1": 647.7695806479344, - "enabled": true, - "initial_eprice_ema_dist": -0.0011800966163447765, - "initial_qty_pct": 0.007835057870810678, - "markup_range": 0.0014974920665734525, - "min_markup": 0.004294807546401474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026250617338084755, - "rentry_pprice_dist_wallet_exposure_weighting": 3.926149690487413, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2184278145332084, - "ema_span_0": 1147.806786611839, - "ema_span_1": 604.3229873292835, - "enabled": true, - "initial_eprice_ema_dist": -0.002885397739259701, - "initial_qty_pct": 0.008567943701264591, - "markup_range": 0.009818284973734609, - "min_markup": 0.005396789570177937, - "n_close_orders": 16, - "rentry_pprice_dist": 0.029991143408882672, - "rentry_pprice_dist_wallet_exposure_weighting": 4.277115810301703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ARKUSDT.json deleted file mode 100644 index efd639afe..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2791730013407125, - "ema_span_0": 1440, - "ema_span_1": 1151.845426045236, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012244128067282329, - "markup_range": 0.0, - "min_markup": 0.005328664460470563, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05999840353941138, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2599355820864121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.052180361108739, - "ema_span_0": 719.7656041119219, - "ema_span_1": 644.8425670640547, - "enabled": true, - "initial_eprice_ema_dist": -0.002104711309228333, - "initial_qty_pct": 0.011612793523550054, - "markup_range": 0.0043723822905415086, - "min_markup": 0.0029351019036752903, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03358304551048789, - "rentry_pprice_dist_wallet_exposure_weighting": 6.413553056597358, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARPAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ARPAUSDT.json deleted file mode 100644 index b7e66274f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679269390842515, - "ema_span_0": 1130.1225477813007, - "ema_span_1": 1062.4032711158673, - "enabled": true, - "initial_eprice_ema_dist": 0.0020869072124994653, - "initial_qty_pct": 0.012804570969302046, - "markup_range": 0.0024832454376030226, - "min_markup": 0.007769140200503243, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03639950610827401, - "rentry_pprice_dist_wallet_exposure_weighting": 1.128684984761031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ARUSDT.json deleted file mode 100644 index ca6b778e6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ASTRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ASTRUSDT.json deleted file mode 100644 index 536f0fffb..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2809358699466866, - "ema_span_0": 417.8821629780097, - "ema_span_1": 1037.9156124300334, - "enabled": true, - "initial_eprice_ema_dist": -0.004593860746237919, - "initial_qty_pct": 0.009680791815243695, - "markup_range": 0.005884570011563704, - "min_markup": 0.005160174776907213, - "n_close_orders": 8, - "rentry_pprice_dist": 0.035215507891618904, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0046929055913923975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ATAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ATAUSDT.json deleted file mode 100644 index 3255aabaf..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273446079623302, - "ema_span_0": 852.1646730368124, - "ema_span_1": 1318.3229920222034, - "enabled": true, - "initial_eprice_ema_dist": -0.008569250022031434, - "initial_qty_pct": 0.005466118351141463, - "markup_range": 0.009238405148841725, - "min_markup": 0.002815704576251768, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02320916746730816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5092168090027847, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ATOMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ATOMUSDT.json deleted file mode 100644 index 6e19c39f8..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.573826907856526, - "ema_span_0": 625.2193451640411, - "ema_span_1": 647.7695806479344, - "enabled": true, - "initial_eprice_ema_dist": -0.0011800966163447765, - "initial_qty_pct": 0.007835057870810678, - "markup_range": 0.0014974920665734525, - "min_markup": 0.004294807546401474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026250617338084755, - "rentry_pprice_dist_wallet_exposure_weighting": 3.926149690487413, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AUCTIONUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AUCTIONUSDT.json deleted file mode 100644 index 7dffd3dd4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AUCTIONUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.25120865294591, - "ema_span_0": 924.281745023731, - "ema_span_1": 1126.9205768818265, - "enabled": true, - "initial_eprice_ema_dist": -0.006626417961538352, - "initial_qty_pct": 0.005390451321060489, - "markup_range": 0.004936514169361442, - "min_markup": 0.0023326868861701855, - "n_close_orders": 10, - "rentry_pprice_dist": 0.047854240619392606, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1956099784121452, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.669922148402574, - "ema_span_0": 1367.8286381534385, - "ema_span_1": 1145.0307805470068, - "enabled": true, - "initial_eprice_ema_dist": -0.008861982336574585, - "initial_qty_pct": 0.01131751487807326, - "markup_range": 0.0028831732919884336, - "min_markup": 0.003097491221990866, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03530027903416328, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9791744768041245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AUDIOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AUDIOUSDT.json deleted file mode 100644 index 69f7c0d33..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9996724841694338, - "ema_span_0": 1084.514304704522, - "ema_span_1": 571.35296522545, - "enabled": true, - "initial_eprice_ema_dist": 0.0010319922302847217, - "initial_qty_pct": 0.005980956343839258, - "markup_range": 0.0007776721396590289, - "min_markup": 0.0046353666441713275, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033623239800445376, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9396747078877694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45872714536469883, - "ema_span_0": 1306.5081012283274, - "ema_span_1": 1202.2511867831736, - "enabled": true, - "initial_eprice_ema_dist": 0.0005384538726071715, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.0036582574552174113, - "min_markup": 0.00893359558538709, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04911966005847171, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650049340787937, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AVAXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AVAXUSDT.json deleted file mode 100644 index c4589f499..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0195748688318564, - "ema_span_0": 1032.9876182754965, - "ema_span_1": 1384.4199627826313, - "enabled": true, - "initial_eprice_ema_dist": 0.002964050067405958, - "initial_qty_pct": 0.012276323438665585, - "markup_range": 0.008365504361812269, - "min_markup": 0.006451876146961201, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04876530739561381, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3121077123682445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AXLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AXLUSDT.json deleted file mode 100644 index 649d8c43a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AXLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032841025699854, - "ema_span_0": 603.3684823287402, - "ema_span_1": 593.2914462355499, - "enabled": true, - "initial_eprice_ema_dist": -0.006686699042370069, - "initial_qty_pct": 0.019343563613571375, - "markup_range": 0.0035139190888152203, - "min_markup": 0.0041974976207321225, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024538943373011338, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6223178652929873, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/AXSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/AXSUSDT.json deleted file mode 100644 index babd600ac..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7624643073829781, - "ema_span_0": 748.7029047408132, - "ema_span_1": 839.652641585332, - "enabled": true, - "initial_eprice_ema_dist": -0.00264097191534256, - "initial_qty_pct": 0.01346725640152762, - "markup_range": 0.004990302340728536, - "min_markup": 0.004570608103091317, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03644069705015101, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9382084317795156, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BADGERUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BADGERUSDT.json deleted file mode 100644 index 279969e5e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BADGERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.676060959901111, - "ema_span_0": 1142.1265796149928, - "ema_span_1": 1371.4409147256022, - "enabled": true, - "initial_eprice_ema_dist": -0.002653295645807994, - "initial_qty_pct": 0.005312279960658424, - "markup_range": 0.002618427243223781, - "min_markup": 0.0050054003114357384, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04147565692951239, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8328916683991203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BAKEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BAKEUSDT.json deleted file mode 100644 index 0a8ccb24f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9631960327642634, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 736.3622162159897, - "enabled": true, - "initial_eprice_ema_dist": -0.0013538785473450297, - "initial_qty_pct": 0.00826126173825652, - "markup_range": 0.003287452714933792, - "min_markup": 0.0014003224056683763, - "n_close_orders": 13, - "rentry_pprice_dist": 0.042534671926110074, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4324883442698306, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6455784702568482, - "ema_span_0": 851.7332190454933, - "ema_span_1": 1007.1944060908237, - "enabled": true, - "initial_eprice_ema_dist": -0.0014664245607743799, - "initial_qty_pct": 0.010192731275324267, - "markup_range": 0.0014969845109154224, - "min_markup": 0.003641352438453142, - "n_close_orders": 8, - "rentry_pprice_dist": 0.037794796132685105, - "rentry_pprice_dist_wallet_exposure_weighting": 3.892283271540064, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BALUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BALUSDT.json deleted file mode 100644 index 315c14d2b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000000596553002, - "ema_span_0": 929.9812114760467, - "ema_span_1": 941.0347791612975, - "enabled": true, - "initial_eprice_ema_dist": -0.003991486046804449, - "initial_qty_pct": 0.0062838948398916605, - "markup_range": 0.0053377597436320345, - "min_markup": 0.004808631305477758, - "n_close_orders": 2, - "rentry_pprice_dist": 0.039485103117888054, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1364660075707736, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BANDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BANDUSDT.json deleted file mode 100644 index eac749af5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2681373639824941, - "ema_span_0": 439.3803841140008, - "ema_span_1": 502.9545019907748, - "enabled": true, - "initial_eprice_ema_dist": -0.002804672523568504, - "initial_qty_pct": 0.01587713021844308, - "markup_range": 0.006126061856373259, - "min_markup": 0.006078023836171747, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04700550234390974, - "rentry_pprice_dist_wallet_exposure_weighting": 0.42354756948830213, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.052180361108739, - "ema_span_0": 719.7656041119219, - "ema_span_1": 644.8425670640547, - "enabled": true, - "initial_eprice_ema_dist": -0.002104711309228333, - "initial_qty_pct": 0.011612793523550054, - "markup_range": 0.0043723822905415086, - "min_markup": 0.0029351019036752903, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03358304551048789, - "rentry_pprice_dist_wallet_exposure_weighting": 6.413553056597358, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BATUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BATUSDT.json deleted file mode 100644 index 938f225f4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9996724841694338, - "ema_span_0": 1084.514304704522, - "ema_span_1": 571.35296522545, - "enabled": true, - "initial_eprice_ema_dist": 0.0010319922302847217, - "initial_qty_pct": 0.005980956343839258, - "markup_range": 0.0007776721396590289, - "min_markup": 0.0046353666441713275, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033623239800445376, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9396747078877694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2639480518548225, - "ema_span_0": 903.125069785816, - "ema_span_1": 962.265128144106, - "enabled": true, - "initial_eprice_ema_dist": 0.0029821337732177707, - "initial_qty_pct": 0.006858392409496179, - "markup_range": 0.0030580237794616567, - "min_markup": 0.003273807502943524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.017228082945758956, - "rentry_pprice_dist_wallet_exposure_weighting": 5.528520907488279, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BCHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BCHUSDT.json deleted file mode 100644 index 9d3851a81..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3600498718473935, - "ema_span_0": 1235.9051580847981, - "ema_span_1": 856.7371728695309, - "enabled": true, - "initial_eprice_ema_dist": -0.0017094417754341914, - "initial_qty_pct": 0.010625905406642312, - "markup_range": 0.0018945453426481402, - "min_markup": 0.0024216331971961104, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0271413542352054, - "rentry_pprice_dist_wallet_exposure_weighting": 3.817802557822029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6455784702568482, - "ema_span_0": 851.7332190454933, - "ema_span_1": 1007.1944060908237, - "enabled": true, - "initial_eprice_ema_dist": -0.0014664245607743799, - "initial_qty_pct": 0.010192731275324267, - "markup_range": 0.0014969845109154224, - "min_markup": 0.003641352438453142, - "n_close_orders": 8, - "rentry_pprice_dist": 0.037794796132685105, - "rentry_pprice_dist_wallet_exposure_weighting": 3.892283271540064, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BEAMXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BEAMXUSDT.json deleted file mode 100644 index 6c73716a8..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BEAMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BELUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BELUSDT.json deleted file mode 100644 index 55c9a67a4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2284632352730624, - "ema_span_0": 556.2010616615385, - "ema_span_1": 1120.020181745354, - "enabled": true, - "initial_eprice_ema_dist": -0.007346733458364801, - "initial_qty_pct": 0.0051429371976374465, - "markup_range": 0.0001590923335555786, - "min_markup": 0.00403327902351465, - "n_close_orders": 3, - "rentry_pprice_dist": 0.036871671209259105, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1540649334781368, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45872714536469883, - "ema_span_0": 1306.5081012283274, - "ema_span_1": 1202.2511867831736, - "enabled": true, - "initial_eprice_ema_dist": 0.0005384538726071715, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.0036582574552174113, - "min_markup": 0.00893359558538709, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04911966005847171, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650049340787937, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BICOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BICOUSDT.json deleted file mode 100644 index 65d32a86b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BICOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8420529379722977, - "ema_span_0": 1011.1282987669742, - "ema_span_1": 883.9714244988174, - "enabled": true, - "initial_eprice_ema_dist": -0.005679962528550948, - "initial_qty_pct": 0.011980649261214999, - "markup_range": 0.0021734034518008523, - "min_markup": 0.0020451289829358905, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01841617082009683, - "rentry_pprice_dist_wallet_exposure_weighting": 2.280988068740216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 527.2218241095319, - "ema_span_1": 1374.6905320396602, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.001074259380204911, - "min_markup": 0.005847911995999129, - "n_close_orders": 14, - "rentry_pprice_dist": 0.011414862812205726, - "rentry_pprice_dist_wallet_exposure_weighting": 4.179182275898473, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BIGTIMEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BIGTIMEUSDT.json deleted file mode 100644 index aad31f0e0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BIGTIMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6921253886815695, - "ema_span_0": 428.88845472586047, - "ema_span_1": 1033.2911537732355, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998259863056997, - "initial_qty_pct": 0.007231577146814722, - "markup_range": 0.002385642534751642, - "min_markup": 0.005016345350053768, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02511992574003009, - "rentry_pprice_dist_wallet_exposure_weighting": 4.425112144475232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.121555953228244, - "ema_span_0": 1439.457992466098, - "ema_span_1": 1439.6523229556547, - "enabled": true, - "initial_eprice_ema_dist": -0.0003286366121919378, - "initial_qty_pct": 0.01926522821319415, - "markup_range": 0.0020372345703510114, - "min_markup": 0.006544138409826038, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04721831982661486, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9376346759541607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BLUEBIRDUSDT.json deleted file mode 100644 index dc8918b88..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0182332476351215, - "ema_span_0": 868.221520854621, - "ema_span_1": 1271.8697151759557, - "enabled": true, - "initial_eprice_ema_dist": -0.0034189626930344265, - "initial_qty_pct": 0.01060262538642813, - "markup_range": 0.0009433013701631998, - "min_markup": 0.0013267020611627317, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018400228150475796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0662113421117216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2639480518548225, - "ema_span_0": 903.125069785816, - "ema_span_1": 962.265128144106, - "enabled": true, - "initial_eprice_ema_dist": 0.0029821337732177707, - "initial_qty_pct": 0.006858392409496179, - "markup_range": 0.0030580237794616567, - "min_markup": 0.003273807502943524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.017228082945758956, - "rentry_pprice_dist_wallet_exposure_weighting": 5.528520907488279, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BLURUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BLURUSDT.json deleted file mode 100644 index 182120555..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2215641547177434, - "ema_span_0": 1087.9072038258594, - "ema_span_1": 1140.438225615017, - "enabled": true, - "initial_eprice_ema_dist": -0.0014029101835263183, - "initial_qty_pct": 0.005924463719350489, - "markup_range": 0.008540767292953524, - "min_markup": 0.003337288791547102, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02896761893160794, - "rentry_pprice_dist_wallet_exposure_weighting": 6.280742441164259, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8211421939725285, - "ema_span_0": 1303.1868593440668, - "ema_span_1": 1300.560221224229, - "enabled": true, - "initial_eprice_ema_dist": -0.003025944363882385, - "initial_qty_pct": 0.01052188161383535, - "markup_range": 0.00022019827043791502, - "min_markup": 0.005794018367592737, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02444537894625305, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2603764927526173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BLZUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BLZUSDT.json deleted file mode 100644 index 2d8dd4a62..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.08134519177421, - "ema_span_0": 1020.5761618620035, - "ema_span_1": 1058.5720342008337, - "enabled": true, - "initial_eprice_ema_dist": -0.006620400627402651, - "initial_qty_pct": 0.013289036143707592, - "markup_range": 0.0018016967116465093, - "min_markup": 0.002422351359748749, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03771110246081984, - "rentry_pprice_dist_wallet_exposure_weighting": 6.3800846058266005, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BNBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BNBUSDT.json deleted file mode 100644 index 470642aec..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BNTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BNTUSDT.json deleted file mode 100644 index 6711664b2..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9074088928394692, - "ema_span_0": 1225.1593351104916, - "ema_span_1": 1284.4445043294322, - "enabled": true, - "initial_eprice_ema_dist": -0.009943258655235904, - "initial_qty_pct": 0.007029446982434334, - "markup_range": 2.946347169311016e-05, - "min_markup": 0.002975626910710349, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025779942991905537, - "rentry_pprice_dist_wallet_exposure_weighting": 3.268387857434339, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BNXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BNXUSDT.json deleted file mode 100644 index 3ffd9268d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.364849119702204, - "ema_span_0": 865.7984570675294, - "ema_span_1": 725.7281024686835, - "enabled": true, - "initial_eprice_ema_dist": 0.0029413539231069727, - "initial_qty_pct": 0.008986222705890308, - "markup_range": 0.00813327997846001, - "min_markup": 0.007010564949875995, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037672124082526355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.1794409586499315, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BONDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BONDUSDT.json deleted file mode 100644 index 877824693..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BONDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.776827267252834, - "ema_span_0": 582.64089583745, - "ema_span_1": 572.9881294650091, - "enabled": true, - "initial_eprice_ema_dist": 0.0015792436525577163, - "initial_qty_pct": 0.019996086764343935, - "markup_range": 0.0037951647247050774, - "min_markup": 0.002437041463455835, - "n_close_orders": 7, - "rentry_pprice_dist": 0.036964553885101545, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9366436030918455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3162230554628027, - "ema_span_0": 1006.6449792943191, - "ema_span_1": 1317.1001098796871, - "enabled": true, - "initial_eprice_ema_dist": 0.0007867671897053359, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.0016714313566046455, - "min_markup": 0.0028228232914522455, - "n_close_orders": 11, - "rentry_pprice_dist": 0.037794796132685105, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BSVUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BSVUSDT.json deleted file mode 100644 index 6ba0abaaa..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032841025699854, - "ema_span_0": 603.3684823287402, - "ema_span_1": 593.2914462355499, - "enabled": true, - "initial_eprice_ema_dist": -0.006686699042370069, - "initial_qty_pct": 0.019343563613571375, - "markup_range": 0.0035139190888152203, - "min_markup": 0.0041974976207321225, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024538943373011338, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6223178652929873, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BTCDOMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BTCDOMUSDT.json deleted file mode 100644 index 1e30cc814..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206588914585735, - "ema_span_0": 1157.1068280298107, - "ema_span_1": 766.4229120044222, - "enabled": true, - "initial_eprice_ema_dist": -0.003372014009289939, - "initial_qty_pct": 0.0055136547261046545, - "markup_range": 0.0016286315760876556, - "min_markup": 0.001692642120768909, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01662249757307718, - "rentry_pprice_dist_wallet_exposure_weighting": 2.986489225762747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5076176852487743, - "ema_span_0": 870.6903870465236, - "ema_span_1": 640.0505371453597, - "enabled": true, - "initial_eprice_ema_dist": -0.004625045279078337, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.0013545152613237054, - "min_markup": 0.005295220636714294, - "n_close_orders": 13, - "rentry_pprice_dist": 0.020319585917755578, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9495540973434329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/BTCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/BTCUSDT.json deleted file mode 100644 index 11564a0a4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8076787436856205, - "ema_span_0": 1182.203486204544, - "ema_span_1": 1203.5570829086312, - "enabled": true, - "initial_eprice_ema_dist": -0.00016700942377517153, - "initial_qty_pct": 0.01352991960398559, - "markup_range": 0.0016984333503885197, - "min_markup": 0.003884676353394629, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02178089968016631, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7682195172151058, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.824010889354615, - "ema_span_0": 668.4791978282874, - "ema_span_1": 1100.6743726560933, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.00017041521132076496, - "min_markup": 0.0015067320644080204, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025352022876576147, - "rentry_pprice_dist_wallet_exposure_weighting": 4.485829797874352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/C98USDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/C98USDT.json deleted file mode 100644 index 1173a4a2b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.096635291091908, - "ema_span_0": 1330.039406339461, - "ema_span_1": 1238.3522796278537, - "enabled": true, - "initial_eprice_ema_dist": -0.004816681183131951, - "initial_qty_pct": 0.008181177347843736, - "markup_range": 0.008722281771169226, - "min_markup": 0.0028555643229245162, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03791001394129892, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2927756107330035, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CAKEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CAKEUSDT.json deleted file mode 100644 index 80416ec75..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CELOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CELOUSDT.json deleted file mode 100644 index 36423fdf2..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8437584945040348, - "ema_span_0": 1273.6349655577148, - "ema_span_1": 1181.8898550188335, - "enabled": true, - "initial_eprice_ema_dist": -0.009747003765253446, - "initial_qty_pct": 0.006962801615292772, - "markup_range": 0.01, - "min_markup": 0.00602261672775095, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030999759412613823, - "rentry_pprice_dist_wallet_exposure_weighting": 2.812715957773782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CELRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CELRUSDT.json deleted file mode 100644 index 3ad9ad68a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1136200865682403, - "ema_span_0": 1089.468611102197, - "ema_span_1": 1041.4402969672844, - "enabled": true, - "initial_eprice_ema_dist": 0.002775475012225147, - "initial_qty_pct": 0.012213318830830162, - "markup_range": 0.0019738848654710624, - "min_markup": 0.009953905980263996, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0324676367670747, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8102248465256605, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273446079623302, - "ema_span_0": 852.1646730368124, - "ema_span_1": 1318.3229920222034, - "enabled": true, - "initial_eprice_ema_dist": -0.008569250022031434, - "initial_qty_pct": 0.005466118351141463, - "markup_range": 0.009238405148841725, - "min_markup": 0.002815704576251768, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02320916746730816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5092168090027847, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CFXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CFXUSDT.json deleted file mode 100644 index 77922fbe5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.824010889354615, - "ema_span_0": 668.4791978282874, - "ema_span_1": 1100.6743726560933, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.00017041521132076496, - "min_markup": 0.0015067320644080204, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025352022876576147, - "rentry_pprice_dist_wallet_exposure_weighting": 4.485829797874352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CHRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CHRUSDT.json deleted file mode 100644 index 6c48d499f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38841074426302086, - "ema_span_0": 1028.8629431861682, - "ema_span_1": 961.845224250267, - "enabled": true, - "initial_eprice_ema_dist": -0.0048299079482371264, - "initial_qty_pct": 0.009257068100648793, - "markup_range": 0.008961446809167354, - "min_markup": 0.007223792253371161, - "n_close_orders": 8, - "rentry_pprice_dist": 0.036182971849651774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.716552219793397, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8437584945040348, - "ema_span_0": 1273.6349655577148, - "ema_span_1": 1181.8898550188335, - "enabled": true, - "initial_eprice_ema_dist": -0.009747003765253446, - "initial_qty_pct": 0.006962801615292772, - "markup_range": 0.01, - "min_markup": 0.00602261672775095, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030999759412613823, - "rentry_pprice_dist_wallet_exposure_weighting": 2.812715957773782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CHZUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CHZUSDT.json deleted file mode 100644 index ddfe41567..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38378579127656987, - "ema_span_0": 475.7505407090246, - "ema_span_1": 659.0737608504875, - "enabled": true, - "initial_eprice_ema_dist": 0.002746445084509182, - "initial_qty_pct": 0.019927629425264704, - "markup_range": 0.006178940525086855, - "min_markup": 0.005286517167723811, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03924673349997439, - "rentry_pprice_dist_wallet_exposure_weighting": 6.806478169513814, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CKBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CKBUSDT.json deleted file mode 100644 index 4fc944427..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.136980516315344, - "ema_span_0": 990.5411928116741, - "ema_span_1": 1107.7590226770542, - "enabled": true, - "initial_eprice_ema_dist": -0.00673973466369681, - "initial_qty_pct": 0.006748739638866885, - "markup_range": 0.001916299903031851, - "min_markup": 0.005651226545313381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019491943571174564, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2047101396037654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/COMBOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/COMBOUSDT.json deleted file mode 100644 index 8af841c16..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/COMPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/COMPUSDT.json deleted file mode 100644 index ef23d01b0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5159536084738751, - "ema_span_0": 1248.6062558084398, - "ema_span_1": 1044.0148033861185, - "enabled": true, - "initial_eprice_ema_dist": 0.000720250692351039, - "initial_qty_pct": 0.01670396209967201, - "markup_range": 0.004738122012700479, - "min_markup": 0.006488744252296942, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03196413882850113, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5777126246016717, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6713752782418424, - "ema_span_0": 1355.2100163765492, - "ema_span_1": 1199.092388636365, - "enabled": true, - "initial_eprice_ema_dist": -0.0016007357030213105, - "initial_qty_pct": 0.019641513229499256, - "markup_range": 0.007321683830100227, - "min_markup": 0.00571785456177138, - "n_close_orders": 2, - "rentry_pprice_dist": 0.047627271229400504, - "rentry_pprice_dist_wallet_exposure_weighting": 5.402091909658555, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/COTIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/COTIUSDT.json deleted file mode 100644 index d27b26945..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9157554456727748, - "ema_span_0": 659.6887162646505, - "ema_span_1": 1096.2599340520574, - "enabled": true, - "initial_eprice_ema_dist": -0.0011908967850339045, - "initial_qty_pct": 0.009812704431320407, - "markup_range": 0.006530350806020587, - "min_markup": 0.0073384545812298484, - "n_close_orders": 8, - "rentry_pprice_dist": 0.038150882950626366, - "rentry_pprice_dist_wallet_exposure_weighting": 4.720113063782538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CRVUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CRVUSDT.json deleted file mode 100644 index 3ff4258bf..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679269390842515, - "ema_span_0": 1130.1225477813007, - "ema_span_1": 1062.4032711158673, - "enabled": true, - "initial_eprice_ema_dist": 0.0020869072124994653, - "initial_qty_pct": 0.012804570969302046, - "markup_range": 0.0024832454376030226, - "min_markup": 0.007769140200503243, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03639950610827401, - "rentry_pprice_dist_wallet_exposure_weighting": 1.128684984761031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CTKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CTKUSDT.json deleted file mode 100644 index be5c8fde6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1000253088461639, - "ema_span_0": 1097.8744732697232, - "ema_span_1": 406.91457583186894, - "enabled": true, - "initial_eprice_ema_dist": -0.0027409371987949004, - "initial_qty_pct": 0.018805446219805615, - "markup_range": 0.002479346622921817, - "min_markup": 0.006656628235282698, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02831082617853845, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7368907040172634, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9318224769096846, - "ema_span_0": 1127.1394896912764, - "ema_span_1": 771.0503661829033, - "enabled": true, - "initial_eprice_ema_dist": -0.0064136943095479525, - "initial_qty_pct": 0.01697083145435416, - "markup_range": 0.0005781134225258528, - "min_markup": 0.0030729391401989326, - "n_close_orders": 7, - "rentry_pprice_dist": 0.026897960172828837, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4258726562539525, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CTSIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CTSIUSDT.json deleted file mode 100644 index f596d0d94..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1758804642072591, - "ema_span_0": 510.35258952046496, - "ema_span_1": 582.751362191825, - "enabled": true, - "initial_eprice_ema_dist": 0.0013542055701862069, - "initial_qty_pct": 0.012656949938989059, - "markup_range": 0.0023649770431966952, - "min_markup": 0.0031515091310822243, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02650613699963896, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6932212832986564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CVXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CVXUSDT.json deleted file mode 100644 index de46763a9..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0182332476351215, - "ema_span_0": 868.221520854621, - "ema_span_1": 1271.8697151759557, - "enabled": true, - "initial_eprice_ema_dist": -0.0034189626930344265, - "initial_qty_pct": 0.01060262538642813, - "markup_range": 0.0009433013701631998, - "min_markup": 0.0013267020611627317, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018400228150475796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0662113421117216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/CYBERUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/CYBERUSDT.json deleted file mode 100644 index c1ca2ad48..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7896823341342867, - "ema_span_0": 1114.6014374950553, - "ema_span_1": 938.9888017804359, - "enabled": true, - "initial_eprice_ema_dist": 9.44200061109429e-05, - "initial_qty_pct": 0.007833345378067978, - "markup_range": 0.002022904394170566, - "min_markup": 0.0019991308170766637, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019655914157653234, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8352074778258256, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DARUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DARUSDT.json deleted file mode 100644 index ec72a3506..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7594354352831985, - "ema_span_0": 542.7741159369552, - "ema_span_1": 602.4812499261363, - "enabled": true, - "initial_eprice_ema_dist": -0.007776011232012096, - "initial_qty_pct": 0.005702446882948222, - "markup_range": 0.005049156016364269, - "min_markup": 0.007182498839164601, - "n_close_orders": 6, - "rentry_pprice_dist": 0.034107437490716805, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2714999547385133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DASHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DASHUSDT.json deleted file mode 100644 index 23cd33568..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7127996619834288, - "ema_span_0": 624.1921898696093, - "ema_span_1": 662.6420983003411, - "enabled": true, - "initial_eprice_ema_dist": -0.007004287940934794, - "initial_qty_pct": 0.007771324959590781, - "markup_range": 0.004414780245155629, - "min_markup": 0.0025427254021188604, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03695639965767077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.302084187858983, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17911301368367666, - "ema_span_0": 472.36359939979036, - "ema_span_1": 440.493227032012, - "enabled": true, - "initial_eprice_ema_dist": 0.0028508066991732813, - "initial_qty_pct": 0.005547251606617143, - "markup_range": 0.0043578328491762535, - "min_markup": 0.0035540580662173343, - "n_close_orders": 7, - "rentry_pprice_dist": 0.025847324151267174, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DEFIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DEFIUSDT.json deleted file mode 100644 index 97b87f17c..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.795714766434085, - "ema_span_0": 544.4747590809842, - "ema_span_1": 683.60900747903, - "enabled": true, - "initial_eprice_ema_dist": -0.0011555074787932046, - "initial_qty_pct": 0.017323832967801853, - "markup_range": 0.0004675203958710655, - "min_markup": 0.00581996201543849, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03446706363068052, - "rentry_pprice_dist_wallet_exposure_weighting": 2.190612441759691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DENTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DENTUSDT.json deleted file mode 100644 index 71decc44c..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2675254505635634, - "ema_span_0": 937.234224651408, - "ema_span_1": 984.1054024346106, - "enabled": true, - "initial_eprice_ema_dist": -0.002006977787441694, - "initial_qty_pct": 0.010522513059221323, - "markup_range": 0.003248379214762474, - "min_markup": 0.0042195941629218255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030846633862084784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.916579972313764, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DGBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DGBUSDT.json deleted file mode 100644 index 1d96d118a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.56219586740148, - "ema_span_0": 1377.4444504763974, - "ema_span_1": 1146.986429279253, - "enabled": true, - "initial_eprice_ema_dist": -0.005195180931239749, - "initial_qty_pct": 0.006395157712924707, - "markup_range": 0.0013034965471744203, - "min_markup": 0.0031647242712170183, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030067167750076732, - "rentry_pprice_dist_wallet_exposure_weighting": 1.803733038911203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DODOXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DODOXUSDT.json deleted file mode 100644 index 13f3cf4bb..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8211421939725285, - "ema_span_0": 1303.1868593440668, - "ema_span_1": 1300.560221224229, - "enabled": true, - "initial_eprice_ema_dist": -0.003025944363882385, - "initial_qty_pct": 0.01052188161383535, - "markup_range": 0.00022019827043791502, - "min_markup": 0.005794018367592737, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02444537894625305, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2603764927526173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DOGEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DOGEUSDT.json deleted file mode 100644 index e51b69852..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18020294944274384, - "ema_span_0": 534.6116953850265, - "ema_span_1": 525.8301793868686, - "enabled": true, - "initial_eprice_ema_dist": -0.005663220098220674, - "initial_qty_pct": 0.013948777121950211, - "markup_range": 0.0033845180014539285, - "min_markup": 0.003731929953161556, - "n_close_orders": 2, - "rentry_pprice_dist": 0.01698573632894032, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424060357992101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17911301368367666, - "ema_span_0": 472.36359939979036, - "ema_span_1": 440.493227032012, - "enabled": true, - "initial_eprice_ema_dist": 0.0028508066991732813, - "initial_qty_pct": 0.005547251606617143, - "markup_range": 0.0043578328491762535, - "min_markup": 0.0035540580662173343, - "n_close_orders": 7, - "rentry_pprice_dist": 0.025847324151267174, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DOTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DOTUSDT.json deleted file mode 100644 index 3fa11e84d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6972453476326447, - "ema_span_0": 505.7700624743281, - "ema_span_1": 621.2315998034261, - "enabled": true, - "initial_eprice_ema_dist": -0.006259665525628234, - "initial_qty_pct": 0.010919123868196892, - "markup_range": 0.004423864206110897, - "min_markup": 0.003488662986599392, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02763761801200893, - "rentry_pprice_dist_wallet_exposure_weighting": 2.633209752802338, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DUSKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DUSKUSDT.json deleted file mode 100644 index 6777fe9ca..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DYDXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DYDXUSDT.json deleted file mode 100644 index ac0a780be..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/DYMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/DYMUSDT.json deleted file mode 100644 index 68fa935ef..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/DYMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6850516916385354, - "ema_span_0": 426.12185415017063, - "ema_span_1": 496.26050416975323, - "enabled": true, - "initial_eprice_ema_dist": -0.001927759450286079, - "initial_qty_pct": 0.00522237375491126, - "markup_range": 0.0002740301299901382, - "min_markup": 0.0018052120025589962, - "n_close_orders": 9, - "rentry_pprice_dist": 0.010638872767800392, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8083721509060042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/EDUUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/EDUUSDT.json deleted file mode 100644 index bf4369caa..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/EGLDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/EGLDUSDT.json deleted file mode 100644 index 883ff85d2..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.099284773460096, - "ema_span_0": 870.442736826673, - "ema_span_1": 1052.3444692961668, - "enabled": true, - "initial_eprice_ema_dist": -0.0033560496209624783, - "initial_qty_pct": 0.015574915837287696, - "markup_range": 0.004696659034722341, - "min_markup": 0.004146863923528105, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027485933774975865, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3366825329785095, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1038691184841887, - "ema_span_0": 606.8634750543622, - "ema_span_1": 674.8412859167347, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01189918610470215, - "markup_range": 0.0008148790362667809, - "min_markup": 0.0052329065617888, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048238327909112214, - "rentry_pprice_dist_wallet_exposure_weighting": 0.021182741619829342, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ENJUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ENJUSDT.json deleted file mode 100644 index 1c447d2c4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.898083850242024, - "ema_span_0": 1426.285590876822, - "ema_span_1": 1424.335791465121, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01968097261972087, - "markup_range": 0.0035071222518446776, - "min_markup": 0.005533845048715687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03385601367703975, - "rentry_pprice_dist_wallet_exposure_weighting": 3.73109080433956, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.9506399112412, - "ema_span_1": 481.34258197826495, - "enabled": true, - "initial_eprice_ema_dist": -0.007907509831981581, - "initial_qty_pct": 0.006931635358392313, - "markup_range": 0.004329404978522449, - "min_markup": 0.004579724919735104, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051569990412496, - "rentry_pprice_dist_wallet_exposure_weighting": 3.78351730916741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ENSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ENSUSDT.json deleted file mode 100644 index d9e4dd6ba..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7127996619834288, - "ema_span_0": 624.1921898696093, - "ema_span_1": 662.6420983003411, - "enabled": true, - "initial_eprice_ema_dist": -0.007004287940934794, - "initial_qty_pct": 0.007771324959590781, - "markup_range": 0.004414780245155629, - "min_markup": 0.0025427254021188604, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03695639965767077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.302084187858983, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8437584945040348, - "ema_span_0": 1273.6349655577148, - "ema_span_1": 1181.8898550188335, - "enabled": true, - "initial_eprice_ema_dist": -0.009747003765253446, - "initial_qty_pct": 0.006962801615292772, - "markup_range": 0.01, - "min_markup": 0.00602261672775095, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030999759412613823, - "rentry_pprice_dist_wallet_exposure_weighting": 2.812715957773782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/EOSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/EOSUSDT.json deleted file mode 100644 index 468b05472..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.34999958995762215, - "ema_span_0": 741.7973323952765, - "ema_span_1": 717.9947050654903, - "enabled": true, - "initial_eprice_ema_dist": -0.0002184665985607831, - "initial_qty_pct": 0.010260201819833297, - "markup_range": 0.0024056989096220343, - "min_markup": 0.004381986808576549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.027425251874307444, - "rentry_pprice_dist_wallet_exposure_weighting": 5.850751951947829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2739661777308737, - "ema_span_0": 1311.9461421240344, - "ema_span_1": 1140.98494408494, - "enabled": true, - "initial_eprice_ema_dist": -0.0018591669706837296, - "initial_qty_pct": 0.007037592861027184, - "markup_range": 0.0035445068175967934, - "min_markup": 0.002670310361944757, - "n_close_orders": 6, - "rentry_pprice_dist": 0.020499237500803784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7706766468478556, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ETCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ETCUSDT.json deleted file mode 100644 index d2e659a80..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0182332476351215, - "ema_span_0": 868.221520854621, - "ema_span_1": 1271.8697151759557, - "enabled": true, - "initial_eprice_ema_dist": -0.0034189626930344265, - "initial_qty_pct": 0.01060262538642813, - "markup_range": 0.0009433013701631998, - "min_markup": 0.0013267020611627317, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018400228150475796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0662113421117216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.519767103420006, - "ema_span_0": 616.2065582426625, - "ema_span_1": 613.1954752957007, - "enabled": true, - "initial_eprice_ema_dist": -0.0022971929388209546, - "initial_qty_pct": 0.011624545525287584, - "markup_range": 0.0010643984572206266, - "min_markup": 0.004608332790733492, - "n_close_orders": 9, - "rentry_pprice_dist": 0.034477266146532175, - "rentry_pprice_dist_wallet_exposure_weighting": 2.758767304733158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ETHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ETHUSDT.json deleted file mode 100644 index c29716431..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.415609287642105, - "ema_span_0": 812.4823958492581, - "ema_span_1": 1115.9189589462812, - "enabled": true, - "initial_eprice_ema_dist": 0.002285505203098785, - "initial_qty_pct": 0.008978677639439336, - "markup_range": 0.002974792379622589, - "min_markup": 0.002057341455660884, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015557291753133898, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4324883442698306, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2708179213499688, - "ema_span_0": 1291.6833189674323, - "ema_span_1": 1292.4798980035982, - "enabled": true, - "initial_eprice_ema_dist": 0.0029552723449509763, - "initial_qty_pct": 0.007741203804916195, - "markup_range": 0.002690725044442569, - "min_markup": 0.003192852120277235, - "n_close_orders": 4, - "rentry_pprice_dist": 0.021202654391576575, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1877921181818185, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ETHWUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ETHWUSDT.json deleted file mode 100644 index 291064d21..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ETHWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FETUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FETUSDT.json deleted file mode 100644 index 28f179c64..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5249902301868143, - "ema_span_0": 958.5070799549975, - "ema_span_1": 743.5333870615893, - "enabled": true, - "initial_eprice_ema_dist": -0.006281911393073577, - "initial_qty_pct": 0.011169022828019435, - "markup_range": 0.005133698576591956, - "min_markup": 0.005317820714653464, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03852695242597729, - "rentry_pprice_dist_wallet_exposure_weighting": 2.980742847113021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FILUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FILUSDT.json deleted file mode 100644 index df70076ae..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5736012243397192, - "ema_span_0": 936.4509605375098, - "ema_span_1": 515.46339509369, - "enabled": true, - "initial_eprice_ema_dist": -0.005766953639830126, - "initial_qty_pct": 0.011651074822625207, - "markup_range": 0.002499848221779468, - "min_markup": 0.0039851633154411445, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01814538796714788, - "rentry_pprice_dist_wallet_exposure_weighting": 6.122788736297527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3162230554628027, - "ema_span_0": 1432.826356668545, - "ema_span_1": 1238.4057039147253, - "enabled": true, - "initial_eprice_ema_dist": 0.0026755133801165225, - "initial_qty_pct": 0.014658253612383836, - "markup_range": 0.0010885238054421421, - "min_markup": 0.004495882108561903, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04793287551338852, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1078975919350875, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FLMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FLMUSDT.json deleted file mode 100644 index a87a427e8..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.942676089272254, - "ema_span_0": 1221.1673012685583, - "ema_span_1": 1106.6075785388434, - "enabled": true, - "initial_eprice_ema_dist": -0.0017605548748617988, - "initial_qty_pct": 0.005496329078201383, - "markup_range": 0.007959869824874228, - "min_markup": 0.0020854311731210193, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03839972302764517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7327213772260364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FLOWUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FLOWUSDT.json deleted file mode 100644 index 3b7300954..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6464870127422149, - "ema_span_0": 714.4026340528767, - "ema_span_1": 839.3284647945715, - "enabled": true, - "initial_eprice_ema_dist": 0.0008081376265866192, - "initial_qty_pct": 0.007454488419509318, - "markup_range": 0.0011375019059323703, - "min_markup": 0.009199589733057895, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034694826656131404, - "rentry_pprice_dist_wallet_exposure_weighting": 4.084474836410344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FOOTBALLUSDT.json deleted file mode 100644 index 7404bca6a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.34999958995762215, - "ema_span_0": 741.7973323952765, - "ema_span_1": 717.9947050654903, - "enabled": true, - "initial_eprice_ema_dist": -0.0002184665985607831, - "initial_qty_pct": 0.010260201819833297, - "markup_range": 0.0024056989096220343, - "min_markup": 0.004381986808576549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.027425251874307444, - "rentry_pprice_dist_wallet_exposure_weighting": 5.850751951947829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FRONTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FRONTUSDT.json deleted file mode 100644 index 269d72500..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FRONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FTMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FTMUSDT.json deleted file mode 100644 index 343f1b2fc..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.126630552136007, - "ema_span_0": 701.9618877279123, - "ema_span_1": 838.5478144716134, - "enabled": true, - "initial_eprice_ema_dist": 0.002265006252210066, - "initial_qty_pct": 0.006860001911838622, - "markup_range": 0.006033133341522965, - "min_markup": 0.009834404026120324, - "n_close_orders": 6, - "rentry_pprice_dist": 0.028661586790478182, - "rentry_pprice_dist_wallet_exposure_weighting": 5.255291272853817, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/FXSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/FXSUSDT.json deleted file mode 100644 index bb1f362d3..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GALAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GALAUSDT.json deleted file mode 100644 index 8ee937cd9..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3918186203491656, - "ema_span_0": 847.1895495259638, - "ema_span_1": 814.2418106338979, - "enabled": true, - "initial_eprice_ema_dist": -0.002830128031650846, - "initial_qty_pct": 0.009636415626736818, - "markup_range": 0.002922313469617343, - "min_markup": 0.002214787620495939, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03289293554402205, - "rentry_pprice_dist_wallet_exposure_weighting": 1.986869395713439, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GALUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GALUSDT.json deleted file mode 100644 index 5af883f8d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GASUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GASUSDT.json deleted file mode 100644 index ff3f46c1d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GLMRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GLMRUSDT.json deleted file mode 100644 index 406883b27..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GLMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GLMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GLMUSDT.json deleted file mode 100644 index de440e6d5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10351553171972352, - "ema_span_0": 1400.8590153309617, - "ema_span_1": 1416.0470032162264, - "enabled": true, - "initial_eprice_ema_dist": 0.002999916067495777, - "initial_qty_pct": 0.02, - "markup_range": 0.0006525153882115823, - "min_markup": 0.00324210743304714, - "n_close_orders": 6, - "rentry_pprice_dist": 0.048368914414632806, - "rentry_pprice_dist_wallet_exposure_weighting": 6.848375786750348, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GMTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GMTUSDT.json deleted file mode 100644 index ab45b0c74..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.69477399614593, - "ema_span_0": 1433.4632473474794, - "ema_span_1": 620.7265149034098, - "enabled": true, - "initial_eprice_ema_dist": 0.002999785245586115, - "initial_qty_pct": 0.005481849096515688, - "markup_range": 0.0010998158449765268, - "min_markup": 0.0036006586206092186, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027066507512961233, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7090014923887336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GMXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GMXUSDT.json deleted file mode 100644 index 3ed221051..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GRTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GRTUSDT.json deleted file mode 100644 index 43452901a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.776827267252834, - "ema_span_0": 582.64089583745, - "ema_span_1": 572.9881294650091, - "enabled": true, - "initial_eprice_ema_dist": 0.0015792436525577163, - "initial_qty_pct": 0.019996086764343935, - "markup_range": 0.0037951647247050774, - "min_markup": 0.002437041463455835, - "n_close_orders": 7, - "rentry_pprice_dist": 0.036964553885101545, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9366436030918455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/GTCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/GTCUSDT.json deleted file mode 100644 index 61b7e13a2..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/HBARUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/HBARUSDT.json deleted file mode 100644 index fe9798fde..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6377931024910679, - "ema_span_0": 790.3551732113342, - "ema_span_1": 928.0416080681598, - "enabled": true, - "initial_eprice_ema_dist": -0.004133945688039767, - "initial_qty_pct": 0.008048027690748702, - "markup_range": 0.009974866091135832, - "min_markup": 0.005678798071303473, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02380397376271462, - "rentry_pprice_dist_wallet_exposure_weighting": 2.805796385987601, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8211421939725285, - "ema_span_0": 1303.1868593440668, - "ema_span_1": 1300.560221224229, - "enabled": true, - "initial_eprice_ema_dist": -0.003025944363882385, - "initial_qty_pct": 0.01052188161383535, - "markup_range": 0.00022019827043791502, - "min_markup": 0.005794018367592737, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02444537894625305, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2603764927526173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/HFTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/HFTUSDT.json deleted file mode 100644 index cb0d5eef5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/HIFIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/HIFIUSDT.json deleted file mode 100644 index d745566f9..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/HIFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/HIGHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/HIGHUSDT.json deleted file mode 100644 index fab78da9e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/HOOKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/HOOKUSDT.json deleted file mode 100644 index a40b8db27..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7624643073829781, - "ema_span_0": 748.7029047408132, - "ema_span_1": 839.652641585332, - "enabled": true, - "initial_eprice_ema_dist": -0.00264097191534256, - "initial_qty_pct": 0.01346725640152762, - "markup_range": 0.004990302340728536, - "min_markup": 0.004570608103091317, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03644069705015101, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9382084317795156, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5749969457700788, - "ema_span_0": 569.413304156137, - "ema_span_1": 490.5430557314239, - "enabled": true, - "initial_eprice_ema_dist": -0.0086863081186085, - "initial_qty_pct": 0.0087043398163937, - "markup_range": 0.005588308732260884, - "min_markup": 0.005238778285633801, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243385509821733, - "rentry_pprice_dist_wallet_exposure_weighting": 6.451868010973641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/HOTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/HOTUSDT.json deleted file mode 100644 index 07a1067a1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6786120668665996, - "ema_span_0": 1399.2835408999533, - "ema_span_1": 1397.6641597985213, - "enabled": true, - "initial_eprice_ema_dist": -0.0075342157288197965, - "initial_qty_pct": 0.009688959876085059, - "markup_range": 0.004009431120472138, - "min_markup": 0.005915749411729166, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026761189682278544, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5313712500590264, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6078087195928683, - "ema_span_0": 882.3592202038312, - "ema_span_1": 1408.91815843651, - "enabled": true, - "initial_eprice_ema_dist": 0.0028746071453775836, - "initial_qty_pct": 0.02, - "markup_range": 0.0031255383459655446, - "min_markup": 0.005382035068085265, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03895265137790888, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9476924290466413, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ICPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ICPUSDT.json deleted file mode 100644 index 2defb53e1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3312710099916436, - "ema_span_0": 1192.268195300751, - "ema_span_1": 1196.406002830336, - "enabled": true, - "initial_eprice_ema_dist": -0.004264726213907415, - "initial_qty_pct": 0.006495646128856158, - "markup_range": 0.003330104084938854, - "min_markup": 0.0010791213672847698, - "n_close_orders": 14, - "rentry_pprice_dist": 0.027583705397565734, - "rentry_pprice_dist_wallet_exposure_weighting": 0.024510843456297945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ICXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ICXUSDT.json deleted file mode 100644 index 09134c605..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8144277288451705, - "ema_span_0": 698.9762871275476, - "ema_span_1": 733.889381929932, - "enabled": true, - "initial_eprice_ema_dist": -0.0076336139305870415, - "initial_qty_pct": 0.00598816094458001, - "markup_range": 0.005175338074176351, - "min_markup": 0.004392711481486734, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02939008493484651, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4458480743746707, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6464870127422149, - "ema_span_0": 714.4026340528767, - "ema_span_1": 839.3284647945715, - "enabled": true, - "initial_eprice_ema_dist": 0.0008081376265866192, - "initial_qty_pct": 0.007454488419509318, - "markup_range": 0.0011375019059323703, - "min_markup": 0.009199589733057895, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034694826656131404, - "rentry_pprice_dist_wallet_exposure_weighting": 4.084474836410344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/IDEXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/IDEXUSDT.json deleted file mode 100644 index 73333f568..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2943334786705402, - "ema_span_0": 557.3663556398109, - "ema_span_1": 605.3117106857495, - "enabled": true, - "initial_eprice_ema_dist": -0.008311789907742282, - "initial_qty_pct": 0.019445890388826083, - "markup_range": 0.009999394446329891, - "min_markup": 0.00281675740661168, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0374266725089705, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0756100658382015, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/IDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/IDUSDT.json deleted file mode 100644 index 6dcff1c00..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21802688270759651, - "ema_span_0": 1248.0959322741535, - "ema_span_1": 1430.0841680407277, - "enabled": true, - "initial_eprice_ema_dist": 0.002716516856667494, - "initial_qty_pct": 0.019998020321061447, - "markup_range": 0.006120150586732654, - "min_markup": 0.006415359529401238, - "n_close_orders": 14, - "rentry_pprice_dist": 0.039072266328704204, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7669715349237025, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ILVUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ILVUSDT.json deleted file mode 100644 index 25ce4a1e6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ILVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4881219917580285, - "ema_span_0": 400, - "ema_span_1": 822.8349163889209, - "enabled": true, - "initial_eprice_ema_dist": -0.0038046880378889373, - "initial_qty_pct": 0.018903270378062487, - "markup_range": 0.00573840039361005, - "min_markup": 0.006381616359542263, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029126335164672546, - "rentry_pprice_dist_wallet_exposure_weighting": 2.424981371694292, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7462685377597977, - "ema_span_0": 511.8560462090011, - "ema_span_1": 568.477435153946, - "enabled": true, - "initial_eprice_ema_dist": -0.006383865417420748, - "initial_qty_pct": 0.011078545593023655, - "markup_range": 0.004668351197589904, - "min_markup": 0.004192178780478336, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026001922012736885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23931909568469828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/IMXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/IMXUSDT.json deleted file mode 100644 index a7fb610e6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679269390842515, - "ema_span_0": 1130.1225477813007, - "ema_span_1": 1062.4032711158673, - "enabled": true, - "initial_eprice_ema_dist": 0.0020869072124994653, - "initial_qty_pct": 0.012804570969302046, - "markup_range": 0.0024832454376030226, - "min_markup": 0.007769140200503243, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03639950610827401, - "rentry_pprice_dist_wallet_exposure_weighting": 1.128684984761031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/INJUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/INJUSDT.json deleted file mode 100644 index cf97b5dfd..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6019934952984558, - "ema_span_0": 678.9097998235497, - "ema_span_1": 463.1156853848917, - "enabled": true, - "initial_eprice_ema_dist": 0.0005177663471187619, - "initial_qty_pct": 0.009311615707788988, - "markup_range": 0.004335328811402389, - "min_markup": 0.007890441163626, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02926411082808768, - "rentry_pprice_dist_wallet_exposure_weighting": 4.023729122646496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.9506399112412, - "ema_span_1": 481.34258197826495, - "enabled": true, - "initial_eprice_ema_dist": -0.007907509831981581, - "initial_qty_pct": 0.006931635358392313, - "markup_range": 0.004329404978522449, - "min_markup": 0.004579724919735104, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051569990412496, - "rentry_pprice_dist_wallet_exposure_weighting": 3.78351730916741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/IOSTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/IOSTUSDT.json deleted file mode 100644 index 7d05c6d18..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2641897540963043, - "ema_span_0": 864.6786000387508, - "ema_span_1": 902.0154972656932, - "enabled": true, - "initial_eprice_ema_dist": 0.001992848939767834, - "initial_qty_pct": 0.02, - "markup_range": 0.0016797484433887344, - "min_markup": 0.006614224918287394, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03727336844316724, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2439113539076088, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/IOTAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/IOTAUSDT.json deleted file mode 100644 index 62f9f79e6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1361865196523429, - "ema_span_0": 1333.4958726729335, - "ema_span_1": 1126.1129149010173, - "enabled": true, - "initial_eprice_ema_dist": -0.004619094663308742, - "initial_qty_pct": 0.007926153354800156, - "markup_range": 0.002741544490172375, - "min_markup": 0.001092880784452153, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03736049608158455, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7183316113401004, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.861289071126022, - "ema_span_0": 570.7424324540953, - "ema_span_1": 514.244786685066, - "enabled": true, - "initial_eprice_ema_dist": 0.0027352875636505046, - "initial_qty_pct": 0.011236281116613855, - "markup_range": 0.0016714313566046455, - "min_markup": 0.0033659905626506796, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032471982235901774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.878714040563697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/IOTXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/IOTXUSDT.json deleted file mode 100644 index dd2608087..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/JASMYUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/JASMYUSDT.json deleted file mode 100644 index 07e3f3eb5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0195748688318564, - "ema_span_0": 1032.9876182754965, - "ema_span_1": 1384.4199627826313, - "enabled": true, - "initial_eprice_ema_dist": 0.002964050067405958, - "initial_qty_pct": 0.012276323438665585, - "markup_range": 0.008365504361812269, - "min_markup": 0.006451876146961201, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04876530739561381, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3121077123682445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/JOEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/JOEUSDT.json deleted file mode 100644 index e0fe51c11..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5590482888791055, - "ema_span_0": 538.1218079970611, - "ema_span_1": 1094.3248929582285, - "enabled": true, - "initial_eprice_ema_dist": 0.00013780156130994856, - "initial_qty_pct": 0.009301461556690956, - "markup_range": 0.00012061326048546869, - "min_markup": 0.0028697069440414657, - "n_close_orders": 12, - "rentry_pprice_dist": 0.021668125415918248, - "rentry_pprice_dist_wallet_exposure_weighting": 2.261304953987642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/JTOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/JTOUSDT.json deleted file mode 100644 index 619290e23..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/JTOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.268990724858785, - "ema_span_0": 468.08288387411267, - "ema_span_1": 579.8173687921092, - "enabled": true, - "initial_eprice_ema_dist": 0.0028414420430151756, - "initial_qty_pct": 0.01179904416141956, - "markup_range": 0.002798860765045448, - "min_markup": 0.0028004118006462217, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023963209191829024, - "rentry_pprice_dist_wallet_exposure_weighting": 5.582733607686806, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/JUPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/JUPUSDT.json deleted file mode 100644 index 0b25d8f9b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/JUPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/KASUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/KASUSDT.json deleted file mode 100644 index d0a948ef1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/KASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/KAVAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/KAVAUSDT.json deleted file mode 100644 index ea57324f6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5838201288467455, - "ema_span_0": 807.8006372971789, - "ema_span_1": 1028.674614155757, - "enabled": true, - "initial_eprice_ema_dist": -0.006400534159964601, - "initial_qty_pct": 0.005267803960362067, - "markup_range": 0.003890273991084484, - "min_markup": 0.003814548548367528, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04225655438141939, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7016804268157846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.121555953228244, - "ema_span_0": 1439.457992466098, - "ema_span_1": 1439.6523229556547, - "enabled": true, - "initial_eprice_ema_dist": -0.0003286366121919378, - "initial_qty_pct": 0.01926522821319415, - "markup_range": 0.0020372345703510114, - "min_markup": 0.006544138409826038, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04721831982661486, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9376346759541607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/KEYUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/KEYUSDT.json deleted file mode 100644 index 880c4fb84..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.247885911615898, - "ema_span_0": 701.0732650974925, - "ema_span_1": 807.528616151842, - "enabled": true, - "initial_eprice_ema_dist": -0.00593504535989968, - "initial_qty_pct": 0.008871061261948114, - "markup_range": 0.003804641519225573, - "min_markup": 0.005656748541260267, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0305329129680727, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6173753962108104, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/KLAYUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/KLAYUSDT.json deleted file mode 100644 index 1827ad32f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45872714536469883, - "ema_span_0": 1306.5081012283274, - "ema_span_1": 1202.2511867831736, - "enabled": true, - "initial_eprice_ema_dist": 0.0005384538726071715, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.0036582574552174113, - "min_markup": 0.00893359558538709, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04911966005847171, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650049340787937, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/KNCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/KNCUSDT.json deleted file mode 100644 index cfec312e4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.676060959901111, - "ema_span_0": 1142.1265796149928, - "ema_span_1": 1371.4409147256022, - "enabled": true, - "initial_eprice_ema_dist": -0.002653295645807994, - "initial_qty_pct": 0.005312279960658424, - "markup_range": 0.002618427243223781, - "min_markup": 0.0050054003114357384, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04147565692951239, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8328916683991203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.405908530841942, - "ema_span_0": 1431.4360958300663, - "ema_span_1": 1319.4396428280788, - "enabled": true, - "initial_eprice_ema_dist": 0.002568721040275455, - "initial_qty_pct": 0.01996393944497684, - "markup_range": 0.002403650945868932, - "min_markup": 0.00477941122680171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.045423197968622604, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18098567283240782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/KSMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/KSMUSDT.json deleted file mode 100644 index 920d1fd05..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8995817502423, - "ema_span_0": 1237.8880961773652, - "ema_span_1": 812.1219392700096, - "enabled": true, - "initial_eprice_ema_dist": -0.0022851216640175347, - "initial_qty_pct": 0.018649171518923535, - "markup_range": 0.005405965672746347, - "min_markup": 0.0010000034600744193, - "n_close_orders": 7, - "rentry_pprice_dist": 0.027704339401110323, - "rentry_pprice_dist_wallet_exposure_weighting": 4.300026757434236, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5076176852487743, - "ema_span_0": 870.6903870465236, - "ema_span_1": 640.0505371453597, - "enabled": true, - "initial_eprice_ema_dist": -0.004625045279078337, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.0013545152613237054, - "min_markup": 0.005295220636714294, - "n_close_orders": 13, - "rentry_pprice_dist": 0.020319585917755578, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9495540973434329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LDOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LDOUSDT.json deleted file mode 100644 index 6fddc47a4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5159536084738751, - "ema_span_0": 1248.6062558084398, - "ema_span_1": 1044.0148033861185, - "enabled": true, - "initial_eprice_ema_dist": 0.000720250692351039, - "initial_qty_pct": 0.01670396209967201, - "markup_range": 0.004738122012700479, - "min_markup": 0.006488744252296942, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03196413882850113, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5777126246016717, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.121555953228244, - "ema_span_0": 1439.457992466098, - "ema_span_1": 1439.6523229556547, - "enabled": true, - "initial_eprice_ema_dist": -0.0003286366121919378, - "initial_qty_pct": 0.01926522821319415, - "markup_range": 0.0020372345703510114, - "min_markup": 0.006544138409826038, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04721831982661486, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9376346759541607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LEVERUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LEVERUSDT.json deleted file mode 100644 index 85661fdd0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.498261986041419, - "ema_span_0": 1287.9566551615385, - "ema_span_1": 432.1068338050771, - "enabled": true, - "initial_eprice_ema_dist": 0.002347774982749378, - "initial_qty_pct": 0.0051429371976374465, - "markup_range": 0.002974792379622589, - "min_markup": 0.002437041463455835, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049162066721694694, - "rentry_pprice_dist_wallet_exposure_weighting": 2.562606806294015, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LINAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LINAUSDT.json deleted file mode 100644 index e2398ae18..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6015136814653037, - "ema_span_0": 1225.7396180397736, - "ema_span_1": 1340.5481710796876, - "enabled": true, - "initial_eprice_ema_dist": -0.0030238312130208673, - "initial_qty_pct": 0.012905547456364432, - "markup_range": 0.007355367856488814, - "min_markup": 0.005798249340746057, - "n_close_orders": 2, - "rentry_pprice_dist": 0.050041482709373114, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3792071129303465, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LINKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LINKUSDT.json deleted file mode 100644 index ab28ec76a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.530310192517021, - "ema_span_0": 931.2179001666473, - "ema_span_1": 1230.4348271834565, - "enabled": true, - "initial_eprice_ema_dist": -0.0070643468075439995, - "initial_qty_pct": 0.011675458025438824, - "markup_range": 0.0036649060442478926, - "min_markup": 0.005280442888847122, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03714245274555599, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1886302610663578, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LITUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LITUSDT.json deleted file mode 100644 index f5af2a9f1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.25120865294591, - "ema_span_0": 924.281745023731, - "ema_span_1": 1126.9205768818265, - "enabled": true, - "initial_eprice_ema_dist": -0.006626417961538352, - "initial_qty_pct": 0.005390451321060489, - "markup_range": 0.004936514169361442, - "min_markup": 0.0023326868861701855, - "n_close_orders": 10, - "rentry_pprice_dist": 0.047854240619392606, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1956099784121452, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LOOMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LOOMUSDT.json deleted file mode 100644 index 45b04453f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LOOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LPTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LPTUSDT.json deleted file mode 100644 index 26ae9c2b7..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LQTYUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LQTYUSDT.json deleted file mode 100644 index 33c9bbe85..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9126648396493593, - "ema_span_0": 532.6543816447255, - "ema_span_1": 1324.4767592034896, - "enabled": true, - "initial_eprice_ema_dist": -0.006909694986161618, - "initial_qty_pct": 0.014251120939408127, - "markup_range": 0.007099304520738205, - "min_markup": 0.004995881172485221, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547906956252059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1080147355026637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LRCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LRCUSDT.json deleted file mode 100644 index 3781f9d7b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966687567910197, - "ema_span_0": 749.5134019064611, - "ema_span_1": 1281.3144943534287, - "enabled": true, - "initial_eprice_ema_dist": -0.0006423620829190632, - "initial_qty_pct": 0.015283484013860052, - "markup_range": 0.003132569119602187, - "min_markup": 0.005636599354075086, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375814293426339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.64933016568611, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LSKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LSKUSDT.json deleted file mode 100644 index 8af841c16..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LTCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LTCUSDT.json deleted file mode 100644 index 986c58c71..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9369121462422005, - "ema_span_0": 1440, - "ema_span_1": 1376.5256726361233, - "enabled": true, - "initial_eprice_ema_dist": -0.002784127828183163, - "initial_qty_pct": 0.013916927508297325, - "markup_range": 0.0015546850195966365, - "min_markup": 0.0028228232914522455, - "n_close_orders": 8, - "rentry_pprice_dist": 0.025062668478451598, - "rentry_pprice_dist_wallet_exposure_weighting": 2.628424800050207, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/LUNA2USDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/LUNA2USDT.json deleted file mode 100644 index 6248347dd..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6078087195928683, - "ema_span_0": 882.3592202038312, - "ema_span_1": 1408.91815843651, - "enabled": true, - "initial_eprice_ema_dist": 0.0028746071453775836, - "initial_qty_pct": 0.02, - "markup_range": 0.0031255383459655446, - "min_markup": 0.005382035068085265, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03895265137790888, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9476924290466413, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MAGICUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MAGICUSDT.json deleted file mode 100644 index f52491852..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MANAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MANAUSDT.json deleted file mode 100644 index 8e375eee1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3982867742207514, - "ema_span_0": 699.63745669592, - "ema_span_1": 712.6294877003463, - "enabled": true, - "initial_eprice_ema_dist": 0.0016716655918121463, - "initial_qty_pct": 0.0069995912789837435, - "markup_range": 0.0006315586964646242, - "min_markup": 0.004128066449384683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019701876789393825, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2017690791294244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7201721407832813, - "ema_span_0": 427.94913163569163, - "ema_span_1": 1365.286296553462, - "enabled": true, - "initial_eprice_ema_dist": 0.0007155278660831436, - "initial_qty_pct": 0.0164817426642759, - "markup_range": 0.0013597598628013125, - "min_markup": 0.005303551494477243, - "n_close_orders": 9, - "rentry_pprice_dist": 0.033544317424716565, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0779105246617333, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MANTAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MANTAUSDT.json deleted file mode 100644 index fffc68bca..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MANTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MASKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MASKUSDT.json deleted file mode 100644 index a03ded87a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000000596553002, - "ema_span_0": 929.9812114760467, - "ema_span_1": 941.0347791612975, - "enabled": true, - "initial_eprice_ema_dist": -0.003991486046804449, - "initial_qty_pct": 0.0062838948398916605, - "markup_range": 0.0053377597436320345, - "min_markup": 0.004808631305477758, - "n_close_orders": 2, - "rentry_pprice_dist": 0.039485103117888054, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1364660075707736, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966687567910197, - "ema_span_0": 749.5134019064611, - "ema_span_1": 1281.3144943534287, - "enabled": true, - "initial_eprice_ema_dist": -0.0006423620829190632, - "initial_qty_pct": 0.015283484013860052, - "markup_range": 0.003132569119602187, - "min_markup": 0.005636599354075086, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375814293426339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.64933016568611, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MATICUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MATICUSDT.json deleted file mode 100644 index 3bab73284..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2262025238239782, - "ema_span_0": 756.0201309384837, - "ema_span_1": 647.7276639896997, - "enabled": true, - "initial_eprice_ema_dist": -0.00693983523557676, - "initial_qty_pct": 0.008478309621078584, - "markup_range": 0.003450423811446193, - "min_markup": 0.0057114524122531115, - "n_close_orders": 4, - "rentry_pprice_dist": 0.036590574351965756, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1337712400741469, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MAVIAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MAVIAUSDT.json deleted file mode 100644 index 18bf7369e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MAVIAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MAVUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MAVUSDT.json deleted file mode 100644 index d461bb6eb..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5749969457700788, - "ema_span_0": 569.413304156137, - "ema_span_1": 490.5430557314239, - "enabled": true, - "initial_eprice_ema_dist": -0.0086863081186085, - "initial_qty_pct": 0.0087043398163937, - "markup_range": 0.005588308732260884, - "min_markup": 0.005238778285633801, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243385509821733, - "rentry_pprice_dist_wallet_exposure_weighting": 6.451868010973641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MBLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MBLUSDT.json deleted file mode 100644 index 0b25d8f9b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MBLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MDTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MDTUSDT.json deleted file mode 100644 index ef09a7d4f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.292027319909774, - "ema_span_0": 1329.4680952753552, - "ema_span_1": 436.49613116495897, - "enabled": true, - "initial_eprice_ema_dist": -0.0048223415569343606, - "initial_qty_pct": 0.009453639768089012, - "markup_range": 0.0016749767397669865, - "min_markup": 0.004004167712974628, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973145553035486, - "rentry_pprice_dist_wallet_exposure_weighting": 0.615152389890463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MEMEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MEMEUSDT.json deleted file mode 100644 index b94f5b53c..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MEMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MINAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MINAUSDT.json deleted file mode 100644 index ca0038ee0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MKRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MKRUSDT.json deleted file mode 100644 index 721aeb1f1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5107383013026172, - "ema_span_0": 501.11138484160716, - "ema_span_1": 563.3231953079442, - "enabled": true, - "initial_eprice_ema_dist": -0.0022721525591453532, - "initial_qty_pct": 0.010882760685887356, - "markup_range": 0.002102569591189472, - "min_markup": 0.0028711756201357597, - "n_close_orders": 14, - "rentry_pprice_dist": 0.031137152580617798, - "rentry_pprice_dist_wallet_exposure_weighting": 0.08175078413939162, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MOVRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MOVRUSDT.json deleted file mode 100644 index 129500e33..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MOVRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MTLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MTLUSDT.json deleted file mode 100644 index f7869842a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.553259651749859, - "ema_span_0": 1341.4761910014433, - "ema_span_1": 771.8235757798318, - "enabled": true, - "initial_eprice_ema_dist": 0.0003095889575887415, - "initial_qty_pct": 0.00846349234296021, - "markup_range": 0.00245043989304848, - "min_markup": 0.008207500322844181, - "n_close_orders": 15, - "rentry_pprice_dist": 0.041981358725682726, - "rentry_pprice_dist_wallet_exposure_weighting": 3.124609565217527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10351553171972352, - "ema_span_0": 1400.8590153309617, - "ema_span_1": 1416.0470032162264, - "enabled": true, - "initial_eprice_ema_dist": 0.002999916067495777, - "initial_qty_pct": 0.02, - "markup_range": 0.0006525153882115823, - "min_markup": 0.00324210743304714, - "n_close_orders": 6, - "rentry_pprice_dist": 0.048368914414632806, - "rentry_pprice_dist_wallet_exposure_weighting": 6.848375786750348, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/MYROUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/MYROUSDT.json deleted file mode 100644 index 383441a67..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/MYROUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.247885911615898, - "ema_span_0": 701.0732650974925, - "ema_span_1": 807.528616151842, - "enabled": true, - "initial_eprice_ema_dist": -0.00593504535989968, - "initial_qty_pct": 0.008871061261948114, - "markup_range": 0.003804641519225573, - "min_markup": 0.005656748541260267, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0305329129680727, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6173753962108104, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/NEARUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/NEARUSDT.json deleted file mode 100644 index 42d317410..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8650520021061736, - "ema_span_0": 796.5179258775149, - "ema_span_1": 1407.4237060216465, - "enabled": true, - "initial_eprice_ema_dist": 0.002680605582500581, - "initial_qty_pct": 0.010641478055812168, - "markup_range": 0.0029407945819831887, - "min_markup": 0.009106294434698299, - "n_close_orders": 8, - "rentry_pprice_dist": 0.047929864782892226, - "rentry_pprice_dist_wallet_exposure_weighting": 6.551721907077706, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/NEOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/NEOUSDT.json deleted file mode 100644 index 0b970b995..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1781344165381196, - "ema_span_0": 1378.2973709797225, - "ema_span_1": 1317.1001098796871, - "enabled": true, - "initial_eprice_ema_dist": -0.0011490225974891022, - "initial_qty_pct": 0.010423405040990284, - "markup_range": 0.0028990719840094707, - "min_markup": 0.0045979974574580675, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0200955626391935, - "rentry_pprice_dist_wallet_exposure_weighting": 4.477541425918538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/NFPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/NFPUSDT.json deleted file mode 100644 index e38d3357f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/NFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/NKNUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/NKNUSDT.json deleted file mode 100644 index c174fde86..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4881219917580285, - "ema_span_0": 400, - "ema_span_1": 822.8349163889209, - "enabled": true, - "initial_eprice_ema_dist": -0.0038046880378889373, - "initial_qty_pct": 0.018903270378062487, - "markup_range": 0.00573840039361005, - "min_markup": 0.006381616359542263, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029126335164672546, - "rentry_pprice_dist_wallet_exposure_weighting": 2.424981371694292, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21802688270759651, - "ema_span_0": 1248.0959322741535, - "ema_span_1": 1430.0841680407277, - "enabled": true, - "initial_eprice_ema_dist": 0.002716516856667494, - "initial_qty_pct": 0.019998020321061447, - "markup_range": 0.006120150586732654, - "min_markup": 0.006415359529401238, - "n_close_orders": 14, - "rentry_pprice_dist": 0.039072266328704204, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7669715349237025, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/NMRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/NMRUSDT.json deleted file mode 100644 index 58728ebaa..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1407674819540503, - "ema_span_0": 600.6730996025576, - "ema_span_1": 706.4325106842696, - "enabled": true, - "initial_eprice_ema_dist": -0.0078039353860458825, - "initial_qty_pct": 0.008426395372658128, - "markup_range": 0.007143412363284117, - "min_markup": 0.004312289277978274, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03743230546577915, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10420111410769953, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/NTRNUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/NTRNUSDT.json deleted file mode 100644 index 95f165b38..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/NTRNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3982867742207514, - "ema_span_0": 699.63745669592, - "ema_span_1": 712.6294877003463, - "enabled": true, - "initial_eprice_ema_dist": 0.0016716655918121463, - "initial_qty_pct": 0.0069995912789837435, - "markup_range": 0.0006315586964646242, - "min_markup": 0.004128066449384683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019701876789393825, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2017690791294244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/OCEANUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/OCEANUSDT.json deleted file mode 100644 index 9bfcbfe41..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6909014516523033, - "ema_span_0": 675.2192680565545, - "ema_span_1": 417.359589308201, - "enabled": true, - "initial_eprice_ema_dist": -0.0010876088699116994, - "initial_qty_pct": 0.011275857946991052, - "markup_range": 0.0008684193266431001, - "min_markup": 0.008477974439679273, - "n_close_orders": 8, - "rentry_pprice_dist": 0.040025279801115796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.299655526081271, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/OGNUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/OGNUSDT.json deleted file mode 100644 index 0bf289e73..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6792716195903201, - "ema_span_0": 1131.180217109746, - "ema_span_1": 715.1471254422235, - "enabled": true, - "initial_eprice_ema_dist": -0.00836593629938063, - "initial_qty_pct": 0.012455887944056032, - "markup_range": 0.0005654558339438172, - "min_markup": 0.002909975678970782, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03733834615044779, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1963487420157759, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/OMGUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/OMGUSDT.json deleted file mode 100644 index e45e1ce98..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2943334786705402, - "ema_span_0": 557.3663556398109, - "ema_span_1": 605.3117106857495, - "enabled": true, - "initial_eprice_ema_dist": -0.008311789907742282, - "initial_qty_pct": 0.019445890388826083, - "markup_range": 0.009999394446329891, - "min_markup": 0.00281675740661168, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0374266725089705, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0756100658382015, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.187342573680735, - "ema_span_0": 420.8298168240888, - "ema_span_1": 1293.6703257472886, - "enabled": true, - "initial_eprice_ema_dist": -0.009730278881618249, - "initial_qty_pct": 0.006867192626880222, - "markup_range": 0.006912808454446304, - "min_markup": 0.009779929906242303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.042901841601788164, - "rentry_pprice_dist_wallet_exposure_weighting": 0.35839352560910487, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/OMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/OMUSDT.json deleted file mode 100644 index 00a1e1279..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/OMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6921253886815695, - "ema_span_0": 428.88845472586047, - "ema_span_1": 1033.2911537732355, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998259863056997, - "initial_qty_pct": 0.007231577146814722, - "markup_range": 0.002385642534751642, - "min_markup": 0.005016345350053768, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02511992574003009, - "rentry_pprice_dist_wallet_exposure_weighting": 4.425112144475232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONDOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ONDOUSDT.json deleted file mode 100644 index edb6410d6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9126648396493593, - "ema_span_0": 532.6543816447255, - "ema_span_1": 1324.4767592034896, - "enabled": true, - "initial_eprice_ema_dist": -0.006909694986161618, - "initial_qty_pct": 0.014251120939408127, - "markup_range": 0.007099304520738205, - "min_markup": 0.004995881172485221, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547906956252059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1080147355026637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ONEUSDT.json deleted file mode 100644 index 1671b3a0b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.514616314322134, - "ema_span_0": 893.6648872131799, - "ema_span_1": 1134.9865644674042, - "enabled": true, - "initial_eprice_ema_dist": -0.004012005850923606, - "initial_qty_pct": 0.006622471773418429, - "markup_range": 0.004279614171759842, - "min_markup": 0.007459819688209633, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03779168575325001, - "rentry_pprice_dist_wallet_exposure_weighting": 0.016047404345157987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONGUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ONGUSDT.json deleted file mode 100644 index aee9e692e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7896823341342867, - "ema_span_0": 1114.6014374950553, - "ema_span_1": 938.9888017804359, - "enabled": true, - "initial_eprice_ema_dist": 9.44200061109429e-05, - "initial_qty_pct": 0.007833345378067978, - "markup_range": 0.002022904394170566, - "min_markup": 0.0019991308170766637, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019655914157653234, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8352074778258256, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ONTUSDT.json deleted file mode 100644 index bc671da58..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.364849119702204, - "ema_span_0": 865.7984570675294, - "ema_span_1": 725.7281024686835, - "enabled": true, - "initial_eprice_ema_dist": 0.0029413539231069727, - "initial_qty_pct": 0.008986222705890308, - "markup_range": 0.00813327997846001, - "min_markup": 0.007010564949875995, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037672124082526355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.1794409586499315, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.337218641941045, - "ema_span_0": 1394.0595360103011, - "ema_span_1": 1209.904791055211, - "enabled": true, - "initial_eprice_ema_dist": -0.0020670190574686915, - "initial_qty_pct": 0.01463807095251366, - "markup_range": 0.007272680089655267, - "min_markup": 0.006039483470154668, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028533484009548606, - "rentry_pprice_dist_wallet_exposure_weighting": 6.256314642408412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/OPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/OPUSDT.json deleted file mode 100644 index 80a2eab3b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3982867742207514, - "ema_span_0": 699.63745669592, - "ema_span_1": 712.6294877003463, - "enabled": true, - "initial_eprice_ema_dist": 0.0016716655918121463, - "initial_qty_pct": 0.0069995912789837435, - "markup_range": 0.0006315586964646242, - "min_markup": 0.004128066449384683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019701876789393825, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2017690791294244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9826312181062014, - "ema_span_0": 1045.6818420316492, - "ema_span_1": 400.66376106469426, - "enabled": true, - "initial_eprice_ema_dist": 0.000611561133512006, - "initial_qty_pct": 0.00886604144127456, - "markup_range": 0.0016175100336028598, - "min_markup": 0.004039972569513785, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05849581987864839, - "rentry_pprice_dist_wallet_exposure_weighting": 0.26784678832760955, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ORBSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ORBSUSDT.json deleted file mode 100644 index 8af841c16..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ORBSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ORDIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ORDIUSDT.json deleted file mode 100644 index ec4808db4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ORDIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.898083850242024, - "ema_span_0": 1426.285590876822, - "ema_span_1": 1424.335791465121, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01968097261972087, - "markup_range": 0.0035071222518446776, - "min_markup": 0.005533845048715687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03385601367703975, - "rentry_pprice_dist_wallet_exposure_weighting": 3.73109080433956, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/OXTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/OXTUSDT.json deleted file mode 100644 index ed4c51bb9..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5793620725516269, - "ema_span_0": 1261.7539266767174, - "ema_span_1": 1262.397064741276, - "enabled": true, - "initial_eprice_ema_dist": 0.002347774982749378, - "initial_qty_pct": 0.008151352750144504, - "markup_range": 0.0002860501145161098, - "min_markup": 0.003815907544379429, - "n_close_orders": 4, - "rentry_pprice_dist": 0.021711269576136914, - "rentry_pprice_dist_wallet_exposure_weighting": 0.732735687577732, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PENDLEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PENDLEUSDT.json deleted file mode 100644 index 6a0790a42..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.898083850242024, - "ema_span_0": 1426.285590876822, - "ema_span_1": 1424.335791465121, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01968097261972087, - "markup_range": 0.0035071222518446776, - "min_markup": 0.005533845048715687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03385601367703975, - "rentry_pprice_dist_wallet_exposure_weighting": 3.73109080433956, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PEOPLEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PEOPLEUSDT.json deleted file mode 100644 index 4ad3c7f61..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7127996619834288, - "ema_span_0": 624.1921898696093, - "ema_span_1": 662.6420983003411, - "enabled": true, - "initial_eprice_ema_dist": -0.007004287940934794, - "initial_qty_pct": 0.007771324959590781, - "markup_range": 0.004414780245155629, - "min_markup": 0.0025427254021188604, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03695639965767077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.302084187858983, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PERPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PERPUSDT.json deleted file mode 100644 index 18a63324e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.25120865294591, - "ema_span_0": 924.281745023731, - "ema_span_1": 1126.9205768818265, - "enabled": true, - "initial_eprice_ema_dist": -0.006626417961538352, - "initial_qty_pct": 0.005390451321060489, - "markup_range": 0.004936514169361442, - "min_markup": 0.0023326868861701855, - "n_close_orders": 10, - "rentry_pprice_dist": 0.047854240619392606, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1956099784121452, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2739661777308737, - "ema_span_0": 1311.9461421240344, - "ema_span_1": 1140.98494408494, - "enabled": true, - "initial_eprice_ema_dist": -0.0018591669706837296, - "initial_qty_pct": 0.007037592861027184, - "markup_range": 0.0035445068175967934, - "min_markup": 0.002670310361944757, - "n_close_orders": 6, - "rentry_pprice_dist": 0.020499237500803784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7706766468478556, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PHBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PHBUSDT.json deleted file mode 100644 index e29463711..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1000253088461639, - "ema_span_0": 1097.8744732697232, - "ema_span_1": 406.91457583186894, - "enabled": true, - "initial_eprice_ema_dist": -0.0027409371987949004, - "initial_qty_pct": 0.018805446219805615, - "markup_range": 0.002479346622921817, - "min_markup": 0.006656628235282698, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02831082617853845, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7368907040172634, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PIXELUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PIXELUSDT.json deleted file mode 100644 index 647dd5bc7..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PIXELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0.0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7669071183869411, - "ema_span_0": 1432.826356668545, - "ema_span_1": 726.4420281977382, - "enabled": true, - "initial_eprice_ema_dist": -0.0082460794355585, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.001319917425168107, - "min_markup": 0.009785870250428595, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/POLYXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/POLYXUSDT.json deleted file mode 100644 index 6d35dab29..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/POLYXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.56219586740148, - "ema_span_0": 1377.4444504763974, - "ema_span_1": 1146.986429279253, - "enabled": true, - "initial_eprice_ema_dist": -0.005195180931239749, - "initial_qty_pct": 0.006395157712924707, - "markup_range": 0.0013034965471744203, - "min_markup": 0.0031647242712170183, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030067167750076732, - "rentry_pprice_dist_wallet_exposure_weighting": 1.803733038911203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PORTALUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PORTALUSDT.json deleted file mode 100644 index 84d904840..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PORTALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032841025699854, - "ema_span_0": 603.3684823287402, - "ema_span_1": 593.2914462355499, - "enabled": true, - "initial_eprice_ema_dist": -0.006686699042370069, - "initial_qty_pct": 0.019343563613571375, - "markup_range": 0.0035139190888152203, - "min_markup": 0.0041974976207321225, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024538943373011338, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6223178652929873, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/POWRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/POWRUSDT.json deleted file mode 100644 index be9bf7fa0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/POWRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4375045306819496, - "ema_span_0": 579.088748896372, - "ema_span_1": 845.6030651852784, - "enabled": true, - "initial_eprice_ema_dist": -0.008300880009457315, - "initial_qty_pct": 0.007172098575906339, - "markup_range": 0.00619244285449038, - "min_markup": 0.0056401077464158225, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0295363730037309, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8071183798456727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9157554456727748, - "ema_span_0": 659.6887162646505, - "ema_span_1": 1096.2599340520574, - "enabled": true, - "initial_eprice_ema_dist": -0.0011908967850339045, - "initial_qty_pct": 0.009812704431320407, - "markup_range": 0.006530350806020587, - "min_markup": 0.0073384545812298484, - "n_close_orders": 8, - "rentry_pprice_dist": 0.038150882950626366, - "rentry_pprice_dist_wallet_exposure_weighting": 4.720113063782538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/PYTHUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/PYTHUSDT.json deleted file mode 100644 index 7599c1bf1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/PYTHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.21904752207177, - "ema_span_0": 802.7950029196085, - "ema_span_1": 802.267391792829, - "enabled": true, - "initial_eprice_ema_dist": -0.0025141336939064397, - "initial_qty_pct": 0.017627099852669616, - "markup_range": 0.006837818821715701, - "min_markup": 0.00963882047671851, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045400086213569474, - "rentry_pprice_dist_wallet_exposure_weighting": 3.665401966376619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/QNTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/QNTUSDT.json deleted file mode 100644 index 71eed6b47..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.861289071126022, - "ema_span_0": 570.7424324540953, - "ema_span_1": 514.244786685066, - "enabled": true, - "initial_eprice_ema_dist": 0.0027352875636505046, - "initial_qty_pct": 0.011236281116613855, - "markup_range": 0.0016714313566046455, - "min_markup": 0.0033659905626506796, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032471982235901774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.878714040563697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/QTUMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/QTUMUSDT.json deleted file mode 100644 index 6dcaa9a4f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10072394621572836, - "ema_span_0": 787.8195498940908, - "ema_span_1": 598.5605990844002, - "enabled": true, - "initial_eprice_ema_dist": 0.00027476696033320707, - "initial_qty_pct": 0.01859145648746162, - "markup_range": 0.003965463290748108, - "min_markup": 0.004029873911544329, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03812171972055059, - "rentry_pprice_dist_wallet_exposure_weighting": 2.208886807558062, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.009981618868015, - "ema_span_0": 1123.962392530083, - "ema_span_1": 541.6572949971098, - "enabled": true, - "initial_eprice_ema_dist": -0.00016305873772747435, - "initial_qty_pct": 0.012144360995253739, - "markup_range": 0.0018003550534343023, - "min_markup": 0.005630591218912932, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02962791798941469, - "rentry_pprice_dist_wallet_exposure_weighting": 5.943865740697062, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RADUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RADUSDT.json deleted file mode 100644 index e38d3357f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RDNTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RDNTUSDT.json deleted file mode 100644 index 0ef42038b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7462685377597977, - "ema_span_0": 511.8560462090011, - "ema_span_1": 568.477435153946, - "enabled": true, - "initial_eprice_ema_dist": -0.006383865417420748, - "initial_qty_pct": 0.011078545593023655, - "markup_range": 0.004668351197589904, - "min_markup": 0.004192178780478336, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026001922012736885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23931909568469828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/REEFUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/REEFUSDT.json deleted file mode 100644 index acb3a61a6..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RENUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RENUSDT.json deleted file mode 100644 index 11535f992..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3312710099916436, - "ema_span_0": 1192.268195300751, - "ema_span_1": 1196.406002830336, - "enabled": true, - "initial_eprice_ema_dist": -0.004264726213907415, - "initial_qty_pct": 0.006495646128856158, - "markup_range": 0.003330104084938854, - "min_markup": 0.0010791213672847698, - "n_close_orders": 14, - "rentry_pprice_dist": 0.027583705397565734, - "rentry_pprice_dist_wallet_exposure_weighting": 0.024510843456297945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RIFUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RIFUSDT.json deleted file mode 100644 index 802db0286..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RIFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RLCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RLCUSDT.json deleted file mode 100644 index 7599c1bf1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.21904752207177, - "ema_span_0": 802.7950029196085, - "ema_span_1": 802.267391792829, - "enabled": true, - "initial_eprice_ema_dist": -0.0025141336939064397, - "initial_qty_pct": 0.017627099852669616, - "markup_range": 0.006837818821715701, - "min_markup": 0.00963882047671851, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045400086213569474, - "rentry_pprice_dist_wallet_exposure_weighting": 3.665401966376619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RNDRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RNDRUSDT.json deleted file mode 100644 index 917f8a48a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RONINUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RONINUSDT.json deleted file mode 100644 index fc24c93b3..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RONINUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ROSEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ROSEUSDT.json deleted file mode 100644 index 8c08c3474..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.610165935155785, - "ema_span_0": 1142.1064045986368, - "ema_span_1": 1046.1824616964843, - "enabled": true, - "initial_eprice_ema_dist": -0.0087146472041154, - "initial_qty_pct": 0.006722876596456217, - "markup_range": 0.0016596428805405415, - "min_markup": 0.004243394576994393, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02946794502109941, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4609491502559733, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RSRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RSRUSDT.json deleted file mode 100644 index 6996a98e0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RUNEUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RUNEUSDT.json deleted file mode 100644 index d033aec50..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.136980516315344, - "ema_span_0": 990.5411928116741, - "ema_span_1": 1107.7590226770542, - "enabled": true, - "initial_eprice_ema_dist": -0.00673973466369681, - "initial_qty_pct": 0.006748739638866885, - "markup_range": 0.001916299903031851, - "min_markup": 0.005651226545313381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019491943571174564, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2047101396037654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9826312181062014, - "ema_span_0": 1045.6818420316492, - "ema_span_1": 400.66376106469426, - "enabled": true, - "initial_eprice_ema_dist": 0.000611561133512006, - "initial_qty_pct": 0.00886604144127456, - "markup_range": 0.0016175100336028598, - "min_markup": 0.004039972569513785, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05849581987864839, - "rentry_pprice_dist_wallet_exposure_weighting": 0.26784678832760955, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/RVNUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/RVNUSDT.json deleted file mode 100644 index 80405dec2..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9631960327642634, - "ema_span_0": 1236.105995867478, - "ema_span_1": 1077.3963586181405, - "enabled": true, - "initial_eprice_ema_dist": -0.006857784362932138, - "initial_qty_pct": 0.006383168170977139, - "markup_range": 0.004339697803781797, - "min_markup": 0.008271471184368518, - "n_close_orders": 11, - "rentry_pprice_dist": 0.021940048253938565, - "rentry_pprice_dist_wallet_exposure_weighting": 6.8831707193410825, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9074088928394692, - "ema_span_0": 1225.1593351104916, - "ema_span_1": 1284.4445043294322, - "enabled": true, - "initial_eprice_ema_dist": -0.009943258655235904, - "initial_qty_pct": 0.007029446982434334, - "markup_range": 2.946347169311016e-05, - "min_markup": 0.002975626910710349, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025779942991905537, - "rentry_pprice_dist_wallet_exposure_weighting": 3.268387857434339, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SANDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SANDUSDT.json deleted file mode 100644 index 5bdb3a0ae..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9711732120666596, - "ema_span_0": 1158.384361819394, - "ema_span_1": 756.1945540715554, - "enabled": true, - "initial_eprice_ema_dist": 0.0025187410545642677, - "initial_qty_pct": 0.02, - "markup_range": 0.0010757350976541833, - "min_markup": 0.0038768359427695668, - "n_close_orders": 10, - "rentry_pprice_dist": 0.06, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SEIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SEIUSDT.json deleted file mode 100644 index af21ac40e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SFPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SFPUSDT.json deleted file mode 100644 index 601333fcb..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2215641547177434, - "ema_span_0": 1087.9072038258594, - "ema_span_1": 1140.438225615017, - "enabled": true, - "initial_eprice_ema_dist": -0.0014029101835263183, - "initial_qty_pct": 0.005924463719350489, - "markup_range": 0.008540767292953524, - "min_markup": 0.003337288791547102, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02896761893160794, - "rentry_pprice_dist_wallet_exposure_weighting": 6.280742441164259, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1407674819540503, - "ema_span_0": 600.6730996025576, - "ema_span_1": 706.4325106842696, - "enabled": true, - "initial_eprice_ema_dist": -0.0078039353860458825, - "initial_qty_pct": 0.008426395372658128, - "markup_range": 0.007143412363284117, - "min_markup": 0.004312289277978274, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03743230546577915, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10420111410769953, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SKLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SKLUSDT.json deleted file mode 100644 index 39d05b50a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000000596553002, - "ema_span_0": 929.9812114760467, - "ema_span_1": 941.0347791612975, - "enabled": true, - "initial_eprice_ema_dist": -0.003991486046804449, - "initial_qty_pct": 0.0062838948398916605, - "markup_range": 0.0053377597436320345, - "min_markup": 0.004808631305477758, - "n_close_orders": 2, - "rentry_pprice_dist": 0.039485103117888054, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1364660075707736, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6284887542261557, - "ema_span_0": 1122.184465747614, - "ema_span_1": 633.8851985633526, - "enabled": true, - "initial_eprice_ema_dist": -0.00488180547719058, - "initial_qty_pct": 0.005506154362056936, - "markup_range": 0.006984837413309399, - "min_markup": 0.009711777265178646, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04610845230154611, - "rentry_pprice_dist_wallet_exposure_weighting": 6.84436042257252, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SLPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SLPUSDT.json deleted file mode 100644 index a3ab2ce99..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SLPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0195748688318564, - "ema_span_0": 1032.9876182754965, - "ema_span_1": 1384.4199627826313, - "enabled": true, - "initial_eprice_ema_dist": 0.002964050067405958, - "initial_qty_pct": 0.012276323438665585, - "markup_range": 0.008365504361812269, - "min_markup": 0.006451876146961201, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04876530739561381, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3121077123682445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SNTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SNTUSDT.json deleted file mode 100644 index 31d7a5d5d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SNXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SNXUSDT.json deleted file mode 100644 index b097b944b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9280183754067597, - "ema_span_0": 1005.1013083288595, - "ema_span_1": 1319.7800189035072, - "enabled": true, - "initial_eprice_ema_dist": 0.002261370012411399, - "initial_qty_pct": 0.01948301192113653, - "markup_range": 0.002859427608053925, - "min_markup": 0.0052134477675001385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03477700726588068, - "rentry_pprice_dist_wallet_exposure_weighting": 6.8477214491291925, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.429232835173058, - "ema_span_0": 1373.8554224777074, - "ema_span_1": 575.1863608354481, - "enabled": true, - "initial_eprice_ema_dist": -0.0021964840780753082, - "initial_qty_pct": 0.009684351562086288, - "markup_range": 6.347250842397099e-05, - "min_markup": 0.0022125862752340516, - "n_close_orders": 13, - "rentry_pprice_dist": 0.023735025844592438, - "rentry_pprice_dist_wallet_exposure_weighting": 4.445847754812645, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SOLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SOLUSDT.json deleted file mode 100644 index 6da502c20..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SPELLUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SPELLUSDT.json deleted file mode 100644 index 64feb4a8d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6377931024910679, - "ema_span_0": 790.3551732113342, - "ema_span_1": 928.0416080681598, - "enabled": true, - "initial_eprice_ema_dist": -0.004133945688039767, - "initial_qty_pct": 0.008048027690748702, - "markup_range": 0.009974866091135832, - "min_markup": 0.005678798071303473, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02380397376271462, - "rentry_pprice_dist_wallet_exposure_weighting": 2.805796385987601, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SSVUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SSVUSDT.json deleted file mode 100644 index 86e201142..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.009981618868015, - "ema_span_0": 1123.962392530083, - "ema_span_1": 541.6572949971098, - "enabled": true, - "initial_eprice_ema_dist": -0.00016305873772747435, - "initial_qty_pct": 0.012144360995253739, - "markup_range": 0.0018003550534343023, - "min_markup": 0.005630591218912932, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02962791798941469, - "rentry_pprice_dist_wallet_exposure_weighting": 5.943865740697062, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STEEMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STEEMUSDT.json deleted file mode 100644 index 1e8c6fe09..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STEEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STGUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STGUSDT.json deleted file mode 100644 index d6d3c8306..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STMXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STMXUSDT.json deleted file mode 100644 index c611fe704..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1136200865682403, - "ema_span_0": 1089.468611102197, - "ema_span_1": 1041.4402969672844, - "enabled": true, - "initial_eprice_ema_dist": 0.002775475012225147, - "initial_qty_pct": 0.012213318830830162, - "markup_range": 0.0019738848654710624, - "min_markup": 0.009953905980263996, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0324676367670747, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8102248465256605, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5249902301868143, - "ema_span_0": 958.5070799549975, - "ema_span_1": 743.5333870615893, - "enabled": true, - "initial_eprice_ema_dist": -0.006281911393073577, - "initial_qty_pct": 0.011169022828019435, - "markup_range": 0.005133698576591956, - "min_markup": 0.005317820714653464, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03852695242597729, - "rentry_pprice_dist_wallet_exposure_weighting": 2.980742847113021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STORJUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STORJUSDT.json deleted file mode 100644 index b7a9c6ca1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.88029946624713, - "ema_span_0": 649.9368472064199, - "ema_span_1": 898.7781266544856, - "enabled": true, - "initial_eprice_ema_dist": 0.0026273614313904996, - "initial_qty_pct": 0.008835809996045302, - "markup_range": 0.00197740876890397, - "min_markup": 0.004305126222368225, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0434886760287103, - "rentry_pprice_dist_wallet_exposure_weighting": 2.049399006278385, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8161019700756513, - "ema_span_0": 613.0134942035509, - "ema_span_1": 950.1808463193343, - "enabled": true, - "initial_eprice_ema_dist": -0.0051402761477329, - "initial_qty_pct": 0.005625434597565511, - "markup_range": 0.002438875009361798, - "min_markup": 0.005849496969768708, - "n_close_orders": 15, - "rentry_pprice_dist": 0.035648299903062376, - "rentry_pprice_dist_wallet_exposure_weighting": 1.713535452034068, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STPTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STPTUSDT.json deleted file mode 100644 index 0b25d8f9b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STRAXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STRAXUSDT.json deleted file mode 100644 index 91d629ded..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STRAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100542900183852, - "ema_span_0": 438.658394509376, - "ema_span_1": 445.65249912729666, - "enabled": true, - "initial_eprice_ema_dist": -0.00999991992226752, - "initial_qty_pct": 0.007533234559091, - "markup_range": 0.0071567426867904065, - "min_markup": 0.0058115405230268966, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509873290798084, - "rentry_pprice_dist_wallet_exposure_weighting": 1.406382387364268, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1781344165381196, - "ema_span_0": 1378.2973709797225, - "ema_span_1": 1317.1001098796871, - "enabled": true, - "initial_eprice_ema_dist": -0.0011490225974891022, - "initial_qty_pct": 0.010423405040990284, - "markup_range": 0.0028990719840094707, - "min_markup": 0.0045979974574580675, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0200955626391935, - "rentry_pprice_dist_wallet_exposure_weighting": 4.477541425918538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STRKUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STRKUSDT.json deleted file mode 100644 index 58dcd742b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STRKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5838201288467455, - "ema_span_0": 807.8006372971789, - "ema_span_1": 1028.674614155757, - "enabled": true, - "initial_eprice_ema_dist": -0.006400534159964601, - "initial_qty_pct": 0.005267803960362067, - "markup_range": 0.003890273991084484, - "min_markup": 0.003814548548367528, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04225655438141939, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7016804268157846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.530310192517021, - "ema_span_0": 931.2179001666473, - "ema_span_1": 1230.4348271834565, - "enabled": true, - "initial_eprice_ema_dist": -0.0070643468075439995, - "initial_qty_pct": 0.011675458025438824, - "markup_range": 0.0036649060442478926, - "min_markup": 0.005280442888847122, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03714245274555599, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1886302610663578, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/STXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/STXUSDT.json deleted file mode 100644 index 02db5dbb0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18020294944274384, - "ema_span_0": 534.6116953850265, - "ema_span_1": 525.8301793868686, - "enabled": true, - "initial_eprice_ema_dist": -0.005663220098220674, - "initial_qty_pct": 0.013948777121950211, - "markup_range": 0.0033845180014539285, - "min_markup": 0.003731929953161556, - "n_close_orders": 2, - "rentry_pprice_dist": 0.01698573632894032, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424060357992101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966687567910197, - "ema_span_0": 749.5134019064611, - "ema_span_1": 1281.3144943534287, - "enabled": true, - "initial_eprice_ema_dist": -0.0006423620829190632, - "initial_qty_pct": 0.015283484013860052, - "markup_range": 0.003132569119602187, - "min_markup": 0.005636599354075086, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375814293426339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.64933016568611, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SUIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SUIUSDT.json deleted file mode 100644 index 71f2deb20..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4180428610383833, - "ema_span_0": 1392.5443568930261, - "ema_span_1": 1179.1275602324895, - "enabled": true, - "initial_eprice_ema_dist": 0.0008797893515443136, - "initial_qty_pct": 0.01731461500104241, - "markup_range": 0.005871660520604379, - "min_markup": 0.0062547910322824874, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03510271629761136, - "rentry_pprice_dist_wallet_exposure_weighting": 3.715850892349411, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SUPERUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SUPERUSDT.json deleted file mode 100644 index 17fc91eae..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SUPERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7744167571017946, - "ema_span_0": 629.7331143469389, - "ema_span_1": 829.6540223214417, - "enabled": true, - "initial_eprice_ema_dist": -0.002106605095191355, - "initial_qty_pct": 0.006316145502872654, - "markup_range": 0.002660809801426568, - "min_markup": 0.005606694784076129, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032454468623924926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3624276992424163, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SUSHIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SUSHIUSDT.json deleted file mode 100644 index e8e3941f5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9126648396493593, - "ema_span_0": 532.6543816447255, - "ema_span_1": 1324.4767592034896, - "enabled": true, - "initial_eprice_ema_dist": -0.006909694986161618, - "initial_qty_pct": 0.014251120939408127, - "markup_range": 0.007099304520738205, - "min_markup": 0.004995881172485221, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547906956252059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1080147355026637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/SXPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/SXPUSDT.json deleted file mode 100644 index 86293ba4b..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3918186203491656, - "ema_span_0": 847.1895495259638, - "ema_span_1": 814.2418106338979, - "enabled": true, - "initial_eprice_ema_dist": -0.002830128031650846, - "initial_qty_pct": 0.009636415626736818, - "markup_range": 0.002922313469617343, - "min_markup": 0.002214787620495939, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03289293554402205, - "rentry_pprice_dist_wallet_exposure_weighting": 1.986869395713439, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/THETAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/THETAUSDT.json deleted file mode 100644 index 6c6720f95..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5526614763506729, - "ema_span_0": 674.4749806782737, - "ema_span_1": 647.7686019053489, - "enabled": true, - "initial_eprice_ema_dist": -0.007330198364521328, - "initial_qty_pct": 0.01597329887675025, - "markup_range": 0.00583030914639619, - "min_markup": 0.0046214421722436585, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0317994033154236, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6191181737831095, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TIAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TIAUSDT.json deleted file mode 100644 index 5cd910475..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TIAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9074088928394692, - "ema_span_0": 1225.1593351104916, - "ema_span_1": 1284.4445043294322, - "enabled": true, - "initial_eprice_ema_dist": -0.009943258655235904, - "initial_qty_pct": 0.007029446982434334, - "markup_range": 2.946347169311016e-05, - "min_markup": 0.002975626910710349, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025779942991905537, - "rentry_pprice_dist_wallet_exposure_weighting": 3.268387857434339, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TLMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TLMUSDT.json deleted file mode 100644 index ab890e4ec..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8995817502423, - "ema_span_0": 1237.8880961773652, - "ema_span_1": 812.1219392700096, - "enabled": true, - "initial_eprice_ema_dist": -0.0022851216640175347, - "initial_qty_pct": 0.018649171518923535, - "markup_range": 0.005405965672746347, - "min_markup": 0.0010000034600744193, - "n_close_orders": 7, - "rentry_pprice_dist": 0.027704339401110323, - "rentry_pprice_dist_wallet_exposure_weighting": 4.300026757434236, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TOKENUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TOKENUSDT.json deleted file mode 100644 index 5cb15a508..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TOKENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TONUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TONUSDT.json deleted file mode 100644 index f1fbc8f84..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TONUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4180428610383833, - "ema_span_0": 1392.5443568930261, - "ema_span_1": 1179.1275602324895, - "enabled": true, - "initial_eprice_ema_dist": 0.0008797893515443136, - "initial_qty_pct": 0.01731461500104241, - "markup_range": 0.005871660520604379, - "min_markup": 0.0062547910322824874, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03510271629761136, - "rentry_pprice_dist_wallet_exposure_weighting": 3.715850892349411, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TRBUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TRBUSDT.json deleted file mode 100644 index 6ad6b2705..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2791730013407125, - "ema_span_0": 1440, - "ema_span_1": 1151.845426045236, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012244128067282329, - "markup_range": 0.0, - "min_markup": 0.005328664460470563, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05999840353941138, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2599355820864121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.854728803404313, - "ema_span_0": 1286.2138292586749, - "ema_span_1": 1270.5292205700775, - "enabled": true, - "initial_eprice_ema_dist": 0.0004641870208457502, - "initial_qty_pct": 0.006178095363903385, - "markup_range": 0.005418218857423945, - "min_markup": 0.003264672876335151, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04693753992334264, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2390352014431105, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TRUUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TRUUSDT.json deleted file mode 100644 index c6261f6af..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.429232835173058, - "ema_span_0": 1373.8554224777074, - "ema_span_1": 575.1863608354481, - "enabled": true, - "initial_eprice_ema_dist": -0.0021964840780753082, - "initial_qty_pct": 0.009684351562086288, - "markup_range": 6.347250842397099e-05, - "min_markup": 0.0022125862752340516, - "n_close_orders": 13, - "rentry_pprice_dist": 0.023735025844592438, - "rentry_pprice_dist_wallet_exposure_weighting": 4.445847754812645, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TRXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TRXUSDT.json deleted file mode 100644 index 849e231e3..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5793620725516269, - "ema_span_0": 1261.7539266767174, - "ema_span_1": 1262.397064741276, - "enabled": true, - "initial_eprice_ema_dist": 0.002347774982749378, - "initial_qty_pct": 0.008151352750144504, - "markup_range": 0.0002860501145161098, - "min_markup": 0.003815907544379429, - "n_close_orders": 4, - "rentry_pprice_dist": 0.021711269576136914, - "rentry_pprice_dist_wallet_exposure_weighting": 0.732735687577732, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.295112059765415, - "ema_span_0": 1418.512089424174, - "ema_span_1": 465.28837096095685, - "enabled": true, - "initial_eprice_ema_dist": 0.002968356194414089, - "initial_qty_pct": 0.009424841843442175, - "markup_range": 0.0002682790392988458, - "min_markup": 0.0012922045069534585, - "n_close_orders": 12, - "rentry_pprice_dist": 0.018442882477147666, - "rentry_pprice_dist_wallet_exposure_weighting": 4.062049070031281, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TUSDT.json deleted file mode 100644 index db1424290..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0398403797644193, - "ema_span_0": 511.78171390530144, - "ema_span_1": 1405.7033748987196, - "enabled": true, - "initial_eprice_ema_dist": -0.0019978728355006014, - "initial_qty_pct": 0.007801932378782638, - "markup_range": 0.0034713219823628563, - "min_markup": 0.004196878368856463, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021290840756798025, - "rentry_pprice_dist_wallet_exposure_weighting": 5.513884529533033, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/TWTUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/TWTUSDT.json deleted file mode 100644 index 357c91b3d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/TWTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6850516916385354, - "ema_span_0": 426.12185415017063, - "ema_span_1": 496.26050416975323, - "enabled": true, - "initial_eprice_ema_dist": -0.001927759450286079, - "initial_qty_pct": 0.00522237375491126, - "markup_range": 0.0002740301299901382, - "min_markup": 0.0018052120025589962, - "n_close_orders": 9, - "rentry_pprice_dist": 0.010638872767800392, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8083721509060042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/UMAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/UMAUSDT.json deleted file mode 100644 index 027b41fa7..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9631960327642634, - "ema_span_0": 1236.105995867478, - "ema_span_1": 1077.3963586181405, - "enabled": true, - "initial_eprice_ema_dist": -0.006857784362932138, - "initial_qty_pct": 0.006383168170977139, - "markup_range": 0.004339697803781797, - "min_markup": 0.008271471184368518, - "n_close_orders": 11, - "rentry_pprice_dist": 0.021940048253938565, - "rentry_pprice_dist_wallet_exposure_weighting": 6.8831707193410825, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/UNFIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/UNFIUSDT.json deleted file mode 100644 index 80baaccc1..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.013535378430046, - "ema_span_0": 432.0471378820484, - "ema_span_1": 432.1068338050771, - "enabled": true, - "initial_eprice_ema_dist": -0.0012740846721330725, - "initial_qty_pct": 0.01134365136748603, - "markup_range": 0.01, - "min_markup": 0.00999897255243823, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0507120211985041, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2439169815633515, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/UNIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/UNIUSDT.json deleted file mode 100644 index 633dae33a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.610165935155785, - "ema_span_0": 1142.1064045986368, - "ema_span_1": 1046.1824616964843, - "enabled": true, - "initial_eprice_ema_dist": -0.0087146472041154, - "initial_qty_pct": 0.006722876596456217, - "markup_range": 0.0016596428805405415, - "min_markup": 0.004243394576994393, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02946794502109941, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4609491502559733, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.096635291091908, - "ema_span_0": 1330.039406339461, - "ema_span_1": 1238.3522796278537, - "enabled": true, - "initial_eprice_ema_dist": -0.004816681183131951, - "initial_qty_pct": 0.008181177347843736, - "markup_range": 0.008722281771169226, - "min_markup": 0.0028555643229245162, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03791001394129892, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2927756107330035, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/USDCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/USDCUSDT.json deleted file mode 100644 index 728663de4..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/USTCUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/USTCUSDT.json deleted file mode 100644 index 1d96d118a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/USTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.56219586740148, - "ema_span_0": 1377.4444504763974, - "ema_span_1": 1146.986429279253, - "enabled": true, - "initial_eprice_ema_dist": -0.005195180931239749, - "initial_qty_pct": 0.006395157712924707, - "markup_range": 0.0013034965471744203, - "min_markup": 0.0031647242712170183, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030067167750076732, - "rentry_pprice_dist_wallet_exposure_weighting": 1.803733038911203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/VETUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/VETUSDT.json deleted file mode 100644 index dd4137b1c..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4059985463458717, - "ema_span_0": 548.3792196674449, - "ema_span_1": 548.3879932601744, - "enabled": true, - "initial_eprice_ema_dist": -0.008698964900674353, - "initial_qty_pct": 0.006795414926456369, - "markup_range": 0.0010845161472864424, - "min_markup": 0.0026131557642318543, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014124242142790474, - "rentry_pprice_dist_wallet_exposure_weighting": 6.135744239631218, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/WAVESUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/WAVESUSDT.json deleted file mode 100644 index 9f0156f56..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7744167571017946, - "ema_span_0": 629.7331143469389, - "ema_span_1": 829.6540223214417, - "enabled": true, - "initial_eprice_ema_dist": -0.002106605095191355, - "initial_qty_pct": 0.006316145502872654, - "markup_range": 0.002660809801426568, - "min_markup": 0.005606694784076129, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032454468623924926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3624276992424163, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/WAXPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/WAXPUSDT.json deleted file mode 100644 index 624694749..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/WAXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/WIFUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/WIFUSDT.json deleted file mode 100644 index 8d279da4a..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/WIFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/WLDUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/WLDUSDT.json deleted file mode 100644 index b74cf4b5c..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.854728803404313, - "ema_span_0": 1286.2138292586749, - "ema_span_1": 1270.5292205700775, - "enabled": true, - "initial_eprice_ema_dist": 0.0004641870208457502, - "initial_qty_pct": 0.006178095363903385, - "markup_range": 0.005418218857423945, - "min_markup": 0.003264672876335151, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04693753992334264, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2390352014431105, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/WOOUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/WOOUSDT.json deleted file mode 100644 index e9bf09433..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2639480518548225, - "ema_span_0": 903.125069785816, - "ema_span_1": 962.265128144106, - "enabled": true, - "initial_eprice_ema_dist": 0.0029821337732177707, - "initial_qty_pct": 0.006858392409496179, - "markup_range": 0.0030580237794616567, - "min_markup": 0.003273807502943524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.017228082945758956, - "rentry_pprice_dist_wallet_exposure_weighting": 5.528520907488279, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XAIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XAIUSDT.json deleted file mode 100644 index d8295d4d8..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XAIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.415609287642105, - "ema_span_0": 812.4823958492581, - "ema_span_1": 1115.9189589462812, - "enabled": true, - "initial_eprice_ema_dist": 0.002285505203098785, - "initial_qty_pct": 0.008978677639439336, - "markup_range": 0.002974792379622589, - "min_markup": 0.002057341455660884, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015557291753133898, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4324883442698306, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XEMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XEMUSDT.json deleted file mode 100644 index b41d79c8f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.69477399614593, - "ema_span_0": 1433.4632473474794, - "ema_span_1": 620.7265149034098, - "enabled": true, - "initial_eprice_ema_dist": 0.002999785245586115, - "initial_qty_pct": 0.005481849096515688, - "markup_range": 0.0010998158449765268, - "min_markup": 0.0036006586206092186, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027066507512961233, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7090014923887336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XLMUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XLMUSDT.json deleted file mode 100644 index fe9d44b6f..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.268990724858785, - "ema_span_0": 468.08288387411267, - "ema_span_1": 579.8173687921092, - "enabled": true, - "initial_eprice_ema_dist": 0.0028414420430151756, - "initial_qty_pct": 0.01179904416141956, - "markup_range": 0.002798860765045448, - "min_markup": 0.0028004118006462217, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023963209191829024, - "rentry_pprice_dist_wallet_exposure_weighting": 5.582733607686806, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XMRUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XMRUSDT.json deleted file mode 100644 index 58a8f1b42..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8420529379722977, - "ema_span_0": 1011.1282987669742, - "ema_span_1": 883.9714244988174, - "enabled": true, - "initial_eprice_ema_dist": -0.005679962528550948, - "initial_qty_pct": 0.011980649261214999, - "markup_range": 0.0021734034518008523, - "min_markup": 0.0020451289829358905, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01841617082009683, - "rentry_pprice_dist_wallet_exposure_weighting": 2.280988068740216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XRPUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XRPUSDT.json deleted file mode 100644 index 1765b3b64..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4375045306819496, - "ema_span_0": 579.088748896372, - "ema_span_1": 845.6030651852784, - "enabled": true, - "initial_eprice_ema_dist": -0.008300880009457315, - "initial_qty_pct": 0.007172098575906339, - "markup_range": 0.00619244285449038, - "min_markup": 0.0056401077464158225, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0295363730037309, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8071183798456727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XTZUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XTZUSDT.json deleted file mode 100644 index e446a4f12..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7462685377597977, - "ema_span_0": 511.8560462090011, - "ema_span_1": 568.477435153946, - "enabled": true, - "initial_eprice_ema_dist": -0.006383865417420748, - "initial_qty_pct": 0.011078545593023655, - "markup_range": 0.004668351197589904, - "min_markup": 0.004192178780478336, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026001922012736885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23931909568469828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XVGUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XVGUSDT.json deleted file mode 100644 index e0cd3514e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/XVSUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/XVSUSDT.json deleted file mode 100644 index 3e681e5fd..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5159536084738751, - "ema_span_0": 1248.6062558084398, - "ema_span_1": 1044.0148033861185, - "enabled": true, - "initial_eprice_ema_dist": 0.000720250692351039, - "initial_qty_pct": 0.01670396209967201, - "markup_range": 0.004738122012700479, - "min_markup": 0.006488744252296942, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03196413882850113, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5777126246016717, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38378579127656987, - "ema_span_0": 475.7505407090246, - "ema_span_1": 659.0737608504875, - "enabled": true, - "initial_eprice_ema_dist": 0.002746445084509182, - "initial_qty_pct": 0.019927629425264704, - "markup_range": 0.006178940525086855, - "min_markup": 0.005286517167723811, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03924673349997439, - "rentry_pprice_dist_wallet_exposure_weighting": 6.806478169513814, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/YFIUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/YFIUSDT.json deleted file mode 100644 index 7d09033ff..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.676060959901111, - "ema_span_0": 1142.1265796149928, - "ema_span_1": 1371.4409147256022, - "enabled": true, - "initial_eprice_ema_dist": -0.002653295645807994, - "initial_qty_pct": 0.005312279960658424, - "markup_range": 0.002618427243223781, - "min_markup": 0.0050054003114357384, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04147565692951239, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8328916683991203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.292027319909774, - "ema_span_0": 1329.4680952753552, - "ema_span_1": 436.49613116495897, - "enabled": true, - "initial_eprice_ema_dist": -0.0048223415569343606, - "initial_qty_pct": 0.009453639768089012, - "markup_range": 0.0016749767397669865, - "min_markup": 0.004004167712974628, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973145553035486, - "rentry_pprice_dist_wallet_exposure_weighting": 0.615152389890463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/YGGUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/YGGUSDT.json deleted file mode 100644 index 608eab8a5..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.268990724858785, - "ema_span_0": 468.08288387411267, - "ema_span_1": 579.8173687921092, - "enabled": true, - "initial_eprice_ema_dist": 0.0028414420430151756, - "initial_qty_pct": 0.01179904416141956, - "markup_range": 0.002798860765045448, - "min_markup": 0.0028004118006462217, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023963209191829024, - "rentry_pprice_dist_wallet_exposure_weighting": 5.582733607686806, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.337218641941045, - "ema_span_0": 1394.0595360103011, - "ema_span_1": 1209.904791055211, - "enabled": true, - "initial_eprice_ema_dist": -0.0020670190574686915, - "initial_qty_pct": 0.01463807095251366, - "markup_range": 0.007272680089655267, - "min_markup": 0.006039483470154668, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028533484009548606, - "rentry_pprice_dist_wallet_exposure_weighting": 6.256314642408412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZECUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ZECUSDT.json deleted file mode 100644 index d5abdac59..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7594354352831985, - "ema_span_0": 542.7741159369552, - "ema_span_1": 602.4812499261363, - "enabled": true, - "initial_eprice_ema_dist": -0.007776011232012096, - "initial_qty_pct": 0.005702446882948222, - "markup_range": 0.005049156016364269, - "min_markup": 0.007182498839164601, - "n_close_orders": 6, - "rentry_pprice_dist": 0.034107437490716805, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2714999547385133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 618.3722903535505, - "ema_span_1": 599.4653387623184, - "enabled": true, - "initial_eprice_ema_dist": -0.0075840531594475085, - "initial_qty_pct": 0.015436428114501471, - "markup_range": 0.0023523663973713683, - "min_markup": 0.002397480696432616, - "n_close_orders": 4, - "rentry_pprice_dist": 0.017801109526425937, - "rentry_pprice_dist_wallet_exposure_weighting": 6.211289743014393, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZENUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ZENUSDT.json deleted file mode 100644 index 3d78df12d..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206588914585735, - "ema_span_0": 1157.1068280298107, - "ema_span_1": 766.4229120044222, - "enabled": true, - "initial_eprice_ema_dist": -0.003372014009289939, - "initial_qty_pct": 0.0055136547261046545, - "markup_range": 0.0016286315760876556, - "min_markup": 0.001692642120768909, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01662249757307718, - "rentry_pprice_dist_wallet_exposure_weighting": 2.986489225762747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4218581185565595, - "ema_span_0": 1151.3764723962074, - "ema_span_1": 1315.8348812259678, - "enabled": true, - "initial_eprice_ema_dist": 0.002651361285933056, - "initial_qty_pct": 0.019690763441432196, - "markup_range": 0.009988950418110019, - "min_markup": 0.007226252431477672, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03742071901440953, - "rentry_pprice_dist_wallet_exposure_weighting": 3.860530226766854, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZETAUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ZETAUSDT.json deleted file mode 100644 index f570584c0..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9318224769096846, - "ema_span_0": 1127.1394896912764, - "ema_span_1": 771.0503661829033, - "enabled": true, - "initial_eprice_ema_dist": -0.0064136943095479525, - "initial_qty_pct": 0.01697083145435416, - "markup_range": 0.0005781134225258528, - "min_markup": 0.0030729391401989326, - "n_close_orders": 7, - "rentry_pprice_dist": 0.026897960172828837, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4258726562539525, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZILUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ZILUSDT.json deleted file mode 100644 index 5a758c682..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.817623865324909, - "ema_span_0": 502.1634112705396, - "ema_span_1": 515.1604733452953, - "enabled": true, - "initial_eprice_ema_dist": 0.0027032796411474475, - "initial_qty_pct": 0.005182990898445523, - "markup_range": 0.006204584905094422, - "min_markup": 0.001678701646550289, - "n_close_orders": 6, - "rentry_pprice_dist": 0.033137489679151415, - "rentry_pprice_dist_wallet_exposure_weighting": 2.601709858493572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZRXUSDT.json b/configs/live/multisymbol/archived/2024-03-08_no_AU/ZRXUSDT.json deleted file mode 100644 index a6136d60e..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.46075229801589734, - "ema_span_0": 835.823381575181, - "ema_span_1": 448.12863625667836, - "enabled": true, - "initial_eprice_ema_dist": 0.0014594353815143143, - "initial_qty_pct": 0.01069170668471708, - "markup_range": 0.007838757209989538, - "min_markup": 0.00994117916640931, - "n_close_orders": 5, - "rentry_pprice_dist": 0.035868319356559916, - "rentry_pprice_dist_wallet_exposure_weighting": 4.287826588430675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/archived/2024-03-08_no_AU/metrics_no_AU.txt b/configs/live/multisymbol/archived/2024-03-08_no_AU/metrics_no_AU.txt deleted file mode 100644 index 5cd7c5a15..000000000 --- a/configs/live/multisymbol/archived/2024-03-08_no_AU/metrics_no_AU.txt +++ /dev/null @@ -1,562 +0,0 @@ -### single symbol backtest metrics ### - -update: 2024-03-09 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| MYROUSDT | 0.02543 | 0.0209 | 0.0188 | 0.01082 | 0.008605 | 0.007909 | 7.883 | 0.02343 | 0.0 | nan | 0.01863 | 2.62 | 273499999.975 | -| WIFUSDT | 0.02315 | 0.01038 | 0.03902 | 0.02165 | 0.008342 | 0.008355 | 27.18 | 0.04728 | 0.0 | 0.04348 | 0.07262 | 49.38 | 273499999.977 | -| LSKUSDT | 0.02318 | 0.005047 | 0.01331 | 0.0004902 | 0.005429 | 0.004203 | 23.62 | 0.01714 | 0.0 | 0.001741 | 0.004231 | 42.38 | 273499999.977 | -| MAVIAUSDT | 0.01383 | 0.007005 | 0.0172 | 0.0 | 0.01527 | 0.01054 | 20.43 | 0.04266 | 0.0 | 0.005078 | 0.009613 | 15.54 | 273499999.986 | -| ZETAUSDT | 0.01262 | 0.003826 | 0.006704 | 0.0002404 | 0.009875 | 0.008127 | 25.97 | 0.04135 | 0.0 | 0.0128 | 0.08509 | 34.62 | 273499999.987 | -| XAIUSDT | 0.01156 | 0.005087 | 0.07054 | 0.05983 | 0.009591 | 0.01262 | 80.77 | 0.07122 | 0.0 | 0.06662 | 0.08413 | 58.38 | 273499999.988 | -| STRKUSDT | 0.01219 | 0.007389 | 0.004768 | 0.0 | 0.01193 | 0.009279 | 27.7 | 0.03819 | 0.0 | 0.0004527 | 0.0005476 | 16.25 | 273499999.988 | -| PIXELUSDT | 0.01158 | 0.006616 | 0.0104 | 0.0 | 0.005946 | 0.004846 | 23.77 | 0.02042 | 0.0 | 0.001284 | 0.001738 | 17.33 | 273499999.988 | -| 1000BONKUSDT | 0.00928 | 0.006123 | 0.034 | 0.01382 | 0.007436 | 0.007052 | 17.33 | 0.04097 | 0.0 | 0.02992 | 0.08933 | 106.38 | 273499999.991 | -| OMUSDT | 0.008619 | 0.00311 | 0.009059 | 0.00249 | 0.0066 | 0.005406 | 16.57 | 0.02819 | 0.0 | 0.01064 | 0.04809 | 23.38 | 273499999.991 | -| MEMEUSDT | 0.008185 | 0.003315 | 0.01778 | 0.004349 | 0.01158 | 0.009635 | 38.08 | 0.03833 | 0.0 | 0.01129 | 0.04767 | 125.46 | 273499999.992 | -| ONDOUSDT | 0.007793 | 0.005604 | 0.02604 | 0.005352 | 0.008665 | 0.006859 | 31.48 | 0.02424 | 0.0 | 0.01249 | 0.02347 | 47.42 | 273499999.992 | -| 1000RATSUSDT | 0.007982 | 0.00242 | 0.03616 | 0.02382 | 0.0145 | 0.01573 | 34.1 | 0.06861 | 0.0 | 0.06126 | 0.1264 | 83.38 | 273499999.992 | -| ARKMUSDT | 0.007439 | 0.002502 | 0.03048 | 0.01087 | 0.008297 | 0.007661 | 26.97 | 0.04031 | 0.0 | 0.02346 | 0.05527 | 223.88 | 273499999.993 | -| AIUSDT | 0.007015 | 0.003128 | 0.0154 | 0.005464 | 0.008285 | 0.007029 | 41.67 | 0.02592 | 0.0 | 0.003895 | 0.01152 | 59.46 | 273499999.993 | -| BICOUSDT | 0.006791 | 0.002225 | 0.02597 | 0.0057 | 0.006048 | 0.005036 | 27.0 | 0.02495 | 0.0 | 0.01779 | 0.03931 | 161.46 | 273499999.993 | -| JUPUSDT | 0.006885 | 0.003763 | 0.01583 | 0.002989 | 0.006213 | 0.005124 | 26.0 | 0.0271 | 0.0 | 0.01077 | 0.06028 | 36.21 | 273499999.993 | -| AUCTIONUSDT | 0.006605 | 0.002016 | 0.009622 | 0.0003492 | 0.01478 | 0.01161 | 35.5 | 0.04735 | 0.0 | 0.007399 | 0.05147 | 83.42 | 273499999.993 | -| MANTAUSDT | 0.006543 | 0.002223 | 0.03852 | 0.007075 | 0.01712 | 0.0146 | 25.65 | 0.07256 | 0.0 | 0.03553 | 0.05591 | 49.38 | 273499999.993 | -| DYMUSDT | 0.005695 | 0.002271 | 0.008101 | 0.0006993 | 0.003398 | 0.002592 | 16.7 | 0.0102 | 0.0 | 0.001076 | 0.001422 | 29.67 | 273499999.994 | -| JTOUSDT | 0.006451 | 0.003303 | 0.03431 | 0.0149 | 0.009369 | 0.0123 | 25.68 | 0.0804 | 0.0 | 0.07289 | 0.1008 | 90.54 | 273499999.994 | -| ALTUSDT | 0.00616 | 0.002249 | 0.01765 | 0.0 | 0.01409 | 0.01086 | 22.1 | 0.04346 | 0.0 | 0.005567 | 0.007895 | 42.38 | 273499999.994 | -| 1000SATSUSDT | 0.005742 | 0.003321 | 0.01722 | 0.005061 | 0.008818 | 0.007572 | 44.98 | 0.03659 | 0.0 | 0.01745 | 0.07105 | 86.38 | 273499999.994 | -| BIGTIMEUSDT | 0.005589 | 0.0043 | 0.02086 | 0.01131 | 0.007934 | 0.01213 | 70.47 | 0.05888 | 0.0 | 0.05037 | 0.1863 | 147.38 | 273499999.994 | -| NTRNUSDT | 0.004897 | 0.002279 | 0.04627 | 0.03266 | 0.009153 | 0.01125 | 65.4 | 0.07906 | 0.0 | 0.07335 | 0.09335 | 114.46 | 273499999.995 | -| USTCUSDT | 0.004845 | 0.002014 | 0.009116 | 8.21e-05 | 0.008776 | 0.006853 | 37.85 | 0.0287 | 0.0 | 0.004742 | 0.0473 | 101.46 | 273499999.995 | -| TOKENUSDT | 0.005458 | 0.002509 | 0.01654 | 0.001861 | 0.0106 | 0.00875 | 38.35 | 0.03939 | 0.0 | 0.01375 | 0.07995 | 125.33 | 273499999.995 | -| SUPERUSDT | 0.004799 | 0.002288 | 0.01764 | 0.005244 | 0.00942 | 0.007856 | 32.12 | 0.03107 | 0.0 | 0.009149 | 0.04076 | 102.42 | 273499999.995 | -| WLDUSDT | 0.005484 | 0.003084 | 0.04347 | 0.02317 | 0.008313 | 0.009413 | 101.1 | 0.08592 | 0.0 | 0.07832 | 0.1526 | 227.46 | 273499999.995 | -| BADGERUSDT | 0.00486 | 0.001439 | 0.007368 | 0.0 | 0.01108 | 0.00903 | 51.6 | 0.03708 | 0.0 | 0.001983 | 0.004228 | 119.46 | 273499999.995 | -| NFPUSDT | 0.004635 | 0.003976 | 0.1729 | 0.1028 | 0.01765 | 0.01841 | 86.07 | 0.09606 | 0.0 | 0.0866 | 0.107 | 71.42 | 273499999.995 | -| GLMUSDT | 0.005045 | 0.002569 | 0.005646 | 0.0 | 0.01236 | 0.009802 | 36.25 | 0.03491 | 0.0 | 0.00135 | 0.001815 | 14.54 | 273499999.995 | -| RONINUSDT | 0.005133 | 0.003572 | 0.01812 | 0.0 | 0.009194 | 0.007762 | 24.32 | 0.02966 | 0.0 | 0.004269 | 0.005354 | 30.79 | 273499999.995 | -| ORDIUSDT | 0.003714 | 0.003374 | 0.04689 | 0.02441 | 0.01211 | 0.0138 | 95.28 | 0.1045 | 0.0 | 0.09449 | 0.1227 | 121.46 | 273499999.996 | -| STEEMUSDT | 0.004078 | 0.001871 | 0.01564 | 0.002734 | 0.006207 | 0.005323 | 68.35 | 0.02611 | 0.0 | 0.005447 | 0.02579 | 120.38 | 273499999.996 | -| BEAMXUSDT | 0.0035 | 0.002632 | 0.0281 | 0.01267 | 0.007563 | 0.009215 | 22.17 | 0.06585 | 0.0 | 0.06034 | 0.1086 | 111.42 | 273499999.996 | -| RIFUSDT | 0.004037 | 0.001722 | 0.02793 | 0.003098 | 0.01081 | 0.009277 | 80.42 | 0.04368 | 0.0 | 0.0148 | 0.0242 | 138.46 | 273499999.996 | -| OXTUSDT | 0.003754 | 0.001368 | 0.01489 | 0.004732 | 0.006333 | 0.005087 | 53.6 | 0.02003 | 0.0 | 0.006463 | 0.03349 | 209.46 | 273499999.996 | -| BSVUSDT | 0.003635 | 0.00209 | 0.03607 | 0.002629 | 0.007914 | 0.006344 | 39.8 | 0.03516 | 0.0 | 0.02931 | 0.04868 | 139.46 | 273499999.996 | -| SLPUSDT | 0.004367 | 0.002072 | 0.02349 | 0.00837 | 0.005698 | 0.005253 | 26.2 | 0.0275 | 0.0 | 0.01974 | 0.06722 | 128.38 | 273499999.996 | -| ONGUSDT | 0.004023 | 0.001218 | 0.01609 | 0.007556 | 0.00516 | 0.004684 | 27.83 | 0.01993 | 0.0 | 0.01157 | 0.03109 | 101.42 | 273499999.996 | -| PORTALUSDT | 0.003728 | 0.005764 | 0.03447 | 0.0 | 0.008374 | 0.007204 | 11.73 | 0.04606 | 0.0 | 0.0135 | 0.0135 | 7.33 | 273499999.996 | -| STRAXUSDT | 0.00411 | 0.00225 | 0.06134 | 0.02369 | 0.01241 | 0.01379 | 84.88 | 0.1053 | 0.0 | 0.09485 | 0.1402 | 148.88 | 273499999.996 | -| ETHWUSDT | 0.003552 | 0.00275 | 0.05225 | 0.02508 | 0.007795 | 0.007023 | 63.62 | 0.04376 | 0.0 | 0.04159 | 0.06032 | 100.46 | 273499999.996 | -| ACEUSDT | 0.003738 | 0.003313 | 0.07745 | 0.0521 | 0.009246 | 0.01051 | 52.7 | 0.09202 | 0.0 | 0.08421 | 0.1063 | 80.54 | 273499999.996 | -| BONDUSDT | 0.003698 | 0.002856 | 0.02574 | 0.002192 | 0.009921 | 0.008632 | 47.73 | 0.04236 | 0.0 | 0.01076 | 0.01458 | 144.38 | 273499999.996 | -| UMAUSDT | 0.002535 | 0.001093 | 0.02 | 0.002989 | 0.006984 | 0.005998 | 65.78 | 0.03772 | 0.0 | 0.0193 | 0.09294 | 302.46 | 273499999.997 | -| TRBUSDT | 0.003078 | 0.001285 | 0.0212 | 0.008559 | 0.01895 | 0.01719 | 114.5 | 0.08822 | 0.0 | 0.06732 | 0.195 | 1281.67 | 273499999.997 | -| ARKUSDT | 0.002611 | 0.0009559 | 0.01461 | 0.00379 | 0.01732 | 0.0134 | 70.72 | 0.05443 | 0.0 | 0.01027 | 0.0454 | 170.29 | 273499999.997 | -| CYBERUSDT | 0.002974 | 0.00209 | 0.01377 | 0.002255 | 0.00599 | 0.005115 | 42.62 | 0.02141 | 0.0 | 0.007773 | 0.03331 | 199.46 | 273499999.997 | -| MOVRUSDT | 0.002781 | 0.002513 | 0.04798 | 0.02155 | 0.009278 | 0.009951 | 30.22 | 0.09253 | 0.0 | 0.08319 | 0.1288 | 72.46 | 273499999.997 | -| SNTUSDT | 0.003034 | 0.001192 | 0.007192 | 0.0009219 | 0.01018 | 0.008714 | 52.88 | 0.03452 | 0.0 | 0.001734 | 0.006153 | 126.46 | 273499999.997 | -| 1000LUNCUSDT | 0.003019 | 0.002062 | 0.03886 | 0.006592 | 0.007282 | 0.00712 | 93.75 | 0.05681 | 0.0 | 0.04893 | 0.133 | 545.42 | 273499999.997 | -| CAKEUSDT | 0.003494 | 0.001221 | 0.01556 | 0.0027 | 0.01238 | 0.01041 | 67.08 | 0.03974 | 0.0 | 0.007062 | 0.01644 | 126.46 | 273499999.997 | -| SEIUSDT | 0.002698 | 0.002689 | 0.05918 | 0.02045 | 0.009246 | 0.009281 | 92.57 | 0.07275 | 0.0 | 0.06749 | 0.1241 | 203.88 | 273499999.997 | -| LOOMUSDT | 0.002615 | 0.001894 | 0.008513 | 0.0 | 0.008941 | 0.00805 | 46.8 | 0.03742 | 0.0 | 0.007748 | 0.02576 | 148.38 | 273499999.997 | -| HIFIUSDT | 0.002989 | 0.0027 | 0.0532 | 0.02234 | 0.007965 | 0.007165 | 69.63 | 0.03781 | 0.0 | 0.03527 | 0.06624 | 173.38 | 273499999.997 | -| ILVUSDT | 0.003298 | 0.001931 | 0.04812 | 0.002465 | 0.01051 | 0.009109 | 42.15 | 0.04715 | 0.0 | 0.02796 | 0.06585 | 118.29 | 273499999.997 | -| ORBSUSDT | 0.002738 | 0.002151 | 0.02843 | 0.01237 | 0.005138 | 0.004847 | 32.52 | 0.0198 | 0.0 | 0.0134 | 0.03317 | 142.71 | 273499999.997 | -| SUIUSDT | 0.00283 | 0.001687 | 0.03955 | 0.006909 | 0.01121 | 0.009388 | 100.5 | 0.0477 | 0.0 | 0.02821 | 0.1102 | 309.29 | 273499999.997 | -| MBLUSDT | 0.002717 | 0.001867 | 0.03318 | 0.01789 | 0.006446 | 0.005891 | 63.25 | 0.03019 | 0.0 | 0.02096 | 0.04057 | 114.33 | 273499999.997 | -| TIAUSDT | 0.00296 | 0.001979 | 0.0238 | 0.000552 | 0.0155 | 0.0116 | 56.53 | 0.04512 | 0.0 | 0.008485 | 0.02286 | 128.21 | 273499999.997 | -| PYTHUSDT | 0.003481 | 0.003011 | 0.02791 | 0.002662 | 0.01313 | 0.0104 | 26.47 | 0.0415 | 0.0 | 0.009124 | 0.0267 | 106.38 | 273499999.997 | -| 1000PEPEUSDT | 0.002834 | 0.002274 | 0.0366 | 0.02176 | 0.006043 | 0.01053 | 116.6 | 0.106 | 0.0 | 0.09372 | 0.2381 | 307.29 | 273499999.997 | -| ALPHAUSDT | 0.001657 | 0.002428 | 0.04477 | 0.01419 | 0.01007 | 0.0102 | 83.98 | 0.05854 | 0.0 | 0.04466 | 0.1396 | 1200.67 | 273499999.998 | -| BNTUSDT | 0.001771 | 0.001579 | 0.05389 | 0.02917 | 0.008314 | 0.007955 | 91.32 | 0.04815 | 0.0 | 0.04606 | 0.08415 | 210.46 | 273499999.998 | -| KASUSDT | 0.002441 | 0.001887 | 0.03245 | 0.0004466 | 0.008545 | 0.007415 | 79.58 | 0.03065 | 0.0 | 0.01266 | 0.03704 | 111.88 | 273499999.998 | -| LRCUSDT | 0.001806 | 0.001364 | 0.01719 | 0.008794 | 0.0109 | 0.009952 | 118.0 | 0.0497 | 0.0 | 0.03545 | 0.2183 | 1235.67 | 273499999.998 | -| XVGUSDT | 0.002121 | 0.001751 | 0.06452 | 0.02564 | 0.008627 | 0.00866 | 99.18 | 0.06946 | 0.0 | 0.06502 | 0.1055 | 246.46 | 273499999.998 | -| MINAUSDT | 0.001848 | 0.001372 | 0.02116 | 0.005576 | 0.006853 | 0.007228 | 52.23 | 0.03683 | 0.0 | 0.02526 | 0.1142 | 394.5 | 273499999.998 | -| POWRUSDT | 0.002481 | 0.002561 | 0.03849 | 0.01793 | 0.009237 | 0.007773 | 57.15 | 0.03831 | 0.0 | 0.03392 | 0.09891 | 132.88 | 273499999.998 | -| SNXUSDT | 0.001723 | 0.00176 | 0.06166 | 0.02464 | 0.01697 | 0.01966 | 109.2 | 0.1108 | 0.0 | 0.09253 | 0.1904 | 1301.67 | 273499999.998 | -| FETUSDT | 0.002084 | 0.00144 | 0.02351 | 0.004608 | 0.007496 | 0.006691 | 42.5 | 0.03411 | 0.0 | 0.02079 | 0.05748 | 415.88 | 273499999.998 | -| FRONTUSDT | 0.002149 | 0.002107 | 0.09676 | 0.05984 | 0.0115 | 0.01472 | 109.8 | 0.1043 | 0.0 | 0.09432 | 0.1365 | 167.38 | 273499999.998 | -| SPELLUSDT | 0.001616 | 0.001085 | 0.04621 | 0.008743 | 0.00787 | 0.00705 | 105.4 | 0.04634 | 0.0 | 0.03959 | 0.09118 | 548.46 | 273499999.998 | -| TWTUSDT | 0.001893 | 0.001108 | 0.01021 | 0.003422 | 0.003239 | 0.003034 | 14.2 | 0.01675 | 0.0 | 0.01141 | 0.05257 | 125.38 | 273499999.998 | -| EDUUSDT | 0.001671 | 0.0009921 | 0.02219 | 0.01352 | 0.01042 | 0.00969 | 86.13 | 0.05699 | 0.0 | 0.05218 | 0.1278 | 312.46 | 273499999.998 | -| AMBUSDT | 0.002013 | 0.001283 | 0.06206 | 0.02087 | 0.01598 | 0.01749 | 112.8 | 0.1109 | 0.0 | 0.09652 | 0.1907 | 343.46 | 273499999.998 | -| HFTUSDT | 0.002286 | 0.000969 | 0.03164 | 0.01986 | 0.01285 | 0.01449 | 84.43 | 0.1017 | 0.0 | 0.09223 | 0.1351 | 336.46 | 273499999.998 | -| MAVUSDT | 0.00214 | 0.001759 | 0.01732 | 0.001485 | 0.01146 | 0.01014 | 107.0 | 0.06501 | 0.0 | 0.01982 | 0.04641 | 252.46 | 273499999.998 | -| GLMRUSDT | 0.002078 | 0.001843 | 0.0499 | 0.008895 | 0.01257 | 0.01048 | 95.83 | 0.04329 | 0.0 | 0.02184 | 0.05237 | 163.92 | 273499999.998 | -| DODOXUSDT | 0.002302 | 0.001257 | 0.01775 | 0.0007843 | 0.008933 | 0.007569 | 57.95 | 0.03142 | 0.0 | 0.006034 | 0.06555 | 212.46 | 273499999.998 | -| PHBUSDT | 0.001791 | 0.001189 | 0.06449 | 0.009914 | 0.01345 | 0.01299 | 99.53 | 0.07014 | 0.0 | 0.05685 | 0.1093 | 385.38 | 273499999.998 | -| 1000FLOKIUSDT | 0.001579 | 0.001043 | 0.04479 | 0.007141 | 0.01059 | 0.009349 | 74.9 | 0.063 | 0.0 | 0.0588 | 0.1187 | 306.29 | 273499999.998 | -| POLYXUSDT | 0.002195 | 0.001169 | 0.007852 | 0.0006795 | 0.007389 | 0.006182 | 48.1 | 0.02654 | 0.0 | 0.002221 | 0.007576 | 134.88 | 273499999.998 | -| MATICUSDT | 0.001682 | 0.003756 | 0.05652 | 0.03586 | 0.009425 | 0.0131 | 109.3 | 0.09725 | 0.0 | 0.08813 | 0.2093 | 1232.67 | 273499999.998 | -| WAXPUSDT | 0.00212 | 0.001323 | 0.03517 | 0.00377 | 0.01088 | 0.009315 | 101.4 | 0.04011 | 0.0 | 0.01133 | 0.03886 | 141.38 | 273499999.998 | -| GASUSDT | 0.002171 | 0.002436 | 0.02098 | 0.008247 | 0.008878 | 0.009986 | 58.63 | 0.05758 | 0.0 | 0.04352 | 0.1763 | 134.88 | 273499999.998 | -| RLCUSDT | 0.001545 | 0.002763 | 0.06687 | 0.03117 | 0.01498 | 0.01441 | 113.8 | 0.07813 | 0.0 | 0.07273 | 0.1556 | 1315.67 | 273499999.998 | -| PENDLEUSDT | 0.001675 | 0.001139 | 0.03032 | 0.006679 | 0.01087 | 0.008985 | 72.43 | 0.04146 | 0.0 | 0.02478 | 0.0635 | 223.88 | 273499999.998 | -| KEYUSDT | 0.001978 | 0.001683 | 0.03132 | 0.01113 | 0.008204 | 0.008158 | 68.85 | 0.04652 | 0.0 | 0.0371 | 0.153 | 288.46 | 273499999.998 | -| BLURUSDT | 0.001777 | 0.001494 | 0.02613 | 0.007457 | 0.008909 | 0.008265 | 107.6 | 0.04609 | 0.0 | 0.03417 | 0.1061 | 314.46 | 273499999.998 | -| INJUSDT | 0.001869 | 0.001421 | 0.03442 | 0.007411 | 0.009972 | 0.008644 | 110.5 | 0.05094 | 0.0 | 0.02563 | 0.05894 | 568.88 | 273499999.998 | -| RADUSDT | 0.002027 | 0.001285 | 0.03646 | 0.002479 | 0.008087 | 0.007304 | 107.1 | 0.05386 | 0.0 | 0.03949 | 0.111 | 302.46 | 273499999.998 | -| COMBOUSDT | 0.001616 | 0.001699 | 0.04373 | 0.0269 | 0.007099 | 0.009458 | 36.92 | 0.09299 | 0.0 | 0.08421 | 0.1633 | 279.46 | 273499999.998 | -| RNDRUSDT | 0.001792 | 0.001917 | 0.04629 | 0.009859 | 0.0086 | 0.009346 | 65.23 | 0.06539 | 0.0 | 0.05812 | 0.1214 | 398.88 | 273499999.998 | -| AXLUSDT | 0.002334 | 0.00473 | 0.0202 | 0.0 | 0.00829 | 0.006456 | 7.533 | 0.02603 | 0.0 | 0.003367 | 0.003367 | 6.33 | 273499999.998 | -| YGGUSDT | 0.002297 | 0.001795 | 0.04472 | 0.01951 | 0.01015 | 0.01168 | 110.1 | 0.08188 | 0.0 | 0.07549 | 0.09696 | 215.83 | 273499999.998 | -| SOLUSDT | 0.002061 | 0.003216 | 0.06142 | 0.03271 | 0.01041 | 0.01347 | 117.3 | 0.09542 | 0.0 | 0.0864 | 0.1694 | 1270.67 | 273499999.998 | -| STXUSDT | 0.001917 | 0.001612 | 0.07601 | 0.0154 | 0.009829 | 0.01255 | 89.45 | 0.1089 | 0.0 | 0.0965 | 0.1623 | 380.38 | 273499999.998 | -| ARBUSDT | 0.001608 | 0.001326 | 0.05109 | 0.01608 | 0.008015 | 0.008434 | 105.1 | 0.06894 | 0.0 | 0.06563 | 0.1147 | 350.33 | 273499999.998 | -| ASTRUSDT | 0.00165 | 0.001272 | 0.0374 | 0.01807 | 0.0102 | 0.009182 | 96.23 | 0.04804 | 0.0 | 0.04554 | 0.109 | 387.88 | 273499999.998 | -| RDNTUSDT | 0.001574 | 0.001437 | 0.07264 | 0.01579 | 0.009499 | 0.00987 | 115.8 | 0.06941 | 0.0 | 0.06415 | 0.1135 | 337.46 | 273499999.998 | -| NMRUSDT | 0.002101 | 0.001436 | 0.04408 | 0.02703 | 0.008042 | 0.009139 | 83.5 | 0.06583 | 0.0 | 0.06236 | 0.1045 | 259.46 | 273499999.998 | -| CKBUSDT | 0.001763 | 0.0009154 | 0.03029 | 0.004585 | 0.006908 | 0.005783 | 52.83 | 0.03335 | 0.0 | 0.0237 | 0.05468 | 373.46 | 273499999.998 | -| ICPUSDT | 0.002133 | 0.00141 | 0.05224 | 0.01054 | 0.007324 | 0.006353 | 115.3 | 0.03522 | 0.0 | 0.02806 | 0.077 | 527.88 | 273499999.998 | -| STPTUSDT | 0.001911 | 0.001277 | 0.03051 | 0.01464 | 0.006175 | 0.005625 | 50.25 | 0.02934 | 0.0 | 0.02139 | 0.05346 | 141.38 | 273499999.998 | -| TLMUSDT | 0.001554 | 0.0009488 | 0.02808 | 0.001249 | 0.008174 | 0.007352 | 116.5 | 0.03632 | 0.0 | 0.01622 | 0.07447 | 343.46 | 273499999.998 | -| MDTUSDT | 0.00224 | 0.0007961 | 0.008587 | 8.282e-05 | 0.01014 | 0.008392 | 93.88 | 0.03395 | 0.0 | 0.002796 | 0.009868 | 251.46 | 273499999.998 | -| CRVUSDT | 0.0009249 | 0.001715 | 0.04485 | 0.01755 | 0.01342 | 0.01509 | 92.17 | 0.09584 | 0.0 | 0.0848 | 0.2429 | 1283.67 | 273499999.999 | -| XEMUSDT | 0.0006174 | 0.001046 | 0.01076 | 0.002642 | 0.008214 | 0.006707 | 107.2 | 0.02728 | 0.0 | 0.007651 | 0.07057 | 1100.67 | 273499999.999 | -| AAVEUSDT | 0.001376 | 0.00251 | 0.0475 | 0.02498 | 0.009745 | 0.01275 | 98.6 | 0.08263 | 0.0 | 0.07444 | 0.2258 | 1238.67 | 273499999.999 | -| EGLDUSDT | 0.001293 | 0.001716 | 0.04949 | 0.01638 | 0.01056 | 0.01572 | 93.77 | 0.1063 | 0.0 | 0.09292 | 0.2414 | 1270.67 | 273499999.999 | -| LEVERUSDT | 0.0006502 | 0.0004058 | 0.01475 | 0.009994 | 0.01392 | 0.01206 | 116.9 | 0.05675 | 0.0 | 0.05149 | 0.07197 | 343.46 | 273499999.999 | -| CTSIUSDT | 0.001143 | 0.001164 | 0.0389 | 0.01576 | 0.00942 | 0.01077 | 102.0 | 0.06425 | 0.0 | 0.0594 | 0.151 | 863.83 | 273499999.999 | -| KNCUSDT | 0.0007526 | 0.0007079 | 0.01084 | 0.002227 | 0.01213 | 0.009839 | 114.3 | 0.04019 | 0.0 | 0.007228 | 0.05478 | 1354.62 | 273499999.999 | -| ETHUSDT | 0.0005947 | 0.001704 | 0.03764 | 0.02192 | 0.005338 | 0.008241 | 119.5 | 0.04974 | 0.0 | 0.04721 | 0.1027 | 1527.96 | 273499999.999 | -| OMGUSDT | 0.00128 | 0.001789 | 0.0821 | 0.0249 | 0.01424 | 0.0138 | 114.3 | 0.08181 | 0.0 | 0.07477 | 0.1867 | 1344.58 | 273499999.999 | -| IDEXUSDT | 0.00123 | 0.000956 | 0.06564 | 0.01389 | 0.01225 | 0.0114 | 110.5 | 0.08568 | 0.0 | 0.07803 | 0.1241 | 309.46 | 273499999.999 | -| ACHUSDT | 0.001078 | 0.001095 | 0.03963 | 0.01709 | 0.01108 | 0.01051 | 59.22 | 0.06247 | 0.0 | 0.05815 | 0.1148 | 379.38 | 273499999.999 | -| QNTUSDT | 0.001067 | 0.0007538 | 0.01719 | 0.002352 | 0.005954 | 0.004651 | 108.4 | 0.0199 | 0.0 | 0.006683 | 0.05622 | 504.88 | 273499999.999 | -| AXSUSDT | 0.0006764 | 0.00135 | 0.05346 | 0.01477 | 0.0141 | 0.01387 | 107.0 | 0.08489 | 0.0 | 0.07059 | 0.1466 | 1203.67 | 273499999.999 | -| QTUMUSDT | 0.0005543 | 0.0008357 | 0.04347 | 0.006181 | 0.01495 | 0.01508 | 105.4 | 0.08234 | 0.0 | 0.0611 | 0.2491 | 1477.62 | 273499999.999 | -| RSRUSDT | 0.001062 | 0.001129 | 0.01422 | 0.006009 | 0.008936 | 0.01544 | 94.88 | 0.07521 | 0.0 | 0.05573 | 0.2341 | 1235.67 | 273499999.999 | -| MANAUSDT | 0.001004 | 0.001538 | 0.02044 | 0.009043 | 0.006286 | 0.007775 | 80.13 | 0.0439 | 0.0 | 0.03527 | 0.2469 | 1088.67 | 273499999.999 | -| ROSEUSDT | 0.0008846 | 0.0008731 | 0.02327 | 0.008616 | 0.00931 | 0.01003 | 95.92 | 0.08065 | 0.0 | 0.06866 | 0.2121 | 797.83 | 273499999.999 | -| FTMUSDT | 0.001047 | 0.001906 | 0.04809 | 0.01793 | 0.01209 | 0.01667 | 100.2 | 0.1114 | 0.0 | 0.09618 | 0.2404 | 1260.67 | 273499999.999 | -| LPTUSDT | 0.0009333 | 0.0006744 | 0.03504 | 0.01173 | 0.01417 | 0.01341 | 118.3 | 0.07509 | 0.0 | 0.0548 | 0.1217 | 847.83 | 273499999.999 | -| HBARUSDT | 0.001242 | 0.001826 | 0.06046 | 0.01472 | 0.00912 | 0.009396 | 112.6 | 0.05956 | 0.0 | 0.05219 | 0.155 | 1086.67 | 273499999.999 | -| BANDUSDT | 0.0008851 | 0.001386 | 0.04922 | 0.01335 | 0.01627 | 0.01515 | 105.4 | 0.09459 | 0.0 | 0.08456 | 0.2423 | 1317.67 | 273499999.999 | -| AGIXUSDT | 0.001292 | 0.00111 | 0.0366 | 0.018 | 0.008539 | 0.01042 | 76.37 | 0.07378 | 0.0 | 0.06784 | 0.09853 | 385.38 | 273499999.999 | -| FXSUSDT | 0.00124 | 0.0005403 | 0.01412 | 0.006004 | 0.008202 | 0.006872 | 55.28 | 0.03184 | 0.0 | 0.02043 | 0.06322 | 412.83 | 273499999.999 | -| AUDIOUSDT | 0.0007027 | 0.0009452 | 0.01682 | 0.0102 | 0.009886 | 0.009984 | 81.83 | 0.05174 | 0.0 | 0.04086 | 0.1845 | 931.83 | 273499999.999 | -| ETCUSDT | 0.0009185 | 0.001388 | 0.01861 | 0.006792 | 0.005829 | 0.005447 | 70.52 | 0.0282 | 0.0 | 0.02138 | 0.1285 | 1512.62 | 273499999.999 | -| DEFIUSDT | 0.0007485 | 0.001277 | 0.0497 | 0.02188 | 0.01196 | 0.01504 | 119.3 | 0.09487 | 0.0 | 0.08536 | 0.2108 | 1287.67 | 273499999.999 | -| ENJUSDT | 0.001059 | 0.001755 | 0.05733 | 0.02217 | 0.01285 | 0.01481 | 109.8 | 0.0835 | 0.0 | 0.07313 | 0.2473 | 1255.67 | 273499999.999 | -| IOSTUSDT | 0.0007782 | 0.001247 | 0.04511 | 0.01278 | 0.01365 | 0.01588 | 119.4 | 0.09186 | 0.0 | 0.07267 | 0.2128 | 1476.62 | 273499999.999 | -| MTLUSDT | 0.001415 | 0.001146 | 0.03913 | 0.01822 | 0.01335 | 0.01374 | 117.2 | 0.07746 | 0.0 | 0.06463 | 0.2404 | 1072.67 | 273499999.999 | -| HOTUSDT | 0.001439 | 0.002173 | 0.04511 | 0.01477 | 0.008373 | 0.009471 | 103.9 | 0.05835 | 0.0 | 0.05107 | 0.234 | 1073.67 | 273499999.999 | -| 1000SHIBUSDT | 0.001381 | 0.002042 | 0.01794 | 0.003806 | 0.00648 | 0.007598 | 71.32 | 0.0412 | 0.0 | 0.02597 | 0.1642 | 1032.25 | 273499999.999 | -| ZENUSDT | 0.001159 | 0.001828 | 0.02975 | 0.0182 | 0.006467 | 0.008282 | 109.5 | 0.05132 | 0.0 | 0.04861 | 0.1092 | 1199.67 | 273499999.999 | -| TONUSDT | 0.001346 | 0.002525 | 0.008528 | 0.0 | 0.004872 | 0.004314 | 15.63 | 0.02822 | 0.0 | 0.001803 | 0.001803 | 6.46 | 273499999.999 | -| OGNUSDT | 0.001097 | 0.001645 | 0.02447 | 0.004945 | 0.01399 | 0.01301 | 113.4 | 0.06688 | 0.0 | 0.02397 | 0.09632 | 1071.67 | 273499999.999 | -| WOOUSDT | 0.00111 | 0.0008392 | 0.01976 | 0.008031 | 0.01273 | 0.01034 | 65.5 | 0.04263 | 0.0 | 0.02082 | 0.07799 | 699.83 | 273499999.999 | -| SUSHIUSDT | 0.001071 | 0.00162 | 0.04007 | 0.008 | 0.01679 | 0.01608 | 112.9 | 0.08372 | 0.0 | 0.05029 | 0.2062 | 1280.67 | 273499999.999 | -| RENUSDT | 0.000709 | 0.0009409 | 0.04088 | 0.002607 | 0.01336 | 0.01681 | 110.8 | 0.1087 | 0.0 | 0.07311 | 0.2434 | 1241.67 | 273499999.999 | -| CELOUSDT | 0.0008728 | 0.0005517 | 0.02229 | 0.004396 | 0.01182 | 0.009789 | 80.53 | 0.04847 | 0.0 | 0.01917 | 0.1617 | 892.83 | 273499999.999 | -| BNBUSDT | 0.0005615 | 0.001516 | 0.02627 | 0.0107 | 0.005852 | 0.006546 | 100.0 | 0.04434 | 0.0 | 0.04073 | 0.1905 | 1487.62 | 273499999.999 | -| NEARUSDT | 0.0005187 | 0.0007133 | 0.01411 | 0.00647 | 0.008497 | 0.0134 | 80.45 | 0.0686 | 0.0 | 0.05225 | 0.227 | 1239.62 | 273499999.999 | -| APEUSDT | 0.001201 | 0.001207 | 0.03066 | 0.004603 | 0.006608 | 0.006364 | 80.58 | 0.04119 | 0.0 | 0.0329 | 0.1605 | 721.33 | 273499999.999 | -| ADAUSDT | 0.0006663 | 0.001431 | 0.01405 | 0.005406 | 0.00372 | 0.004537 | 38.18 | 0.02707 | 0.0 | 0.02175 | 0.1258 | 1497.62 | 273499999.999 | -| API3USDT | 0.001222 | 0.0009715 | 0.02249 | 0.002215 | 0.01028 | 0.008001 | 98.85 | 0.03425 | 0.0 | 0.01377 | 0.09368 | 744.83 | 273499999.999 | -| GRTUSDT | 0.001169 | 0.002097 | 0.04305 | 0.01326 | 0.01297 | 0.01444 | 114.2 | 0.0833 | 0.0 | 0.06768 | 0.2179 | 1174.67 | 273499999.999 | -| BELUSDT | 0.001371 | 0.001398 | 0.02284 | 0.01484 | 0.0119 | 0.01329 | 106.7 | 0.102 | 0.0 | 0.09168 | 0.1837 | 1205.67 | 273499999.999 | -| CELRUSDT | 0.0007964 | 0.001327 | 0.04174 | 0.00616 | 0.01222 | 0.01193 | 102.9 | 0.06487 | 0.0 | 0.04916 | 0.233 | 1074.67 | 273499999.999 | -| APTUSDT | 0.000691 | 0.0006405 | 0.009871 | 0.004225 | 0.008081 | 0.01066 | 64.37 | 0.05497 | 0.0 | 0.03622 | 0.1386 | 505.88 | 273499999.999 | -| LUNA2USDT | 0.0006935 | 0.0005478 | 0.01239 | 0.0004817 | 0.009266 | 0.00977 | 80.68 | 0.05387 | 0.0 | 0.02503 | 0.2324 | 544.83 | 273499999.999 | -| DENTUSDT | 0.0009575 | 0.001757 | 0.03582 | 0.009117 | 0.01054 | 0.009872 | 102.7 | 0.05362 | 0.0 | 0.03825 | 0.1114 | 1079.79 | 273499999.999 | -| BALUSDT | 0.0007932 | 0.0007128 | 0.02836 | 0.008536 | 0.01354 | 0.01172 | 119.4 | 0.05967 | 0.0 | 0.0489 | 0.1982 | 1283.67 | 273499999.999 | -| ATAUSDT | 0.0005357 | 0.0006091 | 0.01253 | 0.002885 | 0.01156 | 0.00922 | 112.2 | 0.03824 | 0.0 | 0.01147 | 0.08415 | 919.83 | 273499999.999 | -| STGUSDT | 0.0006633 | 0.0008165 | 0.02571 | 0.003724 | 0.01001 | 0.008996 | 117.9 | 0.04666 | 0.0 | 0.02186 | 0.08318 | 560.46 | 273499999.999 | -| OCEANUSDT | 0.001294 | 0.001478 | 0.0306 | 0.01269 | 0.0127 | 0.01213 | 116.5 | 0.06233 | 0.0 | 0.05035 | 0.1738 | 1220.67 | 273499999.999 | -| BLZUSDT | 0.00095 | 0.0008517 | 0.02121 | 0.006777 | 0.0117 | 0.01078 | 101.8 | 0.06003 | 0.0 | 0.03632 | 0.13 | 1267.67 | 273499999.999 | -| SANDUSDT | 0.000985 | 0.001826 | 0.03562 | 0.01118 | 0.008223 | 0.009819 | 86.05 | 0.05833 | 0.0 | 0.05102 | 0.1755 | 1137.67 | 273499999.999 | -| AVAXUSDT | 0.001406 | 0.002032 | 0.03465 | 0.01366 | 0.01047 | 0.009577 | 104.1 | 0.04726 | 0.0 | 0.04076 | 0.1607 | 1261.67 | 273499999.999 | -| SFPUSDT | 0.0009542 | 0.001798 | 0.04141 | 0.01963 | 0.01023 | 0.01247 | 107.0 | 0.08059 | 0.0 | 0.06849 | 0.162 | 1107.67 | 273499999.999 | -| ENSUSDT | 0.0005569 | 0.0005085 | 0.02472 | 0.00094 | 0.01324 | 0.0108 | 98.68 | 0.0566 | 0.0 | 0.02069 | 0.08157 | 828.83 | 273499999.999 | -| LINAUSDT | 0.0009989 | 0.001343 | 0.04938 | 0.01447 | 0.01866 | 0.01937 | 115.8 | 0.1146 | 0.0 | 0.08834 | 0.2091 | 1084.67 | 273499999.999 | -| KAVAUSDT | 0.0006046 | 0.0006907 | 0.02832 | 0.01203 | 0.01411 | 0.01386 | 106.2 | 0.08314 | 0.0 | 0.06469 | 0.2345 | 1318.67 | 273499999.999 | -| DOGEUSDT | 0.001247 | 0.002458 | 0.05446 | 0.008195 | 0.00684 | 0.008213 | 119.5 | 0.05169 | 0.0 | 0.04113 | 0.2262 | 1336.58 | 273499999.999 | -| HIGHUSDT | 0.00101 | 0.0007946 | 0.03236 | 0.0 | 0.0119 | 0.01199 | 109.8 | 0.08395 | 0.0 | 0.05392 | 0.08443 | 394.88 | 273499999.999 | -| IMXUSDT | 0.0009557 | 0.001128 | 0.04148 | 0.01612 | 0.01259 | 0.01003 | 108.9 | 0.04632 | 0.0 | 0.04206 | 0.1052 | 755.83 | 273499999.999 | -| 1INCHUSDT | 0.0008 | 0.0008964 | 0.02056 | 0.007074 | 0.01157 | 0.009836 | 103.6 | 0.04333 | 0.0 | 0.02759 | 0.2377 | 1168.54 | 273499999.999 | -| XLMUSDT | 0.0006884 | 0.001965 | 0.02714 | 0.00591 | 0.008274 | 0.008894 | 109.2 | 0.05022 | 0.0 | 0.03115 | 0.1289 | 1508.62 | 273499999.999 | -| JOEUSDT | 0.0007066 | 0.0006673 | 0.03326 | 0.006264 | 0.01566 | 0.01283 | 109.8 | 0.06463 | 0.0 | 0.04089 | 0.07097 | 344.46 | 273499999.999 | -| LITUSDT | 0.001371 | 0.0009419 | 0.01236 | 0.002432 | 0.01392 | 0.0116 | 118.7 | 0.04893 | 0.0 | 0.009332 | 0.08504 | 1113.67 | 273499999.999 | -| DARUSDT | 0.001335 | 0.001028 | 0.02561 | 0.005303 | 0.01028 | 0.008493 | 103.5 | 0.04395 | 0.0 | 0.03003 | 0.08847 | 678.83 | 273499999.999 | -| LDOUSDT | 0.001138 | 0.00101 | 0.04784 | 0.00493 | 0.01349 | 0.01186 | 93.27 | 0.07659 | 0.0 | 0.056 | 0.226 | 532.46 | 273499999.999 | -| VETUSDT | 0.0008448 | 0.001774 | 0.04011 | 0.01316 | 0.005858 | 0.007584 | 98.68 | 0.05112 | 0.0 | 0.04415 | 0.163 | 1483.62 | 273499999.999 | -| XVSUSDT | 0.0007277 | 0.0008488 | 0.03426 | 0.008487 | 0.01131 | 0.01062 | 71.5 | 0.07011 | 0.0 | 0.06073 | 0.1084 | 329.88 | 273499999.999 | -| SXPUSDT | 0.0008017 | 0.002377 | 0.03843 | 0.01654 | 0.01078 | 0.01167 | 112.8 | 0.06541 | 0.0 | 0.05905 | 0.2048 | 1325.58 | 273499999.999 | -| IDUSDT | 0.0008538 | 0.0006573 | 0.0251 | 0.01221 | 0.01419 | 0.01522 | 80.15 | 0.0992 | 0.0 | 0.08675 | 0.15 | 350.38 | 273499999.999 | -| AGLDUSDT | 0.001166 | 0.001238 | 0.04942 | 0.01049 | 0.01147 | 0.01092 | 86.22 | 0.0629 | 0.0 | 0.04869 | 0.07651 | 222.88 | 273499999.999 | -| ANKRUSDT | 0.001172 | 0.002016 | 0.03302 | 0.01613 | 0.008533 | 0.01068 | 112.2 | 0.04455 | 0.0 | 0.03222 | 0.09409 | 1136.67 | 273499999.999 | -| CHZUSDT | 0.0006134 | 0.001304 | 0.009284 | 0.0009306 | 0.01026 | 0.008725 | 104.8 | 0.03863 | 0.0 | 0.009659 | 0.1186 | 1141.67 | 273499999.999 | -| GALAUSDT | 0.0009313 | 0.00114 | 0.02219 | 0.006214 | 0.009535 | 0.007823 | 76.28 | 0.03486 | 0.0 | 0.01848 | 0.08524 | 901.83 | 273499999.999 | -| MAGICUSDT | 0.0007178 | 0.0007988 | 0.02645 | 0.01259 | 0.01374 | 0.01091 | 101.3 | 0.04745 | 0.0 | 0.03926 | 0.07063 | 407.83 | 273499999.999 | -| RUNEUSDT | 0.001119 | 0.002262 | 0.05503 | 0.02207 | 0.009797 | 0.01604 | 114.0 | 0.1122 | 0.0 | 0.09948 | 0.2237 | 1280.67 | 273499999.999 | -| CFXUSDT | 0.001138 | 0.0005851 | 0.02342 | 0.01391 | 0.01167 | 0.01188 | 80.15 | 0.07609 | 0.0 | 0.06938 | 0.109 | 381.38 | 273499999.999 | -| DOTUSDT | 0.001153 | 0.001909 | 0.06884 | 0.02658 | 0.008816 | 0.0119 | 99.25 | 0.07884 | 0.0 | 0.07165 | 0.2483 | 1293.67 | 273499999.999 | -| BATUSDT | 0.0005923 | 0.000867 | 0.01461 | 0.006505 | 0.01003 | 0.009356 | 103.0 | 0.04063 | 0.0 | 0.0201 | 0.2355 | 1484.62 | 273499999.999 | -| ALGOUSDT | 0.0005772 | 0.0007849 | 0.01917 | 0.003068 | 0.01281 | 0.01038 | 104.7 | 0.0413 | 0.0 | 0.01251 | 0.1059 | 1360.58 | 273499999.999 | -| COTIUSDT | 0.001289 | 0.001492 | 0.05004 | 0.01469 | 0.01593 | 0.01424 | 115.7 | 0.08128 | 0.0 | 0.06841 | 0.2224 | 1093.67 | 273499999.999 | -| IOTAUSDT | 0.0006727 | 0.001087 | 0.01314 | 0.0008357 | 0.01212 | 0.009124 | 104.8 | 0.03724 | 0.0 | 0.007447 | 0.0733 | 1485.62 | 273499999.999 | -| NEOUSDT | 0.0007142 | 0.0009401 | 0.0214 | 0.008003 | 0.01296 | 0.01287 | 115.2 | 0.06006 | 0.0 | 0.04126 | 0.188 | 1480.62 | 273499999.999 | -| BCHUSDT | 0.0007495 | 0.001065 | 0.02965 | 0.01679 | 0.008831 | 0.01103 | 97.4 | 0.0655 | 0.0 | 0.06001 | 0.1964 | 1527.96 | 273499999.999 | -| RVNUSDT | 0.0008383 | 0.001519 | 0.03581 | 0.002849 | 0.008133 | 0.008476 | 93.5 | 0.05362 | 0.0 | 0.03041 | 0.2485 | 1108.67 | 273499999.999 | -| ICXUSDT | 0.000816 | 0.001036 | 0.0392 | 0.01649 | 0.01053 | 0.01392 | 114.6 | 0.08919 | 0.0 | 0.07889 | 0.2436 | 1269.67 | 273499999.999 | -| ANTUSDT | 0.0006228 | 0.0005367 | 0.01508 | 0.001185 | 0.01072 | 0.008738 | 81.23 | 0.03944 | 0.0 | 0.008659 | 0.0472 | 801.79 | 273499999.999 | -| XMRUSDT | 0.0006229 | 0.001078 | 0.03314 | 0.01114 | 0.006441 | 0.007638 | 95.58 | 0.04339 | 0.0 | 0.03775 | 0.2389 | 1494.62 | 273499999.999 | -| CVXUSDT | 0.00087 | 0.0006202 | 0.03093 | 0.01516 | 0.006746 | 0.006303 | 59.28 | 0.03266 | 0.0 | 0.0301 | 0.07643 | 532.46 | 273499999.999 | -| CTKUSDT | 0.0009153 | 0.002035 | 0.05731 | 0.005343 | 0.0122 | 0.01318 | 111.9 | 0.07307 | 0.0 | 0.057 | 0.2003 | 1204.67 | 273499999.999 | -| COMPUSDT | 0.0009742 | 0.001344 | 0.05992 | 0.01333 | 0.01324 | 0.01379 | 118.1 | 0.08216 | 0.0 | 0.07004 | 0.2364 | 1346.58 | 273499999.999 | -| GMXUSDT | 0.0007958 | 0.0006999 | 0.05255 | 0.02539 | 0.01151 | 0.01083 | 98.57 | 0.053 | 0.0 | 0.03834 | 0.0573 | 384.38 | 273499999.999 | -| MKRUSDT | 0.0005374 | 0.0007972 | 0.01716 | 0.002821 | 0.01163 | 0.01116 | 110.4 | 0.05679 | 0.0 | 0.0261 | 0.1947 | 1302.67 | 273499999.999 | -| XTZUSDT | 0.0005662 | 0.001316 | 0.01977 | 0.005925 | 0.01206 | 0.01065 | 111.4 | 0.05401 | 0.0 | 0.03312 | 0.1109 | 1491.62 | 273499999.999 | -| OPUSDT | 0.001438 | 0.001542 | 0.02878 | 0.01846 | 0.007179 | 0.009497 | 102.3 | 0.06717 | 0.0 | 0.06293 | 0.09947 | 645.38 | 273499999.999 | -| CHRUSDT | 0.000848 | 0.001425 | 0.05672 | 0.01364 | 0.0133 | 0.0137 | 112.6 | 0.08466 | 0.0 | 0.07303 | 0.2163 | 1091.67 | 273499999.999 | -| THETAUSDT | 0.001119 | 0.002331 | 0.0567 | 0.01435 | 0.01135 | 0.01283 | 107.5 | 0.0812 | 0.0 | 0.07126 | 0.2331 | 1380.62 | 273499999.999 | -| SKLUSDT | 0.000535 | 0.0008165 | 0.02156 | 0.006596 | 0.01325 | 0.01124 | 103.7 | 0.05371 | 0.0 | 0.03577 | 0.1261 | 1185.67 | 273499999.999 | -| SSVUSDT | 0.0008337 | 0.0006498 | 0.02909 | 0.0 | 0.01232 | 0.01125 | 110.2 | 0.0918 | 0.0 | 0.06763 | 0.1013 | 377.46 | 273499999.999 | -| LQTYUSDT | 0.0008591 | 0.001059 | 0.03424 | 0.009547 | 0.01468 | 0.01218 | 96.88 | 0.05783 | 0.0 | 0.03858 | 0.1236 | 363.46 | 273499999.999 | -| DYDXUSDT | 0.0007046 | 0.0007848 | 0.01067 | 0.000806 | 0.01132 | 0.008917 | 63.83 | 0.0351 | 0.0 | 0.005179 | 0.07234 | 909.83 | 273499999.999 | -| FILUSDT | 0.001056 | 0.00141 | 0.04378 | 0.009778 | 0.007665 | 0.01096 | 92.67 | 0.07452 | 0.0 | 0.06338 | 0.1626 | 1238.71 | 273499999.999 | -| PEOPLEUSDT | 0.001034 | 0.0007375 | 0.02556 | 0.007698 | 0.01259 | 0.01113 | 101.9 | 0.06591 | 0.0 | 0.04752 | 0.112 | 804.79 | 273499999.999 | -| HOOKUSDT | 0.0008769 | 0.0008919 | 0.04497 | 0.01105 | 0.01291 | 0.01219 | 89.07 | 0.07547 | 0.0 | 0.06557 | 0.1266 | 409.83 | 273499999.999 | -| ATOMUSDT | 0.0007205 | 0.001443 | 0.02535 | 0.006765 | 0.00851 | 0.008697 | 118.5 | 0.04734 | 0.0 | 0.03119 | 0.1892 | 1490.46 | 273499999.999 | -| NKNUSDT | 0.00141 | 0.002039 | 0.07931 | 0.01996 | 0.01208 | 0.01355 | 109.5 | 0.08614 | 0.0 | 0.07757 | 0.2268 | 1063.67 | 273499999.999 | -| UNFIUSDT | 0.001261 | 0.001657 | 0.05281 | 0.01447 | 0.01716 | 0.0183 | 112.7 | 0.1177 | 0.0 | 0.0959 | 0.2374 | 1112.67 | 273499999.999 | -| STMXUSDT | 0.0007998 | 0.00114 | 0.05857 | 0.02089 | 0.01437 | 0.01639 | 113.5 | 0.1027 | 0.0 | 0.08932 | 0.2141 | 1081.67 | 273499999.999 | -| ARPAUSDT | 0.0009294 | 0.001028 | 0.02939 | 0.005645 | 0.01072 | 0.009069 | 102.1 | 0.03985 | 0.0 | 0.0206 | 0.07423 | 870.83 | 273499999.999 | -| ZRXUSDT | 0.001169 | 0.00129 | 0.03524 | 0.01688 | 0.01119 | 0.01342 | 78.67 | 0.07348 | 0.0 | 0.0611 | 0.2391 | 1352.58 | 273499999.999 | -| ZILUSDT | 0.000969 | 0.001007 | 0.01528 | 0.004428 | 0.009269 | 0.008706 | 117.6 | 0.0366 | 0.0 | 0.01503 | 0.1995 | 1358.58 | 273499999.999 | -| REEFUSDT | 0.001287 | 0.00145 | 0.02831 | 0.009435 | 0.01078 | 0.01109 | 108.2 | 0.06287 | 0.0 | 0.04144 | 0.2281 | 1109.67 | 273499999.999 | -| TRUUSDT | 0.001125 | 0.0008254 | 0.02894 | 0.01924 | 0.0132 | 0.01297 | 80.17 | 0.07718 | 0.0 | 0.07146 | 0.1208 | 366.46 | 273499999.999 | -| LINKUSDT | 0.001178 | 0.002151 | 0.07357 | 0.02193 | 0.01049 | 0.01539 | 113.4 | 0.09983 | 0.0 | 0.08716 | 0.2436 | 1511.62 | 273499999.999 | -| STORJUSDT | 0.001084 | 0.001065 | 0.01748 | 0.007205 | 0.01277 | 0.01131 | 77.67 | 0.05232 | 0.0 | 0.03088 | 0.1584 | 1268.67 | 273499999.999 | -| KSMUSDT | 0.001075 | 0.001723 | 0.06442 | 0.02319 | 0.01193 | 0.0137 | 102.5 | 0.07274 | 0.0 | 0.06376 | 0.1915 | 1240.67 | 273499999.999 | -| XRPUSDT | 0.001127 | 0.001842 | 0.02367 | 0.005965 | 0.008032 | 0.007855 | 110.8 | 0.03683 | 0.0 | 0.0199 | 0.1803 | 1522.62 | 273499999.999 | -| ZECUSDT | 0.0007572 | 0.001045 | 0.02005 | 0.003408 | 0.01033 | 0.008773 | 119.9 | 0.04217 | 0.0 | 0.02352 | 0.1971 | 1492.62 | 273499999.999 | -| PERPUSDT | 0.0006522 | 0.0004515 | 0.01097 | 0.0006349 | 0.01371 | 0.01109 | 82.0 | 0.04688 | 0.0 | 0.006746 | 0.0417 | 367.46 | 273499999.999 | -| WAVESUSDT | 0.001068 | 0.001622 | 0.03594 | 0.02318 | 0.01003 | 0.01361 | 102.7 | 0.09213 | 0.0 | 0.08296 | 0.2078 | 1303.67 | 273499999.999 | -| DGBUSDT | 0.0008935 | 0.0008882 | 0.01315 | 0.002824 | 0.009156 | 0.008171 | 105.0 | 0.03818 | 0.0 | 0.01761 | 0.2017 | 1051.83 | 273499999.999 | -| BAKEUSDT | 0.0008182 | 0.0004912 | 0.02997 | 0.01398 | 0.01598 | 0.01521 | 98.72 | 0.0818 | 0.0 | 0.06852 | 0.2019 | 1023.67 | 273499999.999 | -| UNIUSDT | 0.0009438 | 0.00109 | 0.03459 | 0.01581 | 0.009705 | 0.00972 | 99.88 | 0.05566 | 0.0 | 0.04592 | 0.249 | 1266.67 | 273499999.999 | -| EOSUSDT | 0.0003729 | 0.0007147 | 0.02778 | 0.001047 | 0.01006 | 0.01 | 113.5 | 0.05469 | 0.0 | 0.02697 | 0.1283 | 1520.62 | 273500000.0 | -| FLMUSDT | 0.0004043 | 0.0006925 | 0.02574 | 0.01037 | 0.01448 | 0.01868 | 109.7 | 0.1238 | 0.0 | 0.0954 | 0.2087 | 1255.67 | 273500000.0 | -| BTCUSDT | 0.0003184 | 0.0006948 | 0.03415 | 0.01238 | 0.006735 | 0.007201 | 119.3 | 0.03928 | 0.0 | 0.03423 | 0.1331 | 1527.96 | 273500000.0 | -| TRXUSDT | 0.000334 | 0.001463 | 0.02019 | 0.01152 | 0.006747 | 0.008856 | 114.3 | 0.04976 | 0.0 | 0.04498 | 0.1715 | 1513.62 | 273500000.0 | -| JASMYUSDT | 0.0004807 | 0.0005462 | 0.008576 | 0.002768 | 0.006764 | 0.006036 | 102.5 | 0.02638 | 0.0 | 0.01065 | 0.0621 | 687.83 | 273500000.0 | -| DASHUSDT | 0.0003772 | 0.000645 | 0.01953 | 0.00053 | 0.01232 | 0.01012 | 112.2 | 0.04754 | 0.0 | 0.0151 | 0.2133 | 1493.62 | 273500000.0 | -| ONTUSDT | 0.0004432 | 0.0007569 | 0.03728 | 0.00229 | 0.01472 | 0.01443 | 119.9 | 0.08397 | 0.0 | 0.04925 | 0.1362 | 1486.62 | 273500000.0 | -| BLUEBIRDUSDT | 0.0003538 | 0.0003284 | 0.02508 | 0.01289 | 0.005657 | 0.005985 | 92.62 | 0.04005 | 0.0 | 0.03843 | 0.08014 | 491.46 | 273500000.0 | -| ARUSDT | 0.0004463 | 0.0004208 | 0.01907 | 0.005503 | 0.01178 | 0.0106 | 81.12 | 0.05406 | 0.0 | 0.028 | 0.1161 | 891.83 | 273500000.0 | -| IOTXUSDT | 0.0003147 | 0.0003671 | 0.01847 | 0.005996 | 0.01166 | 0.0103 | 87.28 | 0.05255 | 0.0 | 0.03128 | 0.09817 | 938.83 | 273500000.0 | -| FOOTBALLUSDT | 0.0001691 | 0.0002694 | 0.01698 | 0.0 | 0.009746 | 0.007738 | 122.0 | 0.03476 | 0.0 | 0.006485 | 0.0244 | 553.83 | 273698333.333 | -| 1000XECUSDT | 0.0003964 | 0.0004217 | 0.01498 | 0.003743 | 0.01115 | 0.009694 | 122.8 | 0.04086 | 0.0 | 0.01529 | 0.2244 | 902.83 | 273780000.0 | -| TUSDT | 0.0005998 | 0.0004626 | 0.02471 | 0.0 | 0.01085 | 0.009441 | 124.8 | 0.06258 | 0.0 | 0.02885 | 0.06282 | 400.42 | 273974999.999 | -| GALUSDT | 0.0005638 | 0.0008522 | 0.03278 | 0.01594 | 0.01459 | 0.01667 | 126.0 | 0.1128 | 0.0 | 0.09459 | 0.1817 | 672.38 | 274103333.333 | -| LTCUSDT | 0.0002005 | 0.0005797 | 0.01122 | 0.001738 | 0.009961 | 0.008785 | 133.7 | 0.04105 | 0.0 | 0.01296 | 0.07292 | 1519.62 | 274866666.666 | -| ONEUSDT | 0.0005825 | 0.0008714 | 0.02887 | 0.00837 | 0.01422 | 0.01328 | 136.7 | 0.06765 | 0.0 | 0.03611 | 0.2494 | 1085.67 | 275164999.999 | -| ALICEUSDT | 0.0005258 | 0.0007429 | 0.02155 | 0.009334 | 0.0126 | 0.01166 | 97.58 | 0.06108 | 0.0 | 0.04428 | 0.253 | 1087.83 | 276543885.153 | -| YFIUSDT | 0.000477 | 0.001791 | 0.01956 | 0.0112 | 0.01353 | 0.01538 | 153.8 | 0.09099 | 0.0 | 0.07613 | 0.2065 | 1284.67 | 276883333.333 | -| DUSKUSDT | 0.0003675 | 0.0004261 | 0.03628 | 0.005247 | 0.01576 | 0.01874 | 158.9 | 0.1122 | 0.0 | 0.07899 | 0.1819 | 790.83 | 277390000.0 | -| USDCUSDT | -1.03e-09 | -1.03e-08 | 0.01847 | 0.0 | 0.002043 | 0.000614 | nan | 0.005994 | 0.6 | 0.0001028 | 0.0001185 | 361.25 | 278000000.0 | -| BTCDOMUSDT | 8.97e-05 | 7.971e-05 | 0.02737 | 0.004167 | 0.006268 | 0.004685 | 165.7 | 0.02252 | 0.0 | 0.01263 | 0.02487 | 990.83 | 278070000.0 | -| C98USDT | 0.0003329 | 0.0004166 | 0.02793 | 0.0126 | 0.01299 | 0.01368 | 169.3 | 0.07827 | 0.0 | 0.06602 | 0.1259 | 926.83 | 278430000.0 | -| MASKUSDT | 0.0006069 | 0.0007236 | 0.03429 | 0.01957 | 0.01373 | 0.01229 | 246.3 | 0.07442 | 0.0 | 0.06805 | 0.1268 | 923.83 | 286128333.333 | -| GMTUSDT | 0.0007011 | 0.0007279 | 0.02875 | 0.02096 | 0.009918 | 0.01278 | 253.4 | 0.08465 | 0.0 | 0.07795 | 0.1154 | 723.79 | 286843333.333 | -| FLOWUSDT | 0.0004916 | 0.0005156 | 0.0399 | 0.02313 | 0.01591 | 0.01765 | 261.1 | 0.1214 | 0.0 | 0.1055 | 0.1446 | 756.83 | 288165412.737 | -| BNXUSDT | 0.0004874 | 0.0005449 | 0.02967 | 0.0 | 0.01374 | 0.01156 | 315.9 | 0.06613 | 0.0 | 0.02857 | 0.04017 | 379.38 | 293095000.0 | -| KLAYUSDT | 0.000678 | 0.0005282 | 0.03747 | 0.02051 | 0.01694 | 0.02298 | 323.2 | 0.1624 | 0.0 | 0.1387 | 0.2571 | 877.83 | 304796734.636 | -| GTCUSDT | 0.0003919 | 0.0005651 | 0.08363 | 0.02812 | 0.02252 | 0.02951 | 453.8 | 0.1657 | 0.0 | 0.1382 | 0.2321 | 1000.83 | 310698393.384 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| LSKUSDT | 0.02351 | 0.005865 | 0.02107 | 0.01098 | 0.005217 | 0.006598 | 52.7 | 0.03834 | 0.0 | 0.0384 | 0.06208 | 42.38 | 273499999.976 | -| MAVIAUSDT | 0.0194 | 0.01256 | 0.05347 | 0.03576 | 0.006001 | 0.00826 | 36.43 | 0.05324 | 0.0 | 0.05636 | 0.05998 | 15.54 | 273499999.981 | -| PIXELUSDT | 0.0193 | 0.009472 | 0.04261 | 0.02779 | 0.006675 | 0.005659 | 19.2 | 0.0418 | 0.0 | 0.0441 | 0.07652 | 17.33 | 273499999.981 | -| PORTALUSDT | 0.01172 | 0.01022 | 0.01789 | 0.003947 | 0.004666 | 0.003515 | 15.13 | 0.01381 | 0.0 | 0.009497 | 0.009497 | 7.33 | 273499999.988 | -| STRKUSDT | 0.009838 | 0.004805 | 0.01281 | 0.003059 | 0.009221 | 0.007543 | 24.23 | 0.02972 | 0.0 | 0.003695 | 0.008478 | 16.25 | 273499999.99 | -| 1000BONKUSDT | 0.007601 | 0.005168 | 0.01591 | 0.003249 | 0.006675 | 0.006048 | 29.43 | 0.02714 | 0.0 | 0.01694 | 0.07198 | 106.38 | 273499999.992 | -| JUPUSDT | 0.008023 | 0.003563 | 0.02158 | 0.006897 | 0.005383 | 0.004464 | 35.75 | 0.02208 | 0.0 | 0.01274 | 0.01938 | 36.21 | 273499999.992 | -| NFPUSDT | 0.008047 | 0.005342 | 0.03788 | 0.02356 | 0.007649 | 0.007912 | 35.2 | 0.05254 | 0.0 | 0.05615 | 0.08854 | 71.42 | 273499999.992 | -| TOKENUSDT | 0.007087 | 0.003672 | 0.04422 | 0.01535 | 0.0111 | 0.01013 | 32.58 | 0.05395 | 0.0 | 0.04534 | 0.1218 | 125.33 | 273499999.993 | -| ONDOUSDT | 0.007187 | 0.005677 | 0.03857 | 0.01053 | 0.0129 | 0.01044 | 41.05 | 0.04458 | 0.0 | 0.02192 | 0.05365 | 47.42 | 273499999.993 | -| 1000RATSUSDT | 0.00685 | 0.003628 | 0.0175 | 0.006243 | 0.01176 | 0.009953 | 45.85 | 0.04612 | 0.0 | 0.03819 | 0.09415 | 83.38 | 273499999.993 | -| JTOUSDT | 0.005562 | 0.004694 | 0.05123 | 0.0355 | 0.009297 | 0.01175 | 36.68 | 0.07653 | 0.0 | 0.08342 | 0.1292 | 90.54 | 273499999.994 | -| MANTAUSDT | 0.006027 | 0.004437 | 0.02352 | 0.006487 | 0.007133 | 0.005785 | 33.02 | 0.02442 | 0.0 | 0.01471 | 0.04155 | 49.38 | 273499999.994 | -| RONINUSDT | 0.005653 | 0.005943 | 0.1897 | 0.1714 | 0.01077 | 0.01214 | 50.82 | 0.06922 | 0.0 | 0.07703 | 0.1043 | 30.79 | 273499999.994 | -| XVGUSDT | 0.004686 | 0.0026 | 0.0371 | 0.01894 | 0.008023 | 0.007569 | 68.53 | 0.04656 | 0.0 | 0.04921 | 0.09655 | 246.46 | 273499999.995 | -| ARKMUSDT | 0.005475 | 0.002454 | 0.03503 | 0.01503 | 0.0101 | 0.01073 | 45.17 | 0.08546 | 0.0 | 0.09455 | 0.2098 | 223.88 | 273499999.995 | -| TONUSDT | 0.005144 | 0.004671 | 0.01525 | 0.0 | 0.004933 | 0.003371 | 8.4 | 0.01422 | 0.0 | 0.002451 | 0.002451 | 6.46 | 273499999.995 | -| MYROUSDT | 0.00461 | 0.01244 | 0.08861 | 0.08221 | 0.03836 | 0.428 | 13.15 | 0.1956 | 0.0 | nan | 0.2432 | 2.62 | 273499999.995 | -| AIUSDT | 0.005454 | 0.004424 | 0.02044 | 0.003782 | 0.00807 | 0.006118 | 34.33 | 0.02497 | 0.0 | 0.01035 | 0.02834 | 59.46 | 273499999.995 | -| USTCUSDT | 0.004748 | 0.003526 | 0.0448 | 0.002011 | 0.008229 | 0.008363 | 38.1 | 0.05823 | 0.0 | 0.05055 | 0.1349 | 101.46 | 273499999.995 | -| ALTUSDT | 0.004532 | 0.003701 | 0.04062 | 0.02776 | 0.008129 | 0.008904 | 31.3 | 0.06061 | 0.0 | 0.06504 | 0.09712 | 42.38 | 273499999.995 | -| 1000SATSUSDT | 0.004722 | 0.003533 | 0.03527 | 0.008242 | 0.01003 | 0.009602 | 81.63 | 0.06057 | 0.0 | 0.04983 | 0.08526 | 86.38 | 273499999.995 | -| ONGUSDT | 0.004853 | 0.003323 | 0.08553 | 0.05261 | 0.005311 | 0.004458 | 75.22 | 0.02658 | 0.0 | 0.02879 | 0.04706 | 101.42 | 273499999.995 | -| STRAXUSDT | 0.004627 | 0.00359 | 0.03798 | 0.01589 | 0.007748 | 0.008778 | 47.98 | 0.05696 | 0.0 | 0.05762 | 0.1495 | 148.88 | 273499999.995 | -| ETHWUSDT | 0.005172 | 0.003232 | 0.02093 | 0.007088 | 0.007556 | 0.007171 | 40.67 | 0.05417 | 0.0 | 0.05565 | 0.1277 | 100.46 | 273499999.995 | -| MEMEUSDT | 0.004194 | 0.002986 | 0.01338 | 0.001593 | 0.00834 | 0.006664 | 40.43 | 0.02649 | 0.0 | 0.005896 | 0.04095 | 125.46 | 273499999.996 | -| DYMUSDT | 0.004449 | 0.002778 | 0.05859 | 0.04185 | 0.01004 | 0.01115 | 37.13 | 0.08465 | 0.0 | 0.09277 | 0.1074 | 29.67 | 273499999.996 | -| MOVRUSDT | 0.003705 | 0.004222 | 0.0196 | 0.007299 | 0.007456 | 0.008084 | 55.03 | 0.05185 | 0.0 | 0.05117 | 0.124 | 72.46 | 273499999.996 | -| AMBUSDT | 0.00354 | 0.002276 | 0.02366 | 0.008599 | 0.007535 | 0.007704 | 45.12 | 0.04256 | 0.0 | 0.03836 | 0.1592 | 343.46 | 273499999.996 | -| BEAMXUSDT | 0.003795 | 0.003743 | 0.05137 | 0.02295 | 0.01176 | 0.01213 | 33.58 | 0.06669 | 0.0 | 0.06693 | 0.1623 | 111.42 | 273499999.996 | -| BICOUSDT | 0.004016 | 0.002214 | 0.03427 | 0.01542 | 0.005634 | 0.00903 | 99.9 | 0.06137 | 0.0 | 0.06609 | 0.1441 | 161.46 | 273499999.996 | -| POLYXUSDT | 0.003746 | 0.002779 | 0.01477 | 0.004046 | 0.004788 | 0.004082 | 47.33 | 0.01968 | 0.0 | 0.009149 | 0.05005 | 134.88 | 273499999.996 | -| BSVUSDT | 0.003734 | 0.001586 | 0.01599 | 0.009171 | 0.00967 | 0.008702 | 55.45 | 0.03967 | 0.0 | 0.03 | 0.1081 | 139.46 | 273499999.996 | -| OMUSDT | 0.004172 | 0.002958 | 0.03697 | 0.01707 | 0.01261 | 0.01096 | 27.62 | 0.08715 | 0.0 | 0.09596 | 0.1129 | 23.38 | 273499999.996 | -| AXLUSDT | 0.00398 | 0.006046 | 0.05235 | 0.04717 | 0.006445 | 0.006868 | 20.45 | 0.06377 | 0.0 | 0.06815 | 0.06815 | 6.33 | 273499999.996 | -| BADGERUSDT | 0.003553 | 0.001869 | 0.05008 | 0.003243 | 0.01474 | 0.01292 | 62.13 | 0.07978 | 0.0 | 0.07562 | 0.227 | 119.46 | 273499999.996 | -| ACEUSDT | 0.004215 | 0.003507 | 0.03447 | 0.008477 | 0.009558 | 0.009755 | 39.83 | 0.07247 | 0.0 | 0.07172 | 0.154 | 80.54 | 273499999.996 | -| WIFUSDT | 0.003314 | 0.001374 | 0.01336 | 0.002359 | 0.01827 | 0.01275 | 57.27 | 0.05242 | 0.0 | 0.01297 | 0.03077 | 49.38 | 273499999.997 | -| FETUSDT | 0.003266 | 0.001923 | 0.03838 | 0.01457 | 0.01153 | 0.01126 | 87.9 | 0.06783 | 0.0 | 0.06862 | 0.2108 | 415.88 | 273499999.997 | -| HFTUSDT | 0.002662 | 0.001771 | 0.03435 | 0.01257 | 0.006824 | 0.005486 | 58.52 | 0.02654 | 0.0 | 0.02004 | 0.04768 | 336.46 | 273499999.997 | -| ZETAUSDT | 0.00317 | 0.003866 | 0.03588 | 0.01285 | 0.009034 | 0.007485 | 27.72 | 0.03014 | 0.0 | 0.02241 | 0.03706 | 34.62 | 273499999.997 | -| DODOXUSDT | 0.00309 | 0.002027 | 0.0224 | 0.008157 | 0.007413 | 0.006153 | 45.43 | 0.03033 | 0.0 | 0.02675 | 0.09184 | 212.46 | 273499999.997 | -| 1000FLOKIUSDT | 0.002943 | 0.001321 | 0.02027 | 0.01261 | 0.008023 | 0.01094 | 48.82 | 0.07006 | 0.0 | 0.07737 | 0.2283 | 306.29 | 273499999.997 | -| RIFUSDT | 0.003093 | 0.002659 | 0.02558 | 0.00767 | 0.01078 | 0.01119 | 53.82 | 0.05997 | 0.0 | 0.0458 | 0.1481 | 138.46 | 273499999.997 | -| WAXPUSDT | 0.003395 | 0.001954 | 0.03771 | 0.02271 | 0.006738 | 0.009165 | 62.48 | 0.06589 | 0.0 | 0.07103 | 0.1301 | 141.38 | 273499999.997 | -| AGLDUSDT | 0.003024 | 0.002217 | 0.01712 | 0.007215 | 0.01056 | 0.009767 | 61.97 | 0.0488 | 0.0 | 0.0373 | 0.187 | 222.88 | 273499999.997 | -| KEYUSDT | 0.003051 | 0.002022 | 0.03108 | 0.01874 | 0.006025 | 0.007829 | 73.73 | 0.06185 | 0.0 | 0.06619 | 0.1703 | 288.46 | 273499999.997 | -| ILVUSDT | 0.002662 | 0.001829 | 0.03731 | 0.006937 | 0.008358 | 0.00606 | 32.05 | 0.02469 | 0.0 | 0.01994 | 0.0322 | 118.29 | 273499999.997 | -| NMRUSDT | 0.002577 | 0.001738 | 0.02584 | 0.009937 | 0.01058 | 0.008731 | 72.63 | 0.05025 | 0.0 | 0.0505 | 0.1346 | 259.46 | 273499999.997 | -| MBLUSDT | 0.002723 | 0.001548 | 0.04028 | 0.02856 | 0.007284 | 0.01105 | 36.55 | 0.08121 | 0.0 | 0.08879 | 0.1269 | 114.33 | 273499999.997 | -| BIGTIMEUSDT | 0.00263 | 0.003462 | 0.02864 | 0.01077 | 0.01594 | 0.01611 | 54.68 | 0.09043 | 0.0 | 0.09038 | 0.2353 | 147.38 | 273499999.997 | -| TLMUSDT | 0.002608 | 0.001306 | 0.02689 | 0.01258 | 0.00729 | 0.007867 | 84.88 | 0.05015 | 0.0 | 0.05291 | 0.2281 | 343.46 | 273499999.997 | -| MDTUSDT | 0.002996 | 0.001594 | 0.02527 | 0.01232 | 0.009762 | 0.01106 | 66.98 | 0.0755 | 0.0 | 0.08306 | 0.1995 | 251.46 | 273499999.997 | -| 1000PEPEUSDT | 0.003124 | 0.001434 | 0.01686 | 0.002332 | 0.01116 | 0.009488 | 76.7 | 0.04406 | 0.0 | 0.0237 | 0.131 | 307.29 | 273499999.997 | -| XEMUSDT | 0.001638 | 0.001753 | 0.0532 | 0.02952 | 0.009437 | 0.01166 | 113.0 | 0.08282 | 0.0 | 0.09199 | 0.2472 | 1100.67 | 273499999.998 | -| LEVERUSDT | 0.001803 | 0.001301 | 0.02688 | 0.01183 | 0.01241 | 0.01088 | 91.2 | 0.06005 | 0.0 | 0.05987 | 0.1511 | 343.46 | 273499999.998 | -| IDEXUSDT | 0.001746 | 0.001397 | 0.03819 | 0.01787 | 0.007915 | 0.007303 | 56.38 | 0.03979 | 0.0 | 0.04192 | 0.09959 | 309.46 | 273499999.998 | -| UMAUSDT | 0.002117 | 0.001147 | 0.02254 | 0.01671 | 0.008573 | 0.01221 | 101.4 | 0.08063 | 0.0 | 0.08869 | 0.2253 | 302.46 | 273499999.998 | -| RSRUSDT | 0.001585 | 0.002124 | 0.03346 | 0.0152 | 0.01246 | 0.01119 | 78.98 | 0.05529 | 0.0 | 0.05353 | 0.233 | 1235.67 | 273499999.998 | -| TRBUSDT | 0.00194 | 0.001219 | 0.01407 | 0.004733 | 0.01405 | 0.01188 | 108.6 | 0.06004 | 0.0 | 0.04529 | 0.2263 | 1281.67 | 273499999.998 | -| GALUSDT | 0.001714 | 0.001979 | 0.07125 | 0.01323 | 0.01009 | 0.01177 | 90.87 | 0.09071 | 0.0 | 0.09987 | 0.2432 | 672.38 | 273499999.998 | -| AGIXUSDT | 0.001639 | 0.0009363 | 0.01903 | 0.009124 | 0.006617 | 0.008935 | 57.7 | 0.05817 | 0.0 | 0.06119 | 0.1926 | 385.38 | 273499999.998 | -| FRONTUSDT | 0.00237 | 0.002184 | 0.05241 | 0.008513 | 0.01487 | 0.01269 | 116.3 | 0.07385 | 0.0 | 0.05917 | 0.2181 | 167.38 | 273499999.998 | -| SPELLUSDT | 0.002083 | 0.0009052 | 0.02267 | 0.01305 | 0.008427 | 0.009938 | 89.9 | 0.06735 | 0.0 | 0.07275 | 0.1833 | 548.46 | 273499999.998 | -| SUSHIUSDT | 0.001763 | 0.002414 | 0.06033 | 0.03131 | 0.01434 | 0.01431 | 119.5 | 0.0873 | 0.0 | 0.09641 | 0.2449 | 1280.67 | 273499999.998 | -| EDUUSDT | 0.002307 | 0.00176 | 0.03942 | 0.02453 | 0.008269 | 0.01093 | 56.3 | 0.08335 | 0.0 | 0.09181 | 0.1642 | 312.46 | 273499999.998 | -| GRTUSDT | 0.0016 | 0.002115 | 0.04767 | 0.0197 | 0.01164 | 0.01206 | 83.23 | 0.07533 | 0.0 | 0.07925 | 0.235 | 1174.67 | 273499999.998 | -| CELRUSDT | 0.001512 | 0.002147 | 0.04463 | 0.01808 | 0.008475 | 0.009521 | 91.22 | 0.06284 | 0.0 | 0.06764 | 0.2017 | 1074.67 | 273499999.998 | -| ORDIUSDT | 0.001802 | 0.002387 | 0.03658 | 0.02698 | 0.01219 | 0.01742 | 38.95 | 0.0652 | 0.0 | 0.06983 | 0.1474 | 121.46 | 273499999.998 | -| LUNA2USDT | 0.002315 | 0.001526 | 0.02553 | 0.01009 | 0.009724 | 0.01217 | 81.6 | 0.07247 | 0.0 | 0.07609 | 0.2433 | 544.83 | 273499999.998 | -| SNTUSDT | 0.002175 | 0.002289 | 0.0282 | 0.003227 | 0.009192 | 0.007339 | 52.28 | 0.04111 | 0.0 | 0.0174 | 0.08846 | 126.46 | 273499999.998 | -| MAVUSDT | 0.002014 | 0.002121 | 0.06521 | 0.03008 | 0.01057 | 0.01265 | 58.2 | 0.08564 | 0.0 | 0.09412 | 0.1343 | 252.46 | 273499999.998 | -| NTRNUSDT | 0.001689 | 0.002485 | 0.02381 | 0.01728 | 0.00818 | 0.009359 | 38.97 | 0.05395 | 0.0 | 0.05783 | 0.1373 | 114.46 | 273499999.998 | -| STEEMUSDT | 0.002276 | 0.001748 | 0.02544 | 0.003287 | 0.008113 | 0.006003 | 62.68 | 0.02322 | 0.0 | 0.005747 | 0.02959 | 120.38 | 273499999.998 | -| BLZUSDT | 0.001875 | 0.00156 | 0.03094 | 0.01172 | 0.01408 | 0.01223 | 87.3 | 0.06845 | 0.0 | 0.06803 | 0.2354 | 1267.67 | 273499999.998 | -| ONEUSDT | 0.001502 | 0.001905 | 0.04002 | 0.0238 | 0.01105 | 0.01177 | 114.6 | 0.0654 | 0.0 | 0.07289 | 0.2095 | 1085.67 | 273499999.998 | -| ENSUSDT | 0.001729 | 0.001235 | 0.04449 | 0.01286 | 0.01095 | 0.01086 | 115.1 | 0.0769 | 0.0 | 0.08392 | 0.1953 | 828.83 | 273499999.998 | -| HIGHUSDT | 0.00234 | 0.002293 | 0.06238 | 0.02554 | 0.01093 | 0.01271 | 89.72 | 0.08197 | 0.0 | 0.08863 | 0.1398 | 394.88 | 273499999.998 | -| SUPERUSDT | 0.002375 | 0.001829 | 0.0183 | 0.009513 | 0.009402 | 0.008284 | 42.15 | 0.04249 | 0.0 | 0.03861 | 0.09437 | 102.42 | 273499999.998 | -| OXTUSDT | 0.001973 | 0.001889 | 0.03395 | 0.004235 | 0.007693 | 0.006097 | 43.13 | 0.02533 | 0.0 | 0.01632 | 0.1751 | 209.46 | 273499999.998 | -| PENDLEUSDT | 0.002354 | 0.0022 | 0.05204 | 0.03031 | 0.01249 | 0.01049 | 92.37 | 0.05858 | 0.0 | 0.06194 | 0.09552 | 223.88 | 273499999.998 | -| BLURUSDT | 0.00229 | 0.002121 | 0.04188 | 0.02876 | 0.008883 | 0.01279 | 61.52 | 0.08657 | 0.0 | 0.09494 | 0.1918 | 314.46 | 273499999.998 | -| SLPUSDT | 0.002144 | 0.00119 | 0.01465 | 0.001979 | 0.01554 | 0.01158 | 98.23 | 0.04939 | 0.0 | 0.01842 | 0.07955 | 128.38 | 273499999.998 | -| WLDUSDT | 0.002155 | 0.0009957 | 0.01074 | 0.004029 | 0.01326 | 0.01079 | 65.4 | 0.04684 | 0.0 | 0.02324 | 0.1232 | 227.46 | 273499999.998 | -| LOOMUSDT | 0.001923 | 0.003053 | 0.01618 | 0.003144 | 0.006944 | 0.005703 | 49.97 | 0.02656 | 0.0 | 0.01214 | 0.06383 | 148.38 | 273499999.998 | -| INJUSDT | 0.001572 | 0.001506 | 0.04447 | 0.007411 | 0.007714 | 0.007435 | 64.23 | 0.0475 | 0.0 | 0.04198 | 0.09609 | 568.88 | 273499999.998 | -| RADUSDT | 0.002198 | 0.001869 | 0.02128 | 0.004421 | 0.006569 | 0.005392 | 73.48 | 0.02368 | 0.0 | 0.008848 | 0.05028 | 302.46 | 273499999.998 | -| COMBOUSDT | 0.002168 | 0.001758 | 0.06155 | 0.04945 | 0.008144 | 0.0128 | 84.68 | 0.07418 | 0.0 | 0.08032 | 0.1021 | 279.46 | 273499999.998 | -| ORBSUSDT | 0.001971 | 0.002044 | 0.0221 | 0.01094 | 0.005434 | 0.005368 | 40.63 | 0.04093 | 0.0 | 0.04268 | 0.07252 | 142.71 | 273499999.998 | -| AUCTIONUSDT | 0.001701 | 0.003234 | 0.02996 | 0.01551 | 0.01089 | 0.009738 | 44.77 | 0.05404 | 0.0 | 0.05471 | 0.09975 | 83.42 | 273499999.998 | -| YGGUSDT | 0.002383 | 0.002437 | 0.04235 | 0.00907 | 0.01124 | 0.009576 | 80.92 | 0.04822 | 0.0 | 0.03379 | 0.101 | 215.83 | 273499999.998 | -| REEFUSDT | 0.002127 | 0.002401 | 0.05445 | 0.01708 | 0.01049 | 0.01036 | 82.08 | 0.06388 | 0.0 | 0.05079 | 0.2171 | 1109.67 | 273499999.998 | -| GLMUSDT | 0.002402 | 0.001172 | 0.06261 | 0.0 | 0.03234 | 0.02875 | 27.57 | 0.1367 | 0.0 | 0.08191 | 0.08358 | 14.54 | 273499999.998 | -| STPTUSDT | 0.001509 | 0.001105 | 0.01997 | 0.006922 | 0.005223 | 0.004007 | 41.77 | 0.01663 | 0.0 | 0.006946 | 0.03417 | 141.38 | 273499999.998 | -| PYTHUSDT | 0.001766 | 0.002203 | 0.04408 | 0.01061 | 0.01705 | 0.01399 | 39.17 | 0.0799 | 0.0 | 0.0827 | 0.1872 | 106.38 | 273499999.998 | -| PERPUSDT | 0.002339 | 0.002048 | 0.02568 | 0.008571 | 0.007013 | 0.007581 | 80.68 | 0.04236 | 0.0 | 0.03674 | 0.1697 | 367.46 | 273499999.998 | -| EOSUSDT | 0.0006339 | 0.001027 | 0.04333 | 0.02397 | 0.007601 | 0.008732 | 96.8 | 0.05874 | 0.0 | 0.06217 | 0.1228 | 1520.62 | 273499999.999 | -| AAVEUSDT | 0.001253 | 0.001302 | 0.02206 | 0.01298 | 0.01063 | 0.01126 | 113.8 | 0.05971 | 0.0 | 0.0586 | 0.2224 | 1238.67 | 273499999.999 | -| EGLDUSDT | 0.0007824 | 0.0009694 | 0.02675 | 0.01416 | 0.01418 | 0.012 | 98.22 | 0.05514 | 0.0 | 0.05145 | 0.1347 | 1270.67 | 273499999.999 | -| BNTUSDT | 0.001219 | 0.001342 | 0.01108 | 0.0009105 | 0.008153 | 0.005931 | 45.78 | 0.02412 | 0.0 | 0.00412 | 0.02075 | 210.46 | 273499999.999 | -| KASUSDT | 0.000793 | 0.0009629 | 0.01073 | 0.004912 | 0.007602 | 0.006463 | 44.45 | 0.02699 | 0.0 | 0.01305 | 0.07574 | 111.88 | 273499999.999 | -| KNCUSDT | 0.000769 | 0.001549 | 0.04284 | 0.02305 | 0.01483 | 0.01466 | 117.3 | 0.08244 | 0.0 | 0.09111 | 0.2142 | 1354.62 | 273499999.999 | -| OMGUSDT | 0.001075 | 0.001381 | 0.03399 | 0.01692 | 0.01338 | 0.01317 | 116.2 | 0.0824 | 0.0 | 0.09159 | 0.2426 | 1344.58 | 273499999.999 | -| ACHUSDT | 0.001217 | 0.001083 | 0.03434 | 0.00291 | 0.007656 | 0.006949 | 52.27 | 0.04143 | 0.0 | 0.02839 | 0.08645 | 379.38 | 273499999.999 | -| FLMUSDT | 0.001107 | 0.001571 | 0.02733 | 0.01332 | 0.0122 | 0.01201 | 77.75 | 0.06141 | 0.0 | 0.0632 | 0.2471 | 1255.67 | 273499999.999 | -| POWRUSDT | 0.0006826 | 0.001184 | 0.01345 | 0.0005016 | 0.01274 | 0.009682 | 50.72 | 0.04235 | 0.0 | 0.01016 | 0.07996 | 132.88 | 273499999.999 | -| QTUMUSDT | 0.0006716 | 0.001008 | 0.03786 | 0.01325 | 0.01145 | 0.01116 | 116.5 | 0.06076 | 0.0 | 0.05308 | 0.2065 | 1477.62 | 273499999.999 | -| ROSEUSDT | 0.0008108 | 0.0007867 | 0.0188 | 0.00976 | 0.01019 | 0.009849 | 94.33 | 0.05542 | 0.0 | 0.05628 | 0.1625 | 797.83 | 273499999.999 | -| FTMUSDT | 0.0007239 | 0.001304 | 0.02523 | 0.004505 | 0.01313 | 0.01086 | 117.5 | 0.05379 | 0.0 | 0.03899 | 0.2034 | 1260.67 | 273499999.999 | -| XAIUSDT | 0.001266 | 0.001934 | 0.0101 | 0.0004992 | 0.01141 | 0.009284 | 26.13 | 0.03683 | 0.0 | 0.00867 | 0.06091 | 58.38 | 273499999.999 | -| HBARUSDT | 0.00137 | 0.001605 | 0.0388 | 0.02268 | 0.008645 | 0.009799 | 99.88 | 0.06348 | 0.0 | 0.06859 | 0.1901 | 1086.67 | 273499999.999 | -| BANDUSDT | 0.0008362 | 0.001208 | 0.03442 | 0.007927 | 0.01276 | 0.01211 | 83.37 | 0.07154 | 0.0 | 0.05165 | 0.1841 | 1317.67 | 273499999.999 | -| FXSUSDT | 0.001035 | 0.001124 | 0.04025 | 0.02112 | 0.01188 | 0.009428 | 63.87 | 0.03811 | 0.0 | 0.02789 | 0.07013 | 412.83 | 273499999.999 | -| ETCUSDT | 0.0005748 | 0.0009503 | 0.02771 | 0.01133 | 0.01056 | 0.01004 | 102.1 | 0.05473 | 0.0 | 0.05023 | 0.1836 | 1512.62 | 273499999.999 | -| DEFIUSDT | 0.001083 | 0.00154 | 0.08004 | 0.04876 | 0.01032 | 0.01186 | 111.7 | 0.07662 | 0.0 | 0.08352 | 0.1463 | 1287.67 | 273499999.999 | -| ENJUSDT | 0.0008332 | 0.001476 | 0.05072 | 0.01174 | 0.009454 | 0.01115 | 107.8 | 0.08717 | 0.0 | 0.09533 | 0.2331 | 1255.67 | 273499999.999 | -| SNXUSDT | 0.0007714 | 0.00112 | 0.03925 | 0.02998 | 0.01047 | 0.0144 | 115.2 | 0.08919 | 0.0 | 0.09976 | 0.2245 | 1301.67 | 273499999.999 | -| HOTUSDT | 0.00144 | 0.001411 | 0.03186 | 0.01137 | 0.01108 | 0.01055 | 110.6 | 0.05477 | 0.0 | 0.05109 | 0.1522 | 1073.67 | 273499999.999 | -| ARKUSDT | 0.0007764 | 0.001758 | 0.02048 | 0.002347 | 0.01077 | 0.008864 | 58.15 | 0.04058 | 0.0 | 0.01619 | 0.06203 | 170.29 | 273499999.999 | -| ZENUSDT | 0.0009485 | 0.00137 | 0.06001 | 0.007567 | 0.01709 | 0.01552 | 114.6 | 0.09321 | 0.0 | 0.09148 | 0.2485 | 1199.67 | 273499999.999 | -| TWTUSDT | 0.001296 | 0.001413 | 0.04067 | 0.001628 | 0.01086 | 0.00833 | 103.6 | 0.04017 | 0.0 | 0.0285 | 0.0394 | 125.38 | 273499999.999 | -| OGNUSDT | 0.0008693 | 0.001101 | 0.02796 | 0.01224 | 0.01238 | 0.01087 | 97.22 | 0.06414 | 0.0 | 0.06639 | 0.2164 | 1071.67 | 273499999.999 | -| JASMYUSDT | 0.001485 | 0.0008186 | 0.02001 | 0.001969 | 0.01333 | 0.01094 | 113.1 | 0.04875 | 0.0 | 0.02269 | 0.1152 | 687.83 | 273499999.999 | -| WOOUSDT | 0.001374 | 0.001186 | 0.03965 | 0.01575 | 0.007333 | 0.008579 | 54.35 | 0.04811 | 0.0 | 0.04825 | 0.1229 | 699.83 | 273499999.999 | -| RENUSDT | 0.001039 | 0.001186 | 0.02684 | 0.01683 | 0.009661 | 0.01204 | 78.47 | 0.07847 | 0.0 | 0.08634 | 0.2082 | 1241.67 | 273499999.999 | -| CELOUSDT | 0.00121 | 0.00102 | 0.03368 | 0.00693 | 0.01054 | 0.008805 | 96.25 | 0.04758 | 0.0 | 0.03851 | 0.1621 | 892.83 | 273499999.999 | -| NEARUSDT | 0.000544 | 0.0006353 | 0.03104 | 0.006605 | 0.01916 | 0.01602 | 117.7 | 0.08047 | 0.0 | 0.04551 | 0.2355 | 1239.62 | 273499999.999 | -| APEUSDT | 0.001205 | 0.001668 | 0.04952 | 0.01559 | 0.008795 | 0.009019 | 117.9 | 0.05899 | 0.0 | 0.05864 | 0.1601 | 721.33 | 273499999.999 | -| DENTUSDT | 0.0006909 | 0.0008798 | 0.01421 | 0.005286 | 0.009384 | 0.007975 | 113.2 | 0.03591 | 0.0 | 0.02088 | 0.112 | 1079.79 | 273499999.999 | -| BALUSDT | 0.0005084 | 0.001005 | 0.03889 | 0.02429 | 0.01021 | 0.01227 | 108.1 | 0.07818 | 0.0 | 0.08583 | 0.1918 | 1283.67 | 273499999.999 | -| GLMRUSDT | 0.001318 | 0.001563 | 0.04807 | 0.01416 | 0.01223 | 0.01045 | 54.32 | 0.053 | 0.0 | 0.04104 | 0.08617 | 163.92 | 273499999.999 | -| YFIUSDT | 0.001046 | 0.001668 | 0.03402 | 0.0211 | 0.01019 | 0.01147 | 112.6 | 0.07868 | 0.0 | 0.08675 | 0.2239 | 1284.67 | 273499999.999 | -| ATAUSDT | 0.00122 | 0.001461 | 0.03832 | 0.0144 | 0.008339 | 0.008394 | 72.2 | 0.05797 | 0.0 | 0.06236 | 0.2246 | 919.83 | 273499999.999 | -| SANDUSDT | 0.0007016 | 0.001795 | 0.02713 | 0.01281 | 0.01626 | 0.01395 | 116.9 | 0.0636 | 0.0 | 0.05721 | 0.2264 | 1137.67 | 273499999.999 | -| AVAXUSDT | 0.0008307 | 0.000997 | 0.03895 | 0.009646 | 0.01622 | 0.01407 | 111.7 | 0.07899 | 0.0 | 0.07731 | 0.1945 | 1261.67 | 273499999.999 | -| SFPUSDT | 0.0008973 | 0.001948 | 0.04907 | 0.0288 | 0.01201 | 0.01186 | 113.4 | 0.07478 | 0.0 | 0.08184 | 0.2376 | 1107.67 | 273499999.999 | -| 1000LUNCUSDT | 0.001092 | 0.0007726 | 0.01285 | 0.002016 | 0.01033 | 0.008796 | 118.5 | 0.04314 | 0.0 | 0.02284 | 0.1261 | 545.42 | 273499999.999 | -| FLOWUSDT | 0.000686 | 0.0006501 | 0.02167 | 0.006364 | 0.01029 | 0.009268 | 98.23 | 0.04551 | 0.0 | 0.03241 | 0.1437 | 756.83 | 273499999.999 | -| KAVAUSDT | 0.0006009 | 0.001283 | 0.037 | 0.01074 | 0.01607 | 0.01353 | 95.9 | 0.06392 | 0.0 | 0.04585 | 0.1667 | 1318.67 | 273499999.999 | -| DOGEUSDT | 0.0005543 | 0.001411 | 0.01443 | 0.006655 | 0.007629 | 0.009274 | 111.0 | 0.05005 | 0.0 | 0.0449 | 0.2293 | 1336.58 | 273499999.999 | -| BNXUSDT | 0.00124 | 0.001827 | 0.04342 | 0.03225 | 0.006781 | 0.009563 | 93.53 | 0.06272 | 0.0 | 0.06746 | 0.108 | 379.38 | 273499999.999 | -| 1INCHUSDT | 0.0005461 | 0.0008622 | 0.01926 | 0.007609 | 0.007746 | 0.008063 | 69.52 | 0.0439 | 0.0 | 0.04252 | 0.1709 | 1168.54 | 273499999.999 | -| XLMUSDT | 0.0007414 | 0.001426 | 0.04444 | 0.02728 | 0.008372 | 0.009545 | 119.8 | 0.06731 | 0.0 | 0.07278 | 0.2328 | 1508.62 | 273499999.999 | -| JOEUSDT | 0.0006379 | 0.0006475 | 0.01731 | 0.006602 | 0.007423 | 0.008183 | 70.57 | 0.04106 | 0.0 | 0.03577 | 0.1253 | 344.46 | 273499999.999 | -| LITUSDT | 0.001434 | 0.002003 | 0.06268 | 0.01536 | 0.01565 | 0.01419 | 108.6 | 0.08427 | 0.0 | 0.08697 | 0.2197 | 1113.67 | 273499999.999 | -| ONTUSDT | 0.001098 | 0.001385 | 0.05563 | 0.01475 | 0.01269 | 0.01232 | 103.2 | 0.07293 | 0.0 | 0.06828 | 0.1886 | 1486.62 | 273499999.999 | -| MATICUSDT | 0.0006539 | 0.001332 | 0.03825 | 0.01493 | 0.0121 | 0.01235 | 108.0 | 0.08309 | 0.0 | 0.09125 | 0.2073 | 1232.67 | 273499999.999 | -| LDOUSDT | 0.001118 | 0.001191 | 0.05237 | 0.01837 | 0.01629 | 0.01572 | 84.82 | 0.07979 | 0.0 | 0.07219 | 0.1316 | 532.46 | 273499999.999 | -| GASUSDT | 0.0007917 | 0.0023 | 0.009716 | 0.0021 | 0.005933 | 0.004511 | 36.27 | 0.02113 | 0.0 | 0.009114 | 0.06054 | 134.88 | 273499999.999 | -| RLCUSDT | 0.001429 | 0.001881 | 0.06328 | 0.01641 | 0.01742 | 0.01542 | 117.0 | 0.08267 | 0.0 | 0.07327 | 0.2299 | 1315.67 | 273499999.999 | -| XVSUSDT | 0.000504 | 0.0006589 | 0.03476 | 0.003271 | 0.01632 | 0.01497 | 110.6 | 0.0755 | 0.0 | 0.05068 | 0.2237 | 329.88 | 273499999.999 | -| ANKRUSDT | 0.0005123 | 0.0009193 | 0.03705 | 0.005311 | 0.01737 | 0.01876 | 114.7 | 0.1109 | 0.0 | 0.09997 | 0.2415 | 1136.67 | 273499999.999 | -| CAKEUSDT | 0.001259 | 0.001748 | 0.03848 | 0.01623 | 0.01034 | 0.009302 | 118.8 | 0.04725 | 0.0 | 0.04237 | 0.1159 | 126.46 | 273499999.999 | -| SEIUSDT | 0.0008637 | 0.0009371 | 0.02831 | 0.01191 | 0.01864 | 0.01749 | 109.4 | 0.1006 | 0.0 | 0.05961 | 0.1219 | 203.88 | 273499999.999 | -| RUNEUSDT | 0.0005993 | 0.0006167 | 0.01878 | 0.006048 | 0.01807 | 0.01329 | 116.2 | 0.05158 | 0.0 | 0.02288 | 0.1123 | 1280.67 | 273499999.999 | -| CFXUSDT | 0.0006642 | 0.0008145 | 0.01038 | 0.002141 | 0.007781 | 0.006275 | 99.05 | 0.02589 | 0.0 | 0.007922 | 0.06475 | 381.38 | 273499999.999 | -| DOTUSDT | 0.0005935 | 0.0009577 | 0.04875 | 0.01645 | 0.01053 | 0.009533 | 118.4 | 0.05344 | 0.0 | 0.05334 | 0.1651 | 1293.67 | 273499999.999 | -| BATUSDT | 0.0005728 | 0.001034 | 0.03306 | 0.01194 | 0.007455 | 0.008755 | 98.77 | 0.05239 | 0.0 | 0.05158 | 0.2379 | 1484.62 | 273499999.999 | -| HIFIUSDT | 0.001351 | 0.001708 | 0.02691 | 0.006174 | 0.00826 | 0.007325 | 66.35 | 0.03487 | 0.0 | 0.0279 | 0.2222 | 173.38 | 273499999.999 | -| ALGOUSDT | 0.00105 | 0.001342 | 0.04636 | 0.00881 | 0.01277 | 0.01107 | 116.8 | 0.06108 | 0.0 | 0.04398 | 0.1022 | 1360.58 | 273499999.999 | -| COTIUSDT | 0.001041 | 0.0009608 | 0.03549 | 0.004754 | 0.01455 | 0.01284 | 101.7 | 0.07196 | 0.0 | 0.05893 | 0.2486 | 1093.67 | 273499999.999 | -| IOTAUSDT | 0.0006936 | 0.0009357 | 0.02469 | 0.009356 | 0.01049 | 0.009038 | 83.47 | 0.04144 | 0.0 | 0.03138 | 0.1768 | 1485.62 | 273499999.999 | -| NEOUSDT | 0.001358 | 0.001588 | 0.06974 | 0.03628 | 0.009504 | 0.01359 | 107.5 | 0.09003 | 0.0 | 0.09976 | 0.2382 | 1480.62 | 273499999.999 | -| RVNUSDT | 0.0006314 | 0.001042 | 0.02546 | 0.01524 | 0.008718 | 0.007864 | 111.5 | 0.0471 | 0.0 | 0.04884 | 0.1571 | 1108.67 | 273499999.999 | -| ICXUSDT | 0.0005593 | 0.0009173 | 0.02293 | 0.003055 | 0.01143 | 0.00948 | 99.95 | 0.04578 | 0.0 | 0.02463 | 0.09855 | 1269.67 | 273499999.999 | -| RNDRUSDT | 0.0006644 | 0.0005725 | 0.02639 | 0.003133 | 0.01651 | 0.01368 | 110.1 | 0.07185 | 0.0 | 0.03573 | 0.08335 | 398.88 | 273499999.999 | -| XMRUSDT | 0.0007706 | 0.001352 | 0.04245 | 0.02644 | 0.006488 | 0.008786 | 96.57 | 0.06069 | 0.0 | 0.0649 | 0.1245 | 1494.62 | 273499999.999 | -| CVXUSDT | 0.0007718 | 0.000694 | 0.03419 | 0.02234 | 0.01042 | 0.01011 | 116.0 | 0.05214 | 0.0 | 0.05566 | 0.1818 | 532.46 | 273499999.999 | -| CTKUSDT | 0.0008748 | 0.001604 | 0.04137 | 0.01822 | 0.01067 | 0.01053 | 96.22 | 0.06738 | 0.0 | 0.07333 | 0.2344 | 1204.67 | 273499999.999 | -| COMPUSDT | 0.0006354 | 0.0007725 | 0.04822 | 0.008902 | 0.02028 | 0.01921 | 119.5 | 0.1073 | 0.0 | 0.09917 | 0.2396 | 1346.58 | 273499999.999 | -| GMXUSDT | 0.0006935 | 0.000572 | 0.03759 | 0.01912 | 0.009043 | 0.007376 | 90.2 | 0.03346 | 0.0 | 0.02422 | 0.05264 | 384.38 | 273499999.999 | -| TUSDT | 0.00138 | 0.001195 | 0.02892 | 0.01512 | 0.00718 | 0.009138 | 73.5 | 0.05338 | 0.0 | 0.05272 | 0.1865 | 400.42 | 273499999.999 | -| SUIUSDT | 0.001475 | 0.001199 | 0.01999 | 0.004067 | 0.0105 | 0.008382 | 64.55 | 0.03354 | 0.0 | 0.011 | 0.03953 | 309.29 | 273499999.999 | -| MKRUSDT | 0.0006943 | 0.001071 | 0.0325 | 0.01382 | 0.01033 | 0.0106 | 109.7 | 0.04425 | 0.0 | 0.04163 | 0.2162 | 1302.67 | 273499999.999 | -| XTZUSDT | 0.000943 | 0.001634 | 0.05028 | 0.02013 | 0.009729 | 0.0106 | 95.28 | 0.05348 | 0.0 | 0.05724 | 0.2013 | 1491.62 | 273499999.999 | -| SOLUSDT | 0.000872 | 0.00112 | 0.02175 | 0.01008 | 0.01144 | 0.01154 | 115.3 | 0.04444 | 0.0 | 0.02949 | 0.1654 | 1270.67 | 273499999.999 | -| CHRUSDT | 0.00144 | 0.001835 | 0.05406 | 0.02174 | 0.01226 | 0.01348 | 101.5 | 0.08887 | 0.0 | 0.09841 | 0.2487 | 1091.67 | 273499999.999 | -| ARBUSDT | 0.0008658 | 0.0009407 | 0.06081 | 0.04031 | 0.01213 | 0.01322 | 112.9 | 0.08263 | 0.0 | 0.09055 | 0.1406 | 350.33 | 273499999.999 | -| SKLUSDT | 0.001249 | 0.00122 | 0.02295 | 0.00376 | 0.01485 | 0.01358 | 120.0 | 0.07478 | 0.0 | 0.03736 | 0.2129 | 1185.67 | 273499999.999 | -| SSVUSDT | 0.001182 | 0.001031 | 0.02719 | 0.008322 | 0.009874 | 0.01096 | 48.63 | 0.06352 | 0.0 | 0.0595 | 0.1565 | 377.46 | 273499999.999 | -| LQTYUSDT | 0.001071 | 0.001622 | 0.03478 | 0.01246 | 0.01331 | 0.01301 | 82.88 | 0.07322 | 0.0 | 0.07686 | 0.2431 | 363.46 | 273499999.999 | -| DYDXUSDT | 0.0006128 | 0.0008125 | 0.01726 | 0.00642 | 0.01095 | 0.009336 | 78.95 | 0.04125 | 0.0 | 0.02547 | 0.1148 | 909.83 | 273499999.999 | -| FILUSDT | 0.0005393 | 0.0007034 | 0.02184 | 0.009082 | 0.01433 | 0.01293 | 118.2 | 0.07333 | 0.0 | 0.07495 | 0.218 | 1238.71 | 273499999.999 | -| FOOTBALLUSDT | 0.0007086 | 0.0007359 | 0.04122 | 0.0009703 | 0.007475 | 0.006311 | 109.3 | 0.03563 | 0.0 | 0.02178 | 0.07606 | 553.83 | 273499999.999 | -| PEOPLEUSDT | 0.0006463 | 0.0004366 | 0.006 | 0.001113 | 0.01473 | 0.01124 | 96.83 | 0.04961 | 0.0 | 0.0155 | 0.2131 | 804.79 | 273499999.999 | -| HOOKUSDT | 0.001457 | 0.001611 | 0.04482 | 0.008732 | 0.009141 | 0.00863 | 69.9 | 0.05812 | 0.0 | 0.05234 | 0.1403 | 409.83 | 273499999.999 | -| RDNTUSDT | 0.001371 | 0.001379 | 0.03887 | 0.006889 | 0.007894 | 0.006053 | 62.45 | 0.02584 | 0.0 | 0.02027 | 0.05543 | 337.46 | 273499999.999 | -| ATOMUSDT | 0.001128 | 0.002318 | 0.07043 | 0.04089 | 0.00967 | 0.01235 | 119.1 | 0.08319 | 0.0 | 0.09168 | 0.2074 | 1490.46 | 273499999.999 | -| NKNUSDT | 0.0005103 | 0.0008971 | 0.03586 | 0.002816 | 0.01781 | 0.01686 | 116.0 | 0.08895 | 0.0 | 0.05927 | 0.2473 | 1063.67 | 273499999.999 | -| ALICEUSDT | 0.0008499 | 0.001339 | 0.06503 | 0.01102 | 0.01888 | 0.01776 | 111.8 | 0.097 | 0.0 | 0.09166 | 0.2059 | 1087.83 | 273499999.999 | -| LTCUSDT | 0.0005543 | 0.00104 | 0.04242 | 0.01792 | 0.008399 | 0.008024 | 114.1 | 0.04794 | 0.0 | 0.05035 | 0.141 | 1519.62 | 273499999.999 | -| STMXUSDT | 0.00136 | 0.001883 | 0.04499 | 0.0218 | 0.01339 | 0.01281 | 107.9 | 0.0833 | 0.0 | 0.08975 | 0.2142 | 1081.67 | 273499999.999 | -| C98USDT | 0.0005766 | 0.0006066 | 0.02964 | 0.009575 | 0.014 | 0.01276 | 109.8 | 0.07194 | 0.0 | 0.06332 | 0.2259 | 926.83 | 273499999.999 | -| ZRXUSDT | 0.001035 | 0.001114 | 0.04361 | 0.008702 | 0.01484 | 0.01333 | 116.3 | 0.07278 | 0.0 | 0.06051 | 0.2455 | 1352.58 | 273499999.999 | -| ICPUSDT | 0.0009238 | 0.0005661 | 0.02027 | 0.009345 | 0.008093 | 0.008561 | 80.45 | 0.06126 | 0.0 | 0.06321 | 0.2118 | 527.88 | 273499999.999 | -| TIAUSDT | 0.00115 | 0.002778 | 0.01152 | 0.002338 | 0.007864 | 0.006049 | 26.15 | 0.02419 | 0.0 | 0.003567 | 0.02074 | 128.21 | 273499999.999 | -| TRUUSDT | 0.0007715 | 0.0007251 | 0.01148 | 0.002194 | 0.007866 | 0.006001 | 76.03 | 0.02559 | 0.0 | 0.005866 | 0.07023 | 366.46 | 273499999.999 | -| LINKUSDT | 0.001352 | 0.00186 | 0.06449 | 0.04211 | 0.01202 | 0.01212 | 118.5 | 0.0758 | 0.0 | 0.08218 | 0.147 | 1511.62 | 273499999.999 | -| STORJUSDT | 0.001002 | 0.001116 | 0.02055 | 0.008631 | 0.01103 | 0.009748 | 85.97 | 0.05076 | 0.0 | 0.04611 | 0.1974 | 1268.67 | 273499999.999 | -| KSMUSDT | 0.0008923 | 0.001133 | 0.03391 | 0.01376 | 0.007911 | 0.008005 | 71.65 | 0.05616 | 0.0 | 0.06006 | 0.1755 | 1240.67 | 273499999.999 | -| ZECUSDT | 0.0006116 | 0.0009992 | 0.07808 | 0.0126 | 0.01242 | 0.01449 | 116.7 | 0.09157 | 0.0 | 0.096 | 0.2116 | 1492.62 | 273499999.999 | -| DGBUSDT | 0.0009885 | 0.001374 | 0.08386 | 0.00959 | 0.01245 | 0.01333 | 103.6 | 0.08083 | 0.0 | 0.08206 | 0.2494 | 1051.83 | 273499999.999 | -| UNIUSDT | 0.000528 | 0.0006325 | 0.0328 | 0.0067 | 0.01466 | 0.01343 | 119.2 | 0.07701 | 0.0 | 0.0568 | 0.1905 | 1266.67 | 273499999.999 | -| CRVUSDT | 0.0001036 | 0.0002131 | 0.01115 | 0.003797 | 0.01663 | 0.01345 | 99.67 | 0.0608 | 0.0 | 0.03325 | 0.1962 | 1283.67 | 273500000.0 | -| ALPHAUSDT | 0.0003531 | 0.0005401 | 0.02768 | 0.0003748 | 0.02016 | 0.01816 | 118.4 | 0.1055 | 0.0 | 0.07089 | 0.2493 | 1200.67 | 273500000.0 | -| CTSIUSDT | 0.0002025 | 0.000222 | 0.007691 | 0.001071 | 0.01605 | 0.0118 | 97.78 | 0.04785 | 0.0 | 0.01164 | 0.2226 | 863.83 | 273500000.0 | -| ETHUSDT | 0.0003197 | 0.0007063 | 0.03732 | 0.01289 | 0.007355 | 0.00769 | 117.7 | 0.0593 | 0.0 | 0.06306 | 0.1435 | 1527.96 | 273500000.0 | -| LRCUSDT | 0.0003669 | 0.0007417 | 0.02813 | 0.007998 | 0.01884 | 0.01614 | 117.5 | 0.07883 | 0.0 | 0.0569 | 0.2442 | 1235.67 | 273500000.0 | -| MINAUSDT | 0.0004164 | 0.0004369 | 0.01752 | 0.0002534 | 0.01498 | 0.01171 | 110.0 | 0.05465 | 0.0 | 0.01779 | 0.1158 | 394.5 | 273500000.0 | -| QNTUSDT | 0.0004962 | 0.0005552 | 0.01861 | 0.005282 | 0.008969 | 0.007911 | 111.3 | 0.03382 | 0.0 | 0.0156 | 0.0669 | 504.88 | 273500000.0 | -| BTCUSDT | 0.0001813 | 0.0002159 | 0.02235 | 0.01053 | 0.008776 | 0.00777 | 101.0 | 0.03595 | 0.0 | 0.02378 | 0.09045 | 1527.96 | 273500000.0 | -| AXSUSDT | 0.0001546 | 0.0003968 | 0.01003 | 0.004285 | 0.0158 | 0.0136 | 105.7 | 0.05169 | 0.0 | 0.01984 | 0.2428 | 1203.67 | 273500000.0 | -| 1000XECUSDT | 0.0003666 | 0.0003331 | 0.01943 | 0.0 | 0.01516 | 0.01381 | 109.0 | 0.07159 | 0.0 | 0.02754 | 0.2259 | 902.83 | 273500000.0 | -| LPTUSDT | 0.0002855 | 0.0001986 | 0.008523 | 0.002776 | 0.01649 | 0.01441 | 105.1 | 0.04501 | 0.0 | 0.003852 | 0.06654 | 847.83 | 273500000.0 | -| IOSTUSDT | 0.0004752 | 0.0008163 | 0.02205 | 0.01136 | 0.006731 | 0.007048 | 107.0 | 0.03955 | 0.0 | 0.04034 | 0.1663 | 1476.62 | 273500000.0 | -| MTLUSDT | 0.0003505 | 0.0004615 | 0.02837 | 0.005329 | 0.02108 | 0.01941 | 112.4 | 0.1077 | 0.0 | 0.08542 | 0.2495 | 1072.67 | 273500000.0 | -| 1000SHIBUSDT | 0.0001773 | 0.0002364 | 0.008679 | 0.004222 | 0.01451 | 0.01259 | 106.3 | 0.05428 | 0.0 | 0.03012 | 0.1786 | 1032.25 | 273500000.0 | -| CYBERUSDT | 0.0003905 | 0.0006251 | 0.009858 | 0.0 | 0.01549 | 0.01146 | 80.75 | 0.05036 | 0.0 | 0.008217 | 0.03929 | 199.46 | 273500000.0 | -| BNBUSDT | 0.0002998 | 0.0005483 | 0.02356 | 0.01305 | 0.008081 | 0.008954 | 117.9 | 0.05305 | 0.0 | 0.0539 | 0.2174 | 1487.62 | 273500000.0 | -| API3USDT | 0.0002833 | 0.0002191 | 0.02542 | 0.01915 | 0.01753 | 0.01535 | 109.7 | 0.07769 | 0.0 | 0.08478 | 0.228 | 744.83 | 273500000.0 | -| BELUSDT | 0.0002572 | 0.0005873 | 0.01891 | 0.001019 | 0.01894 | 0.01621 | 117.3 | 0.08294 | 0.0 | 0.03678 | 0.2486 | 1205.67 | 273500000.0 | -| APTUSDT | 0.0001764 | 0.0001832 | 0.005431 | 0.0005188 | 0.01318 | 0.01038 | 68.87 | 0.04235 | 0.0 | 0.004449 | 0.04365 | 505.88 | 273500000.0 | -| DASHUSDT | 0.0002581 | 0.0005153 | 0.02173 | 0.009841 | 0.009202 | 0.00907 | 118.2 | 0.05425 | 0.0 | 0.0557 | 0.1491 | 1493.62 | 273500000.0 | -| STGUSDT | 0.0004324 | 0.0005769 | 0.0155 | 0.002907 | 0.009111 | 0.007449 | 92.02 | 0.03145 | 0.0 | 0.01493 | 0.05157 | 560.46 | 273500000.0 | -| OCEANUSDT | 0.0004646 | 0.0005832 | 0.02186 | 0.001079 | 0.01634 | 0.01248 | 114.4 | 0.05788 | 0.0 | 0.02092 | 0.1049 | 1220.67 | 273500000.0 | -| PHBUSDT | 0.0004326 | 0.0002085 | 0.01154 | 0.004595 | 0.01734 | 0.01472 | 84.38 | 0.04641 | 0.0 | 0.008456 | 0.1543 | 385.38 | 273500000.0 | -| IMXUSDT | 0.000486 | 0.0005585 | 0.02733 | 0.00824 | 0.01631 | 0.0147 | 70.32 | 0.0794 | 0.0 | 0.0672 | 0.1751 | 755.83 | 273500000.0 | -| DARUSDT | 0.0002942 | 0.0003258 | 0.02282 | 0.0007058 | 0.01762 | 0.01427 | 98.72 | 0.07207 | 0.0 | 0.03033 | 0.1635 | 678.83 | 273500000.0 | -| BLUEBIRDUSDT | 0.0003732 | 0.0002835 | 0.02188 | 0.00367 | 0.005972 | 0.005487 | 86.88 | 0.031 | 0.0 | 0.01855 | 0.04232 | 491.46 | 273500000.0 | -| SXPUSDT | 0.0001567 | 0.0003152 | 0.02015 | 0.006453 | 0.01794 | 0.01386 | 112.6 | 0.07291 | 0.0 | 0.05445 | 0.1914 | 1325.58 | 273500000.0 | -| CHZUSDT | 0.0004918 | 0.0009669 | 0.04954 | 0.004886 | 0.01829 | 0.01808 | 119.2 | 0.101 | 0.0 | 0.08359 | 0.2418 | 1141.67 | 273500000.0 | -| MAGICUSDT | 0.0002632 | 0.0002923 | 0.01647 | 0.001216 | 0.01643 | 0.01344 | 69.35 | 0.08062 | 0.0 | 0.03981 | 0.07349 | 407.83 | 273500000.0 | -| BCHUSDT | 0.0002779 | 0.0003144 | 0.02284 | 0.00328 | 0.01345 | 0.01096 | 107.3 | 0.05585 | 0.0 | 0.03337 | 0.1533 | 1527.96 | 273500000.0 | -| OPUSDT | 0.0004443 | 0.0004997 | 0.03062 | 0.01868 | 0.01688 | 0.01492 | 96.13 | 0.07758 | 0.0 | 0.08477 | 0.2036 | 645.38 | 273500000.0 | -| ASTRUSDT | 0.0004636 | 0.0003448 | 0.02189 | 0.0 | 0.01745 | 0.01356 | 80.67 | 0.06685 | 0.0 | 0.01928 | 0.2293 | 387.88 | 273500000.0 | -| CKBUSDT | 0.0004576 | 0.0001497 | 0.007006 | 0.001829 | 0.01498 | 0.01155 | 108.7 | 0.05379 | 0.0 | 0.02313 | 0.1598 | 373.46 | 273500000.0 | -| BONDUSDT | 0.0004577 | 0.001038 | 0.0116 | 0.002769 | 0.01107 | 0.008615 | 76.85 | 0.03543 | 0.0 | 0.01434 | 0.06407 | 144.38 | 273500000.0 | -| WAVESUSDT | 0.0001902 | 0.0002594 | 0.006193 | 0.001058 | 0.01419 | 0.011 | 98.13 | 0.04678 | 0.0 | 0.01207 | 0.1603 | 1303.67 | 273500000.0 | -| THETAUSDT | 0.0002454 | 0.000189 | 0.007562 | 0.0004044 | 0.01629 | 0.01147 | 120.4 | 0.04696 | 0.0 | 0.006715 | 0.02673 | 1380.62 | 273538333.333 | -| ARPAUSDT | 0.0001896 | 0.0003626 | 0.00545 | 0.0001962 | 0.01488 | 0.01123 | 126.2 | 0.04451 | 0.0 | 0.002926 | 0.07061 | 870.83 | 274116666.666 | -| DUSKUSDT | 0.0007768 | 0.0006841 | 0.02043 | 0.01097 | 0.01246 | 0.01219 | 138.6 | 0.08801 | 0.0 | 0.09765 | 0.1961 | 790.83 | 275363333.333 | -| XRPUSDT | 7.643e-05 | 0.0001473 | 0.009041 | 0.003163 | 0.01563 | 0.01208 | 140.8 | 0.04988 | 0.0 | 0.01997 | 0.132 | 1522.62 | 275583333.333 | -| ANTUSDT | 0.0001332 | 0.0003275 | 0.04076 | 0.0 | 0.02337 | 0.02216 | 121.7 | 0.1527 | 0.0 | 0.1229 | 0.2027 | 801.79 | 275961651.514 | -| STXUSDT | 0.0007068 | 0.0005678 | 0.04435 | 0.02005 | 0.01908 | 0.01888 | 158.5 | 0.114 | 0.0 | 0.1217 | 0.2343 | 380.38 | 279521229.225 | -| AUDIOUSDT | 0.0003591 | 0.0004145 | 0.01898 | 0.0009658 | 0.01794 | 0.0158 | 199.2 | 0.08403 | 0.0 | 0.0387 | 0.1772 | 931.83 | 281420000.0 | -| ADAUSDT | 8.718e-05 | 0.0001474 | 0.01005 | 0.002649 | 0.0168 | 0.01243 | 205.8 | 0.05605 | 0.0 | 0.02873 | 0.196 | 1497.62 | 282083333.333 | -| LINAUSDT | 0.0005132 | 0.0007085 | 0.02241 | 0.01044 | 0.01957 | 0.01979 | 222.7 | 0.08208 | 0.0 | 0.05827 | 0.2477 | 1084.67 | 283771666.666 | -| TRXUSDT | 0.0001561 | 0.000487 | 0.02089 | 0.01185 | 0.007152 | 0.008797 | 236.0 | 0.0346 | 0.0 | 0.02919 | 0.1398 | 1513.62 | 285096666.667 | -| KLAYUSDT | 0.0002678 | 0.0002377 | 0.02971 | 0.0 | 0.02003 | 0.0196 | 247.9 | 0.1124 | 0.0 | 0.06585 | 0.1419 | 877.83 | 286288333.333 | -| VETUSDT | 9.011e-05 | 0.0001691 | 0.01373 | 0.006507 | 0.01683 | 0.01297 | 257.6 | 0.06824 | 0.0 | 0.06145 | 0.1715 | 1483.62 | 287256666.667 | -| GTCUSDT | 0.0002639 | 0.000367 | 0.01982 | 0.002614 | 0.01866 | 0.01518 | 271.7 | 0.08605 | 0.0 | 0.05031 | 0.2447 | 1000.83 | 288670000.0 | -| BTCDOMUSDT | 0.0002247 | 0.000174 | 0.05825 | 0.02647 | 0.007606 | 0.00682 | 310.8 | 0.04351 | 0.0 | 0.04484 | 0.07051 | 990.83 | 292578333.333 | -| MANAUSDT | 0.001039 | 0.0018 | 0.05016 | 0.03127 | 0.0136 | 0.01876 | 692.1 | 0.05389 | 0.0 | 0.05623 | 0.2168 | 1088.67 | 330711666.666 | -| ARUSDT | 0.0008654 | 0.0005615 | 0.02874 | 0.01721 | 0.02019 | 0.02636 | 292.4 | 0.1024 | 1.988 | 0.09987 | 0.3112 | 891.83 | 370347773.0 | -| GMTUSDT | 0.0004835 | 0.0006941 | 0.02005 | 0.005969 | 0.01747 | 0.01704 | 157.0 | 0.1098 | 0.0 | 0.09695 | 0.3522 | 723.79 | 379352085.929 | -| IOTXUSDT | 0.0002739 | 0.0002875 | 0.02702 | 0.008028 | 0.01946 | 0.01785 | 251.9 | 0.1387 | 0.0 | 0.1557 | 0.43 | 938.83 | 472272780.77 | -| ZILUSDT | 0.0008378 | 0.001442 | 0.03783 | 0.02011 | 0.01397 | 0.01714 | 4032.0 | 0.0519 | 0.4276 | 0.04787 | 0.1631 | 1358.58 | 667482925.406 | -| BAKEUSDT | 0.0007397 | 0.0005154 | 0.02562 | 0.0111 | 0.01634 | 0.02417 | 134.6 | 0.1887 | 0.0 | 0.2421 | 0.6398 | 1023.67 | 678970371.709 | -| USDCUSDT | 4.139e-07 | 3.428e-07 | 0.008378 | 0.0 | 0.003321 | 0.002225 | 4163.0 | 0.01327 | 0.4 | 9.479e-05 | 0.0001213 | 361.25 | 680346666.667 | -| IDUSDT | -0.1918 | -0.03866 | 0.08309 | 0.05976 | 0.04046 | 0.0663 | 405.8 | 0.4095 | 3.14 | 1.0 | 1.0 | 350.38 | 1171974680.07 | -| GALAUSDT | -0.004642 | -0.0152 | 0.05079 | 0.04116 | 0.04037 | 0.08003 | 9718.0 | 0.3818 | 4.631 | 1.0 | 1.0 | 901.83 | 2118132300.58 | -| MASKUSDT | -0.001484 | -0.01484 | 58.22 | 0.1214 | 0.1031 | 0.1074 | 11770.0 | 1.559 | 2.038 | 1.0 | 1.0 | 923.83 | 2297940054.11 | -| UNFIUSDT | -0.001234 | -0.01234 | 0.2092 | 0.2007 | 0.08359 | 0.1028 | 15340.0 | 0.3369 | 1.3 | 1.0 | 1.0 | 1112.67 | 2646960637.4 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/metrics_no_AU.txt b/configs/live/multisymbol/metrics_no_AU.txt deleted file mode 100644 index 5cd7c5a15..000000000 --- a/configs/live/multisymbol/metrics_no_AU.txt +++ /dev/null @@ -1,562 +0,0 @@ -### single symbol backtest metrics ### - -update: 2024-03-09 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| MYROUSDT | 0.02543 | 0.0209 | 0.0188 | 0.01082 | 0.008605 | 0.007909 | 7.883 | 0.02343 | 0.0 | nan | 0.01863 | 2.62 | 273499999.975 | -| WIFUSDT | 0.02315 | 0.01038 | 0.03902 | 0.02165 | 0.008342 | 0.008355 | 27.18 | 0.04728 | 0.0 | 0.04348 | 0.07262 | 49.38 | 273499999.977 | -| LSKUSDT | 0.02318 | 0.005047 | 0.01331 | 0.0004902 | 0.005429 | 0.004203 | 23.62 | 0.01714 | 0.0 | 0.001741 | 0.004231 | 42.38 | 273499999.977 | -| MAVIAUSDT | 0.01383 | 0.007005 | 0.0172 | 0.0 | 0.01527 | 0.01054 | 20.43 | 0.04266 | 0.0 | 0.005078 | 0.009613 | 15.54 | 273499999.986 | -| ZETAUSDT | 0.01262 | 0.003826 | 0.006704 | 0.0002404 | 0.009875 | 0.008127 | 25.97 | 0.04135 | 0.0 | 0.0128 | 0.08509 | 34.62 | 273499999.987 | -| XAIUSDT | 0.01156 | 0.005087 | 0.07054 | 0.05983 | 0.009591 | 0.01262 | 80.77 | 0.07122 | 0.0 | 0.06662 | 0.08413 | 58.38 | 273499999.988 | -| STRKUSDT | 0.01219 | 0.007389 | 0.004768 | 0.0 | 0.01193 | 0.009279 | 27.7 | 0.03819 | 0.0 | 0.0004527 | 0.0005476 | 16.25 | 273499999.988 | -| PIXELUSDT | 0.01158 | 0.006616 | 0.0104 | 0.0 | 0.005946 | 0.004846 | 23.77 | 0.02042 | 0.0 | 0.001284 | 0.001738 | 17.33 | 273499999.988 | -| 1000BONKUSDT | 0.00928 | 0.006123 | 0.034 | 0.01382 | 0.007436 | 0.007052 | 17.33 | 0.04097 | 0.0 | 0.02992 | 0.08933 | 106.38 | 273499999.991 | -| OMUSDT | 0.008619 | 0.00311 | 0.009059 | 0.00249 | 0.0066 | 0.005406 | 16.57 | 0.02819 | 0.0 | 0.01064 | 0.04809 | 23.38 | 273499999.991 | -| MEMEUSDT | 0.008185 | 0.003315 | 0.01778 | 0.004349 | 0.01158 | 0.009635 | 38.08 | 0.03833 | 0.0 | 0.01129 | 0.04767 | 125.46 | 273499999.992 | -| ONDOUSDT | 0.007793 | 0.005604 | 0.02604 | 0.005352 | 0.008665 | 0.006859 | 31.48 | 0.02424 | 0.0 | 0.01249 | 0.02347 | 47.42 | 273499999.992 | -| 1000RATSUSDT | 0.007982 | 0.00242 | 0.03616 | 0.02382 | 0.0145 | 0.01573 | 34.1 | 0.06861 | 0.0 | 0.06126 | 0.1264 | 83.38 | 273499999.992 | -| ARKMUSDT | 0.007439 | 0.002502 | 0.03048 | 0.01087 | 0.008297 | 0.007661 | 26.97 | 0.04031 | 0.0 | 0.02346 | 0.05527 | 223.88 | 273499999.993 | -| AIUSDT | 0.007015 | 0.003128 | 0.0154 | 0.005464 | 0.008285 | 0.007029 | 41.67 | 0.02592 | 0.0 | 0.003895 | 0.01152 | 59.46 | 273499999.993 | -| BICOUSDT | 0.006791 | 0.002225 | 0.02597 | 0.0057 | 0.006048 | 0.005036 | 27.0 | 0.02495 | 0.0 | 0.01779 | 0.03931 | 161.46 | 273499999.993 | -| JUPUSDT | 0.006885 | 0.003763 | 0.01583 | 0.002989 | 0.006213 | 0.005124 | 26.0 | 0.0271 | 0.0 | 0.01077 | 0.06028 | 36.21 | 273499999.993 | -| AUCTIONUSDT | 0.006605 | 0.002016 | 0.009622 | 0.0003492 | 0.01478 | 0.01161 | 35.5 | 0.04735 | 0.0 | 0.007399 | 0.05147 | 83.42 | 273499999.993 | -| MANTAUSDT | 0.006543 | 0.002223 | 0.03852 | 0.007075 | 0.01712 | 0.0146 | 25.65 | 0.07256 | 0.0 | 0.03553 | 0.05591 | 49.38 | 273499999.993 | -| DYMUSDT | 0.005695 | 0.002271 | 0.008101 | 0.0006993 | 0.003398 | 0.002592 | 16.7 | 0.0102 | 0.0 | 0.001076 | 0.001422 | 29.67 | 273499999.994 | -| JTOUSDT | 0.006451 | 0.003303 | 0.03431 | 0.0149 | 0.009369 | 0.0123 | 25.68 | 0.0804 | 0.0 | 0.07289 | 0.1008 | 90.54 | 273499999.994 | -| ALTUSDT | 0.00616 | 0.002249 | 0.01765 | 0.0 | 0.01409 | 0.01086 | 22.1 | 0.04346 | 0.0 | 0.005567 | 0.007895 | 42.38 | 273499999.994 | -| 1000SATSUSDT | 0.005742 | 0.003321 | 0.01722 | 0.005061 | 0.008818 | 0.007572 | 44.98 | 0.03659 | 0.0 | 0.01745 | 0.07105 | 86.38 | 273499999.994 | -| BIGTIMEUSDT | 0.005589 | 0.0043 | 0.02086 | 0.01131 | 0.007934 | 0.01213 | 70.47 | 0.05888 | 0.0 | 0.05037 | 0.1863 | 147.38 | 273499999.994 | -| NTRNUSDT | 0.004897 | 0.002279 | 0.04627 | 0.03266 | 0.009153 | 0.01125 | 65.4 | 0.07906 | 0.0 | 0.07335 | 0.09335 | 114.46 | 273499999.995 | -| USTCUSDT | 0.004845 | 0.002014 | 0.009116 | 8.21e-05 | 0.008776 | 0.006853 | 37.85 | 0.0287 | 0.0 | 0.004742 | 0.0473 | 101.46 | 273499999.995 | -| TOKENUSDT | 0.005458 | 0.002509 | 0.01654 | 0.001861 | 0.0106 | 0.00875 | 38.35 | 0.03939 | 0.0 | 0.01375 | 0.07995 | 125.33 | 273499999.995 | -| SUPERUSDT | 0.004799 | 0.002288 | 0.01764 | 0.005244 | 0.00942 | 0.007856 | 32.12 | 0.03107 | 0.0 | 0.009149 | 0.04076 | 102.42 | 273499999.995 | -| WLDUSDT | 0.005484 | 0.003084 | 0.04347 | 0.02317 | 0.008313 | 0.009413 | 101.1 | 0.08592 | 0.0 | 0.07832 | 0.1526 | 227.46 | 273499999.995 | -| BADGERUSDT | 0.00486 | 0.001439 | 0.007368 | 0.0 | 0.01108 | 0.00903 | 51.6 | 0.03708 | 0.0 | 0.001983 | 0.004228 | 119.46 | 273499999.995 | -| NFPUSDT | 0.004635 | 0.003976 | 0.1729 | 0.1028 | 0.01765 | 0.01841 | 86.07 | 0.09606 | 0.0 | 0.0866 | 0.107 | 71.42 | 273499999.995 | -| GLMUSDT | 0.005045 | 0.002569 | 0.005646 | 0.0 | 0.01236 | 0.009802 | 36.25 | 0.03491 | 0.0 | 0.00135 | 0.001815 | 14.54 | 273499999.995 | -| RONINUSDT | 0.005133 | 0.003572 | 0.01812 | 0.0 | 0.009194 | 0.007762 | 24.32 | 0.02966 | 0.0 | 0.004269 | 0.005354 | 30.79 | 273499999.995 | -| ORDIUSDT | 0.003714 | 0.003374 | 0.04689 | 0.02441 | 0.01211 | 0.0138 | 95.28 | 0.1045 | 0.0 | 0.09449 | 0.1227 | 121.46 | 273499999.996 | -| STEEMUSDT | 0.004078 | 0.001871 | 0.01564 | 0.002734 | 0.006207 | 0.005323 | 68.35 | 0.02611 | 0.0 | 0.005447 | 0.02579 | 120.38 | 273499999.996 | -| BEAMXUSDT | 0.0035 | 0.002632 | 0.0281 | 0.01267 | 0.007563 | 0.009215 | 22.17 | 0.06585 | 0.0 | 0.06034 | 0.1086 | 111.42 | 273499999.996 | -| RIFUSDT | 0.004037 | 0.001722 | 0.02793 | 0.003098 | 0.01081 | 0.009277 | 80.42 | 0.04368 | 0.0 | 0.0148 | 0.0242 | 138.46 | 273499999.996 | -| OXTUSDT | 0.003754 | 0.001368 | 0.01489 | 0.004732 | 0.006333 | 0.005087 | 53.6 | 0.02003 | 0.0 | 0.006463 | 0.03349 | 209.46 | 273499999.996 | -| BSVUSDT | 0.003635 | 0.00209 | 0.03607 | 0.002629 | 0.007914 | 0.006344 | 39.8 | 0.03516 | 0.0 | 0.02931 | 0.04868 | 139.46 | 273499999.996 | -| SLPUSDT | 0.004367 | 0.002072 | 0.02349 | 0.00837 | 0.005698 | 0.005253 | 26.2 | 0.0275 | 0.0 | 0.01974 | 0.06722 | 128.38 | 273499999.996 | -| ONGUSDT | 0.004023 | 0.001218 | 0.01609 | 0.007556 | 0.00516 | 0.004684 | 27.83 | 0.01993 | 0.0 | 0.01157 | 0.03109 | 101.42 | 273499999.996 | -| PORTALUSDT | 0.003728 | 0.005764 | 0.03447 | 0.0 | 0.008374 | 0.007204 | 11.73 | 0.04606 | 0.0 | 0.0135 | 0.0135 | 7.33 | 273499999.996 | -| STRAXUSDT | 0.00411 | 0.00225 | 0.06134 | 0.02369 | 0.01241 | 0.01379 | 84.88 | 0.1053 | 0.0 | 0.09485 | 0.1402 | 148.88 | 273499999.996 | -| ETHWUSDT | 0.003552 | 0.00275 | 0.05225 | 0.02508 | 0.007795 | 0.007023 | 63.62 | 0.04376 | 0.0 | 0.04159 | 0.06032 | 100.46 | 273499999.996 | -| ACEUSDT | 0.003738 | 0.003313 | 0.07745 | 0.0521 | 0.009246 | 0.01051 | 52.7 | 0.09202 | 0.0 | 0.08421 | 0.1063 | 80.54 | 273499999.996 | -| BONDUSDT | 0.003698 | 0.002856 | 0.02574 | 0.002192 | 0.009921 | 0.008632 | 47.73 | 0.04236 | 0.0 | 0.01076 | 0.01458 | 144.38 | 273499999.996 | -| UMAUSDT | 0.002535 | 0.001093 | 0.02 | 0.002989 | 0.006984 | 0.005998 | 65.78 | 0.03772 | 0.0 | 0.0193 | 0.09294 | 302.46 | 273499999.997 | -| TRBUSDT | 0.003078 | 0.001285 | 0.0212 | 0.008559 | 0.01895 | 0.01719 | 114.5 | 0.08822 | 0.0 | 0.06732 | 0.195 | 1281.67 | 273499999.997 | -| ARKUSDT | 0.002611 | 0.0009559 | 0.01461 | 0.00379 | 0.01732 | 0.0134 | 70.72 | 0.05443 | 0.0 | 0.01027 | 0.0454 | 170.29 | 273499999.997 | -| CYBERUSDT | 0.002974 | 0.00209 | 0.01377 | 0.002255 | 0.00599 | 0.005115 | 42.62 | 0.02141 | 0.0 | 0.007773 | 0.03331 | 199.46 | 273499999.997 | -| MOVRUSDT | 0.002781 | 0.002513 | 0.04798 | 0.02155 | 0.009278 | 0.009951 | 30.22 | 0.09253 | 0.0 | 0.08319 | 0.1288 | 72.46 | 273499999.997 | -| SNTUSDT | 0.003034 | 0.001192 | 0.007192 | 0.0009219 | 0.01018 | 0.008714 | 52.88 | 0.03452 | 0.0 | 0.001734 | 0.006153 | 126.46 | 273499999.997 | -| 1000LUNCUSDT | 0.003019 | 0.002062 | 0.03886 | 0.006592 | 0.007282 | 0.00712 | 93.75 | 0.05681 | 0.0 | 0.04893 | 0.133 | 545.42 | 273499999.997 | -| CAKEUSDT | 0.003494 | 0.001221 | 0.01556 | 0.0027 | 0.01238 | 0.01041 | 67.08 | 0.03974 | 0.0 | 0.007062 | 0.01644 | 126.46 | 273499999.997 | -| SEIUSDT | 0.002698 | 0.002689 | 0.05918 | 0.02045 | 0.009246 | 0.009281 | 92.57 | 0.07275 | 0.0 | 0.06749 | 0.1241 | 203.88 | 273499999.997 | -| LOOMUSDT | 0.002615 | 0.001894 | 0.008513 | 0.0 | 0.008941 | 0.00805 | 46.8 | 0.03742 | 0.0 | 0.007748 | 0.02576 | 148.38 | 273499999.997 | -| HIFIUSDT | 0.002989 | 0.0027 | 0.0532 | 0.02234 | 0.007965 | 0.007165 | 69.63 | 0.03781 | 0.0 | 0.03527 | 0.06624 | 173.38 | 273499999.997 | -| ILVUSDT | 0.003298 | 0.001931 | 0.04812 | 0.002465 | 0.01051 | 0.009109 | 42.15 | 0.04715 | 0.0 | 0.02796 | 0.06585 | 118.29 | 273499999.997 | -| ORBSUSDT | 0.002738 | 0.002151 | 0.02843 | 0.01237 | 0.005138 | 0.004847 | 32.52 | 0.0198 | 0.0 | 0.0134 | 0.03317 | 142.71 | 273499999.997 | -| SUIUSDT | 0.00283 | 0.001687 | 0.03955 | 0.006909 | 0.01121 | 0.009388 | 100.5 | 0.0477 | 0.0 | 0.02821 | 0.1102 | 309.29 | 273499999.997 | -| MBLUSDT | 0.002717 | 0.001867 | 0.03318 | 0.01789 | 0.006446 | 0.005891 | 63.25 | 0.03019 | 0.0 | 0.02096 | 0.04057 | 114.33 | 273499999.997 | -| TIAUSDT | 0.00296 | 0.001979 | 0.0238 | 0.000552 | 0.0155 | 0.0116 | 56.53 | 0.04512 | 0.0 | 0.008485 | 0.02286 | 128.21 | 273499999.997 | -| PYTHUSDT | 0.003481 | 0.003011 | 0.02791 | 0.002662 | 0.01313 | 0.0104 | 26.47 | 0.0415 | 0.0 | 0.009124 | 0.0267 | 106.38 | 273499999.997 | -| 1000PEPEUSDT | 0.002834 | 0.002274 | 0.0366 | 0.02176 | 0.006043 | 0.01053 | 116.6 | 0.106 | 0.0 | 0.09372 | 0.2381 | 307.29 | 273499999.997 | -| ALPHAUSDT | 0.001657 | 0.002428 | 0.04477 | 0.01419 | 0.01007 | 0.0102 | 83.98 | 0.05854 | 0.0 | 0.04466 | 0.1396 | 1200.67 | 273499999.998 | -| BNTUSDT | 0.001771 | 0.001579 | 0.05389 | 0.02917 | 0.008314 | 0.007955 | 91.32 | 0.04815 | 0.0 | 0.04606 | 0.08415 | 210.46 | 273499999.998 | -| KASUSDT | 0.002441 | 0.001887 | 0.03245 | 0.0004466 | 0.008545 | 0.007415 | 79.58 | 0.03065 | 0.0 | 0.01266 | 0.03704 | 111.88 | 273499999.998 | -| LRCUSDT | 0.001806 | 0.001364 | 0.01719 | 0.008794 | 0.0109 | 0.009952 | 118.0 | 0.0497 | 0.0 | 0.03545 | 0.2183 | 1235.67 | 273499999.998 | -| XVGUSDT | 0.002121 | 0.001751 | 0.06452 | 0.02564 | 0.008627 | 0.00866 | 99.18 | 0.06946 | 0.0 | 0.06502 | 0.1055 | 246.46 | 273499999.998 | -| MINAUSDT | 0.001848 | 0.001372 | 0.02116 | 0.005576 | 0.006853 | 0.007228 | 52.23 | 0.03683 | 0.0 | 0.02526 | 0.1142 | 394.5 | 273499999.998 | -| POWRUSDT | 0.002481 | 0.002561 | 0.03849 | 0.01793 | 0.009237 | 0.007773 | 57.15 | 0.03831 | 0.0 | 0.03392 | 0.09891 | 132.88 | 273499999.998 | -| SNXUSDT | 0.001723 | 0.00176 | 0.06166 | 0.02464 | 0.01697 | 0.01966 | 109.2 | 0.1108 | 0.0 | 0.09253 | 0.1904 | 1301.67 | 273499999.998 | -| FETUSDT | 0.002084 | 0.00144 | 0.02351 | 0.004608 | 0.007496 | 0.006691 | 42.5 | 0.03411 | 0.0 | 0.02079 | 0.05748 | 415.88 | 273499999.998 | -| FRONTUSDT | 0.002149 | 0.002107 | 0.09676 | 0.05984 | 0.0115 | 0.01472 | 109.8 | 0.1043 | 0.0 | 0.09432 | 0.1365 | 167.38 | 273499999.998 | -| SPELLUSDT | 0.001616 | 0.001085 | 0.04621 | 0.008743 | 0.00787 | 0.00705 | 105.4 | 0.04634 | 0.0 | 0.03959 | 0.09118 | 548.46 | 273499999.998 | -| TWTUSDT | 0.001893 | 0.001108 | 0.01021 | 0.003422 | 0.003239 | 0.003034 | 14.2 | 0.01675 | 0.0 | 0.01141 | 0.05257 | 125.38 | 273499999.998 | -| EDUUSDT | 0.001671 | 0.0009921 | 0.02219 | 0.01352 | 0.01042 | 0.00969 | 86.13 | 0.05699 | 0.0 | 0.05218 | 0.1278 | 312.46 | 273499999.998 | -| AMBUSDT | 0.002013 | 0.001283 | 0.06206 | 0.02087 | 0.01598 | 0.01749 | 112.8 | 0.1109 | 0.0 | 0.09652 | 0.1907 | 343.46 | 273499999.998 | -| HFTUSDT | 0.002286 | 0.000969 | 0.03164 | 0.01986 | 0.01285 | 0.01449 | 84.43 | 0.1017 | 0.0 | 0.09223 | 0.1351 | 336.46 | 273499999.998 | -| MAVUSDT | 0.00214 | 0.001759 | 0.01732 | 0.001485 | 0.01146 | 0.01014 | 107.0 | 0.06501 | 0.0 | 0.01982 | 0.04641 | 252.46 | 273499999.998 | -| GLMRUSDT | 0.002078 | 0.001843 | 0.0499 | 0.008895 | 0.01257 | 0.01048 | 95.83 | 0.04329 | 0.0 | 0.02184 | 0.05237 | 163.92 | 273499999.998 | -| DODOXUSDT | 0.002302 | 0.001257 | 0.01775 | 0.0007843 | 0.008933 | 0.007569 | 57.95 | 0.03142 | 0.0 | 0.006034 | 0.06555 | 212.46 | 273499999.998 | -| PHBUSDT | 0.001791 | 0.001189 | 0.06449 | 0.009914 | 0.01345 | 0.01299 | 99.53 | 0.07014 | 0.0 | 0.05685 | 0.1093 | 385.38 | 273499999.998 | -| 1000FLOKIUSDT | 0.001579 | 0.001043 | 0.04479 | 0.007141 | 0.01059 | 0.009349 | 74.9 | 0.063 | 0.0 | 0.0588 | 0.1187 | 306.29 | 273499999.998 | -| POLYXUSDT | 0.002195 | 0.001169 | 0.007852 | 0.0006795 | 0.007389 | 0.006182 | 48.1 | 0.02654 | 0.0 | 0.002221 | 0.007576 | 134.88 | 273499999.998 | -| MATICUSDT | 0.001682 | 0.003756 | 0.05652 | 0.03586 | 0.009425 | 0.0131 | 109.3 | 0.09725 | 0.0 | 0.08813 | 0.2093 | 1232.67 | 273499999.998 | -| WAXPUSDT | 0.00212 | 0.001323 | 0.03517 | 0.00377 | 0.01088 | 0.009315 | 101.4 | 0.04011 | 0.0 | 0.01133 | 0.03886 | 141.38 | 273499999.998 | -| GASUSDT | 0.002171 | 0.002436 | 0.02098 | 0.008247 | 0.008878 | 0.009986 | 58.63 | 0.05758 | 0.0 | 0.04352 | 0.1763 | 134.88 | 273499999.998 | -| RLCUSDT | 0.001545 | 0.002763 | 0.06687 | 0.03117 | 0.01498 | 0.01441 | 113.8 | 0.07813 | 0.0 | 0.07273 | 0.1556 | 1315.67 | 273499999.998 | -| PENDLEUSDT | 0.001675 | 0.001139 | 0.03032 | 0.006679 | 0.01087 | 0.008985 | 72.43 | 0.04146 | 0.0 | 0.02478 | 0.0635 | 223.88 | 273499999.998 | -| KEYUSDT | 0.001978 | 0.001683 | 0.03132 | 0.01113 | 0.008204 | 0.008158 | 68.85 | 0.04652 | 0.0 | 0.0371 | 0.153 | 288.46 | 273499999.998 | -| BLURUSDT | 0.001777 | 0.001494 | 0.02613 | 0.007457 | 0.008909 | 0.008265 | 107.6 | 0.04609 | 0.0 | 0.03417 | 0.1061 | 314.46 | 273499999.998 | -| INJUSDT | 0.001869 | 0.001421 | 0.03442 | 0.007411 | 0.009972 | 0.008644 | 110.5 | 0.05094 | 0.0 | 0.02563 | 0.05894 | 568.88 | 273499999.998 | -| RADUSDT | 0.002027 | 0.001285 | 0.03646 | 0.002479 | 0.008087 | 0.007304 | 107.1 | 0.05386 | 0.0 | 0.03949 | 0.111 | 302.46 | 273499999.998 | -| COMBOUSDT | 0.001616 | 0.001699 | 0.04373 | 0.0269 | 0.007099 | 0.009458 | 36.92 | 0.09299 | 0.0 | 0.08421 | 0.1633 | 279.46 | 273499999.998 | -| RNDRUSDT | 0.001792 | 0.001917 | 0.04629 | 0.009859 | 0.0086 | 0.009346 | 65.23 | 0.06539 | 0.0 | 0.05812 | 0.1214 | 398.88 | 273499999.998 | -| AXLUSDT | 0.002334 | 0.00473 | 0.0202 | 0.0 | 0.00829 | 0.006456 | 7.533 | 0.02603 | 0.0 | 0.003367 | 0.003367 | 6.33 | 273499999.998 | -| YGGUSDT | 0.002297 | 0.001795 | 0.04472 | 0.01951 | 0.01015 | 0.01168 | 110.1 | 0.08188 | 0.0 | 0.07549 | 0.09696 | 215.83 | 273499999.998 | -| SOLUSDT | 0.002061 | 0.003216 | 0.06142 | 0.03271 | 0.01041 | 0.01347 | 117.3 | 0.09542 | 0.0 | 0.0864 | 0.1694 | 1270.67 | 273499999.998 | -| STXUSDT | 0.001917 | 0.001612 | 0.07601 | 0.0154 | 0.009829 | 0.01255 | 89.45 | 0.1089 | 0.0 | 0.0965 | 0.1623 | 380.38 | 273499999.998 | -| ARBUSDT | 0.001608 | 0.001326 | 0.05109 | 0.01608 | 0.008015 | 0.008434 | 105.1 | 0.06894 | 0.0 | 0.06563 | 0.1147 | 350.33 | 273499999.998 | -| ASTRUSDT | 0.00165 | 0.001272 | 0.0374 | 0.01807 | 0.0102 | 0.009182 | 96.23 | 0.04804 | 0.0 | 0.04554 | 0.109 | 387.88 | 273499999.998 | -| RDNTUSDT | 0.001574 | 0.001437 | 0.07264 | 0.01579 | 0.009499 | 0.00987 | 115.8 | 0.06941 | 0.0 | 0.06415 | 0.1135 | 337.46 | 273499999.998 | -| NMRUSDT | 0.002101 | 0.001436 | 0.04408 | 0.02703 | 0.008042 | 0.009139 | 83.5 | 0.06583 | 0.0 | 0.06236 | 0.1045 | 259.46 | 273499999.998 | -| CKBUSDT | 0.001763 | 0.0009154 | 0.03029 | 0.004585 | 0.006908 | 0.005783 | 52.83 | 0.03335 | 0.0 | 0.0237 | 0.05468 | 373.46 | 273499999.998 | -| ICPUSDT | 0.002133 | 0.00141 | 0.05224 | 0.01054 | 0.007324 | 0.006353 | 115.3 | 0.03522 | 0.0 | 0.02806 | 0.077 | 527.88 | 273499999.998 | -| STPTUSDT | 0.001911 | 0.001277 | 0.03051 | 0.01464 | 0.006175 | 0.005625 | 50.25 | 0.02934 | 0.0 | 0.02139 | 0.05346 | 141.38 | 273499999.998 | -| TLMUSDT | 0.001554 | 0.0009488 | 0.02808 | 0.001249 | 0.008174 | 0.007352 | 116.5 | 0.03632 | 0.0 | 0.01622 | 0.07447 | 343.46 | 273499999.998 | -| MDTUSDT | 0.00224 | 0.0007961 | 0.008587 | 8.282e-05 | 0.01014 | 0.008392 | 93.88 | 0.03395 | 0.0 | 0.002796 | 0.009868 | 251.46 | 273499999.998 | -| CRVUSDT | 0.0009249 | 0.001715 | 0.04485 | 0.01755 | 0.01342 | 0.01509 | 92.17 | 0.09584 | 0.0 | 0.0848 | 0.2429 | 1283.67 | 273499999.999 | -| XEMUSDT | 0.0006174 | 0.001046 | 0.01076 | 0.002642 | 0.008214 | 0.006707 | 107.2 | 0.02728 | 0.0 | 0.007651 | 0.07057 | 1100.67 | 273499999.999 | -| AAVEUSDT | 0.001376 | 0.00251 | 0.0475 | 0.02498 | 0.009745 | 0.01275 | 98.6 | 0.08263 | 0.0 | 0.07444 | 0.2258 | 1238.67 | 273499999.999 | -| EGLDUSDT | 0.001293 | 0.001716 | 0.04949 | 0.01638 | 0.01056 | 0.01572 | 93.77 | 0.1063 | 0.0 | 0.09292 | 0.2414 | 1270.67 | 273499999.999 | -| LEVERUSDT | 0.0006502 | 0.0004058 | 0.01475 | 0.009994 | 0.01392 | 0.01206 | 116.9 | 0.05675 | 0.0 | 0.05149 | 0.07197 | 343.46 | 273499999.999 | -| CTSIUSDT | 0.001143 | 0.001164 | 0.0389 | 0.01576 | 0.00942 | 0.01077 | 102.0 | 0.06425 | 0.0 | 0.0594 | 0.151 | 863.83 | 273499999.999 | -| KNCUSDT | 0.0007526 | 0.0007079 | 0.01084 | 0.002227 | 0.01213 | 0.009839 | 114.3 | 0.04019 | 0.0 | 0.007228 | 0.05478 | 1354.62 | 273499999.999 | -| ETHUSDT | 0.0005947 | 0.001704 | 0.03764 | 0.02192 | 0.005338 | 0.008241 | 119.5 | 0.04974 | 0.0 | 0.04721 | 0.1027 | 1527.96 | 273499999.999 | -| OMGUSDT | 0.00128 | 0.001789 | 0.0821 | 0.0249 | 0.01424 | 0.0138 | 114.3 | 0.08181 | 0.0 | 0.07477 | 0.1867 | 1344.58 | 273499999.999 | -| IDEXUSDT | 0.00123 | 0.000956 | 0.06564 | 0.01389 | 0.01225 | 0.0114 | 110.5 | 0.08568 | 0.0 | 0.07803 | 0.1241 | 309.46 | 273499999.999 | -| ACHUSDT | 0.001078 | 0.001095 | 0.03963 | 0.01709 | 0.01108 | 0.01051 | 59.22 | 0.06247 | 0.0 | 0.05815 | 0.1148 | 379.38 | 273499999.999 | -| QNTUSDT | 0.001067 | 0.0007538 | 0.01719 | 0.002352 | 0.005954 | 0.004651 | 108.4 | 0.0199 | 0.0 | 0.006683 | 0.05622 | 504.88 | 273499999.999 | -| AXSUSDT | 0.0006764 | 0.00135 | 0.05346 | 0.01477 | 0.0141 | 0.01387 | 107.0 | 0.08489 | 0.0 | 0.07059 | 0.1466 | 1203.67 | 273499999.999 | -| QTUMUSDT | 0.0005543 | 0.0008357 | 0.04347 | 0.006181 | 0.01495 | 0.01508 | 105.4 | 0.08234 | 0.0 | 0.0611 | 0.2491 | 1477.62 | 273499999.999 | -| RSRUSDT | 0.001062 | 0.001129 | 0.01422 | 0.006009 | 0.008936 | 0.01544 | 94.88 | 0.07521 | 0.0 | 0.05573 | 0.2341 | 1235.67 | 273499999.999 | -| MANAUSDT | 0.001004 | 0.001538 | 0.02044 | 0.009043 | 0.006286 | 0.007775 | 80.13 | 0.0439 | 0.0 | 0.03527 | 0.2469 | 1088.67 | 273499999.999 | -| ROSEUSDT | 0.0008846 | 0.0008731 | 0.02327 | 0.008616 | 0.00931 | 0.01003 | 95.92 | 0.08065 | 0.0 | 0.06866 | 0.2121 | 797.83 | 273499999.999 | -| FTMUSDT | 0.001047 | 0.001906 | 0.04809 | 0.01793 | 0.01209 | 0.01667 | 100.2 | 0.1114 | 0.0 | 0.09618 | 0.2404 | 1260.67 | 273499999.999 | -| LPTUSDT | 0.0009333 | 0.0006744 | 0.03504 | 0.01173 | 0.01417 | 0.01341 | 118.3 | 0.07509 | 0.0 | 0.0548 | 0.1217 | 847.83 | 273499999.999 | -| HBARUSDT | 0.001242 | 0.001826 | 0.06046 | 0.01472 | 0.00912 | 0.009396 | 112.6 | 0.05956 | 0.0 | 0.05219 | 0.155 | 1086.67 | 273499999.999 | -| BANDUSDT | 0.0008851 | 0.001386 | 0.04922 | 0.01335 | 0.01627 | 0.01515 | 105.4 | 0.09459 | 0.0 | 0.08456 | 0.2423 | 1317.67 | 273499999.999 | -| AGIXUSDT | 0.001292 | 0.00111 | 0.0366 | 0.018 | 0.008539 | 0.01042 | 76.37 | 0.07378 | 0.0 | 0.06784 | 0.09853 | 385.38 | 273499999.999 | -| FXSUSDT | 0.00124 | 0.0005403 | 0.01412 | 0.006004 | 0.008202 | 0.006872 | 55.28 | 0.03184 | 0.0 | 0.02043 | 0.06322 | 412.83 | 273499999.999 | -| AUDIOUSDT | 0.0007027 | 0.0009452 | 0.01682 | 0.0102 | 0.009886 | 0.009984 | 81.83 | 0.05174 | 0.0 | 0.04086 | 0.1845 | 931.83 | 273499999.999 | -| ETCUSDT | 0.0009185 | 0.001388 | 0.01861 | 0.006792 | 0.005829 | 0.005447 | 70.52 | 0.0282 | 0.0 | 0.02138 | 0.1285 | 1512.62 | 273499999.999 | -| DEFIUSDT | 0.0007485 | 0.001277 | 0.0497 | 0.02188 | 0.01196 | 0.01504 | 119.3 | 0.09487 | 0.0 | 0.08536 | 0.2108 | 1287.67 | 273499999.999 | -| ENJUSDT | 0.001059 | 0.001755 | 0.05733 | 0.02217 | 0.01285 | 0.01481 | 109.8 | 0.0835 | 0.0 | 0.07313 | 0.2473 | 1255.67 | 273499999.999 | -| IOSTUSDT | 0.0007782 | 0.001247 | 0.04511 | 0.01278 | 0.01365 | 0.01588 | 119.4 | 0.09186 | 0.0 | 0.07267 | 0.2128 | 1476.62 | 273499999.999 | -| MTLUSDT | 0.001415 | 0.001146 | 0.03913 | 0.01822 | 0.01335 | 0.01374 | 117.2 | 0.07746 | 0.0 | 0.06463 | 0.2404 | 1072.67 | 273499999.999 | -| HOTUSDT | 0.001439 | 0.002173 | 0.04511 | 0.01477 | 0.008373 | 0.009471 | 103.9 | 0.05835 | 0.0 | 0.05107 | 0.234 | 1073.67 | 273499999.999 | -| 1000SHIBUSDT | 0.001381 | 0.002042 | 0.01794 | 0.003806 | 0.00648 | 0.007598 | 71.32 | 0.0412 | 0.0 | 0.02597 | 0.1642 | 1032.25 | 273499999.999 | -| ZENUSDT | 0.001159 | 0.001828 | 0.02975 | 0.0182 | 0.006467 | 0.008282 | 109.5 | 0.05132 | 0.0 | 0.04861 | 0.1092 | 1199.67 | 273499999.999 | -| TONUSDT | 0.001346 | 0.002525 | 0.008528 | 0.0 | 0.004872 | 0.004314 | 15.63 | 0.02822 | 0.0 | 0.001803 | 0.001803 | 6.46 | 273499999.999 | -| OGNUSDT | 0.001097 | 0.001645 | 0.02447 | 0.004945 | 0.01399 | 0.01301 | 113.4 | 0.06688 | 0.0 | 0.02397 | 0.09632 | 1071.67 | 273499999.999 | -| WOOUSDT | 0.00111 | 0.0008392 | 0.01976 | 0.008031 | 0.01273 | 0.01034 | 65.5 | 0.04263 | 0.0 | 0.02082 | 0.07799 | 699.83 | 273499999.999 | -| SUSHIUSDT | 0.001071 | 0.00162 | 0.04007 | 0.008 | 0.01679 | 0.01608 | 112.9 | 0.08372 | 0.0 | 0.05029 | 0.2062 | 1280.67 | 273499999.999 | -| RENUSDT | 0.000709 | 0.0009409 | 0.04088 | 0.002607 | 0.01336 | 0.01681 | 110.8 | 0.1087 | 0.0 | 0.07311 | 0.2434 | 1241.67 | 273499999.999 | -| CELOUSDT | 0.0008728 | 0.0005517 | 0.02229 | 0.004396 | 0.01182 | 0.009789 | 80.53 | 0.04847 | 0.0 | 0.01917 | 0.1617 | 892.83 | 273499999.999 | -| BNBUSDT | 0.0005615 | 0.001516 | 0.02627 | 0.0107 | 0.005852 | 0.006546 | 100.0 | 0.04434 | 0.0 | 0.04073 | 0.1905 | 1487.62 | 273499999.999 | -| NEARUSDT | 0.0005187 | 0.0007133 | 0.01411 | 0.00647 | 0.008497 | 0.0134 | 80.45 | 0.0686 | 0.0 | 0.05225 | 0.227 | 1239.62 | 273499999.999 | -| APEUSDT | 0.001201 | 0.001207 | 0.03066 | 0.004603 | 0.006608 | 0.006364 | 80.58 | 0.04119 | 0.0 | 0.0329 | 0.1605 | 721.33 | 273499999.999 | -| ADAUSDT | 0.0006663 | 0.001431 | 0.01405 | 0.005406 | 0.00372 | 0.004537 | 38.18 | 0.02707 | 0.0 | 0.02175 | 0.1258 | 1497.62 | 273499999.999 | -| API3USDT | 0.001222 | 0.0009715 | 0.02249 | 0.002215 | 0.01028 | 0.008001 | 98.85 | 0.03425 | 0.0 | 0.01377 | 0.09368 | 744.83 | 273499999.999 | -| GRTUSDT | 0.001169 | 0.002097 | 0.04305 | 0.01326 | 0.01297 | 0.01444 | 114.2 | 0.0833 | 0.0 | 0.06768 | 0.2179 | 1174.67 | 273499999.999 | -| BELUSDT | 0.001371 | 0.001398 | 0.02284 | 0.01484 | 0.0119 | 0.01329 | 106.7 | 0.102 | 0.0 | 0.09168 | 0.1837 | 1205.67 | 273499999.999 | -| CELRUSDT | 0.0007964 | 0.001327 | 0.04174 | 0.00616 | 0.01222 | 0.01193 | 102.9 | 0.06487 | 0.0 | 0.04916 | 0.233 | 1074.67 | 273499999.999 | -| APTUSDT | 0.000691 | 0.0006405 | 0.009871 | 0.004225 | 0.008081 | 0.01066 | 64.37 | 0.05497 | 0.0 | 0.03622 | 0.1386 | 505.88 | 273499999.999 | -| LUNA2USDT | 0.0006935 | 0.0005478 | 0.01239 | 0.0004817 | 0.009266 | 0.00977 | 80.68 | 0.05387 | 0.0 | 0.02503 | 0.2324 | 544.83 | 273499999.999 | -| DENTUSDT | 0.0009575 | 0.001757 | 0.03582 | 0.009117 | 0.01054 | 0.009872 | 102.7 | 0.05362 | 0.0 | 0.03825 | 0.1114 | 1079.79 | 273499999.999 | -| BALUSDT | 0.0007932 | 0.0007128 | 0.02836 | 0.008536 | 0.01354 | 0.01172 | 119.4 | 0.05967 | 0.0 | 0.0489 | 0.1982 | 1283.67 | 273499999.999 | -| ATAUSDT | 0.0005357 | 0.0006091 | 0.01253 | 0.002885 | 0.01156 | 0.00922 | 112.2 | 0.03824 | 0.0 | 0.01147 | 0.08415 | 919.83 | 273499999.999 | -| STGUSDT | 0.0006633 | 0.0008165 | 0.02571 | 0.003724 | 0.01001 | 0.008996 | 117.9 | 0.04666 | 0.0 | 0.02186 | 0.08318 | 560.46 | 273499999.999 | -| OCEANUSDT | 0.001294 | 0.001478 | 0.0306 | 0.01269 | 0.0127 | 0.01213 | 116.5 | 0.06233 | 0.0 | 0.05035 | 0.1738 | 1220.67 | 273499999.999 | -| BLZUSDT | 0.00095 | 0.0008517 | 0.02121 | 0.006777 | 0.0117 | 0.01078 | 101.8 | 0.06003 | 0.0 | 0.03632 | 0.13 | 1267.67 | 273499999.999 | -| SANDUSDT | 0.000985 | 0.001826 | 0.03562 | 0.01118 | 0.008223 | 0.009819 | 86.05 | 0.05833 | 0.0 | 0.05102 | 0.1755 | 1137.67 | 273499999.999 | -| AVAXUSDT | 0.001406 | 0.002032 | 0.03465 | 0.01366 | 0.01047 | 0.009577 | 104.1 | 0.04726 | 0.0 | 0.04076 | 0.1607 | 1261.67 | 273499999.999 | -| SFPUSDT | 0.0009542 | 0.001798 | 0.04141 | 0.01963 | 0.01023 | 0.01247 | 107.0 | 0.08059 | 0.0 | 0.06849 | 0.162 | 1107.67 | 273499999.999 | -| ENSUSDT | 0.0005569 | 0.0005085 | 0.02472 | 0.00094 | 0.01324 | 0.0108 | 98.68 | 0.0566 | 0.0 | 0.02069 | 0.08157 | 828.83 | 273499999.999 | -| LINAUSDT | 0.0009989 | 0.001343 | 0.04938 | 0.01447 | 0.01866 | 0.01937 | 115.8 | 0.1146 | 0.0 | 0.08834 | 0.2091 | 1084.67 | 273499999.999 | -| KAVAUSDT | 0.0006046 | 0.0006907 | 0.02832 | 0.01203 | 0.01411 | 0.01386 | 106.2 | 0.08314 | 0.0 | 0.06469 | 0.2345 | 1318.67 | 273499999.999 | -| DOGEUSDT | 0.001247 | 0.002458 | 0.05446 | 0.008195 | 0.00684 | 0.008213 | 119.5 | 0.05169 | 0.0 | 0.04113 | 0.2262 | 1336.58 | 273499999.999 | -| HIGHUSDT | 0.00101 | 0.0007946 | 0.03236 | 0.0 | 0.0119 | 0.01199 | 109.8 | 0.08395 | 0.0 | 0.05392 | 0.08443 | 394.88 | 273499999.999 | -| IMXUSDT | 0.0009557 | 0.001128 | 0.04148 | 0.01612 | 0.01259 | 0.01003 | 108.9 | 0.04632 | 0.0 | 0.04206 | 0.1052 | 755.83 | 273499999.999 | -| 1INCHUSDT | 0.0008 | 0.0008964 | 0.02056 | 0.007074 | 0.01157 | 0.009836 | 103.6 | 0.04333 | 0.0 | 0.02759 | 0.2377 | 1168.54 | 273499999.999 | -| XLMUSDT | 0.0006884 | 0.001965 | 0.02714 | 0.00591 | 0.008274 | 0.008894 | 109.2 | 0.05022 | 0.0 | 0.03115 | 0.1289 | 1508.62 | 273499999.999 | -| JOEUSDT | 0.0007066 | 0.0006673 | 0.03326 | 0.006264 | 0.01566 | 0.01283 | 109.8 | 0.06463 | 0.0 | 0.04089 | 0.07097 | 344.46 | 273499999.999 | -| LITUSDT | 0.001371 | 0.0009419 | 0.01236 | 0.002432 | 0.01392 | 0.0116 | 118.7 | 0.04893 | 0.0 | 0.009332 | 0.08504 | 1113.67 | 273499999.999 | -| DARUSDT | 0.001335 | 0.001028 | 0.02561 | 0.005303 | 0.01028 | 0.008493 | 103.5 | 0.04395 | 0.0 | 0.03003 | 0.08847 | 678.83 | 273499999.999 | -| LDOUSDT | 0.001138 | 0.00101 | 0.04784 | 0.00493 | 0.01349 | 0.01186 | 93.27 | 0.07659 | 0.0 | 0.056 | 0.226 | 532.46 | 273499999.999 | -| VETUSDT | 0.0008448 | 0.001774 | 0.04011 | 0.01316 | 0.005858 | 0.007584 | 98.68 | 0.05112 | 0.0 | 0.04415 | 0.163 | 1483.62 | 273499999.999 | -| XVSUSDT | 0.0007277 | 0.0008488 | 0.03426 | 0.008487 | 0.01131 | 0.01062 | 71.5 | 0.07011 | 0.0 | 0.06073 | 0.1084 | 329.88 | 273499999.999 | -| SXPUSDT | 0.0008017 | 0.002377 | 0.03843 | 0.01654 | 0.01078 | 0.01167 | 112.8 | 0.06541 | 0.0 | 0.05905 | 0.2048 | 1325.58 | 273499999.999 | -| IDUSDT | 0.0008538 | 0.0006573 | 0.0251 | 0.01221 | 0.01419 | 0.01522 | 80.15 | 0.0992 | 0.0 | 0.08675 | 0.15 | 350.38 | 273499999.999 | -| AGLDUSDT | 0.001166 | 0.001238 | 0.04942 | 0.01049 | 0.01147 | 0.01092 | 86.22 | 0.0629 | 0.0 | 0.04869 | 0.07651 | 222.88 | 273499999.999 | -| ANKRUSDT | 0.001172 | 0.002016 | 0.03302 | 0.01613 | 0.008533 | 0.01068 | 112.2 | 0.04455 | 0.0 | 0.03222 | 0.09409 | 1136.67 | 273499999.999 | -| CHZUSDT | 0.0006134 | 0.001304 | 0.009284 | 0.0009306 | 0.01026 | 0.008725 | 104.8 | 0.03863 | 0.0 | 0.009659 | 0.1186 | 1141.67 | 273499999.999 | -| GALAUSDT | 0.0009313 | 0.00114 | 0.02219 | 0.006214 | 0.009535 | 0.007823 | 76.28 | 0.03486 | 0.0 | 0.01848 | 0.08524 | 901.83 | 273499999.999 | -| MAGICUSDT | 0.0007178 | 0.0007988 | 0.02645 | 0.01259 | 0.01374 | 0.01091 | 101.3 | 0.04745 | 0.0 | 0.03926 | 0.07063 | 407.83 | 273499999.999 | -| RUNEUSDT | 0.001119 | 0.002262 | 0.05503 | 0.02207 | 0.009797 | 0.01604 | 114.0 | 0.1122 | 0.0 | 0.09948 | 0.2237 | 1280.67 | 273499999.999 | -| CFXUSDT | 0.001138 | 0.0005851 | 0.02342 | 0.01391 | 0.01167 | 0.01188 | 80.15 | 0.07609 | 0.0 | 0.06938 | 0.109 | 381.38 | 273499999.999 | -| DOTUSDT | 0.001153 | 0.001909 | 0.06884 | 0.02658 | 0.008816 | 0.0119 | 99.25 | 0.07884 | 0.0 | 0.07165 | 0.2483 | 1293.67 | 273499999.999 | -| BATUSDT | 0.0005923 | 0.000867 | 0.01461 | 0.006505 | 0.01003 | 0.009356 | 103.0 | 0.04063 | 0.0 | 0.0201 | 0.2355 | 1484.62 | 273499999.999 | -| ALGOUSDT | 0.0005772 | 0.0007849 | 0.01917 | 0.003068 | 0.01281 | 0.01038 | 104.7 | 0.0413 | 0.0 | 0.01251 | 0.1059 | 1360.58 | 273499999.999 | -| COTIUSDT | 0.001289 | 0.001492 | 0.05004 | 0.01469 | 0.01593 | 0.01424 | 115.7 | 0.08128 | 0.0 | 0.06841 | 0.2224 | 1093.67 | 273499999.999 | -| IOTAUSDT | 0.0006727 | 0.001087 | 0.01314 | 0.0008357 | 0.01212 | 0.009124 | 104.8 | 0.03724 | 0.0 | 0.007447 | 0.0733 | 1485.62 | 273499999.999 | -| NEOUSDT | 0.0007142 | 0.0009401 | 0.0214 | 0.008003 | 0.01296 | 0.01287 | 115.2 | 0.06006 | 0.0 | 0.04126 | 0.188 | 1480.62 | 273499999.999 | -| BCHUSDT | 0.0007495 | 0.001065 | 0.02965 | 0.01679 | 0.008831 | 0.01103 | 97.4 | 0.0655 | 0.0 | 0.06001 | 0.1964 | 1527.96 | 273499999.999 | -| RVNUSDT | 0.0008383 | 0.001519 | 0.03581 | 0.002849 | 0.008133 | 0.008476 | 93.5 | 0.05362 | 0.0 | 0.03041 | 0.2485 | 1108.67 | 273499999.999 | -| ICXUSDT | 0.000816 | 0.001036 | 0.0392 | 0.01649 | 0.01053 | 0.01392 | 114.6 | 0.08919 | 0.0 | 0.07889 | 0.2436 | 1269.67 | 273499999.999 | -| ANTUSDT | 0.0006228 | 0.0005367 | 0.01508 | 0.001185 | 0.01072 | 0.008738 | 81.23 | 0.03944 | 0.0 | 0.008659 | 0.0472 | 801.79 | 273499999.999 | -| XMRUSDT | 0.0006229 | 0.001078 | 0.03314 | 0.01114 | 0.006441 | 0.007638 | 95.58 | 0.04339 | 0.0 | 0.03775 | 0.2389 | 1494.62 | 273499999.999 | -| CVXUSDT | 0.00087 | 0.0006202 | 0.03093 | 0.01516 | 0.006746 | 0.006303 | 59.28 | 0.03266 | 0.0 | 0.0301 | 0.07643 | 532.46 | 273499999.999 | -| CTKUSDT | 0.0009153 | 0.002035 | 0.05731 | 0.005343 | 0.0122 | 0.01318 | 111.9 | 0.07307 | 0.0 | 0.057 | 0.2003 | 1204.67 | 273499999.999 | -| COMPUSDT | 0.0009742 | 0.001344 | 0.05992 | 0.01333 | 0.01324 | 0.01379 | 118.1 | 0.08216 | 0.0 | 0.07004 | 0.2364 | 1346.58 | 273499999.999 | -| GMXUSDT | 0.0007958 | 0.0006999 | 0.05255 | 0.02539 | 0.01151 | 0.01083 | 98.57 | 0.053 | 0.0 | 0.03834 | 0.0573 | 384.38 | 273499999.999 | -| MKRUSDT | 0.0005374 | 0.0007972 | 0.01716 | 0.002821 | 0.01163 | 0.01116 | 110.4 | 0.05679 | 0.0 | 0.0261 | 0.1947 | 1302.67 | 273499999.999 | -| XTZUSDT | 0.0005662 | 0.001316 | 0.01977 | 0.005925 | 0.01206 | 0.01065 | 111.4 | 0.05401 | 0.0 | 0.03312 | 0.1109 | 1491.62 | 273499999.999 | -| OPUSDT | 0.001438 | 0.001542 | 0.02878 | 0.01846 | 0.007179 | 0.009497 | 102.3 | 0.06717 | 0.0 | 0.06293 | 0.09947 | 645.38 | 273499999.999 | -| CHRUSDT | 0.000848 | 0.001425 | 0.05672 | 0.01364 | 0.0133 | 0.0137 | 112.6 | 0.08466 | 0.0 | 0.07303 | 0.2163 | 1091.67 | 273499999.999 | -| THETAUSDT | 0.001119 | 0.002331 | 0.0567 | 0.01435 | 0.01135 | 0.01283 | 107.5 | 0.0812 | 0.0 | 0.07126 | 0.2331 | 1380.62 | 273499999.999 | -| SKLUSDT | 0.000535 | 0.0008165 | 0.02156 | 0.006596 | 0.01325 | 0.01124 | 103.7 | 0.05371 | 0.0 | 0.03577 | 0.1261 | 1185.67 | 273499999.999 | -| SSVUSDT | 0.0008337 | 0.0006498 | 0.02909 | 0.0 | 0.01232 | 0.01125 | 110.2 | 0.0918 | 0.0 | 0.06763 | 0.1013 | 377.46 | 273499999.999 | -| LQTYUSDT | 0.0008591 | 0.001059 | 0.03424 | 0.009547 | 0.01468 | 0.01218 | 96.88 | 0.05783 | 0.0 | 0.03858 | 0.1236 | 363.46 | 273499999.999 | -| DYDXUSDT | 0.0007046 | 0.0007848 | 0.01067 | 0.000806 | 0.01132 | 0.008917 | 63.83 | 0.0351 | 0.0 | 0.005179 | 0.07234 | 909.83 | 273499999.999 | -| FILUSDT | 0.001056 | 0.00141 | 0.04378 | 0.009778 | 0.007665 | 0.01096 | 92.67 | 0.07452 | 0.0 | 0.06338 | 0.1626 | 1238.71 | 273499999.999 | -| PEOPLEUSDT | 0.001034 | 0.0007375 | 0.02556 | 0.007698 | 0.01259 | 0.01113 | 101.9 | 0.06591 | 0.0 | 0.04752 | 0.112 | 804.79 | 273499999.999 | -| HOOKUSDT | 0.0008769 | 0.0008919 | 0.04497 | 0.01105 | 0.01291 | 0.01219 | 89.07 | 0.07547 | 0.0 | 0.06557 | 0.1266 | 409.83 | 273499999.999 | -| ATOMUSDT | 0.0007205 | 0.001443 | 0.02535 | 0.006765 | 0.00851 | 0.008697 | 118.5 | 0.04734 | 0.0 | 0.03119 | 0.1892 | 1490.46 | 273499999.999 | -| NKNUSDT | 0.00141 | 0.002039 | 0.07931 | 0.01996 | 0.01208 | 0.01355 | 109.5 | 0.08614 | 0.0 | 0.07757 | 0.2268 | 1063.67 | 273499999.999 | -| UNFIUSDT | 0.001261 | 0.001657 | 0.05281 | 0.01447 | 0.01716 | 0.0183 | 112.7 | 0.1177 | 0.0 | 0.0959 | 0.2374 | 1112.67 | 273499999.999 | -| STMXUSDT | 0.0007998 | 0.00114 | 0.05857 | 0.02089 | 0.01437 | 0.01639 | 113.5 | 0.1027 | 0.0 | 0.08932 | 0.2141 | 1081.67 | 273499999.999 | -| ARPAUSDT | 0.0009294 | 0.001028 | 0.02939 | 0.005645 | 0.01072 | 0.009069 | 102.1 | 0.03985 | 0.0 | 0.0206 | 0.07423 | 870.83 | 273499999.999 | -| ZRXUSDT | 0.001169 | 0.00129 | 0.03524 | 0.01688 | 0.01119 | 0.01342 | 78.67 | 0.07348 | 0.0 | 0.0611 | 0.2391 | 1352.58 | 273499999.999 | -| ZILUSDT | 0.000969 | 0.001007 | 0.01528 | 0.004428 | 0.009269 | 0.008706 | 117.6 | 0.0366 | 0.0 | 0.01503 | 0.1995 | 1358.58 | 273499999.999 | -| REEFUSDT | 0.001287 | 0.00145 | 0.02831 | 0.009435 | 0.01078 | 0.01109 | 108.2 | 0.06287 | 0.0 | 0.04144 | 0.2281 | 1109.67 | 273499999.999 | -| TRUUSDT | 0.001125 | 0.0008254 | 0.02894 | 0.01924 | 0.0132 | 0.01297 | 80.17 | 0.07718 | 0.0 | 0.07146 | 0.1208 | 366.46 | 273499999.999 | -| LINKUSDT | 0.001178 | 0.002151 | 0.07357 | 0.02193 | 0.01049 | 0.01539 | 113.4 | 0.09983 | 0.0 | 0.08716 | 0.2436 | 1511.62 | 273499999.999 | -| STORJUSDT | 0.001084 | 0.001065 | 0.01748 | 0.007205 | 0.01277 | 0.01131 | 77.67 | 0.05232 | 0.0 | 0.03088 | 0.1584 | 1268.67 | 273499999.999 | -| KSMUSDT | 0.001075 | 0.001723 | 0.06442 | 0.02319 | 0.01193 | 0.0137 | 102.5 | 0.07274 | 0.0 | 0.06376 | 0.1915 | 1240.67 | 273499999.999 | -| XRPUSDT | 0.001127 | 0.001842 | 0.02367 | 0.005965 | 0.008032 | 0.007855 | 110.8 | 0.03683 | 0.0 | 0.0199 | 0.1803 | 1522.62 | 273499999.999 | -| ZECUSDT | 0.0007572 | 0.001045 | 0.02005 | 0.003408 | 0.01033 | 0.008773 | 119.9 | 0.04217 | 0.0 | 0.02352 | 0.1971 | 1492.62 | 273499999.999 | -| PERPUSDT | 0.0006522 | 0.0004515 | 0.01097 | 0.0006349 | 0.01371 | 0.01109 | 82.0 | 0.04688 | 0.0 | 0.006746 | 0.0417 | 367.46 | 273499999.999 | -| WAVESUSDT | 0.001068 | 0.001622 | 0.03594 | 0.02318 | 0.01003 | 0.01361 | 102.7 | 0.09213 | 0.0 | 0.08296 | 0.2078 | 1303.67 | 273499999.999 | -| DGBUSDT | 0.0008935 | 0.0008882 | 0.01315 | 0.002824 | 0.009156 | 0.008171 | 105.0 | 0.03818 | 0.0 | 0.01761 | 0.2017 | 1051.83 | 273499999.999 | -| BAKEUSDT | 0.0008182 | 0.0004912 | 0.02997 | 0.01398 | 0.01598 | 0.01521 | 98.72 | 0.0818 | 0.0 | 0.06852 | 0.2019 | 1023.67 | 273499999.999 | -| UNIUSDT | 0.0009438 | 0.00109 | 0.03459 | 0.01581 | 0.009705 | 0.00972 | 99.88 | 0.05566 | 0.0 | 0.04592 | 0.249 | 1266.67 | 273499999.999 | -| EOSUSDT | 0.0003729 | 0.0007147 | 0.02778 | 0.001047 | 0.01006 | 0.01 | 113.5 | 0.05469 | 0.0 | 0.02697 | 0.1283 | 1520.62 | 273500000.0 | -| FLMUSDT | 0.0004043 | 0.0006925 | 0.02574 | 0.01037 | 0.01448 | 0.01868 | 109.7 | 0.1238 | 0.0 | 0.0954 | 0.2087 | 1255.67 | 273500000.0 | -| BTCUSDT | 0.0003184 | 0.0006948 | 0.03415 | 0.01238 | 0.006735 | 0.007201 | 119.3 | 0.03928 | 0.0 | 0.03423 | 0.1331 | 1527.96 | 273500000.0 | -| TRXUSDT | 0.000334 | 0.001463 | 0.02019 | 0.01152 | 0.006747 | 0.008856 | 114.3 | 0.04976 | 0.0 | 0.04498 | 0.1715 | 1513.62 | 273500000.0 | -| JASMYUSDT | 0.0004807 | 0.0005462 | 0.008576 | 0.002768 | 0.006764 | 0.006036 | 102.5 | 0.02638 | 0.0 | 0.01065 | 0.0621 | 687.83 | 273500000.0 | -| DASHUSDT | 0.0003772 | 0.000645 | 0.01953 | 0.00053 | 0.01232 | 0.01012 | 112.2 | 0.04754 | 0.0 | 0.0151 | 0.2133 | 1493.62 | 273500000.0 | -| ONTUSDT | 0.0004432 | 0.0007569 | 0.03728 | 0.00229 | 0.01472 | 0.01443 | 119.9 | 0.08397 | 0.0 | 0.04925 | 0.1362 | 1486.62 | 273500000.0 | -| BLUEBIRDUSDT | 0.0003538 | 0.0003284 | 0.02508 | 0.01289 | 0.005657 | 0.005985 | 92.62 | 0.04005 | 0.0 | 0.03843 | 0.08014 | 491.46 | 273500000.0 | -| ARUSDT | 0.0004463 | 0.0004208 | 0.01907 | 0.005503 | 0.01178 | 0.0106 | 81.12 | 0.05406 | 0.0 | 0.028 | 0.1161 | 891.83 | 273500000.0 | -| IOTXUSDT | 0.0003147 | 0.0003671 | 0.01847 | 0.005996 | 0.01166 | 0.0103 | 87.28 | 0.05255 | 0.0 | 0.03128 | 0.09817 | 938.83 | 273500000.0 | -| FOOTBALLUSDT | 0.0001691 | 0.0002694 | 0.01698 | 0.0 | 0.009746 | 0.007738 | 122.0 | 0.03476 | 0.0 | 0.006485 | 0.0244 | 553.83 | 273698333.333 | -| 1000XECUSDT | 0.0003964 | 0.0004217 | 0.01498 | 0.003743 | 0.01115 | 0.009694 | 122.8 | 0.04086 | 0.0 | 0.01529 | 0.2244 | 902.83 | 273780000.0 | -| TUSDT | 0.0005998 | 0.0004626 | 0.02471 | 0.0 | 0.01085 | 0.009441 | 124.8 | 0.06258 | 0.0 | 0.02885 | 0.06282 | 400.42 | 273974999.999 | -| GALUSDT | 0.0005638 | 0.0008522 | 0.03278 | 0.01594 | 0.01459 | 0.01667 | 126.0 | 0.1128 | 0.0 | 0.09459 | 0.1817 | 672.38 | 274103333.333 | -| LTCUSDT | 0.0002005 | 0.0005797 | 0.01122 | 0.001738 | 0.009961 | 0.008785 | 133.7 | 0.04105 | 0.0 | 0.01296 | 0.07292 | 1519.62 | 274866666.666 | -| ONEUSDT | 0.0005825 | 0.0008714 | 0.02887 | 0.00837 | 0.01422 | 0.01328 | 136.7 | 0.06765 | 0.0 | 0.03611 | 0.2494 | 1085.67 | 275164999.999 | -| ALICEUSDT | 0.0005258 | 0.0007429 | 0.02155 | 0.009334 | 0.0126 | 0.01166 | 97.58 | 0.06108 | 0.0 | 0.04428 | 0.253 | 1087.83 | 276543885.153 | -| YFIUSDT | 0.000477 | 0.001791 | 0.01956 | 0.0112 | 0.01353 | 0.01538 | 153.8 | 0.09099 | 0.0 | 0.07613 | 0.2065 | 1284.67 | 276883333.333 | -| DUSKUSDT | 0.0003675 | 0.0004261 | 0.03628 | 0.005247 | 0.01576 | 0.01874 | 158.9 | 0.1122 | 0.0 | 0.07899 | 0.1819 | 790.83 | 277390000.0 | -| USDCUSDT | -1.03e-09 | -1.03e-08 | 0.01847 | 0.0 | 0.002043 | 0.000614 | nan | 0.005994 | 0.6 | 0.0001028 | 0.0001185 | 361.25 | 278000000.0 | -| BTCDOMUSDT | 8.97e-05 | 7.971e-05 | 0.02737 | 0.004167 | 0.006268 | 0.004685 | 165.7 | 0.02252 | 0.0 | 0.01263 | 0.02487 | 990.83 | 278070000.0 | -| C98USDT | 0.0003329 | 0.0004166 | 0.02793 | 0.0126 | 0.01299 | 0.01368 | 169.3 | 0.07827 | 0.0 | 0.06602 | 0.1259 | 926.83 | 278430000.0 | -| MASKUSDT | 0.0006069 | 0.0007236 | 0.03429 | 0.01957 | 0.01373 | 0.01229 | 246.3 | 0.07442 | 0.0 | 0.06805 | 0.1268 | 923.83 | 286128333.333 | -| GMTUSDT | 0.0007011 | 0.0007279 | 0.02875 | 0.02096 | 0.009918 | 0.01278 | 253.4 | 0.08465 | 0.0 | 0.07795 | 0.1154 | 723.79 | 286843333.333 | -| FLOWUSDT | 0.0004916 | 0.0005156 | 0.0399 | 0.02313 | 0.01591 | 0.01765 | 261.1 | 0.1214 | 0.0 | 0.1055 | 0.1446 | 756.83 | 288165412.737 | -| BNXUSDT | 0.0004874 | 0.0005449 | 0.02967 | 0.0 | 0.01374 | 0.01156 | 315.9 | 0.06613 | 0.0 | 0.02857 | 0.04017 | 379.38 | 293095000.0 | -| KLAYUSDT | 0.000678 | 0.0005282 | 0.03747 | 0.02051 | 0.01694 | 0.02298 | 323.2 | 0.1624 | 0.0 | 0.1387 | 0.2571 | 877.83 | 304796734.636 | -| GTCUSDT | 0.0003919 | 0.0005651 | 0.08363 | 0.02812 | 0.02252 | 0.02951 | 453.8 | 0.1657 | 0.0 | 0.1382 | 0.2321 | 1000.83 | 310698393.384 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| LSKUSDT | 0.02351 | 0.005865 | 0.02107 | 0.01098 | 0.005217 | 0.006598 | 52.7 | 0.03834 | 0.0 | 0.0384 | 0.06208 | 42.38 | 273499999.976 | -| MAVIAUSDT | 0.0194 | 0.01256 | 0.05347 | 0.03576 | 0.006001 | 0.00826 | 36.43 | 0.05324 | 0.0 | 0.05636 | 0.05998 | 15.54 | 273499999.981 | -| PIXELUSDT | 0.0193 | 0.009472 | 0.04261 | 0.02779 | 0.006675 | 0.005659 | 19.2 | 0.0418 | 0.0 | 0.0441 | 0.07652 | 17.33 | 273499999.981 | -| PORTALUSDT | 0.01172 | 0.01022 | 0.01789 | 0.003947 | 0.004666 | 0.003515 | 15.13 | 0.01381 | 0.0 | 0.009497 | 0.009497 | 7.33 | 273499999.988 | -| STRKUSDT | 0.009838 | 0.004805 | 0.01281 | 0.003059 | 0.009221 | 0.007543 | 24.23 | 0.02972 | 0.0 | 0.003695 | 0.008478 | 16.25 | 273499999.99 | -| 1000BONKUSDT | 0.007601 | 0.005168 | 0.01591 | 0.003249 | 0.006675 | 0.006048 | 29.43 | 0.02714 | 0.0 | 0.01694 | 0.07198 | 106.38 | 273499999.992 | -| JUPUSDT | 0.008023 | 0.003563 | 0.02158 | 0.006897 | 0.005383 | 0.004464 | 35.75 | 0.02208 | 0.0 | 0.01274 | 0.01938 | 36.21 | 273499999.992 | -| NFPUSDT | 0.008047 | 0.005342 | 0.03788 | 0.02356 | 0.007649 | 0.007912 | 35.2 | 0.05254 | 0.0 | 0.05615 | 0.08854 | 71.42 | 273499999.992 | -| TOKENUSDT | 0.007087 | 0.003672 | 0.04422 | 0.01535 | 0.0111 | 0.01013 | 32.58 | 0.05395 | 0.0 | 0.04534 | 0.1218 | 125.33 | 273499999.993 | -| ONDOUSDT | 0.007187 | 0.005677 | 0.03857 | 0.01053 | 0.0129 | 0.01044 | 41.05 | 0.04458 | 0.0 | 0.02192 | 0.05365 | 47.42 | 273499999.993 | -| 1000RATSUSDT | 0.00685 | 0.003628 | 0.0175 | 0.006243 | 0.01176 | 0.009953 | 45.85 | 0.04612 | 0.0 | 0.03819 | 0.09415 | 83.38 | 273499999.993 | -| JTOUSDT | 0.005562 | 0.004694 | 0.05123 | 0.0355 | 0.009297 | 0.01175 | 36.68 | 0.07653 | 0.0 | 0.08342 | 0.1292 | 90.54 | 273499999.994 | -| MANTAUSDT | 0.006027 | 0.004437 | 0.02352 | 0.006487 | 0.007133 | 0.005785 | 33.02 | 0.02442 | 0.0 | 0.01471 | 0.04155 | 49.38 | 273499999.994 | -| RONINUSDT | 0.005653 | 0.005943 | 0.1897 | 0.1714 | 0.01077 | 0.01214 | 50.82 | 0.06922 | 0.0 | 0.07703 | 0.1043 | 30.79 | 273499999.994 | -| XVGUSDT | 0.004686 | 0.0026 | 0.0371 | 0.01894 | 0.008023 | 0.007569 | 68.53 | 0.04656 | 0.0 | 0.04921 | 0.09655 | 246.46 | 273499999.995 | -| ARKMUSDT | 0.005475 | 0.002454 | 0.03503 | 0.01503 | 0.0101 | 0.01073 | 45.17 | 0.08546 | 0.0 | 0.09455 | 0.2098 | 223.88 | 273499999.995 | -| TONUSDT | 0.005144 | 0.004671 | 0.01525 | 0.0 | 0.004933 | 0.003371 | 8.4 | 0.01422 | 0.0 | 0.002451 | 0.002451 | 6.46 | 273499999.995 | -| MYROUSDT | 0.00461 | 0.01244 | 0.08861 | 0.08221 | 0.03836 | 0.428 | 13.15 | 0.1956 | 0.0 | nan | 0.2432 | 2.62 | 273499999.995 | -| AIUSDT | 0.005454 | 0.004424 | 0.02044 | 0.003782 | 0.00807 | 0.006118 | 34.33 | 0.02497 | 0.0 | 0.01035 | 0.02834 | 59.46 | 273499999.995 | -| USTCUSDT | 0.004748 | 0.003526 | 0.0448 | 0.002011 | 0.008229 | 0.008363 | 38.1 | 0.05823 | 0.0 | 0.05055 | 0.1349 | 101.46 | 273499999.995 | -| ALTUSDT | 0.004532 | 0.003701 | 0.04062 | 0.02776 | 0.008129 | 0.008904 | 31.3 | 0.06061 | 0.0 | 0.06504 | 0.09712 | 42.38 | 273499999.995 | -| 1000SATSUSDT | 0.004722 | 0.003533 | 0.03527 | 0.008242 | 0.01003 | 0.009602 | 81.63 | 0.06057 | 0.0 | 0.04983 | 0.08526 | 86.38 | 273499999.995 | -| ONGUSDT | 0.004853 | 0.003323 | 0.08553 | 0.05261 | 0.005311 | 0.004458 | 75.22 | 0.02658 | 0.0 | 0.02879 | 0.04706 | 101.42 | 273499999.995 | -| STRAXUSDT | 0.004627 | 0.00359 | 0.03798 | 0.01589 | 0.007748 | 0.008778 | 47.98 | 0.05696 | 0.0 | 0.05762 | 0.1495 | 148.88 | 273499999.995 | -| ETHWUSDT | 0.005172 | 0.003232 | 0.02093 | 0.007088 | 0.007556 | 0.007171 | 40.67 | 0.05417 | 0.0 | 0.05565 | 0.1277 | 100.46 | 273499999.995 | -| MEMEUSDT | 0.004194 | 0.002986 | 0.01338 | 0.001593 | 0.00834 | 0.006664 | 40.43 | 0.02649 | 0.0 | 0.005896 | 0.04095 | 125.46 | 273499999.996 | -| DYMUSDT | 0.004449 | 0.002778 | 0.05859 | 0.04185 | 0.01004 | 0.01115 | 37.13 | 0.08465 | 0.0 | 0.09277 | 0.1074 | 29.67 | 273499999.996 | -| MOVRUSDT | 0.003705 | 0.004222 | 0.0196 | 0.007299 | 0.007456 | 0.008084 | 55.03 | 0.05185 | 0.0 | 0.05117 | 0.124 | 72.46 | 273499999.996 | -| AMBUSDT | 0.00354 | 0.002276 | 0.02366 | 0.008599 | 0.007535 | 0.007704 | 45.12 | 0.04256 | 0.0 | 0.03836 | 0.1592 | 343.46 | 273499999.996 | -| BEAMXUSDT | 0.003795 | 0.003743 | 0.05137 | 0.02295 | 0.01176 | 0.01213 | 33.58 | 0.06669 | 0.0 | 0.06693 | 0.1623 | 111.42 | 273499999.996 | -| BICOUSDT | 0.004016 | 0.002214 | 0.03427 | 0.01542 | 0.005634 | 0.00903 | 99.9 | 0.06137 | 0.0 | 0.06609 | 0.1441 | 161.46 | 273499999.996 | -| POLYXUSDT | 0.003746 | 0.002779 | 0.01477 | 0.004046 | 0.004788 | 0.004082 | 47.33 | 0.01968 | 0.0 | 0.009149 | 0.05005 | 134.88 | 273499999.996 | -| BSVUSDT | 0.003734 | 0.001586 | 0.01599 | 0.009171 | 0.00967 | 0.008702 | 55.45 | 0.03967 | 0.0 | 0.03 | 0.1081 | 139.46 | 273499999.996 | -| OMUSDT | 0.004172 | 0.002958 | 0.03697 | 0.01707 | 0.01261 | 0.01096 | 27.62 | 0.08715 | 0.0 | 0.09596 | 0.1129 | 23.38 | 273499999.996 | -| AXLUSDT | 0.00398 | 0.006046 | 0.05235 | 0.04717 | 0.006445 | 0.006868 | 20.45 | 0.06377 | 0.0 | 0.06815 | 0.06815 | 6.33 | 273499999.996 | -| BADGERUSDT | 0.003553 | 0.001869 | 0.05008 | 0.003243 | 0.01474 | 0.01292 | 62.13 | 0.07978 | 0.0 | 0.07562 | 0.227 | 119.46 | 273499999.996 | -| ACEUSDT | 0.004215 | 0.003507 | 0.03447 | 0.008477 | 0.009558 | 0.009755 | 39.83 | 0.07247 | 0.0 | 0.07172 | 0.154 | 80.54 | 273499999.996 | -| WIFUSDT | 0.003314 | 0.001374 | 0.01336 | 0.002359 | 0.01827 | 0.01275 | 57.27 | 0.05242 | 0.0 | 0.01297 | 0.03077 | 49.38 | 273499999.997 | -| FETUSDT | 0.003266 | 0.001923 | 0.03838 | 0.01457 | 0.01153 | 0.01126 | 87.9 | 0.06783 | 0.0 | 0.06862 | 0.2108 | 415.88 | 273499999.997 | -| HFTUSDT | 0.002662 | 0.001771 | 0.03435 | 0.01257 | 0.006824 | 0.005486 | 58.52 | 0.02654 | 0.0 | 0.02004 | 0.04768 | 336.46 | 273499999.997 | -| ZETAUSDT | 0.00317 | 0.003866 | 0.03588 | 0.01285 | 0.009034 | 0.007485 | 27.72 | 0.03014 | 0.0 | 0.02241 | 0.03706 | 34.62 | 273499999.997 | -| DODOXUSDT | 0.00309 | 0.002027 | 0.0224 | 0.008157 | 0.007413 | 0.006153 | 45.43 | 0.03033 | 0.0 | 0.02675 | 0.09184 | 212.46 | 273499999.997 | -| 1000FLOKIUSDT | 0.002943 | 0.001321 | 0.02027 | 0.01261 | 0.008023 | 0.01094 | 48.82 | 0.07006 | 0.0 | 0.07737 | 0.2283 | 306.29 | 273499999.997 | -| RIFUSDT | 0.003093 | 0.002659 | 0.02558 | 0.00767 | 0.01078 | 0.01119 | 53.82 | 0.05997 | 0.0 | 0.0458 | 0.1481 | 138.46 | 273499999.997 | -| WAXPUSDT | 0.003395 | 0.001954 | 0.03771 | 0.02271 | 0.006738 | 0.009165 | 62.48 | 0.06589 | 0.0 | 0.07103 | 0.1301 | 141.38 | 273499999.997 | -| AGLDUSDT | 0.003024 | 0.002217 | 0.01712 | 0.007215 | 0.01056 | 0.009767 | 61.97 | 0.0488 | 0.0 | 0.0373 | 0.187 | 222.88 | 273499999.997 | -| KEYUSDT | 0.003051 | 0.002022 | 0.03108 | 0.01874 | 0.006025 | 0.007829 | 73.73 | 0.06185 | 0.0 | 0.06619 | 0.1703 | 288.46 | 273499999.997 | -| ILVUSDT | 0.002662 | 0.001829 | 0.03731 | 0.006937 | 0.008358 | 0.00606 | 32.05 | 0.02469 | 0.0 | 0.01994 | 0.0322 | 118.29 | 273499999.997 | -| NMRUSDT | 0.002577 | 0.001738 | 0.02584 | 0.009937 | 0.01058 | 0.008731 | 72.63 | 0.05025 | 0.0 | 0.0505 | 0.1346 | 259.46 | 273499999.997 | -| MBLUSDT | 0.002723 | 0.001548 | 0.04028 | 0.02856 | 0.007284 | 0.01105 | 36.55 | 0.08121 | 0.0 | 0.08879 | 0.1269 | 114.33 | 273499999.997 | -| BIGTIMEUSDT | 0.00263 | 0.003462 | 0.02864 | 0.01077 | 0.01594 | 0.01611 | 54.68 | 0.09043 | 0.0 | 0.09038 | 0.2353 | 147.38 | 273499999.997 | -| TLMUSDT | 0.002608 | 0.001306 | 0.02689 | 0.01258 | 0.00729 | 0.007867 | 84.88 | 0.05015 | 0.0 | 0.05291 | 0.2281 | 343.46 | 273499999.997 | -| MDTUSDT | 0.002996 | 0.001594 | 0.02527 | 0.01232 | 0.009762 | 0.01106 | 66.98 | 0.0755 | 0.0 | 0.08306 | 0.1995 | 251.46 | 273499999.997 | -| 1000PEPEUSDT | 0.003124 | 0.001434 | 0.01686 | 0.002332 | 0.01116 | 0.009488 | 76.7 | 0.04406 | 0.0 | 0.0237 | 0.131 | 307.29 | 273499999.997 | -| XEMUSDT | 0.001638 | 0.001753 | 0.0532 | 0.02952 | 0.009437 | 0.01166 | 113.0 | 0.08282 | 0.0 | 0.09199 | 0.2472 | 1100.67 | 273499999.998 | -| LEVERUSDT | 0.001803 | 0.001301 | 0.02688 | 0.01183 | 0.01241 | 0.01088 | 91.2 | 0.06005 | 0.0 | 0.05987 | 0.1511 | 343.46 | 273499999.998 | -| IDEXUSDT | 0.001746 | 0.001397 | 0.03819 | 0.01787 | 0.007915 | 0.007303 | 56.38 | 0.03979 | 0.0 | 0.04192 | 0.09959 | 309.46 | 273499999.998 | -| UMAUSDT | 0.002117 | 0.001147 | 0.02254 | 0.01671 | 0.008573 | 0.01221 | 101.4 | 0.08063 | 0.0 | 0.08869 | 0.2253 | 302.46 | 273499999.998 | -| RSRUSDT | 0.001585 | 0.002124 | 0.03346 | 0.0152 | 0.01246 | 0.01119 | 78.98 | 0.05529 | 0.0 | 0.05353 | 0.233 | 1235.67 | 273499999.998 | -| TRBUSDT | 0.00194 | 0.001219 | 0.01407 | 0.004733 | 0.01405 | 0.01188 | 108.6 | 0.06004 | 0.0 | 0.04529 | 0.2263 | 1281.67 | 273499999.998 | -| GALUSDT | 0.001714 | 0.001979 | 0.07125 | 0.01323 | 0.01009 | 0.01177 | 90.87 | 0.09071 | 0.0 | 0.09987 | 0.2432 | 672.38 | 273499999.998 | -| AGIXUSDT | 0.001639 | 0.0009363 | 0.01903 | 0.009124 | 0.006617 | 0.008935 | 57.7 | 0.05817 | 0.0 | 0.06119 | 0.1926 | 385.38 | 273499999.998 | -| FRONTUSDT | 0.00237 | 0.002184 | 0.05241 | 0.008513 | 0.01487 | 0.01269 | 116.3 | 0.07385 | 0.0 | 0.05917 | 0.2181 | 167.38 | 273499999.998 | -| SPELLUSDT | 0.002083 | 0.0009052 | 0.02267 | 0.01305 | 0.008427 | 0.009938 | 89.9 | 0.06735 | 0.0 | 0.07275 | 0.1833 | 548.46 | 273499999.998 | -| SUSHIUSDT | 0.001763 | 0.002414 | 0.06033 | 0.03131 | 0.01434 | 0.01431 | 119.5 | 0.0873 | 0.0 | 0.09641 | 0.2449 | 1280.67 | 273499999.998 | -| EDUUSDT | 0.002307 | 0.00176 | 0.03942 | 0.02453 | 0.008269 | 0.01093 | 56.3 | 0.08335 | 0.0 | 0.09181 | 0.1642 | 312.46 | 273499999.998 | -| GRTUSDT | 0.0016 | 0.002115 | 0.04767 | 0.0197 | 0.01164 | 0.01206 | 83.23 | 0.07533 | 0.0 | 0.07925 | 0.235 | 1174.67 | 273499999.998 | -| CELRUSDT | 0.001512 | 0.002147 | 0.04463 | 0.01808 | 0.008475 | 0.009521 | 91.22 | 0.06284 | 0.0 | 0.06764 | 0.2017 | 1074.67 | 273499999.998 | -| ORDIUSDT | 0.001802 | 0.002387 | 0.03658 | 0.02698 | 0.01219 | 0.01742 | 38.95 | 0.0652 | 0.0 | 0.06983 | 0.1474 | 121.46 | 273499999.998 | -| LUNA2USDT | 0.002315 | 0.001526 | 0.02553 | 0.01009 | 0.009724 | 0.01217 | 81.6 | 0.07247 | 0.0 | 0.07609 | 0.2433 | 544.83 | 273499999.998 | -| SNTUSDT | 0.002175 | 0.002289 | 0.0282 | 0.003227 | 0.009192 | 0.007339 | 52.28 | 0.04111 | 0.0 | 0.0174 | 0.08846 | 126.46 | 273499999.998 | -| MAVUSDT | 0.002014 | 0.002121 | 0.06521 | 0.03008 | 0.01057 | 0.01265 | 58.2 | 0.08564 | 0.0 | 0.09412 | 0.1343 | 252.46 | 273499999.998 | -| NTRNUSDT | 0.001689 | 0.002485 | 0.02381 | 0.01728 | 0.00818 | 0.009359 | 38.97 | 0.05395 | 0.0 | 0.05783 | 0.1373 | 114.46 | 273499999.998 | -| STEEMUSDT | 0.002276 | 0.001748 | 0.02544 | 0.003287 | 0.008113 | 0.006003 | 62.68 | 0.02322 | 0.0 | 0.005747 | 0.02959 | 120.38 | 273499999.998 | -| BLZUSDT | 0.001875 | 0.00156 | 0.03094 | 0.01172 | 0.01408 | 0.01223 | 87.3 | 0.06845 | 0.0 | 0.06803 | 0.2354 | 1267.67 | 273499999.998 | -| ONEUSDT | 0.001502 | 0.001905 | 0.04002 | 0.0238 | 0.01105 | 0.01177 | 114.6 | 0.0654 | 0.0 | 0.07289 | 0.2095 | 1085.67 | 273499999.998 | -| ENSUSDT | 0.001729 | 0.001235 | 0.04449 | 0.01286 | 0.01095 | 0.01086 | 115.1 | 0.0769 | 0.0 | 0.08392 | 0.1953 | 828.83 | 273499999.998 | -| HIGHUSDT | 0.00234 | 0.002293 | 0.06238 | 0.02554 | 0.01093 | 0.01271 | 89.72 | 0.08197 | 0.0 | 0.08863 | 0.1398 | 394.88 | 273499999.998 | -| SUPERUSDT | 0.002375 | 0.001829 | 0.0183 | 0.009513 | 0.009402 | 0.008284 | 42.15 | 0.04249 | 0.0 | 0.03861 | 0.09437 | 102.42 | 273499999.998 | -| OXTUSDT | 0.001973 | 0.001889 | 0.03395 | 0.004235 | 0.007693 | 0.006097 | 43.13 | 0.02533 | 0.0 | 0.01632 | 0.1751 | 209.46 | 273499999.998 | -| PENDLEUSDT | 0.002354 | 0.0022 | 0.05204 | 0.03031 | 0.01249 | 0.01049 | 92.37 | 0.05858 | 0.0 | 0.06194 | 0.09552 | 223.88 | 273499999.998 | -| BLURUSDT | 0.00229 | 0.002121 | 0.04188 | 0.02876 | 0.008883 | 0.01279 | 61.52 | 0.08657 | 0.0 | 0.09494 | 0.1918 | 314.46 | 273499999.998 | -| SLPUSDT | 0.002144 | 0.00119 | 0.01465 | 0.001979 | 0.01554 | 0.01158 | 98.23 | 0.04939 | 0.0 | 0.01842 | 0.07955 | 128.38 | 273499999.998 | -| WLDUSDT | 0.002155 | 0.0009957 | 0.01074 | 0.004029 | 0.01326 | 0.01079 | 65.4 | 0.04684 | 0.0 | 0.02324 | 0.1232 | 227.46 | 273499999.998 | -| LOOMUSDT | 0.001923 | 0.003053 | 0.01618 | 0.003144 | 0.006944 | 0.005703 | 49.97 | 0.02656 | 0.0 | 0.01214 | 0.06383 | 148.38 | 273499999.998 | -| INJUSDT | 0.001572 | 0.001506 | 0.04447 | 0.007411 | 0.007714 | 0.007435 | 64.23 | 0.0475 | 0.0 | 0.04198 | 0.09609 | 568.88 | 273499999.998 | -| RADUSDT | 0.002198 | 0.001869 | 0.02128 | 0.004421 | 0.006569 | 0.005392 | 73.48 | 0.02368 | 0.0 | 0.008848 | 0.05028 | 302.46 | 273499999.998 | -| COMBOUSDT | 0.002168 | 0.001758 | 0.06155 | 0.04945 | 0.008144 | 0.0128 | 84.68 | 0.07418 | 0.0 | 0.08032 | 0.1021 | 279.46 | 273499999.998 | -| ORBSUSDT | 0.001971 | 0.002044 | 0.0221 | 0.01094 | 0.005434 | 0.005368 | 40.63 | 0.04093 | 0.0 | 0.04268 | 0.07252 | 142.71 | 273499999.998 | -| AUCTIONUSDT | 0.001701 | 0.003234 | 0.02996 | 0.01551 | 0.01089 | 0.009738 | 44.77 | 0.05404 | 0.0 | 0.05471 | 0.09975 | 83.42 | 273499999.998 | -| YGGUSDT | 0.002383 | 0.002437 | 0.04235 | 0.00907 | 0.01124 | 0.009576 | 80.92 | 0.04822 | 0.0 | 0.03379 | 0.101 | 215.83 | 273499999.998 | -| REEFUSDT | 0.002127 | 0.002401 | 0.05445 | 0.01708 | 0.01049 | 0.01036 | 82.08 | 0.06388 | 0.0 | 0.05079 | 0.2171 | 1109.67 | 273499999.998 | -| GLMUSDT | 0.002402 | 0.001172 | 0.06261 | 0.0 | 0.03234 | 0.02875 | 27.57 | 0.1367 | 0.0 | 0.08191 | 0.08358 | 14.54 | 273499999.998 | -| STPTUSDT | 0.001509 | 0.001105 | 0.01997 | 0.006922 | 0.005223 | 0.004007 | 41.77 | 0.01663 | 0.0 | 0.006946 | 0.03417 | 141.38 | 273499999.998 | -| PYTHUSDT | 0.001766 | 0.002203 | 0.04408 | 0.01061 | 0.01705 | 0.01399 | 39.17 | 0.0799 | 0.0 | 0.0827 | 0.1872 | 106.38 | 273499999.998 | -| PERPUSDT | 0.002339 | 0.002048 | 0.02568 | 0.008571 | 0.007013 | 0.007581 | 80.68 | 0.04236 | 0.0 | 0.03674 | 0.1697 | 367.46 | 273499999.998 | -| EOSUSDT | 0.0006339 | 0.001027 | 0.04333 | 0.02397 | 0.007601 | 0.008732 | 96.8 | 0.05874 | 0.0 | 0.06217 | 0.1228 | 1520.62 | 273499999.999 | -| AAVEUSDT | 0.001253 | 0.001302 | 0.02206 | 0.01298 | 0.01063 | 0.01126 | 113.8 | 0.05971 | 0.0 | 0.0586 | 0.2224 | 1238.67 | 273499999.999 | -| EGLDUSDT | 0.0007824 | 0.0009694 | 0.02675 | 0.01416 | 0.01418 | 0.012 | 98.22 | 0.05514 | 0.0 | 0.05145 | 0.1347 | 1270.67 | 273499999.999 | -| BNTUSDT | 0.001219 | 0.001342 | 0.01108 | 0.0009105 | 0.008153 | 0.005931 | 45.78 | 0.02412 | 0.0 | 0.00412 | 0.02075 | 210.46 | 273499999.999 | -| KASUSDT | 0.000793 | 0.0009629 | 0.01073 | 0.004912 | 0.007602 | 0.006463 | 44.45 | 0.02699 | 0.0 | 0.01305 | 0.07574 | 111.88 | 273499999.999 | -| KNCUSDT | 0.000769 | 0.001549 | 0.04284 | 0.02305 | 0.01483 | 0.01466 | 117.3 | 0.08244 | 0.0 | 0.09111 | 0.2142 | 1354.62 | 273499999.999 | -| OMGUSDT | 0.001075 | 0.001381 | 0.03399 | 0.01692 | 0.01338 | 0.01317 | 116.2 | 0.0824 | 0.0 | 0.09159 | 0.2426 | 1344.58 | 273499999.999 | -| ACHUSDT | 0.001217 | 0.001083 | 0.03434 | 0.00291 | 0.007656 | 0.006949 | 52.27 | 0.04143 | 0.0 | 0.02839 | 0.08645 | 379.38 | 273499999.999 | -| FLMUSDT | 0.001107 | 0.001571 | 0.02733 | 0.01332 | 0.0122 | 0.01201 | 77.75 | 0.06141 | 0.0 | 0.0632 | 0.2471 | 1255.67 | 273499999.999 | -| POWRUSDT | 0.0006826 | 0.001184 | 0.01345 | 0.0005016 | 0.01274 | 0.009682 | 50.72 | 0.04235 | 0.0 | 0.01016 | 0.07996 | 132.88 | 273499999.999 | -| QTUMUSDT | 0.0006716 | 0.001008 | 0.03786 | 0.01325 | 0.01145 | 0.01116 | 116.5 | 0.06076 | 0.0 | 0.05308 | 0.2065 | 1477.62 | 273499999.999 | -| ROSEUSDT | 0.0008108 | 0.0007867 | 0.0188 | 0.00976 | 0.01019 | 0.009849 | 94.33 | 0.05542 | 0.0 | 0.05628 | 0.1625 | 797.83 | 273499999.999 | -| FTMUSDT | 0.0007239 | 0.001304 | 0.02523 | 0.004505 | 0.01313 | 0.01086 | 117.5 | 0.05379 | 0.0 | 0.03899 | 0.2034 | 1260.67 | 273499999.999 | -| XAIUSDT | 0.001266 | 0.001934 | 0.0101 | 0.0004992 | 0.01141 | 0.009284 | 26.13 | 0.03683 | 0.0 | 0.00867 | 0.06091 | 58.38 | 273499999.999 | -| HBARUSDT | 0.00137 | 0.001605 | 0.0388 | 0.02268 | 0.008645 | 0.009799 | 99.88 | 0.06348 | 0.0 | 0.06859 | 0.1901 | 1086.67 | 273499999.999 | -| BANDUSDT | 0.0008362 | 0.001208 | 0.03442 | 0.007927 | 0.01276 | 0.01211 | 83.37 | 0.07154 | 0.0 | 0.05165 | 0.1841 | 1317.67 | 273499999.999 | -| FXSUSDT | 0.001035 | 0.001124 | 0.04025 | 0.02112 | 0.01188 | 0.009428 | 63.87 | 0.03811 | 0.0 | 0.02789 | 0.07013 | 412.83 | 273499999.999 | -| ETCUSDT | 0.0005748 | 0.0009503 | 0.02771 | 0.01133 | 0.01056 | 0.01004 | 102.1 | 0.05473 | 0.0 | 0.05023 | 0.1836 | 1512.62 | 273499999.999 | -| DEFIUSDT | 0.001083 | 0.00154 | 0.08004 | 0.04876 | 0.01032 | 0.01186 | 111.7 | 0.07662 | 0.0 | 0.08352 | 0.1463 | 1287.67 | 273499999.999 | -| ENJUSDT | 0.0008332 | 0.001476 | 0.05072 | 0.01174 | 0.009454 | 0.01115 | 107.8 | 0.08717 | 0.0 | 0.09533 | 0.2331 | 1255.67 | 273499999.999 | -| SNXUSDT | 0.0007714 | 0.00112 | 0.03925 | 0.02998 | 0.01047 | 0.0144 | 115.2 | 0.08919 | 0.0 | 0.09976 | 0.2245 | 1301.67 | 273499999.999 | -| HOTUSDT | 0.00144 | 0.001411 | 0.03186 | 0.01137 | 0.01108 | 0.01055 | 110.6 | 0.05477 | 0.0 | 0.05109 | 0.1522 | 1073.67 | 273499999.999 | -| ARKUSDT | 0.0007764 | 0.001758 | 0.02048 | 0.002347 | 0.01077 | 0.008864 | 58.15 | 0.04058 | 0.0 | 0.01619 | 0.06203 | 170.29 | 273499999.999 | -| ZENUSDT | 0.0009485 | 0.00137 | 0.06001 | 0.007567 | 0.01709 | 0.01552 | 114.6 | 0.09321 | 0.0 | 0.09148 | 0.2485 | 1199.67 | 273499999.999 | -| TWTUSDT | 0.001296 | 0.001413 | 0.04067 | 0.001628 | 0.01086 | 0.00833 | 103.6 | 0.04017 | 0.0 | 0.0285 | 0.0394 | 125.38 | 273499999.999 | -| OGNUSDT | 0.0008693 | 0.001101 | 0.02796 | 0.01224 | 0.01238 | 0.01087 | 97.22 | 0.06414 | 0.0 | 0.06639 | 0.2164 | 1071.67 | 273499999.999 | -| JASMYUSDT | 0.001485 | 0.0008186 | 0.02001 | 0.001969 | 0.01333 | 0.01094 | 113.1 | 0.04875 | 0.0 | 0.02269 | 0.1152 | 687.83 | 273499999.999 | -| WOOUSDT | 0.001374 | 0.001186 | 0.03965 | 0.01575 | 0.007333 | 0.008579 | 54.35 | 0.04811 | 0.0 | 0.04825 | 0.1229 | 699.83 | 273499999.999 | -| RENUSDT | 0.001039 | 0.001186 | 0.02684 | 0.01683 | 0.009661 | 0.01204 | 78.47 | 0.07847 | 0.0 | 0.08634 | 0.2082 | 1241.67 | 273499999.999 | -| CELOUSDT | 0.00121 | 0.00102 | 0.03368 | 0.00693 | 0.01054 | 0.008805 | 96.25 | 0.04758 | 0.0 | 0.03851 | 0.1621 | 892.83 | 273499999.999 | -| NEARUSDT | 0.000544 | 0.0006353 | 0.03104 | 0.006605 | 0.01916 | 0.01602 | 117.7 | 0.08047 | 0.0 | 0.04551 | 0.2355 | 1239.62 | 273499999.999 | -| APEUSDT | 0.001205 | 0.001668 | 0.04952 | 0.01559 | 0.008795 | 0.009019 | 117.9 | 0.05899 | 0.0 | 0.05864 | 0.1601 | 721.33 | 273499999.999 | -| DENTUSDT | 0.0006909 | 0.0008798 | 0.01421 | 0.005286 | 0.009384 | 0.007975 | 113.2 | 0.03591 | 0.0 | 0.02088 | 0.112 | 1079.79 | 273499999.999 | -| BALUSDT | 0.0005084 | 0.001005 | 0.03889 | 0.02429 | 0.01021 | 0.01227 | 108.1 | 0.07818 | 0.0 | 0.08583 | 0.1918 | 1283.67 | 273499999.999 | -| GLMRUSDT | 0.001318 | 0.001563 | 0.04807 | 0.01416 | 0.01223 | 0.01045 | 54.32 | 0.053 | 0.0 | 0.04104 | 0.08617 | 163.92 | 273499999.999 | -| YFIUSDT | 0.001046 | 0.001668 | 0.03402 | 0.0211 | 0.01019 | 0.01147 | 112.6 | 0.07868 | 0.0 | 0.08675 | 0.2239 | 1284.67 | 273499999.999 | -| ATAUSDT | 0.00122 | 0.001461 | 0.03832 | 0.0144 | 0.008339 | 0.008394 | 72.2 | 0.05797 | 0.0 | 0.06236 | 0.2246 | 919.83 | 273499999.999 | -| SANDUSDT | 0.0007016 | 0.001795 | 0.02713 | 0.01281 | 0.01626 | 0.01395 | 116.9 | 0.0636 | 0.0 | 0.05721 | 0.2264 | 1137.67 | 273499999.999 | -| AVAXUSDT | 0.0008307 | 0.000997 | 0.03895 | 0.009646 | 0.01622 | 0.01407 | 111.7 | 0.07899 | 0.0 | 0.07731 | 0.1945 | 1261.67 | 273499999.999 | -| SFPUSDT | 0.0008973 | 0.001948 | 0.04907 | 0.0288 | 0.01201 | 0.01186 | 113.4 | 0.07478 | 0.0 | 0.08184 | 0.2376 | 1107.67 | 273499999.999 | -| 1000LUNCUSDT | 0.001092 | 0.0007726 | 0.01285 | 0.002016 | 0.01033 | 0.008796 | 118.5 | 0.04314 | 0.0 | 0.02284 | 0.1261 | 545.42 | 273499999.999 | -| FLOWUSDT | 0.000686 | 0.0006501 | 0.02167 | 0.006364 | 0.01029 | 0.009268 | 98.23 | 0.04551 | 0.0 | 0.03241 | 0.1437 | 756.83 | 273499999.999 | -| KAVAUSDT | 0.0006009 | 0.001283 | 0.037 | 0.01074 | 0.01607 | 0.01353 | 95.9 | 0.06392 | 0.0 | 0.04585 | 0.1667 | 1318.67 | 273499999.999 | -| DOGEUSDT | 0.0005543 | 0.001411 | 0.01443 | 0.006655 | 0.007629 | 0.009274 | 111.0 | 0.05005 | 0.0 | 0.0449 | 0.2293 | 1336.58 | 273499999.999 | -| BNXUSDT | 0.00124 | 0.001827 | 0.04342 | 0.03225 | 0.006781 | 0.009563 | 93.53 | 0.06272 | 0.0 | 0.06746 | 0.108 | 379.38 | 273499999.999 | -| 1INCHUSDT | 0.0005461 | 0.0008622 | 0.01926 | 0.007609 | 0.007746 | 0.008063 | 69.52 | 0.0439 | 0.0 | 0.04252 | 0.1709 | 1168.54 | 273499999.999 | -| XLMUSDT | 0.0007414 | 0.001426 | 0.04444 | 0.02728 | 0.008372 | 0.009545 | 119.8 | 0.06731 | 0.0 | 0.07278 | 0.2328 | 1508.62 | 273499999.999 | -| JOEUSDT | 0.0006379 | 0.0006475 | 0.01731 | 0.006602 | 0.007423 | 0.008183 | 70.57 | 0.04106 | 0.0 | 0.03577 | 0.1253 | 344.46 | 273499999.999 | -| LITUSDT | 0.001434 | 0.002003 | 0.06268 | 0.01536 | 0.01565 | 0.01419 | 108.6 | 0.08427 | 0.0 | 0.08697 | 0.2197 | 1113.67 | 273499999.999 | -| ONTUSDT | 0.001098 | 0.001385 | 0.05563 | 0.01475 | 0.01269 | 0.01232 | 103.2 | 0.07293 | 0.0 | 0.06828 | 0.1886 | 1486.62 | 273499999.999 | -| MATICUSDT | 0.0006539 | 0.001332 | 0.03825 | 0.01493 | 0.0121 | 0.01235 | 108.0 | 0.08309 | 0.0 | 0.09125 | 0.2073 | 1232.67 | 273499999.999 | -| LDOUSDT | 0.001118 | 0.001191 | 0.05237 | 0.01837 | 0.01629 | 0.01572 | 84.82 | 0.07979 | 0.0 | 0.07219 | 0.1316 | 532.46 | 273499999.999 | -| GASUSDT | 0.0007917 | 0.0023 | 0.009716 | 0.0021 | 0.005933 | 0.004511 | 36.27 | 0.02113 | 0.0 | 0.009114 | 0.06054 | 134.88 | 273499999.999 | -| RLCUSDT | 0.001429 | 0.001881 | 0.06328 | 0.01641 | 0.01742 | 0.01542 | 117.0 | 0.08267 | 0.0 | 0.07327 | 0.2299 | 1315.67 | 273499999.999 | -| XVSUSDT | 0.000504 | 0.0006589 | 0.03476 | 0.003271 | 0.01632 | 0.01497 | 110.6 | 0.0755 | 0.0 | 0.05068 | 0.2237 | 329.88 | 273499999.999 | -| ANKRUSDT | 0.0005123 | 0.0009193 | 0.03705 | 0.005311 | 0.01737 | 0.01876 | 114.7 | 0.1109 | 0.0 | 0.09997 | 0.2415 | 1136.67 | 273499999.999 | -| CAKEUSDT | 0.001259 | 0.001748 | 0.03848 | 0.01623 | 0.01034 | 0.009302 | 118.8 | 0.04725 | 0.0 | 0.04237 | 0.1159 | 126.46 | 273499999.999 | -| SEIUSDT | 0.0008637 | 0.0009371 | 0.02831 | 0.01191 | 0.01864 | 0.01749 | 109.4 | 0.1006 | 0.0 | 0.05961 | 0.1219 | 203.88 | 273499999.999 | -| RUNEUSDT | 0.0005993 | 0.0006167 | 0.01878 | 0.006048 | 0.01807 | 0.01329 | 116.2 | 0.05158 | 0.0 | 0.02288 | 0.1123 | 1280.67 | 273499999.999 | -| CFXUSDT | 0.0006642 | 0.0008145 | 0.01038 | 0.002141 | 0.007781 | 0.006275 | 99.05 | 0.02589 | 0.0 | 0.007922 | 0.06475 | 381.38 | 273499999.999 | -| DOTUSDT | 0.0005935 | 0.0009577 | 0.04875 | 0.01645 | 0.01053 | 0.009533 | 118.4 | 0.05344 | 0.0 | 0.05334 | 0.1651 | 1293.67 | 273499999.999 | -| BATUSDT | 0.0005728 | 0.001034 | 0.03306 | 0.01194 | 0.007455 | 0.008755 | 98.77 | 0.05239 | 0.0 | 0.05158 | 0.2379 | 1484.62 | 273499999.999 | -| HIFIUSDT | 0.001351 | 0.001708 | 0.02691 | 0.006174 | 0.00826 | 0.007325 | 66.35 | 0.03487 | 0.0 | 0.0279 | 0.2222 | 173.38 | 273499999.999 | -| ALGOUSDT | 0.00105 | 0.001342 | 0.04636 | 0.00881 | 0.01277 | 0.01107 | 116.8 | 0.06108 | 0.0 | 0.04398 | 0.1022 | 1360.58 | 273499999.999 | -| COTIUSDT | 0.001041 | 0.0009608 | 0.03549 | 0.004754 | 0.01455 | 0.01284 | 101.7 | 0.07196 | 0.0 | 0.05893 | 0.2486 | 1093.67 | 273499999.999 | -| IOTAUSDT | 0.0006936 | 0.0009357 | 0.02469 | 0.009356 | 0.01049 | 0.009038 | 83.47 | 0.04144 | 0.0 | 0.03138 | 0.1768 | 1485.62 | 273499999.999 | -| NEOUSDT | 0.001358 | 0.001588 | 0.06974 | 0.03628 | 0.009504 | 0.01359 | 107.5 | 0.09003 | 0.0 | 0.09976 | 0.2382 | 1480.62 | 273499999.999 | -| RVNUSDT | 0.0006314 | 0.001042 | 0.02546 | 0.01524 | 0.008718 | 0.007864 | 111.5 | 0.0471 | 0.0 | 0.04884 | 0.1571 | 1108.67 | 273499999.999 | -| ICXUSDT | 0.0005593 | 0.0009173 | 0.02293 | 0.003055 | 0.01143 | 0.00948 | 99.95 | 0.04578 | 0.0 | 0.02463 | 0.09855 | 1269.67 | 273499999.999 | -| RNDRUSDT | 0.0006644 | 0.0005725 | 0.02639 | 0.003133 | 0.01651 | 0.01368 | 110.1 | 0.07185 | 0.0 | 0.03573 | 0.08335 | 398.88 | 273499999.999 | -| XMRUSDT | 0.0007706 | 0.001352 | 0.04245 | 0.02644 | 0.006488 | 0.008786 | 96.57 | 0.06069 | 0.0 | 0.0649 | 0.1245 | 1494.62 | 273499999.999 | -| CVXUSDT | 0.0007718 | 0.000694 | 0.03419 | 0.02234 | 0.01042 | 0.01011 | 116.0 | 0.05214 | 0.0 | 0.05566 | 0.1818 | 532.46 | 273499999.999 | -| CTKUSDT | 0.0008748 | 0.001604 | 0.04137 | 0.01822 | 0.01067 | 0.01053 | 96.22 | 0.06738 | 0.0 | 0.07333 | 0.2344 | 1204.67 | 273499999.999 | -| COMPUSDT | 0.0006354 | 0.0007725 | 0.04822 | 0.008902 | 0.02028 | 0.01921 | 119.5 | 0.1073 | 0.0 | 0.09917 | 0.2396 | 1346.58 | 273499999.999 | -| GMXUSDT | 0.0006935 | 0.000572 | 0.03759 | 0.01912 | 0.009043 | 0.007376 | 90.2 | 0.03346 | 0.0 | 0.02422 | 0.05264 | 384.38 | 273499999.999 | -| TUSDT | 0.00138 | 0.001195 | 0.02892 | 0.01512 | 0.00718 | 0.009138 | 73.5 | 0.05338 | 0.0 | 0.05272 | 0.1865 | 400.42 | 273499999.999 | -| SUIUSDT | 0.001475 | 0.001199 | 0.01999 | 0.004067 | 0.0105 | 0.008382 | 64.55 | 0.03354 | 0.0 | 0.011 | 0.03953 | 309.29 | 273499999.999 | -| MKRUSDT | 0.0006943 | 0.001071 | 0.0325 | 0.01382 | 0.01033 | 0.0106 | 109.7 | 0.04425 | 0.0 | 0.04163 | 0.2162 | 1302.67 | 273499999.999 | -| XTZUSDT | 0.000943 | 0.001634 | 0.05028 | 0.02013 | 0.009729 | 0.0106 | 95.28 | 0.05348 | 0.0 | 0.05724 | 0.2013 | 1491.62 | 273499999.999 | -| SOLUSDT | 0.000872 | 0.00112 | 0.02175 | 0.01008 | 0.01144 | 0.01154 | 115.3 | 0.04444 | 0.0 | 0.02949 | 0.1654 | 1270.67 | 273499999.999 | -| CHRUSDT | 0.00144 | 0.001835 | 0.05406 | 0.02174 | 0.01226 | 0.01348 | 101.5 | 0.08887 | 0.0 | 0.09841 | 0.2487 | 1091.67 | 273499999.999 | -| ARBUSDT | 0.0008658 | 0.0009407 | 0.06081 | 0.04031 | 0.01213 | 0.01322 | 112.9 | 0.08263 | 0.0 | 0.09055 | 0.1406 | 350.33 | 273499999.999 | -| SKLUSDT | 0.001249 | 0.00122 | 0.02295 | 0.00376 | 0.01485 | 0.01358 | 120.0 | 0.07478 | 0.0 | 0.03736 | 0.2129 | 1185.67 | 273499999.999 | -| SSVUSDT | 0.001182 | 0.001031 | 0.02719 | 0.008322 | 0.009874 | 0.01096 | 48.63 | 0.06352 | 0.0 | 0.0595 | 0.1565 | 377.46 | 273499999.999 | -| LQTYUSDT | 0.001071 | 0.001622 | 0.03478 | 0.01246 | 0.01331 | 0.01301 | 82.88 | 0.07322 | 0.0 | 0.07686 | 0.2431 | 363.46 | 273499999.999 | -| DYDXUSDT | 0.0006128 | 0.0008125 | 0.01726 | 0.00642 | 0.01095 | 0.009336 | 78.95 | 0.04125 | 0.0 | 0.02547 | 0.1148 | 909.83 | 273499999.999 | -| FILUSDT | 0.0005393 | 0.0007034 | 0.02184 | 0.009082 | 0.01433 | 0.01293 | 118.2 | 0.07333 | 0.0 | 0.07495 | 0.218 | 1238.71 | 273499999.999 | -| FOOTBALLUSDT | 0.0007086 | 0.0007359 | 0.04122 | 0.0009703 | 0.007475 | 0.006311 | 109.3 | 0.03563 | 0.0 | 0.02178 | 0.07606 | 553.83 | 273499999.999 | -| PEOPLEUSDT | 0.0006463 | 0.0004366 | 0.006 | 0.001113 | 0.01473 | 0.01124 | 96.83 | 0.04961 | 0.0 | 0.0155 | 0.2131 | 804.79 | 273499999.999 | -| HOOKUSDT | 0.001457 | 0.001611 | 0.04482 | 0.008732 | 0.009141 | 0.00863 | 69.9 | 0.05812 | 0.0 | 0.05234 | 0.1403 | 409.83 | 273499999.999 | -| RDNTUSDT | 0.001371 | 0.001379 | 0.03887 | 0.006889 | 0.007894 | 0.006053 | 62.45 | 0.02584 | 0.0 | 0.02027 | 0.05543 | 337.46 | 273499999.999 | -| ATOMUSDT | 0.001128 | 0.002318 | 0.07043 | 0.04089 | 0.00967 | 0.01235 | 119.1 | 0.08319 | 0.0 | 0.09168 | 0.2074 | 1490.46 | 273499999.999 | -| NKNUSDT | 0.0005103 | 0.0008971 | 0.03586 | 0.002816 | 0.01781 | 0.01686 | 116.0 | 0.08895 | 0.0 | 0.05927 | 0.2473 | 1063.67 | 273499999.999 | -| ALICEUSDT | 0.0008499 | 0.001339 | 0.06503 | 0.01102 | 0.01888 | 0.01776 | 111.8 | 0.097 | 0.0 | 0.09166 | 0.2059 | 1087.83 | 273499999.999 | -| LTCUSDT | 0.0005543 | 0.00104 | 0.04242 | 0.01792 | 0.008399 | 0.008024 | 114.1 | 0.04794 | 0.0 | 0.05035 | 0.141 | 1519.62 | 273499999.999 | -| STMXUSDT | 0.00136 | 0.001883 | 0.04499 | 0.0218 | 0.01339 | 0.01281 | 107.9 | 0.0833 | 0.0 | 0.08975 | 0.2142 | 1081.67 | 273499999.999 | -| C98USDT | 0.0005766 | 0.0006066 | 0.02964 | 0.009575 | 0.014 | 0.01276 | 109.8 | 0.07194 | 0.0 | 0.06332 | 0.2259 | 926.83 | 273499999.999 | -| ZRXUSDT | 0.001035 | 0.001114 | 0.04361 | 0.008702 | 0.01484 | 0.01333 | 116.3 | 0.07278 | 0.0 | 0.06051 | 0.2455 | 1352.58 | 273499999.999 | -| ICPUSDT | 0.0009238 | 0.0005661 | 0.02027 | 0.009345 | 0.008093 | 0.008561 | 80.45 | 0.06126 | 0.0 | 0.06321 | 0.2118 | 527.88 | 273499999.999 | -| TIAUSDT | 0.00115 | 0.002778 | 0.01152 | 0.002338 | 0.007864 | 0.006049 | 26.15 | 0.02419 | 0.0 | 0.003567 | 0.02074 | 128.21 | 273499999.999 | -| TRUUSDT | 0.0007715 | 0.0007251 | 0.01148 | 0.002194 | 0.007866 | 0.006001 | 76.03 | 0.02559 | 0.0 | 0.005866 | 0.07023 | 366.46 | 273499999.999 | -| LINKUSDT | 0.001352 | 0.00186 | 0.06449 | 0.04211 | 0.01202 | 0.01212 | 118.5 | 0.0758 | 0.0 | 0.08218 | 0.147 | 1511.62 | 273499999.999 | -| STORJUSDT | 0.001002 | 0.001116 | 0.02055 | 0.008631 | 0.01103 | 0.009748 | 85.97 | 0.05076 | 0.0 | 0.04611 | 0.1974 | 1268.67 | 273499999.999 | -| KSMUSDT | 0.0008923 | 0.001133 | 0.03391 | 0.01376 | 0.007911 | 0.008005 | 71.65 | 0.05616 | 0.0 | 0.06006 | 0.1755 | 1240.67 | 273499999.999 | -| ZECUSDT | 0.0006116 | 0.0009992 | 0.07808 | 0.0126 | 0.01242 | 0.01449 | 116.7 | 0.09157 | 0.0 | 0.096 | 0.2116 | 1492.62 | 273499999.999 | -| DGBUSDT | 0.0009885 | 0.001374 | 0.08386 | 0.00959 | 0.01245 | 0.01333 | 103.6 | 0.08083 | 0.0 | 0.08206 | 0.2494 | 1051.83 | 273499999.999 | -| UNIUSDT | 0.000528 | 0.0006325 | 0.0328 | 0.0067 | 0.01466 | 0.01343 | 119.2 | 0.07701 | 0.0 | 0.0568 | 0.1905 | 1266.67 | 273499999.999 | -| CRVUSDT | 0.0001036 | 0.0002131 | 0.01115 | 0.003797 | 0.01663 | 0.01345 | 99.67 | 0.0608 | 0.0 | 0.03325 | 0.1962 | 1283.67 | 273500000.0 | -| ALPHAUSDT | 0.0003531 | 0.0005401 | 0.02768 | 0.0003748 | 0.02016 | 0.01816 | 118.4 | 0.1055 | 0.0 | 0.07089 | 0.2493 | 1200.67 | 273500000.0 | -| CTSIUSDT | 0.0002025 | 0.000222 | 0.007691 | 0.001071 | 0.01605 | 0.0118 | 97.78 | 0.04785 | 0.0 | 0.01164 | 0.2226 | 863.83 | 273500000.0 | -| ETHUSDT | 0.0003197 | 0.0007063 | 0.03732 | 0.01289 | 0.007355 | 0.00769 | 117.7 | 0.0593 | 0.0 | 0.06306 | 0.1435 | 1527.96 | 273500000.0 | -| LRCUSDT | 0.0003669 | 0.0007417 | 0.02813 | 0.007998 | 0.01884 | 0.01614 | 117.5 | 0.07883 | 0.0 | 0.0569 | 0.2442 | 1235.67 | 273500000.0 | -| MINAUSDT | 0.0004164 | 0.0004369 | 0.01752 | 0.0002534 | 0.01498 | 0.01171 | 110.0 | 0.05465 | 0.0 | 0.01779 | 0.1158 | 394.5 | 273500000.0 | -| QNTUSDT | 0.0004962 | 0.0005552 | 0.01861 | 0.005282 | 0.008969 | 0.007911 | 111.3 | 0.03382 | 0.0 | 0.0156 | 0.0669 | 504.88 | 273500000.0 | -| BTCUSDT | 0.0001813 | 0.0002159 | 0.02235 | 0.01053 | 0.008776 | 0.00777 | 101.0 | 0.03595 | 0.0 | 0.02378 | 0.09045 | 1527.96 | 273500000.0 | -| AXSUSDT | 0.0001546 | 0.0003968 | 0.01003 | 0.004285 | 0.0158 | 0.0136 | 105.7 | 0.05169 | 0.0 | 0.01984 | 0.2428 | 1203.67 | 273500000.0 | -| 1000XECUSDT | 0.0003666 | 0.0003331 | 0.01943 | 0.0 | 0.01516 | 0.01381 | 109.0 | 0.07159 | 0.0 | 0.02754 | 0.2259 | 902.83 | 273500000.0 | -| LPTUSDT | 0.0002855 | 0.0001986 | 0.008523 | 0.002776 | 0.01649 | 0.01441 | 105.1 | 0.04501 | 0.0 | 0.003852 | 0.06654 | 847.83 | 273500000.0 | -| IOSTUSDT | 0.0004752 | 0.0008163 | 0.02205 | 0.01136 | 0.006731 | 0.007048 | 107.0 | 0.03955 | 0.0 | 0.04034 | 0.1663 | 1476.62 | 273500000.0 | -| MTLUSDT | 0.0003505 | 0.0004615 | 0.02837 | 0.005329 | 0.02108 | 0.01941 | 112.4 | 0.1077 | 0.0 | 0.08542 | 0.2495 | 1072.67 | 273500000.0 | -| 1000SHIBUSDT | 0.0001773 | 0.0002364 | 0.008679 | 0.004222 | 0.01451 | 0.01259 | 106.3 | 0.05428 | 0.0 | 0.03012 | 0.1786 | 1032.25 | 273500000.0 | -| CYBERUSDT | 0.0003905 | 0.0006251 | 0.009858 | 0.0 | 0.01549 | 0.01146 | 80.75 | 0.05036 | 0.0 | 0.008217 | 0.03929 | 199.46 | 273500000.0 | -| BNBUSDT | 0.0002998 | 0.0005483 | 0.02356 | 0.01305 | 0.008081 | 0.008954 | 117.9 | 0.05305 | 0.0 | 0.0539 | 0.2174 | 1487.62 | 273500000.0 | -| API3USDT | 0.0002833 | 0.0002191 | 0.02542 | 0.01915 | 0.01753 | 0.01535 | 109.7 | 0.07769 | 0.0 | 0.08478 | 0.228 | 744.83 | 273500000.0 | -| BELUSDT | 0.0002572 | 0.0005873 | 0.01891 | 0.001019 | 0.01894 | 0.01621 | 117.3 | 0.08294 | 0.0 | 0.03678 | 0.2486 | 1205.67 | 273500000.0 | -| APTUSDT | 0.0001764 | 0.0001832 | 0.005431 | 0.0005188 | 0.01318 | 0.01038 | 68.87 | 0.04235 | 0.0 | 0.004449 | 0.04365 | 505.88 | 273500000.0 | -| DASHUSDT | 0.0002581 | 0.0005153 | 0.02173 | 0.009841 | 0.009202 | 0.00907 | 118.2 | 0.05425 | 0.0 | 0.0557 | 0.1491 | 1493.62 | 273500000.0 | -| STGUSDT | 0.0004324 | 0.0005769 | 0.0155 | 0.002907 | 0.009111 | 0.007449 | 92.02 | 0.03145 | 0.0 | 0.01493 | 0.05157 | 560.46 | 273500000.0 | -| OCEANUSDT | 0.0004646 | 0.0005832 | 0.02186 | 0.001079 | 0.01634 | 0.01248 | 114.4 | 0.05788 | 0.0 | 0.02092 | 0.1049 | 1220.67 | 273500000.0 | -| PHBUSDT | 0.0004326 | 0.0002085 | 0.01154 | 0.004595 | 0.01734 | 0.01472 | 84.38 | 0.04641 | 0.0 | 0.008456 | 0.1543 | 385.38 | 273500000.0 | -| IMXUSDT | 0.000486 | 0.0005585 | 0.02733 | 0.00824 | 0.01631 | 0.0147 | 70.32 | 0.0794 | 0.0 | 0.0672 | 0.1751 | 755.83 | 273500000.0 | -| DARUSDT | 0.0002942 | 0.0003258 | 0.02282 | 0.0007058 | 0.01762 | 0.01427 | 98.72 | 0.07207 | 0.0 | 0.03033 | 0.1635 | 678.83 | 273500000.0 | -| BLUEBIRDUSDT | 0.0003732 | 0.0002835 | 0.02188 | 0.00367 | 0.005972 | 0.005487 | 86.88 | 0.031 | 0.0 | 0.01855 | 0.04232 | 491.46 | 273500000.0 | -| SXPUSDT | 0.0001567 | 0.0003152 | 0.02015 | 0.006453 | 0.01794 | 0.01386 | 112.6 | 0.07291 | 0.0 | 0.05445 | 0.1914 | 1325.58 | 273500000.0 | -| CHZUSDT | 0.0004918 | 0.0009669 | 0.04954 | 0.004886 | 0.01829 | 0.01808 | 119.2 | 0.101 | 0.0 | 0.08359 | 0.2418 | 1141.67 | 273500000.0 | -| MAGICUSDT | 0.0002632 | 0.0002923 | 0.01647 | 0.001216 | 0.01643 | 0.01344 | 69.35 | 0.08062 | 0.0 | 0.03981 | 0.07349 | 407.83 | 273500000.0 | -| BCHUSDT | 0.0002779 | 0.0003144 | 0.02284 | 0.00328 | 0.01345 | 0.01096 | 107.3 | 0.05585 | 0.0 | 0.03337 | 0.1533 | 1527.96 | 273500000.0 | -| OPUSDT | 0.0004443 | 0.0004997 | 0.03062 | 0.01868 | 0.01688 | 0.01492 | 96.13 | 0.07758 | 0.0 | 0.08477 | 0.2036 | 645.38 | 273500000.0 | -| ASTRUSDT | 0.0004636 | 0.0003448 | 0.02189 | 0.0 | 0.01745 | 0.01356 | 80.67 | 0.06685 | 0.0 | 0.01928 | 0.2293 | 387.88 | 273500000.0 | -| CKBUSDT | 0.0004576 | 0.0001497 | 0.007006 | 0.001829 | 0.01498 | 0.01155 | 108.7 | 0.05379 | 0.0 | 0.02313 | 0.1598 | 373.46 | 273500000.0 | -| BONDUSDT | 0.0004577 | 0.001038 | 0.0116 | 0.002769 | 0.01107 | 0.008615 | 76.85 | 0.03543 | 0.0 | 0.01434 | 0.06407 | 144.38 | 273500000.0 | -| WAVESUSDT | 0.0001902 | 0.0002594 | 0.006193 | 0.001058 | 0.01419 | 0.011 | 98.13 | 0.04678 | 0.0 | 0.01207 | 0.1603 | 1303.67 | 273500000.0 | -| THETAUSDT | 0.0002454 | 0.000189 | 0.007562 | 0.0004044 | 0.01629 | 0.01147 | 120.4 | 0.04696 | 0.0 | 0.006715 | 0.02673 | 1380.62 | 273538333.333 | -| ARPAUSDT | 0.0001896 | 0.0003626 | 0.00545 | 0.0001962 | 0.01488 | 0.01123 | 126.2 | 0.04451 | 0.0 | 0.002926 | 0.07061 | 870.83 | 274116666.666 | -| DUSKUSDT | 0.0007768 | 0.0006841 | 0.02043 | 0.01097 | 0.01246 | 0.01219 | 138.6 | 0.08801 | 0.0 | 0.09765 | 0.1961 | 790.83 | 275363333.333 | -| XRPUSDT | 7.643e-05 | 0.0001473 | 0.009041 | 0.003163 | 0.01563 | 0.01208 | 140.8 | 0.04988 | 0.0 | 0.01997 | 0.132 | 1522.62 | 275583333.333 | -| ANTUSDT | 0.0001332 | 0.0003275 | 0.04076 | 0.0 | 0.02337 | 0.02216 | 121.7 | 0.1527 | 0.0 | 0.1229 | 0.2027 | 801.79 | 275961651.514 | -| STXUSDT | 0.0007068 | 0.0005678 | 0.04435 | 0.02005 | 0.01908 | 0.01888 | 158.5 | 0.114 | 0.0 | 0.1217 | 0.2343 | 380.38 | 279521229.225 | -| AUDIOUSDT | 0.0003591 | 0.0004145 | 0.01898 | 0.0009658 | 0.01794 | 0.0158 | 199.2 | 0.08403 | 0.0 | 0.0387 | 0.1772 | 931.83 | 281420000.0 | -| ADAUSDT | 8.718e-05 | 0.0001474 | 0.01005 | 0.002649 | 0.0168 | 0.01243 | 205.8 | 0.05605 | 0.0 | 0.02873 | 0.196 | 1497.62 | 282083333.333 | -| LINAUSDT | 0.0005132 | 0.0007085 | 0.02241 | 0.01044 | 0.01957 | 0.01979 | 222.7 | 0.08208 | 0.0 | 0.05827 | 0.2477 | 1084.67 | 283771666.666 | -| TRXUSDT | 0.0001561 | 0.000487 | 0.02089 | 0.01185 | 0.007152 | 0.008797 | 236.0 | 0.0346 | 0.0 | 0.02919 | 0.1398 | 1513.62 | 285096666.667 | -| KLAYUSDT | 0.0002678 | 0.0002377 | 0.02971 | 0.0 | 0.02003 | 0.0196 | 247.9 | 0.1124 | 0.0 | 0.06585 | 0.1419 | 877.83 | 286288333.333 | -| VETUSDT | 9.011e-05 | 0.0001691 | 0.01373 | 0.006507 | 0.01683 | 0.01297 | 257.6 | 0.06824 | 0.0 | 0.06145 | 0.1715 | 1483.62 | 287256666.667 | -| GTCUSDT | 0.0002639 | 0.000367 | 0.01982 | 0.002614 | 0.01866 | 0.01518 | 271.7 | 0.08605 | 0.0 | 0.05031 | 0.2447 | 1000.83 | 288670000.0 | -| BTCDOMUSDT | 0.0002247 | 0.000174 | 0.05825 | 0.02647 | 0.007606 | 0.00682 | 310.8 | 0.04351 | 0.0 | 0.04484 | 0.07051 | 990.83 | 292578333.333 | -| MANAUSDT | 0.001039 | 0.0018 | 0.05016 | 0.03127 | 0.0136 | 0.01876 | 692.1 | 0.05389 | 0.0 | 0.05623 | 0.2168 | 1088.67 | 330711666.666 | -| ARUSDT | 0.0008654 | 0.0005615 | 0.02874 | 0.01721 | 0.02019 | 0.02636 | 292.4 | 0.1024 | 1.988 | 0.09987 | 0.3112 | 891.83 | 370347773.0 | -| GMTUSDT | 0.0004835 | 0.0006941 | 0.02005 | 0.005969 | 0.01747 | 0.01704 | 157.0 | 0.1098 | 0.0 | 0.09695 | 0.3522 | 723.79 | 379352085.929 | -| IOTXUSDT | 0.0002739 | 0.0002875 | 0.02702 | 0.008028 | 0.01946 | 0.01785 | 251.9 | 0.1387 | 0.0 | 0.1557 | 0.43 | 938.83 | 472272780.77 | -| ZILUSDT | 0.0008378 | 0.001442 | 0.03783 | 0.02011 | 0.01397 | 0.01714 | 4032.0 | 0.0519 | 0.4276 | 0.04787 | 0.1631 | 1358.58 | 667482925.406 | -| BAKEUSDT | 0.0007397 | 0.0005154 | 0.02562 | 0.0111 | 0.01634 | 0.02417 | 134.6 | 0.1887 | 0.0 | 0.2421 | 0.6398 | 1023.67 | 678970371.709 | -| USDCUSDT | 4.139e-07 | 3.428e-07 | 0.008378 | 0.0 | 0.003321 | 0.002225 | 4163.0 | 0.01327 | 0.4 | 9.479e-05 | 0.0001213 | 361.25 | 680346666.667 | -| IDUSDT | -0.1918 | -0.03866 | 0.08309 | 0.05976 | 0.04046 | 0.0663 | 405.8 | 0.4095 | 3.14 | 1.0 | 1.0 | 350.38 | 1171974680.07 | -| GALAUSDT | -0.004642 | -0.0152 | 0.05079 | 0.04116 | 0.04037 | 0.08003 | 9718.0 | 0.3818 | 4.631 | 1.0 | 1.0 | 901.83 | 2118132300.58 | -| MASKUSDT | -0.001484 | -0.01484 | 58.22 | 0.1214 | 0.1031 | 0.1074 | 11770.0 | 1.559 | 2.038 | 1.0 | 1.0 | 923.83 | 2297940054.11 | -| UNFIUSDT | -0.001234 | -0.01234 | 0.2092 | 0.2007 | 0.08359 | 0.1028 | 15340.0 | 0.3369 | 1.3 | 1.0 | 1.0 | 1112.67 | 2646960637.4 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/metrics_recursive_grid.txt b/configs/live/multisymbol/metrics_recursive_grid.txt deleted file mode 100644 index 18ac68809..000000000 --- a/configs/live/multisymbol/metrics_recursive_grid.txt +++ /dev/null @@ -1,452 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-12-01 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| SEIUSDT | 0.004524 | 0.002463 | 0.1134 | 0.01953 | 0.01172 | 0.00917 | 109.6 | 0.08309 | 0.01009 | 0.07983 | 0.1239 | 104.88 | 276499999.995 | -| 1000PEPEUSDT | 0.003731 | 0.002405 | 0.03466 | 0.00642 | 0.01226 | 0.009837 | 133.6 | 0.0501 | 0.002063 | 0.03613 | 0.0885 | 208.29 | 276499999.996 | -| BNTUSDT | 0.002832 | 0.002201 | 0.03987 | 0.009256 | 0.007291 | 0.005391 | 59.63 | 0.02441 | 6.597e-05 | 0.01876 | 0.05037 | 111.46 | 276499999.997 | -| ARKMUSDT | 0.003323 | 0.002149 | 0.05753 | 0.0303 | 0.01198 | 0.00975 | 51.4 | 0.05186 | 0.01371 | 0.04864 | 0.08571 | 124.88 | 276499999.997 | -| BLURUSDT | 0.002851 | 0.001585 | 0.05289 | 0.01851 | 0.01022 | 0.00892 | 123.2 | 0.07126 | 0.0263 | 0.0715 | 0.1115 | 215.46 | 276499999.997 | -| WLDUSDT | 0.003152 | 0.002721 | 0.06397 | 0.05514 | 0.008067 | 0.009596 | 28.88 | 0.04803 | 0.02577 | 0.04631 | 0.05942 | 128.46 | 276499999.997 | -| XVGUSDT | 0.001581 | 0.001759 | 0.1148 | 0.09927 | 0.009625 | 0.01045 | 51.65 | 0.0643 | 0.1026 | 0.06411 | 0.0822 | 147.46 | 276499999.998 | -| MINAUSDT | 0.001813 | 0.001487 | 0.07706 | 0.04746 | 0.01324 | 0.01403 | 132.1 | 0.09564 | 0.147 | 0.09631 | 0.1442 | 295.5 | 276499999.998 | -| FETUSDT | 0.001884 | 0.001518 | 0.07137 | 0.0252 | 0.01697 | 0.01276 | 125.7 | 0.0842 | 0.04055 | 0.08272 | 0.124 | 316.88 | 276499999.998 | -| CYBERUSDT | 0.001814 | 0.002391 | 0.02272 | 0.0006211 | 0.008139 | 0.0064 | 49.23 | 0.02495 | 0.0 | 0.006018 | 0.01105 | 100.46 | 276499999.998 | -| HFTUSDT | 0.002042 | 0.0009535 | 0.04981 | 0.01486 | 0.01149 | 0.01075 | 91.3 | 0.0617 | 0.02148 | 0.0492 | 0.09029 | 237.46 | 276499999.998 | -| MAVUSDT | 0.001831 | 0.001395 | 0.04554 | 0.01699 | 0.01571 | 0.01172 | 113.8 | 0.07499 | 0.01212 | 0.07027 | 0.1076 | 153.46 | 276499999.998 | -| DODOXUSDT | 0.001816 | 0.001393 | 0.01498 | 0.006202 | 0.00468 | 0.004562 | 25.92 | 0.02423 | 0.0 | 0.01655 | 0.09253 | 113.46 | 276499999.998 | -| 1000FLOKIUSDT | 0.002011 | 0.001231 | 0.06185 | 0.01677 | 0.01642 | 0.01108 | 89.67 | 0.07725 | 0.05982 | 0.0777 | 0.1301 | 207.29 | 276499999.998 | -| DOGEUSDT | 0.001544 | 0.004124 | 0.071 | 0.04597 | 0.007723 | 0.01353 | 84.58 | 0.08823 | 0.06266 | 0.0917 | 0.2468 | 1237.58 | 276499999.998 | -| XVSUSDT | 0.001714 | 0.001026 | 0.05681 | 0.01497 | 0.01359 | 0.0105 | 81.48 | 0.07443 | 0.02723 | 0.06898 | 0.1041 | 230.88 | 276499999.998 | -| KEYUSDT | 0.001682 | 0.001472 | 0.06613 | 0.04664 | 0.007666 | 0.009671 | 52.97 | 0.07638 | 0.09185 | 0.07577 | 0.1341 | 189.46 | 276499999.998 | -| RADUSDT | 0.001601 | 0.001222 | 0.09001 | 0.05298 | 0.009006 | 0.009376 | 81.17 | 0.08088 | 0.04158 | 0.07542 | 0.1187 | 203.46 | 276499999.998 | -| RNDRUSDT | 0.00206 | 0.002082 | 0.08309 | 0.02674 | 0.01189 | 0.01121 | 53.02 | 0.09954 | 0.03809 | 0.09317 | 0.1287 | 299.88 | 276499999.998 | -| GMXUSDT | 0.001507 | 0.001196 | 0.07535 | 0.05235 | 0.01177 | 0.01027 | 137.3 | 0.06469 | 0.03799 | 0.06336 | 0.1039 | 285.38 | 276499999.998 | -| SUIUSDT | 0.00227 | 0.002201 | 0.0703 | 0.04068 | 0.01249 | 0.01106 | 100.5 | 0.08331 | 0.01217 | 0.07812 | 0.1353 | 210.29 | 276499999.998 | -| YGGUSDT | 0.002136 | 0.002253 | 0.08394 | 0.02709 | 0.01254 | 0.01016 | 37.4 | 0.07789 | 0.0245 | 0.07171 | 0.1023 | 116.83 | 276499999.998 | -| SOLUSDT | 0.001742 | 0.003055 | 0.06451 | 0.0341 | 0.01217 | 0.01442 | 130.4 | 0.09935 | 0.01622 | 0.09168 | 0.1663 | 1171.67 | 276499999.998 | -| STXUSDT | 0.001542 | 0.001686 | 0.09446 | 0.0143 | 0.01408 | 0.01093 | 95.62 | 0.06913 | 0.02035 | 0.06311 | 0.109 | 281.38 | 276499999.998 | -| ARBUSDT | 0.001947 | 0.0009084 | 0.03591 | 0.008269 | 0.01085 | 0.009783 | 106.3 | 0.05948 | 0.01185 | 0.04014 | 0.08549 | 251.33 | 276499999.998 | -| LQTYUSDT | 0.002108 | 0.001584 | 0.04875 | 0.02565 | 0.01343 | 0.01264 | 99.8 | 0.08337 | 0.01853 | 0.07711 | 0.1418 | 264.46 | 276499999.998 | -| ASTRUSDT | 0.001763 | 0.001311 | 0.09457 | 0.05103 | 0.01147 | 0.01048 | 78.43 | 0.08203 | 0.104 | 0.08473 | 0.1092 | 288.88 | 276499999.998 | -| NMRUSDT | 0.002327 | 0.001971 | 0.07121 | 0.01398 | 0.005458 | 0.007687 | 36.75 | 0.0743 | 0.003246 | 0.06804 | 0.1047 | 160.46 | 276499999.998 | -| UNFIUSDT | 0.001565 | 0.002138 | 0.07436 | 0.01272 | 0.01976 | 0.01625 | 118.8 | 0.09975 | 0.03472 | 0.08996 | 0.2179 | 1013.67 | 276499999.998 | -| CRVUSDT | 0.0007908 | 0.001723 | 0.05787 | 0.02638 | 0.01325 | 0.01469 | 132.9 | 0.09811 | 0.0218 | 0.0882 | 0.2452 | 1184.67 | 276499999.999 | -| XEMUSDT | 0.0007221 | 0.001825 | 0.05492 | 0.02745 | 0.01276 | 0.01448 | 139.1 | 0.09196 | 0.02588 | 0.08487 | 0.1754 | 1001.67 | 276499999.999 | -| AAVEUSDT | 0.001285 | 0.00257 | 0.05464 | 0.03339 | 0.01272 | 0.01393 | 118.4 | 0.0924 | 0.02394 | 0.08503 | 0.2211 | 1139.67 | 276499999.999 | -| EGLDUSDT | 0.0008394 | 0.00181 | 0.08549 | 0.03601 | 0.01616 | 0.01838 | 110.5 | 0.09829 | 0.09691 | 0.09228 | 0.1823 | 1171.67 | 276499999.999 | -| ALPHAUSDT | 0.001004 | 0.002367 | 0.05068 | 0.02393 | 0.01321 | 0.01208 | 95.4 | 0.0862 | 0.02286 | 0.07956 | 0.1624 | 1101.67 | 276499999.999 | -| KNCUSDT | 0.0005117 | 0.0009106 | 0.03789 | 0.0103 | 0.01804 | 0.01404 | 131.1 | 0.07397 | 0.007599 | 0.05016 | 0.1777 | 1255.62 | 276499999.999 | -| ETHUSDT | 0.0005704 | 0.001706 | 0.0445 | 0.02892 | 0.005835 | 0.009107 | 55.37 | 0.06102 | 0.04284 | 0.06525 | 0.1248 | 1428.96 | 276499999.999 | -| LRCUSDT | 0.0009145 | 0.001727 | 0.0489 | 0.02035 | 0.01109 | 0.01087 | 129.2 | 0.08781 | 0.03437 | 0.09871 | 0.202 | 1136.67 | 276499999.999 | -| OMGUSDT | 0.001335 | 0.002146 | 0.06594 | 0.027 | 0.01332 | 0.0132 | 137.5 | 0.07579 | 0.02242 | 0.07257 | 0.2065 | 1245.58 | 276499999.999 | -| IDEXUSDT | 0.001054 | 0.001021 | 0.07851 | 0.0545 | 0.01227 | 0.01126 | 79.93 | 0.08628 | 0.03682 | 0.07992 | 0.1073 | 210.46 | 276499999.999 | -| ACHUSDT | 0.0009748 | 0.0009191 | 0.06015 | 0.03636 | 0.01662 | 0.01384 | 118.6 | 0.09851 | 0.08473 | 0.09903 | 0.1315 | 280.38 | 276499999.999 | -| QNTUSDT | 0.0008375 | 0.0009656 | 0.08119 | 0.05372 | 0.008607 | 0.009546 | 82.93 | 0.06718 | 0.1556 | 0.07833 | 0.09505 | 405.88 | 276499999.999 | -| AXSUSDT | 0.0006519 | 0.002013 | 0.04952 | 0.0288 | 0.01706 | 0.01824 | 138.1 | 0.05228 | 0.1301 | 0.02846 | 0.1105 | 1104.67 | 276499999.999 | -| UMAUSDT | 0.001422 | 0.0007726 | 0.04189 | 0.01322 | 0.01017 | 0.009425 | 126.5 | 0.05519 | 0.02211 | 0.04401 | 0.1211 | 203.46 | 276499999.999 | -| QTUMUSDT | 0.000629 | 0.001184 | 0.06817 | 0.01529 | 0.01609 | 0.01396 | 139.8 | 0.09099 | 0.07419 | 0.08998 | 0.2499 | 1378.62 | 276499999.999 | -| RSRUSDT | 0.0006776 | 0.0014 | 0.0483 | 0.01285 | 0.01769 | 0.01555 | 139.9 | 0.09556 | 0.05062 | 0.09436 | 0.177 | 1136.67 | 276499999.999 | -| MANAUSDT | 0.0006871 | 0.001193 | 0.02964 | 0.01696 | 0.01066 | 0.01384 | 76.98 | 0.09569 | 0.0391 | 0.09178 | 0.2482 | 989.67 | 276499999.999 | -| FTMUSDT | 0.0006782 | 0.001536 | 0.03419 | 0.01057 | 0.0148 | 0.01594 | 125.6 | 0.09984 | 0.0223 | 0.09015 | 0.2425 | 1161.67 | 276499999.999 | -| HBARUSDT | 0.001372 | 0.002048 | 0.03585 | 0.026 | 0.007693 | 0.01093 | 52.38 | 0.09089 | 0.02623 | 0.09397 | 0.1892 | 987.67 | 276499999.999 | -| GALUSDT | 0.0005264 | 0.0009072 | 0.02783 | 0.007526 | 0.0129 | 0.01005 | 125.1 | 0.0429 | 0.01143 | 0.02832 | 0.06604 | 573.38 | 276499999.999 | -| BANDUSDT | 0.001047 | 0.002169 | 0.07081 | 0.02482 | 0.01552 | 0.01405 | 104.2 | 0.09926 | 0.07249 | 0.09932 | 0.185 | 1218.67 | 276499999.999 | -| AGIXUSDT | 0.001118 | 0.001222 | 0.05815 | 0.00864 | 0.01441 | 0.00999 | 142.3 | 0.06871 | 0.01761 | 0.06449 | 0.0864 | 286.38 | 276499999.999 | -| FXSUSDT | 0.001059 | 0.0006079 | 0.04761 | 0.02571 | 0.01794 | 0.01436 | 91.93 | 0.08955 | 0.1157 | 0.08568 | 0.1208 | 313.83 | 276499999.999 | -| AUDIOUSDT | 0.0005256 | 0.001022 | 0.04583 | 0.0212 | 0.01279 | 0.01127 | 120.4 | 0.05476 | 0.01045 | 0.04725 | 0.1651 | 832.83 | 276499999.999 | -| ETCUSDT | 0.0009139 | 0.001825 | 0.0235 | 0.01083 | 0.006673 | 0.006636 | 117.5 | 0.0466 | 0.00861 | 0.04829 | 0.1301 | 1413.62 | 276499999.999 | -| DEFIUSDT | 0.000664 | 0.001667 | 0.08756 | 0.04484 | 0.01488 | 0.0142 | 122.5 | 0.08926 | 0.05525 | 0.09208 | 0.1964 | 1188.67 | 276499999.999 | -| SNXUSDT | 0.0009861 | 0.00192 | 0.08879 | 0.02402 | 0.0153 | 0.01363 | 138.9 | 0.0914 | 0.04335 | 0.08785 | 0.2054 | 1202.67 | 276499999.999 | -| IOSTUSDT | 0.0006742 | 0.001477 | 0.05968 | 0.01367 | 0.01429 | 0.01482 | 143.3 | 0.09253 | 0.0233 | 0.07514 | 0.2125 | 1377.62 | 276499999.999 | -| MTLUSDT | 0.000972 | 0.001569 | 0.0609 | 0.02638 | 0.01577 | 0.0159 | 128.6 | 0.09852 | 0.01451 | 0.08896 | 0.2465 | 973.67 | 276499999.999 | -| HOTUSDT | 0.001252 | 0.003043 | 0.06514 | 0.03483 | 0.008092 | 0.009327 | 107.0 | 0.06879 | 0.03437 | 0.07917 | 0.161 | 974.67 | 276499999.999 | -| 1000SHIBUSDT | 0.001014 | 0.001933 | 0.02652 | 0.007665 | 0.008793 | 0.008385 | 88.05 | 0.05721 | 0.005825 | 0.0457 | 0.2129 | 933.25 | 276499999.999 | -| ZENUSDT | 0.0008487 | 0.002013 | 0.07218 | 0.02052 | 0.01838 | 0.01476 | 136.9 | 0.0674 | 0.0174 | 0.04961 | 0.1201 | 1100.67 | 276499999.999 | -| SPELLUSDT | 0.0009446 | 0.0009922 | 0.06801 | 0.04168 | 0.0117 | 0.01096 | 130.3 | 0.06125 | 0.03534 | 0.05888 | 0.1498 | 449.46 | 276499999.999 | -| WOOUSDT | 0.0006439 | 0.001095 | 0.03247 | 0.01361 | 0.0143 | 0.01216 | 131.5 | 0.05724 | 0.01397 | 0.04774 | 0.09624 | 600.83 | 276499999.999 | -| SUSHIUSDT | 0.001016 | 0.002318 | 0.05242 | 0.03381 | 0.01757 | 0.02142 | 91.87 | 0.09338 | 0.1149 | 0.09979 | 0.1807 | 1181.67 | 276499999.999 | -| CELOUSDT | 0.0005597 | 0.0009471 | 0.04308 | 0.027 | 0.01495 | 0.01463 | 91.47 | 0.09711 | 0.0511 | 0.09627 | 0.1564 | 793.83 | 276499999.999 | -| BNBUSDT | 0.000582 | 0.001778 | 0.03168 | 0.01814 | 0.006364 | 0.008013 | 129.0 | 0.03784 | 0.05128 | 0.03677 | 0.1105 | 1388.62 | 276499999.999 | -| APEUSDT | 0.0008358 | 0.001351 | 0.05203 | 0.02932 | 0.01359 | 0.01373 | 129.3 | 0.08648 | 0.02826 | 0.08229 | 0.1607 | 622.33 | 276499999.999 | -| EDUUSDT | 0.0009227 | 0.0008461 | 0.04305 | 0.02486 | 0.01418 | 0.01336 | 66.45 | 0.07547 | 0.05467 | 0.0717 | 0.1362 | 213.46 | 276499999.999 | -| ADAUSDT | 0.0007853 | 0.001591 | 0.04735 | 0.03831 | 0.007524 | 0.01259 | 75.32 | 0.08057 | 0.06242 | 0.08499 | 0.2286 | 1398.62 | 276499999.999 | -| API3USDT | 0.0006818 | 0.001004 | 0.06438 | 0.03942 | 0.01411 | 0.01224 | 125.2 | 0.09663 | 0.05579 | 0.09345 | 0.1372 | 645.83 | 276499999.999 | -| GRTUSDT | 0.0009407 | 0.002071 | 0.09401 | 0.02464 | 0.01664 | 0.01489 | 142.4 | 0.09823 | 0.03929 | 0.0921 | 0.2221 | 1075.67 | 276499999.999 | -| AMBUSDT | 0.001394 | 0.00151 | 0.09106 | 0.00862 | 0.01741 | 0.01462 | 77.55 | 0.09291 | 0.01338 | 0.07629 | 0.1626 | 244.46 | 276499999.999 | -| BELUSDT | 0.0008742 | 0.001658 | 0.04018 | 0.01895 | 0.01282 | 0.01412 | 92.98 | 0.09348 | 0.02058 | 0.08763 | 0.1744 | 1106.67 | 276499999.999 | -| APTUSDT | 0.001026 | 0.0009556 | 0.04082 | 0.01455 | 0.01396 | 0.01232 | 129.2 | 0.07225 | 0.06551 | 0.061 | 0.138 | 406.88 | 276499999.999 | -| DENTUSDT | 0.0006056 | 0.0015 | 0.03271 | 0.01369 | 0.009518 | 0.009141 | 111.2 | 0.06116 | 0.02462 | 0.05922 | 0.1434 | 980.79 | 276499999.999 | -| BALUSDT | 0.0006201 | 0.0007603 | 0.0354 | 0.0115 | 0.01461 | 0.0141 | 142.7 | 0.09704 | 0.04583 | 0.0965 | 0.2184 | 1184.67 | 276499999.999 | -| STGUSDT | 0.0005992 | 0.0008659 | 0.0728 | 0.05785 | 0.0127 | 0.01443 | 122.0 | 0.09874 | 0.1274 | 0.09205 | 0.1513 | 461.46 | 276499999.999 | -| OCEANUSDT | 0.0009343 | 0.001598 | 0.06055 | 0.02589 | 0.01461 | 0.01601 | 129.3 | 0.08769 | 0.05676 | 0.08173 | 0.1457 | 1121.67 | 276499999.999 | -| BLZUSDT | 0.0007939 | 0.0009243 | 0.03889 | 0.00795 | 0.01881 | 0.01693 | 111.0 | 0.09807 | 0.01572 | 0.07568 | 0.2356 | 1168.67 | 276499999.999 | -| SANDUSDT | 0.0007776 | 0.00217 | 0.05858 | 0.03844 | 0.01344 | 0.02323 | 129.7 | 0.05793 | 0.1279 | 0.05202 | 0.1713 | 1038.67 | 276499999.999 | -| AVAXUSDT | 0.0008847 | 0.002019 | 0.03718 | 0.02295 | 0.01019 | 0.01192 | 114.4 | 0.0664 | 0.01115 | 0.06168 | 0.2438 | 1162.67 | 276499999.999 | -| SFPUSDT | 0.0007873 | 0.002123 | 0.04496 | 0.02403 | 0.01341 | 0.01498 | 135.5 | 0.096 | 0.01786 | 0.08817 | 0.2164 | 1008.67 | 276499999.999 | -| ONEUSDT | 0.0006958 | 0.001873 | 0.05877 | 0.01167 | 0.01629 | 0.01312 | 135.5 | 0.07979 | 0.03177 | 0.06851 | 0.1877 | 986.67 | 276499999.999 | -| ENSUSDT | 0.0005728 | 0.00126 | 0.05329 | 0.02434 | 0.01141 | 0.01194 | 97.38 | 0.08961 | 0.08386 | 0.09199 | 0.137 | 729.83 | 276499999.999 | -| LINAUSDT | 0.000811 | 0.001352 | 0.03736 | 0.01568 | 0.01792 | 0.01357 | 88.0 | 0.07981 | 0.01659 | 0.06935 | 0.2335 | 985.67 | 276499999.999 | -| 1000LUNCUSDT | 0.001405 | 0.00174 | 0.0506 | 0.003481 | 0.01009 | 0.008181 | 114.4 | 0.04312 | 0.004126 | 0.02888 | 0.0928 | 446.42 | 276499999.999 | -| PHBUSDT | 0.001412 | 0.001264 | 0.08485 | 0.01921 | 0.01596 | 0.01233 | 130.9 | 0.08477 | 0.06461 | 0.08261 | 0.1359 | 286.38 | 276499999.999 | -| BNXUSDT | 0.0006662 | 0.0007936 | 0.05234 | 0.0001486 | 0.01671 | 0.01336 | 111.2 | 0.07056 | 0.0 | 0.03087 | 0.04239 | 280.38 | 276499999.999 | -| HIGHUSDT | 0.0008261 | 0.001266 | 0.07568 | 0.01019 | 0.02108 | 0.01468 | 140.8 | 0.07065 | 0.003403 | 0.05555 | 0.07749 | 295.88 | 276499999.999 | -| IMXUSDT | 0.0009589 | 0.001555 | 0.06031 | 0.02647 | 0.01046 | 0.01165 | 64.48 | 0.09222 | 0.05303 | 0.09179 | 0.1368 | 656.83 | 276499999.999 | -| 1INCHUSDT | 0.001008 | 0.001391 | 0.04768 | 0.02175 | 0.01498 | 0.01431 | 139.9 | 0.08474 | 0.07023 | 0.08759 | 0.2303 | 1069.54 | 276499999.999 | -| XLMUSDT | 0.0005289 | 0.001907 | 0.02425 | 0.006878 | 0.009453 | 0.009471 | 141.4 | 0.04792 | 0.02679 | 0.03703 | 0.1698 | 1409.62 | 276499999.999 | -| LITUSDT | 0.000703 | 0.00157 | 0.04029 | 0.01958 | 0.01491 | 0.01411 | 118.7 | 0.07118 | 0.01299 | 0.06233 | 0.2205 | 1014.67 | 276499999.999 | -| MATICUSDT | 0.001312 | 0.003458 | 0.05473 | 0.02379 | 0.009796 | 0.01071 | 91.1 | 0.07379 | 0.02841 | 0.07051 | 0.152 | 1133.67 | 276499999.999 | -| LDOUSDT | 0.001172 | 0.001499 | 0.06892 | 0.01182 | 0.01701 | 0.01152 | 106.4 | 0.04968 | 0.005064 | 0.0343 | 0.08418 | 433.46 | 276499999.999 | -| BLUEBIRDUSDT | 0.0006846 | 0.0007172 | 0.08128 | 0.05032 | 0.007562 | 0.01026 | 127.4 | 0.08585 | 0.1999 | 0.09167 | 0.1217 | 392.46 | 276499999.999 | -| RLCUSDT | 0.001268 | 0.003249 | 0.06278 | 0.0307 | 0.01325 | 0.01468 | 111.2 | 0.09727 | 0.02849 | 0.09005 | 0.2097 | 1216.67 | 276499999.999 | -| VETUSDT | 0.0005477 | 0.001697 | 0.04509 | 0.01609 | 0.01127 | 0.01203 | 130.3 | 0.07141 | 0.009171 | 0.04621 | 0.1351 | 1384.62 | 276499999.999 | -| OXTUSDT | 0.001013 | 0.001082 | 0.1095 | 0.06513 | 0.01309 | 0.01153 | 77.6 | 0.08135 | 0.1226 | 0.07716 | 0.09576 | 110.46 | 276499999.999 | -| SXPUSDT | 0.0007532 | 0.002452 | 0.0339 | 0.01748 | 0.01082 | 0.01169 | 80.72 | 0.06165 | 0.02415 | 0.0566 | 0.1548 | 1226.58 | 276499999.999 | -| IDUSDT | 0.0009147 | 0.0006121 | 0.02921 | 1.657e-05 | 0.01759 | 0.01298 | 110.0 | 0.05766 | 0.0 | 0.01935 | 0.04199 | 251.38 | 276499999.999 | -| AGLDUSDT | 0.001363 | 0.001493 | 0.0282 | 0.0124 | 0.01131 | 0.009865 | 58.75 | 0.06341 | 0.01572 | 0.05895 | 0.09178 | 123.88 | 276499999.999 | -| ANKRUSDT | 0.0009978 | 0.001549 | 0.04074 | 0.01909 | 0.009837 | 0.01051 | 121.8 | 0.08176 | 0.01983 | 0.07971 | 0.2298 | 1037.67 | 276499999.999 | -| PENDLEUSDT | 0.001324 | 0.001248 | 0.04381 | 0.0258 | 0.01114 | 0.008843 | 92.42 | 0.04307 | 0.007504 | 0.03953 | 0.05602 | 124.88 | 276499999.999 | -| CHZUSDT | 0.0006037 | 0.001474 | 0.02857 | 0.01472 | 0.01446 | 0.01202 | 132.4 | 0.06524 | 0.09185 | 0.07012 | 0.1344 | 1042.67 | 276499999.999 | -| GALAUSDT | 0.000924 | 0.001346 | 0.05808 | 0.03991 | 0.01176 | 0.01265 | 74.1 | 0.07716 | 0.07915 | 0.09197 | 0.1405 | 802.83 | 276499999.999 | -| MAGICUSDT | 0.0008086 | 0.000514 | 0.01644 | 0.0 | 0.01549 | 0.01038 | 87.93 | 0.04051 | 0.0 | 0.005595 | 0.01275 | 308.83 | 276499999.999 | -| RUNEUSDT | 0.0008801 | 0.002463 | 0.05514 | 0.01936 | 0.0162 | 0.01523 | 143.2 | 0.09669 | 0.05112 | 0.09114 | 0.2286 | 1181.67 | 276499999.999 | -| CFXUSDT | 0.0009446 | 0.0009847 | 0.05103 | 0.03018 | 0.01603 | 0.01381 | 122.7 | 0.09405 | 0.103 | 0.09309 | 0.1205 | 282.38 | 276499999.999 | -| INJUSDT | 0.0009211 | 0.001173 | 0.02496 | 0.006995 | 0.008194 | 0.00718 | 73.43 | 0.04656 | 0.003562 | 0.03957 | 0.08569 | 469.88 | 276499999.999 | -| ALGOUSDT | 0.0009811 | 0.002264 | 0.07066 | 0.03719 | 0.01676 | 0.02314 | 128.5 | 0.08145 | 0.08667 | 0.08228 | 0.2297 | 1261.58 | 276499999.999 | -| COTIUSDT | 0.0008214 | 0.001962 | 0.07174 | 0.02156 | 0.01262 | 0.01128 | 92.63 | 0.08057 | 0.02504 | 0.07482 | 0.2364 | 994.67 | 276499999.999 | -| COMBOUSDT | 0.001486 | 0.00133 | 0.05576 | 0.01779 | 0.01079 | 0.009779 | 76.23 | 0.09268 | 0.02084 | 0.0869 | 0.1596 | 180.46 | 276499999.999 | -| IOTAUSDT | 0.000521 | 0.001447 | 0.05214 | 0.005877 | 0.01374 | 0.01473 | 131.6 | 0.09142 | 0.01394 | 0.06952 | 0.1808 | 1386.62 | 276499999.999 | -| BCHUSDT | 0.000897 | 0.001291 | 0.04579 | 0.0279 | 0.008822 | 0.01879 | 72.53 | 0.08664 | 0.1181 | 0.09178 | 0.2251 | 1428.96 | 276499999.999 | -| RVNUSDT | 0.0008026 | 0.001907 | 0.05862 | 0.01203 | 0.01506 | 0.01207 | 143.1 | 0.05531 | 0.02476 | 0.04583 | 0.1528 | 1009.67 | 276499999.999 | -| ICXUSDT | 0.0007299 | 0.001262 | 0.05286 | 0.02039 | 0.01355 | 0.01442 | 138.9 | 0.06949 | 0.04411 | 0.06639 | 0.2172 | 1170.67 | 276499999.999 | -| CVXUSDT | 0.0009869 | 0.0007185 | 0.04485 | 0.01575 | 0.01305 | 0.01131 | 111.7 | 0.05257 | 0.02054 | 0.04629 | 0.08131 | 433.46 | 276499999.999 | -| CTKUSDT | 0.0009418 | 0.002747 | 0.07329 | 0.03515 | 0.01186 | 0.01331 | 130.4 | 0.07949 | 0.0684 | 0.07869 | 0.1948 | 1105.67 | 276499999.999 | -| COMPUSDT | 0.001038 | 0.001525 | 0.08495 | 0.04799 | 0.01553 | 0.0163 | 119.7 | 0.09936 | 0.06037 | 0.09762 | 0.192 | 1247.58 | 276499999.999 | -| MKRUSDT | 0.001252 | 0.002168 | 0.08842 | 0.03083 | 0.0113 | 0.01215 | 103.6 | 0.09414 | 0.05372 | 0.09933 | 0.2168 | 1203.67 | 276499999.999 | -| XTZUSDT | 0.0006116 | 0.001724 | 0.05434 | 0.02262 | 0.01249 | 0.01222 | 136.3 | 0.07343 | 0.01312 | 0.06418 | 0.1581 | 1392.62 | 276499999.999 | -| OPUSDT | 0.001084 | 0.001074 | 0.02943 | 0.006077 | 0.009545 | 0.007643 | 80.63 | 0.04014 | 0.005833 | 0.02755 | 0.0642 | 546.38 | 276499999.999 | -| CHRUSDT | 0.000959 | 0.001948 | 0.09001 | 0.0406 | 0.01335 | 0.0133 | 103.7 | 0.09184 | 0.0926 | 0.09446 | 0.2364 | 992.67 | 276499999.999 | -| THETAUSDT | 0.0008721 | 0.002604 | 0.07826 | 0.02596 | 0.01177 | 0.01166 | 84.23 | 0.09752 | 0.03989 | 0.09987 | 0.2355 | 1281.62 | 276499999.999 | -| SKLUSDT | 0.0005944 | 0.001202 | 0.04605 | 0.0201 | 0.01555 | 0.01477 | 111.1 | 0.08429 | 0.03263 | 0.08005 | 0.2374 | 1086.67 | 276499999.999 | -| SSVUSDT | 0.0008918 | 0.0006757 | 0.05044 | 0.01634 | 0.01842 | 0.01454 | 120.4 | 0.09998 | 0.07295 | 0.09411 | 0.1261 | 278.46 | 276499999.999 | -| ARUSDT | 0.0007728 | 0.001327 | 0.05923 | 0.03021 | 0.01197 | 0.01211 | 130.9 | 0.07935 | 0.06223 | 0.08343 | 0.1685 | 792.83 | 276499999.999 | -| FILUSDT | 0.0007332 | 0.00141 | 0.03143 | 0.005392 | 0.006644 | 0.008863 | 100.6 | 0.05209 | 0.00278 | 0.03657 | 0.1442 | 1139.71 | 276499999.999 | -| HOOKUSDT | 0.0009664 | 0.001054 | 0.07397 | 0.03249 | 0.0127 | 0.01179 | 140.4 | 0.05797 | 0.0237 | 0.05066 | 0.07763 | 310.83 | 276499999.999 | -| RDNTUSDT | 0.001458 | 0.001347 | 0.08622 | 0.007808 | 0.01267 | 0.009896 | 105.9 | 0.05357 | 0.01504 | 0.04328 | 0.1075 | 238.46 | 276499999.999 | -| ATOMUSDT | 0.0005298 | 0.001397 | 0.03431 | 0.005916 | 0.01038 | 0.009603 | 112.2 | 0.05019 | 0.007521 | 0.02927 | 0.1085 | 1391.46 | 276499999.999 | -| NKNUSDT | 0.001205 | 0.002397 | 0.1012 | 0.03235 | 0.01345 | 0.01379 | 121.1 | 0.09655 | 0.05108 | 0.09573 | 0.2239 | 964.67 | 276499999.999 | -| ALICEUSDT | 0.0008357 | 0.00215 | 0.05922 | 0.01782 | 0.01271 | 0.01166 | 106.5 | 0.07977 | 0.02089 | 0.07286 | 0.217 | 988.83 | 276499999.999 | -| LTCUSDT | 0.0005538 | 0.001096 | 0.03566 | 0.005853 | 0.01263 | 0.01097 | 125.3 | 0.06589 | 0.003156 | 0.03121 | 0.2298 | 1420.62 | 276499999.999 | -| CKBUSDT | 0.0009329 | 0.0009248 | 0.03824 | 0.002898 | 0.01184 | 0.008911 | 129.8 | 0.03736 | 0.003885 | 0.01973 | 0.04968 | 274.46 | 276499999.999 | -| STMXUSDT | 0.0007319 | 0.001257 | 0.04282 | 0.01954 | 0.01631 | 0.01506 | 132.3 | 0.07678 | 0.03447 | 0.06815 | 0.2161 | 982.67 | 276499999.999 | -| ARPAUSDT | 0.0005177 | 0.0007016 | 0.03645 | 0.02003 | 0.009871 | 0.009897 | 110.2 | 0.07806 | 0.04806 | 0.07739 | 0.2286 | 771.83 | 276499999.999 | -| ZRXUSDT | 0.0007575 | 0.001091 | 0.03594 | 0.01593 | 0.01462 | 0.01382 | 129.5 | 0.07327 | 0.0246 | 0.06741 | 0.2096 | 1253.58 | 276499999.999 | -| ICPUSDT | 0.001041 | 0.001196 | 0.06763 | 0.01872 | 0.01091 | 0.008145 | 110.3 | 0.04726 | 0.009533 | 0.04274 | 0.07934 | 428.88 | 276499999.999 | -| ZILUSDT | 0.0007988 | 0.001843 | 0.05879 | 0.02815 | 0.01422 | 0.01601 | 136.8 | 0.09817 | 0.02119 | 0.08745 | 0.2041 | 1259.58 | 276499999.999 | -| REEFUSDT | 0.0007969 | 0.001536 | 0.04411 | 0.0154 | 0.01193 | 0.01324 | 129.7 | 0.07745 | 0.01006 | 0.061 | 0.2212 | 1010.67 | 276499999.999 | -| TRUUSDT | 0.001413 | 0.0009063 | 0.04005 | 0.007601 | 0.01903 | 0.01311 | 130.1 | 0.05996 | 0.0007633 | 0.02601 | 0.06996 | 267.46 | 276499999.999 | -| LINKUSDT | 0.001001 | 0.002083 | 0.05781 | 0.03108 | 0.009863 | 0.01323 | 133.5 | 0.09482 | 0.03542 | 0.09761 | 0.2391 | 1412.62 | 276499999.999 | -| STORJUSDT | 0.0008965 | 0.001394 | 0.0359 | 0.02256 | 0.0138 | 0.01439 | 118.4 | 0.05976 | 0.03351 | 0.05176 | 0.187 | 1169.67 | 276499999.999 | -| KSMUSDT | 0.0008675 | 0.001294 | 0.04733 | 0.03139 | 0.01434 | 0.01602 | 116.6 | 0.091 | 0.05691 | 0.08484 | 0.2363 | 1141.67 | 276499999.999 | -| XRPUSDT | 0.001029 | 0.002126 | 0.05126 | 0.0071 | 0.01057 | 0.009084 | 131.5 | 0.05009 | 0.003678 | 0.03461 | 0.2373 | 1423.62 | 276499999.999 | -| ZECUSDT | 0.000628 | 0.0009618 | 0.03463 | 0.01177 | 0.01276 | 0.01434 | 130.0 | 0.08245 | 0.02671 | 0.0709 | 0.2415 | 1393.62 | 276499999.999 | -| TLMUSDT | 0.0009089 | 0.0005638 | 0.0696 | 0.03024 | 0.01275 | 0.01093 | 126.3 | 0.08293 | 0.1096 | 0.07785 | 0.1092 | 244.46 | 276499999.999 | -| MDTUSDT | 0.001423 | 0.0008001 | 0.02606 | 0.0003279 | 0.009653 | 0.007491 | 96.02 | 0.03448 | 0.0 | 0.008366 | 0.01976 | 152.46 | 276499999.999 | -| WAVESUSDT | 0.001257 | 0.002753 | 0.08109 | 0.03752 | 0.0148 | 0.01531 | 140.5 | 0.09833 | 0.05269 | 0.09662 | 0.2419 | 1204.67 | 276499999.999 | -| UNIUSDT | 0.0009077 | 0.001652 | 0.04877 | 0.01756 | 0.01538 | 0.01227 | 143.7 | 0.05328 | 0.01481 | 0.03595 | 0.1104 | 1167.67 | 276499999.999 | -| EOSUSDT | 0.0003165 | 0.0007388 | 0.02553 | 0.002969 | 0.01207 | 0.01178 | 133.7 | 0.06894 | 0.006502 | 0.03741 | 0.1443 | 1421.62 | 276500000.0 | -| CTSIUSDT | 0.0003246 | 0.0005209 | 0.01965 | 0.000354 | 0.01342 | 0.0107 | 88.42 | 0.04981 | 4.164e-05 | 0.01322 | 0.1203 | 764.83 | 276500000.0 | -| BTCUSDT | 0.0002707 | 0.0007794 | 0.04927 | 0.01997 | 0.008341 | 0.008198 | 138.0 | 0.04188 | 0.04677 | 0.03999 | 0.1292 | 1428.96 | 276500000.0 | -| TRBUSDT | 0.0004512 | 0.0005564 | 0.02268 | 0.002093 | 0.02048 | 0.018 | 143.2 | 0.09217 | 0.006637 | 0.02498 | 0.06726 | 1182.67 | 276500000.0 | -| 1000XECUSDT | 0.0003925 | 0.0006089 | 0.02509 | 0.00682 | 0.009054 | 0.008065 | 141.9 | 0.04118 | 0.02465 | 0.02849 | 0.1387 | 803.83 | 276500000.0 | -| ROSEUSDT | 0.0004211 | 0.000753 | 0.01692 | 0.002909 | 0.00948 | 0.009381 | 107.2 | 0.04444 | 0.008435 | 0.02238 | 0.1931 | 698.83 | 276500000.0 | -| TRXUSDT | 0.0002769 | 0.001315 | 0.02908 | 0.01018 | 0.009736 | 0.008604 | 134.5 | 0.03964 | 0.0168 | 0.03001 | 0.09772 | 1414.62 | 276500000.0 | -| RENUSDT | 0.0004112 | 0.0006996 | 0.0271 | 0.002483 | 0.01685 | 0.01663 | 74.3 | 0.09982 | 0.01956 | 0.05907 | 0.1985 | 1142.67 | 276500000.0 | -| CELRUSDT | 0.0004518 | 0.001199 | 0.03388 | 0.00915 | 0.01088 | 0.01029 | 71.88 | 0.0578 | 0.008714 | 0.04562 | 0.163 | 975.67 | 276500000.0 | -| DASHUSDT | 0.000406 | 0.0008812 | 0.03443 | 0.003223 | 0.01484 | 0.01656 | 137.2 | 0.0943 | 0.006892 | 0.04427 | 0.1732 | 1394.62 | 276500000.0 | -| LUNA2USDT | 0.0004881 | 0.000512 | 0.0189 | 0.0005045 | 0.01113 | 0.01033 | 89.25 | 0.06287 | 0.0 | 0.03113 | 0.2286 | 445.83 | 276500000.0 | -| ATAUSDT | 0.000496 | 0.0009459 | 0.04325 | 0.01157 | 0.01417 | 0.0113 | 101.1 | 0.04979 | 0.009324 | 0.03805 | 0.09412 | 820.83 | 276500000.0 | -| KAVAUSDT | 0.0004383 | 0.001019 | 0.04188 | 0.0222 | 0.01601 | 0.01789 | 116.2 | 0.0814 | 0.06007 | 0.07083 | 0.2262 | 1219.67 | 276500000.0 | -| JOEUSDT | 0.0004739 | 0.0004835 | 0.03307 | 0.00989 | 0.01476 | 0.01151 | 91.32 | 0.06697 | 0.01943 | 0.06291 | 0.08972 | 245.46 | 276500000.0 | -| ONTUSDT | 0.0004477 | 0.0009416 | 0.05203 | 0.005924 | 0.01736 | 0.01642 | 138.2 | 0.09258 | 0.008918 | 0.06236 | 0.1519 | 1387.62 | 276500000.0 | -| DARUSDT | 0.0004504 | 0.0006968 | 0.02981 | 0.009239 | 0.009825 | 0.008818 | 78.88 | 0.05198 | 0.01626 | 0.04039 | 0.0938 | 579.83 | 276500000.0 | -| BATUSDT | 0.0003407 | 0.0008335 | 0.037 | 0.0006795 | 0.01523 | 0.01311 | 134.2 | 0.07077 | 0.001878 | 0.03369 | 0.1096 | 1385.62 | 276500000.0 | -| XMRUSDT | 0.0004658 | 0.001253 | 0.05329 | 0.02767 | 0.008018 | 0.01118 | 125.1 | 0.08529 | 0.04384 | 0.08838 | 0.241 | 1395.62 | 276500000.0 | -| DYDXUSDT | 0.0004119 | 0.0007223 | 0.03011 | 8.22e-05 | 0.0144 | 0.01212 | 116.5 | 0.06405 | 0.0 | 0.02658 | 0.07128 | 810.83 | 276500000.0 | -| FOOTBALLUSDT | 0.0001914 | 0.0004611 | 0.02754 | 0.003013 | 0.01063 | 0.007716 | 135.3 | 0.03659 | 0.0001512 | 0.01337 | 0.05709 | 454.83 | 276500000.0 | -| PEOPLEUSDT | 0.000368 | 0.0006452 | 0.02037 | 6.494e-05 | 0.01354 | 0.01097 | 98.07 | 0.0602 | 0.0 | 0.02142 | 0.07308 | 705.79 | 276500000.0 | -| MASKUSDT | 0.0003219 | 0.0005656 | 0.02704 | 0.009364 | 0.01591 | 0.01368 | 124.8 | 0.06739 | 0.06672 | 0.06492 | 0.1397 | 824.83 | 276500000.0 | -| C98USDT | 0.0003469 | 0.0006091 | 0.02862 | 0.01338 | 0.01594 | 0.0141 | 115.2 | 0.08844 | 0.016 | 0.08035 | 0.1266 | 827.83 | 276500000.0 | -| IOTXUSDT | 0.0002118 | 0.0003567 | 0.03355 | 0.01475 | 0.01574 | 0.01342 | 91.63 | 0.08161 | 0.128 | 0.08218 | 0.1462 | 839.83 | 276500000.0 | -| DGBUSDT | 0.0003809 | 0.0006301 | 0.02609 | 0.007057 | 0.01082 | 0.01372 | 104.9 | 0.09974 | 0.0564 | 0.09147 | 0.232 | 952.83 | 276500000.0 | -| TUSDT | 0.0006454 | 0.0005889 | 0.06895 | 0.04348 | 0.01415 | 0.01369 | 132.8 | 0.1006 | 0.06413 | 0.09355 | 0.1381 | 301.42 | 276500643.885 | -| DUSKUSDT | 0.0004711 | 0.0008128 | 0.04631 | 0.01581 | 0.01517 | 0.01584 | 138.9 | 0.1036 | 0.0604 | 0.09919 | 0.1903 | 691.83 | 276503557.57 | -| NEARUSDT | 0.0008563 | 0.001515 | 0.07805 | 0.06167 | 0.02102 | 0.03069 | 89.23 | 0.09451 | 0.2071 | 0.0974 | 0.1933 | 1140.62 | 276571434.223 | -| DOTUSDT | 0.0001999 | 0.0004691 | 0.01675 | 0.0009625 | 0.01456 | 0.01057 | 148.3 | 0.04337 | 0.001072 | 0.01062 | 0.2368 | 1194.67 | 276926666.666 | -| LEVERUSDT | 0.001058 | 0.0009654 | 0.06379 | 0.04578 | 0.01298 | 0.01328 | 53.08 | 0.1094 | 0.1039 | 0.1053 | 0.1533 | 244.46 | 277037778.788 | -| JASMYUSDT | 0.0004932 | 0.0007184 | 0.01945 | 0.0008773 | 0.012 | 0.009652 | 149.6 | 0.04371 | 0.0 | 0.01728 | 0.1013 | 588.83 | 277063333.333 | -| ANTUSDT | 0.0003221 | 0.0006483 | 0.03095 | 0.00249 | 0.01644 | 0.02069 | 119.7 | 0.1747 | 0.005586 | 0.1057 | 0.2495 | 702.79 | 277141403.075 | -| PERPUSDT | 0.0008994 | 0.0007335 | 0.07754 | 0.04542 | 0.01298 | 0.01476 | 116.7 | 0.1186 | 0.08448 | 0.1075 | 0.1275 | 268.46 | 277272409.466 | -| BAKEUSDT | 0.0003451 | 0.0004971 | 0.04201 | 0.01113 | 0.02087 | 0.01997 | 143.6 | 0.1421 | 0.01677 | 0.1078 | 0.1907 | 924.67 | 277321616.625 | -| NEOUSDT | 0.0003529 | 0.0006352 | 0.03615 | 0.02194 | 0.02203 | 0.02704 | 146.2 | 0.05891 | 0.3136 | 0.03822 | 0.1387 | 1381.62 | 277853120.273 | -| GTCUSDT | 0.000444 | 0.0007614 | 0.06716 | 0.0463 | 0.01756 | 0.01887 | 129.2 | 0.1173 | 0.2059 | 0.1256 | 0.2087 | 901.83 | 279139389.882 | -| BTCDOMUSDT | 0.000113 | 0.0001362 | 0.03714 | 0.0226 | 0.006822 | 0.006113 | 172.9 | 0.03945 | 0.185 | 0.05117 | 0.07309 | 891.83 | 279391666.667 | -| LPTUSDT | 0.0001989 | 0.0002878 | 0.0467 | 0.02697 | 0.01736 | 0.01583 | 118.1 | 0.1159 | 0.3501 | 0.1232 | 0.1659 | 748.83 | 280340347.882 | -| ENJUSDT | 0.0006208 | 0.001246 | 0.05135 | 0.029 | 0.0153 | 0.01527 | 143.1 | 0.1072 | 0.1135 | 0.1557 | 0.2375 | 1156.67 | 282081224.539 | -| USDCUSDT | -1.041e-09 | -1.041e-08 | 0.003803 | 0.0 | 60.0 | 0.6001 | nan | 0.005292 | 1.0 | 6.973e-05 | 7.123e-05 | 262.25 | 284500000.0 | -| FLMUSDT | 0.0004037 | 0.0007061 | 0.03758 | 0.01492 | 0.02258 | 0.02369 | 229.6 | 0.09309 | 0.08101 | 0.04647 | 0.1233 | 1156.67 | 285061666.666 | -| FLOWUSDT | 0.0003384 | 0.0006403 | 0.05505 | 0.02208 | 0.01902 | 0.01604 | 243.9 | 0.1168 | 0.204 | 0.1301 | 0.1614 | 657.83 | 289561783.961 | -| GMTUSDT | 0.0003827 | 0.0005029 | 0.09642 | 0.04598 | 0.02992 | 0.03711 | 224.0 | 0.2549 | 0.1701 | 0.2075 | 0.2451 | 624.79 | 295408002.961 | -| TOMOUSDT | 0.0003194 | 0.0005944 | 0.02579 | 0.004925 | 0.01974 | 0.01732 | 374.5 | 0.1136 | 0.01517 | 0.08306 | 0.1702 | 1143.67 | 299561920.609 | -| OGNUSDT | 0.0005071 | 0.001485 | 0.05225 | 0.0378 | 0.01584 | 0.01819 | 399.6 | 0.09842 | 0.02406 | 0.0859 | 0.2216 | 972.67 | 302059999.999 | -| YFIUSDT | 0.0009008 | 0.003151 | 0.03556 | 0.0194 | 0.01503 | 0.01673 | 527.6 | 0.04806 | 0.07665 | 0.01578 | 0.1072 | 1185.67 | 314863333.332 | -| KLAYUSDT | 0.0002189 | 0.0001442 | 0.1244 | 0.08629 | 0.03264 | 0.03747 | 356.7 | 0.271 | 0.7178 | 0.2677 | 0.3133 | 778.83 | 383211767.935 | -| COCOSUSDT | 6.078e-05 | 0.0006078 | 0.01297 | 0.002976 | 50.01 | 0.5036 | 4527.0 | 0.02781 | 0.5 | 0.01519 | 0.03988 | 281.38 | 717776666.667 | -| HNTUSDT | 9.626e-05 | 0.0004541 | 0.02526 | 0.008343 | 10.01 | 0.1151 | 6110.0 | 0.08302 | 0.143 | 0.07172 | 0.2168 | 1157.67 | 873105000.0 | -| CVCUSDT | 9.81e-05 | 0.0007638 | 0.02232 | 0.009858 | 20.01 | 0.2103 | 8775.0 | 0.06817 | 0.209 | 0.05143 | 0.2376 | 1113.67 | 1139655177.02 | -| FTTUSDT | 2.924e-05 | 0.0002924 | 0.009022 | 0.0003157 | 50.01 | 0.5098 | 9140.0 | 0.07565 | 0.5 | 0.01621 | 0.2905 | 593.83 | 1219669834.9 | -| SRMUSDT | 6.883e-05 | 0.0004332 | 0.04286 | 0.03044 | 20.02 | 0.2179 | 9120.0 | 0.1068 | 0.4034 | 0.1172 | 0.3071 | 1180.88 | 1234955011.58 | -| BTSUSDT | 4.506e-05 | 0.0004209 | 0.01664 | 0.001914 | 30.01 | 0.313 | 11250.0 | 0.08379 | 0.3083 | 0.04052 | 0.1634 | 1031.67 | 1387919344.42 | -| RAYUSDT | 5.684e-06 | 0.0003863 | 0.1931 | 0.1717 | 30.08 | 0.3618 | 9116.0 | 0.5316 | 1.202 | 0.4159 | 0.5461 | 831.83 | 1511861571.78 | -| SCUSDT | 2.836e-05 | 0.0002836 | 0.0148 | 0.0001386 | 40.01 | 0.4148 | 12740.0 | 0.1183 | 0.4021 | 0.03879 | 0.08373 | 961.67 | 1537794564.74 | -| BTCSTUSDT | 2.178e-06 | 2.178e-05 | 0.003231 | 0.0 | 80.0 | 0.8003 | 23830.0 | 0.007382 | 0.8 | 0.0003089 | 0.007108 | 1000.67 | 2651005000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| SEIUSDT | 0.004782 | 0.001927 | 0.03469 | 0.01353 | 0.01012 | 0.009352 | 109.5 | 0.07626 | 0.002599 | 0.08321 | 0.1423 | 104.88 | 276499999.995 | -| ARKMUSDT | 0.004104 | 0.00311 | 0.02944 | 0.01467 | 0.009184 | 0.008311 | 71.42 | 0.06277 | 0.002506 | 0.06788 | 0.112 | 124.88 | 276499999.996 | -| BLURUSDT | 0.003941 | 0.001808 | 0.05363 | 0.01542 | 0.01122 | 0.01093 | 102.6 | 0.08954 | 0.00776 | 0.09245 | 0.1305 | 215.46 | 276499999.996 | -| WLDUSDT | 0.003964 | 0.002317 | 0.03603 | 0.01725 | 0.01019 | 0.01008 | 38.35 | 0.06996 | 0.007752 | 0.07621 | 0.1299 | 128.46 | 276499999.996 | -| MDTUSDT | 0.003664 | 0.001606 | 0.02816 | 0.01016 | 0.01022 | 0.009766 | 91.28 | 0.06502 | 0.01022 | 0.06746 | 0.1953 | 152.46 | 276499999.996 | -| BNTUSDT | 0.003113 | 0.002363 | 0.02775 | 0.006493 | 0.01167 | 0.009701 | 114.2 | 0.04707 | 0.006745 | 0.02667 | 0.1006 | 111.46 | 276499999.997 | -| EDUUSDT | 0.002779 | 0.002103 | 0.0535 | 0.02498 | 0.009381 | 0.01035 | 111.4 | 0.08482 | 0.00735 | 0.09302 | 0.1562 | 213.46 | 276499999.997 | -| MAVUSDT | 0.003482 | 0.002234 | 0.06639 | 0.02616 | 0.01362 | 0.01247 | 83.2 | 0.08713 | 0.03894 | 0.09714 | 0.1394 | 153.46 | 276499999.997 | -| 1000FLOKIUSDT | 0.002591 | 0.001557 | 0.01754 | 0.002791 | 0.009663 | 0.008667 | 107.9 | 0.04157 | 0.0 | 0.01459 | 0.1072 | 207.29 | 276499999.997 | -| BNXUSDT | 0.002589 | 0.002199 | 0.0536 | 0.02117 | 0.009167 | 0.008689 | 74.58 | 0.0582 | 0.004719 | 0.06199 | 0.2428 | 280.38 | 276499999.997 | -| PENDLEUSDT | 0.002516 | 0.001937 | 0.07595 | 0.0397 | 0.00997 | 0.009458 | 91.27 | 0.09073 | 0.012 | 0.09723 | 0.1184 | 124.88 | 276499999.997 | -| COMBOUSDT | 0.002617 | 0.002069 | 0.05108 | 0.02395 | 0.00844 | 0.007627 | 74.32 | 0.04533 | 0.004718 | 0.04263 | 0.1049 | 180.46 | 276499999.997 | -| YGGUSDT | 0.002678 | 0.003314 | 0.0675 | 0.0343 | 0.01067 | 0.01229 | 47.92 | 0.08075 | 0.02484 | 0.08928 | 0.1211 | 116.83 | 276499999.997 | -| MINAUSDT | 0.001506 | 0.0008728 | 0.03058 | 0.005582 | 0.01141 | 0.009605 | 109.6 | 0.0515 | 0.0003091 | 0.02192 | 0.1256 | 295.5 | 276499999.998 | -| FLMUSDT | 0.001629 | 0.001196 | 0.02768 | 0.004963 | 0.02013 | 0.01752 | 135.2 | 0.08819 | 0.004863 | 0.04369 | 0.2297 | 1156.67 | 276499999.998 | -| UMAUSDT | 0.001832 | 0.0008066 | 0.03652 | 0.01001 | 0.01082 | 0.009334 | 134.0 | 0.06199 | 0.03009 | 0.0648 | 0.1921 | 203.46 | 276499999.998 | -| AGIXUSDT | 0.001617 | 0.001531 | 0.03473 | 0.01209 | 0.008652 | 0.008169 | 95.48 | 0.04408 | 0.008305 | 0.03951 | 0.1183 | 286.38 | 276499999.998 | -| FETUSDT | 0.002207 | 0.001753 | 0.02424 | 0.003614 | 0.009496 | 0.00799 | 83.28 | 0.03314 | 0.0 | 0.01428 | 0.07521 | 316.88 | 276499999.998 | -| SPELLUSDT | 0.001587 | 0.001458 | 0.04821 | 0.02471 | 0.008994 | 0.01041 | 94.67 | 0.08115 | 0.01816 | 0.0889 | 0.1766 | 449.46 | 276499999.998 | -| HFTUSDT | 0.002311 | 0.001354 | 0.05665 | 0.005719 | 0.009597 | 0.009508 | 96.58 | 0.04798 | 0.001744 | 0.03092 | 0.055 | 237.46 | 276499999.998 | -| LUNA2USDT | 0.001925 | 0.001275 | 0.0294 | 0.005848 | 0.01077 | 0.0104 | 85.27 | 0.05084 | 0.007117 | 0.04021 | 0.1616 | 445.83 | 276499999.998 | -| BLZUSDT | 0.001734 | 0.001305 | 0.02303 | 0.006674 | 0.01803 | 0.01589 | 129.4 | 0.08105 | 0.01124 | 0.04309 | 0.2079 | 1168.67 | 276499999.998 | -| DODOXUSDT | 0.002184 | 0.002148 | 0.03066 | 0.003523 | 0.008088 | 0.00634 | 52.68 | 0.03049 | 0.0 | 0.008131 | 0.01467 | 113.46 | 276499999.998 | -| HIGHUSDT | 0.001643 | 0.002 | 0.07821 | 0.02466 | 0.01418 | 0.01286 | 117.6 | 0.07735 | 0.01404 | 0.08313 | 0.1616 | 295.88 | 276499999.998 | -| AGLDUSDT | 0.002163 | 0.002715 | 0.02943 | 0.009647 | 0.009466 | 0.007989 | 63.6 | 0.03378 | 0.0 | 0.02073 | 0.07736 | 123.88 | 276499999.998 | -| KEYUSDT | 0.002193 | 0.002197 | 0.09364 | 0.005231 | 0.01799 | 0.0137 | 136.8 | 0.07508 | 0.005558 | 0.02873 | 0.08771 | 189.46 | 276499999.998 | -| SUIUSDT | 0.002352 | 0.001546 | 0.06148 | 0.0238 | 0.01158 | 0.01012 | 140.0 | 0.0726 | 0.01156 | 0.08041 | 0.1296 | 210.29 | 276499999.998 | -| SSVUSDT | 0.001643 | 0.0009747 | 0.02648 | 0.007285 | 0.0134 | 0.01177 | 98.72 | 0.06715 | 0.003908 | 0.05901 | 0.1496 | 278.46 | 276499999.998 | -| LQTYUSDT | 0.00203 | 0.002173 | 0.06899 | 0.01439 | 0.008581 | 0.01045 | 48.68 | 0.07926 | 0.00817 | 0.08372 | 0.2137 | 264.46 | 276499999.998 | -| ASTRUSDT | 0.001639 | 0.001323 | 0.0452 | 0.009099 | 0.009998 | 0.007687 | 68.75 | 0.03511 | 0.001686 | 0.02692 | 0.09042 | 288.88 | 276499999.998 | -| HOOKUSDT | 0.002258 | 0.002095 | 0.05775 | 0.01345 | 0.01303 | 0.01083 | 122.9 | 0.05946 | 0.005885 | 0.0574 | 0.1253 | 310.83 | 276499999.998 | -| STMXUSDT | 0.001886 | 0.001887 | 0.05984 | 0.02866 | 0.01566 | 0.01252 | 117.2 | 0.07864 | 0.02244 | 0.09164 | 0.2222 | 982.67 | 276499999.998 | -| TRUUSDT | 0.001887 | 0.00161 | 0.02835 | 0.005779 | 0.01053 | 0.008773 | 74.93 | 0.03802 | 0.0 | 0.0202 | 0.2178 | 267.46 | 276499999.998 | -| TLMUSDT | 0.001523 | 0.001011 | 0.03988 | 0.01555 | 0.01012 | 0.008733 | 121.0 | 0.0552 | 0.01272 | 0.05435 | 0.2284 | 244.46 | 276499999.998 | -| CRVUSDT | 0.0006235 | 0.00134 | 0.04657 | 0.01334 | 0.01819 | 0.01838 | 124.5 | 0.09954 | 0.01 | 0.06874 | 0.2225 | 1184.67 | 276499999.999 | -| XEMUSDT | 0.001027 | 0.001708 | 0.06501 | 0.02727 | 0.0109 | 0.01236 | 111.9 | 0.08884 | 0.01547 | 0.09916 | 0.2391 | 1001.67 | 276499999.999 | -| EOSUSDT | 0.0005671 | 0.001034 | 0.05825 | 0.03084 | 0.01103 | 0.01287 | 95.42 | 0.08608 | 0.03535 | 0.09631 | 0.2056 | 1421.62 | 276499999.999 | -| DUSKUSDT | 0.0008007 | 0.001128 | 0.054 | 0.0175 | 0.01454 | 0.01301 | 107.6 | 0.08602 | 0.02127 | 0.09572 | 0.2052 | 691.83 | 276499999.999 | -| EGLDUSDT | 0.0006222 | 0.001007 | 0.02903 | 0.01461 | 0.01373 | 0.01293 | 143.3 | 0.05212 | 0.04081 | 0.04855 | 0.2152 | 1171.67 | 276499999.999 | -| LEVERUSDT | 0.001323 | 0.001672 | 0.04355 | 0.006082 | 0.01172 | 0.00902 | 70.9 | 0.04478 | 0.00252 | 0.02581 | 0.09137 | 244.46 | 276499999.999 | -| CTSIUSDT | 0.0006588 | 0.001118 | 0.03087 | 0.01044 | 0.01382 | 0.01176 | 137.9 | 0.05643 | 0.007813 | 0.05047 | 0.2446 | 764.83 | 276499999.999 | -| KNCUSDT | 0.0006438 | 0.001014 | 0.04616 | 0.006308 | 0.01903 | 0.01748 | 137.5 | 0.09716 | 0.00775 | 0.07539 | 0.2335 | 1255.62 | 276499999.999 | -| XVGUSDT | 0.001412 | 0.002197 | 0.04415 | 0.01274 | 0.008678 | 0.009078 | 76.22 | 0.04663 | 0.0005485 | 0.03931 | 0.09028 | 147.46 | 276499999.999 | -| OMGUSDT | 0.0008975 | 0.001571 | 0.0512 | 0.02467 | 0.01524 | 0.01333 | 113.1 | 0.0767 | 0.07327 | 0.09374 | 0.2317 | 1245.58 | 276499999.999 | -| IDEXUSDT | 0.00127 | 0.001194 | 0.04908 | 0.005322 | 0.007768 | 0.006903 | 77.35 | 0.03826 | 0.001062 | 0.02602 | 0.07085 | 210.46 | 276499999.999 | -| ACHUSDT | 0.001183 | 0.001183 | 0.03703 | 0.001902 | 0.01396 | 0.01109 | 100.2 | 0.06435 | 0.0004455 | 0.03785 | 0.06819 | 280.38 | 276499999.999 | -| QTUMUSDT | 0.0006877 | 0.001135 | 0.05174 | 0.01577 | 0.01369 | 0.01258 | 127.8 | 0.07313 | 0.02614 | 0.07796 | 0.2134 | 1378.62 | 276499999.999 | -| RSRUSDT | 0.0009975 | 0.002207 | 0.04769 | 0.01819 | 0.01492 | 0.01329 | 105.9 | 0.06684 | 0.01303 | 0.0695 | 0.1931 | 1136.67 | 276499999.999 | -| TRBUSDT | 0.00149 | 0.001123 | 0.03597 | 0.01786 | 0.01499 | 0.01918 | 75.32 | 0.08705 | 0.08842 | 0.08999 | 0.2021 | 1182.67 | 276499999.999 | -| 1000XECUSDT | 0.0005853 | 0.0007992 | 0.0253 | 0.005307 | 0.01033 | 0.009238 | 128.1 | 0.05712 | 0.003112 | 0.03817 | 0.1678 | 803.83 | 276499999.999 | -| MANAUSDT | 0.0009388 | 0.001984 | 0.04704 | 0.02503 | 0.01123 | 0.01163 | 135.5 | 0.06526 | 0.0244 | 0.07164 | 0.2151 | 989.67 | 276499999.999 | -| GALUSDT | 0.001126 | 0.002089 | 0.08334 | 0.01241 | 0.009792 | 0.01222 | 118.4 | 0.07945 | 0.01521 | 0.08179 | 0.2389 | 573.38 | 276499999.999 | -| BANDUSDT | 0.0005753 | 0.0009335 | 0.02462 | 0.004123 | 0.01833 | 0.01525 | 117.5 | 0.07167 | 0.0008002 | 0.02075 | 0.1126 | 1218.67 | 276499999.999 | -| FXSUSDT | 0.0007998 | 0.0008453 | 0.05285 | 0.01935 | 0.01375 | 0.01082 | 106.8 | 0.0642 | 0.0232 | 0.06595 | 0.1293 | 313.83 | 276499999.999 | -| DEFIUSDT | 0.0008342 | 0.001491 | 0.08546 | 0.05703 | 0.01381 | 0.0149 | 136.5 | 0.08073 | 0.05014 | 0.08915 | 0.1925 | 1188.67 | 276499999.999 | -| SNXUSDT | 0.0006865 | 0.0008937 | 0.03303 | 0.003367 | 0.02065 | 0.01854 | 140.0 | 0.0998 | 0.003523 | 0.03654 | 0.1065 | 1202.67 | 276499999.999 | -| HOTUSDT | 0.0008783 | 0.001701 | 0.08489 | 0.02211 | 0.01454 | 0.01609 | 100.9 | 0.09348 | 0.01246 | 0.09178 | 0.1785 | 974.67 | 276499999.999 | -| ZENUSDT | 0.0009341 | 0.001697 | 0.07251 | 0.01276 | 0.01826 | 0.0163 | 137.5 | 0.09295 | 0.008658 | 0.09048 | 0.2494 | 1100.67 | 276499999.999 | -| OGNUSDT | 0.0009508 | 0.001022 | 0.02769 | 0.01191 | 0.01234 | 0.01066 | 71.57 | 0.06658 | 0.009971 | 0.0715 | 0.217 | 972.67 | 276499999.999 | -| JASMYUSDT | 0.0008032 | 0.001567 | 0.04962 | 0.007237 | 0.01122 | 0.01019 | 122.8 | 0.0806 | 0.03469 | 0.09054 | 0.1949 | 588.83 | 276499999.999 | -| WOOUSDT | 0.0008112 | 0.001265 | 0.04284 | 0.01219 | 0.00754 | 0.007638 | 51.15 | 0.04255 | 0.01407 | 0.04103 | 0.1199 | 600.83 | 276499999.999 | -| CYBERUSDT | 0.0006326 | 0.00153 | 0.01074 | 0.000497 | 0.01644 | 0.01519 | 134.6 | 0.08987 | 0.0 | 0.02823 | 0.2337 | 100.46 | 276499999.999 | -| SUSHIUSDT | 0.001132 | 0.001929 | 0.04826 | 0.01892 | 0.01211 | 0.01226 | 99.92 | 0.074 | 0.02331 | 0.07979 | 0.2499 | 1181.67 | 276499999.999 | -| RENUSDT | 0.0008098 | 0.001206 | 0.04997 | 0.01368 | 0.01734 | 0.01639 | 123.3 | 0.09765 | 0.01301 | 0.09239 | 0.2196 | 1142.67 | 276499999.999 | -| CELOUSDT | 0.0006583 | 0.0008855 | 0.04513 | 0.01634 | 0.01335 | 0.01164 | 121.8 | 0.07073 | 0.02991 | 0.07758 | 0.1911 | 793.83 | 276499999.999 | -| APEUSDT | 0.0007672 | 0.00124 | 0.04034 | 0.01812 | 0.01008 | 0.01035 | 83.75 | 0.06668 | 0.008816 | 0.07142 | 0.1926 | 622.33 | 276499999.999 | -| ADAUSDT | 0.0005903 | 0.001053 | 0.04837 | 0.02759 | 0.01333 | 0.01306 | 141.3 | 0.07342 | 0.02729 | 0.08041 | 0.2268 | 1398.62 | 276499999.999 | -| GRTUSDT | 0.001175 | 0.002155 | 0.04971 | 0.02085 | 0.01182 | 0.01168 | 83.2 | 0.07182 | 0.00905 | 0.07601 | 0.2268 | 1075.67 | 276499999.999 | -| AMBUSDT | 0.001307 | 0.001639 | 0.03492 | 0.004429 | 0.01268 | 0.008486 | 49.07 | 0.03482 | 0.005113 | 0.01251 | 0.03619 | 244.46 | 276499999.999 | -| CELRUSDT | 0.001153 | 0.002475 | 0.07259 | 0.0333 | 0.01191 | 0.01138 | 119.4 | 0.0805 | 0.02476 | 0.0912 | 0.204 | 975.67 | 276499999.999 | -| DASHUSDT | 0.0006504 | 0.001216 | 0.07702 | 0.02654 | 0.01516 | 0.01296 | 129.7 | 0.07189 | 0.02415 | 0.0732 | 0.182 | 1394.62 | 276499999.999 | -| YFIUSDT | 0.0008077 | 0.001536 | 0.0564 | 0.0279 | 0.01842 | 0.02045 | 111.1 | 0.07876 | 0.1951 | 0.09432 | 0.176 | 1185.67 | 276499999.999 | -| ATAUSDT | 0.001183 | 0.002197 | 0.07568 | 0.02609 | 0.01494 | 0.01301 | 132.7 | 0.08527 | 0.01249 | 0.09784 | 0.2319 | 820.83 | 276499999.999 | -| OCEANUSDT | 0.001257 | 0.002089 | 0.117 | 0.02161 | 0.01905 | 0.01795 | 131.4 | 0.09665 | 0.01077 | 0.09871 | 0.2122 | 1121.67 | 276499999.999 | -| AVAXUSDT | 0.0006687 | 0.001152 | 0.05029 | 0.01382 | 0.01552 | 0.01616 | 141.9 | 0.09221 | 0.02204 | 0.09736 | 0.2423 | 1162.67 | 276499999.999 | -| SFPUSDT | 0.0009537 | 0.002187 | 0.06133 | 0.02679 | 0.01484 | 0.01102 | 97.22 | 0.07184 | 0.05833 | 0.08389 | 0.247 | 1008.67 | 276499999.999 | -| ONEUSDT | 0.0007096 | 0.001463 | 0.04146 | 0.01726 | 0.01603 | 0.01543 | 143.2 | 0.08885 | 0.01543 | 0.09032 | 0.2096 | 986.67 | 276499999.999 | -| ENSUSDT | 0.0007662 | 0.001615 | 0.0629 | 0.02083 | 0.009123 | 0.01052 | 73.6 | 0.07814 | 0.01224 | 0.08623 | 0.2033 | 729.83 | 276499999.999 | -| LINAUSDT | 0.0005091 | 0.0007077 | 0.02078 | 0.002528 | 0.02249 | 0.01941 | 127.7 | 0.09883 | 0.000828 | 0.0235 | 0.1448 | 985.67 | 276499999.999 | -| PHBUSDT | 0.001256 | 0.001143 | 0.03563 | 0.01257 | 0.01355 | 0.01105 | 102.7 | 0.05821 | 0.02629 | 0.06176 | 0.1266 | 286.38 | 276499999.999 | -| FLOWUSDT | 0.0006067 | 0.0007544 | 0.03434 | 0.01187 | 0.01168 | 0.01175 | 99.35 | 0.07137 | 0.009915 | 0.06248 | 0.1524 | 657.83 | 276499999.999 | -| KAVAUSDT | 0.0006029 | 0.00137 | 0.03915 | 0.01766 | 0.01625 | 0.01631 | 141.4 | 0.09919 | 0.0104 | 0.09844 | 0.1998 | 1219.67 | 276499999.999 | -| IMXUSDT | 0.0006923 | 0.0007287 | 0.01891 | 0.002651 | 0.01462 | 0.01234 | 100.9 | 0.05776 | 0.000383 | 0.02276 | 0.1406 | 656.83 | 276499999.999 | -| XLMUSDT | 0.0005271 | 0.0007038 | 0.03464 | 0.01748 | 0.01587 | 0.01844 | 129.3 | 0.06039 | 0.1035 | 0.05252 | 0.13 | 1409.62 | 276499999.999 | -| JOEUSDT | 0.001167 | 0.0008302 | 0.05234 | 0.02056 | 0.01589 | 0.01501 | 138.0 | 0.09394 | 0.0249 | 0.09334 | 0.1499 | 245.46 | 276499999.999 | -| LITUSDT | 0.000561 | 0.00114 | 0.04971 | 0.01561 | 0.01831 | 0.01687 | 127.1 | 0.09637 | 0.01494 | 0.07997 | 0.2163 | 1014.67 | 276499999.999 | -| ONTUSDT | 0.001115 | 0.001806 | 0.07416 | 0.02931 | 0.01016 | 0.0123 | 104.5 | 0.07972 | 0.03238 | 0.09119 | 0.1805 | 1387.62 | 276499999.999 | -| DARUSDT | 0.0008334 | 0.001041 | 0.04308 | 0.01774 | 0.01151 | 0.01116 | 89.67 | 0.07247 | 0.02758 | 0.07659 | 0.1752 | 579.83 | 276499999.999 | -| MATICUSDT | 0.0006531 | 0.001531 | 0.04316 | 0.01808 | 0.01407 | 0.01287 | 129.4 | 0.0745 | 0.04758 | 0.08406 | 0.2054 | 1133.67 | 276499999.999 | -| LDOUSDT | 0.001152 | 0.001333 | 0.04711 | 0.01605 | 0.01482 | 0.01518 | 97.8 | 0.09177 | 0.00951 | 0.0799 | 0.1271 | 433.46 | 276499999.999 | -| RLCUSDT | 0.001073 | 0.002339 | 0.08167 | 0.02467 | 0.01603 | 0.01533 | 123.5 | 0.09438 | 0.008613 | 0.09077 | 0.1907 | 1216.67 | 276499999.999 | -| VETUSDT | 0.0005257 | 0.00128 | 0.03864 | 0.02074 | 0.01252 | 0.01205 | 141.1 | 0.06548 | 0.02654 | 0.07273 | 0.1618 | 1384.62 | 276499999.999 | -| XVSUSDT | 0.00105 | 0.0005926 | 0.02633 | 0.004455 | 0.0152 | 0.01436 | 109.8 | 0.08045 | 0.002979 | 0.05866 | 0.2239 | 230.88 | 276499999.999 | -| OXTUSDT | 0.001119 | 0.001447 | 0.04108 | 0.01488 | 0.00959 | 0.01187 | 59.02 | 0.05588 | 0.04026 | 0.05567 | 0.1152 | 110.46 | 276499999.999 | -| IDUSDT | 0.001171 | 0.001155 | 0.02776 | 0.007556 | 0.006681 | 0.00654 | 41.92 | 0.04006 | 0.008357 | 0.04012 | 0.09634 | 251.38 | 276499999.999 | -| MAGICUSDT | 0.0007795 | 0.000845 | 0.02487 | 0.01049 | 0.01278 | 0.01091 | 93.35 | 0.06046 | 0.00867 | 0.06113 | 0.1148 | 308.83 | 276499999.999 | -| RUNEUSDT | 0.001287 | 0.001188 | 0.03377 | 0.01467 | 0.01624 | 0.01378 | 129.4 | 0.0698 | 0.0242 | 0.08025 | 0.1688 | 1181.67 | 276499999.999 | -| BATUSDT | 0.0005179 | 0.00108 | 0.0458 | 0.0172 | 0.01219 | 0.01227 | 98.77 | 0.08484 | 0.02192 | 0.09955 | 0.2328 | 1385.62 | 276499999.999 | -| INJUSDT | 0.0006485 | 0.0006727 | 0.02279 | 0.005399 | 0.01537 | 0.01435 | 122.6 | 0.0723 | 0.002578 | 0.01555 | 0.08081 | 469.88 | 276499999.999 | -| ALGOUSDT | 0.0008954 | 0.001728 | 0.08332 | 0.03102 | 0.01433 | 0.01375 | 142.1 | 0.08447 | 0.0215 | 0.09471 | 0.192 | 1261.58 | 276499999.999 | -| RADUSDT | 0.001456 | 0.001464 | 0.03081 | 0.004176 | 0.007825 | 0.006284 | 79.37 | 0.03271 | 0.0002055 | 0.01672 | 0.05836 | 203.46 | 276499999.999 | -| NEOUSDT | 0.001026 | 0.001479 | 0.08662 | 0.03248 | 0.01184 | 0.01561 | 126.8 | 0.07653 | 0.07612 | 0.0872 | 0.1623 | 1381.62 | 276499999.999 | -| RNDRUSDT | 0.0008883 | 0.000753 | 0.04218 | 0.01832 | 0.01348 | 0.01232 | 108.0 | 0.07108 | 0.007659 | 0.06226 | 0.1151 | 299.88 | 276499999.999 | -| XMRUSDT | 0.0005144 | 0.001218 | 0.08636 | 0.03165 | 0.01195 | 0.01369 | 101.4 | 0.08603 | 0.0177 | 0.09532 | 0.1888 | 1395.62 | 276499999.999 | -| COMPUSDT | 0.0005702 | 0.0006575 | 0.03372 | 0.01772 | 0.01719 | 0.01592 | 99.97 | 0.087 | 0.02351 | 0.09252 | 0.2271 | 1247.58 | 276499999.999 | -| GMXUSDT | 0.0008045 | 0.0007521 | 0.07226 | 0.03334 | 0.01095 | 0.01128 | 104.0 | 0.08535 | 0.06564 | 0.09547 | 0.1435 | 285.38 | 276499999.999 | -| TUSDT | 0.001156 | 0.001162 | 0.04687 | 0.01921 | 0.008204 | 0.007447 | 128.9 | 0.04289 | 0.01622 | 0.04444 | 0.1221 | 301.42 | 276499999.999 | -| MKRUSDT | 0.0009951 | 0.001136 | 0.02777 | 0.01025 | 0.009493 | 0.008365 | 73.27 | 0.04091 | 0.01125 | 0.03623 | 0.2138 | 1203.67 | 276499999.999 | -| XTZUSDT | 0.000737 | 0.001591 | 0.05682 | 0.02312 | 0.009522 | 0.009964 | 92.75 | 0.0739 | 0.02165 | 0.08301 | 0.2365 | 1392.62 | 276499999.999 | -| SOLUSDT | 0.0007074 | 0.0008127 | 0.03376 | 0.01681 | 0.01471 | 0.01444 | 92.53 | 0.06598 | 0.01573 | 0.04132 | 0.1465 | 1171.67 | 276499999.999 | -| CHRUSDT | 0.0008415 | 0.001806 | 0.05321 | 0.01806 | 0.0145 | 0.01304 | 120.5 | 0.08201 | 0.03102 | 0.09182 | 0.248 | 992.67 | 276499999.999 | -| THETAUSDT | 0.000672 | 0.001408 | 0.04619 | 0.01268 | 0.01103 | 0.01204 | 127.8 | 0.07974 | 0.005525 | 0.0743 | 0.1631 | 1281.62 | 276499999.999 | -| SKLUSDT | 0.0007409 | 0.001306 | 0.0348 | 0.003876 | 0.01687 | 0.01552 | 120.9 | 0.08394 | 0.005065 | 0.04137 | 0.2212 | 1086.67 | 276499999.999 | -| DYDXUSDT | 0.0005545 | 0.0007809 | 0.02752 | 0.01063 | 0.01602 | 0.01534 | 142.2 | 0.08345 | 0.01094 | 0.07519 | 0.1959 | 810.83 | 276499999.999 | -| RDNTUSDT | 0.001178 | 0.001096 | 0.05521 | 0.005397 | 0.01338 | 0.01061 | 105.1 | 0.05522 | 0.002685 | 0.02149 | 0.04607 | 238.46 | 276499999.999 | -| NMRUSDT | 0.001498 | 0.001733 | 0.03033 | 0.001167 | 0.007181 | 0.006559 | 54.92 | 0.03648 | 0.001207 | 0.0262 | 0.1649 | 160.46 | 276499999.999 | -| ATOMUSDT | 0.0009695 | 0.002365 | 0.06913 | 0.03993 | 0.01361 | 0.01337 | 140.6 | 0.08654 | 0.01882 | 0.09874 | 0.2345 | 1391.46 | 276499999.999 | -| NKNUSDT | 0.0005845 | 0.001271 | 0.05046 | 0.003921 | 0.01863 | 0.01738 | 143.5 | 0.09837 | 0.003883 | 0.06964 | 0.2498 | 964.67 | 276499999.999 | -| ALICEUSDT | 0.0005944 | 0.001223 | 0.05569 | 0.01108 | 0.01893 | 0.017 | 142.9 | 0.09714 | 0.008121 | 0.07996 | 0.1871 | 988.83 | 276499999.999 | -| LTCUSDT | 0.0005489 | 0.0009731 | 0.05208 | 0.02475 | 0.01351 | 0.01353 | 143.8 | 0.06779 | 0.05938 | 0.07629 | 0.1446 | 1420.62 | 276499999.999 | -| CKBUSDT | 0.001301 | 0.001205 | 0.0526 | 0.01448 | 0.007869 | 0.006509 | 70.55 | 0.03736 | 0.006199 | 0.02767 | 0.0478 | 274.46 | 276499999.999 | -| ARPAUSDT | 0.0006793 | 0.001184 | 0.0253 | 0.006634 | 0.01269 | 0.0105 | 129.3 | 0.0473 | 0.003879 | 0.02938 | 0.1451 | 771.83 | 276499999.999 | -| C98USDT | 0.000583 | 0.0009007 | 0.05543 | 0.01163 | 0.01855 | 0.0164 | 117.0 | 0.09414 | 0.009766 | 0.08539 | 0.1763 | 827.83 | 276499999.999 | -| ZRXUSDT | 0.0008676 | 0.001021 | 0.04963 | 0.006158 | 0.0161 | 0.0152 | 128.1 | 0.08838 | 0.007662 | 0.06462 | 0.2325 | 1253.58 | 276499999.999 | -| ICPUSDT | 0.001261 | 0.001025 | 0.04772 | 0.024 | 0.009468 | 0.008702 | 107.2 | 0.05508 | 0.01495 | 0.05975 | 0.1099 | 428.88 | 276499999.999 | -| ZILUSDT | 0.0006955 | 0.00154 | 0.04911 | 0.02673 | 0.01074 | 0.01139 | 139.2 | 0.07984 | 0.02449 | 0.09227 | 0.1569 | 1259.58 | 276499999.999 | -| REEFUSDT | 0.001409 | 0.002334 | 0.07252 | 0.02493 | 0.01442 | 0.01392 | 123.2 | 0.08903 | 0.02119 | 0.09812 | 0.2449 | 1010.67 | 276499999.999 | -| LINKUSDT | 0.001039 | 0.001669 | 0.06939 | 0.04239 | 0.01446 | 0.01261 | 129.2 | 0.08608 | 0.02387 | 0.09651 | 0.238 | 1412.62 | 276499999.999 | -| KSMUSDT | 0.0007114 | 0.001645 | 0.09477 | 0.0615 | 0.01476 | 0.01802 | 120.8 | 0.08545 | 0.1811 | 0.09945 | 0.1729 | 1141.67 | 276499999.999 | -| XRPUSDT | 0.0005448 | 0.0006018 | 0.01933 | 0.006757 | 0.01321 | 0.01214 | 122.7 | 0.0608 | 0.04891 | 0.05438 | 0.1915 | 1423.62 | 276499999.999 | -| ZECUSDT | 0.0006664 | 0.001492 | 0.06852 | 0.03414 | 0.01052 | 0.01278 | 134.3 | 0.08489 | 0.02487 | 0.09481 | 0.2364 | 1393.62 | 276499999.999 | -| PERPUSDT | 0.000914 | 0.001009 | 0.01774 | 0.002839 | 0.008672 | 0.006977 | 64.83 | 0.02759 | 0.0 | 0.007422 | 0.05222 | 268.46 | 276499999.999 | -| 1000PEPEUSDT | 0.001296 | 0.001388 | 0.02305 | 0.00828 | 0.01029 | 0.009075 | 36.48 | 0.04183 | 0.004748 | 0.03115 | 0.07854 | 208.29 | 276499999.999 | -| DGBUSDT | 0.0006937 | 0.001471 | 0.1028 | 0.0104 | 0.01279 | 0.01538 | 91.8 | 0.09387 | 0.01957 | 0.09925 | 0.2429 | 952.83 | 276499999.999 | -| BAKEUSDT | 0.000533 | 0.0006336 | 0.0419 | 0.006898 | 0.01986 | 0.01516 | 111.7 | 0.09458 | 0.01373 | 0.06469 | 0.1154 | 924.67 | 276499999.999 | -| UNIUSDT | 0.0007003 | 0.001355 | 0.06717 | 0.0375 | 0.01659 | 0.01656 | 129.7 | 0.0839 | 0.1048 | 0.09769 | 0.2447 | 1167.67 | 276499999.999 | -| AAVEUSDT | 0.0004923 | 0.0008036 | 0.02836 | 0.01345 | 0.01552 | 0.01438 | 109.5 | 0.05679 | 0.05 | 0.04639 | 0.1441 | 1139.67 | 276500000.0 | -| ALPHAUSDT | 0.0004446 | 0.0009712 | 0.02813 | 0.00855 | 0.01621 | 0.01238 | 133.7 | 0.06268 | 0.008463 | 0.05486 | 0.1772 | 1101.67 | 276500000.0 | -| ETHUSDT | 0.0003023 | 0.000769 | 0.04665 | 0.02024 | 0.008804 | 0.01078 | 130.6 | 0.08472 | 0.01562 | 0.09463 | 0.1823 | 1428.96 | 276500000.0 | -| LRCUSDT | 0.0002686 | 0.0006993 | 0.02457 | 0.003064 | 0.0167 | 0.0155 | 134.1 | 0.09093 | 0.009334 | 0.06357 | 0.2492 | 1136.67 | 276500000.0 | -| QNTUSDT | 0.0004939 | 0.0005957 | 0.05231 | 0.02789 | 0.01183 | 0.01194 | 110.8 | 0.08154 | 0.171 | 0.09913 | 0.1173 | 405.88 | 276500000.0 | -| BTCUSDT | 0.0001313 | 0.0001549 | 0.01572 | 0.00437 | 0.01346 | 0.009868 | 140.9 | 0.04089 | 0.01125 | 0.01003 | 0.1017 | 1428.96 | 276500000.0 | -| AXSUSDT | 8.452e-05 | 0.0002231 | 0.01616 | 0.005718 | 0.01946 | 0.01651 | 109.6 | 0.0675 | 0.0676 | 0.03766 | 0.1767 | 1104.67 | 276500000.0 | -| ROSEUSDT | 0.0002068 | 0.0003309 | 0.01256 | 0.004054 | 0.01322 | 0.01124 | 83.37 | 0.05106 | 0.01653 | 0.02992 | 0.1667 | 698.83 | 276500000.0 | -| LPTUSDT | 0.0001529 | 0.0001917 | 0.01485 | 0.0006231 | 0.02082 | 0.01637 | 127.9 | 0.099 | 0.0 | 0.02346 | 0.08849 | 748.83 | 276500000.0 | -| HBARUSDT | 0.0003949 | 0.0006975 | 0.03055 | 0.007429 | 0.01396 | 0.01212 | 119.3 | 0.06286 | 0.01678 | 0.05285 | 0.2224 | 987.67 | 276500000.0 | -| AUDIOUSDT | 6.6e-05 | 0.0001369 | 0.007403 | 0.0009405 | 0.01787 | 0.01319 | 124.3 | 0.05343 | 0.003025 | 0.01507 | 0.1564 | 832.83 | 276500000.0 | -| TRXUSDT | 0.0002873 | 0.0008072 | 0.05336 | 0.02334 | 0.008834 | 0.01074 | 143.8 | 0.07486 | 0.09742 | 0.08892 | 0.1858 | 1414.62 | 276500000.0 | -| ETCUSDT | 0.0004827 | 0.001084 | 0.02565 | 0.007689 | 0.01022 | 0.01009 | 124.7 | 0.05493 | 0.01511 | 0.03957 | 0.1615 | 1413.62 | 276500000.0 | -| ENJUSDT | 7.261e-05 | 0.00017 | 0.008487 | 0.0 | 0.01865 | 0.01342 | 117.0 | 0.05731 | 0.0 | 0.01339 | 0.06026 | 1156.67 | 276500000.0 | -| IOSTUSDT | 5.953e-05 | 0.0001411 | 0.008943 | 0.0 | 0.01879 | 0.01357 | 110.1 | 0.05534 | 0.0 | 0.01442 | 0.1405 | 1377.62 | 276500000.0 | -| MTLUSDT | 0.0003539 | 0.0005628 | 0.0275 | 0.007694 | 0.01906 | 0.01718 | 139.8 | 0.09476 | 0.01413 | 0.06919 | 0.2482 | 973.67 | 276500000.0 | -| 1000SHIBUSDT | 0.0004037 | 0.001019 | 0.02457 | 0.003022 | 0.011 | 0.01051 | 125.2 | 0.07292 | 0.001759 | 0.05616 | 0.2433 | 933.25 | 276500000.0 | -| BNBUSDT | 0.0003141 | 0.0007772 | 0.07648 | 0.04901 | 0.01207 | 0.01236 | 142.1 | 0.08457 | 0.1168 | 0.09956 | 0.2003 | 1388.62 | 276500000.0 | -| NEARUSDT | 0.0002766 | 0.0005676 | 0.0209 | 0.004573 | 0.01843 | 0.016 | 117.0 | 0.09553 | 0.004833 | 0.04836 | 0.2373 | 1140.62 | 276500000.0 | -| API3USDT | 0.0003556 | 0.0004708 | 0.02096 | 0.009088 | 0.0156 | 0.01637 | 97.62 | 0.09233 | 0.01513 | 0.05531 | 0.2235 | 645.83 | 276500000.0 | -| BELUSDT | 0.0003595 | 0.0006682 | 0.02448 | 0.0003463 | 0.02052 | 0.01863 | 126.8 | 0.09898 | 0.0 | 0.03773 | 0.2002 | 1106.67 | 276500000.0 | -| APTUSDT | 0.0002975 | 0.0003838 | 0.02682 | 0.01651 | 0.01581 | 0.01534 | 93.23 | 0.08929 | 0.02534 | 0.09544 | 0.1858 | 406.88 | 276500000.0 | -| DENTUSDT | 0.0003572 | 0.0009309 | 0.03962 | 0.01685 | 0.01549 | 0.01444 | 124.0 | 0.08691 | 0.01708 | 0.09365 | 0.2066 | 980.79 | 276500000.0 | -| BALUSDT | 5.711e-05 | 0.0001227 | 0.01275 | 0.0 | 0.0212 | 0.0143 | 113.5 | 0.06208 | 0.0 | 0.01816 | 0.05642 | 1184.67 | 276500000.0 | -| STGUSDT | 0.0002098 | 0.0003738 | 0.01193 | 0.003809 | 0.01288 | 0.009913 | 109.7 | 0.03857 | 0.00703 | 0.01276 | 0.05023 | 461.46 | 276500000.0 | -| SANDUSDT | 0.0004235 | 0.001297 | 0.0284 | 0.01346 | 0.01275 | 0.01207 | 98.65 | 0.06966 | 0.01884 | 0.07994 | 0.1582 | 1038.67 | 276500000.0 | -| GTCUSDT | 0.0001751 | 0.000348 | 0.01625 | 0.002153 | 0.02179 | 0.01733 | 131.5 | 0.09536 | 0.004195 | 0.03546 | 0.2068 | 901.83 | 276500000.0 | -| 1000LUNCUSDT | 0.0001408 | 0.0001309 | 0.005978 | 0.0 | 0.01529 | 0.01214 | 77.73 | 0.05884 | 0.0 | 0.02463 | 0.1032 | 446.42 | 276500000.0 | -| DOGEUSDT | 0.0004704 | 0.00169 | 0.01931 | 0.007706 | 0.009608 | 0.0101 | 132.8 | 0.05259 | 0.02829 | 0.04647 | 0.2281 | 1237.58 | 276500000.0 | -| 1INCHUSDT | 0.0004989 | 0.001069 | 0.03979 | 0.01798 | 0.01454 | 0.01349 | 83.87 | 0.07442 | 0.01793 | 0.0791 | 0.1682 | 1069.54 | 276500000.0 | -| BLUEBIRDUSDT | 0.0001265 | 0.000144 | 0.01866 | 0.001019 | 0.01132 | 0.01015 | 120.6 | 0.07206 | 0.005167 | 0.03059 | 0.07344 | 392.46 | 276500000.0 | -| SXPUSDT | 0.0003647 | 0.0007421 | 0.03843 | 0.003855 | 0.0199 | 0.01455 | 134.6 | 0.09251 | 0.005792 | 0.05982 | 0.216 | 1226.58 | 276500000.0 | -| ANKRUSDT | 0.0004187 | 0.001006 | 0.03472 | 0.007167 | 0.01712 | 0.01692 | 138.1 | 0.09956 | 0.01087 | 0.09192 | 0.2305 | 1037.67 | 276500000.0 | -| CHZUSDT | 0.0003572 | 0.0009966 | 0.04055 | 0.0006234 | 0.016 | 0.01454 | 122.7 | 0.08447 | 0.0005781 | 0.05111 | 0.2488 | 1042.67 | 276500000.0 | -| CFXUSDT | 0.0001128 | 0.0001523 | 0.01463 | 0.0 | 0.01962 | 0.01671 | 98.47 | 0.08615 | 0.0 | 0.0542 | 0.08438 | 282.38 | 276500000.0 | -| DOTUSDT | 0.0003983 | 0.0009908 | 0.06932 | 0.02686 | 0.01724 | 0.01467 | 140.6 | 0.08111 | 0.04014 | 0.09033 | 0.1807 | 1194.67 | 276500000.0 | -| BCHUSDT | 7.493e-05 | 9.085e-05 | 0.01088 | 0.0 | 0.01955 | 0.01398 | 121.4 | 0.06303 | 0.0 | 0.02064 | 0.1373 | 1428.96 | 276500000.0 | -| RVNUSDT | 0.0002643 | 0.0006114 | 0.025 | 0.004712 | 0.01292 | 0.01248 | 129.3 | 0.07019 | 0.01032 | 0.04306 | 0.1776 | 1009.67 | 276500000.0 | -| ICXUSDT | 0.0003778 | 0.0006633 | 0.02721 | 0.006794 | 0.01526 | 0.01152 | 79.33 | 0.05379 | 0.01948 | 0.0445 | 0.1668 | 1170.67 | 276500000.0 | -| ANTUSDT | 6.882e-05 | 0.0001926 | 0.01611 | 0.0 | 0.02032 | 0.01451 | 112.2 | 0.06496 | 0.0 | 0.03306 | 0.1125 | 702.79 | 276500000.0 | -| CTKUSDT | 0.0002804 | 0.0007104 | 0.03634 | 0.0006481 | 0.01665 | 0.01433 | 113.7 | 0.09411 | 0.003263 | 0.0509 | 0.2492 | 1105.67 | 276500000.0 | -| OPUSDT | 0.0004495 | 0.0009969 | 0.03426 | 0.007396 | 0.0178 | 0.0176 | 101.5 | 0.09631 | 0.002701 | 0.05698 | 0.1389 | 546.38 | 276500000.0 | -| STXUSDT | 0.0004203 | 0.0004757 | 0.03218 | 0.01156 | 0.01543 | 0.0144 | 113.1 | 0.09088 | 0.05407 | 0.08433 | 0.1715 | 281.38 | 276500000.0 | -| ARBUSDT | 0.0004951 | 0.0004894 | 0.03651 | 0.01447 | 0.01208 | 0.01095 | 61.8 | 0.05194 | 0.02101 | 0.04506 | 0.07992 | 251.33 | 276500000.0 | -| FILUSDT | 0.0003036 | 0.0005995 | 0.02022 | 0.005085 | 0.01506 | 0.01432 | 138.2 | 0.07636 | 0.008922 | 0.03369 | 0.1686 | 1139.71 | 276500000.0 | -| FOOTBALLUSDT | 0.0003653 | 0.0006723 | 0.0267 | 0.002839 | 0.006208 | 0.005802 | 125.8 | 0.04263 | 0.004868 | 0.03727 | 0.1462 | 454.83 | 276500000.0 | -| STORJUSDT | 0.0004825 | 0.0006524 | 0.01773 | 0.004777 | 0.01562 | 0.01439 | 132.4 | 0.07704 | 0.005879 | 0.03984 | 0.1285 | 1169.67 | 276500000.0 | -| WAVESUSDT | 0.0001628 | 0.0002976 | 0.01955 | 0.006813 | 0.02009 | 0.01874 | 106.6 | 0.08343 | 0.03099 | 0.02202 | 0.1039 | 1204.67 | 276500000.0 | -| CVXUSDT | 4.81e-05 | 8.782e-05 | 0.01248 | 0.0 | 0.02161 | 0.01403 | 152.1 | 0.05329 | 0.0 | 0.007007 | 0.01233 | 433.46 | 277313333.333 | -| KLAYUSDT | 4.711e-05 | 7.459e-05 | 0.01215 | 0.0 | 0.02079 | 0.01542 | 182.5 | 0.07275 | 0.0 | 0.04084 | 0.1527 | 778.83 | 280353333.333 | -| USDCUSDT | -7.637e-10 | -7.637e-09 | 0.009843 | 0.0 | 0.001874 | 0.0005228 | nan | 0.01003 | 0.7 | 0.0001035 | 0.0001284 | 262.25 | 281500000.0 | -| COTIUSDT | 0.0002224 | 0.0004988 | 0.02569 | 0.007736 | 0.02323 | 0.02126 | 198.8 | 0.1114 | 0.006325 | 0.0617 | 0.2373 | 994.67 | 281993031.96 | -| IOTXUSDT | 9.592e-05 | 0.0001829 | 0.02695 | 0.005843 | 0.02449 | 0.01951 | 233.3 | 0.1168 | 0.01798 | 0.06316 | 0.1944 | 839.83 | 285443454.145 | -| ARUSDT | 0.0001345 | 0.0002021 | 0.01749 | 0.003484 | 0.0204 | 0.01675 | 142.9 | 0.1019 | 0.01674 | 0.06874 | 0.2591 | 792.83 | 285635354.079 | -| IOTAUSDT | 0.0002025 | 0.0004611 | 0.04817 | 0.007118 | 0.02226 | 0.01706 | 170.9 | 0.1181 | 0.02377 | 0.1005 | 0.2591 | 1386.62 | 288364697.487 | -| TOMOUSDT | 0.001091 | 0.0008658 | 0.02937 | 0.007679 | 0.02064 | 0.01775 | 374.2 | 0.09078 | 0.006823 | 0.04872 | 0.1731 | 1143.67 | 299523333.332 | -| BTCDOMUSDT | 1.385e-05 | 1.835e-05 | 0.009503 | 0.0 | 0.02034 | 0.0122 | 437.0 | 0.05312 | 0.0 | 0.006593 | 0.009128 | 891.83 | 305803333.333 | -| PEOPLEUSDT | 0.0005193 | 0.001017 | 0.02078 | 0.002774 | 0.01715 | 0.01565 | 196.1 | 0.0798 | 0.001643 | 0.03761 | 0.2753 | 705.79 | 307046145.65 | -| GMTUSDT | 0.0003461 | 0.0005149 | 0.02806 | 0.01697 | 0.01821 | 0.01961 | 356.5 | 0.1856 | 0.007798 | 0.2278 | 0.3519 | 624.79 | 412481410.377 | -| FTMUSDT | 5.223e-05 | -6.542e-05 | 0.02756 | 0.0166 | 0.02663 | 0.02729 | 93.13 | 0.2838 | 0.7827 | 0.4974 | 0.6353 | 1161.67 | 707527586.015 | -| COCOSUSDT | 6.369e-05 | 0.0006369 | 0.008408 | 0.001007 | 50.01 | 0.5044 | 4527.0 | 0.03437 | 0.5 | 0.01113 | 0.07101 | 281.38 | 717776666.667 | -| HNTUSDT | 3.054e-05 | 0.0001557 | 0.008921 | 0.0004355 | 10.02 | 0.1133 | 6111.0 | 0.06209 | 0.1035 | 0.02166 | 0.1775 | 1157.67 | 873175000.0 | -| SRMUSDT | 2.388e-05 | 0.0001344 | 0.007787 | 0.0002117 | 20.02 | 0.2115 | 9115.0 | 0.05858 | 0.2 | 0.01954 | 0.1476 | 1180.88 | 1173556666.67 | -| RAYUSDT | 4.553e-05 | 0.000381 | 0.02418 | 0.0001202 | 30.01 | 0.3106 | 9116.0 | 0.07057 | 0.3 | 0.03784 | 0.1156 | 831.83 | 1174683333.33 | -| FTTUSDT | 5.472e-05 | 0.0005472 | 0.0121 | 0.001557 | 50.0 | 0.5032 | 9140.0 | 0.02756 | 0.5 | 0.004855 | 0.165 | 593.83 | 1179051666.67 | -| CVCUSDT | 8.3e-05 | 0.0006804 | 0.01523 | 0.003569 | 20.01 | 0.2112 | 8779.0 | 0.08511 | 0.2091 | 0.07213 | 0.38 | 1113.67 | 1270048558.1 | -| BTSUSDT | 5.767e-05 | 0.0005187 | 0.03523 | 0.0 | 30.01 | 0.3128 | 11250.0 | 0.1059 | 0.3 | 0.07953 | 0.1397 | 1031.67 | 1387869268.99 | -| SCUSDT | 4.15e-05 | 0.000415 | 0.01505 | 0.001863 | 40.01 | 0.4052 | 12730.0 | 0.03987 | 0.4002 | 0.01354 | 0.1672 | 961.67 | 1537542445.54 | -| GALAUSDT | -0.005143 | -0.01706 | 0.03917 | 0.02592 | 0.02336 | 0.04043 | 7784.0 | 0.3105 | 4.2 | 1.0 | 1.0 | 802.83 | 1920683169.46 | -| MASKUSDT | -0.005009 | -0.01661 | 0.01489 | 0.004343 | 0.01968 | 0.02704 | 9399.0 | 0.1085 | 3.602 | 1.0 | 1.0 | 824.83 | 2076065285.28 | -| UNFIUSDT | -0.001354 | -0.01354 | 0.1611 | 0.08644 | 0.03029 | 0.03463 | 12960.0 | 0.2693 | 0.5916 | 1.0 | 1.0 | 1013.67 | 2402469773.18 | -| BTCSTUSDT | 3.333e-06 | 3.333e-05 | 0.006201 | 0.0 | 80.0 | 0.8002 | 23830.0 | 0.004833 | 0.8 | 0.0002393 | 0.005947 | 1000.67 | 2651005000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/multisymbol/no_AU/1000BONKUSDT.json b/configs/live/multisymbol/no_AU/1000BONKUSDT.json deleted file mode 100644 index c1a622d38..000000000 --- a/configs/live/multisymbol/no_AU/1000BONKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5076176852487743, - "ema_span_0": 870.6903870465236, - "ema_span_1": 640.0505371453597, - "enabled": true, - "initial_eprice_ema_dist": -0.004625045279078337, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.0013545152613237054, - "min_markup": 0.005295220636714294, - "n_close_orders": 13, - "rentry_pprice_dist": 0.020319585917755578, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9495540973434329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000FLOKIUSDT.json b/configs/live/multisymbol/no_AU/1000FLOKIUSDT.json deleted file mode 100644 index 424fc83a0..000000000 --- a/configs/live/multisymbol/no_AU/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1000253088461639, - "ema_span_0": 1097.8744732697232, - "ema_span_1": 406.91457583186894, - "enabled": true, - "initial_eprice_ema_dist": -0.0027409371987949004, - "initial_qty_pct": 0.018805446219805615, - "markup_range": 0.002479346622921817, - "min_markup": 0.006656628235282698, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02831082617853845, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7368907040172634, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.429232835173058, - "ema_span_0": 1373.8554224777074, - "ema_span_1": 575.1863608354481, - "enabled": true, - "initial_eprice_ema_dist": -0.0021964840780753082, - "initial_qty_pct": 0.009684351562086288, - "markup_range": 6.347250842397099e-05, - "min_markup": 0.0022125862752340516, - "n_close_orders": 13, - "rentry_pprice_dist": 0.023735025844592438, - "rentry_pprice_dist_wallet_exposure_weighting": 4.445847754812645, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000LUNCUSDT.json b/configs/live/multisymbol/no_AU/1000LUNCUSDT.json deleted file mode 100644 index a29a474d9..000000000 --- a/configs/live/multisymbol/no_AU/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000PEPEUSDT.json b/configs/live/multisymbol/no_AU/1000PEPEUSDT.json deleted file mode 100644 index b49c110f5..000000000 --- a/configs/live/multisymbol/no_AU/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4059985463458717, - "ema_span_0": 548.3792196674449, - "ema_span_1": 548.3879932601744, - "enabled": true, - "initial_eprice_ema_dist": -0.008698964900674353, - "initial_qty_pct": 0.006795414926456369, - "markup_range": 0.0010845161472864424, - "min_markup": 0.0026131557642318543, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014124242142790474, - "rentry_pprice_dist_wallet_exposure_weighting": 6.135744239631218, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000RATSUSDT.json b/configs/live/multisymbol/no_AU/1000RATSUSDT.json deleted file mode 100644 index f8a581ffa..000000000 --- a/configs/live/multisymbol/no_AU/1000RATSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.187342573680735, - "ema_span_0": 420.8298168240888, - "ema_span_1": 1293.6703257472886, - "enabled": true, - "initial_eprice_ema_dist": -0.009730278881618249, - "initial_qty_pct": 0.006867192626880222, - "markup_range": 0.006912808454446304, - "min_markup": 0.009779929906242303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.042901841601788164, - "rentry_pprice_dist_wallet_exposure_weighting": 0.35839352560910487, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000SATSUSDT.json b/configs/live/multisymbol/no_AU/1000SATSUSDT.json deleted file mode 100644 index daad2d542..000000000 --- a/configs/live/multisymbol/no_AU/1000SATSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.337218641941045, - "ema_span_0": 1394.0595360103011, - "ema_span_1": 1209.904791055211, - "enabled": true, - "initial_eprice_ema_dist": -0.0020670190574686915, - "initial_qty_pct": 0.01463807095251366, - "markup_range": 0.007272680089655267, - "min_markup": 0.006039483470154668, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028533484009548606, - "rentry_pprice_dist_wallet_exposure_weighting": 6.256314642408412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000SHIBUSDT.json b/configs/live/multisymbol/no_AU/1000SHIBUSDT.json deleted file mode 100644 index 50bb09dfc..000000000 --- a/configs/live/multisymbol/no_AU/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1000XECUSDT.json b/configs/live/multisymbol/no_AU/1000XECUSDT.json deleted file mode 100644 index 632cdb88a..000000000 --- a/configs/live/multisymbol/no_AU/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/1INCHUSDT.json b/configs/live/multisymbol/no_AU/1INCHUSDT.json deleted file mode 100644 index 10dd142ce..000000000 --- a/configs/live/multisymbol/no_AU/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5590482888791055, - "ema_span_0": 538.1218079970611, - "ema_span_1": 1094.3248929582285, - "enabled": true, - "initial_eprice_ema_dist": 0.00013780156130994856, - "initial_qty_pct": 0.009301461556690956, - "markup_range": 0.00012061326048546869, - "min_markup": 0.0028697069440414657, - "n_close_orders": 12, - "rentry_pprice_dist": 0.021668125415918248, - "rentry_pprice_dist_wallet_exposure_weighting": 2.261304953987642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AAVEUSDT.json b/configs/live/multisymbol/no_AU/AAVEUSDT.json deleted file mode 100644 index 242f7789c..000000000 --- a/configs/live/multisymbol/no_AU/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.247885911615898, - "ema_span_0": 701.0732650974925, - "ema_span_1": 807.528616151842, - "enabled": true, - "initial_eprice_ema_dist": -0.00593504535989968, - "initial_qty_pct": 0.008871061261948114, - "markup_range": 0.003804641519225573, - "min_markup": 0.005656748541260267, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0305329129680727, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6173753962108104, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ACEUSDT.json b/configs/live/multisymbol/no_AU/ACEUSDT.json deleted file mode 100644 index dc927ac64..000000000 --- a/configs/live/multisymbol/no_AU/ACEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ACHUSDT.json b/configs/live/multisymbol/no_AU/ACHUSDT.json deleted file mode 100644 index 8ddacf78e..000000000 --- a/configs/live/multisymbol/no_AU/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.9506399112412, - "ema_span_1": 481.34258197826495, - "enabled": true, - "initial_eprice_ema_dist": -0.007907509831981581, - "initial_qty_pct": 0.006931635358392313, - "markup_range": 0.004329404978522449, - "min_markup": 0.004579724919735104, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051569990412496, - "rentry_pprice_dist_wallet_exposure_weighting": 3.78351730916741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ADAUSDT.json b/configs/live/multisymbol/no_AU/ADAUSDT.json deleted file mode 100644 index 08c1e60c1..000000000 --- a/configs/live/multisymbol/no_AU/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6850516916385354, - "ema_span_0": 426.12185415017063, - "ema_span_1": 496.26050416975323, - "enabled": true, - "initial_eprice_ema_dist": -0.001927759450286079, - "initial_qty_pct": 0.00522237375491126, - "markup_range": 0.0002740301299901382, - "min_markup": 0.0018052120025589962, - "n_close_orders": 9, - "rentry_pprice_dist": 0.010638872767800392, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8083721509060042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AGIXUSDT.json b/configs/live/multisymbol/no_AU/AGIXUSDT.json deleted file mode 100644 index e0c3c9aa3..000000000 --- a/configs/live/multisymbol/no_AU/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AGLDUSDT.json b/configs/live/multisymbol/no_AU/AGLDUSDT.json deleted file mode 100644 index c1abdaec8..000000000 --- a/configs/live/multisymbol/no_AU/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.126630552136007, - "ema_span_0": 701.9618877279123, - "ema_span_1": 838.5478144716134, - "enabled": true, - "initial_eprice_ema_dist": 0.002265006252210066, - "initial_qty_pct": 0.006860001911838622, - "markup_range": 0.006033133341522965, - "min_markup": 0.009834404026120324, - "n_close_orders": 6, - "rentry_pprice_dist": 0.028661586790478182, - "rentry_pprice_dist_wallet_exposure_weighting": 5.255291272853817, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.942676089272254, - "ema_span_0": 1221.1673012685583, - "ema_span_1": 1106.6075785388434, - "enabled": true, - "initial_eprice_ema_dist": -0.0017605548748617988, - "initial_qty_pct": 0.005496329078201383, - "markup_range": 0.007959869824874228, - "min_markup": 0.0020854311731210193, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03839972302764517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7327213772260364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AIUSDT.json b/configs/live/multisymbol/no_AU/AIUSDT.json deleted file mode 100644 index 2bbae76db..000000000 --- a/configs/live/multisymbol/no_AU/AIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3600498718473935, - "ema_span_0": 1235.9051580847981, - "ema_span_1": 856.7371728695309, - "enabled": true, - "initial_eprice_ema_dist": -0.0017094417754341914, - "initial_qty_pct": 0.010625905406642312, - "markup_range": 0.0018945453426481402, - "min_markup": 0.0024216331971961104, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0271413542352054, - "rentry_pprice_dist_wallet_exposure_weighting": 3.817802557822029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9369121462422005, - "ema_span_0": 1440, - "ema_span_1": 1376.5256726361233, - "enabled": true, - "initial_eprice_ema_dist": -0.002784127828183163, - "initial_qty_pct": 0.013916927508297325, - "markup_range": 0.0015546850195966365, - "min_markup": 0.0028228232914522455, - "n_close_orders": 8, - "rentry_pprice_dist": 0.025062668478451598, - "rentry_pprice_dist_wallet_exposure_weighting": 2.628424800050207, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ALGOUSDT.json b/configs/live/multisymbol/no_AU/ALGOUSDT.json deleted file mode 100644 index e31e016e0..000000000 --- a/configs/live/multisymbol/no_AU/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.148152593539759, - "ema_span_0": 718.846226023948, - "ema_span_1": 1002.9663942794539, - "enabled": true, - "initial_eprice_ema_dist": 0.0019186938752824973, - "initial_qty_pct": 0.010184220128854395, - "markup_range": 0.009131535314237214, - "min_markup": 0.009053243742168114, - "n_close_orders": 10, - "rentry_pprice_dist": 0.033327900962443154, - "rentry_pprice_dist_wallet_exposure_weighting": 4.566914240307952, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ALICEUSDT.json b/configs/live/multisymbol/no_AU/ALICEUSDT.json deleted file mode 100644 index ff2253beb..000000000 --- a/configs/live/multisymbol/no_AU/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1361865196523429, - "ema_span_0": 1333.4958726729335, - "ema_span_1": 1126.1129149010173, - "enabled": true, - "initial_eprice_ema_dist": -0.004619094663308742, - "initial_qty_pct": 0.007926153354800156, - "markup_range": 0.002741544490172375, - "min_markup": 0.001092880784452153, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03736049608158455, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7183316113401004, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.30684661494471066, - "ema_span_0": 1439.8138192172642, - "ema_span_1": 1252.2760313364993, - "enabled": true, - "initial_eprice_ema_dist": 0.0001595903022150351, - "initial_qty_pct": 0.01945689895883202, - "markup_range": 0.008140567869363829, - "min_markup": 0.009998750068773035, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03819149732096614, - "rentry_pprice_dist_wallet_exposure_weighting": 4.717900638799864, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ALPHAUSDT.json b/configs/live/multisymbol/no_AU/ALPHAUSDT.json deleted file mode 100644 index 2accff4c5..000000000 --- a/configs/live/multisymbol/no_AU/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6019934952984558, - "ema_span_0": 678.9097998235497, - "ema_span_1": 463.1156853848917, - "enabled": true, - "initial_eprice_ema_dist": 0.0005177663471187619, - "initial_qty_pct": 0.009311615707788988, - "markup_range": 0.004335328811402389, - "min_markup": 0.007890441163626, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02926411082808768, - "rentry_pprice_dist_wallet_exposure_weighting": 4.023729122646496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ALTUSDT.json b/configs/live/multisymbol/no_AU/ALTUSDT.json deleted file mode 100644 index 881463023..000000000 --- a/configs/live/multisymbol/no_AU/ALTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AMBUSDT.json b/configs/live/multisymbol/no_AU/AMBUSDT.json deleted file mode 100644 index 67b4d8124..000000000 --- a/configs/live/multisymbol/no_AU/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2641897540963043, - "ema_span_0": 864.6786000387508, - "ema_span_1": 902.0154972656932, - "enabled": true, - "initial_eprice_ema_dist": 0.001992848939767834, - "initial_qty_pct": 0.02, - "markup_range": 0.0016797484433887344, - "min_markup": 0.006614224918287394, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03727336844316724, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2439113539076088, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ANKRUSDT.json b/configs/live/multisymbol/no_AU/ANKRUSDT.json deleted file mode 100644 index c90800156..000000000 --- a/configs/live/multisymbol/no_AU/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6921253886815695, - "ema_span_0": 428.88845472586047, - "ema_span_1": 1033.2911537732355, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998259863056997, - "initial_qty_pct": 0.007231577146814722, - "markup_range": 0.002385642534751642, - "min_markup": 0.005016345350053768, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02511992574003009, - "rentry_pprice_dist_wallet_exposure_weighting": 4.425112144475232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21503899551100683, - "ema_span_0": 934.8841562338228, - "ema_span_1": 865.9335468099871, - "enabled": true, - "initial_eprice_ema_dist": 0.002893791627772019, - "initial_qty_pct": 0.01999968462993707, - "markup_range": 0.001319917425168107, - "min_markup": 0.008171179515138025, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03745476313808271, - "rentry_pprice_dist_wallet_exposure_weighting": 6.708130319957774, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ANTUSDT.json b/configs/live/multisymbol/no_AU/ANTUSDT.json deleted file mode 100644 index e18a6e348..000000000 --- a/configs/live/multisymbol/no_AU/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/APEUSDT.json b/configs/live/multisymbol/no_AU/APEUSDT.json deleted file mode 100644 index cc7cb4e5f..000000000 --- a/configs/live/multisymbol/no_AU/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.136980516315344, - "ema_span_0": 990.5411928116741, - "ema_span_1": 1107.7590226770542, - "enabled": true, - "initial_eprice_ema_dist": -0.00673973466369681, - "initial_qty_pct": 0.006748739638866885, - "markup_range": 0.001916299903031851, - "min_markup": 0.005651226545313381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019491943571174564, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2047101396037654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5749969457700788, - "ema_span_0": 569.413304156137, - "ema_span_1": 490.5430557314239, - "enabled": true, - "initial_eprice_ema_dist": -0.0086863081186085, - "initial_qty_pct": 0.0087043398163937, - "markup_range": 0.005588308732260884, - "min_markup": 0.005238778285633801, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243385509821733, - "rentry_pprice_dist_wallet_exposure_weighting": 6.451868010973641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/API3USDT.json b/configs/live/multisymbol/no_AU/API3USDT.json deleted file mode 100644 index 44027f003..000000000 --- a/configs/live/multisymbol/no_AU/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7594354352831985, - "ema_span_0": 542.7741159369552, - "ema_span_1": 602.4812499261363, - "enabled": true, - "initial_eprice_ema_dist": -0.007776011232012096, - "initial_qty_pct": 0.005702446882948222, - "markup_range": 0.005049156016364269, - "min_markup": 0.007182498839164601, - "n_close_orders": 6, - "rentry_pprice_dist": 0.034107437490716805, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2714999547385133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/APTUSDT.json b/configs/live/multisymbol/no_AU/APTUSDT.json deleted file mode 100644 index 495062506..000000000 --- a/configs/live/multisymbol/no_AU/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.69477399614593, - "ema_span_0": 1433.4632473474794, - "ema_span_1": 620.7265149034098, - "enabled": true, - "initial_eprice_ema_dist": 0.002999785245586115, - "initial_qty_pct": 0.005481849096515688, - "markup_range": 0.0010998158449765268, - "min_markup": 0.0036006586206092186, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027066507512961233, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7090014923887336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ARBUSDT.json b/configs/live/multisymbol/no_AU/ARBUSDT.json deleted file mode 100644 index 3209943af..000000000 --- a/configs/live/multisymbol/no_AU/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6377931024910679, - "ema_span_0": 790.3551732113342, - "ema_span_1": 928.0416080681598, - "enabled": true, - "initial_eprice_ema_dist": -0.004133945688039767, - "initial_qty_pct": 0.008048027690748702, - "markup_range": 0.009974866091135832, - "min_markup": 0.005678798071303473, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02380397376271462, - "rentry_pprice_dist_wallet_exposure_weighting": 2.805796385987601, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ARKMUSDT.json b/configs/live/multisymbol/no_AU/ARKMUSDT.json deleted file mode 100644 index 3d19a12a0..000000000 --- a/configs/live/multisymbol/no_AU/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.573826907856526, - "ema_span_0": 625.2193451640411, - "ema_span_1": 647.7695806479344, - "enabled": true, - "initial_eprice_ema_dist": -0.0011800966163447765, - "initial_qty_pct": 0.007835057870810678, - "markup_range": 0.0014974920665734525, - "min_markup": 0.004294807546401474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026250617338084755, - "rentry_pprice_dist_wallet_exposure_weighting": 3.926149690487413, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2184278145332084, - "ema_span_0": 1147.806786611839, - "ema_span_1": 604.3229873292835, - "enabled": true, - "initial_eprice_ema_dist": -0.002885397739259701, - "initial_qty_pct": 0.008567943701264591, - "markup_range": 0.009818284973734609, - "min_markup": 0.005396789570177937, - "n_close_orders": 16, - "rentry_pprice_dist": 0.029991143408882672, - "rentry_pprice_dist_wallet_exposure_weighting": 4.277115810301703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ARKUSDT.json b/configs/live/multisymbol/no_AU/ARKUSDT.json deleted file mode 100644 index efd639afe..000000000 --- a/configs/live/multisymbol/no_AU/ARKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2791730013407125, - "ema_span_0": 1440, - "ema_span_1": 1151.845426045236, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012244128067282329, - "markup_range": 0.0, - "min_markup": 0.005328664460470563, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05999840353941138, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2599355820864121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.052180361108739, - "ema_span_0": 719.7656041119219, - "ema_span_1": 644.8425670640547, - "enabled": true, - "initial_eprice_ema_dist": -0.002104711309228333, - "initial_qty_pct": 0.011612793523550054, - "markup_range": 0.0043723822905415086, - "min_markup": 0.0029351019036752903, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03358304551048789, - "rentry_pprice_dist_wallet_exposure_weighting": 6.413553056597358, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ARPAUSDT.json b/configs/live/multisymbol/no_AU/ARPAUSDT.json deleted file mode 100644 index b7e66274f..000000000 --- a/configs/live/multisymbol/no_AU/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679269390842515, - "ema_span_0": 1130.1225477813007, - "ema_span_1": 1062.4032711158673, - "enabled": true, - "initial_eprice_ema_dist": 0.0020869072124994653, - "initial_qty_pct": 0.012804570969302046, - "markup_range": 0.0024832454376030226, - "min_markup": 0.007769140200503243, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03639950610827401, - "rentry_pprice_dist_wallet_exposure_weighting": 1.128684984761031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ARUSDT.json b/configs/live/multisymbol/no_AU/ARUSDT.json deleted file mode 100644 index ca6b778e6..000000000 --- a/configs/live/multisymbol/no_AU/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ASTRUSDT.json b/configs/live/multisymbol/no_AU/ASTRUSDT.json deleted file mode 100644 index 536f0fffb..000000000 --- a/configs/live/multisymbol/no_AU/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2809358699466866, - "ema_span_0": 417.8821629780097, - "ema_span_1": 1037.9156124300334, - "enabled": true, - "initial_eprice_ema_dist": -0.004593860746237919, - "initial_qty_pct": 0.009680791815243695, - "markup_range": 0.005884570011563704, - "min_markup": 0.005160174776907213, - "n_close_orders": 8, - "rentry_pprice_dist": 0.035215507891618904, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0046929055913923975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ATAUSDT.json b/configs/live/multisymbol/no_AU/ATAUSDT.json deleted file mode 100644 index 3255aabaf..000000000 --- a/configs/live/multisymbol/no_AU/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273446079623302, - "ema_span_0": 852.1646730368124, - "ema_span_1": 1318.3229920222034, - "enabled": true, - "initial_eprice_ema_dist": -0.008569250022031434, - "initial_qty_pct": 0.005466118351141463, - "markup_range": 0.009238405148841725, - "min_markup": 0.002815704576251768, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02320916746730816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5092168090027847, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ATOMUSDT.json b/configs/live/multisymbol/no_AU/ATOMUSDT.json deleted file mode 100644 index 6e19c39f8..000000000 --- a/configs/live/multisymbol/no_AU/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.573826907856526, - "ema_span_0": 625.2193451640411, - "ema_span_1": 647.7695806479344, - "enabled": true, - "initial_eprice_ema_dist": -0.0011800966163447765, - "initial_qty_pct": 0.007835057870810678, - "markup_range": 0.0014974920665734525, - "min_markup": 0.004294807546401474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026250617338084755, - "rentry_pprice_dist_wallet_exposure_weighting": 3.926149690487413, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AUCTIONUSDT.json b/configs/live/multisymbol/no_AU/AUCTIONUSDT.json deleted file mode 100644 index 7dffd3dd4..000000000 --- a/configs/live/multisymbol/no_AU/AUCTIONUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.25120865294591, - "ema_span_0": 924.281745023731, - "ema_span_1": 1126.9205768818265, - "enabled": true, - "initial_eprice_ema_dist": -0.006626417961538352, - "initial_qty_pct": 0.005390451321060489, - "markup_range": 0.004936514169361442, - "min_markup": 0.0023326868861701855, - "n_close_orders": 10, - "rentry_pprice_dist": 0.047854240619392606, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1956099784121452, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.669922148402574, - "ema_span_0": 1367.8286381534385, - "ema_span_1": 1145.0307805470068, - "enabled": true, - "initial_eprice_ema_dist": -0.008861982336574585, - "initial_qty_pct": 0.01131751487807326, - "markup_range": 0.0028831732919884336, - "min_markup": 0.003097491221990866, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03530027903416328, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9791744768041245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AUDIOUSDT.json b/configs/live/multisymbol/no_AU/AUDIOUSDT.json deleted file mode 100644 index 69f7c0d33..000000000 --- a/configs/live/multisymbol/no_AU/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9996724841694338, - "ema_span_0": 1084.514304704522, - "ema_span_1": 571.35296522545, - "enabled": true, - "initial_eprice_ema_dist": 0.0010319922302847217, - "initial_qty_pct": 0.005980956343839258, - "markup_range": 0.0007776721396590289, - "min_markup": 0.0046353666441713275, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033623239800445376, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9396747078877694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45872714536469883, - "ema_span_0": 1306.5081012283274, - "ema_span_1": 1202.2511867831736, - "enabled": true, - "initial_eprice_ema_dist": 0.0005384538726071715, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.0036582574552174113, - "min_markup": 0.00893359558538709, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04911966005847171, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650049340787937, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AVAXUSDT.json b/configs/live/multisymbol/no_AU/AVAXUSDT.json deleted file mode 100644 index c4589f499..000000000 --- a/configs/live/multisymbol/no_AU/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0195748688318564, - "ema_span_0": 1032.9876182754965, - "ema_span_1": 1384.4199627826313, - "enabled": true, - "initial_eprice_ema_dist": 0.002964050067405958, - "initial_qty_pct": 0.012276323438665585, - "markup_range": 0.008365504361812269, - "min_markup": 0.006451876146961201, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04876530739561381, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3121077123682445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AXLUSDT.json b/configs/live/multisymbol/no_AU/AXLUSDT.json deleted file mode 100644 index 649d8c43a..000000000 --- a/configs/live/multisymbol/no_AU/AXLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032841025699854, - "ema_span_0": 603.3684823287402, - "ema_span_1": 593.2914462355499, - "enabled": true, - "initial_eprice_ema_dist": -0.006686699042370069, - "initial_qty_pct": 0.019343563613571375, - "markup_range": 0.0035139190888152203, - "min_markup": 0.0041974976207321225, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024538943373011338, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6223178652929873, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/AXSUSDT.json b/configs/live/multisymbol/no_AU/AXSUSDT.json deleted file mode 100644 index babd600ac..000000000 --- a/configs/live/multisymbol/no_AU/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7624643073829781, - "ema_span_0": 748.7029047408132, - "ema_span_1": 839.652641585332, - "enabled": true, - "initial_eprice_ema_dist": -0.00264097191534256, - "initial_qty_pct": 0.01346725640152762, - "markup_range": 0.004990302340728536, - "min_markup": 0.004570608103091317, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03644069705015101, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9382084317795156, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BADGERUSDT.json b/configs/live/multisymbol/no_AU/BADGERUSDT.json deleted file mode 100644 index 279969e5e..000000000 --- a/configs/live/multisymbol/no_AU/BADGERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.676060959901111, - "ema_span_0": 1142.1265796149928, - "ema_span_1": 1371.4409147256022, - "enabled": true, - "initial_eprice_ema_dist": -0.002653295645807994, - "initial_qty_pct": 0.005312279960658424, - "markup_range": 0.002618427243223781, - "min_markup": 0.0050054003114357384, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04147565692951239, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8328916683991203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BAKEUSDT.json b/configs/live/multisymbol/no_AU/BAKEUSDT.json deleted file mode 100644 index 0a8ccb24f..000000000 --- a/configs/live/multisymbol/no_AU/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9631960327642634, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 736.3622162159897, - "enabled": true, - "initial_eprice_ema_dist": -0.0013538785473450297, - "initial_qty_pct": 0.00826126173825652, - "markup_range": 0.003287452714933792, - "min_markup": 0.0014003224056683763, - "n_close_orders": 13, - "rentry_pprice_dist": 0.042534671926110074, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4324883442698306, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6455784702568482, - "ema_span_0": 851.7332190454933, - "ema_span_1": 1007.1944060908237, - "enabled": true, - "initial_eprice_ema_dist": -0.0014664245607743799, - "initial_qty_pct": 0.010192731275324267, - "markup_range": 0.0014969845109154224, - "min_markup": 0.003641352438453142, - "n_close_orders": 8, - "rentry_pprice_dist": 0.037794796132685105, - "rentry_pprice_dist_wallet_exposure_weighting": 3.892283271540064, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BALUSDT.json b/configs/live/multisymbol/no_AU/BALUSDT.json deleted file mode 100644 index 315c14d2b..000000000 --- a/configs/live/multisymbol/no_AU/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000000596553002, - "ema_span_0": 929.9812114760467, - "ema_span_1": 941.0347791612975, - "enabled": true, - "initial_eprice_ema_dist": -0.003991486046804449, - "initial_qty_pct": 0.0062838948398916605, - "markup_range": 0.0053377597436320345, - "min_markup": 0.004808631305477758, - "n_close_orders": 2, - "rentry_pprice_dist": 0.039485103117888054, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1364660075707736, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BANDUSDT.json b/configs/live/multisymbol/no_AU/BANDUSDT.json deleted file mode 100644 index eac749af5..000000000 --- a/configs/live/multisymbol/no_AU/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2681373639824941, - "ema_span_0": 439.3803841140008, - "ema_span_1": 502.9545019907748, - "enabled": true, - "initial_eprice_ema_dist": -0.002804672523568504, - "initial_qty_pct": 0.01587713021844308, - "markup_range": 0.006126061856373259, - "min_markup": 0.006078023836171747, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04700550234390974, - "rentry_pprice_dist_wallet_exposure_weighting": 0.42354756948830213, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.052180361108739, - "ema_span_0": 719.7656041119219, - "ema_span_1": 644.8425670640547, - "enabled": true, - "initial_eprice_ema_dist": -0.002104711309228333, - "initial_qty_pct": 0.011612793523550054, - "markup_range": 0.0043723822905415086, - "min_markup": 0.0029351019036752903, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03358304551048789, - "rentry_pprice_dist_wallet_exposure_weighting": 6.413553056597358, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BATUSDT.json b/configs/live/multisymbol/no_AU/BATUSDT.json deleted file mode 100644 index 938f225f4..000000000 --- a/configs/live/multisymbol/no_AU/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9996724841694338, - "ema_span_0": 1084.514304704522, - "ema_span_1": 571.35296522545, - "enabled": true, - "initial_eprice_ema_dist": 0.0010319922302847217, - "initial_qty_pct": 0.005980956343839258, - "markup_range": 0.0007776721396590289, - "min_markup": 0.0046353666441713275, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033623239800445376, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9396747078877694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2639480518548225, - "ema_span_0": 903.125069785816, - "ema_span_1": 962.265128144106, - "enabled": true, - "initial_eprice_ema_dist": 0.0029821337732177707, - "initial_qty_pct": 0.006858392409496179, - "markup_range": 0.0030580237794616567, - "min_markup": 0.003273807502943524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.017228082945758956, - "rentry_pprice_dist_wallet_exposure_weighting": 5.528520907488279, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BCHUSDT.json b/configs/live/multisymbol/no_AU/BCHUSDT.json deleted file mode 100644 index 9d3851a81..000000000 --- a/configs/live/multisymbol/no_AU/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3600498718473935, - "ema_span_0": 1235.9051580847981, - "ema_span_1": 856.7371728695309, - "enabled": true, - "initial_eprice_ema_dist": -0.0017094417754341914, - "initial_qty_pct": 0.010625905406642312, - "markup_range": 0.0018945453426481402, - "min_markup": 0.0024216331971961104, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0271413542352054, - "rentry_pprice_dist_wallet_exposure_weighting": 3.817802557822029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6455784702568482, - "ema_span_0": 851.7332190454933, - "ema_span_1": 1007.1944060908237, - "enabled": true, - "initial_eprice_ema_dist": -0.0014664245607743799, - "initial_qty_pct": 0.010192731275324267, - "markup_range": 0.0014969845109154224, - "min_markup": 0.003641352438453142, - "n_close_orders": 8, - "rentry_pprice_dist": 0.037794796132685105, - "rentry_pprice_dist_wallet_exposure_weighting": 3.892283271540064, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BEAMXUSDT.json b/configs/live/multisymbol/no_AU/BEAMXUSDT.json deleted file mode 100644 index 6c73716a8..000000000 --- a/configs/live/multisymbol/no_AU/BEAMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BELUSDT.json b/configs/live/multisymbol/no_AU/BELUSDT.json deleted file mode 100644 index 55c9a67a4..000000000 --- a/configs/live/multisymbol/no_AU/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2284632352730624, - "ema_span_0": 556.2010616615385, - "ema_span_1": 1120.020181745354, - "enabled": true, - "initial_eprice_ema_dist": -0.007346733458364801, - "initial_qty_pct": 0.0051429371976374465, - "markup_range": 0.0001590923335555786, - "min_markup": 0.00403327902351465, - "n_close_orders": 3, - "rentry_pprice_dist": 0.036871671209259105, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1540649334781368, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45872714536469883, - "ema_span_0": 1306.5081012283274, - "ema_span_1": 1202.2511867831736, - "enabled": true, - "initial_eprice_ema_dist": 0.0005384538726071715, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.0036582574552174113, - "min_markup": 0.00893359558538709, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04911966005847171, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650049340787937, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BICOUSDT.json b/configs/live/multisymbol/no_AU/BICOUSDT.json deleted file mode 100644 index 65d32a86b..000000000 --- a/configs/live/multisymbol/no_AU/BICOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8420529379722977, - "ema_span_0": 1011.1282987669742, - "ema_span_1": 883.9714244988174, - "enabled": true, - "initial_eprice_ema_dist": -0.005679962528550948, - "initial_qty_pct": 0.011980649261214999, - "markup_range": 0.0021734034518008523, - "min_markup": 0.0020451289829358905, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01841617082009683, - "rentry_pprice_dist_wallet_exposure_weighting": 2.280988068740216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 527.2218241095319, - "ema_span_1": 1374.6905320396602, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.001074259380204911, - "min_markup": 0.005847911995999129, - "n_close_orders": 14, - "rentry_pprice_dist": 0.011414862812205726, - "rentry_pprice_dist_wallet_exposure_weighting": 4.179182275898473, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BIGTIMEUSDT.json b/configs/live/multisymbol/no_AU/BIGTIMEUSDT.json deleted file mode 100644 index aad31f0e0..000000000 --- a/configs/live/multisymbol/no_AU/BIGTIMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6921253886815695, - "ema_span_0": 428.88845472586047, - "ema_span_1": 1033.2911537732355, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998259863056997, - "initial_qty_pct": 0.007231577146814722, - "markup_range": 0.002385642534751642, - "min_markup": 0.005016345350053768, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02511992574003009, - "rentry_pprice_dist_wallet_exposure_weighting": 4.425112144475232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.121555953228244, - "ema_span_0": 1439.457992466098, - "ema_span_1": 1439.6523229556547, - "enabled": true, - "initial_eprice_ema_dist": -0.0003286366121919378, - "initial_qty_pct": 0.01926522821319415, - "markup_range": 0.0020372345703510114, - "min_markup": 0.006544138409826038, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04721831982661486, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9376346759541607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BLUEBIRDUSDT.json b/configs/live/multisymbol/no_AU/BLUEBIRDUSDT.json deleted file mode 100644 index dc8918b88..000000000 --- a/configs/live/multisymbol/no_AU/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0182332476351215, - "ema_span_0": 868.221520854621, - "ema_span_1": 1271.8697151759557, - "enabled": true, - "initial_eprice_ema_dist": -0.0034189626930344265, - "initial_qty_pct": 0.01060262538642813, - "markup_range": 0.0009433013701631998, - "min_markup": 0.0013267020611627317, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018400228150475796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0662113421117216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2639480518548225, - "ema_span_0": 903.125069785816, - "ema_span_1": 962.265128144106, - "enabled": true, - "initial_eprice_ema_dist": 0.0029821337732177707, - "initial_qty_pct": 0.006858392409496179, - "markup_range": 0.0030580237794616567, - "min_markup": 0.003273807502943524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.017228082945758956, - "rentry_pprice_dist_wallet_exposure_weighting": 5.528520907488279, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BLURUSDT.json b/configs/live/multisymbol/no_AU/BLURUSDT.json deleted file mode 100644 index 182120555..000000000 --- a/configs/live/multisymbol/no_AU/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2215641547177434, - "ema_span_0": 1087.9072038258594, - "ema_span_1": 1140.438225615017, - "enabled": true, - "initial_eprice_ema_dist": -0.0014029101835263183, - "initial_qty_pct": 0.005924463719350489, - "markup_range": 0.008540767292953524, - "min_markup": 0.003337288791547102, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02896761893160794, - "rentry_pprice_dist_wallet_exposure_weighting": 6.280742441164259, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8211421939725285, - "ema_span_0": 1303.1868593440668, - "ema_span_1": 1300.560221224229, - "enabled": true, - "initial_eprice_ema_dist": -0.003025944363882385, - "initial_qty_pct": 0.01052188161383535, - "markup_range": 0.00022019827043791502, - "min_markup": 0.005794018367592737, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02444537894625305, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2603764927526173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BLZUSDT.json b/configs/live/multisymbol/no_AU/BLZUSDT.json deleted file mode 100644 index 2d8dd4a62..000000000 --- a/configs/live/multisymbol/no_AU/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.08134519177421, - "ema_span_0": 1020.5761618620035, - "ema_span_1": 1058.5720342008337, - "enabled": true, - "initial_eprice_ema_dist": -0.006620400627402651, - "initial_qty_pct": 0.013289036143707592, - "markup_range": 0.0018016967116465093, - "min_markup": 0.002422351359748749, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03771110246081984, - "rentry_pprice_dist_wallet_exposure_weighting": 6.3800846058266005, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BNBUSDT.json b/configs/live/multisymbol/no_AU/BNBUSDT.json deleted file mode 100644 index 470642aec..000000000 --- a/configs/live/multisymbol/no_AU/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BNTUSDT.json b/configs/live/multisymbol/no_AU/BNTUSDT.json deleted file mode 100644 index 6711664b2..000000000 --- a/configs/live/multisymbol/no_AU/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9074088928394692, - "ema_span_0": 1225.1593351104916, - "ema_span_1": 1284.4445043294322, - "enabled": true, - "initial_eprice_ema_dist": -0.009943258655235904, - "initial_qty_pct": 0.007029446982434334, - "markup_range": 2.946347169311016e-05, - "min_markup": 0.002975626910710349, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025779942991905537, - "rentry_pprice_dist_wallet_exposure_weighting": 3.268387857434339, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BNXUSDT.json b/configs/live/multisymbol/no_AU/BNXUSDT.json deleted file mode 100644 index 3ffd9268d..000000000 --- a/configs/live/multisymbol/no_AU/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.364849119702204, - "ema_span_0": 865.7984570675294, - "ema_span_1": 725.7281024686835, - "enabled": true, - "initial_eprice_ema_dist": 0.0029413539231069727, - "initial_qty_pct": 0.008986222705890308, - "markup_range": 0.00813327997846001, - "min_markup": 0.007010564949875995, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037672124082526355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.1794409586499315, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BONDUSDT.json b/configs/live/multisymbol/no_AU/BONDUSDT.json deleted file mode 100644 index 877824693..000000000 --- a/configs/live/multisymbol/no_AU/BONDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.776827267252834, - "ema_span_0": 582.64089583745, - "ema_span_1": 572.9881294650091, - "enabled": true, - "initial_eprice_ema_dist": 0.0015792436525577163, - "initial_qty_pct": 0.019996086764343935, - "markup_range": 0.0037951647247050774, - "min_markup": 0.002437041463455835, - "n_close_orders": 7, - "rentry_pprice_dist": 0.036964553885101545, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9366436030918455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3162230554628027, - "ema_span_0": 1006.6449792943191, - "ema_span_1": 1317.1001098796871, - "enabled": true, - "initial_eprice_ema_dist": 0.0007867671897053359, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.0016714313566046455, - "min_markup": 0.0028228232914522455, - "n_close_orders": 11, - "rentry_pprice_dist": 0.037794796132685105, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BSVUSDT.json b/configs/live/multisymbol/no_AU/BSVUSDT.json deleted file mode 100644 index 6ba0abaaa..000000000 --- a/configs/live/multisymbol/no_AU/BSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032841025699854, - "ema_span_0": 603.3684823287402, - "ema_span_1": 593.2914462355499, - "enabled": true, - "initial_eprice_ema_dist": -0.006686699042370069, - "initial_qty_pct": 0.019343563613571375, - "markup_range": 0.0035139190888152203, - "min_markup": 0.0041974976207321225, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024538943373011338, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6223178652929873, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BTCDOMUSDT.json b/configs/live/multisymbol/no_AU/BTCDOMUSDT.json deleted file mode 100644 index 1e30cc814..000000000 --- a/configs/live/multisymbol/no_AU/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206588914585735, - "ema_span_0": 1157.1068280298107, - "ema_span_1": 766.4229120044222, - "enabled": true, - "initial_eprice_ema_dist": -0.003372014009289939, - "initial_qty_pct": 0.0055136547261046545, - "markup_range": 0.0016286315760876556, - "min_markup": 0.001692642120768909, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01662249757307718, - "rentry_pprice_dist_wallet_exposure_weighting": 2.986489225762747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5076176852487743, - "ema_span_0": 870.6903870465236, - "ema_span_1": 640.0505371453597, - "enabled": true, - "initial_eprice_ema_dist": -0.004625045279078337, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.0013545152613237054, - "min_markup": 0.005295220636714294, - "n_close_orders": 13, - "rentry_pprice_dist": 0.020319585917755578, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9495540973434329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/BTCUSDT.json b/configs/live/multisymbol/no_AU/BTCUSDT.json deleted file mode 100644 index 11564a0a4..000000000 --- a/configs/live/multisymbol/no_AU/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8076787436856205, - "ema_span_0": 1182.203486204544, - "ema_span_1": 1203.5570829086312, - "enabled": true, - "initial_eprice_ema_dist": -0.00016700942377517153, - "initial_qty_pct": 0.01352991960398559, - "markup_range": 0.0016984333503885197, - "min_markup": 0.003884676353394629, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02178089968016631, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7682195172151058, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.824010889354615, - "ema_span_0": 668.4791978282874, - "ema_span_1": 1100.6743726560933, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.00017041521132076496, - "min_markup": 0.0015067320644080204, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025352022876576147, - "rentry_pprice_dist_wallet_exposure_weighting": 4.485829797874352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/C98USDT.json b/configs/live/multisymbol/no_AU/C98USDT.json deleted file mode 100644 index 1173a4a2b..000000000 --- a/configs/live/multisymbol/no_AU/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.096635291091908, - "ema_span_0": 1330.039406339461, - "ema_span_1": 1238.3522796278537, - "enabled": true, - "initial_eprice_ema_dist": -0.004816681183131951, - "initial_qty_pct": 0.008181177347843736, - "markup_range": 0.008722281771169226, - "min_markup": 0.0028555643229245162, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03791001394129892, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2927756107330035, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CAKEUSDT.json b/configs/live/multisymbol/no_AU/CAKEUSDT.json deleted file mode 100644 index 80416ec75..000000000 --- a/configs/live/multisymbol/no_AU/CAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CELOUSDT.json b/configs/live/multisymbol/no_AU/CELOUSDT.json deleted file mode 100644 index 36423fdf2..000000000 --- a/configs/live/multisymbol/no_AU/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8437584945040348, - "ema_span_0": 1273.6349655577148, - "ema_span_1": 1181.8898550188335, - "enabled": true, - "initial_eprice_ema_dist": -0.009747003765253446, - "initial_qty_pct": 0.006962801615292772, - "markup_range": 0.01, - "min_markup": 0.00602261672775095, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030999759412613823, - "rentry_pprice_dist_wallet_exposure_weighting": 2.812715957773782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CELRUSDT.json b/configs/live/multisymbol/no_AU/CELRUSDT.json deleted file mode 100644 index 3ad9ad68a..000000000 --- a/configs/live/multisymbol/no_AU/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1136200865682403, - "ema_span_0": 1089.468611102197, - "ema_span_1": 1041.4402969672844, - "enabled": true, - "initial_eprice_ema_dist": 0.002775475012225147, - "initial_qty_pct": 0.012213318830830162, - "markup_range": 0.0019738848654710624, - "min_markup": 0.009953905980263996, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0324676367670747, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8102248465256605, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9273446079623302, - "ema_span_0": 852.1646730368124, - "ema_span_1": 1318.3229920222034, - "enabled": true, - "initial_eprice_ema_dist": -0.008569250022031434, - "initial_qty_pct": 0.005466118351141463, - "markup_range": 0.009238405148841725, - "min_markup": 0.002815704576251768, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02320916746730816, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5092168090027847, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CFXUSDT.json b/configs/live/multisymbol/no_AU/CFXUSDT.json deleted file mode 100644 index 77922fbe5..000000000 --- a/configs/live/multisymbol/no_AU/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.824010889354615, - "ema_span_0": 668.4791978282874, - "ema_span_1": 1100.6743726560933, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011802408826969217, - "markup_range": 0.00017041521132076496, - "min_markup": 0.0015067320644080204, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025352022876576147, - "rentry_pprice_dist_wallet_exposure_weighting": 4.485829797874352, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CHRUSDT.json b/configs/live/multisymbol/no_AU/CHRUSDT.json deleted file mode 100644 index 6c48d499f..000000000 --- a/configs/live/multisymbol/no_AU/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38841074426302086, - "ema_span_0": 1028.8629431861682, - "ema_span_1": 961.845224250267, - "enabled": true, - "initial_eprice_ema_dist": -0.0048299079482371264, - "initial_qty_pct": 0.009257068100648793, - "markup_range": 0.008961446809167354, - "min_markup": 0.007223792253371161, - "n_close_orders": 8, - "rentry_pprice_dist": 0.036182971849651774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.716552219793397, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8437584945040348, - "ema_span_0": 1273.6349655577148, - "ema_span_1": 1181.8898550188335, - "enabled": true, - "initial_eprice_ema_dist": -0.009747003765253446, - "initial_qty_pct": 0.006962801615292772, - "markup_range": 0.01, - "min_markup": 0.00602261672775095, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030999759412613823, - "rentry_pprice_dist_wallet_exposure_weighting": 2.812715957773782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CHZUSDT.json b/configs/live/multisymbol/no_AU/CHZUSDT.json deleted file mode 100644 index ddfe41567..000000000 --- a/configs/live/multisymbol/no_AU/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38378579127656987, - "ema_span_0": 475.7505407090246, - "ema_span_1": 659.0737608504875, - "enabled": true, - "initial_eprice_ema_dist": 0.002746445084509182, - "initial_qty_pct": 0.019927629425264704, - "markup_range": 0.006178940525086855, - "min_markup": 0.005286517167723811, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03924673349997439, - "rentry_pprice_dist_wallet_exposure_weighting": 6.806478169513814, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CKBUSDT.json b/configs/live/multisymbol/no_AU/CKBUSDT.json deleted file mode 100644 index 4fc944427..000000000 --- a/configs/live/multisymbol/no_AU/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.136980516315344, - "ema_span_0": 990.5411928116741, - "ema_span_1": 1107.7590226770542, - "enabled": true, - "initial_eprice_ema_dist": -0.00673973466369681, - "initial_qty_pct": 0.006748739638866885, - "markup_range": 0.001916299903031851, - "min_markup": 0.005651226545313381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019491943571174564, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2047101396037654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/COMBOUSDT.json b/configs/live/multisymbol/no_AU/COMBOUSDT.json deleted file mode 100644 index 8af841c16..000000000 --- a/configs/live/multisymbol/no_AU/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/COMPUSDT.json b/configs/live/multisymbol/no_AU/COMPUSDT.json deleted file mode 100644 index ef23d01b0..000000000 --- a/configs/live/multisymbol/no_AU/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5159536084738751, - "ema_span_0": 1248.6062558084398, - "ema_span_1": 1044.0148033861185, - "enabled": true, - "initial_eprice_ema_dist": 0.000720250692351039, - "initial_qty_pct": 0.01670396209967201, - "markup_range": 0.004738122012700479, - "min_markup": 0.006488744252296942, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03196413882850113, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5777126246016717, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6713752782418424, - "ema_span_0": 1355.2100163765492, - "ema_span_1": 1199.092388636365, - "enabled": true, - "initial_eprice_ema_dist": -0.0016007357030213105, - "initial_qty_pct": 0.019641513229499256, - "markup_range": 0.007321683830100227, - "min_markup": 0.00571785456177138, - "n_close_orders": 2, - "rentry_pprice_dist": 0.047627271229400504, - "rentry_pprice_dist_wallet_exposure_weighting": 5.402091909658555, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/COTIUSDT.json b/configs/live/multisymbol/no_AU/COTIUSDT.json deleted file mode 100644 index d27b26945..000000000 --- a/configs/live/multisymbol/no_AU/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9157554456727748, - "ema_span_0": 659.6887162646505, - "ema_span_1": 1096.2599340520574, - "enabled": true, - "initial_eprice_ema_dist": -0.0011908967850339045, - "initial_qty_pct": 0.009812704431320407, - "markup_range": 0.006530350806020587, - "min_markup": 0.0073384545812298484, - "n_close_orders": 8, - "rentry_pprice_dist": 0.038150882950626366, - "rentry_pprice_dist_wallet_exposure_weighting": 4.720113063782538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CRVUSDT.json b/configs/live/multisymbol/no_AU/CRVUSDT.json deleted file mode 100644 index 3ff4258bf..000000000 --- a/configs/live/multisymbol/no_AU/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679269390842515, - "ema_span_0": 1130.1225477813007, - "ema_span_1": 1062.4032711158673, - "enabled": true, - "initial_eprice_ema_dist": 0.0020869072124994653, - "initial_qty_pct": 0.012804570969302046, - "markup_range": 0.0024832454376030226, - "min_markup": 0.007769140200503243, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03639950610827401, - "rentry_pprice_dist_wallet_exposure_weighting": 1.128684984761031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CTKUSDT.json b/configs/live/multisymbol/no_AU/CTKUSDT.json deleted file mode 100644 index be5c8fde6..000000000 --- a/configs/live/multisymbol/no_AU/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1000253088461639, - "ema_span_0": 1097.8744732697232, - "ema_span_1": 406.91457583186894, - "enabled": true, - "initial_eprice_ema_dist": -0.0027409371987949004, - "initial_qty_pct": 0.018805446219805615, - "markup_range": 0.002479346622921817, - "min_markup": 0.006656628235282698, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02831082617853845, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7368907040172634, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9318224769096846, - "ema_span_0": 1127.1394896912764, - "ema_span_1": 771.0503661829033, - "enabled": true, - "initial_eprice_ema_dist": -0.0064136943095479525, - "initial_qty_pct": 0.01697083145435416, - "markup_range": 0.0005781134225258528, - "min_markup": 0.0030729391401989326, - "n_close_orders": 7, - "rentry_pprice_dist": 0.026897960172828837, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4258726562539525, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CTSIUSDT.json b/configs/live/multisymbol/no_AU/CTSIUSDT.json deleted file mode 100644 index f596d0d94..000000000 --- a/configs/live/multisymbol/no_AU/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1758804642072591, - "ema_span_0": 510.35258952046496, - "ema_span_1": 582.751362191825, - "enabled": true, - "initial_eprice_ema_dist": 0.0013542055701862069, - "initial_qty_pct": 0.012656949938989059, - "markup_range": 0.0023649770431966952, - "min_markup": 0.0031515091310822243, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02650613699963896, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6932212832986564, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CVXUSDT.json b/configs/live/multisymbol/no_AU/CVXUSDT.json deleted file mode 100644 index de46763a9..000000000 --- a/configs/live/multisymbol/no_AU/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0182332476351215, - "ema_span_0": 868.221520854621, - "ema_span_1": 1271.8697151759557, - "enabled": true, - "initial_eprice_ema_dist": -0.0034189626930344265, - "initial_qty_pct": 0.01060262538642813, - "markup_range": 0.0009433013701631998, - "min_markup": 0.0013267020611627317, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018400228150475796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0662113421117216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/CYBERUSDT.json b/configs/live/multisymbol/no_AU/CYBERUSDT.json deleted file mode 100644 index c1ca2ad48..000000000 --- a/configs/live/multisymbol/no_AU/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7896823341342867, - "ema_span_0": 1114.6014374950553, - "ema_span_1": 938.9888017804359, - "enabled": true, - "initial_eprice_ema_dist": 9.44200061109429e-05, - "initial_qty_pct": 0.007833345378067978, - "markup_range": 0.002022904394170566, - "min_markup": 0.0019991308170766637, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019655914157653234, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8352074778258256, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DARUSDT.json b/configs/live/multisymbol/no_AU/DARUSDT.json deleted file mode 100644 index ec72a3506..000000000 --- a/configs/live/multisymbol/no_AU/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7594354352831985, - "ema_span_0": 542.7741159369552, - "ema_span_1": 602.4812499261363, - "enabled": true, - "initial_eprice_ema_dist": -0.007776011232012096, - "initial_qty_pct": 0.005702446882948222, - "markup_range": 0.005049156016364269, - "min_markup": 0.007182498839164601, - "n_close_orders": 6, - "rentry_pprice_dist": 0.034107437490716805, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2714999547385133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1105073869896178, - "ema_span_0": 1250.3096754885082, - "ema_span_1": 1117.8907420263963, - "enabled": true, - "initial_eprice_ema_dist": 0.001111914375976428, - "initial_qty_pct": 0.016291874393275237, - "markup_range": 0.002579838798743366, - "min_markup": 0.0018266870916982395, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04082408657248748, - "rentry_pprice_dist_wallet_exposure_weighting": 6.998348230714642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DASHUSDT.json b/configs/live/multisymbol/no_AU/DASHUSDT.json deleted file mode 100644 index 23cd33568..000000000 --- a/configs/live/multisymbol/no_AU/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7127996619834288, - "ema_span_0": 624.1921898696093, - "ema_span_1": 662.6420983003411, - "enabled": true, - "initial_eprice_ema_dist": -0.007004287940934794, - "initial_qty_pct": 0.007771324959590781, - "markup_range": 0.004414780245155629, - "min_markup": 0.0025427254021188604, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03695639965767077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.302084187858983, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17911301368367666, - "ema_span_0": 472.36359939979036, - "ema_span_1": 440.493227032012, - "enabled": true, - "initial_eprice_ema_dist": 0.0028508066991732813, - "initial_qty_pct": 0.005547251606617143, - "markup_range": 0.0043578328491762535, - "min_markup": 0.0035540580662173343, - "n_close_orders": 7, - "rentry_pprice_dist": 0.025847324151267174, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DEFIUSDT.json b/configs/live/multisymbol/no_AU/DEFIUSDT.json deleted file mode 100644 index 97b87f17c..000000000 --- a/configs/live/multisymbol/no_AU/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.795714766434085, - "ema_span_0": 544.4747590809842, - "ema_span_1": 683.60900747903, - "enabled": true, - "initial_eprice_ema_dist": -0.0011555074787932046, - "initial_qty_pct": 0.017323832967801853, - "markup_range": 0.0004675203958710655, - "min_markup": 0.00581996201543849, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03446706363068052, - "rentry_pprice_dist_wallet_exposure_weighting": 2.190612441759691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DENTUSDT.json b/configs/live/multisymbol/no_AU/DENTUSDT.json deleted file mode 100644 index 71decc44c..000000000 --- a/configs/live/multisymbol/no_AU/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2675254505635634, - "ema_span_0": 937.234224651408, - "ema_span_1": 984.1054024346106, - "enabled": true, - "initial_eprice_ema_dist": -0.002006977787441694, - "initial_qty_pct": 0.010522513059221323, - "markup_range": 0.003248379214762474, - "min_markup": 0.0042195941629218255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030846633862084784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.916579972313764, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DGBUSDT.json b/configs/live/multisymbol/no_AU/DGBUSDT.json deleted file mode 100644 index 1d96d118a..000000000 --- a/configs/live/multisymbol/no_AU/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.56219586740148, - "ema_span_0": 1377.4444504763974, - "ema_span_1": 1146.986429279253, - "enabled": true, - "initial_eprice_ema_dist": -0.005195180931239749, - "initial_qty_pct": 0.006395157712924707, - "markup_range": 0.0013034965471744203, - "min_markup": 0.0031647242712170183, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030067167750076732, - "rentry_pprice_dist_wallet_exposure_weighting": 1.803733038911203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DODOXUSDT.json b/configs/live/multisymbol/no_AU/DODOXUSDT.json deleted file mode 100644 index 13f3cf4bb..000000000 --- a/configs/live/multisymbol/no_AU/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8211421939725285, - "ema_span_0": 1303.1868593440668, - "ema_span_1": 1300.560221224229, - "enabled": true, - "initial_eprice_ema_dist": -0.003025944363882385, - "initial_qty_pct": 0.01052188161383535, - "markup_range": 0.00022019827043791502, - "min_markup": 0.005794018367592737, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02444537894625305, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2603764927526173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DOGEUSDT.json b/configs/live/multisymbol/no_AU/DOGEUSDT.json deleted file mode 100644 index e51b69852..000000000 --- a/configs/live/multisymbol/no_AU/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18020294944274384, - "ema_span_0": 534.6116953850265, - "ema_span_1": 525.8301793868686, - "enabled": true, - "initial_eprice_ema_dist": -0.005663220098220674, - "initial_qty_pct": 0.013948777121950211, - "markup_range": 0.0033845180014539285, - "min_markup": 0.003731929953161556, - "n_close_orders": 2, - "rentry_pprice_dist": 0.01698573632894032, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424060357992101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.17911301368367666, - "ema_span_0": 472.36359939979036, - "ema_span_1": 440.493227032012, - "enabled": true, - "initial_eprice_ema_dist": 0.0028508066991732813, - "initial_qty_pct": 0.005547251606617143, - "markup_range": 0.0043578328491762535, - "min_markup": 0.0035540580662173343, - "n_close_orders": 7, - "rentry_pprice_dist": 0.025847324151267174, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DOTUSDT.json b/configs/live/multisymbol/no_AU/DOTUSDT.json deleted file mode 100644 index 3fa11e84d..000000000 --- a/configs/live/multisymbol/no_AU/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6972453476326447, - "ema_span_0": 505.7700624743281, - "ema_span_1": 621.2315998034261, - "enabled": true, - "initial_eprice_ema_dist": -0.006259665525628234, - "initial_qty_pct": 0.010919123868196892, - "markup_range": 0.004423864206110897, - "min_markup": 0.003488662986599392, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02763761801200893, - "rentry_pprice_dist_wallet_exposure_weighting": 2.633209752802338, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DUSKUSDT.json b/configs/live/multisymbol/no_AU/DUSKUSDT.json deleted file mode 100644 index 6777fe9ca..000000000 --- a/configs/live/multisymbol/no_AU/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DYDXUSDT.json b/configs/live/multisymbol/no_AU/DYDXUSDT.json deleted file mode 100644 index ac0a780be..000000000 --- a/configs/live/multisymbol/no_AU/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/DYMUSDT.json b/configs/live/multisymbol/no_AU/DYMUSDT.json deleted file mode 100644 index 68fa935ef..000000000 --- a/configs/live/multisymbol/no_AU/DYMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6850516916385354, - "ema_span_0": 426.12185415017063, - "ema_span_1": 496.26050416975323, - "enabled": true, - "initial_eprice_ema_dist": -0.001927759450286079, - "initial_qty_pct": 0.00522237375491126, - "markup_range": 0.0002740301299901382, - "min_markup": 0.0018052120025589962, - "n_close_orders": 9, - "rentry_pprice_dist": 0.010638872767800392, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8083721509060042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/EDUUSDT.json b/configs/live/multisymbol/no_AU/EDUUSDT.json deleted file mode 100644 index bf4369caa..000000000 --- a/configs/live/multisymbol/no_AU/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/EGLDUSDT.json b/configs/live/multisymbol/no_AU/EGLDUSDT.json deleted file mode 100644 index 883ff85d2..000000000 --- a/configs/live/multisymbol/no_AU/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.099284773460096, - "ema_span_0": 870.442736826673, - "ema_span_1": 1052.3444692961668, - "enabled": true, - "initial_eprice_ema_dist": -0.0033560496209624783, - "initial_qty_pct": 0.015574915837287696, - "markup_range": 0.004696659034722341, - "min_markup": 0.004146863923528105, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027485933774975865, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3366825329785095, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1038691184841887, - "ema_span_0": 606.8634750543622, - "ema_span_1": 674.8412859167347, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01189918610470215, - "markup_range": 0.0008148790362667809, - "min_markup": 0.0052329065617888, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048238327909112214, - "rentry_pprice_dist_wallet_exposure_weighting": 0.021182741619829342, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ENJUSDT.json b/configs/live/multisymbol/no_AU/ENJUSDT.json deleted file mode 100644 index 1c447d2c4..000000000 --- a/configs/live/multisymbol/no_AU/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.898083850242024, - "ema_span_0": 1426.285590876822, - "ema_span_1": 1424.335791465121, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01968097261972087, - "markup_range": 0.0035071222518446776, - "min_markup": 0.005533845048715687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03385601367703975, - "rentry_pprice_dist_wallet_exposure_weighting": 3.73109080433956, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.9506399112412, - "ema_span_1": 481.34258197826495, - "enabled": true, - "initial_eprice_ema_dist": -0.007907509831981581, - "initial_qty_pct": 0.006931635358392313, - "markup_range": 0.004329404978522449, - "min_markup": 0.004579724919735104, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051569990412496, - "rentry_pprice_dist_wallet_exposure_weighting": 3.78351730916741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ENSUSDT.json b/configs/live/multisymbol/no_AU/ENSUSDT.json deleted file mode 100644 index d9e4dd6ba..000000000 --- a/configs/live/multisymbol/no_AU/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7127996619834288, - "ema_span_0": 624.1921898696093, - "ema_span_1": 662.6420983003411, - "enabled": true, - "initial_eprice_ema_dist": -0.007004287940934794, - "initial_qty_pct": 0.007771324959590781, - "markup_range": 0.004414780245155629, - "min_markup": 0.0025427254021188604, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03695639965767077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.302084187858983, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8437584945040348, - "ema_span_0": 1273.6349655577148, - "ema_span_1": 1181.8898550188335, - "enabled": true, - "initial_eprice_ema_dist": -0.009747003765253446, - "initial_qty_pct": 0.006962801615292772, - "markup_range": 0.01, - "min_markup": 0.00602261672775095, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030999759412613823, - "rentry_pprice_dist_wallet_exposure_weighting": 2.812715957773782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/EOSUSDT.json b/configs/live/multisymbol/no_AU/EOSUSDT.json deleted file mode 100644 index 468b05472..000000000 --- a/configs/live/multisymbol/no_AU/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.34999958995762215, - "ema_span_0": 741.7973323952765, - "ema_span_1": 717.9947050654903, - "enabled": true, - "initial_eprice_ema_dist": -0.0002184665985607831, - "initial_qty_pct": 0.010260201819833297, - "markup_range": 0.0024056989096220343, - "min_markup": 0.004381986808576549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.027425251874307444, - "rentry_pprice_dist_wallet_exposure_weighting": 5.850751951947829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2739661777308737, - "ema_span_0": 1311.9461421240344, - "ema_span_1": 1140.98494408494, - "enabled": true, - "initial_eprice_ema_dist": -0.0018591669706837296, - "initial_qty_pct": 0.007037592861027184, - "markup_range": 0.0035445068175967934, - "min_markup": 0.002670310361944757, - "n_close_orders": 6, - "rentry_pprice_dist": 0.020499237500803784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7706766468478556, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ETCUSDT.json b/configs/live/multisymbol/no_AU/ETCUSDT.json deleted file mode 100644 index d2e659a80..000000000 --- a/configs/live/multisymbol/no_AU/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0182332476351215, - "ema_span_0": 868.221520854621, - "ema_span_1": 1271.8697151759557, - "enabled": true, - "initial_eprice_ema_dist": -0.0034189626930344265, - "initial_qty_pct": 0.01060262538642813, - "markup_range": 0.0009433013701631998, - "min_markup": 0.0013267020611627317, - "n_close_orders": 10, - "rentry_pprice_dist": 0.018400228150475796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0662113421117216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.519767103420006, - "ema_span_0": 616.2065582426625, - "ema_span_1": 613.1954752957007, - "enabled": true, - "initial_eprice_ema_dist": -0.0022971929388209546, - "initial_qty_pct": 0.011624545525287584, - "markup_range": 0.0010643984572206266, - "min_markup": 0.004608332790733492, - "n_close_orders": 9, - "rentry_pprice_dist": 0.034477266146532175, - "rentry_pprice_dist_wallet_exposure_weighting": 2.758767304733158, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ETHUSDT.json b/configs/live/multisymbol/no_AU/ETHUSDT.json deleted file mode 100644 index c29716431..000000000 --- a/configs/live/multisymbol/no_AU/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.415609287642105, - "ema_span_0": 812.4823958492581, - "ema_span_1": 1115.9189589462812, - "enabled": true, - "initial_eprice_ema_dist": 0.002285505203098785, - "initial_qty_pct": 0.008978677639439336, - "markup_range": 0.002974792379622589, - "min_markup": 0.002057341455660884, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015557291753133898, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4324883442698306, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2708179213499688, - "ema_span_0": 1291.6833189674323, - "ema_span_1": 1292.4798980035982, - "enabled": true, - "initial_eprice_ema_dist": 0.0029552723449509763, - "initial_qty_pct": 0.007741203804916195, - "markup_range": 0.002690725044442569, - "min_markup": 0.003192852120277235, - "n_close_orders": 4, - "rentry_pprice_dist": 0.021202654391576575, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1877921181818185, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ETHWUSDT.json b/configs/live/multisymbol/no_AU/ETHWUSDT.json deleted file mode 100644 index 291064d21..000000000 --- a/configs/live/multisymbol/no_AU/ETHWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FETUSDT.json b/configs/live/multisymbol/no_AU/FETUSDT.json deleted file mode 100644 index 28f179c64..000000000 --- a/configs/live/multisymbol/no_AU/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5249902301868143, - "ema_span_0": 958.5070799549975, - "ema_span_1": 743.5333870615893, - "enabled": true, - "initial_eprice_ema_dist": -0.006281911393073577, - "initial_qty_pct": 0.011169022828019435, - "markup_range": 0.005133698576591956, - "min_markup": 0.005317820714653464, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03852695242597729, - "rentry_pprice_dist_wallet_exposure_weighting": 2.980742847113021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FILUSDT.json b/configs/live/multisymbol/no_AU/FILUSDT.json deleted file mode 100644 index df70076ae..000000000 --- a/configs/live/multisymbol/no_AU/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5736012243397192, - "ema_span_0": 936.4509605375098, - "ema_span_1": 515.46339509369, - "enabled": true, - "initial_eprice_ema_dist": -0.005766953639830126, - "initial_qty_pct": 0.011651074822625207, - "markup_range": 0.002499848221779468, - "min_markup": 0.0039851633154411445, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01814538796714788, - "rentry_pprice_dist_wallet_exposure_weighting": 6.122788736297527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3162230554628027, - "ema_span_0": 1432.826356668545, - "ema_span_1": 1238.4057039147253, - "enabled": true, - "initial_eprice_ema_dist": 0.0026755133801165225, - "initial_qty_pct": 0.014658253612383836, - "markup_range": 0.0010885238054421421, - "min_markup": 0.004495882108561903, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04793287551338852, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1078975919350875, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FLMUSDT.json b/configs/live/multisymbol/no_AU/FLMUSDT.json deleted file mode 100644 index a87a427e8..000000000 --- a/configs/live/multisymbol/no_AU/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.942676089272254, - "ema_span_0": 1221.1673012685583, - "ema_span_1": 1106.6075785388434, - "enabled": true, - "initial_eprice_ema_dist": -0.0017605548748617988, - "initial_qty_pct": 0.005496329078201383, - "markup_range": 0.007959869824874228, - "min_markup": 0.0020854311731210193, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03839972302764517, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7327213772260364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FLOWUSDT.json b/configs/live/multisymbol/no_AU/FLOWUSDT.json deleted file mode 100644 index 3b7300954..000000000 --- a/configs/live/multisymbol/no_AU/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6464870127422149, - "ema_span_0": 714.4026340528767, - "ema_span_1": 839.3284647945715, - "enabled": true, - "initial_eprice_ema_dist": 0.0008081376265866192, - "initial_qty_pct": 0.007454488419509318, - "markup_range": 0.0011375019059323703, - "min_markup": 0.009199589733057895, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034694826656131404, - "rentry_pprice_dist_wallet_exposure_weighting": 4.084474836410344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FOOTBALLUSDT.json b/configs/live/multisymbol/no_AU/FOOTBALLUSDT.json deleted file mode 100644 index 7404bca6a..000000000 --- a/configs/live/multisymbol/no_AU/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.34999958995762215, - "ema_span_0": 741.7973323952765, - "ema_span_1": 717.9947050654903, - "enabled": true, - "initial_eprice_ema_dist": -0.0002184665985607831, - "initial_qty_pct": 0.010260201819833297, - "markup_range": 0.0024056989096220343, - "min_markup": 0.004381986808576549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.027425251874307444, - "rentry_pprice_dist_wallet_exposure_weighting": 5.850751951947829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FRONTUSDT.json b/configs/live/multisymbol/no_AU/FRONTUSDT.json deleted file mode 100644 index 269d72500..000000000 --- a/configs/live/multisymbol/no_AU/FRONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FTMUSDT.json b/configs/live/multisymbol/no_AU/FTMUSDT.json deleted file mode 100644 index 343f1b2fc..000000000 --- a/configs/live/multisymbol/no_AU/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.126630552136007, - "ema_span_0": 701.9618877279123, - "ema_span_1": 838.5478144716134, - "enabled": true, - "initial_eprice_ema_dist": 0.002265006252210066, - "initial_qty_pct": 0.006860001911838622, - "markup_range": 0.006033133341522965, - "min_markup": 0.009834404026120324, - "n_close_orders": 6, - "rentry_pprice_dist": 0.028661586790478182, - "rentry_pprice_dist_wallet_exposure_weighting": 5.255291272853817, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/FXSUSDT.json b/configs/live/multisymbol/no_AU/FXSUSDT.json deleted file mode 100644 index bb1f362d3..000000000 --- a/configs/live/multisymbol/no_AU/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GALAUSDT.json b/configs/live/multisymbol/no_AU/GALAUSDT.json deleted file mode 100644 index 8ee937cd9..000000000 --- a/configs/live/multisymbol/no_AU/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3918186203491656, - "ema_span_0": 847.1895495259638, - "ema_span_1": 814.2418106338979, - "enabled": true, - "initial_eprice_ema_dist": -0.002830128031650846, - "initial_qty_pct": 0.009636415626736818, - "markup_range": 0.002922313469617343, - "min_markup": 0.002214787620495939, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03289293554402205, - "rentry_pprice_dist_wallet_exposure_weighting": 1.986869395713439, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.191202210669933, - "ema_span_0": 1100.510125765036, - "ema_span_1": 1099.7444927194308, - "enabled": true, - "initial_eprice_ema_dist": -0.0025548621323953614, - "initial_qty_pct": 0.00859022812714712, - "markup_range": 0.003587774910374674, - "min_markup": 0.005698296309025122, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0412455960202024, - "rentry_pprice_dist_wallet_exposure_weighting": 2.236288445890762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GALUSDT.json b/configs/live/multisymbol/no_AU/GALUSDT.json deleted file mode 100644 index 5af883f8d..000000000 --- a/configs/live/multisymbol/no_AU/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GASUSDT.json b/configs/live/multisymbol/no_AU/GASUSDT.json deleted file mode 100644 index ff3f46c1d..000000000 --- a/configs/live/multisymbol/no_AU/GASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GLMRUSDT.json b/configs/live/multisymbol/no_AU/GLMRUSDT.json deleted file mode 100644 index 406883b27..000000000 --- a/configs/live/multisymbol/no_AU/GLMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GLMUSDT.json b/configs/live/multisymbol/no_AU/GLMUSDT.json deleted file mode 100644 index de440e6d5..000000000 --- a/configs/live/multisymbol/no_AU/GLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10351553171972352, - "ema_span_0": 1400.8590153309617, - "ema_span_1": 1416.0470032162264, - "enabled": true, - "initial_eprice_ema_dist": 0.002999916067495777, - "initial_qty_pct": 0.02, - "markup_range": 0.0006525153882115823, - "min_markup": 0.00324210743304714, - "n_close_orders": 6, - "rentry_pprice_dist": 0.048368914414632806, - "rentry_pprice_dist_wallet_exposure_weighting": 6.848375786750348, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GMTUSDT.json b/configs/live/multisymbol/no_AU/GMTUSDT.json deleted file mode 100644 index ab45b0c74..000000000 --- a/configs/live/multisymbol/no_AU/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.69477399614593, - "ema_span_0": 1433.4632473474794, - "ema_span_1": 620.7265149034098, - "enabled": true, - "initial_eprice_ema_dist": 0.002999785245586115, - "initial_qty_pct": 0.005481849096515688, - "markup_range": 0.0010998158449765268, - "min_markup": 0.0036006586206092186, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027066507512961233, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7090014923887336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GMXUSDT.json b/configs/live/multisymbol/no_AU/GMXUSDT.json deleted file mode 100644 index 3ed221051..000000000 --- a/configs/live/multisymbol/no_AU/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GRTUSDT.json b/configs/live/multisymbol/no_AU/GRTUSDT.json deleted file mode 100644 index 43452901a..000000000 --- a/configs/live/multisymbol/no_AU/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.776827267252834, - "ema_span_0": 582.64089583745, - "ema_span_1": 572.9881294650091, - "enabled": true, - "initial_eprice_ema_dist": 0.0015792436525577163, - "initial_qty_pct": 0.019996086764343935, - "markup_range": 0.0037951647247050774, - "min_markup": 0.002437041463455835, - "n_close_orders": 7, - "rentry_pprice_dist": 0.036964553885101545, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9366436030918455, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/GTCUSDT.json b/configs/live/multisymbol/no_AU/GTCUSDT.json deleted file mode 100644 index 61b7e13a2..000000000 --- a/configs/live/multisymbol/no_AU/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/HBARUSDT.json b/configs/live/multisymbol/no_AU/HBARUSDT.json deleted file mode 100644 index fe9798fde..000000000 --- a/configs/live/multisymbol/no_AU/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6377931024910679, - "ema_span_0": 790.3551732113342, - "ema_span_1": 928.0416080681598, - "enabled": true, - "initial_eprice_ema_dist": -0.004133945688039767, - "initial_qty_pct": 0.008048027690748702, - "markup_range": 0.009974866091135832, - "min_markup": 0.005678798071303473, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02380397376271462, - "rentry_pprice_dist_wallet_exposure_weighting": 2.805796385987601, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8211421939725285, - "ema_span_0": 1303.1868593440668, - "ema_span_1": 1300.560221224229, - "enabled": true, - "initial_eprice_ema_dist": -0.003025944363882385, - "initial_qty_pct": 0.01052188161383535, - "markup_range": 0.00022019827043791502, - "min_markup": 0.005794018367592737, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02444537894625305, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2603764927526173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/HFTUSDT.json b/configs/live/multisymbol/no_AU/HFTUSDT.json deleted file mode 100644 index cb0d5eef5..000000000 --- a/configs/live/multisymbol/no_AU/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/HIFIUSDT.json b/configs/live/multisymbol/no_AU/HIFIUSDT.json deleted file mode 100644 index d745566f9..000000000 --- a/configs/live/multisymbol/no_AU/HIFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/HIGHUSDT.json b/configs/live/multisymbol/no_AU/HIGHUSDT.json deleted file mode 100644 index fab78da9e..000000000 --- a/configs/live/multisymbol/no_AU/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/HOOKUSDT.json b/configs/live/multisymbol/no_AU/HOOKUSDT.json deleted file mode 100644 index a40b8db27..000000000 --- a/configs/live/multisymbol/no_AU/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7624643073829781, - "ema_span_0": 748.7029047408132, - "ema_span_1": 839.652641585332, - "enabled": true, - "initial_eprice_ema_dist": -0.00264097191534256, - "initial_qty_pct": 0.01346725640152762, - "markup_range": 0.004990302340728536, - "min_markup": 0.004570608103091317, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03644069705015101, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9382084317795156, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5749969457700788, - "ema_span_0": 569.413304156137, - "ema_span_1": 490.5430557314239, - "enabled": true, - "initial_eprice_ema_dist": -0.0086863081186085, - "initial_qty_pct": 0.0087043398163937, - "markup_range": 0.005588308732260884, - "min_markup": 0.005238778285633801, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243385509821733, - "rentry_pprice_dist_wallet_exposure_weighting": 6.451868010973641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/HOTUSDT.json b/configs/live/multisymbol/no_AU/HOTUSDT.json deleted file mode 100644 index 07a1067a1..000000000 --- a/configs/live/multisymbol/no_AU/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6786120668665996, - "ema_span_0": 1399.2835408999533, - "ema_span_1": 1397.6641597985213, - "enabled": true, - "initial_eprice_ema_dist": -0.0075342157288197965, - "initial_qty_pct": 0.009688959876085059, - "markup_range": 0.004009431120472138, - "min_markup": 0.005915749411729166, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026761189682278544, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5313712500590264, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6078087195928683, - "ema_span_0": 882.3592202038312, - "ema_span_1": 1408.91815843651, - "enabled": true, - "initial_eprice_ema_dist": 0.0028746071453775836, - "initial_qty_pct": 0.02, - "markup_range": 0.0031255383459655446, - "min_markup": 0.005382035068085265, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03895265137790888, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9476924290466413, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ICPUSDT.json b/configs/live/multisymbol/no_AU/ICPUSDT.json deleted file mode 100644 index 2defb53e1..000000000 --- a/configs/live/multisymbol/no_AU/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3312710099916436, - "ema_span_0": 1192.268195300751, - "ema_span_1": 1196.406002830336, - "enabled": true, - "initial_eprice_ema_dist": -0.004264726213907415, - "initial_qty_pct": 0.006495646128856158, - "markup_range": 0.003330104084938854, - "min_markup": 0.0010791213672847698, - "n_close_orders": 14, - "rentry_pprice_dist": 0.027583705397565734, - "rentry_pprice_dist_wallet_exposure_weighting": 0.024510843456297945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ICXUSDT.json b/configs/live/multisymbol/no_AU/ICXUSDT.json deleted file mode 100644 index 09134c605..000000000 --- a/configs/live/multisymbol/no_AU/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8144277288451705, - "ema_span_0": 698.9762871275476, - "ema_span_1": 733.889381929932, - "enabled": true, - "initial_eprice_ema_dist": -0.0076336139305870415, - "initial_qty_pct": 0.00598816094458001, - "markup_range": 0.005175338074176351, - "min_markup": 0.004392711481486734, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02939008493484651, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4458480743746707, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6464870127422149, - "ema_span_0": 714.4026340528767, - "ema_span_1": 839.3284647945715, - "enabled": true, - "initial_eprice_ema_dist": 0.0008081376265866192, - "initial_qty_pct": 0.007454488419509318, - "markup_range": 0.0011375019059323703, - "min_markup": 0.009199589733057895, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034694826656131404, - "rentry_pprice_dist_wallet_exposure_weighting": 4.084474836410344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/IDEXUSDT.json b/configs/live/multisymbol/no_AU/IDEXUSDT.json deleted file mode 100644 index 73333f568..000000000 --- a/configs/live/multisymbol/no_AU/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2943334786705402, - "ema_span_0": 557.3663556398109, - "ema_span_1": 605.3117106857495, - "enabled": true, - "initial_eprice_ema_dist": -0.008311789907742282, - "initial_qty_pct": 0.019445890388826083, - "markup_range": 0.009999394446329891, - "min_markup": 0.00281675740661168, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0374266725089705, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0756100658382015, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/IDUSDT.json b/configs/live/multisymbol/no_AU/IDUSDT.json deleted file mode 100644 index 6dcff1c00..000000000 --- a/configs/live/multisymbol/no_AU/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21802688270759651, - "ema_span_0": 1248.0959322741535, - "ema_span_1": 1430.0841680407277, - "enabled": true, - "initial_eprice_ema_dist": 0.002716516856667494, - "initial_qty_pct": 0.019998020321061447, - "markup_range": 0.006120150586732654, - "min_markup": 0.006415359529401238, - "n_close_orders": 14, - "rentry_pprice_dist": 0.039072266328704204, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7669715349237025, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ILVUSDT.json b/configs/live/multisymbol/no_AU/ILVUSDT.json deleted file mode 100644 index 25ce4a1e6..000000000 --- a/configs/live/multisymbol/no_AU/ILVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4881219917580285, - "ema_span_0": 400, - "ema_span_1": 822.8349163889209, - "enabled": true, - "initial_eprice_ema_dist": -0.0038046880378889373, - "initial_qty_pct": 0.018903270378062487, - "markup_range": 0.00573840039361005, - "min_markup": 0.006381616359542263, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029126335164672546, - "rentry_pprice_dist_wallet_exposure_weighting": 2.424981371694292, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7462685377597977, - "ema_span_0": 511.8560462090011, - "ema_span_1": 568.477435153946, - "enabled": true, - "initial_eprice_ema_dist": -0.006383865417420748, - "initial_qty_pct": 0.011078545593023655, - "markup_range": 0.004668351197589904, - "min_markup": 0.004192178780478336, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026001922012736885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23931909568469828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/IMXUSDT.json b/configs/live/multisymbol/no_AU/IMXUSDT.json deleted file mode 100644 index a7fb610e6..000000000 --- a/configs/live/multisymbol/no_AU/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7679269390842515, - "ema_span_0": 1130.1225477813007, - "ema_span_1": 1062.4032711158673, - "enabled": true, - "initial_eprice_ema_dist": 0.0020869072124994653, - "initial_qty_pct": 0.012804570969302046, - "markup_range": 0.0024832454376030226, - "min_markup": 0.007769140200503243, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03639950610827401, - "rentry_pprice_dist_wallet_exposure_weighting": 1.128684984761031, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/INJUSDT.json b/configs/live/multisymbol/no_AU/INJUSDT.json deleted file mode 100644 index cf97b5dfd..000000000 --- a/configs/live/multisymbol/no_AU/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6019934952984558, - "ema_span_0": 678.9097998235497, - "ema_span_1": 463.1156853848917, - "enabled": true, - "initial_eprice_ema_dist": 0.0005177663471187619, - "initial_qty_pct": 0.009311615707788988, - "markup_range": 0.004335328811402389, - "min_markup": 0.007890441163626, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02926411082808768, - "rentry_pprice_dist_wallet_exposure_weighting": 4.023729122646496, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 482.9506399112412, - "ema_span_1": 481.34258197826495, - "enabled": true, - "initial_eprice_ema_dist": -0.007907509831981581, - "initial_qty_pct": 0.006931635358392313, - "markup_range": 0.004329404978522449, - "min_markup": 0.004579724919735104, - "n_close_orders": 10, - "rentry_pprice_dist": 0.019051569990412496, - "rentry_pprice_dist_wallet_exposure_weighting": 3.78351730916741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/IOSTUSDT.json b/configs/live/multisymbol/no_AU/IOSTUSDT.json deleted file mode 100644 index 7d05c6d18..000000000 --- a/configs/live/multisymbol/no_AU/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2641897540963043, - "ema_span_0": 864.6786000387508, - "ema_span_1": 902.0154972656932, - "enabled": true, - "initial_eprice_ema_dist": 0.001992848939767834, - "initial_qty_pct": 0.02, - "markup_range": 0.0016797484433887344, - "min_markup": 0.006614224918287394, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03727336844316724, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2439113539076088, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/IOTAUSDT.json b/configs/live/multisymbol/no_AU/IOTAUSDT.json deleted file mode 100644 index 62f9f79e6..000000000 --- a/configs/live/multisymbol/no_AU/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1361865196523429, - "ema_span_0": 1333.4958726729335, - "ema_span_1": 1126.1129149010173, - "enabled": true, - "initial_eprice_ema_dist": -0.004619094663308742, - "initial_qty_pct": 0.007926153354800156, - "markup_range": 0.002741544490172375, - "min_markup": 0.001092880784452153, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03736049608158455, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7183316113401004, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.861289071126022, - "ema_span_0": 570.7424324540953, - "ema_span_1": 514.244786685066, - "enabled": true, - "initial_eprice_ema_dist": 0.0027352875636505046, - "initial_qty_pct": 0.011236281116613855, - "markup_range": 0.0016714313566046455, - "min_markup": 0.0033659905626506796, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032471982235901774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.878714040563697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/IOTXUSDT.json b/configs/live/multisymbol/no_AU/IOTXUSDT.json deleted file mode 100644 index dd2608087..000000000 --- a/configs/live/multisymbol/no_AU/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/JASMYUSDT.json b/configs/live/multisymbol/no_AU/JASMYUSDT.json deleted file mode 100644 index 07e3f3eb5..000000000 --- a/configs/live/multisymbol/no_AU/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0195748688318564, - "ema_span_0": 1032.9876182754965, - "ema_span_1": 1384.4199627826313, - "enabled": true, - "initial_eprice_ema_dist": 0.002964050067405958, - "initial_qty_pct": 0.012276323438665585, - "markup_range": 0.008365504361812269, - "min_markup": 0.006451876146961201, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04876530739561381, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3121077123682445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/JOEUSDT.json b/configs/live/multisymbol/no_AU/JOEUSDT.json deleted file mode 100644 index e0fe51c11..000000000 --- a/configs/live/multisymbol/no_AU/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5590482888791055, - "ema_span_0": 538.1218079970611, - "ema_span_1": 1094.3248929582285, - "enabled": true, - "initial_eprice_ema_dist": 0.00013780156130994856, - "initial_qty_pct": 0.009301461556690956, - "markup_range": 0.00012061326048546869, - "min_markup": 0.0028697069440414657, - "n_close_orders": 12, - "rentry_pprice_dist": 0.021668125415918248, - "rentry_pprice_dist_wallet_exposure_weighting": 2.261304953987642, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/JTOUSDT.json b/configs/live/multisymbol/no_AU/JTOUSDT.json deleted file mode 100644 index 619290e23..000000000 --- a/configs/live/multisymbol/no_AU/JTOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.268990724858785, - "ema_span_0": 468.08288387411267, - "ema_span_1": 579.8173687921092, - "enabled": true, - "initial_eprice_ema_dist": 0.0028414420430151756, - "initial_qty_pct": 0.01179904416141956, - "markup_range": 0.002798860765045448, - "min_markup": 0.0028004118006462217, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023963209191829024, - "rentry_pprice_dist_wallet_exposure_weighting": 5.582733607686806, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/JUPUSDT.json b/configs/live/multisymbol/no_AU/JUPUSDT.json deleted file mode 100644 index 0b25d8f9b..000000000 --- a/configs/live/multisymbol/no_AU/JUPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/KASUSDT.json b/configs/live/multisymbol/no_AU/KASUSDT.json deleted file mode 100644 index d0a948ef1..000000000 --- a/configs/live/multisymbol/no_AU/KASUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/KAVAUSDT.json b/configs/live/multisymbol/no_AU/KAVAUSDT.json deleted file mode 100644 index ea57324f6..000000000 --- a/configs/live/multisymbol/no_AU/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5838201288467455, - "ema_span_0": 807.8006372971789, - "ema_span_1": 1028.674614155757, - "enabled": true, - "initial_eprice_ema_dist": -0.006400534159964601, - "initial_qty_pct": 0.005267803960362067, - "markup_range": 0.003890273991084484, - "min_markup": 0.003814548548367528, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04225655438141939, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7016804268157846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.121555953228244, - "ema_span_0": 1439.457992466098, - "ema_span_1": 1439.6523229556547, - "enabled": true, - "initial_eprice_ema_dist": -0.0003286366121919378, - "initial_qty_pct": 0.01926522821319415, - "markup_range": 0.0020372345703510114, - "min_markup": 0.006544138409826038, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04721831982661486, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9376346759541607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/KEYUSDT.json b/configs/live/multisymbol/no_AU/KEYUSDT.json deleted file mode 100644 index 880c4fb84..000000000 --- a/configs/live/multisymbol/no_AU/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.247885911615898, - "ema_span_0": 701.0732650974925, - "ema_span_1": 807.528616151842, - "enabled": true, - "initial_eprice_ema_dist": -0.00593504535989968, - "initial_qty_pct": 0.008871061261948114, - "markup_range": 0.003804641519225573, - "min_markup": 0.005656748541260267, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0305329129680727, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6173753962108104, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/KLAYUSDT.json b/configs/live/multisymbol/no_AU/KLAYUSDT.json deleted file mode 100644 index 1827ad32f..000000000 --- a/configs/live/multisymbol/no_AU/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.45872714536469883, - "ema_span_0": 1306.5081012283274, - "ema_span_1": 1202.2511867831736, - "enabled": true, - "initial_eprice_ema_dist": 0.0005384538726071715, - "initial_qty_pct": 0.009205385962457284, - "markup_range": 0.0036582574552174113, - "min_markup": 0.00893359558538709, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04911966005847171, - "rentry_pprice_dist_wallet_exposure_weighting": 6.650049340787937, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/KNCUSDT.json b/configs/live/multisymbol/no_AU/KNCUSDT.json deleted file mode 100644 index cfec312e4..000000000 --- a/configs/live/multisymbol/no_AU/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.676060959901111, - "ema_span_0": 1142.1265796149928, - "ema_span_1": 1371.4409147256022, - "enabled": true, - "initial_eprice_ema_dist": -0.002653295645807994, - "initial_qty_pct": 0.005312279960658424, - "markup_range": 0.002618427243223781, - "min_markup": 0.0050054003114357384, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04147565692951239, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8328916683991203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.405908530841942, - "ema_span_0": 1431.4360958300663, - "ema_span_1": 1319.4396428280788, - "enabled": true, - "initial_eprice_ema_dist": 0.002568721040275455, - "initial_qty_pct": 0.01996393944497684, - "markup_range": 0.002403650945868932, - "min_markup": 0.00477941122680171, - "n_close_orders": 9, - "rentry_pprice_dist": 0.045423197968622604, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18098567283240782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/KSMUSDT.json b/configs/live/multisymbol/no_AU/KSMUSDT.json deleted file mode 100644 index 920d1fd05..000000000 --- a/configs/live/multisymbol/no_AU/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8995817502423, - "ema_span_0": 1237.8880961773652, - "ema_span_1": 812.1219392700096, - "enabled": true, - "initial_eprice_ema_dist": -0.0022851216640175347, - "initial_qty_pct": 0.018649171518923535, - "markup_range": 0.005405965672746347, - "min_markup": 0.0010000034600744193, - "n_close_orders": 7, - "rentry_pprice_dist": 0.027704339401110323, - "rentry_pprice_dist_wallet_exposure_weighting": 4.300026757434236, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5076176852487743, - "ema_span_0": 870.6903870465236, - "ema_span_1": 640.0505371453597, - "enabled": true, - "initial_eprice_ema_dist": -0.004625045279078337, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.0013545152613237054, - "min_markup": 0.005295220636714294, - "n_close_orders": 13, - "rentry_pprice_dist": 0.020319585917755578, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9495540973434329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LDOUSDT.json b/configs/live/multisymbol/no_AU/LDOUSDT.json deleted file mode 100644 index 6fddc47a4..000000000 --- a/configs/live/multisymbol/no_AU/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5159536084738751, - "ema_span_0": 1248.6062558084398, - "ema_span_1": 1044.0148033861185, - "enabled": true, - "initial_eprice_ema_dist": 0.000720250692351039, - "initial_qty_pct": 0.01670396209967201, - "markup_range": 0.004738122012700479, - "min_markup": 0.006488744252296942, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03196413882850113, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5777126246016717, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.121555953228244, - "ema_span_0": 1439.457992466098, - "ema_span_1": 1439.6523229556547, - "enabled": true, - "initial_eprice_ema_dist": -0.0003286366121919378, - "initial_qty_pct": 0.01926522821319415, - "markup_range": 0.0020372345703510114, - "min_markup": 0.006544138409826038, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04721831982661486, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9376346759541607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LEVERUSDT.json b/configs/live/multisymbol/no_AU/LEVERUSDT.json deleted file mode 100644 index 85661fdd0..000000000 --- a/configs/live/multisymbol/no_AU/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.498261986041419, - "ema_span_0": 1287.9566551615385, - "ema_span_1": 432.1068338050771, - "enabled": true, - "initial_eprice_ema_dist": 0.002347774982749378, - "initial_qty_pct": 0.0051429371976374465, - "markup_range": 0.002974792379622589, - "min_markup": 0.002437041463455835, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049162066721694694, - "rentry_pprice_dist_wallet_exposure_weighting": 2.562606806294015, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LINAUSDT.json b/configs/live/multisymbol/no_AU/LINAUSDT.json deleted file mode 100644 index e2398ae18..000000000 --- a/configs/live/multisymbol/no_AU/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6015136814653037, - "ema_span_0": 1225.7396180397736, - "ema_span_1": 1340.5481710796876, - "enabled": true, - "initial_eprice_ema_dist": -0.0030238312130208673, - "initial_qty_pct": 0.012905547456364432, - "markup_range": 0.007355367856488814, - "min_markup": 0.005798249340746057, - "n_close_orders": 2, - "rentry_pprice_dist": 0.050041482709373114, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3792071129303465, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LINKUSDT.json b/configs/live/multisymbol/no_AU/LINKUSDT.json deleted file mode 100644 index ab28ec76a..000000000 --- a/configs/live/multisymbol/no_AU/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.530310192517021, - "ema_span_0": 931.2179001666473, - "ema_span_1": 1230.4348271834565, - "enabled": true, - "initial_eprice_ema_dist": -0.0070643468075439995, - "initial_qty_pct": 0.011675458025438824, - "markup_range": 0.0036649060442478926, - "min_markup": 0.005280442888847122, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03714245274555599, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1886302610663578, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LITUSDT.json b/configs/live/multisymbol/no_AU/LITUSDT.json deleted file mode 100644 index f5af2a9f1..000000000 --- a/configs/live/multisymbol/no_AU/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.25120865294591, - "ema_span_0": 924.281745023731, - "ema_span_1": 1126.9205768818265, - "enabled": true, - "initial_eprice_ema_dist": -0.006626417961538352, - "initial_qty_pct": 0.005390451321060489, - "markup_range": 0.004936514169361442, - "min_markup": 0.0023326868861701855, - "n_close_orders": 10, - "rentry_pprice_dist": 0.047854240619392606, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1956099784121452, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LOOMUSDT.json b/configs/live/multisymbol/no_AU/LOOMUSDT.json deleted file mode 100644 index 45b04453f..000000000 --- a/configs/live/multisymbol/no_AU/LOOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LPTUSDT.json b/configs/live/multisymbol/no_AU/LPTUSDT.json deleted file mode 100644 index 26ae9c2b7..000000000 --- a/configs/live/multisymbol/no_AU/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LQTYUSDT.json b/configs/live/multisymbol/no_AU/LQTYUSDT.json deleted file mode 100644 index 33c9bbe85..000000000 --- a/configs/live/multisymbol/no_AU/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9126648396493593, - "ema_span_0": 532.6543816447255, - "ema_span_1": 1324.4767592034896, - "enabled": true, - "initial_eprice_ema_dist": -0.006909694986161618, - "initial_qty_pct": 0.014251120939408127, - "markup_range": 0.007099304520738205, - "min_markup": 0.004995881172485221, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547906956252059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1080147355026637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LRCUSDT.json b/configs/live/multisymbol/no_AU/LRCUSDT.json deleted file mode 100644 index 3781f9d7b..000000000 --- a/configs/live/multisymbol/no_AU/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966687567910197, - "ema_span_0": 749.5134019064611, - "ema_span_1": 1281.3144943534287, - "enabled": true, - "initial_eprice_ema_dist": -0.0006423620829190632, - "initial_qty_pct": 0.015283484013860052, - "markup_range": 0.003132569119602187, - "min_markup": 0.005636599354075086, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375814293426339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.64933016568611, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LSKUSDT.json b/configs/live/multisymbol/no_AU/LSKUSDT.json deleted file mode 100644 index 8af841c16..000000000 --- a/configs/live/multisymbol/no_AU/LSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LTCUSDT.json b/configs/live/multisymbol/no_AU/LTCUSDT.json deleted file mode 100644 index 986c58c71..000000000 --- a/configs/live/multisymbol/no_AU/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7260120721409893, - "ema_span_0": 844.5235638813543, - "ema_span_1": 1260.2251208991493, - "enabled": true, - "initial_eprice_ema_dist": 0.0007578100315185884, - "initial_qty_pct": 0.007336733125390599, - "markup_range": 0.0005638406014725544, - "min_markup": 0.0030014683598070385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033733723632238484, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84625996632964, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9369121462422005, - "ema_span_0": 1440, - "ema_span_1": 1376.5256726361233, - "enabled": true, - "initial_eprice_ema_dist": -0.002784127828183163, - "initial_qty_pct": 0.013916927508297325, - "markup_range": 0.0015546850195966365, - "min_markup": 0.0028228232914522455, - "n_close_orders": 8, - "rentry_pprice_dist": 0.025062668478451598, - "rentry_pprice_dist_wallet_exposure_weighting": 2.628424800050207, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/LUNA2USDT.json b/configs/live/multisymbol/no_AU/LUNA2USDT.json deleted file mode 100644 index 6248347dd..000000000 --- a/configs/live/multisymbol/no_AU/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3902536565887466, - "ema_span_0": 1413.758103390561, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.0029718095367438106, - "initial_qty_pct": 0.00733301014026606, - "markup_range": 0.0028126361750736846, - "min_markup": 0.006713557450929027, - "n_close_orders": 16, - "rentry_pprice_dist": 0.033797679014433375, - "rentry_pprice_dist_wallet_exposure_weighting": 5.140885806331698, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6078087195928683, - "ema_span_0": 882.3592202038312, - "ema_span_1": 1408.91815843651, - "enabled": true, - "initial_eprice_ema_dist": 0.0028746071453775836, - "initial_qty_pct": 0.02, - "markup_range": 0.0031255383459655446, - "min_markup": 0.005382035068085265, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03895265137790888, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9476924290466413, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MAGICUSDT.json b/configs/live/multisymbol/no_AU/MAGICUSDT.json deleted file mode 100644 index f52491852..000000000 --- a/configs/live/multisymbol/no_AU/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MANAUSDT.json b/configs/live/multisymbol/no_AU/MANAUSDT.json deleted file mode 100644 index 8e375eee1..000000000 --- a/configs/live/multisymbol/no_AU/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3982867742207514, - "ema_span_0": 699.63745669592, - "ema_span_1": 712.6294877003463, - "enabled": true, - "initial_eprice_ema_dist": 0.0016716655918121463, - "initial_qty_pct": 0.0069995912789837435, - "markup_range": 0.0006315586964646242, - "min_markup": 0.004128066449384683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019701876789393825, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2017690791294244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7201721407832813, - "ema_span_0": 427.94913163569163, - "ema_span_1": 1365.286296553462, - "enabled": true, - "initial_eprice_ema_dist": 0.0007155278660831436, - "initial_qty_pct": 0.0164817426642759, - "markup_range": 0.0013597598628013125, - "min_markup": 0.005303551494477243, - "n_close_orders": 9, - "rentry_pprice_dist": 0.033544317424716565, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0779105246617333, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MANTAUSDT.json b/configs/live/multisymbol/no_AU/MANTAUSDT.json deleted file mode 100644 index fffc68bca..000000000 --- a/configs/live/multisymbol/no_AU/MANTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MASKUSDT.json b/configs/live/multisymbol/no_AU/MASKUSDT.json deleted file mode 100644 index a03ded87a..000000000 --- a/configs/live/multisymbol/no_AU/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000000596553002, - "ema_span_0": 929.9812114760467, - "ema_span_1": 941.0347791612975, - "enabled": true, - "initial_eprice_ema_dist": -0.003991486046804449, - "initial_qty_pct": 0.0062838948398916605, - "markup_range": 0.0053377597436320345, - "min_markup": 0.004808631305477758, - "n_close_orders": 2, - "rentry_pprice_dist": 0.039485103117888054, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1364660075707736, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966687567910197, - "ema_span_0": 749.5134019064611, - "ema_span_1": 1281.3144943534287, - "enabled": true, - "initial_eprice_ema_dist": -0.0006423620829190632, - "initial_qty_pct": 0.015283484013860052, - "markup_range": 0.003132569119602187, - "min_markup": 0.005636599354075086, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375814293426339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.64933016568611, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MATICUSDT.json b/configs/live/multisymbol/no_AU/MATICUSDT.json deleted file mode 100644 index 3bab73284..000000000 --- a/configs/live/multisymbol/no_AU/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2262025238239782, - "ema_span_0": 756.0201309384837, - "ema_span_1": 647.7276639896997, - "enabled": true, - "initial_eprice_ema_dist": -0.00693983523557676, - "initial_qty_pct": 0.008478309621078584, - "markup_range": 0.003450423811446193, - "min_markup": 0.0057114524122531115, - "n_close_orders": 4, - "rentry_pprice_dist": 0.036590574351965756, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1337712400741469, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MAVIAUSDT.json b/configs/live/multisymbol/no_AU/MAVIAUSDT.json deleted file mode 100644 index 18bf7369e..000000000 --- a/configs/live/multisymbol/no_AU/MAVIAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MAVUSDT.json b/configs/live/multisymbol/no_AU/MAVUSDT.json deleted file mode 100644 index d461bb6eb..000000000 --- a/configs/live/multisymbol/no_AU/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5749969457700788, - "ema_span_0": 569.413304156137, - "ema_span_1": 490.5430557314239, - "enabled": true, - "initial_eprice_ema_dist": -0.0086863081186085, - "initial_qty_pct": 0.0087043398163937, - "markup_range": 0.005588308732260884, - "min_markup": 0.005238778285633801, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0243385509821733, - "rentry_pprice_dist_wallet_exposure_weighting": 6.451868010973641, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MBLUSDT.json b/configs/live/multisymbol/no_AU/MBLUSDT.json deleted file mode 100644 index 0b25d8f9b..000000000 --- a/configs/live/multisymbol/no_AU/MBLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MDTUSDT.json b/configs/live/multisymbol/no_AU/MDTUSDT.json deleted file mode 100644 index ef09a7d4f..000000000 --- a/configs/live/multisymbol/no_AU/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.292027319909774, - "ema_span_0": 1329.4680952753552, - "ema_span_1": 436.49613116495897, - "enabled": true, - "initial_eprice_ema_dist": -0.0048223415569343606, - "initial_qty_pct": 0.009453639768089012, - "markup_range": 0.0016749767397669865, - "min_markup": 0.004004167712974628, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973145553035486, - "rentry_pprice_dist_wallet_exposure_weighting": 0.615152389890463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MEMEUSDT.json b/configs/live/multisymbol/no_AU/MEMEUSDT.json deleted file mode 100644 index b94f5b53c..000000000 --- a/configs/live/multisymbol/no_AU/MEMEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MINAUSDT.json b/configs/live/multisymbol/no_AU/MINAUSDT.json deleted file mode 100644 index ca0038ee0..000000000 --- a/configs/live/multisymbol/no_AU/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MKRUSDT.json b/configs/live/multisymbol/no_AU/MKRUSDT.json deleted file mode 100644 index 721aeb1f1..000000000 --- a/configs/live/multisymbol/no_AU/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5455565204847541, - "ema_span_0": 1430.6585544365232, - "ema_span_1": 1088.464730375871, - "enabled": true, - "initial_eprice_ema_dist": -0.009839263529756526, - "initial_qty_pct": 0.006543969093954288, - "markup_range": 0.0036075282516898227, - "min_markup": 0.0018064789080091516, - "n_close_orders": 8, - "rentry_pprice_dist": 0.032913818782383766, - "rentry_pprice_dist_wallet_exposure_weighting": 5.690938077702247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5107383013026172, - "ema_span_0": 501.11138484160716, - "ema_span_1": 563.3231953079442, - "enabled": true, - "initial_eprice_ema_dist": -0.0022721525591453532, - "initial_qty_pct": 0.010882760685887356, - "markup_range": 0.002102569591189472, - "min_markup": 0.0028711756201357597, - "n_close_orders": 14, - "rentry_pprice_dist": 0.031137152580617798, - "rentry_pprice_dist_wallet_exposure_weighting": 0.08175078413939162, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MOVRUSDT.json b/configs/live/multisymbol/no_AU/MOVRUSDT.json deleted file mode 100644 index 129500e33..000000000 --- a/configs/live/multisymbol/no_AU/MOVRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MTLUSDT.json b/configs/live/multisymbol/no_AU/MTLUSDT.json deleted file mode 100644 index f7869842a..000000000 --- a/configs/live/multisymbol/no_AU/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.553259651749859, - "ema_span_0": 1341.4761910014433, - "ema_span_1": 771.8235757798318, - "enabled": true, - "initial_eprice_ema_dist": 0.0003095889575887415, - "initial_qty_pct": 0.00846349234296021, - "markup_range": 0.00245043989304848, - "min_markup": 0.008207500322844181, - "n_close_orders": 15, - "rentry_pprice_dist": 0.041981358725682726, - "rentry_pprice_dist_wallet_exposure_weighting": 3.124609565217527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10351553171972352, - "ema_span_0": 1400.8590153309617, - "ema_span_1": 1416.0470032162264, - "enabled": true, - "initial_eprice_ema_dist": 0.002999916067495777, - "initial_qty_pct": 0.02, - "markup_range": 0.0006525153882115823, - "min_markup": 0.00324210743304714, - "n_close_orders": 6, - "rentry_pprice_dist": 0.048368914414632806, - "rentry_pprice_dist_wallet_exposure_weighting": 6.848375786750348, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/MYROUSDT.json b/configs/live/multisymbol/no_AU/MYROUSDT.json deleted file mode 100644 index 383441a67..000000000 --- a/configs/live/multisymbol/no_AU/MYROUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.247885911615898, - "ema_span_0": 701.0732650974925, - "ema_span_1": 807.528616151842, - "enabled": true, - "initial_eprice_ema_dist": -0.00593504535989968, - "initial_qty_pct": 0.008871061261948114, - "markup_range": 0.003804641519225573, - "min_markup": 0.005656748541260267, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0305329129680727, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6173753962108104, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/NEARUSDT.json b/configs/live/multisymbol/no_AU/NEARUSDT.json deleted file mode 100644 index 42d317410..000000000 --- a/configs/live/multisymbol/no_AU/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8650520021061736, - "ema_span_0": 796.5179258775149, - "ema_span_1": 1407.4237060216465, - "enabled": true, - "initial_eprice_ema_dist": 0.002680605582500581, - "initial_qty_pct": 0.010641478055812168, - "markup_range": 0.0029407945819831887, - "min_markup": 0.009106294434698299, - "n_close_orders": 8, - "rentry_pprice_dist": 0.047929864782892226, - "rentry_pprice_dist_wallet_exposure_weighting": 6.551721907077706, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/NEOUSDT.json b/configs/live/multisymbol/no_AU/NEOUSDT.json deleted file mode 100644 index 0b970b995..000000000 --- a/configs/live/multisymbol/no_AU/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.646307020688455, - "ema_span_0": 1423.1980958540796, - "ema_span_1": 1225.1281020292502, - "enabled": true, - "initial_eprice_ema_dist": 0.002663925243375033, - "initial_qty_pct": 0.010765952920995287, - "markup_range": 0.0027146205909083882, - "min_markup": 0.004152269942094344, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04327698022883827, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7739990041167528, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1781344165381196, - "ema_span_0": 1378.2973709797225, - "ema_span_1": 1317.1001098796871, - "enabled": true, - "initial_eprice_ema_dist": -0.0011490225974891022, - "initial_qty_pct": 0.010423405040990284, - "markup_range": 0.0028990719840094707, - "min_markup": 0.0045979974574580675, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0200955626391935, - "rentry_pprice_dist_wallet_exposure_weighting": 4.477541425918538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/NFPUSDT.json b/configs/live/multisymbol/no_AU/NFPUSDT.json deleted file mode 100644 index e38d3357f..000000000 --- a/configs/live/multisymbol/no_AU/NFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/NKNUSDT.json b/configs/live/multisymbol/no_AU/NKNUSDT.json deleted file mode 100644 index c174fde86..000000000 --- a/configs/live/multisymbol/no_AU/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4881219917580285, - "ema_span_0": 400, - "ema_span_1": 822.8349163889209, - "enabled": true, - "initial_eprice_ema_dist": -0.0038046880378889373, - "initial_qty_pct": 0.018903270378062487, - "markup_range": 0.00573840039361005, - "min_markup": 0.006381616359542263, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029126335164672546, - "rentry_pprice_dist_wallet_exposure_weighting": 2.424981371694292, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.21802688270759651, - "ema_span_0": 1248.0959322741535, - "ema_span_1": 1430.0841680407277, - "enabled": true, - "initial_eprice_ema_dist": 0.002716516856667494, - "initial_qty_pct": 0.019998020321061447, - "markup_range": 0.006120150586732654, - "min_markup": 0.006415359529401238, - "n_close_orders": 14, - "rentry_pprice_dist": 0.039072266328704204, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7669715349237025, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/NMRUSDT.json b/configs/live/multisymbol/no_AU/NMRUSDT.json deleted file mode 100644 index 58728ebaa..000000000 --- a/configs/live/multisymbol/no_AU/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1407674819540503, - "ema_span_0": 600.6730996025576, - "ema_span_1": 706.4325106842696, - "enabled": true, - "initial_eprice_ema_dist": -0.0078039353860458825, - "initial_qty_pct": 0.008426395372658128, - "markup_range": 0.007143412363284117, - "min_markup": 0.004312289277978274, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03743230546577915, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10420111410769953, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/NTRNUSDT.json b/configs/live/multisymbol/no_AU/NTRNUSDT.json deleted file mode 100644 index 95f165b38..000000000 --- a/configs/live/multisymbol/no_AU/NTRNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3982867742207514, - "ema_span_0": 699.63745669592, - "ema_span_1": 712.6294877003463, - "enabled": true, - "initial_eprice_ema_dist": 0.0016716655918121463, - "initial_qty_pct": 0.0069995912789837435, - "markup_range": 0.0006315586964646242, - "min_markup": 0.004128066449384683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019701876789393825, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2017690791294244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/OCEANUSDT.json b/configs/live/multisymbol/no_AU/OCEANUSDT.json deleted file mode 100644 index 9bfcbfe41..000000000 --- a/configs/live/multisymbol/no_AU/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6909014516523033, - "ema_span_0": 675.2192680565545, - "ema_span_1": 417.359589308201, - "enabled": true, - "initial_eprice_ema_dist": -0.0010876088699116994, - "initial_qty_pct": 0.011275857946991052, - "markup_range": 0.0008684193266431001, - "min_markup": 0.008477974439679273, - "n_close_orders": 8, - "rentry_pprice_dist": 0.040025279801115796, - "rentry_pprice_dist_wallet_exposure_weighting": 2.299655526081271, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/OGNUSDT.json b/configs/live/multisymbol/no_AU/OGNUSDT.json deleted file mode 100644 index 0bf289e73..000000000 --- a/configs/live/multisymbol/no_AU/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.6792716195903201, - "ema_span_0": 1131.180217109746, - "ema_span_1": 715.1471254422235, - "enabled": true, - "initial_eprice_ema_dist": -0.00836593629938063, - "initial_qty_pct": 0.012455887944056032, - "markup_range": 0.0005654558339438172, - "min_markup": 0.002909975678970782, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03733834615044779, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1963487420157759, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/OMGUSDT.json b/configs/live/multisymbol/no_AU/OMGUSDT.json deleted file mode 100644 index e45e1ce98..000000000 --- a/configs/live/multisymbol/no_AU/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.2943334786705402, - "ema_span_0": 557.3663556398109, - "ema_span_1": 605.3117106857495, - "enabled": true, - "initial_eprice_ema_dist": -0.008311789907742282, - "initial_qty_pct": 0.019445890388826083, - "markup_range": 0.009999394446329891, - "min_markup": 0.00281675740661168, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0374266725089705, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0756100658382015, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.187342573680735, - "ema_span_0": 420.8298168240888, - "ema_span_1": 1293.6703257472886, - "enabled": true, - "initial_eprice_ema_dist": -0.009730278881618249, - "initial_qty_pct": 0.006867192626880222, - "markup_range": 0.006912808454446304, - "min_markup": 0.009779929906242303, - "n_close_orders": 14, - "rentry_pprice_dist": 0.042901841601788164, - "rentry_pprice_dist_wallet_exposure_weighting": 0.35839352560910487, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/OMUSDT.json b/configs/live/multisymbol/no_AU/OMUSDT.json deleted file mode 100644 index 00a1e1279..000000000 --- a/configs/live/multisymbol/no_AU/OMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6921253886815695, - "ema_span_0": 428.88845472586047, - "ema_span_1": 1033.2911537732355, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998259863056997, - "initial_qty_pct": 0.007231577146814722, - "markup_range": 0.002385642534751642, - "min_markup": 0.005016345350053768, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02511992574003009, - "rentry_pprice_dist_wallet_exposure_weighting": 4.425112144475232, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8741278108041662, - "ema_span_0": 1411.5918112301072, - "ema_span_1": 1385.9454732861827, - "enabled": true, - "initial_eprice_ema_dist": -0.002503140639748339, - "initial_qty_pct": 0.01883823925267609, - "markup_range": 0.009522886262125657, - "min_markup": 0.009712583170884345, - "n_close_orders": 2, - "rentry_pprice_dist": 0.0393030548178727, - "rentry_pprice_dist_wallet_exposure_weighting": 3.627870519229719, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ONDOUSDT.json b/configs/live/multisymbol/no_AU/ONDOUSDT.json deleted file mode 100644 index edb6410d6..000000000 --- a/configs/live/multisymbol/no_AU/ONDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9126648396493593, - "ema_span_0": 532.6543816447255, - "ema_span_1": 1324.4767592034896, - "enabled": true, - "initial_eprice_ema_dist": -0.006909694986161618, - "initial_qty_pct": 0.014251120939408127, - "markup_range": 0.007099304520738205, - "min_markup": 0.004995881172485221, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547906956252059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1080147355026637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ONEUSDT.json b/configs/live/multisymbol/no_AU/ONEUSDT.json deleted file mode 100644 index 1671b3a0b..000000000 --- a/configs/live/multisymbol/no_AU/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4803126646518443, - "ema_span_0": 937.3011481463654, - "ema_span_1": 932.8628347101318, - "enabled": true, - "initial_eprice_ema_dist": 0.0010873859680090425, - "initial_qty_pct": 0.007371323786733308, - "markup_range": 0.004306124744372809, - "min_markup": 0.004816535208804068, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042379241269059745, - "rentry_pprice_dist_wallet_exposure_weighting": 4.535300009631807, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.514616314322134, - "ema_span_0": 893.6648872131799, - "ema_span_1": 1134.9865644674042, - "enabled": true, - "initial_eprice_ema_dist": -0.004012005850923606, - "initial_qty_pct": 0.006622471773418429, - "markup_range": 0.004279614171759842, - "min_markup": 0.007459819688209633, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03779168575325001, - "rentry_pprice_dist_wallet_exposure_weighting": 0.016047404345157987, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ONGUSDT.json b/configs/live/multisymbol/no_AU/ONGUSDT.json deleted file mode 100644 index aee9e692e..000000000 --- a/configs/live/multisymbol/no_AU/ONGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7896823341342867, - "ema_span_0": 1114.6014374950553, - "ema_span_1": 938.9888017804359, - "enabled": true, - "initial_eprice_ema_dist": 9.44200061109429e-05, - "initial_qty_pct": 0.007833345378067978, - "markup_range": 0.002022904394170566, - "min_markup": 0.0019991308170766637, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019655914157653234, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8352074778258256, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ONTUSDT.json b/configs/live/multisymbol/no_AU/ONTUSDT.json deleted file mode 100644 index bc671da58..000000000 --- a/configs/live/multisymbol/no_AU/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.364849119702204, - "ema_span_0": 865.7984570675294, - "ema_span_1": 725.7281024686835, - "enabled": true, - "initial_eprice_ema_dist": 0.0029413539231069727, - "initial_qty_pct": 0.008986222705890308, - "markup_range": 0.00813327997846001, - "min_markup": 0.007010564949875995, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037672124082526355, - "rentry_pprice_dist_wallet_exposure_weighting": 4.1794409586499315, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.337218641941045, - "ema_span_0": 1394.0595360103011, - "ema_span_1": 1209.904791055211, - "enabled": true, - "initial_eprice_ema_dist": -0.0020670190574686915, - "initial_qty_pct": 0.01463807095251366, - "markup_range": 0.007272680089655267, - "min_markup": 0.006039483470154668, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028533484009548606, - "rentry_pprice_dist_wallet_exposure_weighting": 6.256314642408412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/OPUSDT.json b/configs/live/multisymbol/no_AU/OPUSDT.json deleted file mode 100644 index 80a2eab3b..000000000 --- a/configs/live/multisymbol/no_AU/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3982867742207514, - "ema_span_0": 699.63745669592, - "ema_span_1": 712.6294877003463, - "enabled": true, - "initial_eprice_ema_dist": 0.0016716655918121463, - "initial_qty_pct": 0.0069995912789837435, - "markup_range": 0.0006315586964646242, - "min_markup": 0.004128066449384683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019701876789393825, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2017690791294244, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9826312181062014, - "ema_span_0": 1045.6818420316492, - "ema_span_1": 400.66376106469426, - "enabled": true, - "initial_eprice_ema_dist": 0.000611561133512006, - "initial_qty_pct": 0.00886604144127456, - "markup_range": 0.0016175100336028598, - "min_markup": 0.004039972569513785, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05849581987864839, - "rentry_pprice_dist_wallet_exposure_weighting": 0.26784678832760955, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ORBSUSDT.json b/configs/live/multisymbol/no_AU/ORBSUSDT.json deleted file mode 100644 index 8af841c16..000000000 --- a/configs/live/multisymbol/no_AU/ORBSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ORDIUSDT.json b/configs/live/multisymbol/no_AU/ORDIUSDT.json deleted file mode 100644 index ec4808db4..000000000 --- a/configs/live/multisymbol/no_AU/ORDIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.898083850242024, - "ema_span_0": 1426.285590876822, - "ema_span_1": 1424.335791465121, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01968097261972087, - "markup_range": 0.0035071222518446776, - "min_markup": 0.005533845048715687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03385601367703975, - "rentry_pprice_dist_wallet_exposure_weighting": 3.73109080433956, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/OXTUSDT.json b/configs/live/multisymbol/no_AU/OXTUSDT.json deleted file mode 100644 index ed4c51bb9..000000000 --- a/configs/live/multisymbol/no_AU/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5793620725516269, - "ema_span_0": 1261.7539266767174, - "ema_span_1": 1262.397064741276, - "enabled": true, - "initial_eprice_ema_dist": 0.002347774982749378, - "initial_qty_pct": 0.008151352750144504, - "markup_range": 0.0002860501145161098, - "min_markup": 0.003815907544379429, - "n_close_orders": 4, - "rentry_pprice_dist": 0.021711269576136914, - "rentry_pprice_dist_wallet_exposure_weighting": 0.732735687577732, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8325568952629749, - "ema_span_0": 1377.689410593319, - "ema_span_1": 1316.2051503163382, - "enabled": true, - "initial_eprice_ema_dist": -0.005560952637674887, - "initial_qty_pct": 0.014698512476153969, - "markup_range": 0.004226909604066897, - "min_markup": 0.0034635209215393725, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02432055906712496, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4038140851965804, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PENDLEUSDT.json b/configs/live/multisymbol/no_AU/PENDLEUSDT.json deleted file mode 100644 index 6a0790a42..000000000 --- a/configs/live/multisymbol/no_AU/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.898083850242024, - "ema_span_0": 1426.285590876822, - "ema_span_1": 1424.335791465121, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01968097261972087, - "markup_range": 0.0035071222518446776, - "min_markup": 0.005533845048715687, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03385601367703975, - "rentry_pprice_dist_wallet_exposure_weighting": 3.73109080433956, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PEOPLEUSDT.json b/configs/live/multisymbol/no_AU/PEOPLEUSDT.json deleted file mode 100644 index 4ad3c7f61..000000000 --- a/configs/live/multisymbol/no_AU/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7127996619834288, - "ema_span_0": 624.1921898696093, - "ema_span_1": 662.6420983003411, - "enabled": true, - "initial_eprice_ema_dist": -0.007004287940934794, - "initial_qty_pct": 0.007771324959590781, - "markup_range": 0.004414780245155629, - "min_markup": 0.0025427254021188604, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03695639965767077, - "rentry_pprice_dist_wallet_exposure_weighting": 4.302084187858983, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PERPUSDT.json b/configs/live/multisymbol/no_AU/PERPUSDT.json deleted file mode 100644 index 18a63324e..000000000 --- a/configs/live/multisymbol/no_AU/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.25120865294591, - "ema_span_0": 924.281745023731, - "ema_span_1": 1126.9205768818265, - "enabled": true, - "initial_eprice_ema_dist": -0.006626417961538352, - "initial_qty_pct": 0.005390451321060489, - "markup_range": 0.004936514169361442, - "min_markup": 0.0023326868861701855, - "n_close_orders": 10, - "rentry_pprice_dist": 0.047854240619392606, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1956099784121452, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2739661777308737, - "ema_span_0": 1311.9461421240344, - "ema_span_1": 1140.98494408494, - "enabled": true, - "initial_eprice_ema_dist": -0.0018591669706837296, - "initial_qty_pct": 0.007037592861027184, - "markup_range": 0.0035445068175967934, - "min_markup": 0.002670310361944757, - "n_close_orders": 6, - "rentry_pprice_dist": 0.020499237500803784, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7706766468478556, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PHBUSDT.json b/configs/live/multisymbol/no_AU/PHBUSDT.json deleted file mode 100644 index e29463711..000000000 --- a/configs/live/multisymbol/no_AU/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1000253088461639, - "ema_span_0": 1097.8744732697232, - "ema_span_1": 406.91457583186894, - "enabled": true, - "initial_eprice_ema_dist": -0.0027409371987949004, - "initial_qty_pct": 0.018805446219805615, - "markup_range": 0.002479346622921817, - "min_markup": 0.006656628235282698, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02831082617853845, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7368907040172634, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PIXELUSDT.json b/configs/live/multisymbol/no_AU/PIXELUSDT.json deleted file mode 100644 index 647dd5bc7..000000000 --- a/configs/live/multisymbol/no_AU/PIXELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0.0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7669071183869411, - "ema_span_0": 1432.826356668545, - "ema_span_1": 726.4420281977382, - "enabled": true, - "initial_eprice_ema_dist": -0.0082460794355585, - "initial_qty_pct": 0.006217026443758472, - "markup_range": 0.001319917425168107, - "min_markup": 0.009785870250428595, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/POLYXUSDT.json b/configs/live/multisymbol/no_AU/POLYXUSDT.json deleted file mode 100644 index 6d35dab29..000000000 --- a/configs/live/multisymbol/no_AU/POLYXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.56219586740148, - "ema_span_0": 1377.4444504763974, - "ema_span_1": 1146.986429279253, - "enabled": true, - "initial_eprice_ema_dist": -0.005195180931239749, - "initial_qty_pct": 0.006395157712924707, - "markup_range": 0.0013034965471744203, - "min_markup": 0.0031647242712170183, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030067167750076732, - "rentry_pprice_dist_wallet_exposure_weighting": 1.803733038911203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PORTALUSDT.json b/configs/live/multisymbol/no_AU/PORTALUSDT.json deleted file mode 100644 index 84d904840..000000000 --- a/configs/live/multisymbol/no_AU/PORTALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.032841025699854, - "ema_span_0": 603.3684823287402, - "ema_span_1": 593.2914462355499, - "enabled": true, - "initial_eprice_ema_dist": -0.006686699042370069, - "initial_qty_pct": 0.019343563613571375, - "markup_range": 0.0035139190888152203, - "min_markup": 0.0041974976207321225, - "n_close_orders": 2, - "rentry_pprice_dist": 0.024538943373011338, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6223178652929873, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/POWRUSDT.json b/configs/live/multisymbol/no_AU/POWRUSDT.json deleted file mode 100644 index be9bf7fa0..000000000 --- a/configs/live/multisymbol/no_AU/POWRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4375045306819496, - "ema_span_0": 579.088748896372, - "ema_span_1": 845.6030651852784, - "enabled": true, - "initial_eprice_ema_dist": -0.008300880009457315, - "initial_qty_pct": 0.007172098575906339, - "markup_range": 0.00619244285449038, - "min_markup": 0.0056401077464158225, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0295363730037309, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8071183798456727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9157554456727748, - "ema_span_0": 659.6887162646505, - "ema_span_1": 1096.2599340520574, - "enabled": true, - "initial_eprice_ema_dist": -0.0011908967850339045, - "initial_qty_pct": 0.009812704431320407, - "markup_range": 0.006530350806020587, - "min_markup": 0.0073384545812298484, - "n_close_orders": 8, - "rentry_pprice_dist": 0.038150882950626366, - "rentry_pprice_dist_wallet_exposure_weighting": 4.720113063782538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/PYTHUSDT.json b/configs/live/multisymbol/no_AU/PYTHUSDT.json deleted file mode 100644 index 7599c1bf1..000000000 --- a/configs/live/multisymbol/no_AU/PYTHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.21904752207177, - "ema_span_0": 802.7950029196085, - "ema_span_1": 802.267391792829, - "enabled": true, - "initial_eprice_ema_dist": -0.0025141336939064397, - "initial_qty_pct": 0.017627099852669616, - "markup_range": 0.006837818821715701, - "min_markup": 0.00963882047671851, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045400086213569474, - "rentry_pprice_dist_wallet_exposure_weighting": 3.665401966376619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/QNTUSDT.json b/configs/live/multisymbol/no_AU/QNTUSDT.json deleted file mode 100644 index 71eed6b47..000000000 --- a/configs/live/multisymbol/no_AU/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.861289071126022, - "ema_span_0": 570.7424324540953, - "ema_span_1": 514.244786685066, - "enabled": true, - "initial_eprice_ema_dist": 0.0027352875636505046, - "initial_qty_pct": 0.011236281116613855, - "markup_range": 0.0016714313566046455, - "min_markup": 0.0033659905626506796, - "n_close_orders": 9, - "rentry_pprice_dist": 0.032471982235901774, - "rentry_pprice_dist_wallet_exposure_weighting": 1.878714040563697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/QTUMUSDT.json b/configs/live/multisymbol/no_AU/QTUMUSDT.json deleted file mode 100644 index 6dcaa9a4f..000000000 --- a/configs/live/multisymbol/no_AU/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10072394621572836, - "ema_span_0": 787.8195498940908, - "ema_span_1": 598.5605990844002, - "enabled": true, - "initial_eprice_ema_dist": 0.00027476696033320707, - "initial_qty_pct": 0.01859145648746162, - "markup_range": 0.003965463290748108, - "min_markup": 0.004029873911544329, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03812171972055059, - "rentry_pprice_dist_wallet_exposure_weighting": 2.208886807558062, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.009981618868015, - "ema_span_0": 1123.962392530083, - "ema_span_1": 541.6572949971098, - "enabled": true, - "initial_eprice_ema_dist": -0.00016305873772747435, - "initial_qty_pct": 0.012144360995253739, - "markup_range": 0.0018003550534343023, - "min_markup": 0.005630591218912932, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02962791798941469, - "rentry_pprice_dist_wallet_exposure_weighting": 5.943865740697062, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RADUSDT.json b/configs/live/multisymbol/no_AU/RADUSDT.json deleted file mode 100644 index e38d3357f..000000000 --- a/configs/live/multisymbol/no_AU/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RDNTUSDT.json b/configs/live/multisymbol/no_AU/RDNTUSDT.json deleted file mode 100644 index 0ef42038b..000000000 --- a/configs/live/multisymbol/no_AU/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.768447762334312, - "ema_span_0": 1399.5187805849196, - "ema_span_1": 1424.9400811323046, - "enabled": true, - "initial_eprice_ema_dist": -0.007312215039645182, - "initial_qty_pct": 0.012505180835640423, - "markup_range": 0.0060727182120873585, - "min_markup": 0.006662255883576896, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02384959320623242, - "rentry_pprice_dist_wallet_exposure_weighting": 3.138723491659386, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7462685377597977, - "ema_span_0": 511.8560462090011, - "ema_span_1": 568.477435153946, - "enabled": true, - "initial_eprice_ema_dist": -0.006383865417420748, - "initial_qty_pct": 0.011078545593023655, - "markup_range": 0.004668351197589904, - "min_markup": 0.004192178780478336, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026001922012736885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23931909568469828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/REEFUSDT.json b/configs/live/multisymbol/no_AU/REEFUSDT.json deleted file mode 100644 index acb3a61a6..000000000 --- a/configs/live/multisymbol/no_AU/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RENUSDT.json b/configs/live/multisymbol/no_AU/RENUSDT.json deleted file mode 100644 index 11535f992..000000000 --- a/configs/live/multisymbol/no_AU/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3312710099916436, - "ema_span_0": 1192.268195300751, - "ema_span_1": 1196.406002830336, - "enabled": true, - "initial_eprice_ema_dist": -0.004264726213907415, - "initial_qty_pct": 0.006495646128856158, - "markup_range": 0.003330104084938854, - "min_markup": 0.0010791213672847698, - "n_close_orders": 14, - "rentry_pprice_dist": 0.027583705397565734, - "rentry_pprice_dist_wallet_exposure_weighting": 0.024510843456297945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RIFUSDT.json b/configs/live/multisymbol/no_AU/RIFUSDT.json deleted file mode 100644 index 802db0286..000000000 --- a/configs/live/multisymbol/no_AU/RIFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RLCUSDT.json b/configs/live/multisymbol/no_AU/RLCUSDT.json deleted file mode 100644 index 7599c1bf1..000000000 --- a/configs/live/multisymbol/no_AU/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.21904752207177, - "ema_span_0": 802.7950029196085, - "ema_span_1": 802.267391792829, - "enabled": true, - "initial_eprice_ema_dist": -0.0025141336939064397, - "initial_qty_pct": 0.017627099852669616, - "markup_range": 0.006837818821715701, - "min_markup": 0.00963882047671851, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045400086213569474, - "rentry_pprice_dist_wallet_exposure_weighting": 3.665401966376619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RNDRUSDT.json b/configs/live/multisymbol/no_AU/RNDRUSDT.json deleted file mode 100644 index 917f8a48a..000000000 --- a/configs/live/multisymbol/no_AU/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7746805049514187, - "ema_span_0": 921.3388516668051, - "ema_span_1": 977.6879049188769, - "enabled": true, - "initial_eprice_ema_dist": 0.002982238144534103, - "initial_qty_pct": 0.015549174561986262, - "markup_range": 0.00024502281245861423, - "min_markup": 0.003834887785508549, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043011324392020406, - "rentry_pprice_dist_wallet_exposure_weighting": 6.53631107560171, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RONINUSDT.json b/configs/live/multisymbol/no_AU/RONINUSDT.json deleted file mode 100644 index fc24c93b3..000000000 --- a/configs/live/multisymbol/no_AU/RONINUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.09448356099874, - "ema_span_0": 987.6521467842143, - "ema_span_1": 1123.6952205874156, - "enabled": true, - "initial_eprice_ema_dist": 0.0014513717810008557, - "initial_qty_pct": 0.02, - "markup_range": 0.003510647234707698, - "min_markup": 0.0011687861556534834, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03330233308514292, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7265923540279409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ROSEUSDT.json b/configs/live/multisymbol/no_AU/ROSEUSDT.json deleted file mode 100644 index 8c08c3474..000000000 --- a/configs/live/multisymbol/no_AU/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.610165935155785, - "ema_span_0": 1142.1064045986368, - "ema_span_1": 1046.1824616964843, - "enabled": true, - "initial_eprice_ema_dist": -0.0087146472041154, - "initial_qty_pct": 0.006722876596456217, - "markup_range": 0.0016596428805405415, - "min_markup": 0.004243394576994393, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02946794502109941, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4609491502559733, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.779356882142794, - "ema_span_0": 432.8920563946013, - "ema_span_1": 553.3975386186394, - "enabled": true, - "initial_eprice_ema_dist": 0.0028955471894754714, - "initial_qty_pct": 0.007435368857356807, - "markup_range": 0.002328279603077911, - "min_markup": 0.003274948204353881, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03424249361224487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9373501606766115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RSRUSDT.json b/configs/live/multisymbol/no_AU/RSRUSDT.json deleted file mode 100644 index 6996a98e0..000000000 --- a/configs/live/multisymbol/no_AU/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5491317235479696, - "ema_span_0": 717.1973756752521, - "ema_span_1": 1433.176434678814, - "enabled": true, - "initial_eprice_ema_dist": 0.0027667076128023577, - "initial_qty_pct": 0.005, - "markup_range": 0.0026562085504076107, - "min_markup": 0.0014940035372707095, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023267892014769732, - "rentry_pprice_dist_wallet_exposure_weighting": 4.05164601517777, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9308438302473983, - "ema_span_0": 1426.732279405134, - "ema_span_1": 1439.5300194932531, - "enabled": true, - "initial_eprice_ema_dist": -0.003973662852103982, - "initial_qty_pct": 0.006970533901616542, - "markup_range": 0.0075540837108613364, - "min_markup": 0.008045260754556175, - "n_close_orders": 6, - "rentry_pprice_dist": 0.041150087190372046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2303229895494494, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RUNEUSDT.json b/configs/live/multisymbol/no_AU/RUNEUSDT.json deleted file mode 100644 index d033aec50..000000000 --- a/configs/live/multisymbol/no_AU/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.136980516315344, - "ema_span_0": 990.5411928116741, - "ema_span_1": 1107.7590226770542, - "enabled": true, - "initial_eprice_ema_dist": -0.00673973466369681, - "initial_qty_pct": 0.006748739638866885, - "markup_range": 0.001916299903031851, - "min_markup": 0.005651226545313381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.019491943571174564, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2047101396037654, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9826312181062014, - "ema_span_0": 1045.6818420316492, - "ema_span_1": 400.66376106469426, - "enabled": true, - "initial_eprice_ema_dist": 0.000611561133512006, - "initial_qty_pct": 0.00886604144127456, - "markup_range": 0.0016175100336028598, - "min_markup": 0.004039972569513785, - "n_close_orders": 8, - "rentry_pprice_dist": 0.05849581987864839, - "rentry_pprice_dist_wallet_exposure_weighting": 0.26784678832760955, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/RVNUSDT.json b/configs/live/multisymbol/no_AU/RVNUSDT.json deleted file mode 100644 index 80405dec2..000000000 --- a/configs/live/multisymbol/no_AU/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9631960327642634, - "ema_span_0": 1236.105995867478, - "ema_span_1": 1077.3963586181405, - "enabled": true, - "initial_eprice_ema_dist": -0.006857784362932138, - "initial_qty_pct": 0.006383168170977139, - "markup_range": 0.004339697803781797, - "min_markup": 0.008271471184368518, - "n_close_orders": 11, - "rentry_pprice_dist": 0.021940048253938565, - "rentry_pprice_dist_wallet_exposure_weighting": 6.8831707193410825, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9074088928394692, - "ema_span_0": 1225.1593351104916, - "ema_span_1": 1284.4445043294322, - "enabled": true, - "initial_eprice_ema_dist": -0.009943258655235904, - "initial_qty_pct": 0.007029446982434334, - "markup_range": 2.946347169311016e-05, - "min_markup": 0.002975626910710349, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025779942991905537, - "rentry_pprice_dist_wallet_exposure_weighting": 3.268387857434339, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SANDUSDT.json b/configs/live/multisymbol/no_AU/SANDUSDT.json deleted file mode 100644 index 5bdb3a0ae..000000000 --- a/configs/live/multisymbol/no_AU/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.358669773895032, - "ema_span_0": 824.9976971890451, - "ema_span_1": 930.553975809324, - "enabled": true, - "initial_eprice_ema_dist": 0.0008772929611175167, - "initial_qty_pct": 0.010098024882728825, - "markup_range": 0.0033314215649593503, - "min_markup": 0.0022334620178643904, - "n_close_orders": 5, - "rentry_pprice_dist": 0.023927116028807597, - "rentry_pprice_dist_wallet_exposure_weighting": 3.59589806138571, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9711732120666596, - "ema_span_0": 1158.384361819394, - "ema_span_1": 756.1945540715554, - "enabled": true, - "initial_eprice_ema_dist": 0.0025187410545642677, - "initial_qty_pct": 0.02, - "markup_range": 0.0010757350976541833, - "min_markup": 0.0038768359427695668, - "n_close_orders": 10, - "rentry_pprice_dist": 0.06, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SEIUSDT.json b/configs/live/multisymbol/no_AU/SEIUSDT.json deleted file mode 100644 index af21ac40e..000000000 --- a/configs/live/multisymbol/no_AU/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.4236511580951428, - "ema_span_0": 1049.9936047089307, - "ema_span_1": 1088.1971569560926, - "enabled": true, - "initial_eprice_ema_dist": 4.3574669982065276e-05, - "initial_qty_pct": 0.006646618675812683, - "markup_range": 0.004027356225552387, - "min_markup": 0.007462882106544517, - "n_close_orders": 9, - "rentry_pprice_dist": 0.05873801738264467, - "rentry_pprice_dist_wallet_exposure_weighting": 6.636628458177651, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SFPUSDT.json b/configs/live/multisymbol/no_AU/SFPUSDT.json deleted file mode 100644 index 601333fcb..000000000 --- a/configs/live/multisymbol/no_AU/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2215641547177434, - "ema_span_0": 1087.9072038258594, - "ema_span_1": 1140.438225615017, - "enabled": true, - "initial_eprice_ema_dist": -0.0014029101835263183, - "initial_qty_pct": 0.005924463719350489, - "markup_range": 0.008540767292953524, - "min_markup": 0.003337288791547102, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02896761893160794, - "rentry_pprice_dist_wallet_exposure_weighting": 6.280742441164259, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1407674819540503, - "ema_span_0": 600.6730996025576, - "ema_span_1": 706.4325106842696, - "enabled": true, - "initial_eprice_ema_dist": -0.0078039353860458825, - "initial_qty_pct": 0.008426395372658128, - "markup_range": 0.007143412363284117, - "min_markup": 0.004312289277978274, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03743230546577915, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10420111410769953, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SKLUSDT.json b/configs/live/multisymbol/no_AU/SKLUSDT.json deleted file mode 100644 index 39d05b50a..000000000 --- a/configs/live/multisymbol/no_AU/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.10000000596553002, - "ema_span_0": 929.9812114760467, - "ema_span_1": 941.0347791612975, - "enabled": true, - "initial_eprice_ema_dist": -0.003991486046804449, - "initial_qty_pct": 0.0062838948398916605, - "markup_range": 0.0053377597436320345, - "min_markup": 0.004808631305477758, - "n_close_orders": 2, - "rentry_pprice_dist": 0.039485103117888054, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1364660075707736, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.6284887542261557, - "ema_span_0": 1122.184465747614, - "ema_span_1": 633.8851985633526, - "enabled": true, - "initial_eprice_ema_dist": -0.00488180547719058, - "initial_qty_pct": 0.005506154362056936, - "markup_range": 0.006984837413309399, - "min_markup": 0.009711777265178646, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04610845230154611, - "rentry_pprice_dist_wallet_exposure_weighting": 6.84436042257252, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SLPUSDT.json b/configs/live/multisymbol/no_AU/SLPUSDT.json deleted file mode 100644 index a3ab2ce99..000000000 --- a/configs/live/multisymbol/no_AU/SLPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1678459732677178, - "ema_span_0": 440.0348164817951, - "ema_span_1": 483.59860064472315, - "enabled": true, - "initial_eprice_ema_dist": -0.005882691407516068, - "initial_qty_pct": 0.008147025337749022, - "markup_range": 0.001769074259013543, - "min_markup": 0.003095219845299725, - "n_close_orders": 3, - "rentry_pprice_dist": 0.01961392361623543, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5194424975644029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0195748688318564, - "ema_span_0": 1032.9876182754965, - "ema_span_1": 1384.4199627826313, - "enabled": true, - "initial_eprice_ema_dist": 0.002964050067405958, - "initial_qty_pct": 0.012276323438665585, - "markup_range": 0.008365504361812269, - "min_markup": 0.006451876146961201, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04876530739561381, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3121077123682445, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SNTUSDT.json b/configs/live/multisymbol/no_AU/SNTUSDT.json deleted file mode 100644 index 31d7a5d5d..000000000 --- a/configs/live/multisymbol/no_AU/SNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SNXUSDT.json b/configs/live/multisymbol/no_AU/SNXUSDT.json deleted file mode 100644 index b097b944b..000000000 --- a/configs/live/multisymbol/no_AU/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9280183754067597, - "ema_span_0": 1005.1013083288595, - "ema_span_1": 1319.7800189035072, - "enabled": true, - "initial_eprice_ema_dist": 0.002261370012411399, - "initial_qty_pct": 0.01948301192113653, - "markup_range": 0.002859427608053925, - "min_markup": 0.0052134477675001385, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03477700726588068, - "rentry_pprice_dist_wallet_exposure_weighting": 6.8477214491291925, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.429232835173058, - "ema_span_0": 1373.8554224777074, - "ema_span_1": 575.1863608354481, - "enabled": true, - "initial_eprice_ema_dist": -0.0021964840780753082, - "initial_qty_pct": 0.009684351562086288, - "markup_range": 6.347250842397099e-05, - "min_markup": 0.0022125862752340516, - "n_close_orders": 13, - "rentry_pprice_dist": 0.023735025844592438, - "rentry_pprice_dist_wallet_exposure_weighting": 4.445847754812645, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SOLUSDT.json b/configs/live/multisymbol/no_AU/SOLUSDT.json deleted file mode 100644 index 6da502c20..000000000 --- a/configs/live/multisymbol/no_AU/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4699016146930428, - "ema_span_0": 1304.3541053146641, - "ema_span_1": 1415.0365114101714, - "enabled": true, - "initial_eprice_ema_dist": -0.0062494308971328605, - "initial_qty_pct": 0.019972223351105427, - "markup_range": 0.004344292972737513, - "min_markup": 0.002522285542455863, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028591802756668123, - "rentry_pprice_dist_wallet_exposure_weighting": 0.22299898571140442, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SPELLUSDT.json b/configs/live/multisymbol/no_AU/SPELLUSDT.json deleted file mode 100644 index 64feb4a8d..000000000 --- a/configs/live/multisymbol/no_AU/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6377931024910679, - "ema_span_0": 790.3551732113342, - "ema_span_1": 928.0416080681598, - "enabled": true, - "initial_eprice_ema_dist": -0.004133945688039767, - "initial_qty_pct": 0.008048027690748702, - "markup_range": 0.009974866091135832, - "min_markup": 0.005678798071303473, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02380397376271462, - "rentry_pprice_dist_wallet_exposure_weighting": 2.805796385987601, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.980416937439527, - "ema_span_0": 1107.7139188409062, - "ema_span_1": 838.7324768100667, - "enabled": true, - "initial_eprice_ema_dist": -0.0007566662402691902, - "initial_qty_pct": 0.007066805786656659, - "markup_range": 0.0009904431140820198, - "min_markup": 0.006103380398660157, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026223539158732528, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4107491897239415, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SSVUSDT.json b/configs/live/multisymbol/no_AU/SSVUSDT.json deleted file mode 100644 index 86e201142..000000000 --- a/configs/live/multisymbol/no_AU/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.009981618868015, - "ema_span_0": 1123.962392530083, - "ema_span_1": 541.6572949971098, - "enabled": true, - "initial_eprice_ema_dist": -0.00016305873772747435, - "initial_qty_pct": 0.012144360995253739, - "markup_range": 0.0018003550534343023, - "min_markup": 0.005630591218912932, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02962791798941469, - "rentry_pprice_dist_wallet_exposure_weighting": 5.943865740697062, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STEEMUSDT.json b/configs/live/multisymbol/no_AU/STEEMUSDT.json deleted file mode 100644 index 1e8c6fe09..000000000 --- a/configs/live/multisymbol/no_AU/STEEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STGUSDT.json b/configs/live/multisymbol/no_AU/STGUSDT.json deleted file mode 100644 index d6d3c8306..000000000 --- a/configs/live/multisymbol/no_AU/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STMXUSDT.json b/configs/live/multisymbol/no_AU/STMXUSDT.json deleted file mode 100644 index c611fe704..000000000 --- a/configs/live/multisymbol/no_AU/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1136200865682403, - "ema_span_0": 1089.468611102197, - "ema_span_1": 1041.4402969672844, - "enabled": true, - "initial_eprice_ema_dist": 0.002775475012225147, - "initial_qty_pct": 0.012213318830830162, - "markup_range": 0.0019738848654710624, - "min_markup": 0.009953905980263996, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0324676367670747, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8102248465256605, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5249902301868143, - "ema_span_0": 958.5070799549975, - "ema_span_1": 743.5333870615893, - "enabled": true, - "initial_eprice_ema_dist": -0.006281911393073577, - "initial_qty_pct": 0.011169022828019435, - "markup_range": 0.005133698576591956, - "min_markup": 0.005317820714653464, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03852695242597729, - "rentry_pprice_dist_wallet_exposure_weighting": 2.980742847113021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STORJUSDT.json b/configs/live/multisymbol/no_AU/STORJUSDT.json deleted file mode 100644 index b7a9c6ca1..000000000 --- a/configs/live/multisymbol/no_AU/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.88029946624713, - "ema_span_0": 649.9368472064199, - "ema_span_1": 898.7781266544856, - "enabled": true, - "initial_eprice_ema_dist": 0.0026273614313904996, - "initial_qty_pct": 0.008835809996045302, - "markup_range": 0.00197740876890397, - "min_markup": 0.004305126222368225, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0434886760287103, - "rentry_pprice_dist_wallet_exposure_weighting": 2.049399006278385, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8161019700756513, - "ema_span_0": 613.0134942035509, - "ema_span_1": 950.1808463193343, - "enabled": true, - "initial_eprice_ema_dist": -0.0051402761477329, - "initial_qty_pct": 0.005625434597565511, - "markup_range": 0.002438875009361798, - "min_markup": 0.005849496969768708, - "n_close_orders": 15, - "rentry_pprice_dist": 0.035648299903062376, - "rentry_pprice_dist_wallet_exposure_weighting": 1.713535452034068, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STPTUSDT.json b/configs/live/multisymbol/no_AU/STPTUSDT.json deleted file mode 100644 index 0b25d8f9b..000000000 --- a/configs/live/multisymbol/no_AU/STPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STRAXUSDT.json b/configs/live/multisymbol/no_AU/STRAXUSDT.json deleted file mode 100644 index 91d629ded..000000000 --- a/configs/live/multisymbol/no_AU/STRAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9100542900183852, - "ema_span_0": 438.658394509376, - "ema_span_1": 445.65249912729666, - "enabled": true, - "initial_eprice_ema_dist": -0.00999991992226752, - "initial_qty_pct": 0.007533234559091, - "markup_range": 0.0071567426867904065, - "min_markup": 0.0058115405230268966, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03509873290798084, - "rentry_pprice_dist_wallet_exposure_weighting": 1.406382387364268, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1781344165381196, - "ema_span_0": 1378.2973709797225, - "ema_span_1": 1317.1001098796871, - "enabled": true, - "initial_eprice_ema_dist": -0.0011490225974891022, - "initial_qty_pct": 0.010423405040990284, - "markup_range": 0.0028990719840094707, - "min_markup": 0.0045979974574580675, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0200955626391935, - "rentry_pprice_dist_wallet_exposure_weighting": 4.477541425918538, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STRKUSDT.json b/configs/live/multisymbol/no_AU/STRKUSDT.json deleted file mode 100644 index 58dcd742b..000000000 --- a/configs/live/multisymbol/no_AU/STRKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5838201288467455, - "ema_span_0": 807.8006372971789, - "ema_span_1": 1028.674614155757, - "enabled": true, - "initial_eprice_ema_dist": -0.006400534159964601, - "initial_qty_pct": 0.005267803960362067, - "markup_range": 0.003890273991084484, - "min_markup": 0.003814548548367528, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04225655438141939, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7016804268157846, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.530310192517021, - "ema_span_0": 931.2179001666473, - "ema_span_1": 1230.4348271834565, - "enabled": true, - "initial_eprice_ema_dist": -0.0070643468075439995, - "initial_qty_pct": 0.011675458025438824, - "markup_range": 0.0036649060442478926, - "min_markup": 0.005280442888847122, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03714245274555599, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1886302610663578, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/STXUSDT.json b/configs/live/multisymbol/no_AU/STXUSDT.json deleted file mode 100644 index 02db5dbb0..000000000 --- a/configs/live/multisymbol/no_AU/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.18020294944274384, - "ema_span_0": 534.6116953850265, - "ema_span_1": 525.8301793868686, - "enabled": true, - "initial_eprice_ema_dist": -0.005663220098220674, - "initial_qty_pct": 0.013948777121950211, - "markup_range": 0.0033845180014539285, - "min_markup": 0.003731929953161556, - "n_close_orders": 2, - "rentry_pprice_dist": 0.01698573632894032, - "rentry_pprice_dist_wallet_exposure_weighting": 4.424060357992101, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.966687567910197, - "ema_span_0": 749.5134019064611, - "ema_span_1": 1281.3144943534287, - "enabled": true, - "initial_eprice_ema_dist": -0.0006423620829190632, - "initial_qty_pct": 0.015283484013860052, - "markup_range": 0.003132569119602187, - "min_markup": 0.005636599354075086, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05375814293426339, - "rentry_pprice_dist_wallet_exposure_weighting": 5.64933016568611, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SUIUSDT.json b/configs/live/multisymbol/no_AU/SUIUSDT.json deleted file mode 100644 index 71f2deb20..000000000 --- a/configs/live/multisymbol/no_AU/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4180428610383833, - "ema_span_0": 1392.5443568930261, - "ema_span_1": 1179.1275602324895, - "enabled": true, - "initial_eprice_ema_dist": 0.0008797893515443136, - "initial_qty_pct": 0.01731461500104241, - "markup_range": 0.005871660520604379, - "min_markup": 0.0062547910322824874, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03510271629761136, - "rentry_pprice_dist_wallet_exposure_weighting": 3.715850892349411, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SUPERUSDT.json b/configs/live/multisymbol/no_AU/SUPERUSDT.json deleted file mode 100644 index 17fc91eae..000000000 --- a/configs/live/multisymbol/no_AU/SUPERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7744167571017946, - "ema_span_0": 629.7331143469389, - "ema_span_1": 829.6540223214417, - "enabled": true, - "initial_eprice_ema_dist": -0.002106605095191355, - "initial_qty_pct": 0.006316145502872654, - "markup_range": 0.002660809801426568, - "min_markup": 0.005606694784076129, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032454468623924926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3624276992424163, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7368799153028465, - "ema_span_0": 1048.4996709948368, - "ema_span_1": 670.330384517062, - "enabled": true, - "initial_eprice_ema_dist": 0.00012138366376879923, - "initial_qty_pct": 0.005308685006948045, - "markup_range": 0.003311655037900485, - "min_markup": 0.003414277136486953, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03159832382727077, - "rentry_pprice_dist_wallet_exposure_weighting": 2.785535772956099, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SUSHIUSDT.json b/configs/live/multisymbol/no_AU/SUSHIUSDT.json deleted file mode 100644 index e8e3941f5..000000000 --- a/configs/live/multisymbol/no_AU/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.7958746893344937, - "ema_span_0": 605.006745014809, - "ema_span_1": 661.5441390767999, - "enabled": true, - "initial_eprice_ema_dist": 0.0017885261913816685, - "initial_qty_pct": 0.01842632385954889, - "markup_range": 0.0034607225183080847, - "min_markup": 0.003488079372623931, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044262979096669125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.007554922706948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9126648396493593, - "ema_span_0": 532.6543816447255, - "ema_span_1": 1324.4767592034896, - "enabled": true, - "initial_eprice_ema_dist": -0.006909694986161618, - "initial_qty_pct": 0.014251120939408127, - "markup_range": 0.007099304520738205, - "min_markup": 0.004995881172485221, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04547906956252059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1080147355026637, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/SXPUSDT.json b/configs/live/multisymbol/no_AU/SXPUSDT.json deleted file mode 100644 index 86293ba4b..000000000 --- a/configs/live/multisymbol/no_AU/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.3918186203491656, - "ema_span_0": 847.1895495259638, - "ema_span_1": 814.2418106338979, - "enabled": true, - "initial_eprice_ema_dist": -0.002830128031650846, - "initial_qty_pct": 0.009636415626736818, - "markup_range": 0.002922313469617343, - "min_markup": 0.002214787620495939, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03289293554402205, - "rentry_pprice_dist_wallet_exposure_weighting": 1.986869395713439, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2229839628351353, - "ema_span_0": 652.7174727604474, - "ema_span_1": 449.1571851666665, - "enabled": true, - "initial_eprice_ema_dist": -0.007265361944464664, - "initial_qty_pct": 0.006975125064552968, - "markup_range": 0.0010569382355481282, - "min_markup": 0.0032289674720309843, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04864114415676946, - "rentry_pprice_dist_wallet_exposure_weighting": 6.134571747109618, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/THETAUSDT.json b/configs/live/multisymbol/no_AU/THETAUSDT.json deleted file mode 100644 index 6c6720f95..000000000 --- a/configs/live/multisymbol/no_AU/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5526614763506729, - "ema_span_0": 674.4749806782737, - "ema_span_1": 647.7686019053489, - "enabled": true, - "initial_eprice_ema_dist": -0.007330198364521328, - "initial_qty_pct": 0.01597329887675025, - "markup_range": 0.00583030914639619, - "min_markup": 0.0046214421722436585, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0317994033154236, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6191181737831095, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TIAUSDT.json b/configs/live/multisymbol/no_AU/TIAUSDT.json deleted file mode 100644 index 5cd910475..000000000 --- a/configs/live/multisymbol/no_AU/TIAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9074088928394692, - "ema_span_0": 1225.1593351104916, - "ema_span_1": 1284.4445043294322, - "enabled": true, - "initial_eprice_ema_dist": -0.009943258655235904, - "initial_qty_pct": 0.007029446982434334, - "markup_range": 2.946347169311016e-05, - "min_markup": 0.002975626910710349, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025779942991905537, - "rentry_pprice_dist_wallet_exposure_weighting": 3.268387857434339, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TLMUSDT.json b/configs/live/multisymbol/no_AU/TLMUSDT.json deleted file mode 100644 index ab890e4ec..000000000 --- a/configs/live/multisymbol/no_AU/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.8995817502423, - "ema_span_0": 1237.8880961773652, - "ema_span_1": 812.1219392700096, - "enabled": true, - "initial_eprice_ema_dist": -0.0022851216640175347, - "initial_qty_pct": 0.018649171518923535, - "markup_range": 0.005405965672746347, - "min_markup": 0.0010000034600744193, - "n_close_orders": 7, - "rentry_pprice_dist": 0.027704339401110323, - "rentry_pprice_dist_wallet_exposure_weighting": 4.300026757434236, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4200893628080442, - "ema_span_0": 799.3704053820314, - "ema_span_1": 1165.4616255219564, - "enabled": true, - "initial_eprice_ema_dist": -0.002827678815854807, - "initial_qty_pct": 0.00610923567956114, - "markup_range": 0.003926183421531431, - "min_markup": 0.007743487319480742, - "n_close_orders": 7, - "rentry_pprice_dist": 0.022464265001072528, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5868242581972276, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TOKENUSDT.json b/configs/live/multisymbol/no_AU/TOKENUSDT.json deleted file mode 100644 index 5cb15a508..000000000 --- a/configs/live/multisymbol/no_AU/TOKENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.265810440709435, - "ema_span_0": 1085.3696013266187, - "ema_span_1": 518.4247284767371, - "enabled": true, - "initial_eprice_ema_dist": 2.895367759278453e-05, - "initial_qty_pct": 0.006104361831184341, - "markup_range": 0.008478248683968456, - "min_markup": 0.0062734922300736054, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03659103166206909, - "rentry_pprice_dist_wallet_exposure_weighting": 5.398449998661578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2786973858222805, - "ema_span_0": 1000.4465971902919, - "ema_span_1": 719.1892457727339, - "enabled": true, - "initial_eprice_ema_dist": -0.0038440126795189146, - "initial_qty_pct": 0.009013348131738912, - "markup_range": 0.004037628610652699, - "min_markup": 0.00936671082180018, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03484864995313628, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0433055323287936, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TONUSDT.json b/configs/live/multisymbol/no_AU/TONUSDT.json deleted file mode 100644 index f1fbc8f84..000000000 --- a/configs/live/multisymbol/no_AU/TONUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4180428610383833, - "ema_span_0": 1392.5443568930261, - "ema_span_1": 1179.1275602324895, - "enabled": true, - "initial_eprice_ema_dist": 0.0008797893515443136, - "initial_qty_pct": 0.01731461500104241, - "markup_range": 0.005871660520604379, - "min_markup": 0.0062547910322824874, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03510271629761136, - "rentry_pprice_dist_wallet_exposure_weighting": 3.715850892349411, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TRBUSDT.json b/configs/live/multisymbol/no_AU/TRBUSDT.json deleted file mode 100644 index 6ad6b2705..000000000 --- a/configs/live/multisymbol/no_AU/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.2791730013407125, - "ema_span_0": 1440, - "ema_span_1": 1151.845426045236, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012244128067282329, - "markup_range": 0.0, - "min_markup": 0.005328664460470563, - "n_close_orders": 10, - "rentry_pprice_dist": 0.05999840353941138, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2599355820864121, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.854728803404313, - "ema_span_0": 1286.2138292586749, - "ema_span_1": 1270.5292205700775, - "enabled": true, - "initial_eprice_ema_dist": 0.0004641870208457502, - "initial_qty_pct": 0.006178095363903385, - "markup_range": 0.005418218857423945, - "min_markup": 0.003264672876335151, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04693753992334264, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2390352014431105, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TRUUSDT.json b/configs/live/multisymbol/no_AU/TRUUSDT.json deleted file mode 100644 index c6261f6af..000000000 --- a/configs/live/multisymbol/no_AU/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.1477638754662738, - "ema_span_0": 943.7698327047028, - "ema_span_1": 1106.0268127828774, - "enabled": true, - "initial_eprice_ema_dist": 0.002881633916898216, - "initial_qty_pct": 0.006800648495335363, - "markup_range": 0.0034752918993589633, - "min_markup": 0.004544571527601139, - "n_close_orders": 14, - "rentry_pprice_dist": 0.038117055791025894, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3280318697494606, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.429232835173058, - "ema_span_0": 1373.8554224777074, - "ema_span_1": 575.1863608354481, - "enabled": true, - "initial_eprice_ema_dist": -0.0021964840780753082, - "initial_qty_pct": 0.009684351562086288, - "markup_range": 6.347250842397099e-05, - "min_markup": 0.0022125862752340516, - "n_close_orders": 13, - "rentry_pprice_dist": 0.023735025844592438, - "rentry_pprice_dist_wallet_exposure_weighting": 4.445847754812645, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TRXUSDT.json b/configs/live/multisymbol/no_AU/TRXUSDT.json deleted file mode 100644 index 849e231e3..000000000 --- a/configs/live/multisymbol/no_AU/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.5793620725516269, - "ema_span_0": 1261.7539266767174, - "ema_span_1": 1262.397064741276, - "enabled": true, - "initial_eprice_ema_dist": 0.002347774982749378, - "initial_qty_pct": 0.008151352750144504, - "markup_range": 0.0002860501145161098, - "min_markup": 0.003815907544379429, - "n_close_orders": 4, - "rentry_pprice_dist": 0.021711269576136914, - "rentry_pprice_dist_wallet_exposure_weighting": 0.732735687577732, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.295112059765415, - "ema_span_0": 1418.512089424174, - "ema_span_1": 465.28837096095685, - "enabled": true, - "initial_eprice_ema_dist": 0.002968356194414089, - "initial_qty_pct": 0.009424841843442175, - "markup_range": 0.0002682790392988458, - "min_markup": 0.0012922045069534585, - "n_close_orders": 12, - "rentry_pprice_dist": 0.018442882477147666, - "rentry_pprice_dist_wallet_exposure_weighting": 4.062049070031281, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TUSDT.json b/configs/live/multisymbol/no_AU/TUSDT.json deleted file mode 100644 index db1424290..000000000 --- a/configs/live/multisymbol/no_AU/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3696353021127098, - "ema_span_0": 884.8620295800949, - "ema_span_1": 907.8030309435865, - "enabled": true, - "initial_eprice_ema_dist": -0.009357326292329592, - "initial_qty_pct": 0.006090726860156613, - "markup_range": 0.006820788717921815, - "min_markup": 0.004462139610751622, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029023852731919406, - "rentry_pprice_dist_wallet_exposure_weighting": 5.577823307420172, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0398403797644193, - "ema_span_0": 511.78171390530144, - "ema_span_1": 1405.7033748987196, - "enabled": true, - "initial_eprice_ema_dist": -0.0019978728355006014, - "initial_qty_pct": 0.007801932378782638, - "markup_range": 0.0034713219823628563, - "min_markup": 0.004196878368856463, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021290840756798025, - "rentry_pprice_dist_wallet_exposure_weighting": 5.513884529533033, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/TWTUSDT.json b/configs/live/multisymbol/no_AU/TWTUSDT.json deleted file mode 100644 index 357c91b3d..000000000 --- a/configs/live/multisymbol/no_AU/TWTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.6850516916385354, - "ema_span_0": 426.12185415017063, - "ema_span_1": 496.26050416975323, - "enabled": true, - "initial_eprice_ema_dist": -0.001927759450286079, - "initial_qty_pct": 0.00522237375491126, - "markup_range": 0.0002740301299901382, - "min_markup": 0.0018052120025589962, - "n_close_orders": 9, - "rentry_pprice_dist": 0.010638872767800392, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8083721509060042, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.097453704851325, - "ema_span_0": 1065.8473469345968, - "ema_span_1": 982.6339606825976, - "enabled": true, - "initial_eprice_ema_dist": -0.006194086040184968, - "initial_qty_pct": 0.011394980264621457, - "markup_range": 0.008725184791758933, - "min_markup": 0.006095402574335019, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027406539583654514, - "rentry_pprice_dist_wallet_exposure_weighting": 6.43718278961336, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/UMAUSDT.json b/configs/live/multisymbol/no_AU/UMAUSDT.json deleted file mode 100644 index 027b41fa7..000000000 --- a/configs/live/multisymbol/no_AU/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.9631960327642634, - "ema_span_0": 1236.105995867478, - "ema_span_1": 1077.3963586181405, - "enabled": true, - "initial_eprice_ema_dist": -0.006857784362932138, - "initial_qty_pct": 0.006383168170977139, - "markup_range": 0.004339697803781797, - "min_markup": 0.008271471184368518, - "n_close_orders": 11, - "rentry_pprice_dist": 0.021940048253938565, - "rentry_pprice_dist_wallet_exposure_weighting": 6.8831707193410825, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.821842083201646, - "ema_span_0": 1313.4081490917101, - "ema_span_1": 1422.1583834116334, - "enabled": true, - "initial_eprice_ema_dist": 0.0026182031948798466, - "initial_qty_pct": 0.006214937579486585, - "markup_range": 0.0016575243438060577, - "min_markup": 0.002239082626467314, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02403722961792485, - "rentry_pprice_dist_wallet_exposure_weighting": 3.284773717844006, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/UNFIUSDT.json b/configs/live/multisymbol/no_AU/UNFIUSDT.json deleted file mode 100644 index 80baaccc1..000000000 --- a/configs/live/multisymbol/no_AU/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.013535378430046, - "ema_span_0": 432.0471378820484, - "ema_span_1": 432.1068338050771, - "enabled": true, - "initial_eprice_ema_dist": -0.0012740846721330725, - "initial_qty_pct": 0.01134365136748603, - "markup_range": 0.01, - "min_markup": 0.00999897255243823, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0507120211985041, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2439169815633515, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.8300227694322646, - "ema_span_0": 1392.8895735007777, - "ema_span_1": 700.6898930455552, - "enabled": true, - "initial_eprice_ema_dist": -0.005804426764473963, - "initial_qty_pct": 0.01254177303569062, - "markup_range": 0.0016906855133074863, - "min_markup": 0.005434727014402432, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015289348532774862, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7625242135237668, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/UNIUSDT.json b/configs/live/multisymbol/no_AU/UNIUSDT.json deleted file mode 100644 index 633dae33a..000000000 --- a/configs/live/multisymbol/no_AU/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.610165935155785, - "ema_span_0": 1142.1064045986368, - "ema_span_1": 1046.1824616964843, - "enabled": true, - "initial_eprice_ema_dist": -0.0087146472041154, - "initial_qty_pct": 0.006722876596456217, - "markup_range": 0.0016596428805405415, - "min_markup": 0.004243394576994393, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02946794502109941, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4609491502559733, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.096635291091908, - "ema_span_0": 1330.039406339461, - "ema_span_1": 1238.3522796278537, - "enabled": true, - "initial_eprice_ema_dist": -0.004816681183131951, - "initial_qty_pct": 0.008181177347843736, - "markup_range": 0.008722281771169226, - "min_markup": 0.0028555643229245162, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03791001394129892, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2927756107330035, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/USDCUSDT.json b/configs/live/multisymbol/no_AU/USDCUSDT.json deleted file mode 100644 index 728663de4..000000000 --- a/configs/live/multisymbol/no_AU/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7409890132729299, - "ema_span_0": 933.3517084796568, - "ema_span_1": 1316.1556632456777, - "enabled": true, - "initial_eprice_ema_dist": -0.007046324243020972, - "initial_qty_pct": 0.018569206389279204, - "markup_range": 0.006506925288972851, - "min_markup": 0.004237688935460271, - "n_close_orders": 8, - "rentry_pprice_dist": 0.0482561544881107, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4530256318298753, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3008588940623578, - "ema_span_0": 998.2554231929834, - "ema_span_1": 737.7192983875165, - "enabled": true, - "initial_eprice_ema_dist": -0.003485218297292396, - "initial_qty_pct": 0.0069166482881956775, - "markup_range": 0.0013395008321940777, - "min_markup": 0.0012358848120434763, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018242430046099913, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2636389516424043, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/USTCUSDT.json b/configs/live/multisymbol/no_AU/USTCUSDT.json deleted file mode 100644 index 1d96d118a..000000000 --- a/configs/live/multisymbol/no_AU/USTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.56219586740148, - "ema_span_0": 1377.4444504763974, - "ema_span_1": 1146.986429279253, - "enabled": true, - "initial_eprice_ema_dist": -0.005195180931239749, - "initial_qty_pct": 0.006395157712924707, - "markup_range": 0.0013034965471744203, - "min_markup": 0.0031647242712170183, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030067167750076732, - "rentry_pprice_dist_wallet_exposure_weighting": 1.803733038911203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.3040205374107681, - "ema_span_0": 912.16896751595, - "ema_span_1": 419.06712671709045, - "enabled": true, - "initial_eprice_ema_dist": -0.008646889552202958, - "initial_qty_pct": 0.01804890119755682, - "markup_range": 0.0026120754661110215, - "min_markup": 0.006113818592774805, - "n_close_orders": 6, - "rentry_pprice_dist": 0.019504086053601134, - "rentry_pprice_dist_wallet_exposure_weighting": 5.246192592311134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/VETUSDT.json b/configs/live/multisymbol/no_AU/VETUSDT.json deleted file mode 100644 index dd4137b1c..000000000 --- a/configs/live/multisymbol/no_AU/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4059985463458717, - "ema_span_0": 548.3792196674449, - "ema_span_1": 548.3879932601744, - "enabled": true, - "initial_eprice_ema_dist": -0.008698964900674353, - "initial_qty_pct": 0.006795414926456369, - "markup_range": 0.0010845161472864424, - "min_markup": 0.0026131557642318543, - "n_close_orders": 15, - "rentry_pprice_dist": 0.014124242142790474, - "rentry_pprice_dist_wallet_exposure_weighting": 6.135744239631218, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/WAVESUSDT.json b/configs/live/multisymbol/no_AU/WAVESUSDT.json deleted file mode 100644 index 9f0156f56..000000000 --- a/configs/live/multisymbol/no_AU/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.7744167571017946, - "ema_span_0": 629.7331143469389, - "ema_span_1": 829.6540223214417, - "enabled": true, - "initial_eprice_ema_dist": -0.002106605095191355, - "initial_qty_pct": 0.006316145502872654, - "markup_range": 0.002660809801426568, - "min_markup": 0.005606694784076129, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032454468623924926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3624276992424163, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/WAXPUSDT.json b/configs/live/multisymbol/no_AU/WAXPUSDT.json deleted file mode 100644 index 624694749..000000000 --- a/configs/live/multisymbol/no_AU/WAXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.3742873046166713, - "ema_span_0": 687.8751576667844, - "ema_span_1": 679.6496846227416, - "enabled": true, - "initial_eprice_ema_dist": -0.005588059547579131, - "initial_qty_pct": 0.0182603820725986, - "markup_range": 0.004929879387417621, - "min_markup": 0.0074990367897317, - "n_close_orders": 16, - "rentry_pprice_dist": 0.046269461206447655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.09578929224806976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/WIFUSDT.json b/configs/live/multisymbol/no_AU/WIFUSDT.json deleted file mode 100644 index 8d279da4a..000000000 --- a/configs/live/multisymbol/no_AU/WIFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9097340585664957, - "ema_span_0": 725.2980481231291, - "ema_span_1": 1165.7416688669111, - "enabled": true, - "initial_eprice_ema_dist": 0.0021669431475078247, - "initial_qty_pct": 0.006613724127916786, - "markup_range": 4.0564054814914306e-05, - "min_markup": 0.0019252087680307456, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04869884375824457, - "rentry_pprice_dist_wallet_exposure_weighting": 5.340181873743636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/WLDUSDT.json b/configs/live/multisymbol/no_AU/WLDUSDT.json deleted file mode 100644 index b74cf4b5c..000000000 --- a/configs/live/multisymbol/no_AU/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0893381708256036, - "ema_span_0": 423.2525124611598, - "ema_span_1": 467.7125480222745, - "enabled": true, - "initial_eprice_ema_dist": -0.0021285169296756034, - "initial_qty_pct": 0.007192977027009017, - "markup_range": 0.00032187207779936847, - "min_markup": 0.009369980741778446, - "n_close_orders": 4, - "rentry_pprice_dist": 0.023950111316024474, - "rentry_pprice_dist_wallet_exposure_weighting": 4.272152081166061, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.854728803404313, - "ema_span_0": 1286.2138292586749, - "ema_span_1": 1270.5292205700775, - "enabled": true, - "initial_eprice_ema_dist": 0.0004641870208457502, - "initial_qty_pct": 0.006178095363903385, - "markup_range": 0.005418218857423945, - "min_markup": 0.003264672876335151, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04693753992334264, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2390352014431105, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/WOOUSDT.json b/configs/live/multisymbol/no_AU/WOOUSDT.json deleted file mode 100644 index e9bf09433..000000000 --- a/configs/live/multisymbol/no_AU/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.2639480518548225, - "ema_span_0": 903.125069785816, - "ema_span_1": 962.265128144106, - "enabled": true, - "initial_eprice_ema_dist": 0.0029821337732177707, - "initial_qty_pct": 0.006858392409496179, - "markup_range": 0.0030580237794616567, - "min_markup": 0.003273807502943524, - "n_close_orders": 6, - "rentry_pprice_dist": 0.017228082945758956, - "rentry_pprice_dist_wallet_exposure_weighting": 5.528520907488279, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XAIUSDT.json b/configs/live/multisymbol/no_AU/XAIUSDT.json deleted file mode 100644 index d8295d4d8..000000000 --- a/configs/live/multisymbol/no_AU/XAIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.415609287642105, - "ema_span_0": 812.4823958492581, - "ema_span_1": 1115.9189589462812, - "enabled": true, - "initial_eprice_ema_dist": 0.002285505203098785, - "initial_qty_pct": 0.008978677639439336, - "markup_range": 0.002974792379622589, - "min_markup": 0.002057341455660884, - "n_close_orders": 4, - "rentry_pprice_dist": 0.015557291753133898, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4324883442698306, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.591031865103336, - "ema_span_0": 1171.417972958852, - "ema_span_1": 671.8361884528392, - "enabled": true, - "initial_eprice_ema_dist": -0.0022457328241958455, - "initial_qty_pct": 0.006013986477967111, - "markup_range": 0.004189023137734779, - "min_markup": 0.0029581715145716053, - "n_close_orders": 3, - "rentry_pprice_dist": 0.039654821590001124, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9516044899172178, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XEMUSDT.json b/configs/live/multisymbol/no_AU/XEMUSDT.json deleted file mode 100644 index b41d79c8f..000000000 --- a/configs/live/multisymbol/no_AU/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.69477399614593, - "ema_span_0": 1433.4632473474794, - "ema_span_1": 620.7265149034098, - "enabled": true, - "initial_eprice_ema_dist": 0.002999785245586115, - "initial_qty_pct": 0.005481849096515688, - "markup_range": 0.0010998158449765268, - "min_markup": 0.0036006586206092186, - "n_close_orders": 4, - "rentry_pprice_dist": 0.027066507512961233, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7090014923887336, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XLMUSDT.json b/configs/live/multisymbol/no_AU/XLMUSDT.json deleted file mode 100644 index fe9d44b6f..000000000 --- a/configs/live/multisymbol/no_AU/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.268990724858785, - "ema_span_0": 468.08288387411267, - "ema_span_1": 579.8173687921092, - "enabled": true, - "initial_eprice_ema_dist": 0.0028414420430151756, - "initial_qty_pct": 0.01179904416141956, - "markup_range": 0.002798860765045448, - "min_markup": 0.0028004118006462217, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023963209191829024, - "rentry_pprice_dist_wallet_exposure_weighting": 5.582733607686806, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.995886664511782, - "ema_span_0": 762.1867361316375, - "ema_span_1": 1186.3399621502915, - "enabled": true, - "initial_eprice_ema_dist": -0.007570855423554575, - "initial_qty_pct": 0.011108874728735873, - "markup_range": 0.000509412918146603, - "min_markup": 0.00300866474997674, - "n_close_orders": 10, - "rentry_pprice_dist": 0.023675553675346312, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6132077095420909, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XMRUSDT.json b/configs/live/multisymbol/no_AU/XMRUSDT.json deleted file mode 100644 index 58a8f1b42..000000000 --- a/configs/live/multisymbol/no_AU/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.8420529379722977, - "ema_span_0": 1011.1282987669742, - "ema_span_1": 883.9714244988174, - "enabled": true, - "initial_eprice_ema_dist": -0.005679962528550948, - "initial_qty_pct": 0.011980649261214999, - "markup_range": 0.0021734034518008523, - "min_markup": 0.0020451289829358905, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01841617082009683, - "rentry_pprice_dist_wallet_exposure_weighting": 2.280988068740216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.5802620479775373, - "ema_span_0": 641.5256644301991, - "ema_span_1": 1191.2519399932598, - "enabled": true, - "initial_eprice_ema_dist": -0.00010522291907465574, - "initial_qty_pct": 0.009000594413824106, - "markup_range": 0.001147909553877573, - "min_markup": 0.0031605703292547256, - "n_close_orders": 9, - "rentry_pprice_dist": 0.015596258311251951, - "rentry_pprice_dist_wallet_exposure_weighting": 4.134639178461365, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XRPUSDT.json b/configs/live/multisymbol/no_AU/XRPUSDT.json deleted file mode 100644 index 1765b3b64..000000000 --- a/configs/live/multisymbol/no_AU/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.4375045306819496, - "ema_span_0": 579.088748896372, - "ema_span_1": 845.6030651852784, - "enabled": true, - "initial_eprice_ema_dist": -0.008300880009457315, - "initial_qty_pct": 0.007172098575906339, - "markup_range": 0.00619244285449038, - "min_markup": 0.0056401077464158225, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0295363730037309, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8071183798456727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.610856090780812, - "ema_span_0": 539.9866490557295, - "ema_span_1": 1431.1569663839805, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995566815200587, - "initial_qty_pct": 0.008277303001950773, - "markup_range": 0.0006668861872378242, - "min_markup": 0.0012368622521173385, - "n_close_orders": 7, - "rentry_pprice_dist": 0.05427730809800425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5056001328822984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XTZUSDT.json b/configs/live/multisymbol/no_AU/XTZUSDT.json deleted file mode 100644 index e446a4f12..000000000 --- a/configs/live/multisymbol/no_AU/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.80346161864623, - "ema_span_0": 1400.426590976837, - "ema_span_1": 1371.869756308232, - "enabled": true, - "initial_eprice_ema_dist": 0.0015705069750494116, - "initial_qty_pct": 0.011094456957032806, - "markup_range": 0.004206416047286285, - "min_markup": 0.0014417816779113979, - "n_close_orders": 12, - "rentry_pprice_dist": 0.043372126622844655, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16160709670108891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7462685377597977, - "ema_span_0": 511.8560462090011, - "ema_span_1": 568.477435153946, - "enabled": true, - "initial_eprice_ema_dist": -0.006383865417420748, - "initial_qty_pct": 0.011078545593023655, - "markup_range": 0.004668351197589904, - "min_markup": 0.004192178780478336, - "n_close_orders": 8, - "rentry_pprice_dist": 0.026001922012736885, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23931909568469828, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XVGUSDT.json b/configs/live/multisymbol/no_AU/XVGUSDT.json deleted file mode 100644 index e0cd3514e..000000000 --- a/configs/live/multisymbol/no_AU/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.58913998788805, - "ema_span_0": 1335.2952490835135, - "ema_span_1": 1353.96194354445, - "enabled": true, - "initial_eprice_ema_dist": -0.008356464753985887, - "initial_qty_pct": 0.012599558606970613, - "markup_range": 9.555478516485795e-05, - "min_markup": 0.009038946899116995, - "n_close_orders": 16, - "rentry_pprice_dist": 0.021397242275441986, - "rentry_pprice_dist_wallet_exposure_weighting": 2.570682079880489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.1848255912377725, - "ema_span_0": 520.9353554628135, - "ema_span_1": 694.5172262857495, - "enabled": true, - "initial_eprice_ema_dist": 0.00037902074120364066, - "initial_qty_pct": 0.010549661074555973, - "markup_range": 0.001782638318971055, - "min_markup": 0.007137527338246274, - "n_close_orders": 14, - "rentry_pprice_dist": 0.026089758081906847, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16248557520856585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/XVSUSDT.json b/configs/live/multisymbol/no_AU/XVSUSDT.json deleted file mode 100644 index 3e681e5fd..000000000 --- a/configs/live/multisymbol/no_AU/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.5159536084738751, - "ema_span_0": 1248.6062558084398, - "ema_span_1": 1044.0148033861185, - "enabled": true, - "initial_eprice_ema_dist": 0.000720250692351039, - "initial_qty_pct": 0.01670396209967201, - "markup_range": 0.004738122012700479, - "min_markup": 0.006488744252296942, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03196413882850113, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5777126246016717, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.38378579127656987, - "ema_span_0": 475.7505407090246, - "ema_span_1": 659.0737608504875, - "enabled": true, - "initial_eprice_ema_dist": 0.002746445084509182, - "initial_qty_pct": 0.019927629425264704, - "markup_range": 0.006178940525086855, - "min_markup": 0.005286517167723811, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03924673349997439, - "rentry_pprice_dist_wallet_exposure_weighting": 6.806478169513814, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/YFIUSDT.json b/configs/live/multisymbol/no_AU/YFIUSDT.json deleted file mode 100644 index 7d09033ff..000000000 --- a/configs/live/multisymbol/no_AU/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.676060959901111, - "ema_span_0": 1142.1265796149928, - "ema_span_1": 1371.4409147256022, - "enabled": true, - "initial_eprice_ema_dist": -0.002653295645807994, - "initial_qty_pct": 0.005312279960658424, - "markup_range": 0.002618427243223781, - "min_markup": 0.0050054003114357384, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04147565692951239, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8328916683991203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.292027319909774, - "ema_span_0": 1329.4680952753552, - "ema_span_1": 436.49613116495897, - "enabled": true, - "initial_eprice_ema_dist": -0.0048223415569343606, - "initial_qty_pct": 0.009453639768089012, - "markup_range": 0.0016749767397669865, - "min_markup": 0.004004167712974628, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030973145553035486, - "rentry_pprice_dist_wallet_exposure_weighting": 0.615152389890463, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/YGGUSDT.json b/configs/live/multisymbol/no_AU/YGGUSDT.json deleted file mode 100644 index 608eab8a5..000000000 --- a/configs/live/multisymbol/no_AU/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.268990724858785, - "ema_span_0": 468.08288387411267, - "ema_span_1": 579.8173687921092, - "enabled": true, - "initial_eprice_ema_dist": 0.0028414420430151756, - "initial_qty_pct": 0.01179904416141956, - "markup_range": 0.002798860765045448, - "min_markup": 0.0028004118006462217, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023963209191829024, - "rentry_pprice_dist_wallet_exposure_weighting": 5.582733607686806, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.337218641941045, - "ema_span_0": 1394.0595360103011, - "ema_span_1": 1209.904791055211, - "enabled": true, - "initial_eprice_ema_dist": -0.0020670190574686915, - "initial_qty_pct": 0.01463807095251366, - "markup_range": 0.007272680089655267, - "min_markup": 0.006039483470154668, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028533484009548606, - "rentry_pprice_dist_wallet_exposure_weighting": 6.256314642408412, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ZECUSDT.json b/configs/live/multisymbol/no_AU/ZECUSDT.json deleted file mode 100644 index d5abdac59..000000000 --- a/configs/live/multisymbol/no_AU/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.7594354352831985, - "ema_span_0": 542.7741159369552, - "ema_span_1": 602.4812499261363, - "enabled": true, - "initial_eprice_ema_dist": -0.007776011232012096, - "initial_qty_pct": 0.005702446882948222, - "markup_range": 0.005049156016364269, - "min_markup": 0.007182498839164601, - "n_close_orders": 6, - "rentry_pprice_dist": 0.034107437490716805, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2714999547385133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 618.3722903535505, - "ema_span_1": 599.4653387623184, - "enabled": true, - "initial_eprice_ema_dist": -0.0075840531594475085, - "initial_qty_pct": 0.015436428114501471, - "markup_range": 0.0023523663973713683, - "min_markup": 0.002397480696432616, - "n_close_orders": 4, - "rentry_pprice_dist": 0.017801109526425937, - "rentry_pprice_dist_wallet_exposure_weighting": 6.211289743014393, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ZENUSDT.json b/configs/live/multisymbol/no_AU/ZENUSDT.json deleted file mode 100644 index 3d78df12d..000000000 --- a/configs/live/multisymbol/no_AU/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.0206588914585735, - "ema_span_0": 1157.1068280298107, - "ema_span_1": 766.4229120044222, - "enabled": true, - "initial_eprice_ema_dist": -0.003372014009289939, - "initial_qty_pct": 0.0055136547261046545, - "markup_range": 0.0016286315760876556, - "min_markup": 0.001692642120768909, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01662249757307718, - "rentry_pprice_dist_wallet_exposure_weighting": 2.986489225762747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.4218581185565595, - "ema_span_0": 1151.3764723962074, - "ema_span_1": 1315.8348812259678, - "enabled": true, - "initial_eprice_ema_dist": 0.002651361285933056, - "initial_qty_pct": 0.019690763441432196, - "markup_range": 0.009988950418110019, - "min_markup": 0.007226252431477672, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03742071901440953, - "rentry_pprice_dist_wallet_exposure_weighting": 3.860530226766854, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ZETAUSDT.json b/configs/live/multisymbol/no_AU/ZETAUSDT.json deleted file mode 100644 index f570584c0..000000000 --- a/configs/live/multisymbol/no_AU/ZETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.0699137037365083, - "ema_span_0": 707.3998946868745, - "ema_span_1": 909.8291190737051, - "enabled": true, - "initial_eprice_ema_dist": 0.0012282328103092842, - "initial_qty_pct": 0.005372550973128566, - "markup_range": 0.0027784771637604996, - "min_markup": 0.005948378795421501, - "n_close_orders": 10, - "rentry_pprice_dist": 0.038418487014343826, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1638252515529026, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9318224769096846, - "ema_span_0": 1127.1394896912764, - "ema_span_1": 771.0503661829033, - "enabled": true, - "initial_eprice_ema_dist": -0.0064136943095479525, - "initial_qty_pct": 0.01697083145435416, - "markup_range": 0.0005781134225258528, - "min_markup": 0.0030729391401989326, - "n_close_orders": 7, - "rentry_pprice_dist": 0.026897960172828837, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4258726562539525, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ZILUSDT.json b/configs/live/multisymbol/no_AU/ZILUSDT.json deleted file mode 100644 index 5a758c682..000000000 --- a/configs/live/multisymbol/no_AU/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.817623865324909, - "ema_span_0": 502.1634112705396, - "ema_span_1": 515.1604733452953, - "enabled": true, - "initial_eprice_ema_dist": 0.0027032796411474475, - "initial_qty_pct": 0.005182990898445523, - "markup_range": 0.006204584905094422, - "min_markup": 0.001678701646550289, - "n_close_orders": 6, - "rentry_pprice_dist": 0.033137489679151415, - "rentry_pprice_dist_wallet_exposure_weighting": 2.601709858493572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 2.9399991288671905, - "ema_span_0": 1351.7720819694641, - "ema_span_1": 1266.303254667499, - "enabled": true, - "initial_eprice_ema_dist": -0.0013371263315694602, - "initial_qty_pct": 0.017903836534322398, - "markup_range": 0.0009676748650209761, - "min_markup": 0.003558978967284685, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040586544524177294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14333373033160646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/no_AU/ZRXUSDT.json b/configs/live/multisymbol/no_AU/ZRXUSDT.json deleted file mode 100644 index a6136d60e..000000000 --- a/configs/live/multisymbol/no_AU/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 1.9830335735947862, - "ema_span_0": 1402.4653684321079, - "ema_span_1": 1130.784332453944, - "enabled": true, - "initial_eprice_ema_dist": 0.002966503970567933, - "initial_qty_pct": 0.0108532582956604, - "markup_range": 0.00169908661442748, - "min_markup": 0.007016048141528827, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03053657768745245, - "rentry_pprice_dist_wallet_exposure_weighting": 4.73228428959673, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 0, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0, - "auto_unstuck_wallet_exposure_threshold": 0.0, - "backwards_tp": true, - "ddown_factor": 0.46075229801589734, - "ema_span_0": 835.823381575181, - "ema_span_1": 448.12863625667836, - "enabled": true, - "initial_eprice_ema_dist": 0.0014594353815143143, - "initial_qty_pct": 0.01069170668471708, - "markup_range": 0.007838757209989538, - "min_markup": 0.00994117916640931, - "n_close_orders": 5, - "rentry_pprice_dist": 0.035868319356559916, - "rentry_pprice_dist_wallet_exposure_weighting": 4.287826588430675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/1000FLOKIUSDT.json b/configs/live/multisymbol/recursive_grid/1000FLOKIUSDT.json deleted file mode 100644 index d1211983a..000000000 --- a/configs/live/multisymbol/recursive_grid/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.17842658665650166, - "ema_span_0": 5, - "ema_span_1": 172.85447108642447, - "enabled": true, - "initial_eprice_ema_dist": -0.05559078820628534, - "initial_qty_pct": 0.011610772612807824, - "markup_range": 0.004717435290045319, - "min_markup": 0.009686102227960083, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0402573577203755, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31117154251246676, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9846343966411943, - "ema_span_0": 1426.8645204797178, - "ema_span_1": 1362.341599202268, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015043335054241281, - "markup_range": 0.009289260778633427, - "min_markup": 0.003124122113244021, - "n_close_orders": 5, - "rentry_pprice_dist": 0.046822290466542106, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16647331202906823, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/1000LUNCUSDT.json b/configs/live/multisymbol/recursive_grid/1000LUNCUSDT.json deleted file mode 100644 index 8f2c1464d..000000000 --- a/configs/live/multisymbol/recursive_grid/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/1000PEPEUSDT.json b/configs/live/multisymbol/recursive_grid/1000PEPEUSDT.json deleted file mode 100644 index 85191da2d..000000000 --- a/configs/live/multisymbol/recursive_grid/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4364410851893356, - "ema_span_0": 875.5987866494493, - "ema_span_1": 913.927902992683, - "enabled": true, - "initial_eprice_ema_dist": 0.0021207999040792056, - "initial_qty_pct": 0.010403552750297912, - "markup_range": 0.015735577647451794, - "min_markup": 0.00880504348520859, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0449849731620022, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3204750775390275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/1000SHIBUSDT.json b/configs/live/multisymbol/recursive_grid/1000SHIBUSDT.json deleted file mode 100644 index 00dd808bb..000000000 --- a/configs/live/multisymbol/recursive_grid/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.584361678520924, - "ema_span_0": 551.1167115273083, - "ema_span_1": 600.533079898387, - "enabled": true, - "initial_eprice_ema_dist": -0.007455832905295011, - "initial_qty_pct": 0.014653284184452376, - "markup_range": 0.0014111565508859937, - "min_markup": 0.0020029305093319087, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029241188861559162, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2373430527716198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6911316315162889, - "ema_span_0": 1404.8312978762303, - "ema_span_1": 1420.87182753046, - "enabled": true, - "initial_eprice_ema_dist": -0.00938718495738028, - "initial_qty_pct": 0.01088859214345425, - "markup_range": 0.004569778047259771, - "min_markup": 0.008877653463957353, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03257403994063893, - "rentry_pprice_dist_wallet_exposure_weighting": 8.05842613177501, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/1000XECUSDT.json b/configs/live/multisymbol/recursive_grid/1000XECUSDT.json deleted file mode 100644 index 3ee8d0d3a..000000000 --- a/configs/live/multisymbol/recursive_grid/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3602582965020855, - "ema_span_0": 120.4797953471262, - "ema_span_1": 166.48238357350056, - "enabled": true, - "initial_eprice_ema_dist": -0.0006228758940931558, - "initial_qty_pct": 0.010462821340143235, - "markup_range": 0.0013109311712520082, - "min_markup": 0.0015988390804505073, - "n_close_orders": 8, - "rentry_pprice_dist": 0.029664661889534538, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9518215338809086, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5455786004926524, - "ema_span_0": 1338.8190643222188, - "ema_span_1": 1053.3852627888903, - "enabled": true, - "initial_eprice_ema_dist": -0.0031515908390763736, - "initial_qty_pct": 0.01383480648574903, - "markup_range": 0.0034207683729451286, - "min_markup": 0.005303933607697774, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029336786163315195, - "rentry_pprice_dist_wallet_exposure_weighting": 9.654630395909606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/1INCHUSDT.json b/configs/live/multisymbol/recursive_grid/1INCHUSDT.json deleted file mode 100644 index dc94b4ef9..000000000 --- a/configs/live/multisymbol/recursive_grid/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4157171861713662, - "ema_span_0": 242.60634144178715, - "ema_span_1": 401.2629795926007, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999536013894483, - "initial_qty_pct": 0.01327772303805518, - "markup_range": 0.006019345595088116, - "min_markup": 0.00600499050437021, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049150333284518, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04211352072696128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AAVEUSDT.json b/configs/live/multisymbol/recursive_grid/AAVEUSDT.json deleted file mode 100644 index 19774e630..000000000 --- a/configs/live/multisymbol/recursive_grid/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7084465089988872, - "ema_span_0": 959.0771541636914, - "ema_span_1": 1373.6296674450869, - "enabled": true, - "initial_eprice_ema_dist": 0.0029980206816356985, - "initial_qty_pct": 0.0109069399394417, - "markup_range": 0.006178271077088632, - "min_markup": 0.0024808092244747683, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04891388080108389, - "rentry_pprice_dist_wallet_exposure_weighting": 0.031084142392241037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ACHUSDT.json b/configs/live/multisymbol/recursive_grid/ACHUSDT.json deleted file mode 100644 index 2e375764d..000000000 --- a/configs/live/multisymbol/recursive_grid/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4364410851893356, - "ema_span_0": 875.5987866494493, - "ema_span_1": 913.927902992683, - "enabled": true, - "initial_eprice_ema_dist": 0.0021207999040792056, - "initial_qty_pct": 0.010403552750297912, - "markup_range": 0.015735577647451794, - "min_markup": 0.00880504348520859, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0449849731620022, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3204750775390275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5334471307267951, - "ema_span_0": 1234.5627941815458, - "ema_span_1": 1390.9489466161722, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017647219963558818, - "markup_range": 0.018265551181550523, - "min_markup": 0.009097285769915002, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0396082947171055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.111710813562418, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ADAUSDT.json b/configs/live/multisymbol/recursive_grid/ADAUSDT.json deleted file mode 100644 index 33bd6b2c7..000000000 --- a/configs/live/multisymbol/recursive_grid/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.050712060838139, - "ema_span_0": 281.0187433812133, - "ema_span_1": 1356.048173502578, - "enabled": true, - "initial_eprice_ema_dist": -0.002197396037854266, - "initial_qty_pct": 0.01010137687996034, - "markup_range": 7.743843059996673e-05, - "min_markup": 0.0020516436448160718, - "n_close_orders": 11, - "rentry_pprice_dist": 0.016562456488199616, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23460534554590445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.419328383627259, - "ema_span_0": 47.724613306860604, - "ema_span_1": 1306.4392483110332, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013799521571922794, - "markup_range": 0.006446861379119728, - "min_markup": 0.004622320494748044, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04453467751328848, - "rentry_pprice_dist_wallet_exposure_weighting": 0.649929521825148, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AGIXUSDT.json b/configs/live/multisymbol/recursive_grid/AGIXUSDT.json deleted file mode 100644 index f26c92b9f..000000000 --- a/configs/live/multisymbol/recursive_grid/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6561378786914944, - "ema_span_0": 266.8409217173699, - "ema_span_1": 1192.1507019516525, - "enabled": true, - "initial_eprice_ema_dist": -0.007142001296309181, - "initial_qty_pct": 0.014059633459396962, - "markup_range": 0.0035383098233774395, - "min_markup": 0.002383259829557172, - "n_close_orders": 9, - "rentry_pprice_dist": 0.028204716584759912, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5979651920261344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AGLDUSDT.json b/configs/live/multisymbol/recursive_grid/AGLDUSDT.json deleted file mode 100644 index 58d80518b..000000000 --- a/configs/live/multisymbol/recursive_grid/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.336692424941889, - "ema_span_0": 728.298192918612, - "ema_span_1": 368.05706662205233, - "enabled": true, - "initial_eprice_ema_dist": 0.0029688815844064235, - "initial_qty_pct": 0.013707092114184697, - "markup_range": 0.002443121150015731, - "min_markup": 0.003574163695759272, - "n_close_orders": 16, - "rentry_pprice_dist": 0.039483864440314174, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5704867133555622, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.699741074574412, - "ema_span_0": 178.49965628285025, - "ema_span_1": 1236.0874041384286, - "enabled": true, - "initial_eprice_ema_dist": -0.0018847565219850331, - "initial_qty_pct": 0.020224579242037653, - "markup_range": 0.002364170873227417, - "min_markup": 0.004560255195901688, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03687749756373675, - "rentry_pprice_dist_wallet_exposure_weighting": 0.41971094909048146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ALGOUSDT.json b/configs/live/multisymbol/recursive_grid/ALGOUSDT.json deleted file mode 100644 index 6c4f8c3f4..000000000 --- a/configs/live/multisymbol/recursive_grid/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9267230944646332, - "ema_span_0": 1070.2235791358275, - "ema_span_1": 1072.5620617467998, - "enabled": true, - "initial_eprice_ema_dist": 0.002996387973665314, - "initial_qty_pct": 0.018510090131773998, - "markup_range": 0.00356482273509978, - "min_markup": 0.009738705411198135, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04182900564020842, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6499498558931125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ALICEUSDT.json b/configs/live/multisymbol/recursive_grid/ALICEUSDT.json deleted file mode 100644 index d9aae0d34..000000000 --- a/configs/live/multisymbol/recursive_grid/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8238378347819745, - "ema_span_0": 72.83896499237483, - "ema_span_1": 885.0630380144197, - "enabled": true, - "initial_eprice_ema_dist": -0.03320754917813984, - "initial_qty_pct": 0.010002137107402873, - "markup_range": 0.004210213586122152, - "min_markup": 0.006514898799940132, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03501785514239262, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8629807635420719, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.546999887225846, - "ema_span_0": 1298.6295048202376, - "ema_span_1": 91.43219028070104, - "enabled": true, - "initial_eprice_ema_dist": -0.010357249707103338, - "initial_qty_pct": 0.016212769312246557, - "markup_range": 0.007581299952512202, - "min_markup": 0.009769231244046437, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04025065147077307, - "rentry_pprice_dist_wallet_exposure_weighting": 6.6242296947440655, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ALPHAUSDT.json b/configs/live/multisymbol/recursive_grid/ALPHAUSDT.json deleted file mode 100644 index 05d5bcc8c..000000000 --- a/configs/live/multisymbol/recursive_grid/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7387035737087013, - "ema_span_0": 890.9911227886728, - "ema_span_1": 1216.4021884213203, - "enabled": true, - "initial_eprice_ema_dist": -0.08982574944876029, - "initial_qty_pct": 0.01189056762005186, - "markup_range": 0.001466463951368804, - "min_markup": 0.002213920984072372, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03453707295381622, - "rentry_pprice_dist_wallet_exposure_weighting": 2.369013044054258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0871680121638936, - "ema_span_0": 858.6310991458354, - "ema_span_1": 871.5753623817261, - "enabled": true, - "initial_eprice_ema_dist": -0.00939450025971369, - "initial_qty_pct": 0.012199352455162323, - "markup_range": 0.0022069131296615896, - "min_markup": 0.0040552826803415785, - "n_close_orders": 6, - "rentry_pprice_dist": 0.046375659154572424, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8743693314501524, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AMBUSDT.json b/configs/live/multisymbol/recursive_grid/AMBUSDT.json deleted file mode 100644 index d6780c1a2..000000000 --- a/configs/live/multisymbol/recursive_grid/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1368559642467559, - "ema_span_0": 388.1395901981704, - "ema_span_1": 275.0612850941764, - "enabled": true, - "initial_eprice_ema_dist": -0.08603146329502963, - "initial_qty_pct": 0.012355829335886677, - "markup_range": 0.005464411616080121, - "min_markup": 0.008291637067372556, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03523201204867047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2172270608757754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3058460271681953, - "ema_span_0": 65.57599891366576, - "ema_span_1": 48.55584575825074, - "enabled": true, - "initial_eprice_ema_dist": -0.050789786484485885, - "initial_qty_pct": 0.013761619510484355, - "markup_range": 0.0018480702291614399, - "min_markup": 0.003391920932671798, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03887565626770108, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24059134643565705, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ANKRUSDT.json b/configs/live/multisymbol/recursive_grid/ANKRUSDT.json deleted file mode 100644 index 711055dd4..000000000 --- a/configs/live/multisymbol/recursive_grid/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.584361678520924, - "ema_span_0": 551.1167115273083, - "ema_span_1": 600.533079898387, - "enabled": true, - "initial_eprice_ema_dist": -0.007455832905295011, - "initial_qty_pct": 0.014653284184452376, - "markup_range": 0.0014111565508859937, - "min_markup": 0.0020029305093319087, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029241188861559162, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2373430527716198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5496600291443349, - "ema_span_0": 1418.165029247325, - "ema_span_1": 1299.1812839892266, - "enabled": true, - "initial_eprice_ema_dist": 0.0025563504837596016, - "initial_qty_pct": 0.017280059651797453, - "markup_range": 0.01056369131529356, - "min_markup": 0.0050861235491077884, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04144715802310261, - "rentry_pprice_dist_wallet_exposure_weighting": 7.816268775961305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ANTUSDT.json b/configs/live/multisymbol/recursive_grid/ANTUSDT.json deleted file mode 100644 index 682486254..000000000 --- a/configs/live/multisymbol/recursive_grid/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5213428448085882, - "ema_span_0": 1016.2610693776749, - "ema_span_1": 749.6093864181287, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014218778618065543, - "markup_range": 0.0027211641924264262, - "min_markup": 0.005467249019465325, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03136839539166837, - "rentry_pprice_dist_wallet_exposure_weighting": 10.728054258455577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/APEUSDT.json b/configs/live/multisymbol/recursive_grid/APEUSDT.json deleted file mode 100644 index 71d042156..000000000 --- a/configs/live/multisymbol/recursive_grid/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7402610846417237, - "ema_span_0": 907.0901100936347, - "ema_span_1": 1397.9636646627, - "enabled": true, - "initial_eprice_ema_dist": 0.0014272806184822677, - "initial_qty_pct": 0.01643718382176242, - "markup_range": 0.004415712957343203, - "min_markup": 0.004212729776643347, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043031420437824194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9622617744729288, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6399850614689429, - "ema_span_0": 822.3628623735689, - "ema_span_1": 1117.7327024751312, - "enabled": true, - "initial_eprice_ema_dist": 0.00012787609904433037, - "initial_qty_pct": 0.018560749876905445, - "markup_range": 0.002614600398294017, - "min_markup": 0.00324490098295999, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030098153703345728, - "rentry_pprice_dist_wallet_exposure_weighting": 3.123977652957473, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/API3USDT.json b/configs/live/multisymbol/recursive_grid/API3USDT.json deleted file mode 100644 index b4029bdb9..000000000 --- a/configs/live/multisymbol/recursive_grid/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7387035737087013, - "ema_span_0": 890.9911227886728, - "ema_span_1": 1216.4021884213203, - "enabled": true, - "initial_eprice_ema_dist": -0.08982574944876029, - "initial_qty_pct": 0.01189056762005186, - "markup_range": 0.001466463951368804, - "min_markup": 0.002213920984072372, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03453707295381622, - "rentry_pprice_dist_wallet_exposure_weighting": 2.369013044054258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/APTUSDT.json b/configs/live/multisymbol/recursive_grid/APTUSDT.json deleted file mode 100644 index fa71fec0b..000000000 --- a/configs/live/multisymbol/recursive_grid/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4157171861713662, - "ema_span_0": 242.60634144178715, - "ema_span_1": 401.2629795926007, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999536013894483, - "initial_qty_pct": 0.01327772303805518, - "markup_range": 0.006019345595088116, - "min_markup": 0.00600499050437021, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049150333284518, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04211352072696128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3796123605256332, - "ema_span_0": 1329.7194814110603, - "ema_span_1": 1199.3289784912201, - "enabled": true, - "initial_eprice_ema_dist": 0.0029924499869306027, - "initial_qty_pct": 0.011596981507328283, - "markup_range": 0.002641623183728599, - "min_markup": 0.004276636217878023, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04542143939715495, - "rentry_pprice_dist_wallet_exposure_weighting": 10.42199790791283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ARBUSDT.json b/configs/live/multisymbol/recursive_grid/ARBUSDT.json deleted file mode 100644 index e6dfb9d85..000000000 --- a/configs/live/multisymbol/recursive_grid/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8519015047728429, - "ema_span_0": 756.070701325637, - "ema_span_1": 1136.9516102604841, - "enabled": true, - "initial_eprice_ema_dist": 0.0013516974912487001, - "initial_qty_pct": 0.01366755310228504, - "markup_range": 0.004070758088715231, - "min_markup": 0.0057038187873005505, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03294710231190983, - "rentry_pprice_dist_wallet_exposure_weighting": 5.236804383368756, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ARKMUSDT.json b/configs/live/multisymbol/recursive_grid/ARKMUSDT.json deleted file mode 100644 index 7b20c20f9..000000000 --- a/configs/live/multisymbol/recursive_grid/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6465259418081155, - "ema_span_0": 1106.3087021463616, - "ema_span_1": 1392.197090016136, - "enabled": true, - "initial_eprice_ema_dist": 0.0029291483336787256, - "initial_qty_pct": 0.01231682613606531, - "markup_range": 0.005975153963123907, - "min_markup": 0.006986906247853072, - "n_close_orders": 13, - "rentry_pprice_dist": 0.032593065179502986, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8873753086757523, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ARPAUSDT.json b/configs/live/multisymbol/recursive_grid/ARPAUSDT.json deleted file mode 100644 index 62ada7dc9..000000000 --- a/configs/live/multisymbol/recursive_grid/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3602582965020855, - "ema_span_0": 120.4797953471262, - "ema_span_1": 166.48238357350056, - "enabled": true, - "initial_eprice_ema_dist": -0.0006228758940931558, - "initial_qty_pct": 0.010462821340143235, - "markup_range": 0.0013109311712520082, - "min_markup": 0.0015988390804505073, - "n_close_orders": 8, - "rentry_pprice_dist": 0.029664661889534538, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9518215338809086, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2758544277108332, - "ema_span_0": 256.3137390745723, - "ema_span_1": 661.1519300727446, - "enabled": true, - "initial_eprice_ema_dist": 0.002997425906139028, - "initial_qty_pct": 0.021765259921600232, - "markup_range": 0.00018373530631410773, - "min_markup": 0.004142822948411892, - "n_close_orders": 15, - "rentry_pprice_dist": 0.039389103041395764, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1397680664882923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ARUSDT.json b/configs/live/multisymbol/recursive_grid/ARUSDT.json deleted file mode 100644 index 74eb2368d..000000000 --- a/configs/live/multisymbol/recursive_grid/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4206287172058482, - "ema_span_0": 916.4180455223837, - "ema_span_1": 1327.177889847555, - "enabled": true, - "initial_eprice_ema_dist": -0.002139994537450707, - "initial_qty_pct": 0.011384387847759147, - "markup_range": 0.004304904348260687, - "min_markup": 0.008387425922321634, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03263530569529707, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5771379152998195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ASTRUSDT.json b/configs/live/multisymbol/recursive_grid/ASTRUSDT.json deleted file mode 100644 index 7dfd72e4f..000000000 --- a/configs/live/multisymbol/recursive_grid/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8197918647722426, - "ema_span_0": 1070.1970210731674, - "ema_span_1": 968.5376546434355, - "enabled": true, - "initial_eprice_ema_dist": -0.01491107350181849, - "initial_qty_pct": 0.014960939195854462, - "markup_range": 0.005182921109395984, - "min_markup": 0.005077040157763745, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03207004661231607, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6088846984348908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ATAUSDT.json b/configs/live/multisymbol/recursive_grid/ATAUSDT.json deleted file mode 100644 index a18425c80..000000000 --- a/configs/live/multisymbol/recursive_grid/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ATOMUSDT.json b/configs/live/multisymbol/recursive_grid/ATOMUSDT.json deleted file mode 100644 index ba7a44585..000000000 --- a/configs/live/multisymbol/recursive_grid/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.8715694373980525, - "ema_span_0": 903.5858127977352, - "ema_span_1": 1070.3497983099367, - "enabled": true, - "initial_eprice_ema_dist": -0.0053603987866846425, - "initial_qty_pct": 0.011727127709227516, - "markup_range": 0.004452665270924936, - "min_markup": 0.009445791769598732, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04378791622228055, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0427367702911654, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AUDIOUSDT.json b/configs/live/multisymbol/recursive_grid/AUDIOUSDT.json deleted file mode 100644 index e47241f75..000000000 --- a/configs/live/multisymbol/recursive_grid/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.450419879441086, - "ema_span_0": 34.77959091912413, - "ema_span_1": 898.1556121852162, - "enabled": true, - "initial_eprice_ema_dist": 0.0029882251599526416, - "initial_qty_pct": 0.01277250868480753, - "markup_range": 0.005712353972391207, - "min_markup": 0.0048324667377520735, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03994455783274117, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8355618921799761, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AVAXUSDT.json b/configs/live/multisymbol/recursive_grid/AVAXUSDT.json deleted file mode 100644 index d2d76c7f8..000000000 --- a/configs/live/multisymbol/recursive_grid/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6571874456196956, - "ema_span_0": 1302.4661662514673, - "ema_span_1": 1130.6440055363882, - "enabled": true, - "initial_eprice_ema_dist": 0.00279148662769641, - "initial_qty_pct": 0.01085304384167193, - "markup_range": 0.0018003765314501922, - "min_markup": 0.006216116746428605, - "n_close_orders": 6, - "rentry_pprice_dist": 0.030742271998930277, - "rentry_pprice_dist_wallet_exposure_weighting": 1.57718446230102, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7165040534016092, - "ema_span_0": 1269.2881400948606, - "ema_span_1": 890.7171056158356, - "enabled": true, - "initial_eprice_ema_dist": -0.003373869538716226, - "initial_qty_pct": 0.010749637314908399, - "markup_range": 0.009122360158856983, - "min_markup": 0.008454061197291411, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04055806130157739, - "rentry_pprice_dist_wallet_exposure_weighting": 3.633271555588361, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/AXSUSDT.json b/configs/live/multisymbol/recursive_grid/AXSUSDT.json deleted file mode 100644 index 3af4c9873..000000000 --- a/configs/live/multisymbol/recursive_grid/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4847689588786186, - "ema_span_0": 76.73722069167577, - "ema_span_1": 313.6031266640233, - "enabled": true, - "initial_eprice_ema_dist": -0.006797724509078793, - "initial_qty_pct": 0.011820851377208515, - "markup_range": 0.002218599610113049, - "min_markup": 0.0027961498969030136, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04666988424221049, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4245663958832897, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BAKEUSDT.json b/configs/live/multisymbol/recursive_grid/BAKEUSDT.json deleted file mode 100644 index 616b4e5fb..000000000 --- a/configs/live/multisymbol/recursive_grid/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3935220163555802, - "ema_span_0": 647.0249800611332, - "ema_span_1": 741.024731452196, - "enabled": true, - "initial_eprice_ema_dist": -0.04078981266892904, - "initial_qty_pct": 0.011042115819131925, - "markup_range": 0.0032718149512038653, - "min_markup": 0.0014521005710930977, - "n_close_orders": 5, - "rentry_pprice_dist": 0.042313323019841684, - "rentry_pprice_dist_wallet_exposure_weighting": 9.682584206692592, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BALUSDT.json b/configs/live/multisymbol/recursive_grid/BALUSDT.json deleted file mode 100644 index b66bd22bd..000000000 --- a/configs/live/multisymbol/recursive_grid/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BANDUSDT.json b/configs/live/multisymbol/recursive_grid/BANDUSDT.json deleted file mode 100644 index a8bf0401a..000000000 --- a/configs/live/multisymbol/recursive_grid/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.17842658665650166, - "ema_span_0": 5, - "ema_span_1": 172.85447108642447, - "enabled": true, - "initial_eprice_ema_dist": -0.05559078820628534, - "initial_qty_pct": 0.011610772612807824, - "markup_range": 0.004717435290045319, - "min_markup": 0.009686102227960083, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0402573577203755, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31117154251246676, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.959657442980144, - "ema_span_0": 375.788031772322, - "ema_span_1": 1047.8890835682205, - "enabled": true, - "initial_eprice_ema_dist": 0.002907707549958173, - "initial_qty_pct": 0.01632218960811854, - "markup_range": 0.00608437556694511, - "min_markup": 0.002962637570014331, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987616821022601, - "rentry_pprice_dist_wallet_exposure_weighting": 8.538001207612837, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BATUSDT.json b/configs/live/multisymbol/recursive_grid/BATUSDT.json deleted file mode 100644 index 55148fbc4..000000000 --- a/configs/live/multisymbol/recursive_grid/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5135099892341798, - "ema_span_0": 493.1419438529048, - "ema_span_1": 214.02974143173734, - "enabled": true, - "initial_eprice_ema_dist": -0.00034933359096181405, - "initial_qty_pct": 0.010607672302767488, - "markup_range": 0.0053964181418952595, - "min_markup": 0.004825311355218688, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03875804691630964, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9943793633430253, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6399850614689429, - "ema_span_0": 822.3628623735689, - "ema_span_1": 1117.7327024751312, - "enabled": true, - "initial_eprice_ema_dist": 0.00012787609904433037, - "initial_qty_pct": 0.018560749876905445, - "markup_range": 0.002614600398294017, - "min_markup": 0.00324490098295999, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030098153703345728, - "rentry_pprice_dist_wallet_exposure_weighting": 3.123977652957473, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BCHUSDT.json b/configs/live/multisymbol/recursive_grid/BCHUSDT.json deleted file mode 100644 index 404bb76b8..000000000 --- a/configs/live/multisymbol/recursive_grid/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7472045767660662, - "ema_span_0": 30.874651801279892, - "ema_span_1": 8.028446686306493, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011477507528279826, - "markup_range": 0.0016014639840215288, - "min_markup": 0.0020753141394819702, - "n_close_orders": 3, - "rentry_pprice_dist": 0.015261469106299717, - "rentry_pprice_dist_wallet_exposure_weighting": 6.369273737739446, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BELUSDT.json b/configs/live/multisymbol/recursive_grid/BELUSDT.json deleted file mode 100644 index cd90a1438..000000000 --- a/configs/live/multisymbol/recursive_grid/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3265074136269033, - "ema_span_0": 19.54739613158498, - "ema_span_1": 811.834367761141, - "enabled": true, - "initial_eprice_ema_dist": 0.0008081283426164052, - "initial_qty_pct": 0.015103757288504882, - "markup_range": 0.0, - "min_markup": 0.006921572544421382, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03678892840061904, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9424281750354018, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4566258750406571, - "ema_span_0": 1377.6398325756124, - "ema_span_1": 1304.2068503308053, - "enabled": true, - "initial_eprice_ema_dist": -0.0005715828530609974, - "initial_qty_pct": 0.012490469535285199, - "markup_range": 0.005311891421294039, - "min_markup": 0.00850279515143508, - "n_close_orders": 8, - "rentry_pprice_dist": 0.041461012820315224, - "rentry_pprice_dist_wallet_exposure_weighting": 13.711683488051435, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BLUEBIRDUSDT.json b/configs/live/multisymbol/recursive_grid/BLUEBIRDUSDT.json deleted file mode 100644 index 1ad1611ab..000000000 --- a/configs/live/multisymbol/recursive_grid/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.583886909265108, - "ema_span_0": 160.2036035044118, - "ema_span_1": 161.1513428941748, - "enabled": true, - "initial_eprice_ema_dist": 0.001975371600870204, - "initial_qty_pct": 0.022019390665189167, - "markup_range": 0.0029887140873306674, - "min_markup": 0.0014758996981031416, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02118506710915445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1108815725309518, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.110106467530348, - "ema_span_0": 973.4229873749248, - "ema_span_1": 958.1541188866846, - "enabled": true, - "initial_eprice_ema_dist": 0.0029977806557525254, - "initial_qty_pct": 0.016324738674111442, - "markup_range": 0.0011043535036331087, - "min_markup": 0.002489943802584134, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02709430582868433, - "rentry_pprice_dist_wallet_exposure_weighting": 11.500513836921657, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BLURUSDT.json b/configs/live/multisymbol/recursive_grid/BLURUSDT.json deleted file mode 100644 index 95834d3e8..000000000 --- a/configs/live/multisymbol/recursive_grid/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.658457003518225, - "ema_span_0": 347.44896532233116, - "ema_span_1": 207.72484986607017, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011028312962298125, - "markup_range": 0.0074260491409747645, - "min_markup": 0.0072619976973722815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.032935101737063315, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7582899027246691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1963320619809854, - "ema_span_0": 473.7639303589238, - "ema_span_1": 382.4932985178262, - "enabled": true, - "initial_eprice_ema_dist": -0.005456890994231539, - "initial_qty_pct": 0.023127245602966914, - "markup_range": 0.004599570704888304, - "min_markup": 0.004849288520329851, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0341002107351647, - "rentry_pprice_dist_wallet_exposure_weighting": 4.795798726471229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BLZUSDT.json b/configs/live/multisymbol/recursive_grid/BLZUSDT.json deleted file mode 100644 index e1a7a2f71..000000000 --- a/configs/live/multisymbol/recursive_grid/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49962014508857006, - "ema_span_0": 662.423079765778, - "ema_span_1": 1215.0589605891234, - "enabled": true, - "initial_eprice_ema_dist": -0.008404526133162745, - "initial_qty_pct": 0.014617788347835654, - "markup_range": 0.003090982575626991, - "min_markup": 0.00523214715059894, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04756984014984003, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4799236109832203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1187794606138204, - "ema_span_0": 450.01643250329363, - "ema_span_1": 348.63506308351833, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012189402273288562, - "markup_range": 0.001186379267745228, - "min_markup": 0.007899693077889937, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04996959933677691, - "rentry_pprice_dist_wallet_exposure_weighting": 9.758195296804647, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BNBUSDT.json b/configs/live/multisymbol/recursive_grid/BNBUSDT.json deleted file mode 100644 index fa57dac03..000000000 --- a/configs/live/multisymbol/recursive_grid/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.641105065445331, - "ema_span_0": 223.3656789193975, - "ema_span_1": 420.825621657577, - "enabled": true, - "initial_eprice_ema_dist": 0.0019387769321913032, - "initial_qty_pct": 0.01006136206888639, - "markup_range": 0.0021039473592487363, - "min_markup": 0.00334737784062914, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02133091555341278, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6212179043049343, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BNTUSDT.json b/configs/live/multisymbol/recursive_grid/BNTUSDT.json deleted file mode 100644 index 6a9735348..000000000 --- a/configs/live/multisymbol/recursive_grid/BNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5183402852509222, - "ema_span_0": 1333.683905970394, - "ema_span_1": 1014.5793553488094, - "enabled": true, - "initial_eprice_ema_dist": -0.01492353156039376, - "initial_qty_pct": 0.01187257343223744, - "markup_range": 0.004412248741813769, - "min_markup": 0.004061242946623552, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02381089441968036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8109665034711503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9263493244927148, - "ema_span_0": 118.55050140006173, - "ema_span_1": 26.177201866394913, - "enabled": true, - "initial_eprice_ema_dist": 0.0025358417694928597, - "initial_qty_pct": 0.013336774243411415, - "markup_range": 0.001532440082328491, - "min_markup": 0.009942677716086415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.049482671180504555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3841564123775789, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BNXUSDT.json b/configs/live/multisymbol/recursive_grid/BNXUSDT.json deleted file mode 100644 index 4bc45a460..000000000 --- a/configs/live/multisymbol/recursive_grid/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3523297308106912, - "ema_span_0": 638.7118049632558, - "ema_span_1": 523.1463352496196, - "enabled": true, - "initial_eprice_ema_dist": 0.0023438156999420505, - "initial_qty_pct": 0.01325073140410782, - "markup_range": 0.009242900767382675, - "min_markup": 0.007855349930017255, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04432781053949351, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3382441768820437, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BTCDOMUSDT.json b/configs/live/multisymbol/recursive_grid/BTCDOMUSDT.json deleted file mode 100644 index 98647c48e..000000000 --- a/configs/live/multisymbol/recursive_grid/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2297117872115364, - "ema_span_0": 666.9352875365897, - "ema_span_1": 258.7932713649857, - "enabled": true, - "initial_eprice_ema_dist": 0.0029561243159410065, - "initial_qty_pct": 0.012768047878831668, - "markup_range": 0.0009141991898108719, - "min_markup": 0.002594754817460753, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02038355697089794, - "rentry_pprice_dist_wallet_exposure_weighting": 0.027928595165659396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BTCSTUSDT.json b/configs/live/multisymbol/recursive_grid/BTCSTUSDT.json deleted file mode 100644 index 7c02fc46e..000000000 --- a/configs/live/multisymbol/recursive_grid/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1390500852526395, - "ema_span_0": 979.7392681008872, - "ema_span_1": 972.4684243898562, - "enabled": true, - "initial_eprice_ema_dist": -0.0542651168403518, - "initial_qty_pct": 0.016531874523208867, - "markup_range": 0.006125441040561773, - "min_markup": 0.001890345945629892, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02960336647761808, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9618771133103885, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BTCUSDT.json b/configs/live/multisymbol/recursive_grid/BTCUSDT.json deleted file mode 100644 index 926eee648..000000000 --- a/configs/live/multisymbol/recursive_grid/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.213923970776044, - "ema_span_0": 1149.3450683159158, - "ema_span_1": 46.2055349986496, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012253263285469664, - "markup_range": 0.0008248254259328559, - "min_markup": 0.0016640550227731096, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04127875985649038, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4275679758513373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/BTSUSDT.json b/configs/live/multisymbol/recursive_grid/BTSUSDT.json deleted file mode 100644 index a19f82a23..000000000 --- a/configs/live/multisymbol/recursive_grid/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49477771234476997, - "ema_span_0": 7.884150355842895, - "ema_span_1": 831.5145434298151, - "enabled": true, - "initial_eprice_ema_dist": -0.005319000244021655, - "initial_qty_pct": 0.017299945403047304, - "markup_range": 0.004142259570842666, - "min_markup": 0.005527660431443756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 7.76992152421835, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/C98USDT.json b/configs/live/multisymbol/recursive_grid/C98USDT.json deleted file mode 100644 index a7d63cd6c..000000000 --- a/configs/live/multisymbol/recursive_grid/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2381738950778187, - "ema_span_0": 155.7709927457189, - "ema_span_1": 1260.3397032117737, - "enabled": true, - "initial_eprice_ema_dist": 0.002997139129821119, - "initial_qty_pct": 0.013112161210005678, - "markup_range": 0.002828780575893693, - "min_markup": 0.002629647994916009, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04999959905525485, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0473412697989235, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.546999887225846, - "ema_span_0": 1298.6295048202376, - "ema_span_1": 91.43219028070104, - "enabled": true, - "initial_eprice_ema_dist": -0.010357249707103338, - "initial_qty_pct": 0.016212769312246557, - "markup_range": 0.007581299952512202, - "min_markup": 0.009769231244046437, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04025065147077307, - "rentry_pprice_dist_wallet_exposure_weighting": 6.6242296947440655, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CELOUSDT.json b/configs/live/multisymbol/recursive_grid/CELOUSDT.json deleted file mode 100644 index 921a2abbe..000000000 --- a/configs/live/multisymbol/recursive_grid/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7278018862720588, - "ema_span_0": 442.5278043429042, - "ema_span_1": 1233.5035187936535, - "enabled": true, - "initial_eprice_ema_dist": 0.0029054035971957494, - "initial_qty_pct": 0.01248522372437879, - "markup_range": 0.002149347095369211, - "min_markup": 0.0054203408641198625, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04372925459517494, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4789682712063503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CELRUSDT.json b/configs/live/multisymbol/recursive_grid/CELRUSDT.json deleted file mode 100644 index fb16d4d8d..000000000 --- a/configs/live/multisymbol/recursive_grid/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8091123082798806, - "ema_span_0": 1358.572775373062, - "ema_span_1": 1041.5614546048996, - "enabled": true, - "initial_eprice_ema_dist": -0.0017236778343106749, - "initial_qty_pct": 0.010702834275615204, - "markup_range": 0.0005799934587062832, - "min_markup": 0.0036399693960437645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027195074014125922, - "rentry_pprice_dist_wallet_exposure_weighting": 3.451551087413407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8197918647722426, - "ema_span_0": 1070.1970210731674, - "ema_span_1": 968.5376546434355, - "enabled": true, - "initial_eprice_ema_dist": -0.01491107350181849, - "initial_qty_pct": 0.014960939195854462, - "markup_range": 0.005182921109395984, - "min_markup": 0.005077040157763745, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03207004661231607, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6088846984348908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CFXUSDT.json b/configs/live/multisymbol/recursive_grid/CFXUSDT.json deleted file mode 100644 index 6f6c02daa..000000000 --- a/configs/live/multisymbol/recursive_grid/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2176690339004235, - "ema_span_0": 624.712046541063, - "ema_span_1": 348.61457272862015, - "enabled": true, - "initial_eprice_ema_dist": 0.00280877930697983, - "initial_qty_pct": 0.012205043322424959, - "markup_range": 0.005356847847614142, - "min_markup": 0.005895269455621546, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04937529900356751, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7321029769275491, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CHRUSDT.json b/configs/live/multisymbol/recursive_grid/CHRUSDT.json deleted file mode 100644 index 3ff01c854..000000000 --- a/configs/live/multisymbol/recursive_grid/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 93.8377363654618, - "ema_span_1": 47.769507922020246, - "enabled": true, - "initial_eprice_ema_dist": 0.0029182340883575505, - "initial_qty_pct": 0.013284797031623585, - "markup_range": 0.005067556997663903, - "min_markup": 0.008721697994701487, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03613211478301597, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3547292688181615, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CHZUSDT.json b/configs/live/multisymbol/recursive_grid/CHZUSDT.json deleted file mode 100644 index 9f69483ee..000000000 --- a/configs/live/multisymbol/recursive_grid/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49477771234476997, - "ema_span_0": 7.884150355842895, - "ema_span_1": 831.5145434298151, - "enabled": true, - "initial_eprice_ema_dist": -0.005319000244021655, - "initial_qty_pct": 0.017299945403047304, - "markup_range": 0.004142259570842666, - "min_markup": 0.005527660431443756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 7.76992152421835, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CKBUSDT.json b/configs/live/multisymbol/recursive_grid/CKBUSDT.json deleted file mode 100644 index 2ec69bba8..000000000 --- a/configs/live/multisymbol/recursive_grid/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 93.8377363654618, - "ema_span_1": 47.769507922020246, - "enabled": true, - "initial_eprice_ema_dist": 0.0029182340883575505, - "initial_qty_pct": 0.013284797031623585, - "markup_range": 0.005067556997663903, - "min_markup": 0.008721697994701487, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03613211478301597, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3547292688181615, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/COCOSUSDT.json b/configs/live/multisymbol/recursive_grid/COCOSUSDT.json deleted file mode 100644 index 915cf61ca..000000000 --- a/configs/live/multisymbol/recursive_grid/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/COMBOUSDT.json b/configs/live/multisymbol/recursive_grid/COMBOUSDT.json deleted file mode 100644 index 9f709d124..000000000 --- a/configs/live/multisymbol/recursive_grid/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.658457003518225, - "ema_span_0": 347.44896532233116, - "ema_span_1": 207.72484986607017, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011028312962298125, - "markup_range": 0.0074260491409747645, - "min_markup": 0.0072619976973722815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.032935101737063315, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7582899027246691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/COMPUSDT.json b/configs/live/multisymbol/recursive_grid/COMPUSDT.json deleted file mode 100644 index a2a5bcdcb..000000000 --- a/configs/live/multisymbol/recursive_grid/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6359521481225742, - "ema_span_0": 675.7653150075105, - "ema_span_1": 1245.8970999412052, - "enabled": true, - "initial_eprice_ema_dist": -0.0002331656409676974, - "initial_qty_pct": 0.02088837671181572, - "markup_range": 0.0025497687367048894, - "min_markup": 0.008296441323430388, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03650955469993642, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3681201805538916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/COTIUSDT.json b/configs/live/multisymbol/recursive_grid/COTIUSDT.json deleted file mode 100644 index 6e320c734..000000000 --- a/configs/live/multisymbol/recursive_grid/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.10512501333640797, - "ema_span_0": 1230.170917846426, - "ema_span_1": 894.1221537134414, - "enabled": true, - "initial_eprice_ema_dist": -0.09999788026190166, - "initial_qty_pct": 0.01274889249218608, - "markup_range": 0.0046199592271502846, - "min_markup": 0.0031514524286734894, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03171116248970977, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5600556598055996, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9502183749089206, - "ema_span_0": 863.7700022067526, - "ema_span_1": 916.6164024031077, - "enabled": true, - "initial_eprice_ema_dist": 0.002999529863746819, - "initial_qty_pct": 0.013219688132044606, - "markup_range": 0.003955636296357747, - "min_markup": 0.0038252476236090914, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048924354416137364, - "rentry_pprice_dist_wallet_exposure_weighting": 18.09511521899609, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CRVUSDT.json b/configs/live/multisymbol/recursive_grid/CRVUSDT.json deleted file mode 100644 index 452b579df..000000000 --- a/configs/live/multisymbol/recursive_grid/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1736542384581994, - "ema_span_0": 1111.127771408782, - "ema_span_1": 1051.1491474659954, - "enabled": true, - "initial_eprice_ema_dist": -0.0017838848750858882, - "initial_qty_pct": 0.012690558976674282, - "markup_range": 0.003156322778575609, - "min_markup": 0.00526279453190407, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03174383273755451, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8645431707443696, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.924723341208564, - "ema_span_0": 558.7304009098353, - "ema_span_1": 982.5829671149361, - "enabled": true, - "initial_eprice_ema_dist": 0.002609404643086778, - "initial_qty_pct": 0.014736493740955491, - "markup_range": 0.0075691437339974275, - "min_markup": 0.004603427202943657, - "n_close_orders": 6, - "rentry_pprice_dist": 0.042136448986262634, - "rentry_pprice_dist_wallet_exposure_weighting": 9.902435290268455, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CTKUSDT.json b/configs/live/multisymbol/recursive_grid/CTKUSDT.json deleted file mode 100644 index 9b967a0f2..000000000 --- a/configs/live/multisymbol/recursive_grid/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.658457003518225, - "ema_span_0": 347.44896532233116, - "ema_span_1": 207.72484986607017, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011028312962298125, - "markup_range": 0.0074260491409747645, - "min_markup": 0.0072619976973722815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.032935101737063315, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7582899027246691, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.41585639315693257, - "ema_span_0": 467.63167549776625, - "ema_span_1": 595.1837365265421, - "enabled": true, - "initial_eprice_ema_dist": -0.013645544399180337, - "initial_qty_pct": 0.012381390146376544, - "markup_range": 0.0018531670849010209, - "min_markup": 0.005137894896539731, - "n_close_orders": 6, - "rentry_pprice_dist": 0.028125281301634452, - "rentry_pprice_dist_wallet_exposure_weighting": 14.04576533491798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CTSIUSDT.json b/configs/live/multisymbol/recursive_grid/CTSIUSDT.json deleted file mode 100644 index a9dc11d82..000000000 --- a/configs/live/multisymbol/recursive_grid/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3184438759788943, - "ema_span_0": 220.6253022373511, - "ema_span_1": 1121.3049082444154, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015238554422208, - "markup_range": 0.006256762369543269, - "min_markup": 0.0056165848326883575, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04666386069529587, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07544656025106579, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CVCUSDT.json b/configs/live/multisymbol/recursive_grid/CVCUSDT.json deleted file mode 100644 index 170574882..000000000 --- a/configs/live/multisymbol/recursive_grid/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.920058955902206, - "ema_span_0": 225.70030866407188, - "ema_span_1": 1004.6283690728403, - "enabled": true, - "initial_eprice_ema_dist": -0.010854661595498919, - "initial_qty_pct": 0.01008556993602723, - "markup_range": 0.00019686478267776108, - "min_markup": 0.0028270617363223833, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03818980199392528, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039234684545597, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CVXUSDT.json b/configs/live/multisymbol/recursive_grid/CVXUSDT.json deleted file mode 100644 index 12e8ab40b..000000000 --- a/configs/live/multisymbol/recursive_grid/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7402610846417237, - "ema_span_0": 907.0901100936347, - "ema_span_1": 1397.9636646627, - "enabled": true, - "initial_eprice_ema_dist": 0.0014272806184822677, - "initial_qty_pct": 0.01643718382176242, - "markup_range": 0.004415712957343203, - "min_markup": 0.004212729776643347, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043031420437824194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9622617744729288, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/CYBERUSDT.json b/configs/live/multisymbol/recursive_grid/CYBERUSDT.json deleted file mode 100644 index 0274886da..000000000 --- a/configs/live/multisymbol/recursive_grid/CYBERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9502183749089206, - "ema_span_0": 863.7700022067526, - "ema_span_1": 916.6164024031077, - "enabled": true, - "initial_eprice_ema_dist": 0.002999529863746819, - "initial_qty_pct": 0.013219688132044606, - "markup_range": 0.003955636296357747, - "min_markup": 0.0038252476236090914, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048924354416137364, - "rentry_pprice_dist_wallet_exposure_weighting": 18.09511521899609, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DARUSDT.json b/configs/live/multisymbol/recursive_grid/DARUSDT.json deleted file mode 100644 index 4525b447b..000000000 --- a/configs/live/multisymbol/recursive_grid/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8091123082798806, - "ema_span_0": 1358.572775373062, - "ema_span_1": 1041.5614546048996, - "enabled": true, - "initial_eprice_ema_dist": -0.0017236778343106749, - "initial_qty_pct": 0.010702834275615204, - "markup_range": 0.0005799934587062832, - "min_markup": 0.0036399693960437645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027195074014125922, - "rentry_pprice_dist_wallet_exposure_weighting": 3.451551087413407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9727604077664379, - "ema_span_0": 318.22426771510743, - "ema_span_1": 858.2989883328457, - "enabled": true, - "initial_eprice_ema_dist": -0.0025575877568094056, - "initial_qty_pct": 0.011770313126978446, - "markup_range": 0.0029772007734779568, - "min_markup": 0.008819296503460462, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032609119614941555, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0098679892922675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DASHUSDT.json b/configs/live/multisymbol/recursive_grid/DASHUSDT.json deleted file mode 100644 index e70869bc8..000000000 --- a/configs/live/multisymbol/recursive_grid/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5213428448085882, - "ema_span_0": 1016.2610693776749, - "ema_span_1": 749.6093864181287, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014218778618065543, - "markup_range": 0.0027211641924264262, - "min_markup": 0.005467249019465325, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03136839539166837, - "rentry_pprice_dist_wallet_exposure_weighting": 10.728054258455577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1963320619809854, - "ema_span_0": 473.7639303589238, - "ema_span_1": 382.4932985178262, - "enabled": true, - "initial_eprice_ema_dist": -0.005456890994231539, - "initial_qty_pct": 0.023127245602966914, - "markup_range": 0.004599570704888304, - "min_markup": 0.004849288520329851, - "n_close_orders": 3, - "rentry_pprice_dist": 0.0341002107351647, - "rentry_pprice_dist_wallet_exposure_weighting": 4.795798726471229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DEFIUSDT.json b/configs/live/multisymbol/recursive_grid/DEFIUSDT.json deleted file mode 100644 index 80a15f679..000000000 --- a/configs/live/multisymbol/recursive_grid/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9458689071676201, - "ema_span_0": 212.73993000907225, - "ema_span_1": 882.340759214176, - "enabled": true, - "initial_eprice_ema_dist": -0.037981021866383996, - "initial_qty_pct": 0.01912235814460299, - "markup_range": 0.005482475940580243, - "min_markup": 0.004766679484210271, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04504477924770627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7587601804803278, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6465259418081155, - "ema_span_0": 1106.3087021463616, - "ema_span_1": 1392.197090016136, - "enabled": true, - "initial_eprice_ema_dist": 0.0029291483336787256, - "initial_qty_pct": 0.01231682613606531, - "markup_range": 0.005975153963123907, - "min_markup": 0.006986906247853072, - "n_close_orders": 13, - "rentry_pprice_dist": 0.032593065179502986, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8873753086757523, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DENTUSDT.json b/configs/live/multisymbol/recursive_grid/DENTUSDT.json deleted file mode 100644 index a7e55305e..000000000 --- a/configs/live/multisymbol/recursive_grid/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5697631809055101, - "ema_span_0": 1017.825618597538, - "ema_span_1": 418.95318096409284, - "enabled": true, - "initial_eprice_ema_dist": -0.009959214011215816, - "initial_qty_pct": 0.010756910779543308, - "markup_range": 0.0010026897320589037, - "min_markup": 0.0022596132886762155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02727058405105273, - "rentry_pprice_dist_wallet_exposure_weighting": 3.01079171867751, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.007409972139902, - "ema_span_0": 536.4828491360819, - "ema_span_1": 1038.3872390032402, - "enabled": true, - "initial_eprice_ema_dist": 0.002999984880479396, - "initial_qty_pct": 0.018599518982439882, - "markup_range": 0.0038675946326847026, - "min_markup": 0.00405450529690819, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037605622856722656, - "rentry_pprice_dist_wallet_exposure_weighting": 4.498966044925662, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DGBUSDT.json b/configs/live/multisymbol/recursive_grid/DGBUSDT.json deleted file mode 100644 index ad0b476a0..000000000 --- a/configs/live/multisymbol/recursive_grid/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8091123082798806, - "ema_span_0": 1358.572775373062, - "ema_span_1": 1041.5614546048996, - "enabled": true, - "initial_eprice_ema_dist": -0.0017236778343106749, - "initial_qty_pct": 0.010702834275615204, - "markup_range": 0.0005799934587062832, - "min_markup": 0.0036399693960437645, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027195074014125922, - "rentry_pprice_dist_wallet_exposure_weighting": 3.451551087413407, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DODOXUSDT.json b/configs/live/multisymbol/recursive_grid/DODOXUSDT.json deleted file mode 100644 index 96d783d2c..000000000 --- a/configs/live/multisymbol/recursive_grid/DODOXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.050712060838139, - "ema_span_0": 281.0187433812133, - "ema_span_1": 1356.048173502578, - "enabled": true, - "initial_eprice_ema_dist": -0.002197396037854266, - "initial_qty_pct": 0.01010137687996034, - "markup_range": 7.743843059996673e-05, - "min_markup": 0.0020516436448160718, - "n_close_orders": 11, - "rentry_pprice_dist": 0.016562456488199616, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23460534554590445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DOGEUSDT.json b/configs/live/multisymbol/recursive_grid/DOGEUSDT.json deleted file mode 100644 index 512f33df2..000000000 --- a/configs/live/multisymbol/recursive_grid/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.583886909265108, - "ema_span_0": 160.2036035044118, - "ema_span_1": 161.1513428941748, - "enabled": true, - "initial_eprice_ema_dist": 0.001975371600870204, - "initial_qty_pct": 0.022019390665189167, - "markup_range": 0.0029887140873306674, - "min_markup": 0.0014758996981031416, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02118506710915445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1108815725309518, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3354911473096258, - "ema_span_0": 427.1576939480485, - "ema_span_1": 1062.992213692943, - "enabled": true, - "initial_eprice_ema_dist": 0.0019027916010839817, - "initial_qty_pct": 0.011305274576516524, - "markup_range": 0.0030618075209961518, - "min_markup": 0.004735581286202342, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03572147163752197, - "rentry_pprice_dist_wallet_exposure_weighting": 1.068729968328676, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DOTUSDT.json b/configs/live/multisymbol/recursive_grid/DOTUSDT.json deleted file mode 100644 index 2484a6e13..000000000 --- a/configs/live/multisymbol/recursive_grid/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.842363031737599, - "ema_span_0": 1231.6978092290967, - "ema_span_1": 1227.8071121499408, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.036874428656762895, - "markup_range": 0.0007046697254697353, - "min_markup": 0.00510463377037829, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04174732494831719, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6784078716187707, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DUSKUSDT.json b/configs/live/multisymbol/recursive_grid/DUSKUSDT.json deleted file mode 100644 index 1df416ca1..000000000 --- a/configs/live/multisymbol/recursive_grid/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9037680636823774, - "ema_span_0": 292.01345655020276, - "ema_span_1": 981.9064530850376, - "enabled": true, - "initial_eprice_ema_dist": -0.0027514804087228695, - "initial_qty_pct": 0.016802507642199902, - "markup_range": 0.003266383199468367, - "min_markup": 0.007860344824913282, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03695306857268699, - "rentry_pprice_dist_wallet_exposure_weighting": 2.543165253920329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/DYDXUSDT.json b/configs/live/multisymbol/recursive_grid/DYDXUSDT.json deleted file mode 100644 index 23b55d4b4..000000000 --- a/configs/live/multisymbol/recursive_grid/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/EDUUSDT.json b/configs/live/multisymbol/recursive_grid/EDUUSDT.json deleted file mode 100644 index e71a5aeb3..000000000 --- a/configs/live/multisymbol/recursive_grid/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.994834190251998, - "ema_span_0": 756.5628616931731, - "ema_span_1": 1129.9126126341366, - "enabled": true, - "initial_eprice_ema_dist": 0.002541615311706566, - "initial_qty_pct": 0.020818301591062308, - "markup_range": 6.939723751879763e-08, - "min_markup": 0.005095337234902401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047593800710765855, - "rentry_pprice_dist_wallet_exposure_weighting": 0.028196202939589198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/EGLDUSDT.json b/configs/live/multisymbol/recursive_grid/EGLDUSDT.json deleted file mode 100644 index b82386faa..000000000 --- a/configs/live/multisymbol/recursive_grid/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.45815304501212084, - "ema_span_0": 1346.6111581656703, - "ema_span_1": 277.38625226891634, - "enabled": true, - "initial_eprice_ema_dist": 0.00299839983534436, - "initial_qty_pct": 0.03806552283437614, - "markup_range": 0.005478861332473872, - "min_markup": 0.005141572454463575, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03955303053898913, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6973918350757247, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3795268996680963, - "ema_span_0": 550.8417700994066, - "ema_span_1": 310.0126050755299, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01357933002909171, - "markup_range": 0.001435824368842437, - "min_markup": 0.004854080186291205, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04712569821652253, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04979863420908983, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ENJUSDT.json b/configs/live/multisymbol/recursive_grid/ENJUSDT.json deleted file mode 100644 index d45a2904e..000000000 --- a/configs/live/multisymbol/recursive_grid/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4157171861713662, - "ema_span_0": 242.60634144178715, - "ema_span_1": 401.2629795926007, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999536013894483, - "initial_qty_pct": 0.01327772303805518, - "markup_range": 0.006019345595088116, - "min_markup": 0.00600499050437021, - "n_close_orders": 15, - "rentry_pprice_dist": 0.049150333284518, - "rentry_pprice_dist_wallet_exposure_weighting": 0.04211352072696128, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ENSUSDT.json b/configs/live/multisymbol/recursive_grid/ENSUSDT.json deleted file mode 100644 index 91f8adece..000000000 --- a/configs/live/multisymbol/recursive_grid/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4206287172058482, - "ema_span_0": 916.4180455223837, - "ema_span_1": 1327.177889847555, - "enabled": true, - "initial_eprice_ema_dist": -0.002139994537450707, - "initial_qty_pct": 0.011384387847759147, - "markup_range": 0.004304904348260687, - "min_markup": 0.008387425922321634, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03263530569529707, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5771379152998195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/EOSUSDT.json b/configs/live/multisymbol/recursive_grid/EOSUSDT.json deleted file mode 100644 index d415391eb..000000000 --- a/configs/live/multisymbol/recursive_grid/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6561378786914944, - "ema_span_0": 266.8409217173699, - "ema_span_1": 1192.1507019516525, - "enabled": true, - "initial_eprice_ema_dist": -0.007142001296309181, - "initial_qty_pct": 0.014059633459396962, - "markup_range": 0.0035383098233774395, - "min_markup": 0.002383259829557172, - "n_close_orders": 9, - "rentry_pprice_dist": 0.028204716584759912, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5979651920261344, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ETCUSDT.json b/configs/live/multisymbol/recursive_grid/ETCUSDT.json deleted file mode 100644 index adacdb496..000000000 --- a/configs/live/multisymbol/recursive_grid/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9390315438858343, - "ema_span_0": 586.69506354118, - "ema_span_1": 617.5614059154349, - "enabled": true, - "initial_eprice_ema_dist": -0.0017324196368964523, - "initial_qty_pct": 0.011234310693666576, - "markup_range": 0.00020777137490732305, - "min_markup": 0.0027967951796243236, - "n_close_orders": 11, - "rentry_pprice_dist": 0.022897123165029638, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8625515893077829, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.335553001117989, - "ema_span_0": 336.0173715906813, - "ema_span_1": 77.1241932882877, - "enabled": true, - "initial_eprice_ema_dist": 0.00227004327393144, - "initial_qty_pct": 0.011960836566301945, - "markup_range": 0.0038586705167789875, - "min_markup": 0.003408185831895334, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03263622581275435, - "rentry_pprice_dist_wallet_exposure_weighting": 6.9529811252712985, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ETHUSDT.json b/configs/live/multisymbol/recursive_grid/ETHUSDT.json deleted file mode 100644 index 955f729f8..000000000 --- a/configs/live/multisymbol/recursive_grid/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9780311851406476, - "ema_span_0": 312.50740245066567, - "ema_span_1": 417.6607338324698, - "enabled": true, - "initial_eprice_ema_dist": 0.00192763985788516, - "initial_qty_pct": 0.015477850727412689, - "markup_range": 0.0, - "min_markup": 0.0031868877845640533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.016199446887888623, - "rentry_pprice_dist_wallet_exposure_weighting": 1.586630651746572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.747561209412007, - "ema_span_0": 225.11161118090456, - "ema_span_1": 1252.4883755499727, - "enabled": true, - "initial_eprice_ema_dist": 0.0029901989651158036, - "initial_qty_pct": 0.011005695321813702, - "markup_range": 0.0037722790945919626, - "min_markup": 0.0024966973045852793, - "n_close_orders": 4, - "rentry_pprice_dist": 0.020103823052974777, - "rentry_pprice_dist_wallet_exposure_weighting": 6.312510528233905, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FETUSDT.json b/configs/live/multisymbol/recursive_grid/FETUSDT.json deleted file mode 100644 index d8c5f62dd..000000000 --- a/configs/live/multisymbol/recursive_grid/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9458689071676201, - "ema_span_0": 212.73993000907225, - "ema_span_1": 882.340759214176, - "enabled": true, - "initial_eprice_ema_dist": -0.037981021866383996, - "initial_qty_pct": 0.01912235814460299, - "markup_range": 0.005482475940580243, - "min_markup": 0.004766679484210271, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04504477924770627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7587601804803278, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.374271568198962, - "ema_span_0": 163.28690009893245, - "ema_span_1": 1233.029272335783, - "enabled": true, - "initial_eprice_ema_dist": 0.0007626165567584787, - "initial_qty_pct": 0.02217543297206493, - "markup_range": 0.0044300985119658225, - "min_markup": 0.0023490418173568277, - "n_close_orders": 4, - "rentry_pprice_dist": 0.035990764826345445, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7162532604198364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FILUSDT.json b/configs/live/multisymbol/recursive_grid/FILUSDT.json deleted file mode 100644 index 6c64f8152..000000000 --- a/configs/live/multisymbol/recursive_grid/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6820234314032104, - "ema_span_0": 1207.0411656378922, - "ema_span_1": 1213.9740594953105, - "enabled": true, - "initial_eprice_ema_dist": 0.002843730659104161, - "initial_qty_pct": 0.013581260472187433, - "markup_range": 0.0013206259460842135, - "min_markup": 0.004055580079786484, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01594382493607837, - "rentry_pprice_dist_wallet_exposure_weighting": 7.480941554654492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.297885882785144, - "ema_span_0": 118.89243775407233, - "ema_span_1": 882.6715634616128, - "enabled": true, - "initial_eprice_ema_dist": -0.0007555397650042811, - "initial_qty_pct": 0.011770311046768792, - "markup_range": 0.0026261004278800874, - "min_markup": 0.004595253309558112, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04099621026213019, - "rentry_pprice_dist_wallet_exposure_weighting": 16.90647783918404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FLMUSDT.json b/configs/live/multisymbol/recursive_grid/FLMUSDT.json deleted file mode 100644 index b70015666..000000000 --- a/configs/live/multisymbol/recursive_grid/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.21155553819479, - "ema_span_0": 760.8861341175993, - "ema_span_1": 1230.3412726627334, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01546217611586069, - "markup_range": 0.003512257157953961, - "min_markup": 0.0077470006321580555, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049247338352128876, - "rentry_pprice_dist_wallet_exposure_weighting": 10.146636774563685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FLOWUSDT.json b/configs/live/multisymbol/recursive_grid/FLOWUSDT.json deleted file mode 100644 index 7354153d2..000000000 --- a/configs/live/multisymbol/recursive_grid/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2646687799240333, - "ema_span_0": 853.1522914702002, - "ema_span_1": 894.8866869570534, - "enabled": true, - "initial_eprice_ema_dist": -0.0053883632103486085, - "initial_qty_pct": 0.010880891090260329, - "markup_range": 0.009003151073093912, - "min_markup": 0.009384396637792822, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04997183687519014, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5171335640096635, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5455786004926524, - "ema_span_0": 1338.8190643222188, - "ema_span_1": 1053.3852627888903, - "enabled": true, - "initial_eprice_ema_dist": -0.0031515908390763736, - "initial_qty_pct": 0.01383480648574903, - "markup_range": 0.0034207683729451286, - "min_markup": 0.005303933607697774, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029336786163315195, - "rentry_pprice_dist_wallet_exposure_weighting": 9.654630395909606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FOOTBALLUSDT.json b/configs/live/multisymbol/recursive_grid/FOOTBALLUSDT.json deleted file mode 100644 index 845976cac..000000000 --- a/configs/live/multisymbol/recursive_grid/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FTMUSDT.json b/configs/live/multisymbol/recursive_grid/FTMUSDT.json deleted file mode 100644 index b762a1d3a..000000000 --- a/configs/live/multisymbol/recursive_grid/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FTTUSDT.json b/configs/live/multisymbol/recursive_grid/FTTUSDT.json deleted file mode 100644 index e625405b7..000000000 --- a/configs/live/multisymbol/recursive_grid/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1649207832787436, - "ema_span_0": 210.25721798782686, - "ema_span_1": 463.383458345308, - "enabled": true, - "initial_eprice_ema_dist": -0.002264901785342703, - "initial_qty_pct": 0.010160385941617521, - "markup_range": 0.0011159678228329884, - "min_markup": 0.003937308792079468, - "n_close_orders": 7, - "rentry_pprice_dist": 0.047500939971454846, - "rentry_pprice_dist_wallet_exposure_weighting": 9.685909411916949, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/FXSUSDT.json b/configs/live/multisymbol/recursive_grid/FXSUSDT.json deleted file mode 100644 index 8d909e8e0..000000000 --- a/configs/live/multisymbol/recursive_grid/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2176690339004235, - "ema_span_0": 624.712046541063, - "ema_span_1": 348.61457272862015, - "enabled": true, - "initial_eprice_ema_dist": 0.00280877930697983, - "initial_qty_pct": 0.012205043322424959, - "markup_range": 0.005356847847614142, - "min_markup": 0.005895269455621546, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04937529900356751, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7321029769275491, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6395614751028036, - "ema_span_0": 928.9870697767467, - "ema_span_1": 970.2260008746944, - "enabled": true, - "initial_eprice_ema_dist": -0.006970486469170834, - "initial_qty_pct": 0.011780163820308968, - "markup_range": 0.006870463204510814, - "min_markup": 0.00855999285740651, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03837845100686926, - "rentry_pprice_dist_wallet_exposure_weighting": 1.816714871802681, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/GALAUSDT.json b/configs/live/multisymbol/recursive_grid/GALAUSDT.json deleted file mode 100644 index ee9ff0b65..000000000 --- a/configs/live/multisymbol/recursive_grid/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9923094946854248, - "ema_span_0": 976.3749679220568, - "ema_span_1": 185.7715602240638, - "enabled": true, - "initial_eprice_ema_dist": 0.001896756049282583, - "initial_qty_pct": 0.021329500562159383, - "markup_range": 0.0017140919685301314, - "min_markup": 0.0026128204307088727, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03283916682909888, - "rentry_pprice_dist_wallet_exposure_weighting": 0.101409826221652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.110106467530348, - "ema_span_0": 973.4229873749248, - "ema_span_1": 958.1541188866846, - "enabled": true, - "initial_eprice_ema_dist": 0.0029977806557525254, - "initial_qty_pct": 0.016324738674111442, - "markup_range": 0.0011043535036331087, - "min_markup": 0.002489943802584134, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02709430582868433, - "rentry_pprice_dist_wallet_exposure_weighting": 11.500513836921657, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/GALUSDT.json b/configs/live/multisymbol/recursive_grid/GALUSDT.json deleted file mode 100644 index 4eee5dfd7..000000000 --- a/configs/live/multisymbol/recursive_grid/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/GMTUSDT.json b/configs/live/multisymbol/recursive_grid/GMTUSDT.json deleted file mode 100644 index 5907403d2..000000000 --- a/configs/live/multisymbol/recursive_grid/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/GMXUSDT.json b/configs/live/multisymbol/recursive_grid/GMXUSDT.json deleted file mode 100644 index dd8a1c85e..000000000 --- a/configs/live/multisymbol/recursive_grid/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.167595655161588, - "ema_span_0": 670.0500831849777, - "ema_span_1": 1314.9848751881473, - "enabled": true, - "initial_eprice_ema_dist": 0.0017552271961483086, - "initial_qty_pct": 0.014479782312822848, - "markup_range": 0.006247725263843084, - "min_markup": 0.005195238935110349, - "n_close_orders": 12, - "rentry_pprice_dist": 0.022111094066342655, - "rentry_pprice_dist_wallet_exposure_weighting": 4.697786483294389, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/GRTUSDT.json b/configs/live/multisymbol/recursive_grid/GRTUSDT.json deleted file mode 100644 index f6bffdd86..000000000 --- a/configs/live/multisymbol/recursive_grid/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1368559642467559, - "ema_span_0": 388.1395901981704, - "ema_span_1": 275.0612850941764, - "enabled": true, - "initial_eprice_ema_dist": -0.08603146329502963, - "initial_qty_pct": 0.012355829335886677, - "markup_range": 0.005464411616080121, - "min_markup": 0.008291637067372556, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03523201204867047, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2172270608757754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.954119463453377, - "ema_span_0": 622.4208572856963, - "ema_span_1": 1354.1644510245915, - "enabled": true, - "initial_eprice_ema_dist": -0.00526472918788522, - "initial_qty_pct": 0.013658243362644571, - "markup_range": 0.00695354257700864, - "min_markup": 0.005332038621022663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036084549507473494, - "rentry_pprice_dist_wallet_exposure_weighting": 2.296498077184323, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/GTCUSDT.json b/configs/live/multisymbol/recursive_grid/GTCUSDT.json deleted file mode 100644 index d853da8bd..000000000 --- a/configs/live/multisymbol/recursive_grid/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/HBARUSDT.json b/configs/live/multisymbol/recursive_grid/HBARUSDT.json deleted file mode 100644 index 092d54e41..000000000 --- a/configs/live/multisymbol/recursive_grid/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2297117872115364, - "ema_span_0": 666.9352875365897, - "ema_span_1": 258.7932713649857, - "enabled": true, - "initial_eprice_ema_dist": 0.0029561243159410065, - "initial_qty_pct": 0.012768047878831668, - "markup_range": 0.0009141991898108719, - "min_markup": 0.002594754817460753, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02038355697089794, - "rentry_pprice_dist_wallet_exposure_weighting": 0.027928595165659396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.007409972139902, - "ema_span_0": 536.4828491360819, - "ema_span_1": 1038.3872390032402, - "enabled": true, - "initial_eprice_ema_dist": 0.002999984880479396, - "initial_qty_pct": 0.018599518982439882, - "markup_range": 0.0038675946326847026, - "min_markup": 0.00405450529690819, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037605622856722656, - "rentry_pprice_dist_wallet_exposure_weighting": 4.498966044925662, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/HFTUSDT.json b/configs/live/multisymbol/recursive_grid/HFTUSDT.json deleted file mode 100644 index fc69e6134..000000000 --- a/configs/live/multisymbol/recursive_grid/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.438778138303399, - "ema_span_0": 602.3323490211033, - "ema_span_1": 450.41927701975163, - "enabled": true, - "initial_eprice_ema_dist": 0.00042608554975636216, - "initial_qty_pct": 0.011239430906555853, - "markup_range": 0.0025138461014344643, - "min_markup": 0.007435058268707118, - "n_close_orders": 4, - "rentry_pprice_dist": 0.028097232938392863, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7907176085201275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.0552087836312976, - "ema_span_0": 1268.9539377150425, - "ema_span_1": 1426.5033741504699, - "enabled": true, - "initial_eprice_ema_dist": 0.002966149538153635, - "initial_qty_pct": 0.03575481161084705, - "markup_range": 0.003766702704061157, - "min_markup": 0.0016034024166463464, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018765960294223727, - "rentry_pprice_dist_wallet_exposure_weighting": 6.865918864643922, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/HIGHUSDT.json b/configs/live/multisymbol/recursive_grid/HIGHUSDT.json deleted file mode 100644 index 13a2cc2a4..000000000 --- a/configs/live/multisymbol/recursive_grid/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 106.86810151308858, - "ema_span_1": 148.88681480041788, - "enabled": true, - "initial_eprice_ema_dist": -0.07689382532657883, - "initial_qty_pct": 0.011923736950371792, - "markup_range": 0.010320365955328823, - "min_markup": 0.009647994602278935, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04960694237794818, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0864316583775788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/HNTUSDT.json b/configs/live/multisymbol/recursive_grid/HNTUSDT.json deleted file mode 100644 index fae2ae4ff..000000000 --- a/configs/live/multisymbol/recursive_grid/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/HOOKUSDT.json b/configs/live/multisymbol/recursive_grid/HOOKUSDT.json deleted file mode 100644 index 1f2838a30..000000000 --- a/configs/live/multisymbol/recursive_grid/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/HOTUSDT.json b/configs/live/multisymbol/recursive_grid/HOTUSDT.json deleted file mode 100644 index b591333a3..000000000 --- a/configs/live/multisymbol/recursive_grid/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5183402852509222, - "ema_span_0": 1333.683905970394, - "ema_span_1": 1014.5793553488094, - "enabled": true, - "initial_eprice_ema_dist": -0.01492353156039376, - "initial_qty_pct": 0.01187257343223744, - "markup_range": 0.004412248741813769, - "min_markup": 0.004061242946623552, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02381089441968036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8109665034711503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7009437619978641, - "ema_span_0": 537.9848696180858, - "ema_span_1": 952.4591987739798, - "enabled": true, - "initial_eprice_ema_dist": 0.001391757255901879, - "initial_qty_pct": 0.03564453822997105, - "markup_range": 0.003675800290838224, - "min_markup": 0.0069285867217960895, - "n_close_orders": 7, - "rentry_pprice_dist": 0.017799191832736524, - "rentry_pprice_dist_wallet_exposure_weighting": 12.684233561152888, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ICPUSDT.json b/configs/live/multisymbol/recursive_grid/ICPUSDT.json deleted file mode 100644 index 2862b0712..000000000 --- a/configs/live/multisymbol/recursive_grid/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1390500852526395, - "ema_span_0": 979.7392681008872, - "ema_span_1": 972.4684243898562, - "enabled": true, - "initial_eprice_ema_dist": -0.0542651168403518, - "initial_qty_pct": 0.016531874523208867, - "markup_range": 0.006125441040561773, - "min_markup": 0.001890345945629892, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02960336647761808, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9618771133103885, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6465259418081155, - "ema_span_0": 1106.3087021463616, - "ema_span_1": 1392.197090016136, - "enabled": true, - "initial_eprice_ema_dist": 0.0029291483336787256, - "initial_qty_pct": 0.01231682613606531, - "markup_range": 0.005975153963123907, - "min_markup": 0.006986906247853072, - "n_close_orders": 13, - "rentry_pprice_dist": 0.032593065179502986, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8873753086757523, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ICXUSDT.json b/configs/live/multisymbol/recursive_grid/ICXUSDT.json deleted file mode 100644 index 5b69c4fda..000000000 --- a/configs/live/multisymbol/recursive_grid/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8769704157763958, - "ema_span_0": 821.7838311959617, - "ema_span_1": 107.16174336349727, - "enabled": true, - "initial_eprice_ema_dist": -0.01155085317321224, - "initial_qty_pct": 0.012207519220236015, - "markup_range": 0.006670019982563465, - "min_markup": 0.0038424717319929403, - "n_close_orders": 13, - "rentry_pprice_dist": 0.039759824804601024, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8790582102273851, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6646279236535362, - "ema_span_0": 1094.7511518032434, - "ema_span_1": 482.9578009793191, - "enabled": true, - "initial_eprice_ema_dist": -0.008845503125898848, - "initial_qty_pct": 0.012544154541726867, - "markup_range": 0.0022429058624957115, - "min_markup": 0.003382646005349876, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04369735855672946, - "rentry_pprice_dist_wallet_exposure_weighting": 0.814290165944775, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/IDEXUSDT.json b/configs/live/multisymbol/recursive_grid/IDEXUSDT.json deleted file mode 100644 index e3055b6b1..000000000 --- a/configs/live/multisymbol/recursive_grid/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/IDUSDT.json b/configs/live/multisymbol/recursive_grid/IDUSDT.json deleted file mode 100644 index 728e01c17..000000000 --- a/configs/live/multisymbol/recursive_grid/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49962014508857006, - "ema_span_0": 662.423079765778, - "ema_span_1": 1215.0589605891234, - "enabled": true, - "initial_eprice_ema_dist": -0.008404526133162745, - "initial_qty_pct": 0.014617788347835654, - "markup_range": 0.003090982575626991, - "min_markup": 0.00523214715059894, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04756984014984003, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4799236109832203, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5470971322180204, - "ema_span_0": 547.7861497828551, - "ema_span_1": 152.40964610896407, - "enabled": true, - "initial_eprice_ema_dist": 0.002289095240377166, - "initial_qty_pct": 0.013225096107875528, - "markup_range": 0.002339435002622375, - "min_markup": 0.004027772474418661, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018466722543051074, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1702617420452874, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/IMXUSDT.json b/configs/live/multisymbol/recursive_grid/IMXUSDT.json deleted file mode 100644 index 4c8c0d2e1..000000000 --- a/configs/live/multisymbol/recursive_grid/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0926663270423567, - "ema_span_0": 1227.5819527027684, - "ema_span_1": 1240.9329313380845, - "enabled": true, - "initial_eprice_ema_dist": -0.005929155582196057, - "initial_qty_pct": 0.014744880769881662, - "markup_range": 0.0024708583097196512, - "min_markup": 0.0031270705646599226, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026295187370944943, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1334794073709404, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.5298354019973357, - "ema_span_0": 858.6563926123694, - "ema_span_1": 779.9324272844686, - "enabled": true, - "initial_eprice_ema_dist": 0.002973568192565228, - "initial_qty_pct": 0.011231687961085028, - "markup_range": 0.0043836721219959384, - "min_markup": 0.003397154095009373, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047398231973480115, - "rentry_pprice_dist_wallet_exposure_weighting": 6.0437613189943304, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/INJUSDT.json b/configs/live/multisymbol/recursive_grid/INJUSDT.json deleted file mode 100644 index 351f9ec47..000000000 --- a/configs/live/multisymbol/recursive_grid/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.316172736698155, - "ema_span_0": 608.1142940365892, - "ema_span_1": 681.9241478016243, - "enabled": true, - "initial_eprice_ema_dist": -0.0004156758696676386, - "initial_qty_pct": 0.011004023926913228, - "markup_range": 0.0013990145960925276, - "min_markup": 0.0038392699716518082, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024114988085479974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.869699193598165, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.297885882785144, - "ema_span_0": 118.89243775407233, - "ema_span_1": 882.6715634616128, - "enabled": true, - "initial_eprice_ema_dist": -0.0007555397650042811, - "initial_qty_pct": 0.011770311046768792, - "markup_range": 0.0026261004278800874, - "min_markup": 0.004595253309558112, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04099621026213019, - "rentry_pprice_dist_wallet_exposure_weighting": 16.90647783918404, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/IOSTUSDT.json b/configs/live/multisymbol/recursive_grid/IOSTUSDT.json deleted file mode 100644 index 8f12558b8..000000000 --- a/configs/live/multisymbol/recursive_grid/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.172004344450509, - "ema_span_0": 809.1579642946015, - "ema_span_1": 568.6402080873801, - "enabled": true, - "initial_eprice_ema_dist": -1.3474513037495294e-05, - "initial_qty_pct": 0.02461717589941418, - "markup_range": 0.006235554549647229, - "min_markup": 0.004140906773347667, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03929135724504117, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8850131408665916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/IOTAUSDT.json b/configs/live/multisymbol/recursive_grid/IOTAUSDT.json deleted file mode 100644 index a7f0dbf84..000000000 --- a/configs/live/multisymbol/recursive_grid/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.11292835254607582, - "ema_span_0": 616.2677393332958, - "ema_span_1": 166.49072994972943, - "enabled": true, - "initial_eprice_ema_dist": 0.002787815019551518, - "initial_qty_pct": 0.01723495690474764, - "markup_range": 0.0043587354682822505, - "min_markup": 0.0058203629817299134, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029045103044760802, - "rentry_pprice_dist_wallet_exposure_weighting": 4.273361959424855, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3935220163555802, - "ema_span_0": 647.0249800611332, - "ema_span_1": 741.024731452196, - "enabled": true, - "initial_eprice_ema_dist": -0.04078981266892904, - "initial_qty_pct": 0.011042115819131925, - "markup_range": 0.0032718149512038653, - "min_markup": 0.0014521005710930977, - "n_close_orders": 5, - "rentry_pprice_dist": 0.042313323019841684, - "rentry_pprice_dist_wallet_exposure_weighting": 9.682584206692592, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/IOTXUSDT.json b/configs/live/multisymbol/recursive_grid/IOTXUSDT.json deleted file mode 100644 index a1c9c4236..000000000 --- a/configs/live/multisymbol/recursive_grid/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/JASMYUSDT.json b/configs/live/multisymbol/recursive_grid/JASMYUSDT.json deleted file mode 100644 index 4962905c5..000000000 --- a/configs/live/multisymbol/recursive_grid/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3562890570908177, - "ema_span_0": 895.5903269298504, - "ema_span_1": 580.0664420672225, - "enabled": true, - "initial_eprice_ema_dist": 0.0029822081422130105, - "initial_qty_pct": 0.011758947892301091, - "markup_range": 0.0034744476923110217, - "min_markup": 0.004878905303967297, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0397905411766869, - "rentry_pprice_dist_wallet_exposure_weighting": 2.798204976178916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/JOEUSDT.json b/configs/live/multisymbol/recursive_grid/JOEUSDT.json deleted file mode 100644 index adbfb8900..000000000 --- a/configs/live/multisymbol/recursive_grid/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.48210643597049124, - "ema_span_0": 939.8200966286657, - "ema_span_1": 511.89130176554073, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0065337156406189735, - "min_markup": 0.004224253453483145, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04099717543391878, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9833671106245464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/KAVAUSDT.json b/configs/live/multisymbol/recursive_grid/KAVAUSDT.json deleted file mode 100644 index 758e3f621..000000000 --- a/configs/live/multisymbol/recursive_grid/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3562890570908177, - "ema_span_0": 895.5903269298504, - "ema_span_1": 580.0664420672225, - "enabled": true, - "initial_eprice_ema_dist": 0.0029822081422130105, - "initial_qty_pct": 0.011758947892301091, - "markup_range": 0.0034744476923110217, - "min_markup": 0.004878905303967297, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0397905411766869, - "rentry_pprice_dist_wallet_exposure_weighting": 2.798204976178916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.227691850670337, - "ema_span_0": 1437.2121101497253, - "ema_span_1": 223.75727290989175, - "enabled": true, - "initial_eprice_ema_dist": 0.0013624055315254523, - "initial_qty_pct": 0.012014724382467408, - "markup_range": 0.004893984294435196, - "min_markup": 0.009816908431294432, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0452362726559965, - "rentry_pprice_dist_wallet_exposure_weighting": 6.461281971119846, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/KEYUSDT.json b/configs/live/multisymbol/recursive_grid/KEYUSDT.json deleted file mode 100644 index 61f1fc3b4..000000000 --- a/configs/live/multisymbol/recursive_grid/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9780311851406476, - "ema_span_0": 312.50740245066567, - "ema_span_1": 417.6607338324698, - "enabled": true, - "initial_eprice_ema_dist": 0.00192763985788516, - "initial_qty_pct": 0.015477850727412689, - "markup_range": 0.0, - "min_markup": 0.0031868877845640533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.016199446887888623, - "rentry_pprice_dist_wallet_exposure_weighting": 1.586630651746572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8749397036489612, - "ema_span_0": 13.020632066798724, - "ema_span_1": 29.383134685403032, - "enabled": true, - "initial_eprice_ema_dist": -0.09694559862999746, - "initial_qty_pct": 0.030321002092639188, - "markup_range": 0.0052471915171047245, - "min_markup": 0.009551531295645477, - "n_close_orders": 3, - "rentry_pprice_dist": 0.037173350672132816, - "rentry_pprice_dist_wallet_exposure_weighting": 8.635678115354173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/KLAYUSDT.json b/configs/live/multisymbol/recursive_grid/KLAYUSDT.json deleted file mode 100644 index a48321424..000000000 --- a/configs/live/multisymbol/recursive_grid/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.711528047461456, - "ema_span_0": 771.2159589926409, - "ema_span_1": 492.67463336601134, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012725437853568741, - "markup_range": 0.003073279783094074, - "min_markup": 0.0031687025618072065, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409905452614207, - "rentry_pprice_dist_wallet_exposure_weighting": 5.646834362999463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/KNCUSDT.json b/configs/live/multisymbol/recursive_grid/KNCUSDT.json deleted file mode 100644 index 407595497..000000000 --- a/configs/live/multisymbol/recursive_grid/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9622262328844453, - "ema_span_0": 1093.357084625005, - "ema_span_1": 1340.9411468279825, - "enabled": true, - "initial_eprice_ema_dist": -0.06370954164328256, - "initial_qty_pct": 0.01079526596402609, - "markup_range": 0.0005635584064413702, - "min_markup": 0.004466693278987666, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04999984210829697, - "rentry_pprice_dist_wallet_exposure_weighting": 1.927298758025484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1833039231010039, - "ema_span_0": 1439.8798931361546, - "ema_span_1": 1375.3738328534546, - "enabled": true, - "initial_eprice_ema_dist": 0.0007115448511710026, - "initial_qty_pct": 0.01711973437199717, - "markup_range": 0.009863290057429119, - "min_markup": 0.005584103352485053, - "n_close_orders": 9, - "rentry_pprice_dist": 0.042377559715913865, - "rentry_pprice_dist_wallet_exposure_weighting": 8.29529360366958, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/KSMUSDT.json b/configs/live/multisymbol/recursive_grid/KSMUSDT.json deleted file mode 100644 index 23e79d7ab..000000000 --- a/configs/live/multisymbol/recursive_grid/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.336692424941889, - "ema_span_0": 728.298192918612, - "ema_span_1": 368.05706662205233, - "enabled": true, - "initial_eprice_ema_dist": 0.0029688815844064235, - "initial_qty_pct": 0.013707092114184697, - "markup_range": 0.002443121150015731, - "min_markup": 0.003574163695759272, - "n_close_orders": 16, - "rentry_pprice_dist": 0.039483864440314174, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5704867133555622, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2580806490131773, - "ema_span_0": 327.62133437334376, - "ema_span_1": 583.4139656908208, - "enabled": true, - "initial_eprice_ema_dist": -0.0013915220530038924, - "initial_qty_pct": 0.014507152611706322, - "markup_range": 0.003230879531880824, - "min_markup": 0.006765153856239801, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0313271756210026, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8139280856036106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LDOUSDT.json b/configs/live/multisymbol/recursive_grid/LDOUSDT.json deleted file mode 100644 index 9d8ef1400..000000000 --- a/configs/live/multisymbol/recursive_grid/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9458689071676201, - "ema_span_0": 212.73993000907225, - "ema_span_1": 882.340759214176, - "enabled": true, - "initial_eprice_ema_dist": -0.037981021866383996, - "initial_qty_pct": 0.01912235814460299, - "markup_range": 0.005482475940580243, - "min_markup": 0.004766679484210271, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04504477924770627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7587601804803278, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LEVERUSDT.json b/configs/live/multisymbol/recursive_grid/LEVERUSDT.json deleted file mode 100644 index ef593ff16..000000000 --- a/configs/live/multisymbol/recursive_grid/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9923094946854248, - "ema_span_0": 976.3749679220568, - "ema_span_1": 185.7715602240638, - "enabled": true, - "initial_eprice_ema_dist": 0.001896756049282583, - "initial_qty_pct": 0.021329500562159383, - "markup_range": 0.0017140919685301314, - "min_markup": 0.0026128204307088727, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03283916682909888, - "rentry_pprice_dist_wallet_exposure_weighting": 0.101409826221652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LINAUSDT.json b/configs/live/multisymbol/recursive_grid/LINAUSDT.json deleted file mode 100644 index 3d677581f..000000000 --- a/configs/live/multisymbol/recursive_grid/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.73763255515973, - "ema_span_0": 573.7393594293017, - "ema_span_1": 465.4854227350008, - "enabled": true, - "initial_eprice_ema_dist": -0.043226082493061285, - "initial_qty_pct": 0.010685743618000508, - "markup_range": 0.0, - "min_markup": 0.0035906909512807583, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9173921356559462, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9502183749089206, - "ema_span_0": 863.7700022067526, - "ema_span_1": 916.6164024031077, - "enabled": true, - "initial_eprice_ema_dist": 0.002999529863746819, - "initial_qty_pct": 0.013219688132044606, - "markup_range": 0.003955636296357747, - "min_markup": 0.0038252476236090914, - "n_close_orders": 8, - "rentry_pprice_dist": 0.048924354416137364, - "rentry_pprice_dist_wallet_exposure_weighting": 18.09511521899609, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LINKUSDT.json b/configs/live/multisymbol/recursive_grid/LINKUSDT.json deleted file mode 100644 index a36f47566..000000000 --- a/configs/live/multisymbol/recursive_grid/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.070011278622829, - "ema_span_0": 118.29922031835078, - "ema_span_1": 862.1773666930102, - "enabled": true, - "initial_eprice_ema_dist": -0.008875332776838161, - "initial_qty_pct": 0.01164552325857641, - "markup_range": 0.005520488804420559, - "min_markup": 0.003250849648848884, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02755114630150652, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2040846589159657, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.240019338621009, - "ema_span_0": 1353.5157046891202, - "ema_span_1": 762.4858184730213, - "enabled": true, - "initial_eprice_ema_dist": -0.030789000094189747, - "initial_qty_pct": 0.011718461259472575, - "markup_range": 0.002599840862973304, - "min_markup": 0.005194533701582255, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04133440449689739, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0977590619494173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LITUSDT.json b/configs/live/multisymbol/recursive_grid/LITUSDT.json deleted file mode 100644 index 1937bbc82..000000000 --- a/configs/live/multisymbol/recursive_grid/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3152385695799174, - "ema_span_0": 879.9178065617259, - "ema_span_1": 1282.2585689663917, - "enabled": true, - "initial_eprice_ema_dist": -0.007073652330636105, - "initial_qty_pct": 0.011604148709137403, - "markup_range": 0.004715734951754166, - "min_markup": 0.005064848468744023, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04989236845526927, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6730477014045403, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8797410712806017, - "ema_span_0": 1429.3930346648078, - "ema_span_1": 1179.9442207825518, - "enabled": true, - "initial_eprice_ema_dist": -0.010269877493443848, - "initial_qty_pct": 0.013028290768352546, - "markup_range": 0.004659372826062978, - "min_markup": 0.006499938479366403, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04469584734217476, - "rentry_pprice_dist_wallet_exposure_weighting": 6.940119914562727, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LPTUSDT.json b/configs/live/multisymbol/recursive_grid/LPTUSDT.json deleted file mode 100644 index a1c9c4236..000000000 --- a/configs/live/multisymbol/recursive_grid/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LQTYUSDT.json b/configs/live/multisymbol/recursive_grid/LQTYUSDT.json deleted file mode 100644 index 1c876dfee..000000000 --- a/configs/live/multisymbol/recursive_grid/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.956981755842469, - "ema_span_0": 167.75516573766635, - "ema_span_1": 380.78191603280635, - "enabled": true, - "initial_eprice_ema_dist": 0.002966111165649351, - "initial_qty_pct": 0.018057211804940857, - "markup_range": 0.0015104980014625645, - "min_markup": 0.007054347523993756, - "n_close_orders": 9, - "rentry_pprice_dist": 0.038738197329599544, - "rentry_pprice_dist_wallet_exposure_weighting": 4.131675902955578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.32679133216600975, - "ema_span_0": 830.5553653924926, - "ema_span_1": 45.97083123242871, - "enabled": true, - "initial_eprice_ema_dist": -0.012913792933930933, - "initial_qty_pct": 0.015203948619067716, - "markup_range": 0.0027713260985893235, - "min_markup": 0.004694814049197128, - "n_close_orders": 10, - "rentry_pprice_dist": 0.012197236017571928, - "rentry_pprice_dist_wallet_exposure_weighting": 11.788892424702945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LRCUSDT.json b/configs/live/multisymbol/recursive_grid/LRCUSDT.json deleted file mode 100644 index 998edcc44..000000000 --- a/configs/live/multisymbol/recursive_grid/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4206287172058482, - "ema_span_0": 916.4180455223837, - "ema_span_1": 1327.177889847555, - "enabled": true, - "initial_eprice_ema_dist": -0.002139994537450707, - "initial_qty_pct": 0.011384387847759147, - "markup_range": 0.004304904348260687, - "min_markup": 0.008387425922321634, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03263530569529707, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5771379152998195, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8302619210272612, - "ema_span_0": 764.8744607493253, - "ema_span_1": 10.260309306299478, - "enabled": true, - "initial_eprice_ema_dist": -0.00044498238911550643, - "initial_qty_pct": 0.011224408885708284, - "markup_range": 0.0041204494859002315, - "min_markup": 0.00659476068339152, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04708260506440111, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2093830649163, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LTCUSDT.json b/configs/live/multisymbol/recursive_grid/LTCUSDT.json deleted file mode 100644 index 53b593347..000000000 --- a/configs/live/multisymbol/recursive_grid/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.6143166564810247, - "ema_span_0": 754.4506859323892, - "ema_span_1": 842.906179506524, - "enabled": true, - "initial_eprice_ema_dist": -0.04689810036241554, - "initial_qty_pct": 0.011808166250684817, - "markup_range": 0.002180368992514977, - "min_markup": 0.0029734880981923104, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033268265400893435, - "rentry_pprice_dist_wallet_exposure_weighting": 7.763741872940859, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9846343966411943, - "ema_span_0": 1426.8645204797178, - "ema_span_1": 1362.341599202268, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015043335054241281, - "markup_range": 0.009289260778633427, - "min_markup": 0.003124122113244021, - "n_close_orders": 5, - "rentry_pprice_dist": 0.046822290466542106, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16647331202906823, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/LUNA2USDT.json b/configs/live/multisymbol/recursive_grid/LUNA2USDT.json deleted file mode 100644 index bedaeeb7d..000000000 --- a/configs/live/multisymbol/recursive_grid/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.842363031737599, - "ema_span_0": 1231.6978092290967, - "ema_span_1": 1227.8071121499408, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.036874428656762895, - "markup_range": 0.0007046697254697353, - "min_markup": 0.00510463377037829, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04174732494831719, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6784078716187707, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MAGICUSDT.json b/configs/live/multisymbol/recursive_grid/MAGICUSDT.json deleted file mode 100644 index 0b3e2547a..000000000 --- a/configs/live/multisymbol/recursive_grid/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.339504971144532, - "ema_span_0": 744.3526159338775, - "ema_span_1": 888.0696442046801, - "enabled": true, - "initial_eprice_ema_dist": 0.002987190186017256, - "initial_qty_pct": 0.014176277209751583, - "markup_range": 0.0015215149544157782, - "min_markup": 0.00407087877795885, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04055660593171023, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8187190162958498, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MANAUSDT.json b/configs/live/multisymbol/recursive_grid/MANAUSDT.json deleted file mode 100644 index 805aa6c38..000000000 --- a/configs/live/multisymbol/recursive_grid/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.169787712713988, - "ema_span_0": 1202.6579783390794, - "ema_span_1": 1014.1755480459761, - "enabled": true, - "initial_eprice_ema_dist": 8.716371567378642e-05, - "initial_qty_pct": 0.014668629767546428, - "markup_range": 0.0, - "min_markup": 0.0025510744606631183, - "n_close_orders": 7, - "rentry_pprice_dist": 0.029958019813693188, - "rentry_pprice_dist_wallet_exposure_weighting": 1.12819329649084, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.699741074574412, - "ema_span_0": 178.49965628285025, - "ema_span_1": 1236.0874041384286, - "enabled": true, - "initial_eprice_ema_dist": -0.0018847565219850331, - "initial_qty_pct": 0.020224579242037653, - "markup_range": 0.002364170873227417, - "min_markup": 0.004560255195901688, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03687749756373675, - "rentry_pprice_dist_wallet_exposure_weighting": 0.41971094909048146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MASKUSDT.json b/configs/live/multisymbol/recursive_grid/MASKUSDT.json deleted file mode 100644 index c8792f090..000000000 --- a/configs/live/multisymbol/recursive_grid/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MATICUSDT.json b/configs/live/multisymbol/recursive_grid/MATICUSDT.json deleted file mode 100644 index 37b43158d..000000000 --- a/configs/live/multisymbol/recursive_grid/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8851552149449038, - "ema_span_0": 78.25042797912354, - "ema_span_1": 342.56261268441733, - "enabled": true, - "initial_eprice_ema_dist": -0.005095607199890936, - "initial_qty_pct": 0.012987541427671737, - "markup_range": 0.006112888929861149, - "min_markup": 0.002506589375495005, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029252990421043828, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2125300020289485, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3184438759788943, - "ema_span_0": 220.6253022373511, - "ema_span_1": 1121.3049082444154, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015238554422208, - "markup_range": 0.006256762369543269, - "min_markup": 0.0056165848326883575, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04666386069529587, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07544656025106579, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MAVUSDT.json b/configs/live/multisymbol/recursive_grid/MAVUSDT.json deleted file mode 100644 index 12e47c93a..000000000 --- a/configs/live/multisymbol/recursive_grid/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8837358646228952, - "ema_span_0": 674.4955612563916, - "ema_span_1": 663.3588279319678, - "enabled": true, - "initial_eprice_ema_dist": -0.04315311098159625, - "initial_qty_pct": 0.01091387824837436, - "markup_range": 0.0007823086340090343, - "min_markup": 0.008775263053012733, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045274023703218445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6602345008790333, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MDTUSDT.json b/configs/live/multisymbol/recursive_grid/MDTUSDT.json deleted file mode 100644 index 31aca34b1..000000000 --- a/configs/live/multisymbol/recursive_grid/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2718080175558457, - "ema_span_0": 435.81069739859566, - "ema_span_1": 810.8603156250889, - "enabled": true, - "initial_eprice_ema_dist": -0.01177312836287908, - "initial_qty_pct": 0.01039163601041924, - "markup_range": 0.004763871437898163, - "min_markup": 0.0023004952748961285, - "n_close_orders": 10, - "rentry_pprice_dist": 0.029063854519638083, - "rentry_pprice_dist_wallet_exposure_weighting": 4.432978900239466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MINAUSDT.json b/configs/live/multisymbol/recursive_grid/MINAUSDT.json deleted file mode 100644 index 6ee92d6a9..000000000 --- a/configs/live/multisymbol/recursive_grid/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9267230944646332, - "ema_span_0": 1070.2235791358275, - "ema_span_1": 1072.5620617467998, - "enabled": true, - "initial_eprice_ema_dist": 0.002996387973665314, - "initial_qty_pct": 0.018510090131773998, - "markup_range": 0.00356482273509978, - "min_markup": 0.009738705411198135, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04182900564020842, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6499498558931125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5455786004926524, - "ema_span_0": 1338.8190643222188, - "ema_span_1": 1053.3852627888903, - "enabled": true, - "initial_eprice_ema_dist": -0.0031515908390763736, - "initial_qty_pct": 0.01383480648574903, - "markup_range": 0.0034207683729451286, - "min_markup": 0.005303933607697774, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029336786163315195, - "rentry_pprice_dist_wallet_exposure_weighting": 9.654630395909606, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MKRUSDT.json b/configs/live/multisymbol/recursive_grid/MKRUSDT.json deleted file mode 100644 index 64cc84952..000000000 --- a/configs/live/multisymbol/recursive_grid/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4912409412608636, - "ema_span_0": 962.8708527444306, - "ema_span_1": 188.72825234468272, - "enabled": true, - "initial_eprice_ema_dist": -0.000475521436563427, - "initial_qty_pct": 0.010793346894602844, - "markup_range": 0.003131031622071269, - "min_markup": 0.0036327130656680488, - "n_close_orders": 16, - "rentry_pprice_dist": 0.030974293965227825, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0504975231773544, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/MTLUSDT.json b/configs/live/multisymbol/recursive_grid/MTLUSDT.json deleted file mode 100644 index 49ce9df3e..000000000 --- a/configs/live/multisymbol/recursive_grid/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.923748586474249, - "ema_span_0": 794.1856666630048, - "ema_span_1": 1424.8592166856565, - "enabled": true, - "initial_eprice_ema_dist": 0.002988697466095334, - "initial_qty_pct": 0.018913304659158265, - "markup_range": 0.005367540356243014, - "min_markup": 0.008798119861577568, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0481684020477854, - "rentry_pprice_dist_wallet_exposure_weighting": 1.593971588327007, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5722761492877847, - "ema_span_0": 1373.2310365528808, - "ema_span_1": 1419.46875974585, - "enabled": true, - "initial_eprice_ema_dist": 0.0029992377607297154, - "initial_qty_pct": 0.015152938292362068, - "markup_range": 0.0036507818755745136, - "min_markup": 0.006617966924567955, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04435688338592538, - "rentry_pprice_dist_wallet_exposure_weighting": 11.401381799551249, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/NEARUSDT.json b/configs/live/multisymbol/recursive_grid/NEARUSDT.json deleted file mode 100644 index 3a499ce29..000000000 --- a/configs/live/multisymbol/recursive_grid/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7476460977500154, - "ema_span_0": 1380.6291992671718, - "ema_span_1": 728.9157726992975, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.022977321540855043, - "markup_range": 0.0003227515176624567, - "min_markup": 0.0023475942246008736, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032431391516549724, - "rentry_pprice_dist_wallet_exposure_weighting": 0.189128937073541, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3796123605256332, - "ema_span_0": 1329.7194814110603, - "ema_span_1": 1199.3289784912201, - "enabled": true, - "initial_eprice_ema_dist": 0.0029924499869306027, - "initial_qty_pct": 0.011596981507328283, - "markup_range": 0.002641623183728599, - "min_markup": 0.004276636217878023, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04542143939715495, - "rentry_pprice_dist_wallet_exposure_weighting": 10.42199790791283, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/NEOUSDT.json b/configs/live/multisymbol/recursive_grid/NEOUSDT.json deleted file mode 100644 index 47a5ea469..000000000 --- a/configs/live/multisymbol/recursive_grid/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2381738950778187, - "ema_span_0": 155.7709927457189, - "ema_span_1": 1260.3397032117737, - "enabled": true, - "initial_eprice_ema_dist": 0.002997139129821119, - "initial_qty_pct": 0.013112161210005678, - "markup_range": 0.002828780575893693, - "min_markup": 0.002629647994916009, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04999959905525485, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0473412697989235, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/NKNUSDT.json b/configs/live/multisymbol/recursive_grid/NKNUSDT.json deleted file mode 100644 index 6ec26460c..000000000 --- a/configs/live/multisymbol/recursive_grid/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.28969005414213894, - "ema_span_0": 1369.6375180532486, - "ema_span_1": 1403.545779808881, - "enabled": true, - "initial_eprice_ema_dist": -0.006130789480752758, - "initial_qty_pct": 0.015325503967214759, - "markup_range": 0.014493929757035673, - "min_markup": 0.009270925698405378, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03681768372510156, - "rentry_pprice_dist_wallet_exposure_weighting": 7.834777532263882, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/NMRUSDT.json b/configs/live/multisymbol/recursive_grid/NMRUSDT.json deleted file mode 100644 index 2dcf9588b..000000000 --- a/configs/live/multisymbol/recursive_grid/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.15969574631186373, - "ema_span_0": 78.25042797912354, - "ema_span_1": 1340.9411468279825, - "enabled": true, - "initial_eprice_ema_dist": -0.002064158949012438, - "initial_qty_pct": 0.011604148709137403, - "markup_range": 0.0028362638400434965, - "min_markup": 0.0057038187873005505, - "n_close_orders": 7, - "rentry_pprice_dist": 0.007698210805738719, - "rentry_pprice_dist_wallet_exposure_weighting": 5.9367516207433475, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3976430099033979, - "ema_span_0": 867.238978732146, - "ema_span_1": 789.1781687310062, - "enabled": true, - "initial_eprice_ema_dist": -0.0015185246490819469, - "initial_qty_pct": 0.011412997299540642, - "markup_range": 0.007244498057682766, - "min_markup": 0.004885654022035027, - "n_close_orders": 5, - "rentry_pprice_dist": 0.019664446604709562, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5823004011805533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/OCEANUSDT.json b/configs/live/multisymbol/recursive_grid/OCEANUSDT.json deleted file mode 100644 index b27437347..000000000 --- a/configs/live/multisymbol/recursive_grid/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.91058381302455, - "ema_span_0": 514.6559671669283, - "ema_span_1": 408.5887307073009, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013641251161158847, - "markup_range": 0.006327492756577452, - "min_markup": 0.008439347812636009, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03680366320286927, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2880762512685155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2734626486930097, - "ema_span_0": 1216.9376823043717, - "ema_span_1": 902.2238732036184, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.02593839617407182, - "markup_range": 0.015597430975277599, - "min_markup": 0.009008721241305492, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02729814421209618, - "rentry_pprice_dist_wallet_exposure_weighting": 5.5959633983840185, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/OGNUSDT.json b/configs/live/multisymbol/recursive_grid/OGNUSDT.json deleted file mode 100644 index f94c75dfb..000000000 --- a/configs/live/multisymbol/recursive_grid/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.920058955902206, - "ema_span_0": 225.70030866407188, - "ema_span_1": 1004.6283690728403, - "enabled": true, - "initial_eprice_ema_dist": -0.010854661595498919, - "initial_qty_pct": 0.01008556993602723, - "markup_range": 0.00019686478267776108, - "min_markup": 0.0028270617363223833, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03818980199392528, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039234684545597, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7293491803044803, - "ema_span_0": 1125.1153960124457, - "ema_span_1": 720.2880346834393, - "enabled": true, - "initial_eprice_ema_dist": -0.008319852638097995, - "initial_qty_pct": 0.012539813517674185, - "markup_range": 0.0005338546380405643, - "min_markup": 0.0024275924794710723, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03732299283037733, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14993943108274224, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/OMGUSDT.json b/configs/live/multisymbol/recursive_grid/OMGUSDT.json deleted file mode 100644 index b45c9f0bc..000000000 --- a/configs/live/multisymbol/recursive_grid/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.669398937361575, - "ema_span_0": 1383.3331658106865, - "ema_span_1": 39.51749216017186, - "enabled": true, - "initial_eprice_ema_dist": 0.0004848199606328876, - "initial_qty_pct": 0.017816171869779483, - "markup_range": 0.009135579295017683, - "min_markup": 0.009979933528916532, - "n_close_orders": 2, - "rentry_pprice_dist": 0.042096580914602715, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12357758766277843, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9263493244927148, - "ema_span_0": 118.55050140006173, - "ema_span_1": 26.177201866394913, - "enabled": true, - "initial_eprice_ema_dist": 0.0025358417694928597, - "initial_qty_pct": 0.013336774243411415, - "markup_range": 0.001532440082328491, - "min_markup": 0.009942677716086415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.049482671180504555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3841564123775789, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ONEUSDT.json b/configs/live/multisymbol/recursive_grid/ONEUSDT.json deleted file mode 100644 index 3f49628c6..000000000 --- a/configs/live/multisymbol/recursive_grid/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7893085857289758, - "ema_span_0": 95.34810722471096, - "ema_span_1": 129.3140161572695, - "enabled": true, - "initial_eprice_ema_dist": -0.08131250934062895, - "initial_qty_pct": 0.01122888795780465, - "markup_range": 0.0052539077993212745, - "min_markup": 0.004582227400370479, - "n_close_orders": 16, - "rentry_pprice_dist": 0.041979614108547905, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5761665635421347, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ONTUSDT.json b/configs/live/multisymbol/recursive_grid/ONTUSDT.json deleted file mode 100644 index bef6e8dbf..000000000 --- a/configs/live/multisymbol/recursive_grid/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3523297308106912, - "ema_span_0": 638.7118049632558, - "ema_span_1": 523.1463352496196, - "enabled": true, - "initial_eprice_ema_dist": 0.0023438156999420505, - "initial_qty_pct": 0.01325073140410782, - "markup_range": 0.009242900767382675, - "min_markup": 0.007855349930017255, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04432781053949351, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3382441768820437, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/OPUSDT.json b/configs/live/multisymbol/recursive_grid/OPUSDT.json deleted file mode 100644 index fa470cafc..000000000 --- a/configs/live/multisymbol/recursive_grid/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5697631809055101, - "ema_span_0": 1017.825618597538, - "ema_span_1": 418.95318096409284, - "enabled": true, - "initial_eprice_ema_dist": -0.009959214011215816, - "initial_qty_pct": 0.010756910779543308, - "markup_range": 0.0010026897320589037, - "min_markup": 0.0022596132886762155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02727058405105273, - "rentry_pprice_dist_wallet_exposure_weighting": 3.01079171867751, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.21155553819479, - "ema_span_0": 760.8861341175993, - "ema_span_1": 1230.3412726627334, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01546217611586069, - "markup_range": 0.003512257157953961, - "min_markup": 0.0077470006321580555, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049247338352128876, - "rentry_pprice_dist_wallet_exposure_weighting": 10.146636774563685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/OXTUSDT.json b/configs/live/multisymbol/recursive_grid/OXTUSDT.json deleted file mode 100644 index 22d47e073..000000000 --- a/configs/live/multisymbol/recursive_grid/OXTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3907135831352164, - "ema_span_0": 1239.862276330514, - "ema_span_1": 1409.4769281430806, - "enabled": true, - "initial_eprice_ema_dist": -0.0031950034741578953, - "initial_qty_pct": 0.02493821183210038, - "markup_range": 0.003922049957266154, - "min_markup": 0.0021279703040726606, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03300348737145173, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5742877383723394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.167595655161588, - "ema_span_0": 670.0500831849777, - "ema_span_1": 1314.9848751881473, - "enabled": true, - "initial_eprice_ema_dist": 0.0017552271961483086, - "initial_qty_pct": 0.014479782312822848, - "markup_range": 0.006247725263843084, - "min_markup": 0.005195238935110349, - "n_close_orders": 12, - "rentry_pprice_dist": 0.022111094066342655, - "rentry_pprice_dist_wallet_exposure_weighting": 4.697786483294389, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/PENDLEUSDT.json b/configs/live/multisymbol/recursive_grid/PENDLEUSDT.json deleted file mode 100644 index 99f3eaf3c..000000000 --- a/configs/live/multisymbol/recursive_grid/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7126763459529575, - "ema_span_0": 1032.9177485183366, - "ema_span_1": 1090.8044505210883, - "enabled": true, - "initial_eprice_ema_dist": -0.014942758883192844, - "initial_qty_pct": 0.010595708338563112, - "markup_range": 0.004308677434837939, - "min_markup": 0.0053456138513112515, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03927391929689454, - "rentry_pprice_dist_wallet_exposure_weighting": 0.812082428488758, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/PEOPLEUSDT.json b/configs/live/multisymbol/recursive_grid/PEOPLEUSDT.json deleted file mode 100644 index 279434566..000000000 --- a/configs/live/multisymbol/recursive_grid/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.21155553819479, - "ema_span_0": 760.8861341175993, - "ema_span_1": 1230.3412726627334, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01546217611586069, - "markup_range": 0.003512257157953961, - "min_markup": 0.0077470006321580555, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049247338352128876, - "rentry_pprice_dist_wallet_exposure_weighting": 10.146636774563685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/PERPUSDT.json b/configs/live/multisymbol/recursive_grid/PERPUSDT.json deleted file mode 100644 index 864bfac71..000000000 --- a/configs/live/multisymbol/recursive_grid/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6820234314032104, - "ema_span_0": 1207.0411656378922, - "ema_span_1": 1213.9740594953105, - "enabled": true, - "initial_eprice_ema_dist": 0.002843730659104161, - "initial_qty_pct": 0.013581260472187433, - "markup_range": 0.0013206259460842135, - "min_markup": 0.004055580079786484, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01594382493607837, - "rentry_pprice_dist_wallet_exposure_weighting": 7.480941554654492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4912409412608636, - "ema_span_0": 962.8708527444306, - "ema_span_1": 188.72825234468272, - "enabled": true, - "initial_eprice_ema_dist": -0.000475521436563427, - "initial_qty_pct": 0.010793346894602844, - "markup_range": 0.003131031622071269, - "min_markup": 0.0036327130656680488, - "n_close_orders": 16, - "rentry_pprice_dist": 0.030974293965227825, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0504975231773544, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/PHBUSDT.json b/configs/live/multisymbol/recursive_grid/PHBUSDT.json deleted file mode 100644 index c6fbbb47d..000000000 --- a/configs/live/multisymbol/recursive_grid/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.17842658665650166, - "ema_span_0": 5, - "ema_span_1": 172.85447108642447, - "enabled": true, - "initial_eprice_ema_dist": -0.05559078820628534, - "initial_qty_pct": 0.011610772612807824, - "markup_range": 0.004717435290045319, - "min_markup": 0.009686102227960083, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0402573577203755, - "rentry_pprice_dist_wallet_exposure_weighting": 0.31117154251246676, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9263493244927148, - "ema_span_0": 118.55050140006173, - "ema_span_1": 26.177201866394913, - "enabled": true, - "initial_eprice_ema_dist": 0.0025358417694928597, - "initial_qty_pct": 0.013336774243411415, - "markup_range": 0.001532440082328491, - "min_markup": 0.009942677716086415, - "n_close_orders": 5, - "rentry_pprice_dist": 0.049482671180504555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3841564123775789, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/QNTUSDT.json b/configs/live/multisymbol/recursive_grid/QNTUSDT.json deleted file mode 100644 index 6342df71e..000000000 --- a/configs/live/multisymbol/recursive_grid/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.583886909265108, - "ema_span_0": 160.2036035044118, - "ema_span_1": 161.1513428941748, - "enabled": true, - "initial_eprice_ema_dist": 0.001975371600870204, - "initial_qty_pct": 0.022019390665189167, - "markup_range": 0.0029887140873306674, - "min_markup": 0.0014758996981031416, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02118506710915445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1108815725309518, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.374271568198962, - "ema_span_0": 163.28690009893245, - "ema_span_1": 1233.029272335783, - "enabled": true, - "initial_eprice_ema_dist": 0.0007626165567584787, - "initial_qty_pct": 0.02217543297206493, - "markup_range": 0.0044300985119658225, - "min_markup": 0.0023490418173568277, - "n_close_orders": 4, - "rentry_pprice_dist": 0.035990764826345445, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7162532604198364, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/QTUMUSDT.json b/configs/live/multisymbol/recursive_grid/QTUMUSDT.json deleted file mode 100644 index fca380e96..000000000 --- a/configs/live/multisymbol/recursive_grid/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1662104523642432, - "ema_span_0": 22.785239990114853, - "ema_span_1": 32.66697181363126, - "enabled": true, - "initial_eprice_ema_dist": -0.032431783417407684, - "initial_qty_pct": 0.012900565534360633, - "markup_range": 0.003609633675765616, - "min_markup": 0.006142427773056204, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03942779902003346, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2275207545761735, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9037680636823774, - "ema_span_0": 292.01345655020276, - "ema_span_1": 981.9064530850376, - "enabled": true, - "initial_eprice_ema_dist": -0.0027514804087228695, - "initial_qty_pct": 0.016802507642199902, - "markup_range": 0.003266383199468367, - "min_markup": 0.007860344824913282, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03695306857268699, - "rentry_pprice_dist_wallet_exposure_weighting": 2.543165253920329, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RADUSDT.json b/configs/live/multisymbol/recursive_grid/RADUSDT.json deleted file mode 100644 index 6293323c3..000000000 --- a/configs/live/multisymbol/recursive_grid/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5183402852509222, - "ema_span_0": 1333.683905970394, - "ema_span_1": 1014.5793553488094, - "enabled": true, - "initial_eprice_ema_dist": -0.01492353156039376, - "initial_qty_pct": 0.01187257343223744, - "markup_range": 0.004412248741813769, - "min_markup": 0.004061242946623552, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02381089441968036, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8109665034711503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RAYUSDT.json b/configs/live/multisymbol/recursive_grid/RAYUSDT.json deleted file mode 100644 index 1aec39c16..000000000 --- a/configs/live/multisymbol/recursive_grid/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.7387035737087013, - "ema_span_0": 890.9911227886728, - "ema_span_1": 1216.4021884213203, - "enabled": true, - "initial_eprice_ema_dist": -0.08982574944876029, - "initial_qty_pct": 0.01189056762005186, - "markup_range": 0.001466463951368804, - "min_markup": 0.002213920984072372, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03453707295381622, - "rentry_pprice_dist_wallet_exposure_weighting": 2.369013044054258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.49477771234476997, - "ema_span_0": 7.884150355842895, - "ema_span_1": 831.5145434298151, - "enabled": true, - "initial_eprice_ema_dist": -0.005319000244021655, - "initial_qty_pct": 0.017299945403047304, - "markup_range": 0.004142259570842666, - "min_markup": 0.005527660431443756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 7.76992152421835, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RDNTUSDT.json b/configs/live/multisymbol/recursive_grid/RDNTUSDT.json deleted file mode 100644 index 428a93094..000000000 --- a/configs/live/multisymbol/recursive_grid/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0286978080361278, - "ema_span_0": 646.0748883447105, - "ema_span_1": 895.139854982858, - "enabled": true, - "initial_eprice_ema_dist": -0.022879011043726454, - "initial_qty_pct": 0.014096494418235843, - "markup_range": 0.008513065072720231, - "min_markup": 0.007901750907989067, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03577954345873484, - "rentry_pprice_dist_wallet_exposure_weighting": 5.005119179695219, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/REEFUSDT.json b/configs/live/multisymbol/recursive_grid/REEFUSDT.json deleted file mode 100644 index ad9e17984..000000000 --- a/configs/live/multisymbol/recursive_grid/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8519015047728429, - "ema_span_0": 756.070701325637, - "ema_span_1": 1136.9516102604841, - "enabled": true, - "initial_eprice_ema_dist": 0.0013516974912487001, - "initial_qty_pct": 0.01366755310228504, - "markup_range": 0.004070758088715231, - "min_markup": 0.0057038187873005505, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03294710231190983, - "rentry_pprice_dist_wallet_exposure_weighting": 5.236804383368756, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RENUSDT.json b/configs/live/multisymbol/recursive_grid/RENUSDT.json deleted file mode 100644 index a112f9263..000000000 --- a/configs/live/multisymbol/recursive_grid/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4330372224595795, - "ema_span_0": 725.5531504058396, - "ema_span_1": 1371.4616522157755, - "enabled": true, - "initial_eprice_ema_dist": -0.00042471063266823157, - "initial_qty_pct": 0.011838685588472135, - "markup_range": 0.002468608993448009, - "min_markup": 0.004711709516880957, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03780085537242983, - "rentry_pprice_dist_wallet_exposure_weighting": 4.9518582314199975, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6382010756106342, - "ema_span_0": 178.64724886627621, - "ema_span_1": 1406.5313963752935, - "enabled": true, - "initial_eprice_ema_dist": 0.0029744953969487006, - "initial_qty_pct": 0.01145470822109892, - "markup_range": 0.014438595498713814, - "min_markup": 0.009575821396725873, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04073795205082972, - "rentry_pprice_dist_wallet_exposure_weighting": 5.28642974574394, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RLCUSDT.json b/configs/live/multisymbol/recursive_grid/RLCUSDT.json deleted file mode 100644 index 0ded005fd..000000000 --- a/configs/live/multisymbol/recursive_grid/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6620309337071222, - "ema_span_0": 533.3077281271238, - "ema_span_1": 76.48348156844193, - "enabled": true, - "initial_eprice_ema_dist": 0.002837239312314329, - "initial_qty_pct": 0.016546198947164276, - "markup_range": 0.00978267793442932, - "min_markup": 0.005109171765832252, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04154952890213596, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0019496165098136838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0286978080361278, - "ema_span_0": 646.0748883447105, - "ema_span_1": 895.139854982858, - "enabled": true, - "initial_eprice_ema_dist": -0.022879011043726454, - "initial_qty_pct": 0.014096494418235843, - "markup_range": 0.008513065072720231, - "min_markup": 0.007901750907989067, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03577954345873484, - "rentry_pprice_dist_wallet_exposure_weighting": 5.005119179695219, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RNDRUSDT.json b/configs/live/multisymbol/recursive_grid/RNDRUSDT.json deleted file mode 100644 index 4dc2b176f..000000000 --- a/configs/live/multisymbol/recursive_grid/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.786565888512243, - "ema_span_0": 1360.394446028515, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010891717117855332, - "markup_range": 0.0067824844844286475, - "min_markup": 0.004972953205252971, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03395018461886906, - "rentry_pprice_dist_wallet_exposure_weighting": 5.459013290616585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ROSEUSDT.json b/configs/live/multisymbol/recursive_grid/ROSEUSDT.json deleted file mode 100644 index 8086d77ef..000000000 --- a/configs/live/multisymbol/recursive_grid/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.208015762129257, - "ema_span_0": 333.090498081687, - "ema_span_1": 464.5241627722567, - "enabled": true, - "initial_eprice_ema_dist": 0.0029914596709809532, - "initial_qty_pct": 0.010491873557071294, - "markup_range": 0.001996465084310474, - "min_markup": 0.0031032996157285063, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0328936001628217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2385624687659167, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.213923970776044, - "ema_span_0": 1149.3450683159158, - "ema_span_1": 46.2055349986496, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012253263285469664, - "markup_range": 0.0008248254259328559, - "min_markup": 0.0016640550227731096, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04127875985649038, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4275679758513373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RSRUSDT.json b/configs/live/multisymbol/recursive_grid/RSRUSDT.json deleted file mode 100644 index ac1ed1b60..000000000 --- a/configs/live/multisymbol/recursive_grid/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2646687799240333, - "ema_span_0": 853.1522914702002, - "ema_span_1": 894.8866869570534, - "enabled": true, - "initial_eprice_ema_dist": -0.0053883632103486085, - "initial_qty_pct": 0.010880891090260329, - "markup_range": 0.009003151073093912, - "min_markup": 0.009384396637792822, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04997183687519014, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5171335640096635, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.960323660908189, - "ema_span_0": 1282.1057340303694, - "ema_span_1": 1291.9786804977227, - "enabled": true, - "initial_eprice_ema_dist": 0.0021805087519462477, - "initial_qty_pct": 0.01638252154386142, - "markup_range": 0.008015256262755387, - "min_markup": 0.005577595991240571, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04896424570986059, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1573377078432634, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RUNEUSDT.json b/configs/live/multisymbol/recursive_grid/RUNEUSDT.json deleted file mode 100644 index bf9ed42c5..000000000 --- a/configs/live/multisymbol/recursive_grid/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.4364410851893356, - "ema_span_0": 875.5987866494493, - "ema_span_1": 913.927902992683, - "enabled": true, - "initial_eprice_ema_dist": 0.0021207999040792056, - "initial_qty_pct": 0.010403552750297912, - "markup_range": 0.015735577647451794, - "min_markup": 0.00880504348520859, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0449849731620022, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3204750775390275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2393332650802351, - "ema_span_0": 1437.3101477996777, - "ema_span_1": 112.87495602431846, - "enabled": true, - "initial_eprice_ema_dist": 0.0010242746812423288, - "initial_qty_pct": 0.01, - "markup_range": 0.009998132117250725, - "min_markup": 0.003770692727515815, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04999877449594722, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7861634897681355, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/RVNUSDT.json b/configs/live/multisymbol/recursive_grid/RVNUSDT.json deleted file mode 100644 index ff509bdbe..000000000 --- a/configs/live/multisymbol/recursive_grid/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3577858203488237, - "ema_span_0": 5.215088790009801, - "ema_span_1": 124.49156585740609, - "enabled": true, - "initial_eprice_ema_dist": 0.002951921745976985, - "initial_qty_pct": 0.029601538934752494, - "markup_range": 0.004022874543642443, - "min_markup": 0.00403900191571121, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04636798287133111, - "rentry_pprice_dist_wallet_exposure_weighting": 0.19042172187182785, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.110106467530348, - "ema_span_0": 973.4229873749248, - "ema_span_1": 958.1541188866846, - "enabled": true, - "initial_eprice_ema_dist": 0.0029977806557525254, - "initial_qty_pct": 0.016324738674111442, - "markup_range": 0.0011043535036331087, - "min_markup": 0.002489943802584134, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02709430582868433, - "rentry_pprice_dist_wallet_exposure_weighting": 11.500513836921657, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SANDUSDT.json b/configs/live/multisymbol/recursive_grid/SANDUSDT.json deleted file mode 100644 index d2e5db323..000000000 --- a/configs/live/multisymbol/recursive_grid/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.316172736698155, - "ema_span_0": 608.1142940365892, - "ema_span_1": 681.9241478016243, - "enabled": true, - "initial_eprice_ema_dist": -0.0004156758696676386, - "initial_qty_pct": 0.011004023926913228, - "markup_range": 0.0013990145960925276, - "min_markup": 0.0038392699716518082, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024114988085479974, - "rentry_pprice_dist_wallet_exposure_weighting": 3.869699193598165, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2324079705713191, - "ema_span_0": 1408.2473749712192, - "ema_span_1": 462.0158238693075, - "enabled": true, - "initial_eprice_ema_dist": -0.0032615399395738488, - "initial_qty_pct": 0.014137182505288576, - "markup_range": 0.0016120622185540388, - "min_markup": 0.004055315906773231, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04297576030546969, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23798794431694353, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SCUSDT.json b/configs/live/multisymbol/recursive_grid/SCUSDT.json deleted file mode 100644 index 23ddd051d..000000000 --- a/configs/live/multisymbol/recursive_grid/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1649207832787436, - "ema_span_0": 210.25721798782686, - "ema_span_1": 463.383458345308, - "enabled": true, - "initial_eprice_ema_dist": -0.002264901785342703, - "initial_qty_pct": 0.010160385941617521, - "markup_range": 0.0011159678228329884, - "min_markup": 0.003937308792079468, - "n_close_orders": 7, - "rentry_pprice_dist": 0.047500939971454846, - "rentry_pprice_dist_wallet_exposure_weighting": 9.685909411916949, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2324079705713191, - "ema_span_0": 1408.2473749712192, - "ema_span_1": 462.0158238693075, - "enabled": true, - "initial_eprice_ema_dist": -0.0032615399395738488, - "initial_qty_pct": 0.014137182505288576, - "markup_range": 0.0016120622185540388, - "min_markup": 0.004055315906773231, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04297576030546969, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23798794431694353, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SEIUSDT.json b/configs/live/multisymbol/recursive_grid/SEIUSDT.json deleted file mode 100644 index 9931338f9..000000000 --- a/configs/live/multisymbol/recursive_grid/SEIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.24042182512842744, - "ema_span_0": 335.99223160614673, - "ema_span_1": 423.60561144447166, - "enabled": true, - "initial_eprice_ema_dist": -0.07946980151596433, - "initial_qty_pct": 0.012420305169108319, - "markup_range": 0.005382663097820749, - "min_markup": 0.003505974125264987, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02427005413532235, - "rentry_pprice_dist_wallet_exposure_weighting": 1.745960920622754, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.954119463453377, - "ema_span_0": 622.4208572856963, - "ema_span_1": 1354.1644510245915, - "enabled": true, - "initial_eprice_ema_dist": -0.00526472918788522, - "initial_qty_pct": 0.013658243362644571, - "markup_range": 0.00695354257700864, - "min_markup": 0.005332038621022663, - "n_close_orders": 5, - "rentry_pprice_dist": 0.036084549507473494, - "rentry_pprice_dist_wallet_exposure_weighting": 2.296498077184323, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SFPUSDT.json b/configs/live/multisymbol/recursive_grid/SFPUSDT.json deleted file mode 100644 index d447b4330..000000000 --- a/configs/live/multisymbol/recursive_grid/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7402610846417237, - "ema_span_0": 907.0901100936347, - "ema_span_1": 1397.9636646627, - "enabled": true, - "initial_eprice_ema_dist": 0.0014272806184822677, - "initial_qty_pct": 0.01643718382176242, - "markup_range": 0.004415712957343203, - "min_markup": 0.004212729776643347, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043031420437824194, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9622617744729288, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3058460271681953, - "ema_span_0": 65.57599891366576, - "ema_span_1": 48.55584575825074, - "enabled": true, - "initial_eprice_ema_dist": -0.050789786484485885, - "initial_qty_pct": 0.013761619510484355, - "markup_range": 0.0018480702291614399, - "min_markup": 0.003391920932671798, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03887565626770108, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24059134643565705, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SKLUSDT.json b/configs/live/multisymbol/recursive_grid/SKLUSDT.json deleted file mode 100644 index 7f649f3d5..000000000 --- a/configs/live/multisymbol/recursive_grid/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9831500640073578, - "ema_span_0": 609.8347614125533, - "ema_span_1": 1006.1117956358215, - "enabled": true, - "initial_eprice_ema_dist": 0.002967333416847633, - "initial_qty_pct": 0.011026647293164679, - "markup_range": 0.004299004346719559, - "min_markup": 0.009055822398912481, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04467169267209627, - "rentry_pprice_dist_wallet_exposure_weighting": 1.149522300771375, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8797410712806017, - "ema_span_0": 1429.3930346648078, - "ema_span_1": 1179.9442207825518, - "enabled": true, - "initial_eprice_ema_dist": -0.010269877493443848, - "initial_qty_pct": 0.013028290768352546, - "markup_range": 0.004659372826062978, - "min_markup": 0.006499938479366403, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04469584734217476, - "rentry_pprice_dist_wallet_exposure_weighting": 6.940119914562727, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SNXUSDT.json b/configs/live/multisymbol/recursive_grid/SNXUSDT.json deleted file mode 100644 index 9ecf1e842..000000000 --- a/configs/live/multisymbol/recursive_grid/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1244123020305516, - "ema_span_0": 1150.0042902691437, - "ema_span_1": 1124.1819986963699, - "enabled": true, - "initial_eprice_ema_dist": -0.006218037870147272, - "initial_qty_pct": 0.010764450920053369, - "markup_range": 0.009844683805963515, - "min_markup": 0.00938187085974474, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0498707076663668, - "rentry_pprice_dist_wallet_exposure_weighting": 11.49781266411907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SOLUSDT.json b/configs/live/multisymbol/recursive_grid/SOLUSDT.json deleted file mode 100644 index 339dcfd5a..000000000 --- a/configs/live/multisymbol/recursive_grid/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3907135831352164, - "ema_span_0": 1239.862276330514, - "ema_span_1": 1409.4769281430806, - "enabled": true, - "initial_eprice_ema_dist": -0.0031950034741578953, - "initial_qty_pct": 0.02493821183210038, - "markup_range": 0.003922049957266154, - "min_markup": 0.0021279703040726606, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03300348737145173, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5742877383723394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.547822511526836, - "ema_span_0": 1060.4818017087207, - "ema_span_1": 813.0900840652839, - "enabled": true, - "initial_eprice_ema_dist": -0.002879247612786576, - "initial_qty_pct": 0.01010486711384056, - "markup_range": 0.0, - "min_markup": 0.002670822563344069, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03187911652669359, - "rentry_pprice_dist_wallet_exposure_weighting": 15.044458840398168, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SPELLUSDT.json b/configs/live/multisymbol/recursive_grid/SPELLUSDT.json deleted file mode 100644 index 2b04cfdaf..000000000 --- a/configs/live/multisymbol/recursive_grid/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9267230944646332, - "ema_span_0": 1070.2235791358275, - "ema_span_1": 1072.5620617467998, - "enabled": true, - "initial_eprice_ema_dist": 0.002996387973665314, - "initial_qty_pct": 0.018510090131773998, - "markup_range": 0.00356482273509978, - "min_markup": 0.009738705411198135, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04182900564020842, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6499498558931125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SRMUSDT.json b/configs/live/multisymbol/recursive_grid/SRMUSDT.json deleted file mode 100644 index fae2ae4ff..000000000 --- a/configs/live/multisymbol/recursive_grid/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3204622448300988, - "ema_span_0": 1383.2446300092795, - "ema_span_1": 1225.4275421720067, - "enabled": true, - "initial_eprice_ema_dist": -0.0039856037117403514, - "initial_qty_pct": 0.01219164749097957, - "markup_range": 0.0021570260735279843, - "min_markup": 0.0014613226021615517, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04356097082617926, - "rentry_pprice_dist_wallet_exposure_weighting": 0.12649830574426077, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1096717133245113, - "ema_span_0": 8.579201468982486, - "ema_span_1": 884.7014040627921, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010001675100634815, - "markup_range": 0.0005295205185110166, - "min_markup": 0.0011298981184306566, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049871249993810256, - "rentry_pprice_dist_wallet_exposure_weighting": 3.7087131978821217, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SSVUSDT.json b/configs/live/multisymbol/recursive_grid/SSVUSDT.json deleted file mode 100644 index c5dd22fa8..000000000 --- a/configs/live/multisymbol/recursive_grid/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2646687799240333, - "ema_span_0": 853.1522914702002, - "ema_span_1": 894.8866869570534, - "enabled": true, - "initial_eprice_ema_dist": -0.0053883632103486085, - "initial_qty_pct": 0.010880891090260329, - "markup_range": 0.009003151073093912, - "min_markup": 0.009384396637792822, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04997183687519014, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5171335640096635, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.4225898995660113, - "ema_span_0": 1249.2429721867811, - "ema_span_1": 1248.7648163909146, - "enabled": true, - "initial_eprice_ema_dist": -0.0014538935925867459, - "initial_qty_pct": 0.011902609102055558, - "markup_range": 0.009183724153976247, - "min_markup": 0.005406688538141856, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04917663281654381, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8262364850007504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/STGUSDT.json b/configs/live/multisymbol/recursive_grid/STGUSDT.json deleted file mode 100644 index dd2de75a7..000000000 --- a/configs/live/multisymbol/recursive_grid/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.169787712713988, - "ema_span_0": 1202.6579783390794, - "ema_span_1": 1014.1755480459761, - "enabled": true, - "initial_eprice_ema_dist": 8.716371567378642e-05, - "initial_qty_pct": 0.014668629767546428, - "markup_range": 0.0, - "min_markup": 0.0025510744606631183, - "n_close_orders": 7, - "rentry_pprice_dist": 0.029958019813693188, - "rentry_pprice_dist_wallet_exposure_weighting": 1.12819329649084, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.213923970776044, - "ema_span_0": 1149.3450683159158, - "ema_span_1": 46.2055349986496, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012253263285469664, - "markup_range": 0.0008248254259328559, - "min_markup": 0.0016640550227731096, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04127875985649038, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4275679758513373, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/STMXUSDT.json b/configs/live/multisymbol/recursive_grid/STMXUSDT.json deleted file mode 100644 index d5569f203..000000000 --- a/configs/live/multisymbol/recursive_grid/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2176690339004235, - "ema_span_0": 624.712046541063, - "ema_span_1": 348.61457272862015, - "enabled": true, - "initial_eprice_ema_dist": 0.00280877930697983, - "initial_qty_pct": 0.012205043322424959, - "markup_range": 0.005356847847614142, - "min_markup": 0.005895269455621546, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04937529900356751, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7321029769275491, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3894193609840364, - "ema_span_0": 1274.6844469224634, - "ema_span_1": 1201.1330713550808, - "enabled": true, - "initial_eprice_ema_dist": -0.04878887280460709, - "initial_qty_pct": 0.010870274802766937, - "markup_range": 0.000939540617683864, - "min_markup": 0.008863661804354746, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04360516395523065, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43283332932228913, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/STORJUSDT.json b/configs/live/multisymbol/recursive_grid/STORJUSDT.json deleted file mode 100644 index 7a48c5ba1..000000000 --- a/configs/live/multisymbol/recursive_grid/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.7278018862720588, - "ema_span_0": 442.5278043429042, - "ema_span_1": 1233.5035187936535, - "enabled": true, - "initial_eprice_ema_dist": 0.0029054035971957494, - "initial_qty_pct": 0.01248522372437879, - "markup_range": 0.002149347095369211, - "min_markup": 0.0054203408641198625, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04372925459517494, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4789682712063503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6222991148655632, - "ema_span_0": 1348.144141090007, - "ema_span_1": 21.52986903407625, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010545654565722137, - "markup_range": 0.0014332451854124255, - "min_markup": 0.005314395060253155, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04012858753775848, - "rentry_pprice_dist_wallet_exposure_weighting": 12.656576000577703, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/STXUSDT.json b/configs/live/multisymbol/recursive_grid/STXUSDT.json deleted file mode 100644 index 1006c8cc3..000000000 --- a/configs/live/multisymbol/recursive_grid/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.2520763054131316, - "ema_span_0": 23.647997675531123, - "ema_span_1": 219.0895284539382, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.021074645394573727, - "markup_range": 0.009503339022892288, - "min_markup": 0.0037164102097653733, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03336022209847499, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1957819278549142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.8302619210272612, - "ema_span_0": 764.8744607493253, - "ema_span_1": 10.260309306299478, - "enabled": true, - "initial_eprice_ema_dist": -0.00044498238911550643, - "initial_qty_pct": 0.011224408885708284, - "markup_range": 0.0041204494859002315, - "min_markup": 0.00659476068339152, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04708260506440111, - "rentry_pprice_dist_wallet_exposure_weighting": 6.2093830649163, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SUIUSDT.json b/configs/live/multisymbol/recursive_grid/SUIUSDT.json deleted file mode 100644 index 468997574..000000000 --- a/configs/live/multisymbol/recursive_grid/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.399510299338204, - "ema_span_0": 1346.6111581656703, - "ema_span_1": 523.7886560263587, - "enabled": true, - "initial_eprice_ema_dist": -0.0067348378998238895, - "initial_qty_pct": 0.011820851377208515, - "markup_range": 0.009503339022892288, - "min_markup": 0.007855349930017255, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03875804691630964, - "rentry_pprice_dist_wallet_exposure_weighting": 1.927298758025484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.5523744148642404, - "ema_span_0": 716.7913826931, - "ema_span_1": 821.6695742171605, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.018907895069642473, - "markup_range": 0.01094023517563262, - "min_markup": 0.009921451847605239, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04175695093610265, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5869756949494054, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SUSHIUSDT.json b/configs/live/multisymbol/recursive_grid/SUSHIUSDT.json deleted file mode 100644 index 6b25d3568..000000000 --- a/configs/live/multisymbol/recursive_grid/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.994834190251998, - "ema_span_0": 756.5628616931731, - "ema_span_1": 1129.9126126341366, - "enabled": true, - "initial_eprice_ema_dist": 0.002541615311706566, - "initial_qty_pct": 0.020818301591062308, - "markup_range": 6.939723751879763e-08, - "min_markup": 0.005095337234902401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047593800710765855, - "rentry_pprice_dist_wallet_exposure_weighting": 0.028196202939589198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9727604077664379, - "ema_span_0": 318.22426771510743, - "ema_span_1": 858.2989883328457, - "enabled": true, - "initial_eprice_ema_dist": -0.0025575877568094056, - "initial_qty_pct": 0.011770313126978446, - "markup_range": 0.0029772007734779568, - "min_markup": 0.008819296503460462, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032609119614941555, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0098679892922675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/SXPUSDT.json b/configs/live/multisymbol/recursive_grid/SXPUSDT.json deleted file mode 100644 index 0f716eb11..000000000 --- a/configs/live/multisymbol/recursive_grid/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.208015762129257, - "ema_span_0": 333.090498081687, - "ema_span_1": 464.5241627722567, - "enabled": true, - "initial_eprice_ema_dist": 0.0029914596709809532, - "initial_qty_pct": 0.010491873557071294, - "markup_range": 0.001996465084310474, - "min_markup": 0.0031032996157285063, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0328936001628217, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2385624687659167, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3935220163555802, - "ema_span_0": 647.0249800611332, - "ema_span_1": 741.024731452196, - "enabled": true, - "initial_eprice_ema_dist": -0.04078981266892904, - "initial_qty_pct": 0.011042115819131925, - "markup_range": 0.0032718149512038653, - "min_markup": 0.0014521005710930977, - "n_close_orders": 5, - "rentry_pprice_dist": 0.042313323019841684, - "rentry_pprice_dist_wallet_exposure_weighting": 9.682584206692592, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/THETAUSDT.json b/configs/live/multisymbol/recursive_grid/THETAUSDT.json deleted file mode 100644 index f557c992d..000000000 --- a/configs/live/multisymbol/recursive_grid/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.44015477997485486, - "ema_span_0": 688.1391936010098, - "ema_span_1": 331.58076372519844, - "enabled": true, - "initial_eprice_ema_dist": -0.0744688113652975, - "initial_qty_pct": 0.01334182411293645, - "markup_range": 0.003846380513935199, - "min_markup": 0.0036844270968172848, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02742044681596389, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0499196951705976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8484486860936844, - "ema_span_0": 762.9912775366449, - "ema_span_1": 347.63777439153915, - "enabled": true, - "initial_eprice_ema_dist": 0.0009608951200720726, - "initial_qty_pct": 0.0129497135606676, - "markup_range": 0.004616406092550184, - "min_markup": 0.0034658071382083905, - "n_close_orders": 14, - "rentry_pprice_dist": 0.024199594519338674, - "rentry_pprice_dist_wallet_exposure_weighting": 7.202784924922103, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/TLMUSDT.json b/configs/live/multisymbol/recursive_grid/TLMUSDT.json deleted file mode 100644 index 68594392e..000000000 --- a/configs/live/multisymbol/recursive_grid/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.959657442980144, - "ema_span_0": 65.57599891366576, - "ema_span_1": 858.2989883328457, - "enabled": true, - "initial_eprice_ema_dist": -0.006774800928002665, - "initial_qty_pct": 0.013226403118850179, - "markup_range": 0.0018531670849010209, - "min_markup": 0.009769231244046437, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03637057929119216, - "rentry_pprice_dist_wallet_exposure_weighting": 0.814290165944775, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/TOMOUSDT.json b/configs/live/multisymbol/recursive_grid/TOMOUSDT.json deleted file mode 100644 index f9247f3f8..000000000 --- a/configs/live/multisymbol/recursive_grid/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7526469730000345, - "ema_span_0": 1414.4305370422774, - "ema_span_1": 1264.3392455274534, - "enabled": true, - "initial_eprice_ema_dist": 0.002995531317611509, - "initial_qty_pct": 0.011477399331464369, - "markup_range": 0.005520152543961509, - "min_markup": 0.004058196600437843, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04787822822802025, - "rentry_pprice_dist_wallet_exposure_weighting": 4.490505676745629, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9561494534544617, - "ema_span_0": 1282.895337235, - "ema_span_1": 1313.0491703219336, - "enabled": true, - "initial_eprice_ema_dist": -0.0036131781802798925, - "initial_qty_pct": 0.012709969406806859, - "markup_range": 0.004186428979933283, - "min_markup": 0.0038455871749028974, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04761926178714748, - "rentry_pprice_dist_wallet_exposure_weighting": 13.294322637212758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/TRBUSDT.json b/configs/live/multisymbol/recursive_grid/TRBUSDT.json deleted file mode 100644 index 09b3988de..000000000 --- a/configs/live/multisymbol/recursive_grid/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1649207832787436, - "ema_span_0": 210.25721798782686, - "ema_span_1": 463.383458345308, - "enabled": true, - "initial_eprice_ema_dist": -0.002264901785342703, - "initial_qty_pct": 0.010160385941617521, - "markup_range": 0.0011159678228329884, - "min_markup": 0.003937308792079468, - "n_close_orders": 7, - "rentry_pprice_dist": 0.047500939971454846, - "rentry_pprice_dist_wallet_exposure_weighting": 9.685909411916949, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3139820083104667, - "ema_span_0": 1354.0910736538647, - "ema_span_1": 887.6638689058208, - "enabled": true, - "initial_eprice_ema_dist": -0.002602533297547924, - "initial_qty_pct": 0.010225778382134582, - "markup_range": 0.0005958881791200284, - "min_markup": 0.0037772526495702804, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02781575561706713, - "rentry_pprice_dist_wallet_exposure_weighting": 7.448820004016395, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/TRUUSDT.json b/configs/live/multisymbol/recursive_grid/TRUUSDT.json deleted file mode 100644 index d61dfe950..000000000 --- a/configs/live/multisymbol/recursive_grid/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9622262328844453, - "ema_span_0": 1093.357084625005, - "ema_span_1": 1340.9411468279825, - "enabled": true, - "initial_eprice_ema_dist": -0.06370954164328256, - "initial_qty_pct": 0.01079526596402609, - "markup_range": 0.0005635584064413702, - "min_markup": 0.004466693278987666, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04999984210829697, - "rentry_pprice_dist_wallet_exposure_weighting": 1.927298758025484, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.699741074574412, - "ema_span_0": 178.49965628285025, - "ema_span_1": 1236.0874041384286, - "enabled": true, - "initial_eprice_ema_dist": -0.0018847565219850331, - "initial_qty_pct": 0.020224579242037653, - "markup_range": 0.002364170873227417, - "min_markup": 0.004560255195901688, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03687749756373675, - "rentry_pprice_dist_wallet_exposure_weighting": 0.41971094909048146, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/TRXUSDT.json b/configs/live/multisymbol/recursive_grid/TRXUSDT.json deleted file mode 100644 index 416fe67e3..000000000 --- a/configs/live/multisymbol/recursive_grid/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9923094946854248, - "ema_span_0": 976.3749679220568, - "ema_span_1": 185.7715602240638, - "enabled": true, - "initial_eprice_ema_dist": 0.001896756049282583, - "initial_qty_pct": 0.021329500562159383, - "markup_range": 0.0017140919685301314, - "min_markup": 0.0026128204307088727, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03283916682909888, - "rentry_pprice_dist_wallet_exposure_weighting": 0.101409826221652, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5470971322180204, - "ema_span_0": 547.7861497828551, - "ema_span_1": 152.40964610896407, - "enabled": true, - "initial_eprice_ema_dist": 0.002289095240377166, - "initial_qty_pct": 0.013225096107875528, - "markup_range": 0.002339435002622375, - "min_markup": 0.004027772474418661, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018466722543051074, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1702617420452874, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/TUSDT.json b/configs/live/multisymbol/recursive_grid/TUSDT.json deleted file mode 100644 index 5af85a6c6..000000000 --- a/configs/live/multisymbol/recursive_grid/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1736542384581994, - "ema_span_0": 1111.127771408782, - "ema_span_1": 1051.1491474659954, - "enabled": true, - "initial_eprice_ema_dist": -0.0017838848750858882, - "initial_qty_pct": 0.012690558976674282, - "markup_range": 0.003156322778575609, - "min_markup": 0.00526279453190407, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03174383273755451, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8645431707443696, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2143498743271344, - "ema_span_0": 851.8497934754483, - "ema_span_1": 91.9232237059391, - "enabled": true, - "initial_eprice_ema_dist": -0.005848134546248924, - "initial_qty_pct": 0.015541848513437422, - "markup_range": 0.004250304906698866, - "min_markup": 0.0031464456644202696, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025060762087215145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7595422416418836, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/UMAUSDT.json b/configs/live/multisymbol/recursive_grid/UMAUSDT.json deleted file mode 100644 index b39188b40..000000000 --- a/configs/live/multisymbol/recursive_grid/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9877573117609226, - "ema_span_0": 266.12434809336116, - "ema_span_1": 627.4455024262369, - "enabled": true, - "initial_eprice_ema_dist": 0.0029724086346766144, - "initial_qty_pct": 0.015220129847753304, - "markup_range": 0.002676188099811918, - "min_markup": 0.006336949993637198, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0341029690215967, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0599195231760747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7994532202110624, - "ema_span_0": 475.22328077446724, - "ema_span_1": 161.66257595615141, - "enabled": true, - "initial_eprice_ema_dist": 0.0020291358164241983, - "initial_qty_pct": 0.01522993821703102, - "markup_range": 0.013831213522425468, - "min_markup": 0.005823302145325876, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034344546864402505, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8421607558449193, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/UNFIUSDT.json b/configs/live/multisymbol/recursive_grid/UNFIUSDT.json deleted file mode 100644 index 5264ec3be..000000000 --- a/configs/live/multisymbol/recursive_grid/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 106.86810151308858, - "ema_span_1": 148.88681480041788, - "enabled": true, - "initial_eprice_ema_dist": -0.07689382532657883, - "initial_qty_pct": 0.011923736950371792, - "markup_range": 0.010320365955328823, - "min_markup": 0.009647994602278935, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04960694237794818, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0864316583775788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8749397036489612, - "ema_span_0": 13.020632066798724, - "ema_span_1": 29.383134685403032, - "enabled": true, - "initial_eprice_ema_dist": -0.09694559862999746, - "initial_qty_pct": 0.030321002092639188, - "markup_range": 0.0052471915171047245, - "min_markup": 0.009551531295645477, - "n_close_orders": 3, - "rentry_pprice_dist": 0.037173350672132816, - "rentry_pprice_dist_wallet_exposure_weighting": 8.635678115354173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/UNIUSDT.json b/configs/live/multisymbol/recursive_grid/UNIUSDT.json deleted file mode 100644 index 270c8f84a..000000000 --- a/configs/live/multisymbol/recursive_grid/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8837358646228952, - "ema_span_0": 674.4955612563916, - "ema_span_1": 663.3588279319678, - "enabled": true, - "initial_eprice_ema_dist": -0.04315311098159625, - "initial_qty_pct": 0.01091387824837436, - "markup_range": 0.0007823086340090343, - "min_markup": 0.008775263053012733, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045274023703218445, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6602345008790333, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9698469921196073, - "ema_span_0": 52.88191692712886, - "ema_span_1": 1361.1118613147607, - "enabled": true, - "initial_eprice_ema_dist": -0.00543863150676523, - "initial_qty_pct": 0.0181779687866847, - "markup_range": 0.0016417265517781824, - "min_markup": 0.009975480543854798, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04486109929940652, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5520120346280831, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/USDCUSDT.json b/configs/live/multisymbol/recursive_grid/USDCUSDT.json deleted file mode 100644 index 406ad945b..000000000 --- a/configs/live/multisymbol/recursive_grid/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.91058381302455, - "ema_span_0": 514.6559671669283, - "ema_span_1": 408.5887307073009, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013641251161158847, - "markup_range": 0.006327492756577452, - "min_markup": 0.008439347812636009, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03680366320286927, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2880762512685155, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/VETUSDT.json b/configs/live/multisymbol/recursive_grid/VETUSDT.json deleted file mode 100644 index 47ca40a01..000000000 --- a/configs/live/multisymbol/recursive_grid/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.438778138303399, - "ema_span_0": 602.3323490211033, - "ema_span_1": 450.41927701975163, - "enabled": true, - "initial_eprice_ema_dist": 0.00042608554975636216, - "initial_qty_pct": 0.011239430906555853, - "markup_range": 0.0025138461014344643, - "min_markup": 0.007435058268707118, - "n_close_orders": 4, - "rentry_pprice_dist": 0.028097232938392863, - "rentry_pprice_dist_wallet_exposure_weighting": 6.7907176085201275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.869734982913015, - "ema_span_0": 528.5296006012966, - "ema_span_1": 1413.0009768167545, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999821423197133, - "initial_qty_pct": 0.016171032016187768, - "markup_range": 0.003471839721865355, - "min_markup": 0.003715246650067295, - "n_close_orders": 12, - "rentry_pprice_dist": 0.040352510167950356, - "rentry_pprice_dist_wallet_exposure_weighting": 0.004646561803409923, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/WAVESUSDT.json b/configs/live/multisymbol/recursive_grid/WAVESUSDT.json deleted file mode 100644 index 25df8662e..000000000 --- a/configs/live/multisymbol/recursive_grid/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.8817828642347703, - "ema_span_0": 97.88388043909794, - "ema_span_1": 106.41783228748595, - "enabled": true, - "initial_eprice_ema_dist": 0.0029565223621609827, - "initial_qty_pct": 0.019754061554014865, - "markup_range": 0.006519489925372328, - "min_markup": 0.006352449566674008, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04670610435147058, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24073584451889238, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.6400881258896283, - "ema_span_0": 1124.5673444098093, - "ema_span_1": 1238.29580462411, - "enabled": true, - "initial_eprice_ema_dist": -0.009006749300855479, - "initial_qty_pct": 0.01000482810705799, - "markup_range": 0.00015499126525161299, - "min_markup": 0.0016838679268757846, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049998685438496594, - "rentry_pprice_dist_wallet_exposure_weighting": 16.991597539676636, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/WLDUSDT.json b/configs/live/multisymbol/recursive_grid/WLDUSDT.json deleted file mode 100644 index 941223bd2..000000000 --- a/configs/live/multisymbol/recursive_grid/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.2297117872115364, - "ema_span_0": 666.9352875365897, - "ema_span_1": 258.7932713649857, - "enabled": true, - "initial_eprice_ema_dist": 0.0029561243159410065, - "initial_qty_pct": 0.012768047878831668, - "markup_range": 0.0009141991898108719, - "min_markup": 0.002594754817460753, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02038355697089794, - "rentry_pprice_dist_wallet_exposure_weighting": 0.027928595165659396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.1998370675677053, - "ema_span_0": 596.9915321563528, - "ema_span_1": 1093.5450981109334, - "enabled": true, - "initial_eprice_ema_dist": -0.009286333913987175, - "initial_qty_pct": 0.013879762486051241, - "markup_range": 0.0035905723267659426, - "min_markup": 0.001882644498533386, - "n_close_orders": 7, - "rentry_pprice_dist": 0.032594938534721854, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8601811558790388, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/WOOUSDT.json b/configs/live/multisymbol/recursive_grid/WOOUSDT.json deleted file mode 100644 index ed2e842ba..000000000 --- a/configs/live/multisymbol/recursive_grid/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.994834190251998, - "ema_span_0": 756.5628616931731, - "ema_span_1": 1129.9126126341366, - "enabled": true, - "initial_eprice_ema_dist": 0.002541615311706566, - "initial_qty_pct": 0.020818301591062308, - "markup_range": 6.939723751879763e-08, - "min_markup": 0.005095337234902401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.047593800710765855, - "rentry_pprice_dist_wallet_exposure_weighting": 0.028196202939589198, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5470971322180204, - "ema_span_0": 547.7861497828551, - "ema_span_1": 152.40964610896407, - "enabled": true, - "initial_eprice_ema_dist": 0.002289095240377166, - "initial_qty_pct": 0.013225096107875528, - "markup_range": 0.002339435002622375, - "min_markup": 0.004027772474418661, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018466722543051074, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1702617420452874, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XEMUSDT.json b/configs/live/multisymbol/recursive_grid/XEMUSDT.json deleted file mode 100644 index 55ca4b5b5..000000000 --- a/configs/live/multisymbol/recursive_grid/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.9877573117609226, - "ema_span_0": 266.12434809336116, - "ema_span_1": 627.4455024262369, - "enabled": true, - "initial_eprice_ema_dist": 0.0029724086346766144, - "initial_qty_pct": 0.015220129847753304, - "markup_range": 0.002676188099811918, - "min_markup": 0.006336949993637198, - "n_close_orders": 15, - "rentry_pprice_dist": 0.0341029690215967, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0599195231760747, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3563553301595093, - "ema_span_0": 1320.3420517008853, - "ema_span_1": 1153.1967739687477, - "enabled": true, - "initial_eprice_ema_dist": -0.002475560706926114, - "initial_qty_pct": 0.015132272634461649, - "markup_range": 0.008146438356039997, - "min_markup": 0.00621572702089535, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024768792405647007, - "rentry_pprice_dist_wallet_exposure_weighting": 4.779003596934796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XLMUSDT.json b/configs/live/multisymbol/recursive_grid/XLMUSDT.json deleted file mode 100644 index d714a4da7..000000000 --- a/configs/live/multisymbol/recursive_grid/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.3602582965020855, - "ema_span_0": 120.4797953471262, - "ema_span_1": 166.48238357350056, - "enabled": true, - "initial_eprice_ema_dist": -0.0006228758940931558, - "initial_qty_pct": 0.010462821340143235, - "markup_range": 0.0013109311712520082, - "min_markup": 0.0015988390804505073, - "n_close_orders": 8, - "rentry_pprice_dist": 0.029664661889534538, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9518215338809086, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.339504971144532, - "ema_span_0": 744.3526159338775, - "ema_span_1": 888.0696442046801, - "enabled": true, - "initial_eprice_ema_dist": 0.002987190186017256, - "initial_qty_pct": 0.014176277209751583, - "markup_range": 0.0015215149544157782, - "min_markup": 0.00407087877795885, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04055660593171023, - "rentry_pprice_dist_wallet_exposure_weighting": 3.8187190162958498, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XMRUSDT.json b/configs/live/multisymbol/recursive_grid/XMRUSDT.json deleted file mode 100644 index 8024834d3..000000000 --- a/configs/live/multisymbol/recursive_grid/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.7173551637314762, - "ema_span_0": 821.2234123524812, - "ema_span_1": 207.11679924201374, - "enabled": true, - "initial_eprice_ema_dist": -0.002565228479680654, - "initial_qty_pct": 0.014783743285119728, - "markup_range": 0.0036710239902237587, - "min_markup": 0.0027060781439914756, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019865859670517606, - "rentry_pprice_dist_wallet_exposure_weighting": 1.670015043529693, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.0552087836312976, - "ema_span_0": 1268.9539377150425, - "ema_span_1": 1426.5033741504699, - "enabled": true, - "initial_eprice_ema_dist": 0.002966149538153635, - "initial_qty_pct": 0.03575481161084705, - "markup_range": 0.003766702704061157, - "min_markup": 0.0016034024166463464, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018765960294223727, - "rentry_pprice_dist_wallet_exposure_weighting": 6.865918864643922, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XRPUSDT.json b/configs/live/multisymbol/recursive_grid/XRPUSDT.json deleted file mode 100644 index ddafa5f4a..000000000 --- a/configs/live/multisymbol/recursive_grid/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.1390500852526395, - "ema_span_0": 979.7392681008872, - "ema_span_1": 972.4684243898562, - "enabled": true, - "initial_eprice_ema_dist": -0.0542651168403518, - "initial_qty_pct": 0.016531874523208867, - "markup_range": 0.006125441040561773, - "min_markup": 0.001890345945629892, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02960336647761808, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9618771133103885, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.970897226703454, - "ema_span_0": 1178.6405099612166, - "ema_span_1": 10.346658522087152, - "enabled": true, - "initial_eprice_ema_dist": 0.001205375272270322, - "initial_qty_pct": 0.011245418734813668, - "markup_range": 0.0005509812524684044, - "min_markup": 0.008604594360852381, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04860043989134822, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XTZUSDT.json b/configs/live/multisymbol/recursive_grid/XTZUSDT.json deleted file mode 100644 index 42e15cea6..000000000 --- a/configs/live/multisymbol/recursive_grid/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.0983355825006504, - "ema_span_0": 1152.4214448062032, - "ema_span_1": 1085.29838180588, - "enabled": true, - "initial_eprice_ema_dist": 8.222523844233229e-05, - "initial_qty_pct": 0.014910438250226225, - "markup_range": 0.007061527485406208, - "min_markup": 0.005467803055395166, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03475191366350111, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7082035385862824, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2143498743271344, - "ema_span_0": 851.8497934754483, - "ema_span_1": 91.9232237059391, - "enabled": true, - "initial_eprice_ema_dist": -0.005848134546248924, - "initial_qty_pct": 0.015541848513437422, - "markup_range": 0.004250304906698866, - "min_markup": 0.0031464456644202696, - "n_close_orders": 5, - "rentry_pprice_dist": 0.025060762087215145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7595422416418836, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XVGUSDT.json b/configs/live/multisymbol/recursive_grid/XVGUSDT.json deleted file mode 100644 index 9b69b9996..000000000 --- a/configs/live/multisymbol/recursive_grid/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.9780311851406476, - "ema_span_0": 312.50740245066567, - "ema_span_1": 417.6607338324698, - "enabled": true, - "initial_eprice_ema_dist": 0.00192763985788516, - "initial_qty_pct": 0.015477850727412689, - "markup_range": 0.0, - "min_markup": 0.0031868877845640533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.016199446887888623, - "rentry_pprice_dist_wallet_exposure_weighting": 1.586630651746572, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.0552087836312976, - "ema_span_0": 1268.9539377150425, - "ema_span_1": 1426.5033741504699, - "enabled": true, - "initial_eprice_ema_dist": 0.002966149538153635, - "initial_qty_pct": 0.03575481161084705, - "markup_range": 0.003766702704061157, - "min_markup": 0.0016034024166463464, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018765960294223727, - "rentry_pprice_dist_wallet_exposure_weighting": 6.865918864643922, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/XVSUSDT.json b/configs/live/multisymbol/recursive_grid/XVSUSDT.json deleted file mode 100644 index 624fa135b..000000000 --- a/configs/live/multisymbol/recursive_grid/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.3637592178962155, - "ema_span_0": 197.32991423000806, - "ema_span_1": 109.07538633645407, - "enabled": true, - "initial_eprice_ema_dist": -0.09184196685443088, - "initial_qty_pct": 0.010997875314973192, - "markup_range": 0.0036250553013352418, - "min_markup": 0.006425362214423563, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03256892471520947, - "rentry_pprice_dist_wallet_exposure_weighting": 2.133780971656352, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5496600291443349, - "ema_span_0": 1418.165029247325, - "ema_span_1": 1299.1812839892266, - "enabled": true, - "initial_eprice_ema_dist": 0.0025563504837596016, - "initial_qty_pct": 0.017280059651797453, - "markup_range": 0.01056369131529356, - "min_markup": 0.0050861235491077884, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04144715802310261, - "rentry_pprice_dist_wallet_exposure_weighting": 7.816268775961305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/YFIUSDT.json b/configs/live/multisymbol/recursive_grid/YFIUSDT.json deleted file mode 100644 index f579020fe..000000000 --- a/configs/live/multisymbol/recursive_grid/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.920058955902206, - "ema_span_0": 225.70030866407188, - "ema_span_1": 1004.6283690728403, - "enabled": true, - "initial_eprice_ema_dist": -0.010854661595498919, - "initial_qty_pct": 0.01008556993602723, - "markup_range": 0.00019686478267776108, - "min_markup": 0.0028270617363223833, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03818980199392528, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039234684545597, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4228238121315746, - "ema_span_0": 892.8885156680175, - "ema_span_1": 671.1381877301445, - "enabled": true, - "initial_eprice_ema_dist": 0.0026343443989378687, - "initial_qty_pct": 0.03088168405838807, - "markup_range": 0.0010537329721392184, - "min_markup": 0.004237004938743872, - "n_close_orders": 8, - "rentry_pprice_dist": 0.046602883874779635, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43701446620106843, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/YGGUSDT.json b/configs/live/multisymbol/recursive_grid/YGGUSDT.json deleted file mode 100644 index ab2fe39c3..000000000 --- a/configs/live/multisymbol/recursive_grid/YGGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.44015477997485486, - "ema_span_0": 688.1391936010098, - "ema_span_1": 331.58076372519844, - "enabled": true, - "initial_eprice_ema_dist": -0.0744688113652975, - "initial_qty_pct": 0.01334182411293645, - "markup_range": 0.003846380513935199, - "min_markup": 0.0036844270968172848, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02742044681596389, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0499196951705976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.3808590996389525, - "ema_span_0": 7.179471486692638, - "ema_span_1": 1011.1073520179158, - "enabled": true, - "initial_eprice_ema_dist": -0.00039092089918658734, - "initial_qty_pct": 0.013027587894849032, - "markup_range": 0.006739087960962196, - "min_markup": 0.004751890570395572, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02136519293112714, - "rentry_pprice_dist_wallet_exposure_weighting": 4.106086913089587, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ZECUSDT.json b/configs/live/multisymbol/recursive_grid/ZECUSDT.json deleted file mode 100644 index 126f64f0d..000000000 --- a/configs/live/multisymbol/recursive_grid/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.450419879441086, - "ema_span_0": 34.77959091912413, - "ema_span_1": 898.1556121852162, - "enabled": true, - "initial_eprice_ema_dist": 0.0029882251599526416, - "initial_qty_pct": 0.01277250868480753, - "markup_range": 0.005712353972391207, - "min_markup": 0.0048324667377520735, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03994455783274117, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8355618921799761, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.167595655161588, - "ema_span_0": 670.0500831849777, - "ema_span_1": 1314.9848751881473, - "enabled": true, - "initial_eprice_ema_dist": 0.0017552271961483086, - "initial_qty_pct": 0.014479782312822848, - "markup_range": 0.006247725263843084, - "min_markup": 0.005195238935110349, - "n_close_orders": 12, - "rentry_pprice_dist": 0.022111094066342655, - "rentry_pprice_dist_wallet_exposure_weighting": 4.697786483294389, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ZENUSDT.json b/configs/live/multisymbol/recursive_grid/ZENUSDT.json deleted file mode 100644 index e73b56f25..000000000 --- a/configs/live/multisymbol/recursive_grid/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.9975321975952851, - "ema_span_0": 529.5777206221505, - "ema_span_1": 864.2117688545923, - "enabled": true, - "initial_eprice_ema_dist": -0.09964656244936065, - "initial_qty_pct": 0.012623632772361084, - "markup_range": 0.012101435220191394, - "min_markup": 0.004115488017892179, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0482176565636368, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0399630052373663, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.5334471307267951, - "ema_span_0": 1234.5627941815458, - "ema_span_1": 1390.9489466161722, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017647219963558818, - "markup_range": 0.018265551181550523, - "min_markup": 0.009097285769915002, - "n_close_orders": 5, - "rentry_pprice_dist": 0.0396082947171055, - "rentry_pprice_dist_wallet_exposure_weighting": 4.111710813562418, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ZILUSDT.json b/configs/live/multisymbol/recursive_grid/ZILUSDT.json deleted file mode 100644 index d703d094c..000000000 --- a/configs/live/multisymbol/recursive_grid/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 2.956981755842469, - "ema_span_0": 167.75516573766635, - "ema_span_1": 380.78191603280635, - "enabled": true, - "initial_eprice_ema_dist": 0.002966111165649351, - "initial_qty_pct": 0.018057211804940857, - "markup_range": 0.0015104980014625645, - "min_markup": 0.007054347523993756, - "n_close_orders": 9, - "rentry_pprice_dist": 0.038738197329599544, - "rentry_pprice_dist_wallet_exposure_weighting": 4.131675902955578, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.2013796011781999, - "ema_span_0": 1330.9202203480213, - "ema_span_1": 678.0837752808247, - "enabled": true, - "initial_eprice_ema_dist": -0.00582907346025, - "initial_qty_pct": 0.013226403118850179, - "markup_range": 0.005017186642253043, - "min_markup": 0.00243085805813879, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030031336468497, - "rentry_pprice_dist_wallet_exposure_weighting": 0.42115879745438484, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/multisymbol/recursive_grid/ZRXUSDT.json b/configs/live/multisymbol/recursive_grid/ZRXUSDT.json deleted file mode 100644 index e3a935a29..000000000 --- a/configs/live/multisymbol/recursive_grid/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 1.4069551320771247, - "ema_span_0": 1349.1523800476393, - "ema_span_1": 1417.3270623134426, - "enabled": true, - "initial_eprice_ema_dist": 0.0016514164236817717, - "initial_qty_pct": 0.014220972779020286, - "markup_range": 0.00198486342905699, - "min_markup": 0.006072969285693832, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04488027885355811, - "rentry_pprice_dist_wallet_exposure_weighting": 0.29448598026670003, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": 0, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.05, - "backwards_tp": true, - "ddown_factor": 0.6911316315162889, - "ema_span_0": 1404.8312978762303, - "ema_span_1": 1420.87182753046, - "enabled": true, - "initial_eprice_ema_dist": -0.00938718495738028, - "initial_qty_pct": 0.01088859214345425, - "markup_range": 0.004569778047259771, - "min_markup": 0.008877653463957353, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03257403994063893, - "rentry_pprice_dist_wallet_exposure_weighting": 8.05842613177501, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000FLOKIUSDT.json deleted file mode 100644 index 4a761f81f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000FLOKIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1397.8199291138544, - "delay_between_fills_minutes_entry": 793.1004339866311, - "delay_weight_close": 54.16698659813556, - "delay_weight_entry": 11.304365076226238, - "ema_dist_close": 0.002733527861907303, - "ema_dist_entry": -0.000346237700325354, - "ema_span_0": 521.6924137710201, - "ema_span_1": 754.3854297676163, - "enabled": true, - "markup_range": 0.00675618003034359, - "min_markup": 0.00964021986412634, - "n_close_orders": 3, - "qty_pct_close": 0.01270611205690984, - "qty_pct_entry": 0.012330519289802042, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.15137992696264}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 566.728048226077, - "delay_between_fills_minutes_entry": 98.60896944334999, - "delay_weight_close": 0.0012662552903666487, - "delay_weight_entry": 10.46322317873434, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008628095599072209, - "ema_span_0": 226.33627318454913, - "ema_span_1": 225.73496090568048, - "enabled": true, - "markup_range": 0.0026059276449264266, - "min_markup": 0.0040488502429980484, - "n_close_orders": 2, - "qty_pct_close": 0.010878416974961412, - "qty_pct_entry": 0.010011407123709742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.220265927651216}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000LUNCUSDT.json deleted file mode 100644 index 83673d2db..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000LUNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 779.6536453291249, - "delay_between_fills_minutes_entry": 1214.798732179154, - "delay_weight_close": 28.14781741347243, - "delay_weight_entry": 16.16470641363938, - "ema_dist_close": -0.0032429746111499957, - "ema_dist_entry": -0.006282852707930733, - "ema_span_0": 1222.8727708274653, - "ema_span_1": 1303.9427372273854, - "enabled": true, - "markup_range": 0.059185801107474845, - "min_markup": 0.008944422760875825, - "n_close_orders": 9, - "qty_pct_close": 0.016598324712223573, - "qty_pct_entry": 0.010035975591842971, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.50122992716007}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 927.5536393402995, - "delay_between_fills_minutes_entry": 76.65521428223664, - "delay_weight_close": 4.0912562091058975, - "delay_weight_entry": 0.4026069516881707, - "ema_dist_close": 0.0027286292890744213, - "ema_dist_entry": -0.0024395190240046735, - "ema_span_0": 1029.0821444294024, - "ema_span_1": 1110.6017165946846, - "enabled": true, - "markup_range": 0.0037852668244971474, - "min_markup": 0.0022884136867671575, - "n_close_orders": 6, - "qty_pct_close": 0.012226923140416623, - "qty_pct_entry": 0.010209693427915594, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.520846381647537}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000PEPEUSDT.json deleted file mode 100644 index b2993c81b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000PEPEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1283.4591567628113, - "delay_between_fills_minutes_entry": 847.3109094024388, - "delay_weight_close": 86.7018425814027, - "delay_weight_entry": 9.202275996516597, - "ema_dist_close": 0.001476526444402524, - "ema_dist_entry": -0.011085874949114493, - "ema_span_0": 1037.287459168743, - "ema_span_1": 833.8803170014027, - "enabled": true, - "markup_range": 0.05291181517152272, - "min_markup": 0.0010745438344220344, - "n_close_orders": 2, - "qty_pct_close": 0.010378997269844847, - "qty_pct_entry": 0.012389144143921827, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.19997879451239}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 770.6426023185443, - "delay_weight_close": 8.917925567623623, - "delay_weight_entry": 5.086389066337287, - "ema_dist_close": 0.0016710347504039428, - "ema_dist_entry": -0.01151431025507491, - "ema_span_0": 1312.4148910387232, - "ema_span_1": 388.665918167387, - "enabled": true, - "markup_range": 0.02047099068754597, - "min_markup": 0.008792030549710284, - "n_close_orders": 5, - "qty_pct_close": 0.012909025258383385, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.37968923364722}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000SHIBUSDT.json deleted file mode 100644 index 28759620e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000SHIBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1275.6988333409186, - "delay_between_fills_minutes_entry": 931.8437442632235, - "delay_weight_close": 53.37104892529714, - "delay_weight_entry": 40.28095136690261, - "ema_dist_close": 0.0009723204313784626, - "ema_dist_entry": -0.003149000025455873, - "ema_span_0": 1327.038010186341, - "ema_span_1": 1215.141691018625, - "enabled": true, - "markup_range": 0.00727310979516928, - "min_markup": 0.0022237885862061205, - "n_close_orders": 9, - "qty_pct_close": 0.02629128545232999, - "qty_pct_entry": 0.01610331987228494, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.06507052070499}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1363.0016361019966, - "delay_between_fills_minutes_entry": 1235.2899997332424, - "delay_weight_close": 54.455512306587714, - "delay_weight_entry": 17.364312169662973, - "ema_dist_close": 0.0029987754468503817, - "ema_dist_entry": -0.004092425393016123, - "ema_span_0": 21.340514779566984, - "ema_span_1": 1003.7073183223773, - "enabled": true, - "markup_range": 0.014174601672917621, - "min_markup": 0.008181892665205713, - "n_close_orders": 4, - "qty_pct_close": 0.010201652774253018, - "qty_pct_entry": 0.015023064343410681, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.959537257387307}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000XECUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000XECUSDT.json deleted file mode 100644 index 5cd5b2ea1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1000XECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1009.8803691302281, - "delay_between_fills_minutes_entry": 1381.7794576730596, - "delay_weight_close": 48.359302367509486, - "delay_weight_entry": 14.590405328286419, - "ema_dist_close": -0.004834705182997897, - "ema_dist_entry": -0.001345088049458951, - "ema_span_0": 1256.0234486705854, - "ema_span_1": 1160.7769695747395, - "enabled": true, - "markup_range": 0.058530115894761675, - "min_markup": 0.009387116249362051, - "n_close_orders": 11, - "qty_pct_close": 0.013285932512981123, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.09496643164342}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1092.7933986121764, - "delay_between_fills_minutes_entry": 401.42858709105656, - "delay_weight_close": 98.12108475064394, - "delay_weight_entry": 1.6704164299010074, - "ema_dist_close": 0.002882062045779017, - "ema_dist_entry": -0.0022292488956759428, - "ema_span_0": 488.7827380993889, - "ema_span_1": 1342.3278034873897, - "enabled": true, - "markup_range": 0.008564586703618841, - "min_markup": 0.007957175263396137, - "n_close_orders": 2, - "qty_pct_close": 0.010040493363755936, - "qty_pct_entry": 0.018692394307530693, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.51263427220036}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1INCHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1INCHUSDT.json deleted file mode 100644 index 1bba0f4bd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/1INCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1424.4959646739208, - "delay_between_fills_minutes_entry": 1191.605519671973, - "delay_weight_close": 48.30330159483098, - "delay_weight_entry": 83.95469524309073, - "ema_dist_close": -0.00020705520004804585, - "ema_dist_entry": 0.0013601492374067145, - "ema_span_0": 1214.246811941979, - "ema_span_1": 35.40457309412571, - "enabled": true, - "markup_range": 0.0034544457543534005, - "min_markup": 0.002266194748058137, - "n_close_orders": 4, - "qty_pct_close": 0.04807974563086494, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.305376910913427}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1135.3730914059906, - "delay_between_fills_minutes_entry": 285.1087383578048, - "delay_weight_close": 28.299676113014183, - "delay_weight_entry": 13.4573829454185, - "ema_dist_close": -0.009106934687305996, - "ema_dist_entry": -0.014859970199590865, - "ema_span_0": 1373.5727021882497, - "ema_span_1": 105.13547120816544, - "enabled": true, - "markup_range": 0.005832952924299241, - "min_markup": 0.004566016086634983, - "n_close_orders": 6, - "qty_pct_close": 0.01442856057991845, - "qty_pct_entry": 0.012276006767887941, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.344146175158805}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AAVEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AAVEUSDT.json deleted file mode 100644 index 465d77af6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AAVEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.4921309098024, - "delay_between_fills_minutes_entry": 718.2712679058071, - "delay_weight_close": 77.55308977578495, - "delay_weight_entry": 14.391229426377867, - "ema_dist_close": -0.006078357697134095, - "ema_dist_entry": 0.001057995801127121, - "ema_span_0": 1208.4038604855607, - "ema_span_1": 1148.0751538552831, - "enabled": true, - "markup_range": 0.010539649158545022, - "min_markup": 0.0030119762467005467, - "n_close_orders": 15, - "qty_pct_close": 0.018595823751106383, - "qty_pct_entry": 0.01407999316615146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.849083327883314}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 877.290685780985, - "delay_between_fills_minutes_entry": 507.31444088654325, - "delay_weight_close": 0, - "delay_weight_entry": 28.64209817419529, - "ema_dist_close": 0.00279763798854355, - "ema_dist_entry": -0.009460557786496786, - "ema_span_0": 1292.232307369393, - "ema_span_1": 23.202594171079365, - "enabled": true, - "markup_range": 0.003237142902161032, - "min_markup": 0.0034305406651952888, - "n_close_orders": 15, - "qty_pct_close": 0.01019935415734315, - "qty_pct_entry": 0.010165807677262656, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.383305219026953}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ACHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ACHUSDT.json deleted file mode 100644 index a1cca5a49..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ACHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 847.4570618633642, - "delay_between_fills_minutes_entry": 1394.2535143526836, - "delay_weight_close": 0.15339331077775736, - "delay_weight_entry": 12.336117839322695, - "ema_dist_close": 0.0016938189269252372, - "ema_dist_entry": 0.00025720434789705716, - "ema_span_0": 1113.212318426606, - "ema_span_1": 662.594621758259, - "enabled": true, - "markup_range": 0.029977503397955005, - "min_markup": 0.004132836188627235, - "n_close_orders": 8, - "qty_pct_close": 0.010578510909682346, - "qty_pct_entry": 0.011228969901844221, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.22851995837369}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 566.728048226077, - "delay_between_fills_minutes_entry": 98.60896944334999, - "delay_weight_close": 0.0012662552903666487, - "delay_weight_entry": 10.46322317873434, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008628095599072209, - "ema_span_0": 226.33627318454913, - "ema_span_1": 225.73496090568048, - "enabled": true, - "markup_range": 0.0026059276449264266, - "min_markup": 0.0040488502429980484, - "n_close_orders": 2, - "qty_pct_close": 0.010878416974961412, - "qty_pct_entry": 0.010011407123709742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.220265927651216}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ADAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ADAUSDT.json deleted file mode 100644 index 328f74105..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ADAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.4228997166551, - "delay_between_fills_minutes_entry": 437.50572466776816, - "delay_weight_close": 36.92847403841083, - "delay_weight_entry": 16.41640684872258, - "ema_dist_close": 0.0011021109710447872, - "ema_dist_entry": 0.0007266393251653801, - "ema_span_0": 421.33638238850585, - "ema_span_1": 1256.7190693025216, - "enabled": true, - "markup_range": 0.0037832946153474245, - "min_markup": 0.0039024852082578184, - "n_close_orders": 5, - "qty_pct_close": 0.010000043298117066, - "qty_pct_entry": 0.014887908549513157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.717525304465113}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1116.0817647121885, - "delay_between_fills_minutes_entry": 956.0495444539068, - "delay_weight_close": 5.591015040430978e-06, - "delay_weight_entry": 23.26089660587444, - "ema_dist_close": -0.007874086586600786, - "ema_dist_entry": 0.0020579986936594104, - "ema_span_0": 1340.1207341667107, - "ema_span_1": 620.85068093625, - "enabled": true, - "markup_range": 0.02005348848150134, - "min_markup": 0.008853938854497142, - "n_close_orders": 13, - "qty_pct_close": 0.03274528238493289, - "qty_pct_entry": 0.010057925874552492, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.413118808600505}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AGIXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AGIXUSDT.json deleted file mode 100644 index 511c9f844..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AGIXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1177.5513826611868, - "delay_between_fills_minutes_entry": 1024.7028283306208, - "delay_weight_close": 19.02704034681668, - "delay_weight_entry": 10.70930401722477, - "ema_dist_close": 0.0029591766972268097, - "ema_dist_entry": -0.0018576721614017107, - "ema_span_0": 702.1649464841075, - "ema_span_1": 1437.5445628951709, - "enabled": true, - "markup_range": 0.05982933262087699, - "min_markup": 0.009027881486111878, - "n_close_orders": 9, - "qty_pct_close": 0.0399203214881589, - "qty_pct_entry": 0.010335422918656858, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.38967706143859}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1200.0384094505598, - "delay_between_fills_minutes_entry": 185.4105931583722, - "delay_weight_close": 85.88471544519933, - "delay_weight_entry": 14.173236943159687, - "ema_dist_close": -0.004105369147328522, - "ema_dist_entry": -0.003844962019204651, - "ema_span_0": 101.79145462884337, - "ema_span_1": 1302.613647011827, - "enabled": true, - "markup_range": 0.007233876323629317, - "min_markup": 0.00540642448134144, - "n_close_orders": 6, - "qty_pct_close": 0.010674387716191691, - "qty_pct_entry": 0.010000028922995103, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.34723440871483}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALGOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALGOUSDT.json deleted file mode 100644 index 724d28758..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALGOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 993.2099822736116, - "delay_between_fills_minutes_entry": 907.1134642711795, - "delay_weight_close": 91.10727561647595, - "delay_weight_entry": 18.2631187838353, - "ema_dist_close": -0.003770060354489064, - "ema_dist_entry": 0.001988835120971212, - "ema_span_0": 218.92230415009234, - "ema_span_1": 1140.7050302463103, - "enabled": true, - "markup_range": 0.05038421118880065, - "min_markup": 0.00939597584082269, - "n_close_orders": 16, - "qty_pct_close": 0.011552919763618814, - "qty_pct_entry": 0.012695510950463009, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.626529823879352}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1426.2460127086429, - "delay_between_fills_minutes_entry": 1301.9677454251148, - "delay_weight_close": 0.012220795799037539, - "delay_weight_entry": 25.20019994016826, - "ema_dist_close": -0.0016368670131262433, - "ema_dist_entry": -0.0013336791157355073, - "ema_span_0": 1067.3195696810958, - "ema_span_1": 1403.2684971953186, - "enabled": true, - "markup_range": 0.05380055605505132, - "min_markup": 0.00923556724271716, - "n_close_orders": 2, - "qty_pct_close": 0.04987462152548703, - "qty_pct_entry": 0.011027050519535068, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.88357679726183}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALICEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALICEUSDT.json deleted file mode 100644 index 7c5fe3a76..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALICEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 948.5924235803632, - "delay_between_fills_minutes_entry": 445.94587967743337, - "delay_weight_close": 0, - "delay_weight_entry": 16.613111649909325, - "ema_dist_close": -0.002793376805631089, - "ema_dist_entry": -0.010619775516918327, - "ema_span_0": 128.11865291264792, - "ema_span_1": 1012.305368214816, - "enabled": true, - "markup_range": 0.0016971370730360946, - "min_markup": 0.005082771231042523, - "n_close_orders": 8, - "qty_pct_close": 0.027176105505702205, - "qty_pct_entry": 0.019631592394805254, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.120494434831706}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 930.7126773681595, - "delay_between_fills_minutes_entry": 329.57951177497563, - "delay_weight_close": 42.48052647946187, - "delay_weight_entry": 5.981976663516153, - "ema_dist_close": -0.002167828222481976, - "ema_dist_entry": -0.0038904436887898996, - "ema_span_0": 1246.8354275747909, - "ema_span_1": 1224.93527247447, - "enabled": true, - "markup_range": 0.0012348624221054066, - "min_markup": 0.0072801762545603495, - "n_close_orders": 13, - "qty_pct_close": 0.02026584709111844, - "qty_pct_entry": 0.024195663799912618, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.1920883415023}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALPHAUSDT.json deleted file mode 100644 index 9c65be511..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ALPHAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 741.3157048279273, - "delay_between_fills_minutes_entry": 740.7691348386141, - "delay_weight_close": 0.009895581702844247, - "delay_weight_entry": 12.629559526438694, - "ema_dist_close": -0.0012433439587670376, - "ema_dist_entry": 0.0009543219505727107, - "ema_span_0": 1122.3796685131272, - "ema_span_1": 1365.3239975033518, - "enabled": true, - "markup_range": 0.0257862379715904, - "min_markup": 0.004315190834559336, - "n_close_orders": 5, - "qty_pct_close": 0.019585806852354087, - "qty_pct_entry": 0.010044217915527459, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 27.938769017881295}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 620.6571412379012, - "delay_between_fills_minutes_entry": 997.7172342232508, - "delay_weight_close": 0.38951877492690934, - "delay_weight_entry": 11.335573696115203, - "ema_dist_close": 0.0017237333225649356, - "ema_dist_entry": -0.008758574686332178, - "ema_span_0": 599.6226248647932, - "ema_span_1": 1233.8604398453742, - "enabled": true, - "markup_range": 0.032885589978906254, - "min_markup": 0.0056352832062863374, - "n_close_orders": 2, - "qty_pct_close": 0.010212640986770967, - "qty_pct_entry": 0.01225837677247199, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.475172385566616}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AMBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AMBUSDT.json deleted file mode 100644 index 1aca6b180..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AMBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1184.3615944910123, - "delay_between_fills_minutes_entry": 1316.6598694856843, - "delay_weight_close": 22.216220423949164, - "delay_weight_entry": 14.865104379084425, - "ema_dist_close": 0.0012823448749537177, - "ema_dist_entry": 0.002502092258008941, - "ema_span_0": 954.9415062627131, - "ema_span_1": 457.9176932314965, - "enabled": true, - "markup_range": 0.05537256221278992, - "min_markup": 0.008997769337391387, - "n_close_orders": 12, - "qty_pct_close": 0.04205694962398605, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.54322583474827}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 725.1554744337141, - "delay_between_fills_minutes_entry": 365.2029793344823, - "delay_weight_close": 65.73940237271118, - "delay_weight_entry": 3.13657896875017, - "ema_dist_close": 0.0029746683296105803, - "ema_dist_entry": -0.0014555953360011465, - "ema_span_0": 1028.9346492808352, - "ema_span_1": 1324.8648865365885, - "enabled": true, - "markup_range": 0.05296354245585062, - "min_markup": 0.00761578088841487, - "n_close_orders": 13, - "qty_pct_close": 0.010136437171934982, - "qty_pct_entry": 0.010000512039589713, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.63636886350964}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ANKRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ANKRUSDT.json deleted file mode 100644 index 81a909e3d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ANKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1315.141976273805, - "delay_between_fills_minutes_entry": 934.9253957001756, - "delay_weight_close": 17.688406482855473, - "delay_weight_entry": 26.00809788858584, - "ema_dist_close": -0.0016748081878653668, - "ema_dist_entry": -0.03654614278690944, - "ema_span_0": 93.30615128463492, - "ema_span_1": 338.249198367619, - "enabled": true, - "markup_range": 0.005169100608490499, - "min_markup": 0.004989295359370392, - "n_close_orders": 14, - "qty_pct_close": 0.0191912063612504, - "qty_pct_entry": 0.010000944085816227, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.090745705115584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1403.9471968587643, - "delay_between_fills_minutes_entry": 1136.963779095065, - "delay_weight_close": 93.68780286306313, - "delay_weight_entry": 14.648811551148196, - "ema_dist_close": -0.009213904840566263, - "ema_dist_entry": -0.009644053954680638, - "ema_span_0": 1269.155795815461, - "ema_span_1": 1189.6728395610573, - "enabled": true, - "markup_range": 0.014225218382393833, - "min_markup": 0.008091621199959787, - "n_close_orders": 12, - "qty_pct_close": 0.011834713401907108, - "qty_pct_entry": 0.025141874657742893, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.749026274782445}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ANTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ANTUSDT.json deleted file mode 100644 index 6bf435dc6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ANTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9996307263943, - "delay_between_fills_minutes_entry": 1356.3096839048605, - "delay_weight_close": 19.82630462195396, - "delay_weight_entry": 13.78422385124914, - "ema_dist_close": 0.0006512868398342138, - "ema_dist_entry": -0.005882335475745471, - "ema_span_0": 1378.9252413534934, - "ema_span_1": 1415.5021832599589, - "enabled": true, - "markup_range": 0.006589815056230229, - "min_markup": 0.006910286400636286, - "n_close_orders": 2, - "qty_pct_close": 0.010097344655516368, - "qty_pct_entry": 0.010168520311009246, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99917137825818}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1321.2675210966815, - "delay_between_fills_minutes_entry": 727.7725982018825, - "delay_weight_close": 6.836134141876794, - "delay_weight_entry": 11.002862847951572, - "ema_dist_close": 0.002013196846451799, - "ema_dist_entry": -0.008930693813716625, - "ema_span_0": 24.27859997905422, - "ema_span_1": 1413.7713189270837, - "enabled": true, - "markup_range": 0.008463363353096822, - "min_markup": 0.007196949403276555, - "n_close_orders": 3, - "qty_pct_close": 0.010298566594961546, - "qty_pct_entry": 0.012072212183469164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.428587507278299}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/APEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/APEUSDT.json deleted file mode 100644 index b297be330..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/APEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.4921309098024, - "delay_between_fills_minutes_entry": 718.2712679058071, - "delay_weight_close": 77.55308977578495, - "delay_weight_entry": 14.391229426377867, - "ema_dist_close": -0.006078357697134095, - "ema_dist_entry": 0.001057995801127121, - "ema_span_0": 1208.4038604855607, - "ema_span_1": 1148.0751538552831, - "enabled": true, - "markup_range": 0.010539649158545022, - "min_markup": 0.0030119762467005467, - "n_close_orders": 15, - "qty_pct_close": 0.018595823751106383, - "qty_pct_entry": 0.01407999316615146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.849083327883314}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1363.732160564072, - "delay_between_fills_minutes_entry": 878.6270948450631, - "delay_weight_close": 52.185682809312425, - "delay_weight_entry": 26.237261188962684, - "ema_dist_close": 0.001964740882301477, - "ema_dist_entry": -0.03672838441035036, - "ema_span_0": 1187.1519687376892, - "ema_span_1": 1240.5031257780765, - "enabled": true, - "markup_range": 0.0008117692944082136, - "min_markup": 0.0036820127436975976, - "n_close_orders": 7, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.011371609117173708, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.150165830975524}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/API3USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/API3USDT.json deleted file mode 100644 index e17465209..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/API3USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1314.247903571028, - "delay_between_fills_minutes_entry": 756.5327419018398, - "delay_weight_close": 19.70542187915013, - "delay_weight_entry": 8.384322224965874, - "ema_dist_close": -0.002743073962334186, - "ema_dist_entry": 0.0011729250357169509, - "ema_span_0": 1134.3030856989453, - "ema_span_1": 374.2547700322892, - "enabled": true, - "markup_range": 0.00833439211682813, - "min_markup": 0.00794186984362587, - "n_close_orders": 16, - "qty_pct_close": 0.010007305911911858, - "qty_pct_entry": 0.010741877017260211, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.69026117232209}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.908049581273, - "delay_between_fills_minutes_entry": 59.74076689517965, - "delay_weight_close": 25.279307079735386, - "delay_weight_entry": 0.03610005714272519, - "ema_dist_close": -0.001631463132074381, - "ema_dist_entry": 0.0027795674082172943, - "ema_span_0": 1193.7477154980545, - "ema_span_1": 1189.3415874690265, - "enabled": true, - "markup_range": 0.0, - "min_markup": 0.005992141460953038, - "n_close_orders": 2, - "qty_pct_close": 0.021849933068977704, - "qty_pct_entry": 0.010131751468933482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.001014448562444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/APTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/APTUSDT.json deleted file mode 100644 index 3b5f195e4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/APTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.8783282364853, - "delay_between_fills_minutes_entry": 1356.3122129115925, - "delay_weight_close": 98.88522291288257, - "delay_weight_entry": 15.553155211456204, - "ema_dist_close": -0.009732925906375011, - "ema_dist_entry": 0.0009699458756196528, - "ema_span_0": 779.2455770473497, - "ema_span_1": 1171.5327660203245, - "enabled": true, - "markup_range": 0.03364713965002472, - "min_markup": 0.007213230196896175, - "n_close_orders": 10, - "qty_pct_close": 0.019217157511579448, - "qty_pct_entry": 0.010296292114413306, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.222704445038595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1382.5656249380263, - "delay_between_fills_minutes_entry": 1050.116305579408, - "delay_weight_close": 87.25867328093925, - "delay_weight_entry": 23.449478356870205, - "ema_dist_close": 0.0009503244548221418, - "ema_dist_entry": -0.023269762487401764, - "ema_span_0": 1182.8981962746375, - "ema_span_1": 948.3581237635082, - "enabled": true, - "markup_range": 0.002005485993327191, - "min_markup": 0.004248906884460711, - "n_close_orders": 15, - "qty_pct_close": 0.011497613462901712, - "qty_pct_entry": 0.026522510991421173, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.7706935443909}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARBUSDT.json deleted file mode 100644 index b31f6ba2b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 726.5018587493423, - "delay_between_fills_minutes_entry": 879.8154454712225, - "delay_weight_close": 0.18875934862188895, - "delay_weight_entry": 8.505763453378362, - "ema_dist_close": 0.002403967716716246, - "ema_dist_entry": -0.010934246946260976, - "ema_span_0": 880.7659216118963, - "ema_span_1": 1102.6114459450203, - "enabled": true, - "markup_range": 0.006989513722505428, - "min_markup": 0.009357041315566403, - "n_close_orders": 6, - "qty_pct_close": 0.011515134445292636, - "qty_pct_entry": 0.013754476724842984, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.16087857406137}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 887.2037241884478, - "delay_between_fills_minutes_entry": 362.72482162555207, - "delay_weight_close": 24.901090566032515, - "delay_weight_entry": 1.8212944666005397, - "ema_dist_close": 0.0016358398223849106, - "ema_dist_entry": -0.012110099800361434, - "ema_span_0": 824.5664075440658, - "ema_span_1": 933.184624103443, - "enabled": true, - "markup_range": 0.0018287846958959242, - "min_markup": 0.008129552545040117, - "n_close_orders": 10, - "qty_pct_close": 0.01255017842835807, - "qty_pct_entry": 0.014047446701507671, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.14469049774663}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARPAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARPAUSDT.json deleted file mode 100644 index caa614de4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARPAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1247.6261460130497, - "delay_between_fills_minutes_entry": 1354.7131015756122, - "delay_weight_close": 43.4504532137288, - "delay_weight_entry": 23.913479307773173, - "ema_dist_close": 0.0017828065124768774, - "ema_dist_entry": -0.0004806561604589754, - "ema_span_0": 1054.5744716183358, - "ema_span_1": 1390.5569703476021, - "enabled": true, - "markup_range": 0.007764707352678075, - "min_markup": 0.009912803772390658, - "n_close_orders": 6, - "qty_pct_close": 0.01170887681178063, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.539650139784118}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.0848576729929, - "delay_between_fills_minutes_entry": 239.17513247725657, - "delay_weight_close": 1.0585433165932296, - "delay_weight_entry": 15.701756960939994, - "ema_dist_close": 0.0016768443296472256, - "ema_dist_entry": 0.0019883577707560034, - "ema_span_0": 1123.1088331257201, - "ema_span_1": 848.55623358652, - "enabled": true, - "markup_range": 0.0030477229422319865, - "min_markup": 0.002129235855412888, - "n_close_orders": 6, - "qty_pct_close": 0.02458667390083907, - "qty_pct_entry": 0.01077738268024867, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.237575293267106}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARUSDT.json deleted file mode 100644 index e3d4cdfe2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 362.64099906152967, - "delay_weight_close": 1.843195581117984, - "delay_weight_entry": 7.401766460243269, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.0017059768163516177, - "ema_span_0": 1203.9067705248688, - "ema_span_1": 770.537989167252, - "enabled": true, - "markup_range": 0.005932370991504523, - "min_markup": 0.005091081987563444, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01534260023849681, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99826273667449}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ASTRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ASTRUSDT.json deleted file mode 100644 index f6ece966c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ASTRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 339.9380193664034, - "delay_between_fills_minutes_entry": 730.8681042203965, - "delay_weight_close": 83.55745655127429, - "delay_weight_entry": 13.353996562088929, - "ema_dist_close": 0.0017689960927887477, - "ema_dist_entry": 0.0026949674100731663, - "ema_span_0": 1203.612653402212, - "ema_span_1": 978.4219950254873, - "enabled": true, - "markup_range": 0.0026035454582995082, - "min_markup": 0.008483235097305586, - "n_close_orders": 2, - "qty_pct_close": 0.026561697048210993, - "qty_pct_entry": 0.03515215978944493, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.00117636599077}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.8037222838452, - "delay_between_fills_minutes_entry": 327.80358012958607, - "delay_weight_close": 18.42997447755327, - "delay_weight_entry": 46.76940467656919, - "ema_dist_close": 0.00213985136997908, - "ema_dist_entry": -0.021724334438032487, - "ema_span_0": 191.51776170966482, - "ema_span_1": 943.3356805188178, - "enabled": true, - "markup_range": 0.004467487375428127, - "min_markup": 0.0016550621004090662, - "n_close_orders": 13, - "qty_pct_close": 0.012230216088259062, - "qty_pct_entry": 0.01014443749636906, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.922297547496}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ATAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ATAUSDT.json deleted file mode 100644 index 81d0e61ee..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ATAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9996307263943, - "delay_between_fills_minutes_entry": 1356.3096839048605, - "delay_weight_close": 19.82630462195396, - "delay_weight_entry": 13.78422385124914, - "ema_dist_close": 0.0006512868398342138, - "ema_dist_entry": -0.005882335475745471, - "ema_span_0": 1378.9252413534934, - "ema_span_1": 1415.5021832599589, - "enabled": true, - "markup_range": 0.006589815056230229, - "min_markup": 0.006910286400636286, - "n_close_orders": 2, - "qty_pct_close": 0.010097344655516368, - "qty_pct_entry": 0.010168520311009246, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99917137825818}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1349.0527981942628, - "delay_between_fills_minutes_entry": 309.9093083580568, - "delay_weight_close": 89.48902081600929, - "delay_weight_entry": 15.286544282775344, - "ema_dist_close": -0.003247196248122197, - "ema_dist_entry": -0.012913149845687748, - "ema_span_0": 1358.5381253354649, - "ema_span_1": 853.0895784468605, - "enabled": true, - "markup_range": 0.0439232570471195, - "min_markup": 0.0024530145641530397, - "n_close_orders": 3, - "qty_pct_close": 0.02232490479595429, - "qty_pct_entry": 0.010091378765415682, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.18129679709398}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ATOMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ATOMUSDT.json deleted file mode 100644 index ddbdebcde..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ATOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 921.785278642489, - "delay_between_fills_minutes_entry": 281.6164003958784, - "delay_weight_close": 58.84391649280662, - "delay_weight_entry": 25.063812430728003, - "ema_dist_close": -0.005020149865574052, - "ema_dist_entry": -0.0027211223851546142, - "ema_span_0": 1031.822748905143, - "ema_span_1": 736.3918600815023, - "enabled": true, - "markup_range": 0.004090636257777061, - "min_markup": 0.0038920634407544168, - "n_close_orders": 10, - "qty_pct_close": 0.011140336226920506, - "qty_pct_entry": 0.012232827756902383, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.552987196668006}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1402.7172482584301, - "delay_between_fills_minutes_entry": 344.7025103958255, - "delay_weight_close": 8.759643861149593, - "delay_weight_entry": 30.763474610175475, - "ema_dist_close": 0.0009703926309864963, - "ema_dist_entry": -0.018154742646290446, - "ema_span_0": 1349.8110007892126, - "ema_span_1": 1381.2803736874703, - "enabled": true, - "markup_range": 0.005824195540628128, - "min_markup": 0.0028345820995613977, - "n_close_orders": 3, - "qty_pct_close": 0.010597486437597498, - "qty_pct_entry": 0.010010771944167957, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.261430753147554}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AUDIOUSDT.json deleted file mode 100644 index d462370bd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AUDIOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.295287539748, - "delay_between_fills_minutes_entry": 1047.2353291667882, - "delay_weight_close": 39.28896919919422, - "delay_weight_entry": 3.3334507658908543, - "ema_dist_close": 0.002678510609963926, - "ema_dist_entry": 0.0019159766341221923, - "ema_span_0": 1226.049433092329, - "ema_span_1": 1407.84421615113, - "enabled": true, - "markup_range": 0.011231363589640603, - "min_markup": 0.005970324378700582, - "n_close_orders": 7, - "qty_pct_close": 0.01000141758231588, - "qty_pct_entry": 0.021110660168367792, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.70956291569769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AVAXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AVAXUSDT.json deleted file mode 100644 index 8708ffdb9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AVAXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.6957660159685, - "delay_between_fills_minutes_entry": 1373.7750010066156, - "delay_weight_close": 21.558298911173363, - "delay_weight_entry": 29.384812238320702, - "ema_dist_close": -0.0006799769952471387, - "ema_dist_entry": 0.0012113779436798713, - "ema_span_0": 1090.5497217046686, - "ema_span_1": 1217.620425122205, - "enabled": true, - "markup_range": 0.007435548836667484, - "min_markup": 0.00841774683453363, - "n_close_orders": 13, - "qty_pct_close": 0.014931925620971308, - "qty_pct_entry": 0.010652300224517188, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.11715839291427}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1390.9761581132889, - "delay_between_fills_minutes_entry": 353.56505938715503, - "delay_weight_close": 44.66625539825599, - "delay_weight_entry": 22.787549454448435, - "ema_dist_close": -0.009546712044786307, - "ema_dist_entry": -0.01794633565835323, - "ema_span_0": 390.9336289665255, - "ema_span_1": 1063.1651315414265, - "enabled": true, - "markup_range": 0.00840796039039137, - "min_markup": 0.009127580724769841, - "n_close_orders": 2, - "qty_pct_close": 0.010001455272699168, - "qty_pct_entry": 0.01000009631341234, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.592544889563362}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AXSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AXSUSDT.json deleted file mode 100644 index df484035c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/AXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 565.5499944696533, - "delay_between_fills_minutes_entry": 727.2427902501212, - "delay_weight_close": 43.667024287856144, - "delay_weight_entry": 10.860459998907643, - "ema_dist_close": 0.00048625115100992867, - "ema_dist_entry": 0.0028677269768067745, - "ema_span_0": 1084.8291678296357, - "ema_span_1": 1332.8954411390712, - "enabled": true, - "markup_range": 0.055681115087971376, - "min_markup": 0.005149121202026891, - "n_close_orders": 10, - "qty_pct_close": 0.015776195883331536, - "qty_pct_entry": 0.010452921357753152, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.27912375194279}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.183804080341, - "delay_between_fills_minutes_entry": 856.231422014711, - "delay_weight_close": 77.61135444747464, - "delay_weight_entry": 8.377021925245762, - "ema_dist_close": 0.0028538894051970175, - "ema_dist_entry": -0.03128727996102496, - "ema_span_0": 1400.7081496556054, - "ema_span_1": 275.4705410474334, - "enabled": true, - "markup_range": 0.001711506393338193, - "min_markup": 0.009063782050319925, - "n_close_orders": 2, - "qty_pct_close": 0.010144440890874636, - "qty_pct_entry": 0.011037967647793502, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.07965940008806}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BAKEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BAKEUSDT.json deleted file mode 100644 index 869451f9b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BAKEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1419.35748903851, - "delay_between_fills_minutes_entry": 324.1607589843539, - "delay_weight_close": 4.432328728822542, - "delay_weight_entry": 12.11493231067752, - "ema_dist_close": 0.002072359008868417, - "ema_dist_entry": -0.005511524847888036, - "ema_span_0": 727.087512662353, - "ema_span_1": 930.1699104888872, - "enabled": true, - "markup_range": 0.006428958742681979, - "min_markup": 0.0031212587161726134, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.636044626388497}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BALUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BALUSDT.json deleted file mode 100644 index df5bbac8b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1287.701703160353, - "delay_between_fills_minutes_entry": 883.762638728487, - "delay_weight_close": 0.668855076016934, - "delay_weight_entry": 13.163755924446333, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.0017511693475836415, - "ema_span_0": 1188.3258905974624, - "ema_span_1": 1130.6903976299232, - "enabled": true, - "markup_range": 0.00834288765237012, - "min_markup": 0.006167188946346326, - "n_close_orders": 5, - "qty_pct_close": 0.012541797345502035, - "qty_pct_entry": 0.01000000016941661, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.25550740209819}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1204.8592959383561, - "delay_between_fills_minutes_entry": 1128.084393399213, - "delay_weight_close": 16.641979133768626, - "delay_weight_entry": 8.85584145027719, - "ema_dist_close": -0.003830885769316448, - "ema_dist_entry": -0.0075363323826649516, - "ema_span_0": 1320.4558962322453, - "ema_span_1": 1050.0239307094894, - "enabled": true, - "markup_range": 0.02714713694859004, - "min_markup": 0.0037161173309938652, - "n_close_orders": 5, - "qty_pct_close": 0.01133649725261194, - "qty_pct_entry": 0.012887983173201995, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.32805187040517}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BANDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BANDUSDT.json deleted file mode 100644 index 2ac555f6a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1432.3751463936494, - "delay_between_fills_minutes_entry": 1179.0573323700694, - "delay_weight_close": 39.65215979564905, - "delay_weight_entry": 17.17083703562694, - "ema_dist_close": 0.0017579095656521597, - "ema_dist_entry": -0.005136440663016263, - "ema_span_0": 1163.233312792913, - "ema_span_1": 1310.8503944062077, - "enabled": true, - "markup_range": 0.007518172128085469, - "min_markup": 0.00560150313019402, - "n_close_orders": 3, - "qty_pct_close": 0.01002691999821848, - "qty_pct_entry": 0.014955548226043693, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.094464166028665}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1419.35748903851, - "delay_between_fills_minutes_entry": 324.1607589843539, - "delay_weight_close": 4.432328728822542, - "delay_weight_entry": 12.11493231067752, - "ema_dist_close": 0.002072359008868417, - "ema_dist_entry": -0.005511524847888036, - "ema_span_0": 727.087512662353, - "ema_span_1": 930.1699104888872, - "enabled": true, - "markup_range": 0.006428958742681979, - "min_markup": 0.0031212587161726134, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.636044626388497}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BATUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BATUSDT.json deleted file mode 100644 index b811f20d3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BATUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 982.1114384601992, - "delay_between_fills_minutes_entry": 1217.8570757792088, - "delay_weight_close": 27.35979816168313, - "delay_weight_entry": 9.896339717571426, - "ema_dist_close": 0.001852286567782835, - "ema_dist_entry": -0.0063302454593886365, - "ema_span_0": 1288.6178079055449, - "ema_span_1": 458.99927260504467, - "enabled": true, - "markup_range": 0.059316436372411054, - "min_markup": 0.007669512440158862, - "n_close_orders": 15, - "qty_pct_close": 0.0128413242116296, - "qty_pct_entry": 0.01023561794315263, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.642606902901733}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1106.1524957784725, - "delay_between_fills_minutes_entry": 456.07881270653763, - "delay_weight_close": 79.80859255787203, - "delay_weight_entry": 5.072828881471656, - "ema_dist_close": -0.003555471962947313, - "ema_dist_entry": -0.005043831549968741, - "ema_span_0": 1156.5763075310185, - "ema_span_1": 840.3326395635395, - "enabled": true, - "markup_range": 0.0046671893371625205, - "min_markup": 0.008359491944116003, - "n_close_orders": 3, - "qty_pct_close": 0.010101050051285069, - "qty_pct_entry": 0.015664879747760697, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99577359586544}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BCHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BCHUSDT.json deleted file mode 100644 index 1ad96f56f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1131.0858137407836, - "delay_between_fills_minutes_entry": 1141.2854355191805, - "delay_weight_close": 47.7995714379334, - "delay_weight_entry": 12.163422060214623, - "ema_dist_close": 0.001726891713885992, - "ema_dist_entry": -0.0002635970063542015, - "ema_span_0": 841.9363889534885, - "ema_span_1": 1069.3871257156488, - "enabled": true, - "markup_range": 0.03808971318459026, - "min_markup": 0.003293868064893673, - "n_close_orders": 8, - "qty_pct_close": 0.011896034387144545, - "qty_pct_entry": 0.012364918487516321, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.63999350504815}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1102.6654433196436, - "delay_between_fills_minutes_entry": 1143.7952643204183, - "delay_weight_close": 48.15130465293994, - "delay_weight_entry": 11.56702642969024, - "ema_dist_close": 0.002768196307454373, - "ema_dist_entry": 0.001686412301108074, - "ema_span_0": 1255.5605774618436, - "ema_span_1": 233.33261295639755, - "enabled": true, - "markup_range": 0.05994574414503867, - "min_markup": 0.009634592822136252, - "n_close_orders": 4, - "qty_pct_close": 0.014241757796422692, - "qty_pct_entry": 0.010026140673450945, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.73039256907796}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BELUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BELUSDT.json deleted file mode 100644 index 1ce440b37..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BELUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 567.1832337216159, - "delay_between_fills_minutes_entry": 507.51500888440535, - "delay_weight_close": 2.567432603479946, - "delay_weight_entry": 20.056302186822286, - "ema_dist_close": 0.002954118586554528, - "ema_dist_entry": 0.0028174623447811387, - "ema_span_0": 954.4237815186215, - "ema_span_1": 926.4877569295417, - "enabled": true, - "markup_range": 0.013340450822885812, - "min_markup": 0.0023116213182589355, - "n_close_orders": 2, - "qty_pct_close": 0.04646447508503613, - "qty_pct_entry": 0.013399323477730353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.058640410997555}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1264.622930699407, - "delay_between_fills_minutes_entry": 1078.4281163996686, - "delay_weight_close": 3.1457517693696864, - "delay_weight_entry": 6.63644358840581, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.005963092428779616, - "ema_span_0": 1409.3372302864097, - "ema_span_1": 1372.0383779465153, - "enabled": true, - "markup_range": 0.011291196052797919, - "min_markup": 0.009071306352471595, - "n_close_orders": 13, - "qty_pct_close": 0.010679637207530061, - "qty_pct_entry": 0.01701576364122997, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.91049619064152}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLUEBIRDUSDT.json deleted file mode 100644 index 79a06172d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLUEBIRDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 293.70687625681643, - "delay_between_fills_minutes_entry": 999.5086184443795, - "delay_weight_close": 51.56174391538608, - "delay_weight_entry": 12.576532002033808, - "ema_dist_close": 0.0013659725116953751, - "ema_dist_entry": 0.0029989141756895732, - "ema_span_0": 567.5175926780402, - "ema_span_1": 1338.9044460641064, - "enabled": true, - "markup_range": 0.05649993822704228, - "min_markup": 0.008347886755904008, - "n_close_orders": 3, - "qty_pct_close": 0.012381902213424213, - "qty_pct_entry": 0.01645201624985261, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 31.66039500666277}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 763.5675900024833, - "delay_between_fills_minutes_entry": 336.84996844680137, - "delay_weight_close": 4.172444629417019, - "delay_weight_entry": 27.8970181184327, - "ema_dist_close": 0.002012414010929426, - "ema_dist_entry": -0.003881516841071233, - "ema_span_0": 1372.6604059898161, - "ema_span_1": 5.161901919134253, - "enabled": true, - "markup_range": 0.004525559065348018, - "min_markup": 0.0035442968743519122, - "n_close_orders": 5, - "qty_pct_close": 0.010055680846827206, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.588144695321444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLURUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLURUSDT.json deleted file mode 100644 index 603019994..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLURUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1045.9151674374539, - "delay_between_fills_minutes_entry": 1281.0346618834033, - "delay_weight_close": 21.189615506283527, - "delay_weight_entry": 13.943446987788322, - "ema_dist_close": 0.0028664575862303106, - "ema_dist_entry": -0.003925228047579549, - "ema_span_0": 1301.692750240556, - "ema_span_1": 1130.5115186853711, - "enabled": true, - "markup_range": 0.024478686812514184, - "min_markup": 0.009996994601503028, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.013123028616399872, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.973051158987566}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1271.2867396775025, - "delay_between_fills_minutes_entry": 185.99851005072222, - "delay_weight_close": 35.72907284372276, - "delay_weight_entry": 14.673882645945039, - "ema_dist_close": 0.0011613445555605946, - "ema_dist_entry": -0.00936703788367831, - "ema_span_0": 369.2075449990928, - "ema_span_1": 470.48836434567414, - "enabled": true, - "markup_range": 0.00172280295791171, - "min_markup": 0.0052495775719008445, - "n_close_orders": 13, - "qty_pct_close": 0.019974200364457424, - "qty_pct_entry": 0.01543643979563336, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.369217008190134}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLZUSDT.json deleted file mode 100644 index 1884e5c24..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BLZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1277.9544783972335, - "delay_between_fills_minutes_entry": 1163.9960848593298, - "delay_weight_close": 77.07863253685069, - "delay_weight_entry": 17.040137678205323, - "ema_dist_close": 0.002215730146257321, - "ema_dist_entry": -0.0008859077118096167, - "ema_span_0": 596.3020496405662, - "ema_span_1": 1292.9524984342952, - "enabled": true, - "markup_range": 0.057433651626384113, - "min_markup": 0.0038033869893633766, - "n_close_orders": 2, - "qty_pct_close": 0.01000212479661684, - "qty_pct_entry": 0.012616397879523275, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.9164116104312074}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.4549516580241, - "delay_between_fills_minutes_entry": 1002.654074830682, - "delay_weight_close": 66.35289088949918, - "delay_weight_entry": 15.45684405525131, - "ema_dist_close": -0.002916938641804321, - "ema_dist_entry": -0.002949946640582226, - "ema_span_0": 438.3463446517848, - "ema_span_1": 460.0095476014601, - "enabled": true, - "markup_range": 0.008063811878723032, - "min_markup": 0.0073293570541857235, - "n_close_orders": 6, - "qty_pct_close": 0.02061766733031572, - "qty_pct_entry": 0.010857773219249262, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.43228449510072}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BNBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BNBUSDT.json deleted file mode 100644 index 79a06172d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BNBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 293.70687625681643, - "delay_between_fills_minutes_entry": 999.5086184443795, - "delay_weight_close": 51.56174391538608, - "delay_weight_entry": 12.576532002033808, - "ema_dist_close": 0.0013659725116953751, - "ema_dist_entry": 0.0029989141756895732, - "ema_span_0": 567.5175926780402, - "ema_span_1": 1338.9044460641064, - "enabled": true, - "markup_range": 0.05649993822704228, - "min_markup": 0.008347886755904008, - "n_close_orders": 3, - "qty_pct_close": 0.012381902213424213, - "qty_pct_entry": 0.01645201624985261, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 31.66039500666277}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 763.5675900024833, - "delay_between_fills_minutes_entry": 336.84996844680137, - "delay_weight_close": 4.172444629417019, - "delay_weight_entry": 27.8970181184327, - "ema_dist_close": 0.002012414010929426, - "ema_dist_entry": -0.003881516841071233, - "ema_span_0": 1372.6604059898161, - "ema_span_1": 5.161901919134253, - "enabled": true, - "markup_range": 0.004525559065348018, - "min_markup": 0.0035442968743519122, - "n_close_orders": 5, - "qty_pct_close": 0.010055680846827206, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.588144695321444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BNXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BNXUSDT.json deleted file mode 100644 index 9768f0023..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 813.1710008076656, - "delay_between_fills_minutes_entry": 977.6229927132322, - "delay_weight_close": 0.004667652369655633, - "delay_weight_entry": 9.395078689581327, - "ema_dist_close": -0.0045990529774563695, - "ema_dist_entry": 0.002981874877788522, - "ema_span_0": 1313.3138466454357, - "ema_span_1": 1160.5615321378627, - "enabled": true, - "markup_range": 0.030942547188390804, - "min_markup": 0.00945922609421852, - "n_close_orders": 8, - "qty_pct_close": 0.010000570762521584, - "qty_pct_entry": 0.010464698333989917, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1348.1061415356871, - "delay_between_fills_minutes_entry": 457.1834448205697, - "delay_weight_close": 51.23671296008696, - "delay_weight_entry": 10.742247314414094, - "ema_dist_close": 0.0024100200215017124, - "ema_dist_entry": -0.009803025118896535, - "ema_span_0": 1362.0537037964243, - "ema_span_1": 620.1588569258116, - "enabled": true, - "markup_range": 0.007309862068440085, - "min_markup": 0.009476818944453411, - "n_close_orders": 7, - "qty_pct_close": 0.017099324105575044, - "qty_pct_entry": 0.01352177797583301, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.719350723316104}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCDOMUSDT.json deleted file mode 100644 index 729ec5ccc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCDOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1247.6261460130497, - "delay_between_fills_minutes_entry": 1354.7131015756122, - "delay_weight_close": 43.4504532137288, - "delay_weight_entry": 23.913479307773173, - "ema_dist_close": 0.0017828065124768774, - "ema_dist_entry": -0.0004806561604589754, - "ema_span_0": 1054.5744716183358, - "ema_span_1": 1390.5569703476021, - "enabled": true, - "markup_range": 0.007764707352678075, - "min_markup": 0.009912803772390658, - "n_close_orders": 6, - "qty_pct_close": 0.01170887681178063, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.539650139784118}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9985429335813, - "delay_between_fills_minutes_entry": 443.28494824363173, - "delay_weight_close": 0.16359912229089063, - "delay_weight_entry": 13.240581743985038, - "ema_dist_close": 0.0029757836023346887, - "ema_dist_entry": 0.002999524430504396, - "ema_span_0": 819.930804907152, - "ema_span_1": 795.993672876129, - "enabled": true, - "markup_range": 0.0017534590868530306, - "min_markup": 0.002575212146290758, - "n_close_orders": 4, - "qty_pct_close": 0.010010983642258086, - "qty_pct_entry": 0.010978277873816018, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.262083355049924}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCSTUSDT.json deleted file mode 100644 index 0784c209a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1177.0925413040277, - "delay_between_fills_minutes_entry": 1166.43283851192, - "delay_weight_close": 13.226221412387021, - "delay_weight_entry": 23.28200126189329, - "ema_dist_close": 0.0028249499040441956, - "ema_dist_entry": 0.002974228378353759, - "ema_span_0": 60.451698858588756, - "ema_span_1": 881.617680320686, - "enabled": true, - "markup_range": 0.0045930900547342165, - "min_markup": 0.005619941089449408, - "n_close_orders": 5, - "qty_pct_close": 0.010000043298117066, - "qty_pct_entry": 0.047541917671974854, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.95797504295741}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCUSDT.json deleted file mode 100644 index 49b4bf5b2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.330711456547, - "delay_between_fills_minutes_entry": 1205.461514879456, - "delay_weight_close": 50.393562227474185, - "delay_weight_entry": 5.746696339402074, - "ema_dist_close": 0.0028249499040441956, - "ema_dist_entry": -0.005727574793557369, - "ema_span_0": 311.5731620319031, - "ema_span_1": 1363.209180445593, - "enabled": true, - "markup_range": 0.05898294252241398, - "min_markup": 0.00900393943145341, - "n_close_orders": 7, - "qty_pct_close": 0.010573273457660879, - "qty_pct_entry": 0.013286194391958047, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.16482557395951}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9985429335813, - "delay_between_fills_minutes_entry": 443.28494824363173, - "delay_weight_close": 0.16359912229089063, - "delay_weight_entry": 13.240581743985038, - "ema_dist_close": 0.0029757836023346887, - "ema_dist_entry": 0.002999524430504396, - "ema_span_0": 819.930804907152, - "ema_span_1": 795.993672876129, - "enabled": true, - "markup_range": 0.0017534590868530306, - "min_markup": 0.002575212146290758, - "n_close_orders": 4, - "qty_pct_close": 0.010010983642258086, - "qty_pct_entry": 0.010978277873816018, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.262083355049924}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTSUSDT.json deleted file mode 100644 index 5362cf351..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/BTSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.6928757398614, - "delay_between_fills_minutes_entry": 1292.1071092608831, - "delay_weight_close": 51.10241134800901, - "delay_weight_entry": 10.422684674498388, - "ema_dist_close": -0.008468550520503762, - "ema_dist_entry": -0.0008732906790591245, - "ema_span_0": 539.3853897239002, - "ema_span_1": 1081.0530360050282, - "enabled": true, - "markup_range": 0.058878261595520794, - "min_markup": 0.009871141399658608, - "n_close_orders": 10, - "qty_pct_close": 0.011089060831768449, - "qty_pct_entry": 0.011643727667976063, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.309220699157697}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1271.2867396775025, - "delay_between_fills_minutes_entry": 185.99851005072222, - "delay_weight_close": 35.72907284372276, - "delay_weight_entry": 14.673882645945039, - "ema_dist_close": 0.0011613445555605946, - "ema_dist_entry": -0.00936703788367831, - "ema_span_0": 369.2075449990928, - "ema_span_1": 470.48836434567414, - "enabled": true, - "markup_range": 0.00172280295791171, - "min_markup": 0.0052495775719008445, - "n_close_orders": 13, - "qty_pct_close": 0.019974200364457424, - "qty_pct_entry": 0.01543643979563336, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.369217008190134}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/C98USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/C98USDT.json deleted file mode 100644 index ff27260eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/C98USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1247.6261460130497, - "delay_between_fills_minutes_entry": 1354.7131015756122, - "delay_weight_close": 43.4504532137288, - "delay_weight_entry": 23.913479307773173, - "ema_dist_close": 0.0017828065124768774, - "ema_dist_entry": -0.0004806561604589754, - "ema_span_0": 1054.5744716183358, - "ema_span_1": 1390.5569703476021, - "enabled": true, - "markup_range": 0.007764707352678075, - "min_markup": 0.009912803772390658, - "n_close_orders": 6, - "qty_pct_close": 0.01170887681178063, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.539650139784118}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1328.878591267137, - "delay_between_fills_minutes_entry": 550.3219842196634, - "delay_weight_close": 0.9804407473392209, - "delay_weight_entry": 5.786239825329727, - "ema_dist_close": 7.275055693767578e-05, - "ema_dist_entry": -0.00355615254320233, - "ema_span_0": 106.33683812044058, - "ema_span_1": 794.6006383466587, - "enabled": true, - "markup_range": 0.01092309873780066, - "min_markup": 0.008364862378434436, - "n_close_orders": 2, - "qty_pct_close": 0.010707242539433837, - "qty_pct_entry": 0.010367219725939932, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.37272273169245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CELOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CELOUSDT.json deleted file mode 100644 index 3caf57fe3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CELOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 734.6231208453357, - "delay_between_fills_minutes_entry": 733.0301262782347, - "delay_weight_close": 62.79433788138004, - "delay_weight_entry": 9.652242632829257, - "ema_dist_close": 0.00018762902844731376, - "ema_dist_entry": 0.0006985318435874562, - "ema_span_0": 1370.4615068926796, - "ema_span_1": 447.5717431297351, - "enabled": true, - "markup_range": 0.059687865062258295, - "min_markup": 0.009658547225832807, - "n_close_orders": 6, - "qty_pct_close": 0.03893253060984516, - "qty_pct_entry": 0.010026960378728174, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.737812585898673}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 887.2037241884478, - "delay_between_fills_minutes_entry": 362.72482162555207, - "delay_weight_close": 24.901090566032515, - "delay_weight_entry": 1.8212944666005397, - "ema_dist_close": 0.0016358398223849106, - "ema_dist_entry": -0.012110099800361434, - "ema_span_0": 824.5664075440658, - "ema_span_1": 933.184624103443, - "enabled": true, - "markup_range": 0.0018287846958959242, - "min_markup": 0.008129552545040117, - "n_close_orders": 10, - "qty_pct_close": 0.01255017842835807, - "qty_pct_entry": 0.014047446701507671, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.14469049774663}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CELRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CELRUSDT.json deleted file mode 100644 index a3300ede9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CELRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1350.8705701286658, - "delay_between_fills_minutes_entry": 913.2317899176276, - "delay_weight_close": 82.38436744577027, - "delay_weight_entry": 21.79531895043939, - "ema_dist_close": -0.006113664508286406, - "ema_dist_entry": 0.0009548336270218507, - "ema_span_0": 313.8535147528013, - "ema_span_1": 842.1366822566232, - "enabled": true, - "markup_range": 0.04943403527819182, - "min_markup": 0.008252592704965457, - "n_close_orders": 14, - "qty_pct_close": 0.014519460386990804, - "qty_pct_entry": 0.015702510346972808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.236539060717869}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1437.6556331091303, - "delay_between_fills_minutes_entry": 855.2972998410561, - "delay_weight_close": 0.01953767262743735, - "delay_weight_entry": 23.048416165471224, - "ema_dist_close": 0.0029983824431083564, - "ema_dist_entry": 0.0015407208135452975, - "ema_span_0": 360.6567142389569, - "ema_span_1": 1073.5690410150355, - "enabled": true, - "markup_range": 0.0036583952101075334, - "min_markup": 0.005237300214853335, - "n_close_orders": 9, - "qty_pct_close": 0.01038015686454309, - "qty_pct_entry": 0.023949519397996628, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.39976733333697}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CFXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CFXUSDT.json deleted file mode 100644 index 3741dfdb4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CFXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.6928757398614, - "delay_between_fills_minutes_entry": 1292.1071092608831, - "delay_weight_close": 51.10241134800901, - "delay_weight_entry": 10.422684674498388, - "ema_dist_close": -0.008468550520503762, - "ema_dist_entry": -0.0008732906790591245, - "ema_span_0": 539.3853897239002, - "ema_span_1": 1081.0530360050282, - "enabled": true, - "markup_range": 0.058878261595520794, - "min_markup": 0.009871141399658608, - "n_close_orders": 10, - "qty_pct_close": 0.011089060831768449, - "qty_pct_entry": 0.011643727667976063, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.309220699157697}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 927.5536393402995, - "delay_between_fills_minutes_entry": 76.65521428223664, - "delay_weight_close": 4.0912562091058975, - "delay_weight_entry": 0.4026069516881707, - "ema_dist_close": 0.0027286292890744213, - "ema_dist_entry": -0.0024395190240046735, - "ema_span_0": 1029.0821444294024, - "ema_span_1": 1110.6017165946846, - "enabled": true, - "markup_range": 0.0037852668244971474, - "min_markup": 0.0022884136867671575, - "n_close_orders": 6, - "qty_pct_close": 0.012226923140416623, - "qty_pct_entry": 0.010209693427915594, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.520846381647537}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CHRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CHRUSDT.json deleted file mode 100644 index f7da563f6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CHRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1247.6261460130497, - "delay_between_fills_minutes_entry": 1354.7131015756122, - "delay_weight_close": 43.4504532137288, - "delay_weight_entry": 23.913479307773173, - "ema_dist_close": 0.0017828065124768774, - "ema_dist_entry": -0.0004806561604589754, - "ema_span_0": 1054.5744716183358, - "ema_span_1": 1390.5569703476021, - "enabled": true, - "markup_range": 0.007764707352678075, - "min_markup": 0.009912803772390658, - "n_close_orders": 6, - "qty_pct_close": 0.01170887681178063, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.539650139784118}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1301.303019330151, - "delay_between_fills_minutes_entry": 479.69921896126925, - "delay_weight_close": 55.542485173894526, - "delay_weight_entry": 10.455778328348831, - "ema_dist_close": -0.0055593658228460735, - "ema_dist_entry": -0.004957492501179772, - "ema_span_0": 962.8439764717685, - "ema_span_1": 220.56918538852037, - "enabled": true, - "markup_range": 0.008148360129222623, - "min_markup": 0.009574226602672445, - "n_close_orders": 16, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.014892672876347674, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.459793031921954}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CHZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CHZUSDT.json deleted file mode 100644 index 6b64d0dc1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CHZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 295.55551512293476, - "delay_between_fills_minutes_entry": 1002.0724362858581, - "delay_weight_close": 73.78800502915193, - "delay_weight_entry": 24.81359432345707, - "ema_dist_close": 0.002998850173690219, - "ema_dist_entry": 0.0029900707906240606, - "ema_span_0": 1194.4860765135618, - "ema_span_1": 942.4918213402135, - "enabled": true, - "markup_range": 0.0033493832489665367, - "min_markup": 0.009208253734315927, - "n_close_orders": 7, - "qty_pct_close": 0.03999221172682513, - "qty_pct_entry": 0.01990931424299702, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.40730964531433}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 763.5675900024833, - "delay_between_fills_minutes_entry": 336.84996844680137, - "delay_weight_close": 4.172444629417019, - "delay_weight_entry": 27.8970181184327, - "ema_dist_close": 0.002012414010929426, - "ema_dist_entry": -0.003881516841071233, - "ema_span_0": 1372.6604059898161, - "ema_span_1": 5.161901919134253, - "enabled": true, - "markup_range": 0.004525559065348018, - "min_markup": 0.0035442968743519122, - "n_close_orders": 5, - "qty_pct_close": 0.010055680846827206, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.588144695321444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CKBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CKBUSDT.json deleted file mode 100644 index 12849e042..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CKBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1432.3751463936494, - "delay_between_fills_minutes_entry": 1179.0573323700694, - "delay_weight_close": 39.65215979564905, - "delay_weight_entry": 17.17083703562694, - "ema_dist_close": 0.0017579095656521597, - "ema_dist_entry": -0.005136440663016263, - "ema_span_0": 1163.233312792913, - "ema_span_1": 1310.8503944062077, - "enabled": true, - "markup_range": 0.007518172128085469, - "min_markup": 0.00560150313019402, - "n_close_orders": 3, - "qty_pct_close": 0.01002691999821848, - "qty_pct_entry": 0.014955548226043693, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.094464166028665}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1298.2297871512662, - "delay_between_fills_minutes_entry": 377.05477769624747, - "delay_weight_close": 61.14157995120993, - "delay_weight_entry": 8.180224600827172, - "ema_dist_close": 5.40640475632467e-05, - "ema_dist_entry": -0.0055269534443752565, - "ema_span_0": 604.5987474697541, - "ema_span_1": 1028.5756504548308, - "enabled": true, - "markup_range": 0.004817482134857801, - "min_markup": 0.00455451423672531, - "n_close_orders": 10, - "qty_pct_close": 0.015025374037486975, - "qty_pct_entry": 0.013452528823696137, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.14596574637798}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COCOSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COCOSUSDT.json deleted file mode 100644 index 5d35cc0f6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COCOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 948.5924235803632, - "delay_between_fills_minutes_entry": 445.94587967743337, - "delay_weight_close": 0, - "delay_weight_entry": 16.613111649909325, - "ema_dist_close": -0.002793376805631089, - "ema_dist_entry": -0.010619775516918327, - "ema_span_0": 128.11865291264792, - "ema_span_1": 1012.305368214816, - "enabled": true, - "markup_range": 0.0016971370730360946, - "min_markup": 0.005082771231042523, - "n_close_orders": 8, - "qty_pct_close": 0.027176105505702205, - "qty_pct_entry": 0.019631592394805254, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.120494434831706}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COMPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COMPUSDT.json deleted file mode 100644 index d17455be2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COMPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.2262431888462, - "delay_between_fills_minutes_entry": 1317.5525383423105, - "delay_weight_close": 41.96997114200665, - "delay_weight_entry": 13.990986073501633, - "ema_dist_close": -3.2646854827100055e-05, - "ema_dist_entry": -0.003537901848327819, - "ema_span_0": 1164.8868690123581, - "ema_span_1": 1334.9849965307153, - "enabled": true, - "markup_range": 0.052325307096883295, - "min_markup": 0.007300509941647997, - "n_close_orders": 8, - "qty_pct_close": 0.02525469509719511, - "qty_pct_entry": 0.010243386151770426, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.50963822991726}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1295.3762026814443, - "delay_between_fills_minutes_entry": 338.5940070475378, - "delay_weight_close": 62.161383818497605, - "delay_weight_entry": 4.708073933379449, - "ema_dist_close": 0.000909821481164888, - "ema_dist_entry": -0.018020345461454566, - "ema_span_0": 219.28481776639603, - "ema_span_1": 1227.1452418574115, - "enabled": true, - "markup_range": 0.004456106029257466, - "min_markup": 0.008250365264915701, - "n_close_orders": 5, - "qty_pct_close": 0.012014046099548866, - "qty_pct_entry": 0.013447244172674783, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.31252818099995}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COTIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COTIUSDT.json deleted file mode 100644 index b8498841b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/COTIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 767.2431798211225, - "delay_between_fills_minutes_entry": 1097.8039950831678, - "delay_weight_close": 63.19543206153389, - "delay_weight_entry": 26.37603793869552, - "ema_dist_close": -0.007363966994198183, - "ema_dist_entry": -0.04118934817566364, - "ema_span_0": 892.3209486627793, - "ema_span_1": 820.5883902314887, - "enabled": true, - "markup_range": 0.005170116289049919, - "min_markup": 0.006878259704812019, - "n_close_orders": 11, - "qty_pct_close": 0.01665977917729629, - "qty_pct_entry": 0.013350403138184565, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.845958919654024}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1319.1984079974193, - "delay_between_fills_minutes_entry": 554.8564065863864, - "delay_weight_close": 31.436013123671593, - "delay_weight_entry": 9.151928696707879, - "ema_dist_close": -0.0022723195548174594, - "ema_dist_entry": -0.014784774283140654, - "ema_span_0": 1315.9457712192254, - "ema_span_1": 1113.8011078907336, - "enabled": true, - "markup_range": 0.007736036992545538, - "min_markup": 0.006756230331388127, - "n_close_orders": 5, - "qty_pct_close": 0.010136034490330716, - "qty_pct_entry": 0.016987534366743558, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.43848851239692}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CRVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CRVUSDT.json deleted file mode 100644 index d348dc8d0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CRVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1035.2924184185647, - "delay_between_fills_minutes_entry": 582.0004217184328, - "delay_weight_close": 83.23596155844042, - "delay_weight_entry": 9.759850238401308, - "ema_dist_close": -0.002818944674547782, - "ema_dist_entry": 0.001255924543661554, - "ema_span_0": 499.08424464768717, - "ema_span_1": 1104.2556512756635, - "enabled": true, - "markup_range": 0.059935082933232686, - "min_markup": 0.00858883881771699, - "n_close_orders": 8, - "qty_pct_close": 0.022455883672761152, - "qty_pct_entry": 0.010006026992331319, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.893883619036977}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1043.1711221934904, - "delay_between_fills_minutes_entry": 323.72868331972535, - "delay_weight_close": 5.011123030504996, - "delay_weight_entry": 20.493133205253596, - "ema_dist_close": 0.0023532544226373487, - "ema_dist_entry": -0.009755119818935705, - "ema_span_0": 413.22603443513816, - "ema_span_1": 704.4061975204937, - "enabled": true, - "markup_range": 0.009809276645143479, - "min_markup": 0.0024237593150533967, - "n_close_orders": 4, - "qty_pct_close": 0.026235368292128254, - "qty_pct_entry": 0.010247688109919733, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.887513270974786}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CTKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CTKUSDT.json deleted file mode 100644 index a9cf77db5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CTKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.1425690213243, - "delay_between_fills_minutes_entry": 658.50979936037, - "delay_weight_close": 7.0532309908738675, - "delay_weight_entry": 30.55950840576524, - "ema_dist_close": -0.0017001688943576625, - "ema_dist_entry": 0.001608539733110025, - "ema_span_0": 42.35357966909958, - "ema_span_1": 50.658010989717226, - "enabled": true, - "markup_range": 0.0030274385300191426, - "min_markup": 0.008092190468061453, - "n_close_orders": 13, - "qty_pct_close": 0.015325521349766972, - "qty_pct_entry": 0.014001119744455118, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.90078921683138}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1009.3382270165372, - "delay_between_fills_minutes_entry": 322.35648723202723, - "delay_weight_close": 40.05049924354007, - "delay_weight_entry": 4.456059248390996, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.012121313480350952, - "ema_span_0": 1418.8849738016293, - "ema_span_1": 1386.7475794570228, - "enabled": true, - "markup_range": 0.00842884369609768, - "min_markup": 0.006294521243422046, - "n_close_orders": 6, - "qty_pct_close": 0.011246010135511422, - "qty_pct_entry": 0.014008708630596854, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.286335693369303}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CTSIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CTSIUSDT.json deleted file mode 100644 index f2d14908c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CTSIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1320.7476068871354, - "delay_between_fills_minutes_entry": 1347.9135376729748, - "delay_weight_close": 92.42055650788045, - "delay_weight_entry": 19.95229864616334, - "ema_dist_close": 0.0027194335307167646, - "ema_dist_entry": 0.0029997763847689784, - "ema_span_0": 7.004377248467877, - "ema_span_1": 1389.2389970202423, - "enabled": true, - "markup_range": 0.057462502745574504, - "min_markup": 0.009121999609202952, - "n_close_orders": 14, - "qty_pct_close": 0.032006245460253935, - "qty_pct_entry": 0.010667358381332209, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.348670174968811}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.295287539748, - "delay_between_fills_minutes_entry": 1047.2353291667882, - "delay_weight_close": 39.28896919919422, - "delay_weight_entry": 3.3334507658908543, - "ema_dist_close": 0.002678510609963926, - "ema_dist_entry": 0.0019159766341221923, - "ema_span_0": 1226.049433092329, - "ema_span_1": 1407.84421615113, - "enabled": true, - "markup_range": 0.011231363589640603, - "min_markup": 0.005970324378700582, - "n_close_orders": 7, - "qty_pct_close": 0.01000141758231588, - "qty_pct_entry": 0.021110660168367792, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.70956291569769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CVCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CVCUSDT.json deleted file mode 100644 index 1c58316db..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CVCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.5431969942304, - "delay_between_fills_minutes_entry": 1217.1391029972751, - "delay_weight_close": 8.477181480806856, - "delay_weight_entry": 11.527570779628244, - "ema_dist_close": 0.002124893361257764, - "ema_dist_entry": -0.0015777540854004961, - "ema_span_0": 1244.6029575219204, - "ema_span_1": 1265.1119573009812, - "enabled": true, - "markup_range": 0.059985041554948736, - "min_markup": 0.009824003828726547, - "n_close_orders": 3, - "qty_pct_close": 0.04603572948499628, - "qty_pct_entry": 0.010000015174658898, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.601152897378817}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.295287539748, - "delay_between_fills_minutes_entry": 1047.2353291667882, - "delay_weight_close": 39.28896919919422, - "delay_weight_entry": 3.3334507658908543, - "ema_dist_close": 0.002678510609963926, - "ema_dist_entry": 0.0019159766341221923, - "ema_span_0": 1226.049433092329, - "ema_span_1": 1407.84421615113, - "enabled": true, - "markup_range": 0.011231363589640603, - "min_markup": 0.005970324378700582, - "n_close_orders": 7, - "qty_pct_close": 0.01000141758231588, - "qty_pct_entry": 0.021110660168367792, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.70956291569769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CVXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CVXUSDT.json deleted file mode 100644 index 37b6732ad..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/CVXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 966.08648156454, - "delay_between_fills_minutes_entry": 796.1958189363064, - "delay_weight_close": 56.824415487506705, - "delay_weight_entry": 12.428140462446702, - "ema_dist_close": 0.0015968384633986642, - "ema_dist_entry": -0.0021447231506189534, - "ema_span_0": 1189.5564785093122, - "ema_span_1": 390.535153153525, - "enabled": true, - "markup_range": 0.05930386650166151, - "min_markup": 0.009369095800849124, - "n_close_orders": 7, - "qty_pct_close": 0.011705583989109427, - "qty_pct_entry": 0.010000007070349128, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.80256284880463}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1264.622930699407, - "delay_between_fills_minutes_entry": 1078.4281163996686, - "delay_weight_close": 3.1457517693696864, - "delay_weight_entry": 6.63644358840581, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.005963092428779616, - "ema_span_0": 1409.3372302864097, - "ema_span_1": 1372.0383779465153, - "enabled": true, - "markup_range": 0.011291196052797919, - "min_markup": 0.009071306352471595, - "n_close_orders": 13, - "qty_pct_close": 0.010679637207530061, - "qty_pct_entry": 0.01701576364122997, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.91049619064152}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DARUSDT.json deleted file mode 100644 index 1a97ab22f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.2798097626264, - "delay_between_fills_minutes_entry": 1099.0053381747416, - "delay_weight_close": 13.226221412387021, - "delay_weight_entry": 26.40594905488671, - "ema_dist_close": -0.0038524493339151273, - "ema_dist_entry": 0.002172870650925028, - "ema_span_0": 132.028447833531, - "ema_span_1": 316.73249819472977, - "enabled": true, - "markup_range": 0.005030180498700875, - "min_markup": 0.004176474987184056, - "n_close_orders": 3, - "qty_pct_close": 0.01550170830279334, - "qty_pct_entry": 0.016004554071441482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.7847910142078}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 887.2037241884478, - "delay_between_fills_minutes_entry": 362.72482162555207, - "delay_weight_close": 24.901090566032515, - "delay_weight_entry": 1.8212944666005397, - "ema_dist_close": 0.0016358398223849106, - "ema_dist_entry": -0.012110099800361434, - "ema_span_0": 824.5664075440658, - "ema_span_1": 933.184624103443, - "enabled": true, - "markup_range": 0.0018287846958959242, - "min_markup": 0.008129552545040117, - "n_close_orders": 10, - "qty_pct_close": 0.01255017842835807, - "qty_pct_entry": 0.014047446701507671, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.14469049774663}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DASHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DASHUSDT.json deleted file mode 100644 index f2fb0164a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DASHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 656.6451438497613, - "delay_between_fills_minutes_entry": 1182.6784336883675, - "delay_weight_close": 22.737866881001185, - "delay_weight_entry": 12.907013340207968, - "ema_dist_close": -0.005094137038280318, - "ema_dist_entry": -0.0019822164775364507, - "ema_span_0": 1004.7781648531026, - "ema_span_1": 1125.8197622962653, - "enabled": true, - "markup_range": 0.03393494381008144, - "min_markup": 0.009446578234594187, - "n_close_orders": 6, - "qty_pct_close": 0.010005631736168948, - "qty_pct_entry": 0.011458314870681798, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.05856953201555}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1361.31935882045, - "delay_between_fills_minutes_entry": 727.7648058007296, - "delay_weight_close": 84.18786850807581, - "delay_weight_entry": 6.232580222061173, - "ema_dist_close": -0.000810011841675314, - "ema_dist_entry": -0.0008521992926288423, - "ema_span_0": 723.2266394885947, - "ema_span_1": 40.046580207887125, - "enabled": true, - "markup_range": 0.04440345780719436, - "min_markup": 0.0064006743155898835, - "n_close_orders": 9, - "qty_pct_close": 0.01495723555989348, - "qty_pct_entry": 0.01493063292485232, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.984120685788945}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DEFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DEFIUSDT.json deleted file mode 100644 index cd5d9f3c1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DEFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1177.5513826611868, - "delay_between_fills_minutes_entry": 1024.7028283306208, - "delay_weight_close": 19.02704034681668, - "delay_weight_entry": 10.70930401722477, - "ema_dist_close": 0.0029591766972268097, - "ema_dist_entry": -0.0018576721614017107, - "ema_span_0": 702.1649464841075, - "ema_span_1": 1437.5445628951709, - "enabled": true, - "markup_range": 0.05982933262087699, - "min_markup": 0.009027881486111878, - "n_close_orders": 9, - "qty_pct_close": 0.0399203214881589, - "qty_pct_entry": 0.010335422918656858, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.38967706143859}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.0848576729929, - "delay_between_fills_minutes_entry": 239.17513247725657, - "delay_weight_close": 1.0585433165932296, - "delay_weight_entry": 15.701756960939994, - "ema_dist_close": 0.0016768443296472256, - "ema_dist_entry": 0.0019883577707560034, - "ema_span_0": 1123.1088331257201, - "ema_span_1": 848.55623358652, - "enabled": true, - "markup_range": 0.0030477229422319865, - "min_markup": 0.002129235855412888, - "n_close_orders": 6, - "qty_pct_close": 0.02458667390083907, - "qty_pct_entry": 0.01077738268024867, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.237575293267106}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DENTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DENTUSDT.json deleted file mode 100644 index f9fbc2bbc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DENTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 839.0234623702136, - "delay_between_fills_minutes_entry": 644.3975556503594, - "delay_weight_close": 58.48982300146601, - "delay_weight_entry": 7.662185811767354, - "ema_dist_close": 0.00025571274012357474, - "ema_dist_entry": 0.002557609735255379, - "ema_span_0": 1273.3193628710683, - "ema_span_1": 814.7342780032799, - "enabled": true, - "markup_range": 0.053897238148938674, - "min_markup": 0.006472940222926501, - "n_close_orders": 11, - "qty_pct_close": 0.014644525854774963, - "qty_pct_entry": 0.010000187557400083, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.48939217684821}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1009.3382270165372, - "delay_between_fills_minutes_entry": 322.35648723202723, - "delay_weight_close": 40.05049924354007, - "delay_weight_entry": 4.456059248390996, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.012121313480350952, - "ema_span_0": 1418.8849738016293, - "ema_span_1": 1386.7475794570228, - "enabled": true, - "markup_range": 0.00842884369609768, - "min_markup": 0.006294521243422046, - "n_close_orders": 6, - "qty_pct_close": 0.011246010135511422, - "qty_pct_entry": 0.014008708630596854, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.286335693369303}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DGBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DGBUSDT.json deleted file mode 100644 index 5e61abf56..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DGBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.4429205737542, - "delay_between_fills_minutes_entry": 1345.3675628822427, - "delay_weight_close": 64.60184521639349, - "delay_weight_entry": 12.204087943002815, - "ema_dist_close": -0.004810660317730696, - "ema_dist_entry": 0.0029195137862580724, - "ema_span_0": 1150.7586832226953, - "ema_span_1": 1422.6048754589658, - "enabled": true, - "markup_range": 0.04088218740466626, - "min_markup": 0.008484854767347982, - "n_close_orders": 8, - "qty_pct_close": 0.01178290011936797, - "qty_pct_entry": 0.02112233710916093, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.199918948348532}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.3881210763511, - "delay_between_fills_minutes_entry": 352.45474715901514, - "delay_weight_close": 85.03817661398071, - "delay_weight_entry": 19.423073700419977, - "ema_dist_close": -0.0007798639521395649, - "ema_dist_entry": -0.004133161309095261, - "ema_span_0": 1306.651759270631, - "ema_span_1": 1324.1718771182077, - "enabled": true, - "markup_range": 0.005775911057971646, - "min_markup": 0.004835167017052978, - "n_close_orders": 11, - "qty_pct_close": 0.014714857516012774, - "qty_pct_entry": 0.01776221343792634, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.321792356677527}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DOGEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DOGEUSDT.json deleted file mode 100644 index e00ffa1b7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DOGEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 779.6536453291249, - "delay_between_fills_minutes_entry": 1214.798732179154, - "delay_weight_close": 28.14781741347243, - "delay_weight_entry": 16.16470641363938, - "ema_dist_close": -0.0032429746111499957, - "ema_dist_entry": -0.006282852707930733, - "ema_span_0": 1222.8727708274653, - "ema_span_1": 1303.9427372273854, - "enabled": true, - "markup_range": 0.059185801107474845, - "min_markup": 0.008944422760875825, - "n_close_orders": 9, - "qty_pct_close": 0.016598324712223573, - "qty_pct_entry": 0.010035975591842971, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.50122992716007}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.295287539748, - "delay_between_fills_minutes_entry": 1047.2353291667882, - "delay_weight_close": 39.28896919919422, - "delay_weight_entry": 3.3334507658908543, - "ema_dist_close": 0.002678510609963926, - "ema_dist_entry": 0.0019159766341221923, - "ema_span_0": 1226.049433092329, - "ema_span_1": 1407.84421615113, - "enabled": true, - "markup_range": 0.011231363589640603, - "min_markup": 0.005970324378700582, - "n_close_orders": 7, - "qty_pct_close": 0.01000141758231588, - "qty_pct_entry": 0.021110660168367792, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.70956291569769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DOTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DOTUSDT.json deleted file mode 100644 index e57b14cee..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1099.9648319637497, - "delay_between_fills_minutes_entry": 1374.326218634481, - "delay_weight_close": 81.50489901391536, - "delay_weight_entry": 24.792727101445617, - "ema_dist_close": 0.0023531701560257075, - "ema_dist_entry": 0.0003434021370464854, - "ema_span_0": 1382.8702762771345, - "ema_span_1": 993.6401100462532, - "enabled": true, - "markup_range": 0.003099239389890971, - "min_markup": 0.007278194938024335, - "n_close_orders": 3, - "qty_pct_close": 0.010071415328201118, - "qty_pct_entry": 0.023395321375828483, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.711556570254764}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1216.3472762287788, - "delay_between_fills_minutes_entry": 477.68103145635314, - "delay_weight_close": 88.06441633285678, - "delay_weight_entry": 19.532231101840797, - "ema_dist_close": -0.0044207255379547315, - "ema_dist_entry": -0.03473519804995916, - "ema_span_0": 358.35525202848464, - "ema_span_1": 995.8579752841731, - "enabled": true, - "markup_range": 0.0032224569909968894, - "min_markup": 0.0022862532651185983, - "n_close_orders": 12, - "qty_pct_close": 0.010023869869803092, - "qty_pct_entry": 0.020776981463996463, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.97434940203671}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DUSKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DUSKUSDT.json deleted file mode 100644 index f409a5d26..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DUSKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1287.701703160353, - "delay_between_fills_minutes_entry": 883.762638728487, - "delay_weight_close": 0.668855076016934, - "delay_weight_entry": 13.163755924446333, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.0017511693475836415, - "ema_span_0": 1188.3258905974624, - "ema_span_1": 1130.6903976299232, - "enabled": true, - "markup_range": 0.00834288765237012, - "min_markup": 0.006167188946346326, - "n_close_orders": 5, - "qty_pct_close": 0.012541797345502035, - "qty_pct_entry": 0.01000000016941661, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.25550740209819}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 900.1436240848946, - "delay_between_fills_minutes_entry": 223.36252713597216, - "delay_weight_close": 47.01588688085706, - "delay_weight_entry": 7.668027403995091, - "ema_dist_close": 0.0018177354934588346, - "ema_dist_entry": -0.004400821313674264, - "ema_span_0": 189.23419442828342, - "ema_span_1": 151.4848831873592, - "enabled": true, - "markup_range": 0.005841539519247124, - "min_markup": 0.004620616494869278, - "n_close_orders": 14, - "qty_pct_close": 0.01132656658390609, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.1575952210247}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DYDXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DYDXUSDT.json deleted file mode 100644 index 2f36b41f5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/DYDXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.330711456547, - "delay_between_fills_minutes_entry": 1205.461514879456, - "delay_weight_close": 50.393562227474185, - "delay_weight_entry": 5.746696339402074, - "ema_dist_close": 0.0028249499040441956, - "ema_dist_entry": -0.005727574793557369, - "ema_span_0": 311.5731620319031, - "ema_span_1": 1363.209180445593, - "enabled": true, - "markup_range": 0.05898294252241398, - "min_markup": 0.00900393943145341, - "n_close_orders": 7, - "qty_pct_close": 0.010573273457660879, - "qty_pct_entry": 0.013286194391958047, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.16482557395951}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1434.382197612385, - "delay_between_fills_minutes_entry": 1058.8226258016152, - "delay_weight_close": 26.150715104596888, - "delay_weight_entry": 7.771674216740747, - "ema_dist_close": -0.000921900785159845, - "ema_dist_entry": -0.002098291779603902, - "ema_span_0": 1236.5634678686156, - "ema_span_1": 759.2234521220845, - "enabled": true, - "markup_range": 0.04553579879858237, - "min_markup": 0.006683185911702167, - "n_close_orders": 3, - "qty_pct_close": 0.023740512727779887, - "qty_pct_entry": 0.010013632863767472, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.034668778859746}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EDUUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EDUUSDT.json deleted file mode 100644 index 011196ae3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EDUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1415.1416788230397, - "delay_between_fills_minutes_entry": 938.5237150965296, - "delay_weight_close": 65.45859145747079, - "delay_weight_entry": 23.501147308796845, - "ema_dist_close": 0.002294784545222292, - "ema_dist_entry": -0.01726675673804264, - "ema_span_0": 1116.6335356072052, - "ema_span_1": 432.3359477149649, - "enabled": true, - "markup_range": 0.005496920265647614, - "min_markup": 0.001949399966416289, - "n_close_orders": 14, - "qty_pct_close": 0.01009248566703848, - "qty_pct_entry": 0.012621898312096154, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.9665879449563}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EGLDUSDT.json deleted file mode 100644 index b7f55a38e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.381970537184, - "delay_between_fills_minutes_entry": 619.838749313212, - "delay_weight_close": 0.0019053535889719303, - "delay_weight_entry": 23.331427570890845, - "ema_dist_close": 0.002160595355686519, - "ema_dist_entry": -0.004903165511764008, - "ema_span_0": 1221.7457582422776, - "ema_span_1": 957.7869057433232, - "enabled": true, - "markup_range": 5.416337042649924e-07, - "min_markup": 0.004991797819770077, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01967214333802023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99997150162021}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1150.5384090225166, - "delay_between_fills_minutes_entry": 116.97291410441771, - "delay_weight_close": 94.05606145987308, - "delay_weight_entry": 24.16945188617289, - "ema_dist_close": -0.0006568820758926325, - "ema_dist_entry": -0.006320174989704987, - "ema_span_0": 214.61135352410417, - "ema_span_1": 885.547258108434, - "enabled": true, - "markup_range": 0.0024962654025755203, - "min_markup": 0.0010190907709376894, - "n_close_orders": 5, - "qty_pct_close": 0.01043404383108705, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.84311186531168}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ENJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ENJUSDT.json deleted file mode 100644 index f6651a5c8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ENJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1392.2061995564304, - "delay_between_fills_minutes_entry": 1041.2611702973404, - "delay_weight_close": 48.18687175829205, - "delay_weight_entry": 8.644744280797752, - "ema_dist_close": -0.005522005067512301, - "ema_dist_entry": -0.00476931767417189, - "ema_span_0": 706.1201713034343, - "ema_span_1": 1044.85382037004, - "enabled": true, - "markup_range": 0.01992073578483839, - "min_markup": 0.008409008847630394, - "n_close_orders": 14, - "qty_pct_close": 0.013451996065515164, - "qty_pct_entry": 0.014438374980627043, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.729909964237876}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1236.5643020264738, - "delay_between_fills_minutes_entry": 325.08866370841594, - "delay_weight_close": 15.26684601222481, - "delay_weight_entry": 14.774424250099583, - "ema_dist_close": 0.0016273597770122496, - "ema_dist_entry": -0.009175335000770555, - "ema_span_0": 957.4637138089851, - "ema_span_1": 1048.7545995567878, - "enabled": true, - "markup_range": 0.010456784912564653, - "min_markup": 0.0076137137282928005, - "n_close_orders": 7, - "qty_pct_close": 0.03566719979087612, - "qty_pct_entry": 0.01258568346800395, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 15.48857469793112}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ENSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ENSUSDT.json deleted file mode 100644 index 8a6c5777b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ENSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1287.701703160353, - "delay_between_fills_minutes_entry": 883.762638728487, - "delay_weight_close": 0.668855076016934, - "delay_weight_entry": 13.163755924446333, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.0017511693475836415, - "ema_span_0": 1188.3258905974624, - "ema_span_1": 1130.6903976299232, - "enabled": true, - "markup_range": 0.00834288765237012, - "min_markup": 0.006167188946346326, - "n_close_orders": 5, - "qty_pct_close": 0.012541797345502035, - "qty_pct_entry": 0.01000000016941661, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.25550740209819}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.2871388655751, - "delay_between_fills_minutes_entry": 271.4662179059983, - "delay_weight_close": 76.98216565686008, - "delay_weight_entry": 8.939715626689782, - "ema_dist_close": -0.006080600507463103, - "ema_dist_entry": -0.0003158451525181873, - "ema_span_0": 1395.5265154079043, - "ema_span_1": 1416.0129707967699, - "enabled": true, - "markup_range": 0.04321151987008324, - "min_markup": 0.009322248258125871, - "n_close_orders": 16, - "qty_pct_close": 0.03396657329770534, - "qty_pct_entry": 0.011070104192630166, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.38159650883701}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EOSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EOSUSDT.json deleted file mode 100644 index 7ae7c736a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/EOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1341.05120462425, - "delay_between_fills_minutes_entry": 1083.4045623421043, - "delay_weight_close": 51.55571764167006, - "delay_weight_entry": 20.305019518474708, - "ema_dist_close": 0.0025501033424056596, - "ema_dist_entry": -0.010093841097552056, - "ema_span_0": 1365.0333262854585, - "ema_span_1": 849.9228667649454, - "enabled": true, - "markup_range": 0.04769926417577563, - "min_markup": 0.005619941089449408, - "n_close_orders": 5, - "qty_pct_close": 0.023400794180661197, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.120460924637953}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 540.6150287447124, - "delay_between_fills_minutes_entry": 144.40897742043836, - "delay_weight_close": 0, - "delay_weight_entry": 7.395889121023345, - "ema_dist_close": 0.0016715506452459083, - "ema_dist_entry": -0.002173138191889617, - "ema_span_0": 981.5200794470268, - "ema_span_1": 458.7474913097563, - "enabled": true, - "markup_range": 0.00584972295801945, - "min_markup": 0.004663041508870229, - "n_close_orders": 2, - "qty_pct_close": 0.010004395791205723, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.775917400477473}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ETCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ETCUSDT.json deleted file mode 100644 index 221eaf00f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ETCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1177.3636986138038, - "delay_between_fills_minutes_entry": 1311.9765607215738, - "delay_weight_close": 99.56621327792872, - "delay_weight_entry": 11.64275307523469, - "ema_dist_close": -0.002378760751288697, - "ema_dist_entry": 0.0019447857448238164, - "ema_span_0": 1251.294504668388, - "ema_span_1": 1269.6657763416583, - "enabled": true, - "markup_range": 0.05580472455611313, - "min_markup": 0.007062959135677833, - "n_close_orders": 11, - "qty_pct_close": 0.01640319165993065, - "qty_pct_entry": 0.019728089610219993, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.16183016361194}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1363.732160564072, - "delay_between_fills_minutes_entry": 878.6270948450631, - "delay_weight_close": 52.185682809312425, - "delay_weight_entry": 26.237261188962684, - "ema_dist_close": 0.001964740882301477, - "ema_dist_entry": -0.03672838441035036, - "ema_span_0": 1187.1519687376892, - "ema_span_1": 1240.5031257780765, - "enabled": true, - "markup_range": 0.0008117692944082136, - "min_markup": 0.0036820127436975976, - "n_close_orders": 7, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.011371609117173708, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.150165830975524}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ETHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ETHUSDT.json deleted file mode 100644 index 2292de14c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ETHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1045.9151674374539, - "delay_between_fills_minutes_entry": 1281.0346618834033, - "delay_weight_close": 21.189615506283527, - "delay_weight_entry": 13.943446987788322, - "ema_dist_close": 0.0028664575862303106, - "ema_dist_entry": -0.003925228047579549, - "ema_span_0": 1301.692750240556, - "ema_span_1": 1130.5115186853711, - "enabled": true, - "markup_range": 0.024478686812514184, - "min_markup": 0.009996994601503028, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.013123028616399872, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.973051158987566}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.0848576729929, - "delay_between_fills_minutes_entry": 239.17513247725657, - "delay_weight_close": 1.0585433165932296, - "delay_weight_entry": 15.701756960939994, - "ema_dist_close": 0.0016768443296472256, - "ema_dist_entry": 0.0019883577707560034, - "ema_span_0": 1123.1088331257201, - "ema_span_1": 848.55623358652, - "enabled": true, - "markup_range": 0.0030477229422319865, - "min_markup": 0.002129235855412888, - "n_close_orders": 6, - "qty_pct_close": 0.02458667390083907, - "qty_pct_entry": 0.01077738268024867, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.237575293267106}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FETUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FETUSDT.json deleted file mode 100644 index 4f26ec812..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 966.08648156454, - "delay_between_fills_minutes_entry": 796.1958189363064, - "delay_weight_close": 56.824415487506705, - "delay_weight_entry": 12.428140462446702, - "ema_dist_close": 0.0015968384633986642, - "ema_dist_entry": -0.0021447231506189534, - "ema_span_0": 1189.5564785093122, - "ema_span_1": 390.535153153525, - "enabled": true, - "markup_range": 0.05930386650166151, - "min_markup": 0.009369095800849124, - "n_close_orders": 7, - "qty_pct_close": 0.011705583989109427, - "qty_pct_entry": 0.010000007070349128, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.80256284880463}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1301.303019330151, - "delay_between_fills_minutes_entry": 479.69921896126925, - "delay_weight_close": 55.542485173894526, - "delay_weight_entry": 10.455778328348831, - "ema_dist_close": -0.0055593658228460735, - "ema_dist_entry": -0.004957492501179772, - "ema_span_0": 962.8439764717685, - "ema_span_1": 220.56918538852037, - "enabled": true, - "markup_range": 0.008148360129222623, - "min_markup": 0.009574226602672445, - "n_close_orders": 16, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.014892672876347674, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.459793031921954}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FILUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FILUSDT.json deleted file mode 100644 index ba1a61914..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 700.5231790296986, - "delay_between_fills_minutes_entry": 1100.071032075978, - "delay_weight_close": 72.6935281551852, - "delay_weight_entry": 5.557275374745883, - "ema_dist_close": 0.0004736128700437627, - "ema_dist_entry": 0.0019234093943935882, - "ema_span_0": 753.185744201469, - "ema_span_1": 1374.2636017507714, - "enabled": true, - "markup_range": 0.058969706298808273, - "min_markup": 0.00999353937015404, - "n_close_orders": 15, - "qty_pct_close": 0.015748568410560274, - "qty_pct_entry": 0.020024548727118795, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.72802181520469}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1092.7933986121764, - "delay_between_fills_minutes_entry": 401.42858709105656, - "delay_weight_close": 98.12108475064394, - "delay_weight_entry": 1.6704164299010074, - "ema_dist_close": 0.002882062045779017, - "ema_dist_entry": -0.0022292488956759428, - "ema_span_0": 488.7827380993889, - "ema_span_1": 1342.3278034873897, - "enabled": true, - "markup_range": 0.008564586703618841, - "min_markup": 0.007957175263396137, - "n_close_orders": 2, - "qty_pct_close": 0.010040493363755936, - "qty_pct_entry": 0.018692394307530693, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.51263427220036}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FLMUSDT.json deleted file mode 100644 index a300d7dd0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.6791399877998, - "delay_between_fills_minutes_entry": 1398.4769345514082, - "delay_weight_close": 41.251850895702354, - "delay_weight_entry": 16.258801022715733, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.017696342262971135, - "ema_span_0": 653.7848233489076, - "ema_span_1": 1221.546102154294, - "enabled": true, - "markup_range": 0.01355832558417194, - "min_markup": 0.007091222215079185, - "n_close_orders": 14, - "qty_pct_close": 0.01564862874544805, - "qty_pct_entry": 0.013407053266753082, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.83514311318651}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FLOWUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FLOWUSDT.json deleted file mode 100644 index 35e897d41..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FLOWUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.8783282364853, - "delay_between_fills_minutes_entry": 1356.3122129115925, - "delay_weight_close": 98.88522291288257, - "delay_weight_entry": 15.553155211456204, - "ema_dist_close": -0.009732925906375011, - "ema_dist_entry": 0.0009699458756196528, - "ema_span_0": 779.2455770473497, - "ema_span_1": 1171.5327660203245, - "enabled": true, - "markup_range": 0.03364713965002472, - "min_markup": 0.007213230196896175, - "n_close_orders": 10, - "qty_pct_close": 0.019217157511579448, - "qty_pct_entry": 0.010296292114413306, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.222704445038595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.8663225398805, - "delay_between_fills_minutes_entry": 699.2552274465102, - "delay_weight_close": 55.70129807181973, - "delay_weight_entry": 2.9638738258643085, - "ema_dist_close": 0.0009776099269683497, - "ema_dist_entry": -0.009591842011187297, - "ema_span_0": 1385.7780411548738, - "ema_span_1": 120.02851628778701, - "enabled": true, - "markup_range": 0.0076406832269945955, - "min_markup": 0.009975180521982567, - "n_close_orders": 8, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01294531967484724, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.35160553976573}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FOOTBALLUSDT.json deleted file mode 100644 index 90555ec8e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FOOTBALLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1137.3194055699828, - "delay_between_fills_minutes_entry": 1088.7528826652488, - "delay_weight_close": 88.30469365373482, - "delay_weight_entry": 14.951490633355576, - "ema_dist_close": -0.004707694475614976, - "ema_dist_entry": 0.002956100229462928, - "ema_span_0": 983.7211644420803, - "ema_span_1": 1288.9795232975994, - "enabled": true, - "markup_range": 0.05999186882805523, - "min_markup": 0.009122532297901753, - "n_close_orders": 13, - "qty_pct_close": 0.010225849253167954, - "qty_pct_entry": 0.011820324010258421, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.7178761688875}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 434.17532456020155, - "delay_between_fills_minutes_entry": 844.8390080874593, - "delay_weight_close": 6.54766048824612, - "delay_weight_entry": 19.60708372614642, - "ema_dist_close": 0.0006122537030016851, - "ema_dist_entry": 0.0021590591445903797, - "ema_span_0": 527.7604142026237, - "ema_span_1": 1231.201378790551, - "enabled": true, - "markup_range": 0.04217838676013018, - "min_markup": 0.009428548140937514, - "n_close_orders": 12, - "qty_pct_close": 0.023917246131970306, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.785114908743076}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FTMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FTMUSDT.json deleted file mode 100644 index 5cee5ff93..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FTMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.0978050847716, - "delay_between_fills_minutes_entry": 755.7313259911456, - "delay_weight_close": 53.628763124370934, - "delay_weight_entry": 23.219106869177025, - "ema_dist_close": 0.0008526529616083957, - "ema_dist_entry": -0.0047594564383549075, - "ema_span_0": 426.3205270842463, - "ema_span_1": 1331.1869268397277, - "enabled": true, - "markup_range": 0.003912268394069244, - "min_markup": 0.006574251730168243, - "n_close_orders": 10, - "qty_pct_close": 0.04111285668223118, - "qty_pct_entry": 0.017453916733711754, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.39624105682696}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1298.2297871512662, - "delay_between_fills_minutes_entry": 377.05477769624747, - "delay_weight_close": 61.14157995120993, - "delay_weight_entry": 8.180224600827172, - "ema_dist_close": 5.40640475632467e-05, - "ema_dist_entry": -0.0055269534443752565, - "ema_span_0": 604.5987474697541, - "ema_span_1": 1028.5756504548308, - "enabled": true, - "markup_range": 0.004817482134857801, - "min_markup": 0.00455451423672531, - "n_close_orders": 10, - "qty_pct_close": 0.015025374037486975, - "qty_pct_entry": 0.013452528823696137, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.14596574637798}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FTTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FTTUSDT.json deleted file mode 100644 index 2f52ec268..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FTTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1264.2899220669867, - "delay_between_fills_minutes_entry": 720.0147764905921, - "delay_weight_close": 98.3425658881456, - "delay_weight_entry": 11.473510181825839, - "ema_dist_close": 0.00032141033395131956, - "ema_dist_entry": -0.006851733516050179, - "ema_span_0": 350.87964321744, - "ema_span_1": 1156.6514055599885, - "enabled": true, - "markup_range": 0.050203127759222616, - "min_markup": 0.009594450494405986, - "n_close_orders": 10, - "qty_pct_close": 0.012978439346462428, - "qty_pct_entry": 0.011547181316530116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.68916371056841}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1295.3762026814443, - "delay_between_fills_minutes_entry": 338.5940070475378, - "delay_weight_close": 62.161383818497605, - "delay_weight_entry": 4.708073933379449, - "ema_dist_close": 0.000909821481164888, - "ema_dist_entry": -0.018020345461454566, - "ema_span_0": 219.28481776639603, - "ema_span_1": 1227.1452418574115, - "enabled": true, - "markup_range": 0.004456106029257466, - "min_markup": 0.008250365264915701, - "n_close_orders": 5, - "qty_pct_close": 0.012014046099548866, - "qty_pct_entry": 0.013447244172674783, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.31252818099995}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FXSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FXSUSDT.json deleted file mode 100644 index 068ad0d34..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/FXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1424.4959646739208, - "delay_between_fills_minutes_entry": 1191.605519671973, - "delay_weight_close": 48.30330159483098, - "delay_weight_entry": 83.95469524309073, - "ema_dist_close": -0.00020705520004804585, - "ema_dist_entry": 0.0013601492374067145, - "ema_span_0": 1214.246811941979, - "ema_span_1": 35.40457309412571, - "enabled": true, - "markup_range": 0.0034544457543534005, - "min_markup": 0.002266194748058137, - "n_close_orders": 4, - "qty_pct_close": 0.04807974563086494, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.305376910913427}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.4359907413568, - "delay_between_fills_minutes_entry": 813.0902320499961, - "delay_weight_close": 73.35620410622826, - "delay_weight_entry": 8.477940256538888, - "ema_dist_close": -0.0011229109882759686, - "ema_dist_entry": -0.012547512225421376, - "ema_span_0": 594.8308980304884, - "ema_span_1": 1228.019467166765, - "enabled": true, - "markup_range": 0.006672412052603252, - "min_markup": 0.0074755754871653705, - "n_close_orders": 15, - "qty_pct_close": 0.011331530360969098, - "qty_pct_entry": 0.019691293145196423, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.33344370781945}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GALAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GALAUSDT.json deleted file mode 100644 index efffdc02a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GALAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1088.583416750614, - "delay_between_fills_minutes_entry": 792.4507659725243, - "delay_weight_close": 65.42238389799536, - "delay_weight_entry": 12.830346867656306, - "ema_dist_close": -0.002119624854989983, - "ema_dist_entry": 0.0015544721047252806, - "ema_span_0": 1265.2522213657214, - "ema_span_1": 1335.0483095828058, - "enabled": true, - "markup_range": 0.055356487943297776, - "min_markup": 0.006326758630168559, - "n_close_orders": 2, - "qty_pct_close": 0.01490044281158096, - "qty_pct_entry": 0.010079717350843617, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.810447565742179}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9985429335813, - "delay_between_fills_minutes_entry": 443.28494824363173, - "delay_weight_close": 0.16359912229089063, - "delay_weight_entry": 13.240581743985038, - "ema_dist_close": 0.0029757836023346887, - "ema_dist_entry": 0.002999524430504396, - "ema_span_0": 819.930804907152, - "ema_span_1": 795.993672876129, - "enabled": true, - "markup_range": 0.0017534590868530306, - "min_markup": 0.002575212146290758, - "n_close_orders": 4, - "qty_pct_close": 0.010010983642258086, - "qty_pct_entry": 0.010978277873816018, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.262083355049924}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GALUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GALUSDT.json deleted file mode 100644 index c04047430..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 670.6455096802099, - "delay_between_fills_minutes_entry": 1257.9336804598204, - "delay_weight_close": 30.291468299427745, - "delay_weight_entry": 19.084684692603158, - "ema_dist_close": 0.002970962052969961, - "ema_dist_entry": 0.0014053453050027326, - "ema_span_0": 1421.1175890148627, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.02548661705907167, - "min_markup": 0.009582457394692484, - "n_close_orders": 8, - "qty_pct_close": 0.030675148381381433, - "qty_pct_entry": 0.01000039838721209, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.76033814688205}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.2871388655751, - "delay_between_fills_minutes_entry": 271.4662179059983, - "delay_weight_close": 76.98216565686008, - "delay_weight_entry": 8.939715626689782, - "ema_dist_close": -0.006080600507463103, - "ema_dist_entry": -0.0003158451525181873, - "ema_span_0": 1395.5265154079043, - "ema_span_1": 1416.0129707967699, - "enabled": true, - "markup_range": 0.04321151987008324, - "min_markup": 0.009322248258125871, - "n_close_orders": 16, - "qty_pct_close": 0.03396657329770534, - "qty_pct_entry": 0.011070104192630166, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.38159650883701}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GMTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GMTUSDT.json deleted file mode 100644 index d09650074..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GMTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GMXUSDT.json deleted file mode 100644 index 8a1cc5031..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 966.08648156454, - "delay_between_fills_minutes_entry": 796.1958189363064, - "delay_weight_close": 56.824415487506705, - "delay_weight_entry": 12.428140462446702, - "ema_dist_close": 0.0015968384633986642, - "ema_dist_entry": -0.0021447231506189534, - "ema_span_0": 1189.5564785093122, - "ema_span_1": 390.535153153525, - "enabled": true, - "markup_range": 0.05930386650166151, - "min_markup": 0.009369095800849124, - "n_close_orders": 7, - "qty_pct_close": 0.011705583989109427, - "qty_pct_entry": 0.010000007070349128, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.80256284880463}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.4359907413568, - "delay_between_fills_minutes_entry": 813.0902320499961, - "delay_weight_close": 73.35620410622826, - "delay_weight_entry": 8.477940256538888, - "ema_dist_close": -0.0011229109882759686, - "ema_dist_entry": -0.012547512225421376, - "ema_span_0": 594.8308980304884, - "ema_span_1": 1228.019467166765, - "enabled": true, - "markup_range": 0.006672412052603252, - "min_markup": 0.0074755754871653705, - "n_close_orders": 15, - "qty_pct_close": 0.011331530360969098, - "qty_pct_entry": 0.019691293145196423, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.33344370781945}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GRTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GRTUSDT.json deleted file mode 100644 index 702f2c9b5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GRTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1391.0431603375505, - "delay_between_fills_minutes_entry": 1426.5710624240005, - "delay_weight_close": 24.265259351399582, - "delay_weight_entry": 27.374479476594942, - "ema_dist_close": -0.004801297757321593, - "ema_dist_entry": -0.0009455284920989957, - "ema_span_0": 1082.384862722595, - "ema_span_1": 1260.01862040949, - "enabled": true, - "markup_range": 0.010621375274273587, - "min_markup": 0.007121098705050282, - "n_close_orders": 5, - "qty_pct_close": 0.04660951575404383, - "qty_pct_entry": 0.0199630254845551, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.462646861090507}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 636.0098526101663, - "delay_between_fills_minutes_entry": 1058.9706415784242, - "delay_weight_close": 0.06049777250373568, - "delay_weight_entry": 22.90936412210096, - "ema_dist_close": -0.0025050663827689366, - "ema_dist_entry": -0.010920774498540911, - "ema_span_0": 1050.1998244018857, - "ema_span_1": 919.3619631688974, - "enabled": true, - "markup_range": 0.012892119661483369, - "min_markup": 0.009784998103832288, - "n_close_orders": 9, - "qty_pct_close": 0.013541403235324979, - "qty_pct_entry": 0.013505859493699585, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.788339097729246}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GTCUSDT.json deleted file mode 100644 index 06eedb2eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/GTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1343.1514291768597, - "delay_between_fills_minutes_entry": 404.55371661483156, - "delay_weight_close": 31.438628640993986, - "delay_weight_entry": 7.5510640459077605, - "ema_dist_close": -0.004163223603453775, - "ema_dist_entry": -0.022851747478670817, - "ema_span_0": 164.66568464641952, - "ema_span_1": 1439.615532630955, - "enabled": true, - "markup_range": 0.010800188560475325, - "min_markup": 0.007246739002352616, - "n_close_orders": 3, - "qty_pct_close": 0.03284341650052076, - "qty_pct_entry": 0.0117934565552453, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.087860575465168}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HBARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HBARUSDT.json deleted file mode 100644 index aa793b2b5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HBARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.5718925663182, - "delay_between_fills_minutes_entry": 884.1131824014924, - "delay_weight_close": 86.45036723592253, - "delay_weight_entry": 25.408380563020156, - "ema_dist_close": 0.0004893895270757496, - "ema_dist_entry": -0.004012532589755453, - "ema_span_0": 965.0048638464931, - "ema_span_1": 774.739510057221, - "enabled": true, - "markup_range": 0.052731030601166344, - "min_markup": 0.007964744020377647, - "n_close_orders": 11, - "qty_pct_close": 0.01944369178679477, - "qty_pct_entry": 0.01000024848060537, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.750812743273666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1382.5656249380263, - "delay_between_fills_minutes_entry": 1050.116305579408, - "delay_weight_close": 87.25867328093925, - "delay_weight_entry": 23.449478356870205, - "ema_dist_close": 0.0009503244548221418, - "ema_dist_entry": -0.023269762487401764, - "ema_span_0": 1182.8981962746375, - "ema_span_1": 948.3581237635082, - "enabled": true, - "markup_range": 0.002005485993327191, - "min_markup": 0.004248906884460711, - "n_close_orders": 15, - "qty_pct_close": 0.011497613462901712, - "qty_pct_entry": 0.026522510991421173, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.7706935443909}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HFTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HFTUSDT.json deleted file mode 100644 index 6683331cf..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HFTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1197.268000231571, - "delay_between_fills_minutes_entry": 1073.4974875142968, - "delay_weight_close": 1.2308561287360629, - "delay_weight_entry": 11.281286383825147, - "ema_dist_close": -0.0004784065566439598, - "ema_dist_entry": -0.0010697900065744436, - "ema_span_0": 1439.0216650617167, - "ema_span_1": 1312.5667990221527, - "enabled": true, - "markup_range": 0.019089165618750778, - "min_markup": 0.006483016827764733, - "n_close_orders": 4, - "qty_pct_close": 0.010529673738567266, - "qty_pct_entry": 0.010377294258689811, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1197.1115552320246, - "delay_between_fills_minutes_entry": 1033.3397396500156, - "delay_weight_close": 0.5797704048627198, - "delay_weight_entry": 9.783610494837463, - "ema_dist_close": -0.0020442351514203274, - "ema_dist_entry": -0.002147530840781547, - "ema_span_0": 841.1735143333051, - "ema_span_1": 660.8247747372732, - "enabled": true, - "markup_range": 0.012504433450859219, - "min_markup": 0.008676579657034429, - "n_close_orders": 10, - "qty_pct_close": 0.018676090157928947, - "qty_pct_entry": 0.029075865928173034, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.761860462186185}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HIGHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HIGHUSDT.json deleted file mode 100644 index c6cb2bc1c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HIGHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1184.3615944910123, - "delay_between_fills_minutes_entry": 1316.6598694856843, - "delay_weight_close": 22.216220423949164, - "delay_weight_entry": 14.865104379084425, - "ema_dist_close": 0.0012823448749537177, - "ema_dist_entry": 0.002502092258008941, - "ema_span_0": 954.9415062627131, - "ema_span_1": 457.9176932314965, - "enabled": true, - "markup_range": 0.05537256221278992, - "min_markup": 0.008997769337391387, - "n_close_orders": 12, - "qty_pct_close": 0.04205694962398605, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.54322583474827}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 999.6915163031085, - "delay_between_fills_minutes_entry": 219.04233460138371, - "delay_weight_close": 86.45647898492476, - "delay_weight_entry": 2.3188902561557776, - "ema_dist_close": -0.008096323658665661, - "ema_dist_entry": -0.017406889991869675, - "ema_span_0": 1333.7383781609303, - "ema_span_1": 1209.850884266456, - "enabled": true, - "markup_range": 0.005765505564388796, - "min_markup": 0.006926583383134831, - "n_close_orders": 13, - "qty_pct_close": 0.014534818765630628, - "qty_pct_entry": 0.013657205483004729, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.1430187592146}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HNTUSDT.json deleted file mode 100644 index 9000ee9a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9985429335813, - "delay_between_fills_minutes_entry": 443.28494824363173, - "delay_weight_close": 0.16359912229089063, - "delay_weight_entry": 13.240581743985038, - "ema_dist_close": 0.0029757836023346887, - "ema_dist_entry": 0.002999524430504396, - "ema_span_0": 819.930804907152, - "ema_span_1": 795.993672876129, - "enabled": true, - "markup_range": 0.0017534590868530306, - "min_markup": 0.002575212146290758, - "n_close_orders": 4, - "qty_pct_close": 0.010010983642258086, - "qty_pct_entry": 0.010978277873816018, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.262083355049924}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HOOKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HOOKUSDT.json deleted file mode 100644 index 1c248a9f0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HOOKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1172.1327543666607, - "delay_between_fills_minutes_entry": 1372.9755441108782, - "delay_weight_close": 99.96427707559889, - "delay_weight_entry": 20.202274657649646, - "ema_dist_close": -0.009152028177640634, - "ema_dist_entry": 0.002917064698620786, - "ema_span_0": 415.219517221667, - "ema_span_1": 1216.9287588862765, - "enabled": true, - "markup_range": 0.04056592458267555, - "min_markup": 0.007027365997794305, - "n_close_orders": 11, - "qty_pct_close": 0.02823934231808025, - "qty_pct_entry": 0.011689935053645356, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99982774553881}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 730.1259082414658, - "delay_between_fills_minutes_entry": 302.41351029637974, - "delay_weight_close": 42.62607274635902, - "delay_weight_entry": 8.431533856847189, - "ema_dist_close": 0.0028647745126433315, - "ema_dist_entry": -0.011720402230740263, - "ema_span_0": 5.069621672060175, - "ema_span_1": 1439.349726858045, - "enabled": true, - "markup_range": 0.053514351017440134, - "min_markup": 0.00936414519089504, - "n_close_orders": 4, - "qty_pct_close": 0.030123418842884032, - "qty_pct_entry": 0.010034736434169087, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 15.921568480357365}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HOTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HOTUSDT.json deleted file mode 100644 index 390b71882..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/HOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1275.6988333409186, - "delay_between_fills_minutes_entry": 931.8437442632235, - "delay_weight_close": 53.37104892529714, - "delay_weight_entry": 40.28095136690261, - "ema_dist_close": 0.0009723204313784626, - "ema_dist_entry": -0.003149000025455873, - "ema_span_0": 1327.038010186341, - "ema_span_1": 1215.141691018625, - "enabled": true, - "markup_range": 0.00727310979516928, - "min_markup": 0.0022237885862061205, - "n_close_orders": 9, - "qty_pct_close": 0.02629128545232999, - "qty_pct_entry": 0.01610331987228494, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.06507052070499}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 897.8163910988793, - "delay_between_fills_minutes_entry": 677.0057330451879, - "delay_weight_close": 0.00017261689240360823, - "delay_weight_entry": 12.076695525824556, - "ema_dist_close": -0.0021647634475497252, - "ema_dist_entry": -0.0014320187109550572, - "ema_span_0": 1263.0435793360768, - "ema_span_1": 578.9977105862318, - "enabled": true, - "markup_range": 0.007382333335290091, - "min_markup": 0.007431983908812237, - "n_close_orders": 11, - "qty_pct_close": 0.02803869311841688, - "qty_pct_entry": 0.01532924078361097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ICPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ICPUSDT.json deleted file mode 100644 index 5aceb503d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ICPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.4429205737542, - "delay_between_fills_minutes_entry": 1345.3675628822427, - "delay_weight_close": 64.60184521639349, - "delay_weight_entry": 12.204087943002815, - "ema_dist_close": -0.004810660317730696, - "ema_dist_entry": 0.0029195137862580724, - "ema_span_0": 1150.7586832226953, - "ema_span_1": 1422.6048754589658, - "enabled": true, - "markup_range": 0.04088218740466626, - "min_markup": 0.008484854767347982, - "n_close_orders": 8, - "qty_pct_close": 0.01178290011936797, - "qty_pct_entry": 0.02112233710916093, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.199918948348532}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 926.8401824718923, - "delay_between_fills_minutes_entry": 565.9102557972923, - "delay_weight_close": 7.115927486106189, - "delay_weight_entry": 5.886435124435912, - "ema_dist_close": 0.002598127617680403, - "ema_dist_entry": -0.004747067344375997, - "ema_span_0": 1199.1173840814245, - "ema_span_1": 1056.4427610127157, - "enabled": true, - "markup_range": 0.004073388569302741, - "min_markup": 0.0023687164650121285, - "n_close_orders": 14, - "qty_pct_close": 0.021899763344203613, - "qty_pct_entry": 0.016574597833629023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.6205871831539}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ICXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ICXUSDT.json deleted file mode 100644 index d769b82b7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ICXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1415.1416788230397, - "delay_between_fills_minutes_entry": 938.5237150965296, - "delay_weight_close": 65.45859145747079, - "delay_weight_entry": 23.501147308796845, - "ema_dist_close": 0.002294784545222292, - "ema_dist_entry": -0.01726675673804264, - "ema_span_0": 1116.6335356072052, - "ema_span_1": 432.3359477149649, - "enabled": true, - "markup_range": 0.005496920265647614, - "min_markup": 0.001949399966416289, - "n_close_orders": 14, - "qty_pct_close": 0.01009248566703848, - "qty_pct_entry": 0.012621898312096154, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.9665879449563}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9985429335813, - "delay_between_fills_minutes_entry": 443.28494824363173, - "delay_weight_close": 0.16359912229089063, - "delay_weight_entry": 13.240581743985038, - "ema_dist_close": 0.0029757836023346887, - "ema_dist_entry": 0.002999524430504396, - "ema_span_0": 819.930804907152, - "ema_span_1": 795.993672876129, - "enabled": true, - "markup_range": 0.0017534590868530306, - "min_markup": 0.002575212146290758, - "n_close_orders": 4, - "qty_pct_close": 0.010010983642258086, - "qty_pct_entry": 0.010978277873816018, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.262083355049924}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IDEXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IDEXUSDT.json deleted file mode 100644 index 691140a61..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IDEXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 656.6451438497613, - "delay_between_fills_minutes_entry": 1182.6784336883675, - "delay_weight_close": 22.737866881001185, - "delay_weight_entry": 12.907013340207968, - "ema_dist_close": -0.005094137038280318, - "ema_dist_entry": -0.0019822164775364507, - "ema_span_0": 1004.7781648531026, - "ema_span_1": 1125.8197622962653, - "enabled": true, - "markup_range": 0.03393494381008144, - "min_markup": 0.009446578234594187, - "n_close_orders": 6, - "qty_pct_close": 0.010005631736168948, - "qty_pct_entry": 0.011458314870681798, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.05856953201555}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1426.2460127086429, - "delay_between_fills_minutes_entry": 1301.9677454251148, - "delay_weight_close": 0.012220795799037539, - "delay_weight_entry": 25.20019994016826, - "ema_dist_close": -0.0016368670131262433, - "ema_dist_entry": -0.0013336791157355073, - "ema_span_0": 1067.3195696810958, - "ema_span_1": 1403.2684971953186, - "enabled": true, - "markup_range": 0.05380055605505132, - "min_markup": 0.00923556724271716, - "n_close_orders": 2, - "qty_pct_close": 0.04987462152548703, - "qty_pct_entry": 0.011027050519535068, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.88357679726183}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IDUSDT.json deleted file mode 100644 index b483ab1a1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1432.3751463936494, - "delay_between_fills_minutes_entry": 1179.0573323700694, - "delay_weight_close": 39.65215979564905, - "delay_weight_entry": 17.17083703562694, - "ema_dist_close": 0.0017579095656521597, - "ema_dist_entry": -0.005136440663016263, - "ema_span_0": 1163.233312792913, - "ema_span_1": 1310.8503944062077, - "enabled": true, - "markup_range": 0.007518172128085469, - "min_markup": 0.00560150313019402, - "n_close_orders": 3, - "qty_pct_close": 0.01002691999821848, - "qty_pct_entry": 0.014955548226043693, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.094464166028665}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1150.5384090225166, - "delay_between_fills_minutes_entry": 116.97291410441771, - "delay_weight_close": 94.05606145987308, - "delay_weight_entry": 24.16945188617289, - "ema_dist_close": -0.0006568820758926325, - "ema_dist_entry": -0.006320174989704987, - "ema_span_0": 214.61135352410417, - "ema_span_1": 885.547258108434, - "enabled": true, - "markup_range": 0.0024962654025755203, - "min_markup": 0.0010190907709376894, - "n_close_orders": 5, - "qty_pct_close": 0.01043404383108705, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.84311186531168}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IMXUSDT.json deleted file mode 100644 index 71ba5b7f5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1172.1327543666607, - "delay_between_fills_minutes_entry": 1372.9755441108782, - "delay_weight_close": 99.96427707559889, - "delay_weight_entry": 20.202274657649646, - "ema_dist_close": -0.009152028177640634, - "ema_dist_entry": 0.002917064698620786, - "ema_span_0": 415.219517221667, - "ema_span_1": 1216.9287588862765, - "enabled": true, - "markup_range": 0.04056592458267555, - "min_markup": 0.007027365997794305, - "n_close_orders": 11, - "qty_pct_close": 0.02823934231808025, - "qty_pct_entry": 0.011689935053645356, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99982774553881}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.7801749607968, - "delay_between_fills_minutes_entry": 403.26534227278677, - "delay_weight_close": 35.38435312375326, - "delay_weight_entry": 6.80996170224646, - "ema_dist_close": -0.005298977319500886, - "ema_dist_entry": -0.007415357634018295, - "ema_span_0": 1219.9045071888436, - "ema_span_1": 1427.9881083162825, - "enabled": true, - "markup_range": 0.0024814058291706587, - "min_markup": 0.00794778656317665, - "n_close_orders": 3, - "qty_pct_close": 0.029073495412967075, - "qty_pct_entry": 0.0228065057164452, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.82264492841866}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/INJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/INJUSDT.json deleted file mode 100644 index 9279d1404..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/INJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 670.6455096802099, - "delay_between_fills_minutes_entry": 1257.9336804598204, - "delay_weight_close": 30.291468299427745, - "delay_weight_entry": 19.084684692603158, - "ema_dist_close": 0.002970962052969961, - "ema_dist_entry": 0.0014053453050027326, - "ema_span_0": 1421.1175890148627, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.02548661705907167, - "min_markup": 0.009582457394692484, - "n_close_orders": 8, - "qty_pct_close": 0.030675148381381433, - "qty_pct_entry": 0.01000039838721209, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.76033814688205}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1363.732160564072, - "delay_between_fills_minutes_entry": 878.6270948450631, - "delay_weight_close": 52.185682809312425, - "delay_weight_entry": 26.237261188962684, - "ema_dist_close": 0.001964740882301477, - "ema_dist_entry": -0.03672838441035036, - "ema_span_0": 1187.1519687376892, - "ema_span_1": 1240.5031257780765, - "enabled": true, - "markup_range": 0.0008117692944082136, - "min_markup": 0.0036820127436975976, - "n_close_orders": 7, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.011371609117173708, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.150165830975524}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOSTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOSTUSDT.json deleted file mode 100644 index 1ccdc69bd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 952.7001101952578, - "delay_between_fills_minutes_entry": 1199.430093676076, - "delay_weight_close": 4.085911601297259, - "delay_weight_entry": 10.97862123140131, - "ema_dist_close": 0.0007916098192061761, - "ema_dist_entry": 0.0012558169205408355, - "ema_span_0": 1334.1580471865152, - "ema_span_1": 881.3395852694684, - "enabled": true, - "markup_range": 0.04127502242805815, - "min_markup": 0.00928082283279103, - "n_close_orders": 8, - "qty_pct_close": 0.02676481222984645, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.88226183627663}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.7801749607968, - "delay_between_fills_minutes_entry": 403.26534227278677, - "delay_weight_close": 35.38435312375326, - "delay_weight_entry": 6.80996170224646, - "ema_dist_close": -0.005298977319500886, - "ema_dist_entry": -0.007415357634018295, - "ema_span_0": 1219.9045071888436, - "ema_span_1": 1427.9881083162825, - "enabled": true, - "markup_range": 0.0024814058291706587, - "min_markup": 0.00794778656317665, - "n_close_orders": 3, - "qty_pct_close": 0.029073495412967075, - "qty_pct_entry": 0.0228065057164452, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.82264492841866}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOTAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOTAUSDT.json deleted file mode 100644 index 24f4263c0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOTAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 503.198104827252, - "delay_between_fills_minutes_entry": 687.3923449400496, - "delay_weight_close": 95.09861861989107, - "delay_weight_entry": 13.46555619961382, - "ema_dist_close": 0.0005077305777896737, - "ema_dist_entry": -0.0003363888831941729, - "ema_span_0": 1124.8074445815253, - "ema_span_1": 574.0204104788307, - "enabled": true, - "markup_range": 0.05517113643782768, - "min_markup": 0.009154273355424609, - "n_close_orders": 14, - "qty_pct_close": 0.016722236636776227, - "qty_pct_entry": 0.012618372842434228, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.468325606065104}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.8037222838452, - "delay_between_fills_minutes_entry": 327.80358012958607, - "delay_weight_close": 18.42997447755327, - "delay_weight_entry": 46.76940467656919, - "ema_dist_close": 0.00213985136997908, - "ema_dist_entry": -0.021724334438032487, - "ema_span_0": 191.51776170966482, - "ema_span_1": 943.3356805188178, - "enabled": true, - "markup_range": 0.004467487375428127, - "min_markup": 0.0016550621004090662, - "n_close_orders": 13, - "qty_pct_close": 0.012230216088259062, - "qty_pct_entry": 0.01014443749636906, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.922297547496}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOTXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOTXUSDT.json deleted file mode 100644 index 04e1cb6db..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/IOTXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1187.3582263636256, - "delay_between_fills_minutes_entry": 719.5167294060245, - "delay_weight_close": 81.55413329763614, - "delay_weight_entry": 9.471636148922881, - "ema_dist_close": 0.0004402471634626214, - "ema_dist_entry": 0.0010263738488436693, - "ema_span_0": 1131.4713394159055, - "ema_span_1": 1033.2037958171775, - "enabled": true, - "markup_range": 0.05825395747259353, - "min_markup": 0.004666673368084952, - "n_close_orders": 7, - "qty_pct_close": 0.03390576541814004, - "qty_pct_entry": 0.016155757188729688, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.2215199287487}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.295287539748, - "delay_between_fills_minutes_entry": 1047.2353291667882, - "delay_weight_close": 39.28896919919422, - "delay_weight_entry": 3.3334507658908543, - "ema_dist_close": 0.002678510609963926, - "ema_dist_entry": 0.0019159766341221923, - "ema_span_0": 1226.049433092329, - "ema_span_1": 1407.84421615113, - "enabled": true, - "markup_range": 0.011231363589640603, - "min_markup": 0.005970324378700582, - "n_close_orders": 7, - "qty_pct_close": 0.01000141758231588, - "qty_pct_entry": 0.021110660168367792, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.70956291569769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/JASMYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/JASMYUSDT.json deleted file mode 100644 index d56e752ef..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/JASMYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 726.5018587493423, - "delay_between_fills_minutes_entry": 879.8154454712225, - "delay_weight_close": 0.18875934862188895, - "delay_weight_entry": 8.505763453378362, - "ema_dist_close": 0.002403967716716246, - "ema_dist_entry": -0.010934246946260976, - "ema_span_0": 880.7659216118963, - "ema_span_1": 1102.6114459450203, - "enabled": true, - "markup_range": 0.006989513722505428, - "min_markup": 0.009357041315566403, - "n_close_orders": 6, - "qty_pct_close": 0.011515134445292636, - "qty_pct_entry": 0.013754476724842984, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.16087857406137}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1309.33645848481, - "delay_between_fills_minutes_entry": 292.5082714824546, - "delay_weight_close": 85.20708079347605, - "delay_weight_entry": 7.268990156120841, - "ema_dist_close": -0.009272972447208738, - "ema_dist_entry": -0.012530656329730818, - "ema_span_0": 352.15599562308836, - "ema_span_1": 840.3403346408348, - "enabled": true, - "markup_range": 0.0033520665675332243, - "min_markup": 0.005594786211745724, - "n_close_orders": 3, - "qty_pct_close": 0.010028514568880854, - "qty_pct_entry": 0.012299678337613511, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.92200517746132}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/JOEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/JOEUSDT.json deleted file mode 100644 index 78cc6911c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/JOEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1088.583416750614, - "delay_between_fills_minutes_entry": 792.4507659725243, - "delay_weight_close": 65.42238389799536, - "delay_weight_entry": 12.830346867656306, - "ema_dist_close": -0.002119624854989983, - "ema_dist_entry": 0.0015544721047252806, - "ema_span_0": 1265.2522213657214, - "ema_span_1": 1335.0483095828058, - "enabled": true, - "markup_range": 0.055356487943297776, - "min_markup": 0.006326758630168559, - "n_close_orders": 2, - "qty_pct_close": 0.01490044281158096, - "qty_pct_entry": 0.010079717350843617, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.810447565742179}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 700.6914231952267, - "delay_between_fills_minutes_entry": 168.4056022550254, - "delay_weight_close": 0.00048748681470073805, - "delay_weight_entry": 1.055598418700892, - "ema_dist_close": 0.0019240539063527047, - "ema_dist_entry": -0.02209031120271672, - "ema_span_0": 933.0151716854781, - "ema_span_1": 829.2402000588095, - "enabled": true, - "markup_range": 0.0046784334134281355, - "min_markup": 0.0027797765687566866, - "n_close_orders": 14, - "qty_pct_close": 0.010784047569105136, - "qty_pct_entry": 0.010317467376184861, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.76050371532518}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KAVAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KAVAUSDT.json deleted file mode 100644 index fe7b0da0c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KAVAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 726.5018587493423, - "delay_between_fills_minutes_entry": 879.8154454712225, - "delay_weight_close": 0.18875934862188895, - "delay_weight_entry": 8.505763453378362, - "ema_dist_close": 0.002403967716716246, - "ema_dist_entry": -0.010934246946260976, - "ema_span_0": 880.7659216118963, - "ema_span_1": 1102.6114459450203, - "enabled": true, - "markup_range": 0.006989513722505428, - "min_markup": 0.009357041315566403, - "n_close_orders": 6, - "qty_pct_close": 0.011515134445292636, - "qty_pct_entry": 0.013754476724842984, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.16087857406137}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1349.0527981942628, - "delay_between_fills_minutes_entry": 309.9093083580568, - "delay_weight_close": 89.48902081600929, - "delay_weight_entry": 15.286544282775344, - "ema_dist_close": -0.003247196248122197, - "ema_dist_entry": -0.012913149845687748, - "ema_span_0": 1358.5381253354649, - "ema_span_1": 853.0895784468605, - "enabled": true, - "markup_range": 0.0439232570471195, - "min_markup": 0.0024530145641530397, - "n_close_orders": 3, - "qty_pct_close": 0.02232490479595429, - "qty_pct_entry": 0.010091378765415682, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.18129679709398}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KEYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KEYUSDT.json deleted file mode 100644 index 376ad4468..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KEYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 982.1114384601992, - "delay_between_fills_minutes_entry": 1217.8570757792088, - "delay_weight_close": 27.35979816168313, - "delay_weight_entry": 9.896339717571426, - "ema_dist_close": 0.001852286567782835, - "ema_dist_entry": -0.0063302454593886365, - "ema_span_0": 1288.6178079055449, - "ema_span_1": 458.99927260504467, - "enabled": true, - "markup_range": 0.059316436372411054, - "min_markup": 0.007669512440158862, - "n_close_orders": 15, - "qty_pct_close": 0.0128413242116296, - "qty_pct_entry": 0.01023561794315263, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.642606902901733}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1326.4613304012246, - "delay_between_fills_minutes_entry": 466.86355303444975, - "delay_weight_close": 6.020165029029423, - "delay_weight_entry": 28.014593712840874, - "ema_dist_close": -0.009146603859303895, - "ema_dist_entry": -0.007333634435798172, - "ema_span_0": 1117.4763841771146, - "ema_span_1": 181.64661047177708, - "enabled": true, - "markup_range": 0.01117707527462364, - "min_markup": 0.006269700986127895, - "n_close_orders": 11, - "qty_pct_close": 0.012112685240584136, - "qty_pct_entry": 0.010149372249928844, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.08317004201552}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KLAYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KLAYUSDT.json deleted file mode 100644 index 869451f9b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KLAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1419.35748903851, - "delay_between_fills_minutes_entry": 324.1607589843539, - "delay_weight_close": 4.432328728822542, - "delay_weight_entry": 12.11493231067752, - "ema_dist_close": 0.002072359008868417, - "ema_dist_entry": -0.005511524847888036, - "ema_span_0": 727.087512662353, - "ema_span_1": 930.1699104888872, - "enabled": true, - "markup_range": 0.006428958742681979, - "min_markup": 0.0031212587161726134, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.636044626388497}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KNCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KNCUSDT.json deleted file mode 100644 index a65f04a32..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.982407482354, - "delay_between_fills_minutes_entry": 633.6984400248712, - "delay_weight_close": 86.9434482623214, - "delay_weight_entry": 18.09591450909478, - "ema_dist_close": 0.0029698826551317658, - "ema_dist_entry": 0.0024537342797108755, - "ema_span_0": 616.2076670454467, - "ema_span_1": 645.7004797920818, - "enabled": true, - "markup_range": 0.0038439260966069548, - "min_markup": 0.006938268776675206, - "n_close_orders": 10, - "qty_pct_close": 0.017986556530262307, - "qty_pct_entry": 0.020544367586853157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 1.3356349449025813}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1397.3784465020017, - "delay_between_fills_minutes_entry": 452.2628119249625, - "delay_weight_close": 56.68670119182123, - "delay_weight_entry": 4.5956121812410045, - "ema_dist_close": -0.009899693230993222, - "ema_dist_entry": -0.007851607868007263, - "ema_span_0": 414.40366313947646, - "ema_span_1": 1341.3743825749918, - "enabled": true, - "markup_range": 0.00707131186846877, - "min_markup": 0.0043452846697622565, - "n_close_orders": 15, - "qty_pct_close": 0.015829945213733616, - "qty_pct_entry": 0.017858618297559203, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.173129861625775}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KSMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KSMUSDT.json deleted file mode 100644 index 282c85007..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/KSMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1326.4432142696585, - "delay_between_fills_minutes_entry": 1166.43283851192, - "delay_weight_close": 54.94637029190635, - "delay_weight_entry": 12.063362748207755, - "ema_dist_close": -0.00039029974666702463, - "ema_dist_entry": 0.0027957676371166526, - "ema_span_0": 1208.875973361697, - "ema_span_1": 1380.0023211539676, - "enabled": true, - "markup_range": 0.05997839183038452, - "min_markup": 0.0033861273688260787, - "n_close_orders": 16, - "qty_pct_close": 0.018383985717660187, - "qty_pct_entry": 0.011544835553198908, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 31.254819759160224}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.4359907413568, - "delay_between_fills_minutes_entry": 813.0902320499961, - "delay_weight_close": 73.35620410622826, - "delay_weight_entry": 8.477940256538888, - "ema_dist_close": -0.0011229109882759686, - "ema_dist_entry": -0.012547512225421376, - "ema_span_0": 594.8308980304884, - "ema_span_1": 1228.019467166765, - "enabled": true, - "markup_range": 0.006672412052603252, - "min_markup": 0.0074755754871653705, - "n_close_orders": 15, - "qty_pct_close": 0.011331530360969098, - "qty_pct_entry": 0.019691293145196423, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.33344370781945}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LDOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LDOUSDT.json deleted file mode 100644 index 9aa7cac3c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LDOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 952.7001101952578, - "delay_between_fills_minutes_entry": 1199.430093676076, - "delay_weight_close": 4.085911601297259, - "delay_weight_entry": 10.97862123140131, - "ema_dist_close": 0.0007916098192061761, - "ema_dist_entry": 0.0012558169205408355, - "ema_span_0": 1334.1580471865152, - "ema_span_1": 881.3395852694684, - "enabled": true, - "markup_range": 0.04127502242805815, - "min_markup": 0.00928082283279103, - "n_close_orders": 8, - "qty_pct_close": 0.02676481222984645, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.88226183627663}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.183804080341, - "delay_between_fills_minutes_entry": 856.231422014711, - "delay_weight_close": 77.61135444747464, - "delay_weight_entry": 8.377021925245762, - "ema_dist_close": 0.0028538894051970175, - "ema_dist_entry": -0.03128727996102496, - "ema_span_0": 1400.7081496556054, - "ema_span_1": 275.4705410474334, - "enabled": true, - "markup_range": 0.001711506393338193, - "min_markup": 0.009063782050319925, - "n_close_orders": 2, - "qty_pct_close": 0.010144440890874636, - "qty_pct_entry": 0.011037967647793502, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.07965940008806}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LEVERUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LEVERUSDT.json deleted file mode 100644 index ced4a64d1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LEVERUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1211.9271682590809, - "delay_between_fills_minutes_entry": 1095.3269501133077, - "delay_weight_close": 41.11770967367582, - "delay_weight_entry": 13.950926398146946, - "ema_dist_close": 0.0029552657403304683, - "ema_dist_entry": -0.04024932299776792, - "ema_span_0": 1416.1963484304154, - "ema_span_1": 25.54144367676385, - "enabled": true, - "markup_range": 0.059872018942431465, - "min_markup": 0.00807317862274566, - "n_close_orders": 13, - "qty_pct_close": 0.018691764804111076, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.598245393894894}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 434.17532456020155, - "delay_between_fills_minutes_entry": 844.8390080874593, - "delay_weight_close": 6.54766048824612, - "delay_weight_entry": 19.60708372614642, - "ema_dist_close": 0.0006122537030016851, - "ema_dist_entry": 0.0021590591445903797, - "ema_span_0": 527.7604142026237, - "ema_span_1": 1231.201378790551, - "enabled": true, - "markup_range": 0.04217838676013018, - "min_markup": 0.009428548140937514, - "n_close_orders": 12, - "qty_pct_close": 0.023917246131970306, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.785114908743076}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LINAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LINAUSDT.json deleted file mode 100644 index a4a53e000..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9996307263943, - "delay_between_fills_minutes_entry": 1356.3096839048605, - "delay_weight_close": 19.82630462195396, - "delay_weight_entry": 13.78422385124914, - "ema_dist_close": 0.0006512868398342138, - "ema_dist_entry": -0.005882335475745471, - "ema_span_0": 1378.9252413534934, - "ema_span_1": 1415.5021832599589, - "enabled": true, - "markup_range": 0.006589815056230229, - "min_markup": 0.006910286400636286, - "n_close_orders": 2, - "qty_pct_close": 0.010097344655516368, - "qty_pct_entry": 0.010168520311009246, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99917137825818}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1160.2973098516572, - "delay_between_fills_minutes_entry": 526.862083113452, - "delay_weight_close": 17.036577574619105, - "delay_weight_entry": 22.10116590833479, - "ema_dist_close": -3.446651532376068e-05, - "ema_dist_entry": -0.00012952203825090068, - "ema_span_0": 692.1721120275521, - "ema_span_1": 1082.5295770581015, - "enabled": true, - "markup_range": 0.0, - "min_markup": 0.0055825273312523705, - "n_close_orders": 12, - "qty_pct_close": 0.01641518785101752, - "qty_pct_entry": 0.010993386618974922, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.962142319585595}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LINKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LINKUSDT.json deleted file mode 100644 index afbbd32a3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LINKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1167.6576360257418, - "delay_between_fills_minutes_entry": 1071.002998220978, - "delay_weight_close": 64.40484244436918, - "delay_weight_entry": 30.243232552301386, - "ema_dist_close": -0.0037563832926776563, - "ema_dist_entry": 0.0018924244994374976, - "ema_span_0": 835.0365595212382, - "ema_span_1": 963.463905283873, - "enabled": true, - "markup_range": 0.007042116997791273, - "min_markup": 0.006100148955509531, - "n_close_orders": 5, - "qty_pct_close": 0.01314276076633486, - "qty_pct_entry": 0.017114485066802427, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.650184964224866}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1217.8430449175653, - "delay_between_fills_minutes_entry": 914.1832198073605, - "delay_weight_close": 65.58351856700227, - "delay_weight_entry": 9.378574606035725, - "ema_dist_close": -0.004221383091496329, - "ema_dist_entry": -0.01550257143671907, - "ema_span_0": 223.77050975746855, - "ema_span_1": 1305.0007249202017, - "enabled": true, - "markup_range": 0.021190816136392704, - "min_markup": 0.007276178130208279, - "n_close_orders": 7, - "qty_pct_close": 0.010000608588588129, - "qty_pct_entry": 0.012404871228047938, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.13238624036538}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LITUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LITUSDT.json deleted file mode 100644 index 6680ffc8c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LITUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 900.9015952475341, - "delay_between_fills_minutes_entry": 436.26195703063695, - "delay_weight_close": 0.4208833066023584, - "delay_weight_entry": 7.520380575715492, - "ema_dist_close": -0.003138639896461695, - "ema_dist_entry": 0.0002601451990202081, - "ema_span_0": 1229.6688648508634, - "ema_span_1": 1131.424121686753, - "enabled": true, - "markup_range": 0.008611910101839787, - "min_markup": 0.008040533950549407, - "n_close_orders": 13, - "qty_pct_close": 0.011679407784583566, - "qty_pct_entry": 0.012419730983829348, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.95080762720841}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 729.1350138907183, - "delay_between_fills_minutes_entry": 598.7898929680617, - "delay_weight_close": 39.537725601653314, - "delay_weight_entry": 14.44867498613962, - "ema_dist_close": -0.0011354454788494216, - "ema_dist_entry": -0.0012940755945746738, - "ema_span_0": 1119.5058111512767, - "ema_span_1": 1194.9717678809754, - "enabled": true, - "markup_range": 0.0416279400474618, - "min_markup": 0.009601458167185216, - "n_close_orders": 4, - "qty_pct_close": 0.011922970112818086, - "qty_pct_entry": 0.011684819395771219, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.417952931407}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LPTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LPTUSDT.json deleted file mode 100644 index 149ec0720..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LPTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1320.7476068871354, - "delay_between_fills_minutes_entry": 1347.9135376729748, - "delay_weight_close": 92.42055650788045, - "delay_weight_entry": 19.95229864616334, - "ema_dist_close": 0.0027194335307167646, - "ema_dist_entry": 0.0029997763847689784, - "ema_span_0": 7.004377248467877, - "ema_span_1": 1389.2389970202423, - "enabled": true, - "markup_range": 0.057462502745574504, - "min_markup": 0.009121999609202952, - "n_close_orders": 14, - "qty_pct_close": 0.032006245460253935, - "qty_pct_entry": 0.010667358381332209, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.348670174968811}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1204.8592959383561, - "delay_between_fills_minutes_entry": 1128.084393399213, - "delay_weight_close": 16.641979133768626, - "delay_weight_entry": 8.85584145027719, - "ema_dist_close": -0.003830885769316448, - "ema_dist_entry": -0.0075363323826649516, - "ema_span_0": 1320.4558962322453, - "ema_span_1": 1050.0239307094894, - "enabled": true, - "markup_range": 0.02714713694859004, - "min_markup": 0.0037161173309938652, - "n_close_orders": 5, - "qty_pct_close": 0.01133649725261194, - "qty_pct_entry": 0.012887983173201995, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.32805187040517}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LQTYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LQTYUSDT.json deleted file mode 100644 index 6db9e3efc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LQTYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1314.247903571028, - "delay_between_fills_minutes_entry": 756.5327419018398, - "delay_weight_close": 19.70542187915013, - "delay_weight_entry": 8.384322224965874, - "ema_dist_close": -0.002743073962334186, - "ema_dist_entry": 0.0011729250357169509, - "ema_span_0": 1134.3030856989453, - "ema_span_1": 374.2547700322892, - "enabled": true, - "markup_range": 0.00833439211682813, - "min_markup": 0.00794186984362587, - "n_close_orders": 16, - "qty_pct_close": 0.010007305911911858, - "qty_pct_entry": 0.010741877017260211, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.69026117232209}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1271.2867396775025, - "delay_between_fills_minutes_entry": 185.99851005072222, - "delay_weight_close": 35.72907284372276, - "delay_weight_entry": 14.673882645945039, - "ema_dist_close": 0.0011613445555605946, - "ema_dist_entry": -0.00936703788367831, - "ema_span_0": 369.2075449990928, - "ema_span_1": 470.48836434567414, - "enabled": true, - "markup_range": 0.00172280295791171, - "min_markup": 0.0052495775719008445, - "n_close_orders": 13, - "qty_pct_close": 0.019974200364457424, - "qty_pct_entry": 0.01543643979563336, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.369217008190134}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LRCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LRCUSDT.json deleted file mode 100644 index f07874b60..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LRCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1426.1516771828806, - "delay_between_fills_minutes_entry": 1305.3714763368782, - "delay_weight_close": 8.91441133275734, - "delay_weight_entry": 15.627105192955671, - "ema_dist_close": 0.0005328251613211165, - "ema_dist_entry": 0.002974228378353759, - "ema_span_0": 173.151058959988, - "ema_span_1": 1227.586462693717, - "enabled": true, - "markup_range": 0.05749773284054359, - "min_markup": 0.00959547967244143, - "n_close_orders": 15, - "qty_pct_close": 0.03606869041247751, - "qty_pct_entry": 0.01016455121770557, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.128291226690923}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1432.9334103489116, - "delay_between_fills_minutes_entry": 625.2647989257891, - "delay_weight_close": 0.14486084896857784, - "delay_weight_entry": 10.614025103719225, - "ema_dist_close": -0.0005803754088262122, - "ema_dist_entry": -0.007038622426020813, - "ema_span_0": 245.61643030200204, - "ema_span_1": 313.4149973843491, - "enabled": true, - "markup_range": 0.0064283976786502816, - "min_markup": 0.007086510492250265, - "n_close_orders": 9, - "qty_pct_close": 0.013958115932205745, - "qty_pct_entry": 0.013910630403550898, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.39235496815764}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LTCUSDT.json deleted file mode 100644 index a4a1b0ec4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 847.4570618633642, - "delay_between_fills_minutes_entry": 1394.2535143526836, - "delay_weight_close": 0.15339331077775736, - "delay_weight_entry": 12.336117839322695, - "ema_dist_close": 0.0016938189269252372, - "ema_dist_entry": 0.00025720434789705716, - "ema_span_0": 1113.212318426606, - "ema_span_1": 662.594621758259, - "enabled": true, - "markup_range": 0.029977503397955005, - "min_markup": 0.004132836188627235, - "n_close_orders": 8, - "qty_pct_close": 0.010578510909682346, - "qty_pct_entry": 0.011228969901844221, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.22851995837369}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 1204.5102564477174, - "delay_weight_close": 4.610571248694378, - "delay_weight_entry": 17.255968655930705, - "ema_dist_close": -0.0032352410069657676, - "ema_dist_entry": -0.004376040772496267, - "ema_span_0": 822.0470748933558, - "ema_span_1": 1146.8683784348345, - "enabled": true, - "markup_range": 0.010297127887119886, - "min_markup": 0.007708217281177274, - "n_close_orders": 7, - "qty_pct_close": 0.01106313338080253, - "qty_pct_entry": 0.01520660918443477, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.80536181281075}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LUNA2USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LUNA2USDT.json deleted file mode 100644 index f43e44a44..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/LUNA2USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.288814622799, - "delay_between_fills_minutes_entry": 505.0734075441379, - "delay_weight_close": 11.869349083806261, - "delay_weight_entry": 5.942625843648699, - "ema_dist_close": 0.00036914505235652746, - "ema_dist_entry": -0.004002585449369781, - "ema_span_0": 1375.7111256869875, - "ema_span_1": 1379.8553989479817, - "enabled": true, - "markup_range": 0.008758055892309713, - "min_markup": 0.007265202514993668, - "n_close_orders": 3, - "qty_pct_close": 0.010044171160764406, - "qty_pct_entry": 0.01551158000586426, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.98536267031256}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MAGICUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MAGICUSDT.json deleted file mode 100644 index a9d4ede2e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MAGICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1277.9544783972335, - "delay_between_fills_minutes_entry": 1163.9960848593298, - "delay_weight_close": 77.07863253685069, - "delay_weight_entry": 17.040137678205323, - "ema_dist_close": 0.002215730146257321, - "ema_dist_entry": -0.0008859077118096167, - "ema_span_0": 596.3020496405662, - "ema_span_1": 1292.9524984342952, - "enabled": true, - "markup_range": 0.057433651626384113, - "min_markup": 0.0038033869893633766, - "n_close_orders": 2, - "qty_pct_close": 0.01000212479661684, - "qty_pct_entry": 0.012616397879523275, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.9164116104312074}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 566.728048226077, - "delay_between_fills_minutes_entry": 98.60896944334999, - "delay_weight_close": 0.0012662552903666487, - "delay_weight_entry": 10.46322317873434, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008628095599072209, - "ema_span_0": 226.33627318454913, - "ema_span_1": 225.73496090568048, - "enabled": true, - "markup_range": 0.0026059276449264266, - "min_markup": 0.0040488502429980484, - "n_close_orders": 2, - "qty_pct_close": 0.010878416974961412, - "qty_pct_entry": 0.010011407123709742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.220265927651216}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MANAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MANAUSDT.json deleted file mode 100644 index 3b13239d6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MANAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1320.7476068871354, - "delay_between_fills_minutes_entry": 1347.9135376729748, - "delay_weight_close": 92.42055650788045, - "delay_weight_entry": 19.95229864616334, - "ema_dist_close": 0.0027194335307167646, - "ema_dist_entry": 0.0029997763847689784, - "ema_span_0": 7.004377248467877, - "ema_span_1": 1389.2389970202423, - "enabled": true, - "markup_range": 0.057462502745574504, - "min_markup": 0.009121999609202952, - "n_close_orders": 14, - "qty_pct_close": 0.032006245460253935, - "qty_pct_entry": 0.010667358381332209, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.348670174968811}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 770.6426023185443, - "delay_weight_close": 8.917925567623623, - "delay_weight_entry": 5.086389066337287, - "ema_dist_close": 0.0016710347504039428, - "ema_dist_entry": -0.01151431025507491, - "ema_span_0": 1312.4148910387232, - "ema_span_1": 388.665918167387, - "enabled": true, - "markup_range": 0.02047099068754597, - "min_markup": 0.008792030549710284, - "n_close_orders": 5, - "qty_pct_close": 0.012909025258383385, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.37968923364722}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MASKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MASKUSDT.json deleted file mode 100644 index 43323eb43..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MASKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.330711456547, - "delay_between_fills_minutes_entry": 1205.461514879456, - "delay_weight_close": 50.393562227474185, - "delay_weight_entry": 5.746696339402074, - "ema_dist_close": 0.0028249499040441956, - "ema_dist_entry": -0.005727574793557369, - "ema_span_0": 311.5731620319031, - "ema_span_1": 1363.209180445593, - "enabled": true, - "markup_range": 0.05898294252241398, - "min_markup": 0.00900393943145341, - "n_close_orders": 7, - "qty_pct_close": 0.010573273457660879, - "qty_pct_entry": 0.013286194391958047, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.16482557395951}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.295287539748, - "delay_between_fills_minutes_entry": 1047.2353291667882, - "delay_weight_close": 39.28896919919422, - "delay_weight_entry": 3.3334507658908543, - "ema_dist_close": 0.002678510609963926, - "ema_dist_entry": 0.0019159766341221923, - "ema_span_0": 1226.049433092329, - "ema_span_1": 1407.84421615113, - "enabled": true, - "markup_range": 0.011231363589640603, - "min_markup": 0.005970324378700582, - "n_close_orders": 7, - "qty_pct_close": 0.01000141758231588, - "qty_pct_entry": 0.021110660168367792, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.70956291569769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MATICUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MATICUSDT.json deleted file mode 100644 index 163607b8d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MATICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1137.3194055699828, - "delay_between_fills_minutes_entry": 1088.7528826652488, - "delay_weight_close": 88.30469365373482, - "delay_weight_entry": 14.951490633355576, - "ema_dist_close": -0.004707694475614976, - "ema_dist_entry": 0.002956100229462928, - "ema_span_0": 983.7211644420803, - "ema_span_1": 1288.9795232975994, - "enabled": true, - "markup_range": 0.05999186882805523, - "min_markup": 0.009122532297901753, - "n_close_orders": 13, - "qty_pct_close": 0.010225849253167954, - "qty_pct_entry": 0.011820324010258421, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.7178761688875}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1309.33645848481, - "delay_between_fills_minutes_entry": 292.5082714824546, - "delay_weight_close": 85.20708079347605, - "delay_weight_entry": 7.268990156120841, - "ema_dist_close": -0.009272972447208738, - "ema_dist_entry": -0.012530656329730818, - "ema_span_0": 352.15599562308836, - "ema_span_1": 840.3403346408348, - "enabled": true, - "markup_range": 0.0033520665675332243, - "min_markup": 0.005594786211745724, - "n_close_orders": 3, - "qty_pct_close": 0.010028514568880854, - "qty_pct_entry": 0.012299678337613511, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.92200517746132}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MINAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MINAUSDT.json deleted file mode 100644 index 6c0e336a1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.381970537184, - "delay_between_fills_minutes_entry": 619.838749313212, - "delay_weight_close": 0.0019053535889719303, - "delay_weight_entry": 23.331427570890845, - "ema_dist_close": 0.002160595355686519, - "ema_dist_entry": -0.004903165511764008, - "ema_span_0": 1221.7457582422776, - "ema_span_1": 957.7869057433232, - "enabled": true, - "markup_range": 5.416337042649924e-07, - "min_markup": 0.004991797819770077, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01967214333802023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99997150162021}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1106.1524957784725, - "delay_between_fills_minutes_entry": 456.07881270653763, - "delay_weight_close": 79.80859255787203, - "delay_weight_entry": 5.072828881471656, - "ema_dist_close": -0.003555471962947313, - "ema_dist_entry": -0.005043831549968741, - "ema_span_0": 1156.5763075310185, - "ema_span_1": 840.3326395635395, - "enabled": true, - "markup_range": 0.0046671893371625205, - "min_markup": 0.008359491944116003, - "n_close_orders": 3, - "qty_pct_close": 0.010101050051285069, - "qty_pct_entry": 0.015664879747760697, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99577359586544}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MKRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MKRUSDT.json deleted file mode 100644 index 2883438eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.6487349866093, - "delay_between_fills_minutes_entry": 1420.1276011232965, - "delay_weight_close": 63.16731524137464, - "delay_weight_entry": 18.347752047192767, - "ema_dist_close": -0.006987035279476541, - "ema_dist_entry": 0.0024496327799627595, - "ema_span_0": 959.2691077370772, - "ema_span_1": 530.4576415099391, - "enabled": true, - "markup_range": 0.059999835055654045, - "min_markup": 0.009810152625329732, - "n_close_orders": 10, - "qty_pct_close": 0.034032813890822654, - "qty_pct_entry": 0.018290596899693347, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.67027410712212}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1328.878591267137, - "delay_between_fills_minutes_entry": 550.3219842196634, - "delay_weight_close": 0.9804407473392209, - "delay_weight_entry": 5.786239825329727, - "ema_dist_close": 7.275055693767578e-05, - "ema_dist_entry": -0.00355615254320233, - "ema_span_0": 106.33683812044058, - "ema_span_1": 794.6006383466587, - "enabled": true, - "markup_range": 0.01092309873780066, - "min_markup": 0.008364862378434436, - "n_close_orders": 2, - "qty_pct_close": 0.010707242539433837, - "qty_pct_entry": 0.010367219725939932, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.37272273169245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MTLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MTLUSDT.json deleted file mode 100644 index 8391b5dfb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/MTLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1406.3974540495417, - "delay_between_fills_minutes_entry": 378.4325778760533, - "delay_weight_close": 87.43398438173638, - "delay_weight_entry": 8.733423810384176, - "ema_dist_close": -0.0040065907296755465, - "ema_dist_entry": -0.008751907780521801, - "ema_span_0": 1144.1423767109766, - "ema_span_1": 1141.5703211559555, - "enabled": true, - "markup_range": 0.0012814782998622478, - "min_markup": 0.008692590226134708, - "n_close_orders": 6, - "qty_pct_close": 0.013300934877726602, - "qty_pct_entry": 0.013265602165874512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.22797262586025}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1313.1268291117328, - "delay_between_fills_minutes_entry": 886.542217891262, - "delay_weight_close": 0, - "delay_weight_entry": 17.35306015124601, - "ema_dist_close": -0.001968365311010524, - "ema_dist_entry": -0.0004891699802945449, - "ema_span_0": 916.4505527833876, - "ema_span_1": 986.3777937221939, - "enabled": true, - "markup_range": 0.017680575056617066, - "min_markup": 0.009240790703387654, - "n_close_orders": 7, - "qty_pct_close": 0.011796157392248893, - "qty_pct_entry": 0.013122606461476234, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.795491387693982}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NEARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NEARUSDT.json deleted file mode 100644 index fb91e2716..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NEARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9253554801228, - "delay_between_fills_minutes_entry": 1058.1749897165043, - "delay_weight_close": 62.56008714884833, - "delay_weight_entry": 22.33430850058896, - "ema_dist_close": 0.0012528752523259616, - "ema_dist_entry": 0.0017359631913770853, - "ema_span_0": 443.0377165531001, - "ema_span_1": 558.4915425317798, - "enabled": true, - "markup_range": 0.01325921045686843, - "min_markup": 0.00878862946097054, - "n_close_orders": 4, - "qty_pct_close": 0.010261148033075925, - "qty_pct_entry": 0.010002782557238686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.71520253414462}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5447151240091, - "delay_between_fills_minutes_entry": 1305.9479354231535, - "delay_weight_close": 15.915405433539586, - "delay_weight_entry": 9.44627797651369, - "ema_dist_close": 0.0008493760569919213, - "ema_dist_entry": -0.01212730839701626, - "ema_span_0": 1312.002615653343, - "ema_span_1": 744.4901910174958, - "enabled": true, - "markup_range": 0.025834019512573244, - "min_markup": 0.006682369335563048, - "n_close_orders": 9, - "qty_pct_close": 0.010074652591539094, - "qty_pct_entry": 0.01180431264101569, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.5880467648708}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NEOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NEOUSDT.json deleted file mode 100644 index d9b3ce628..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NEOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 654.6958031432015, - "delay_between_fills_minutes_entry": 803.4493161331391, - "delay_weight_close": 0.01639386685437995, - "delay_weight_entry": 10.585343490724199, - "ema_dist_close": 0.002997932268851914, - "ema_dist_entry": -0.0066621625225603545, - "ema_span_0": 1339.8348424154478, - "ema_span_1": 539.218920999086, - "enabled": true, - "markup_range": 0.004933231963703429, - "min_markup": 0.005927919209333234, - "n_close_orders": 3, - "qty_pct_close": 0.016991533849611523, - "qty_pct_entry": 0.01596664461705345, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.94886006069896}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1417.1902168915133, - "delay_between_fills_minutes_entry": 350.28012075911886, - "delay_weight_close": 33.2437868438936, - "delay_weight_entry": 12.74811917133251, - "ema_dist_close": 0.0012402046860299904, - "ema_dist_entry": -0.012663295644172451, - "ema_span_0": 376.5289820718479, - "ema_span_1": 649.5073312835656, - "enabled": true, - "markup_range": 0.0012910836977354746, - "min_markup": 0.006384776541859271, - "n_close_orders": 4, - "qty_pct_close": 0.01265025831415459, - "qty_pct_entry": 0.01959003779537014, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.639940447826072}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NKNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NKNUSDT.json deleted file mode 100644 index 1cdff322a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/NKNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1219.5997365955889, - "delay_between_fills_minutes_entry": 805.3683601373691, - "delay_weight_close": 23.04821245846567, - "delay_weight_entry": 18.632402693804657, - "ema_dist_close": 0.002788246037967969, - "ema_dist_entry": -0.003875463138687093, - "ema_span_0": 575.3524306157072, - "ema_span_1": 773.5056361359033, - "enabled": true, - "markup_range": 0.007056192364564423, - "min_markup": 0.008604438811445323, - "n_close_orders": 2, - "qty_pct_close": 0.010951029178726401, - "qty_pct_entry": 0.017375292499264127, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.73140464860785}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 434.17532456020155, - "delay_between_fills_minutes_entry": 844.8390080874593, - "delay_weight_close": 6.54766048824612, - "delay_weight_entry": 19.60708372614642, - "ema_dist_close": 0.0006122537030016851, - "ema_dist_entry": 0.0021590591445903797, - "ema_span_0": 527.7604142026237, - "ema_span_1": 1231.201378790551, - "enabled": true, - "markup_range": 0.04217838676013018, - "min_markup": 0.009428548140937514, - "n_close_orders": 12, - "qty_pct_close": 0.023917246131970306, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.785114908743076}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OCEANUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OCEANUSDT.json deleted file mode 100644 index d8de2b9f0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OCEANUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1108.5032000597598, - "delay_between_fills_minutes_entry": 574.4674387971663, - "delay_weight_close": 85.80925957148601, - "delay_weight_entry": 10.378550695543465, - "ema_dist_close": 0.0022818543276066656, - "ema_dist_entry": -0.007197342308852878, - "ema_span_0": 805.3022666530929, - "ema_span_1": 778.4050087764397, - "enabled": true, - "markup_range": 0.046162700295672474, - "min_markup": 0.009157091213451443, - "n_close_orders": 8, - "qty_pct_close": 0.02918179300901772, - "qty_pct_entry": 0.016767195784041906, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 27.88624708204856}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1197.1115552320246, - "delay_between_fills_minutes_entry": 1033.3397396500156, - "delay_weight_close": 0.5797704048627198, - "delay_weight_entry": 9.783610494837463, - "ema_dist_close": -0.0020442351514203274, - "ema_dist_entry": -0.002147530840781547, - "ema_span_0": 841.1735143333051, - "ema_span_1": 660.8247747372732, - "enabled": true, - "markup_range": 0.012504433450859219, - "min_markup": 0.008676579657034429, - "n_close_orders": 10, - "qty_pct_close": 0.018676090157928947, - "qty_pct_entry": 0.029075865928173034, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.761860462186185}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OGNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OGNUSDT.json deleted file mode 100644 index 9e9dd0c83..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OGNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.5431969942304, - "delay_between_fills_minutes_entry": 1217.1391029972751, - "delay_weight_close": 8.477181480806856, - "delay_weight_entry": 11.527570779628244, - "ema_dist_close": 0.002124893361257764, - "ema_dist_entry": -0.0015777540854004961, - "ema_span_0": 1244.6029575219204, - "ema_span_1": 1265.1119573009812, - "enabled": true, - "markup_range": 0.059985041554948736, - "min_markup": 0.009824003828726547, - "n_close_orders": 3, - "qty_pct_close": 0.04603572948499628, - "qty_pct_entry": 0.010000015174658898, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.601152897378817}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.183804080341, - "delay_between_fills_minutes_entry": 856.231422014711, - "delay_weight_close": 77.61135444747464, - "delay_weight_entry": 8.377021925245762, - "ema_dist_close": 0.0028538894051970175, - "ema_dist_entry": -0.03128727996102496, - "ema_span_0": 1400.7081496556054, - "ema_span_1": 275.4705410474334, - "enabled": true, - "markup_range": 0.001711506393338193, - "min_markup": 0.009063782050319925, - "n_close_orders": 2, - "qty_pct_close": 0.010144440890874636, - "qty_pct_entry": 0.011037967647793502, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.07965940008806}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OMGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OMGUSDT.json deleted file mode 100644 index b8accac6a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OMGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1159.6651095583823, - "delay_between_fills_minutes_entry": 669.3273843198737, - "delay_weight_close": 26.87885264820224, - "delay_weight_entry": 23.28200126189329, - "ema_dist_close": 0.0024951449298176117, - "ema_dist_entry": 0.0013846413932976519, - "ema_span_0": 1160.6799197799883, - "ema_span_1": 346.3574850865747, - "enabled": true, - "markup_range": 0.00350040584470492, - "min_markup": 0.00751110388761178, - "n_close_orders": 2, - "qty_pct_close": 0.024771885837058544, - "qty_pct_entry": 0.020374668254080814, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.613437927102765}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 566.728048226077, - "delay_between_fills_minutes_entry": 98.60896944334999, - "delay_weight_close": 0.0012662552903666487, - "delay_weight_entry": 10.46322317873434, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008628095599072209, - "ema_span_0": 226.33627318454913, - "ema_span_1": 225.73496090568048, - "enabled": true, - "markup_range": 0.0026059276449264266, - "min_markup": 0.0040488502429980484, - "n_close_orders": 2, - "qty_pct_close": 0.010878416974961412, - "qty_pct_entry": 0.010011407123709742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.220265927651216}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ONEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ONEUSDT.json deleted file mode 100644 index 6150a1824..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ONEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1088.583416750614, - "delay_between_fills_minutes_entry": 792.4507659725243, - "delay_weight_close": 65.42238389799536, - "delay_weight_entry": 12.830346867656306, - "ema_dist_close": -0.002119624854989983, - "ema_dist_entry": 0.0015544721047252806, - "ema_span_0": 1265.2522213657214, - "ema_span_1": 1335.0483095828058, - "enabled": true, - "markup_range": 0.055356487943297776, - "min_markup": 0.006326758630168559, - "n_close_orders": 2, - "qty_pct_close": 0.01490044281158096, - "qty_pct_entry": 0.010079717350843617, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.810447565742179}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1287.4941565092554, - "delay_between_fills_minutes_entry": 689.4464843576683, - "delay_weight_close": 2.7245102787361155, - "delay_weight_entry": 5.699272424356302, - "ema_dist_close": -0.006658678994121317, - "ema_dist_entry": -0.009412793242884639, - "ema_span_0": 1185.4527240889165, - "ema_span_1": 1355.6471638930602, - "enabled": true, - "markup_range": 0.007251919676811635, - "min_markup": 0.006800278793274927, - "n_close_orders": 4, - "qty_pct_close": 0.01365340171017174, - "qty_pct_entry": 0.024784324531117098, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.01836573671166}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ONTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ONTUSDT.json deleted file mode 100644 index fa0e39949..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ONTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1365.046479667853, - "delay_between_fills_minutes_entry": 1293.434737008544, - "delay_weight_close": 73.29722305697162, - "delay_weight_entry": 13.326778735326585, - "ema_dist_close": 0.0025882133180687716, - "ema_dist_entry": -0.0027224076324272382, - "ema_span_0": 17.506183423994493, - "ema_span_1": 1283.3000647072704, - "enabled": true, - "markup_range": 0.05774273705359317, - "min_markup": 0.009485446459066146, - "n_close_orders": 15, - "qty_pct_close": 0.011193045618335461, - "qty_pct_entry": 0.013219121950708295, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.369119323575973}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1101.288587233145, - "delay_between_fills_minutes_entry": 940.9376233342456, - "delay_weight_close": 77.65457203804546, - "delay_weight_entry": 13.591401374361316, - "ema_dist_close": 0.002316045776734576, - "ema_dist_entry": -0.0020343002454001335, - "ema_span_0": 1280.4058027609178, - "ema_span_1": 363.72378256013627, - "enabled": true, - "markup_range": 0.031919726409956745, - "min_markup": 0.006734706274259174, - "n_close_orders": 5, - "qty_pct_close": 0.023623705160511134, - "qty_pct_entry": 0.018654301569041208, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.62153955927332}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OPUSDT.json deleted file mode 100644 index 000288df5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/OPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 293.70687625681643, - "delay_between_fills_minutes_entry": 999.5086184443795, - "delay_weight_close": 51.56174391538608, - "delay_weight_entry": 12.576532002033808, - "ema_dist_close": 0.0013659725116953751, - "ema_dist_entry": 0.0029989141756895732, - "ema_span_0": 567.5175926780402, - "ema_span_1": 1338.9044460641064, - "enabled": true, - "markup_range": 0.05649993822704228, - "min_markup": 0.008347886755904008, - "n_close_orders": 3, - "qty_pct_close": 0.012381902213424213, - "qty_pct_entry": 0.01645201624985261, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 31.66039500666277}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.0848576729929, - "delay_between_fills_minutes_entry": 239.17513247725657, - "delay_weight_close": 1.0585433165932296, - "delay_weight_entry": 15.701756960939994, - "ema_dist_close": 0.0016768443296472256, - "ema_dist_entry": 0.0019883577707560034, - "ema_span_0": 1123.1088331257201, - "ema_span_1": 848.55623358652, - "enabled": true, - "markup_range": 0.0030477229422319865, - "min_markup": 0.002129235855412888, - "n_close_orders": 6, - "qty_pct_close": 0.02458667390083907, - "qty_pct_entry": 0.01077738268024867, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.237575293267106}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PEOPLEUSDT.json deleted file mode 100644 index fb35750a0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PEOPLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.5431969942304, - "delay_between_fills_minutes_entry": 1217.1391029972751, - "delay_weight_close": 8.477181480806856, - "delay_weight_entry": 11.527570779628244, - "ema_dist_close": 0.002124893361257764, - "ema_dist_entry": -0.0015777540854004961, - "ema_span_0": 1244.6029575219204, - "ema_span_1": 1265.1119573009812, - "enabled": true, - "markup_range": 0.059985041554948736, - "min_markup": 0.009824003828726547, - "n_close_orders": 3, - "qty_pct_close": 0.04603572948499628, - "qty_pct_entry": 0.010000015174658898, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.601152897378817}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1328.878591267137, - "delay_between_fills_minutes_entry": 550.3219842196634, - "delay_weight_close": 0.9804407473392209, - "delay_weight_entry": 5.786239825329727, - "ema_dist_close": 7.275055693767578e-05, - "ema_dist_entry": -0.00355615254320233, - "ema_span_0": 106.33683812044058, - "ema_span_1": 794.6006383466587, - "enabled": true, - "markup_range": 0.01092309873780066, - "min_markup": 0.008364862378434436, - "n_close_orders": 2, - "qty_pct_close": 0.010707242539433837, - "qty_pct_entry": 0.010367219725939932, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.37272273169245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PERPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PERPUSDT.json deleted file mode 100644 index 7c8358af3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PERPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.7251287489978, - "delay_between_fills_minutes_entry": 1368.9417669244547, - "delay_weight_close": 52.080559997541116, - "delay_weight_entry": 14.35100158682418, - "ema_dist_close": 0.0013851099716046455, - "ema_dist_entry": -0.006535074873298663, - "ema_span_0": 1303.5929483877521, - "ema_span_1": 1083.6604834514114, - "enabled": true, - "markup_range": 0.05995219910985276, - "min_markup": 0.006745378794126493, - "n_close_orders": 8, - "qty_pct_close": 0.01012232836336567, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 14.198182066801985}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.0848576729929, - "delay_between_fills_minutes_entry": 239.17513247725657, - "delay_weight_close": 1.0585433165932296, - "delay_weight_entry": 15.701756960939994, - "ema_dist_close": 0.0016768443296472256, - "ema_dist_entry": 0.0019883577707560034, - "ema_span_0": 1123.1088331257201, - "ema_span_1": 848.55623358652, - "enabled": true, - "markup_range": 0.0030477229422319865, - "min_markup": 0.002129235855412888, - "n_close_orders": 6, - "qty_pct_close": 0.02458667390083907, - "qty_pct_entry": 0.01077738268024867, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.237575293267106}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PHBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PHBUSDT.json deleted file mode 100644 index 2b46ebc89..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/PHBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.4228997166551, - "delay_between_fills_minutes_entry": 437.50572466776816, - "delay_weight_close": 36.92847403841083, - "delay_weight_entry": 16.41640684872258, - "ema_dist_close": 0.0011021109710447872, - "ema_dist_entry": 0.0007266393251653801, - "ema_span_0": 421.33638238850585, - "ema_span_1": 1256.7190693025216, - "enabled": true, - "markup_range": 0.0037832946153474245, - "min_markup": 0.0039024852082578184, - "n_close_orders": 5, - "qty_pct_close": 0.010000043298117066, - "qty_pct_entry": 0.014887908549513157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.717525304465113}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1200.0384094505598, - "delay_between_fills_minutes_entry": 185.4105931583722, - "delay_weight_close": 85.88471544519933, - "delay_weight_entry": 14.173236943159687, - "ema_dist_close": -0.004105369147328522, - "ema_dist_entry": -0.003844962019204651, - "ema_span_0": 101.79145462884337, - "ema_span_1": 1302.613647011827, - "enabled": true, - "markup_range": 0.007233876323629317, - "min_markup": 0.00540642448134144, - "n_close_orders": 6, - "qty_pct_close": 0.010674387716191691, - "qty_pct_entry": 0.010000028922995103, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.34723440871483}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/QNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/QNTUSDT.json deleted file mode 100644 index 479f5ca86..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/QNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.4921309098024, - "delay_between_fills_minutes_entry": 718.2712679058071, - "delay_weight_close": 77.55308977578495, - "delay_weight_entry": 14.391229426377867, - "ema_dist_close": -0.006078357697134095, - "ema_dist_entry": 0.001057995801127121, - "ema_span_0": 1208.4038604855607, - "ema_span_1": 1148.0751538552831, - "enabled": true, - "markup_range": 0.010539649158545022, - "min_markup": 0.0030119762467005467, - "n_close_orders": 15, - "qty_pct_close": 0.018595823751106383, - "qty_pct_entry": 0.01407999316615146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.849083327883314}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1361.31935882045, - "delay_between_fills_minutes_entry": 727.7648058007296, - "delay_weight_close": 84.18786850807581, - "delay_weight_entry": 6.232580222061173, - "ema_dist_close": -0.000810011841675314, - "ema_dist_entry": -0.0008521992926288423, - "ema_span_0": 723.2266394885947, - "ema_span_1": 40.046580207887125, - "enabled": true, - "markup_range": 0.04440345780719436, - "min_markup": 0.0064006743155898835, - "n_close_orders": 9, - "qty_pct_close": 0.01495723555989348, - "qty_pct_entry": 0.01493063292485232, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.984120685788945}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/QTUMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/QTUMUSDT.json deleted file mode 100644 index b7f32c244..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/QTUMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1264.2899220669867, - "delay_between_fills_minutes_entry": 720.0147764905921, - "delay_weight_close": 98.3425658881456, - "delay_weight_entry": 11.473510181825839, - "ema_dist_close": 0.00032141033395131956, - "ema_dist_entry": -0.006851733516050179, - "ema_span_0": 350.87964321744, - "ema_span_1": 1156.6514055599885, - "enabled": true, - "markup_range": 0.050203127759222616, - "min_markup": 0.009594450494405986, - "n_close_orders": 10, - "qty_pct_close": 0.012978439346462428, - "qty_pct_entry": 0.011547181316530116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.68916371056841}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.5861351921985, - "delay_between_fills_minutes_entry": 1163.0201989779457, - "delay_weight_close": 7.676296977031416, - "delay_weight_entry": 12.42459324557236, - "ema_dist_close": 0.0011475715097931313, - "ema_dist_entry": -0.001777270414721602, - "ema_span_0": 1333.3080620081596, - "ema_span_1": 1369.5722560444972, - "enabled": true, - "markup_range": 0.023997456094848196, - "min_markup": 0.009534751664541348, - "n_close_orders": 3, - "qty_pct_close": 0.013412861085774856, - "qty_pct_entry": 0.012970337402581508, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.96249835361664}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RADUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RADUSDT.json deleted file mode 100644 index ad655b311..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RADUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1184.3615944910123, - "delay_between_fills_minutes_entry": 1316.6598694856843, - "delay_weight_close": 22.216220423949164, - "delay_weight_entry": 14.865104379084425, - "ema_dist_close": 0.0012823448749537177, - "ema_dist_entry": 0.002502092258008941, - "ema_span_0": 954.9415062627131, - "ema_span_1": 457.9176932314965, - "enabled": true, - "markup_range": 0.05537256221278992, - "min_markup": 0.008997769337391387, - "n_close_orders": 12, - "qty_pct_close": 0.04205694962398605, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.54322583474827}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RAYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RAYUSDT.json deleted file mode 100644 index 06eedb2eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1343.1514291768597, - "delay_between_fills_minutes_entry": 404.55371661483156, - "delay_weight_close": 31.438628640993986, - "delay_weight_entry": 7.5510640459077605, - "ema_dist_close": -0.004163223603453775, - "ema_dist_entry": -0.022851747478670817, - "ema_span_0": 164.66568464641952, - "ema_span_1": 1439.615532630955, - "enabled": true, - "markup_range": 0.010800188560475325, - "min_markup": 0.007246739002352616, - "n_close_orders": 3, - "qty_pct_close": 0.03284341650052076, - "qty_pct_entry": 0.0117934565552453, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.087860575465168}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RDNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RDNTUSDT.json deleted file mode 100644 index fcfd1a0e4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RDNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1108.5032000597598, - "delay_between_fills_minutes_entry": 574.4674387971663, - "delay_weight_close": 85.80925957148601, - "delay_weight_entry": 10.378550695543465, - "ema_dist_close": 0.0022818543276066656, - "ema_dist_entry": -0.007197342308852878, - "ema_span_0": 805.3022666530929, - "ema_span_1": 778.4050087764397, - "enabled": true, - "markup_range": 0.046162700295672474, - "min_markup": 0.009157091213451443, - "n_close_orders": 8, - "qty_pct_close": 0.02918179300901772, - "qty_pct_entry": 0.016767195784041906, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 27.88624708204856}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1348.1061415356871, - "delay_between_fills_minutes_entry": 457.1834448205697, - "delay_weight_close": 51.23671296008696, - "delay_weight_entry": 10.742247314414094, - "ema_dist_close": 0.0024100200215017124, - "ema_dist_entry": -0.009803025118896535, - "ema_span_0": 1362.0537037964243, - "ema_span_1": 620.1588569258116, - "enabled": true, - "markup_range": 0.007309862068440085, - "min_markup": 0.009476818944453411, - "n_close_orders": 7, - "qty_pct_close": 0.017099324105575044, - "qty_pct_entry": 0.01352177797583301, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.719350723316104}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/REEFUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/REEFUSDT.json deleted file mode 100644 index df9203a82..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/REEFUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1211.9271682590809, - "delay_between_fills_minutes_entry": 1095.3269501133077, - "delay_weight_close": 41.11770967367582, - "delay_weight_entry": 13.950926398146946, - "ema_dist_close": 0.0029552657403304683, - "ema_dist_entry": -0.04024932299776792, - "ema_span_0": 1416.1963484304154, - "ema_span_1": 25.54144367676385, - "enabled": true, - "markup_range": 0.059872018942431465, - "min_markup": 0.00807317862274566, - "n_close_orders": 13, - "qty_pct_close": 0.018691764804111076, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.598245393894894}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RENUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RENUSDT.json deleted file mode 100644 index 42ba6566e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 813.1710008076656, - "delay_between_fills_minutes_entry": 977.6229927132322, - "delay_weight_close": 0.004667652369655633, - "delay_weight_entry": 9.395078689581327, - "ema_dist_close": -0.0045990529774563695, - "ema_dist_entry": 0.002981874877788522, - "ema_span_0": 1313.3138466454357, - "ema_span_1": 1160.5615321378627, - "enabled": true, - "markup_range": 0.030942547188390804, - "min_markup": 0.00945922609421852, - "n_close_orders": 8, - "qty_pct_close": 0.010000570762521584, - "qty_pct_entry": 0.010464698333989917, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5447151240091, - "delay_between_fills_minutes_entry": 1305.9479354231535, - "delay_weight_close": 15.915405433539586, - "delay_weight_entry": 9.44627797651369, - "ema_dist_close": 0.0008493760569919213, - "ema_dist_entry": -0.01212730839701626, - "ema_span_0": 1312.002615653343, - "ema_span_1": 744.4901910174958, - "enabled": true, - "markup_range": 0.025834019512573244, - "min_markup": 0.006682369335563048, - "n_close_orders": 9, - "qty_pct_close": 0.010074652591539094, - "qty_pct_entry": 0.01180431264101569, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.5880467648708}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RLCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RLCUSDT.json deleted file mode 100644 index 19b1e9e8d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RLCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 982.8311829849632, - "delay_between_fills_minutes_entry": 1023.4864946008245, - "delay_weight_close": 69.32721477626221, - "delay_weight_entry": 12.826334471002193, - "ema_dist_close": -0.005128077063202494, - "ema_dist_entry": 0.0010418981592120356, - "ema_span_0": 956.1674575696144, - "ema_span_1": 1076.9062803203349, - "enabled": true, - "markup_range": 0.05718504506770558, - "min_markup": 0.006873655665044001, - "n_close_orders": 13, - "qty_pct_close": 0.010026187680417764, - "qty_pct_entry": 0.013171739602827321, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.378715593221976}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 999.6915163031085, - "delay_between_fills_minutes_entry": 219.04233460138371, - "delay_weight_close": 86.45647898492476, - "delay_weight_entry": 2.3188902561557776, - "ema_dist_close": -0.008096323658665661, - "ema_dist_entry": -0.017406889991869675, - "ema_span_0": 1333.7383781609303, - "ema_span_1": 1209.850884266456, - "enabled": true, - "markup_range": 0.005765505564388796, - "min_markup": 0.006926583383134831, - "n_close_orders": 13, - "qty_pct_close": 0.014534818765630628, - "qty_pct_entry": 0.013657205483004729, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.1430187592146}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RNDRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RNDRUSDT.json deleted file mode 100644 index d7b9f4a56..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RNDRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.4429205737542, - "delay_between_fills_minutes_entry": 1345.3675628822427, - "delay_weight_close": 64.60184521639349, - "delay_weight_entry": 12.204087943002815, - "ema_dist_close": -0.004810660317730696, - "ema_dist_entry": 0.0029195137862580724, - "ema_span_0": 1150.7586832226953, - "ema_span_1": 1422.6048754589658, - "enabled": true, - "markup_range": 0.04088218740466626, - "min_markup": 0.008484854767347982, - "n_close_orders": 8, - "qty_pct_close": 0.01178290011936797, - "qty_pct_entry": 0.02112233710916093, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.199918948348532}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1321.2675210966815, - "delay_between_fills_minutes_entry": 727.7725982018825, - "delay_weight_close": 6.836134141876794, - "delay_weight_entry": 11.002862847951572, - "ema_dist_close": 0.002013196846451799, - "ema_dist_entry": -0.008930693813716625, - "ema_span_0": 24.27859997905422, - "ema_span_1": 1413.7713189270837, - "enabled": true, - "markup_range": 0.008463363353096822, - "min_markup": 0.007196949403276555, - "n_close_orders": 3, - "qty_pct_close": 0.010298566594961546, - "qty_pct_entry": 0.012072212183469164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.428587507278299}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ROSEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ROSEUSDT.json deleted file mode 100644 index c4b05136a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ROSEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 944.595186915099, - "delay_between_fills_minutes_entry": 1241.6005802092168, - "delay_weight_close": 25.22755352350961, - "delay_weight_entry": 8.250738066414259, - "ema_dist_close": -0.005757489004711124, - "ema_dist_entry": 0.0026788883775021323, - "ema_span_0": 1417.2523725104747, - "ema_span_1": 1165.1109914415297, - "enabled": true, - "markup_range": 0.06, - "min_markup": 0.009283327402618264, - "n_close_orders": 14, - "qty_pct_close": 0.010001829705099692, - "qty_pct_entry": 0.01041361672681173, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.603347550281335}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 763.5675900024833, - "delay_between_fills_minutes_entry": 336.84996844680137, - "delay_weight_close": 4.172444629417019, - "delay_weight_entry": 27.8970181184327, - "ema_dist_close": 0.002012414010929426, - "ema_dist_entry": -0.003881516841071233, - "ema_span_0": 1372.6604059898161, - "ema_span_1": 5.161901919134253, - "enabled": true, - "markup_range": 0.004525559065348018, - "min_markup": 0.0035442968743519122, - "n_close_orders": 5, - "qty_pct_close": 0.010055680846827206, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.588144695321444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RSRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RSRUSDT.json deleted file mode 100644 index 10abb4711..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RSRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 734.6231208453357, - "delay_between_fills_minutes_entry": 733.0301262782347, - "delay_weight_close": 62.79433788138004, - "delay_weight_entry": 9.652242632829257, - "ema_dist_close": 0.00018762902844731376, - "ema_dist_entry": 0.0006985318435874562, - "ema_span_0": 1370.4615068926796, - "ema_span_1": 447.5717431297351, - "enabled": true, - "markup_range": 0.059687865062258295, - "min_markup": 0.009658547225832807, - "n_close_orders": 6, - "qty_pct_close": 0.03893253060984516, - "qty_pct_entry": 0.010026960378728174, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.737812585898673}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.288814622799, - "delay_between_fills_minutes_entry": 505.0734075441379, - "delay_weight_close": 11.869349083806261, - "delay_weight_entry": 5.942625843648699, - "ema_dist_close": 0.00036914505235652746, - "ema_dist_entry": -0.004002585449369781, - "ema_span_0": 1375.7111256869875, - "ema_span_1": 1379.8553989479817, - "enabled": true, - "markup_range": 0.008758055892309713, - "min_markup": 0.007265202514993668, - "n_close_orders": 3, - "qty_pct_close": 0.010044171160764406, - "qty_pct_entry": 0.01551158000586426, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.98536267031256}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RUNEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RUNEUSDT.json deleted file mode 100644 index b23476808..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RUNEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.0636098065133, - "delay_between_fills_minutes_entry": 798.502260367961, - "delay_weight_close": 30.477516790932157, - "delay_weight_entry": 21.10543446156291, - "ema_dist_close": 0.002973276904120137, - "ema_dist_entry": -0.0005553679394201689, - "ema_span_0": 1440, - "ema_span_1": 504.08310601043263, - "enabled": true, - "markup_range": 0.004493165389027749, - "min_markup": 0.0061528466495038665, - "n_close_orders": 16, - "qty_pct_close": 0.02182249387411718, - "qty_pct_entry": 0.018367512315419023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.887677630148254}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 1058.3116740480627, - "delay_weight_close": 93.03081347851217, - "delay_weight_entry": 19.26015518343066, - "ema_dist_close": 0.0013990915695115613, - "ema_dist_entry": 0.003, - "ema_span_0": 383.86416783207954, - "ema_span_1": 1392.9197316580091, - "enabled": true, - "markup_range": 0.02869552227678365, - "min_markup": 0.002720316539810155, - "n_close_orders": 13, - "qty_pct_close": 0.010001538908376451, - "qty_pct_entry": 0.021720295510667825, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.54155146131146}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RVNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RVNUSDT.json deleted file mode 100644 index f9628a843..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/RVNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1366.321098540098, - "delay_between_fills_minutes_entry": 636.6337648428845, - "delay_weight_close": 57.90623687779367, - "delay_weight_entry": 28.138124492837324, - "ema_dist_close": -0.006841493013846575, - "ema_dist_entry": -0.003633649145628234, - "ema_span_0": 695.6854576945196, - "ema_span_1": 1300.4606286630358, - "enabled": true, - "markup_range": 0.007890613476048948, - "min_markup": 0.004840723163864273, - "n_close_orders": 2, - "qty_pct_close": 0.010035626410775442, - "qty_pct_entry": 0.010027664660164281, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.053343943918165}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.8663225398805, - "delay_between_fills_minutes_entry": 699.2552274465102, - "delay_weight_close": 55.70129807181973, - "delay_weight_entry": 2.9638738258643085, - "ema_dist_close": 0.0009776099269683497, - "ema_dist_entry": -0.009591842011187297, - "ema_span_0": 1385.7780411548738, - "ema_span_1": 120.02851628778701, - "enabled": true, - "markup_range": 0.0076406832269945955, - "min_markup": 0.009975180521982567, - "n_close_orders": 8, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01294531967484724, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.35160553976573}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SANDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SANDUSDT.json deleted file mode 100644 index 7856e87ed..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1009.8803691302281, - "delay_between_fills_minutes_entry": 1381.7794576730596, - "delay_weight_close": 48.359302367509486, - "delay_weight_entry": 14.590405328286419, - "ema_dist_close": -0.004834705182997897, - "ema_dist_entry": -0.001345088049458951, - "ema_span_0": 1256.0234486705854, - "ema_span_1": 1160.7769695747395, - "enabled": true, - "markup_range": 0.058530115894761675, - "min_markup": 0.009387116249362051, - "n_close_orders": 11, - "qty_pct_close": 0.013285932512981123, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.09496643164342}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1200.0384094505598, - "delay_between_fills_minutes_entry": 185.4105931583722, - "delay_weight_close": 85.88471544519933, - "delay_weight_entry": 14.173236943159687, - "ema_dist_close": -0.004105369147328522, - "ema_dist_entry": -0.003844962019204651, - "ema_span_0": 101.79145462884337, - "ema_span_1": 1302.613647011827, - "enabled": true, - "markup_range": 0.007233876323629317, - "min_markup": 0.00540642448134144, - "n_close_orders": 6, - "qty_pct_close": 0.010674387716191691, - "qty_pct_entry": 0.010000028922995103, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.34723440871483}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SCUSDT.json deleted file mode 100644 index 15d1e7235..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 744.4810125148975, - "delay_between_fills_minutes_entry": 1242.1629980036607, - "delay_weight_close": 57.66456962562457, - "delay_weight_entry": 11.206906608416924, - "ema_dist_close": -0.007230395116467442, - "ema_dist_entry": 0.0011836120673538904, - "ema_span_0": 1192.3998575874548, - "ema_span_1": 1374.9754848941254, - "enabled": true, - "markup_range": 0.05985693068870404, - "min_markup": 0.00945209486873432, - "n_close_orders": 11, - "qty_pct_close": 0.010002690004590944, - "qty_pct_entry": 0.010542268550820926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.079680604127681}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1116.0817647121885, - "delay_between_fills_minutes_entry": 956.0495444539068, - "delay_weight_close": 5.591015040430978e-06, - "delay_weight_entry": 23.26089660587444, - "ema_dist_close": -0.007874086586600786, - "ema_dist_entry": 0.0020579986936594104, - "ema_span_0": 1340.1207341667107, - "ema_span_1": 620.85068093625, - "enabled": true, - "markup_range": 0.02005348848150134, - "min_markup": 0.008853938854497142, - "n_close_orders": 13, - "qty_pct_close": 0.03274528238493289, - "qty_pct_entry": 0.010057925874552492, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.413118808600505}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SFPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SFPUSDT.json deleted file mode 100644 index 562478626..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SFPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1197.268000231571, - "delay_between_fills_minutes_entry": 1073.4974875142968, - "delay_weight_close": 1.2308561287360629, - "delay_weight_entry": 11.281286383825147, - "ema_dist_close": -0.0004784065566439598, - "ema_dist_entry": -0.0010697900065744436, - "ema_span_0": 1439.0216650617167, - "ema_span_1": 1312.5667990221527, - "enabled": true, - "markup_range": 0.019089165618750778, - "min_markup": 0.006483016827764733, - "n_close_orders": 4, - "qty_pct_close": 0.010529673738567266, - "qty_pct_entry": 0.010377294258689811, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 725.1554744337141, - "delay_between_fills_minutes_entry": 365.2029793344823, - "delay_weight_close": 65.73940237271118, - "delay_weight_entry": 3.13657896875017, - "ema_dist_close": 0.0029746683296105803, - "ema_dist_entry": -0.0014555953360011465, - "ema_span_0": 1028.9346492808352, - "ema_span_1": 1324.8648865365885, - "enabled": true, - "markup_range": 0.05296354245585062, - "min_markup": 0.00761578088841487, - "n_close_orders": 13, - "qty_pct_close": 0.010136437171934982, - "qty_pct_entry": 0.010000512039589713, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.63636886350964}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SKLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SKLUSDT.json deleted file mode 100644 index 6a5bf587b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SKLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1157.227476071195, - "delay_between_fills_minutes_entry": 977.8389047949383, - "delay_weight_close": 60.66086193293825, - "delay_weight_entry": 13.441564364498683, - "ema_dist_close": -0.003990224558507403, - "ema_dist_entry": -0.0036163985940773115, - "ema_span_0": 1406.2710088954543, - "ema_span_1": 1375.554234498203, - "enabled": true, - "markup_range": 0.05215326301593328, - "min_markup": 0.008564274573875189, - "n_close_orders": 9, - "qty_pct_close": 0.014231114762714322, - "qty_pct_entry": 0.010089693496653951, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.264685699357464}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.438461698076, - "delay_between_fills_minutes_entry": 518.2197298141022, - "delay_weight_close": 33.13744585731118, - "delay_weight_entry": 14.610525150176242, - "ema_dist_close": 0.0024549091780419613, - "ema_dist_entry": 5.120102437422563e-05, - "ema_span_0": 1020.4481241665924, - "ema_span_1": 1392.8826532146775, - "enabled": true, - "markup_range": 0.0055021797541749485, - "min_markup": 0.006696941347794871, - "n_close_orders": 12, - "qty_pct_close": 0.010008133885505208, - "qty_pct_entry": 0.019017355141433396, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.48543442255429}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SNXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SNXUSDT.json deleted file mode 100644 index 6332a316a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1172.1327543666607, - "delay_between_fills_minutes_entry": 1372.9755441108782, - "delay_weight_close": 99.96427707559889, - "delay_weight_entry": 20.202274657649646, - "ema_dist_close": -0.009152028177640634, - "ema_dist_entry": 0.002917064698620786, - "ema_span_0": 415.219517221667, - "ema_span_1": 1216.9287588862765, - "enabled": true, - "markup_range": 0.04056592458267555, - "min_markup": 0.007027365997794305, - "n_close_orders": 11, - "qty_pct_close": 0.02823934231808025, - "qty_pct_entry": 0.011689935053645356, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99982774553881}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 362.64099906152967, - "delay_weight_close": 1.843195581117984, - "delay_weight_entry": 7.401766460243269, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.0017059768163516177, - "ema_span_0": 1203.9067705248688, - "ema_span_1": 770.537989167252, - "enabled": true, - "markup_range": 0.005932370991504523, - "min_markup": 0.005091081987563444, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01534260023849681, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99826273667449}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SOLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SOLUSDT.json deleted file mode 100644 index c84e81c79..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SOLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 339.9380193664034, - "delay_between_fills_minutes_entry": 730.8681042203965, - "delay_weight_close": 83.55745655127429, - "delay_weight_entry": 13.353996562088929, - "ema_dist_close": 0.0017689960927887477, - "ema_dist_entry": 0.0026949674100731663, - "ema_span_0": 1203.612653402212, - "ema_span_1": 978.4219950254873, - "enabled": true, - "markup_range": 0.0026035454582995082, - "min_markup": 0.008483235097305586, - "n_close_orders": 2, - "qty_pct_close": 0.026561697048210993, - "qty_pct_entry": 0.03515215978944493, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.00117636599077}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1321.2675210966815, - "delay_between_fills_minutes_entry": 727.7725982018825, - "delay_weight_close": 6.836134141876794, - "delay_weight_entry": 11.002862847951572, - "ema_dist_close": 0.002013196846451799, - "ema_dist_entry": -0.008930693813716625, - "ema_span_0": 24.27859997905422, - "ema_span_1": 1413.7713189270837, - "enabled": true, - "markup_range": 0.008463363353096822, - "min_markup": 0.007196949403276555, - "n_close_orders": 3, - "qty_pct_close": 0.010298566594961546, - "qty_pct_entry": 0.012072212183469164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.428587507278299}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SPELLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SPELLUSDT.json deleted file mode 100644 index ef68f1919..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SPELLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.0710539137312, - "delay_between_fills_minutes_entry": 1342.012115966861, - "delay_weight_close": 0.9087274495366522, - "delay_weight_entry": 11.47095079946854, - "ema_dist_close": -0.005179843032700449, - "ema_dist_entry": -0.00492561507015492, - "ema_span_0": 372.35420550671495, - "ema_span_1": 1397.3402519607769, - "enabled": true, - "markup_range": 0.041833040462485954, - "min_markup": 0.009838251801906674, - "n_close_orders": 4, - "qty_pct_close": 0.024536213051887797, - "qty_pct_entry": 0.010194813108889719, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.78773506030617}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.908049581273, - "delay_between_fills_minutes_entry": 59.74076689517965, - "delay_weight_close": 25.279307079735386, - "delay_weight_entry": 0.03610005714272519, - "ema_dist_close": -0.001631463132074381, - "ema_dist_entry": 0.0027795674082172943, - "ema_span_0": 1193.7477154980545, - "ema_span_1": 1189.3415874690265, - "enabled": true, - "markup_range": 0.0, - "min_markup": 0.005992141460953038, - "n_close_orders": 2, - "qty_pct_close": 0.021849933068977704, - "qty_pct_entry": 0.010131751468933482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.001014448562444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SRMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SRMUSDT.json deleted file mode 100644 index e4bc5ded8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SRMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.6928757398614, - "delay_between_fills_minutes_entry": 1292.1071092608831, - "delay_weight_close": 51.10241134800901, - "delay_weight_entry": 10.422684674498388, - "ema_dist_close": -0.008468550520503762, - "ema_dist_entry": -0.0008732906790591245, - "ema_span_0": 539.3853897239002, - "ema_span_1": 1081.0530360050282, - "enabled": true, - "markup_range": 0.058878261595520794, - "min_markup": 0.009871141399658608, - "n_close_orders": 10, - "qty_pct_close": 0.011089060831768449, - "qty_pct_entry": 0.011643727667976063, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.309220699157697}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.183804080341, - "delay_between_fills_minutes_entry": 856.231422014711, - "delay_weight_close": 77.61135444747464, - "delay_weight_entry": 8.377021925245762, - "ema_dist_close": 0.0028538894051970175, - "ema_dist_entry": -0.03128727996102496, - "ema_span_0": 1400.7081496556054, - "ema_span_1": 275.4705410474334, - "enabled": true, - "markup_range": 0.001711506393338193, - "min_markup": 0.009063782050319925, - "n_close_orders": 2, - "qty_pct_close": 0.010144440890874636, - "qty_pct_entry": 0.011037967647793502, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.07965940008806}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SSVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SSVUSDT.json deleted file mode 100644 index 242ead3ac..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SSVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 982.1114384601992, - "delay_between_fills_minutes_entry": 1217.8570757792088, - "delay_weight_close": 27.35979816168313, - "delay_weight_entry": 9.896339717571426, - "ema_dist_close": 0.001852286567782835, - "ema_dist_entry": -0.0063302454593886365, - "ema_span_0": 1288.6178079055449, - "ema_span_1": 458.99927260504467, - "enabled": true, - "markup_range": 0.059316436372411054, - "min_markup": 0.007669512440158862, - "n_close_orders": 15, - "qty_pct_close": 0.0128413242116296, - "qty_pct_entry": 0.01023561794315263, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.642606902901733}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 729.1350138907183, - "delay_between_fills_minutes_entry": 598.7898929680617, - "delay_weight_close": 39.537725601653314, - "delay_weight_entry": 14.44867498613962, - "ema_dist_close": -0.0011354454788494216, - "ema_dist_entry": -0.0012940755945746738, - "ema_span_0": 1119.5058111512767, - "ema_span_1": 1194.9717678809754, - "enabled": true, - "markup_range": 0.0416279400474618, - "min_markup": 0.009601458167185216, - "n_close_orders": 4, - "qty_pct_close": 0.011922970112818086, - "qty_pct_entry": 0.011684819395771219, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.417952931407}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STGUSDT.json deleted file mode 100644 index e1ff933c6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1197.268000231571, - "delay_between_fills_minutes_entry": 1073.4974875142968, - "delay_weight_close": 1.2308561287360629, - "delay_weight_entry": 11.281286383825147, - "ema_dist_close": -0.0004784065566439598, - "ema_dist_entry": -0.0010697900065744436, - "ema_span_0": 1439.0216650617167, - "ema_span_1": 1312.5667990221527, - "enabled": true, - "markup_range": 0.019089165618750778, - "min_markup": 0.006483016827764733, - "n_close_orders": 4, - "qty_pct_close": 0.010529673738567266, - "qty_pct_entry": 0.010377294258689811, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1244.208032934712, - "delay_between_fills_minutes_entry": 291.37631532692063, - "delay_weight_close": 0.5332347020377187, - "delay_weight_entry": 35.28572265040823, - "ema_dist_close": 0.0029833280503946736, - "ema_dist_entry": -0.016364546519555972, - "ema_span_0": 1126.6013172706737, - "ema_span_1": 1151.2916518957898, - "enabled": true, - "markup_range": 0.003188719538592488, - "min_markup": 0.0016803836309737424, - "n_close_orders": 4, - "qty_pct_close": 0.011366066845799494, - "qty_pct_entry": 0.010000042175164833, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.12928491568566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STMXUSDT.json deleted file mode 100644 index fa05be3b5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1397.8199291138544, - "delay_between_fills_minutes_entry": 793.1004339866311, - "delay_weight_close": 54.16698659813556, - "delay_weight_entry": 11.304365076226238, - "ema_dist_close": 0.002733527861907303, - "ema_dist_entry": -0.000346237700325354, - "ema_span_0": 521.6924137710201, - "ema_span_1": 754.3854297676163, - "enabled": true, - "markup_range": 0.00675618003034359, - "min_markup": 0.00964021986412634, - "n_close_orders": 3, - "qty_pct_close": 0.01270611205690984, - "qty_pct_entry": 0.012330519289802042, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.15137992696264}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1365.218153140893, - "delay_between_fills_minutes_entry": 1350.5075608555926, - "delay_weight_close": 13.580280653396164, - "delay_weight_entry": 25.36420631891444, - "ema_dist_close": 0.00204903525645929, - "ema_dist_entry": -0.0004356756058713487, - "ema_span_0": 856.7593611541131, - "ema_span_1": 1299.9574699113214, - "enabled": true, - "markup_range": 0.014358185985197683, - "min_markup": 0.0075257220521353285, - "n_close_orders": 6, - "qty_pct_close": 0.012247170126448331, - "qty_pct_entry": 0.010483529709128362, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.19590025484518}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STORJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STORJUSDT.json deleted file mode 100644 index af743de5f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STORJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.8783282364853, - "delay_between_fills_minutes_entry": 1356.3122129115925, - "delay_weight_close": 98.88522291288257, - "delay_weight_entry": 15.553155211456204, - "ema_dist_close": -0.009732925906375011, - "ema_dist_entry": 0.0009699458756196528, - "ema_span_0": 779.2455770473497, - "ema_span_1": 1171.5327660203245, - "enabled": true, - "markup_range": 0.03364713965002472, - "min_markup": 0.007213230196896175, - "n_close_orders": 10, - "qty_pct_close": 0.019217157511579448, - "qty_pct_entry": 0.010296292114413306, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.222704445038595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 900.1436240848946, - "delay_between_fills_minutes_entry": 223.36252713597216, - "delay_weight_close": 47.01588688085706, - "delay_weight_entry": 7.668027403995091, - "ema_dist_close": 0.0018177354934588346, - "ema_dist_entry": -0.004400821313674264, - "ema_span_0": 189.23419442828342, - "ema_span_1": 151.4848831873592, - "enabled": true, - "markup_range": 0.005841539519247124, - "min_markup": 0.004620616494869278, - "n_close_orders": 14, - "qty_pct_close": 0.01132656658390609, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.1575952210247}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STXUSDT.json deleted file mode 100644 index 73dbeabd4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/STXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1137.3194055699828, - "delay_between_fills_minutes_entry": 1088.7528826652488, - "delay_weight_close": 88.30469365373482, - "delay_weight_entry": 14.951490633355576, - "ema_dist_close": -0.004707694475614976, - "ema_dist_entry": 0.002956100229462928, - "ema_span_0": 983.7211644420803, - "ema_span_1": 1288.9795232975994, - "enabled": true, - "markup_range": 0.05999186882805523, - "min_markup": 0.009122532297901753, - "n_close_orders": 13, - "qty_pct_close": 0.010225849253167954, - "qty_pct_entry": 0.011820324010258421, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.7178761688875}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.8663225398805, - "delay_between_fills_minutes_entry": 699.2552274465102, - "delay_weight_close": 55.70129807181973, - "delay_weight_entry": 2.9638738258643085, - "ema_dist_close": 0.0009776099269683497, - "ema_dist_entry": -0.009591842011187297, - "ema_span_0": 1385.7780411548738, - "ema_span_1": 120.02851628778701, - "enabled": true, - "markup_range": 0.0076406832269945955, - "min_markup": 0.009975180521982567, - "n_close_orders": 8, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01294531967484724, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.35160553976573}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SUIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SUIUSDT.json deleted file mode 100644 index fff4bf846..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SUIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 839.0234623702136, - "delay_between_fills_minutes_entry": 644.3975556503594, - "delay_weight_close": 58.48982300146601, - "delay_weight_entry": 7.662185811767354, - "ema_dist_close": 0.00025571274012357474, - "ema_dist_entry": 0.002557609735255379, - "ema_span_0": 1273.3193628710683, - "ema_span_1": 814.7342780032799, - "enabled": true, - "markup_range": 0.053897238148938674, - "min_markup": 0.006472940222926501, - "n_close_orders": 11, - "qty_pct_close": 0.014644525854774963, - "qty_pct_entry": 0.010000187557400083, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.48939217684821}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 566.728048226077, - "delay_between_fills_minutes_entry": 98.60896944334999, - "delay_weight_close": 0.0012662552903666487, - "delay_weight_entry": 10.46322317873434, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008628095599072209, - "ema_span_0": 226.33627318454913, - "ema_span_1": 225.73496090568048, - "enabled": true, - "markup_range": 0.0026059276449264266, - "min_markup": 0.0040488502429980484, - "n_close_orders": 2, - "qty_pct_close": 0.010878416974961412, - "qty_pct_entry": 0.010011407123709742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.220265927651216}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SUSHIUSDT.json deleted file mode 100644 index ca8c7a468..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SUSHIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1314.247903571028, - "delay_between_fills_minutes_entry": 756.5327419018398, - "delay_weight_close": 19.70542187915013, - "delay_weight_entry": 8.384322224965874, - "ema_dist_close": -0.002743073962334186, - "ema_dist_entry": 0.0011729250357169509, - "ema_span_0": 1134.3030856989453, - "ema_span_1": 374.2547700322892, - "enabled": true, - "markup_range": 0.00833439211682813, - "min_markup": 0.00794186984362587, - "n_close_orders": 16, - "qty_pct_close": 0.010007305911911858, - "qty_pct_entry": 0.010741877017260211, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.69026117232209}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1326.4613304012246, - "delay_between_fills_minutes_entry": 466.86355303444975, - "delay_weight_close": 6.020165029029423, - "delay_weight_entry": 28.014593712840874, - "ema_dist_close": -0.009146603859303895, - "ema_dist_entry": -0.007333634435798172, - "ema_span_0": 1117.4763841771146, - "ema_span_1": 181.64661047177708, - "enabled": true, - "markup_range": 0.01117707527462364, - "min_markup": 0.006269700986127895, - "n_close_orders": 11, - "qty_pct_close": 0.012112685240584136, - "qty_pct_entry": 0.010149372249928844, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.08317004201552}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SXPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SXPUSDT.json deleted file mode 100644 index ad1e781ae..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/SXPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 944.595186915099, - "delay_between_fills_minutes_entry": 1241.6005802092168, - "delay_weight_close": 25.22755352350961, - "delay_weight_entry": 8.250738066414259, - "ema_dist_close": -0.005757489004711124, - "ema_dist_entry": 0.0026788883775021323, - "ema_span_0": 1417.2523725104747, - "ema_span_1": 1165.1109914415297, - "enabled": true, - "markup_range": 0.06, - "min_markup": 0.009283327402618264, - "n_close_orders": 14, - "qty_pct_close": 0.010001829705099692, - "qty_pct_entry": 0.01041361672681173, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.603347550281335}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 700.6914231952267, - "delay_between_fills_minutes_entry": 168.4056022550254, - "delay_weight_close": 0.00048748681470073805, - "delay_weight_entry": 1.055598418700892, - "ema_dist_close": 0.0019240539063527047, - "ema_dist_entry": -0.02209031120271672, - "ema_span_0": 933.0151716854781, - "ema_span_1": 829.2402000588095, - "enabled": true, - "markup_range": 0.0046784334134281355, - "min_markup": 0.0027797765687566866, - "n_close_orders": 14, - "qty_pct_close": 0.010784047569105136, - "qty_pct_entry": 0.010317467376184861, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.76050371532518}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/THETAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/THETAUSDT.json deleted file mode 100644 index 383830e41..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/THETAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.6571785984056, - "delay_between_fills_minutes_entry": 1248.2368032381025, - "delay_weight_close": 50.357279746851376, - "delay_weight_entry": 20.521741700297913, - "ema_dist_close": -0.0017384740250397355, - "ema_dist_entry": -0.007348135132125735, - "ema_span_0": 497.5361067346776, - "ema_span_1": 1336.343133169214, - "enabled": true, - "markup_range": 0.005470745944072241, - "min_markup": 0.006636629930391417, - "n_close_orders": 12, - "qty_pct_close": 0.010301582183471233, - "qty_pct_entry": 0.02235569600756927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.79308592927604}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.8361963624702, - "delay_between_fills_minutes_entry": 205.69528041688616, - "delay_weight_close": 16.301781280497156, - "delay_weight_entry": 5.063961585835397, - "ema_dist_close": 0.0015570462933791082, - "ema_dist_entry": -0.004417283497324106, - "ema_span_0": 467.01368886823013, - "ema_span_1": 1310.3485441979224, - "enabled": true, - "markup_range": 0.002095018782313724, - "min_markup": 0.00605974011253807, - "n_close_orders": 13, - "qty_pct_close": 0.01276258370276105, - "qty_pct_entry": 0.014053291210180957, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.65497674645548}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TLMUSDT.json deleted file mode 100644 index d6c3a1fc3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1082.3784312759485, - "delay_between_fills_minutes_entry": 1152.9818485502278, - "delay_weight_close": 52.485209615127346, - "delay_weight_entry": 13.10557506790253, - "ema_dist_close": 0.002535988847112949, - "ema_dist_entry": 0.0029997905105054617, - "ema_span_0": 34.72257223152276, - "ema_span_1": 1250.6964955061185, - "enabled": true, - "markup_range": 0.03926657699053889, - "min_markup": 0.009375537462549493, - "n_close_orders": 6, - "qty_pct_close": 0.011003703047308976, - "qty_pct_entry": 0.01189344755513509, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.554578686185888}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1214.6804131104707, - "delay_between_fills_minutes_entry": 834.7097896048284, - "delay_weight_close": 87.03558642467877, - "delay_weight_entry": 20.417228085355923, - "ema_dist_close": -0.0008326452924697412, - "ema_dist_entry": -0.004456913910283056, - "ema_span_0": 703.903462148417, - "ema_span_1": 1312.3953609505163, - "enabled": true, - "markup_range": 0.055019765065903586, - "min_markup": 0.0064014373071812096, - "n_close_orders": 2, - "qty_pct_close": 0.016061673637921173, - "qty_pct_entry": 0.024900158634375235, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.538639134248918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TOMOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TOMOUSDT.json deleted file mode 100644 index 5d79f6772..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TOMOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.6928757398614, - "delay_between_fills_minutes_entry": 1292.1071092608831, - "delay_weight_close": 51.10241134800901, - "delay_weight_entry": 10.422684674498388, - "ema_dist_close": -0.008468550520503762, - "ema_dist_entry": -0.0008732906790591245, - "ema_span_0": 539.3853897239002, - "ema_span_1": 1081.0530360050282, - "enabled": true, - "markup_range": 0.058878261595520794, - "min_markup": 0.009871141399658608, - "n_close_orders": 10, - "qty_pct_close": 0.011089060831768449, - "qty_pct_entry": 0.011643727667976063, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.309220699157697}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1434.382197612385, - "delay_between_fills_minutes_entry": 1058.8226258016152, - "delay_weight_close": 26.150715104596888, - "delay_weight_entry": 7.771674216740747, - "ema_dist_close": -0.000921900785159845, - "ema_dist_entry": -0.002098291779603902, - "ema_span_0": 1236.5634678686156, - "ema_span_1": 759.2234521220845, - "enabled": true, - "markup_range": 0.04553579879858237, - "min_markup": 0.006683185911702167, - "n_close_orders": 3, - "qty_pct_close": 0.023740512727779887, - "qty_pct_entry": 0.010013632863767472, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.034668778859746}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRBUSDT.json deleted file mode 100644 index 1bacbe2c6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1024.826828813655, - "delay_between_fills_minutes_entry": 918.8613269093069, - "delay_weight_close": 0.049921818454079656, - "delay_weight_entry": 9.35749883817826, - "ema_dist_close": 0.002920325428500053, - "ema_dist_entry": 0.00021140531809517218, - "ema_span_0": 1163.6680149344254, - "ema_span_1": 776.2403414719977, - "enabled": true, - "markup_range": 0.03379626062929071, - "min_markup": 0.008212891721866695, - "n_close_orders": 10, - "qty_pct_close": 0.04331309729895312, - "qty_pct_entry": 0.010001160182156474, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.12538384841596}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.3232091365446, - "delay_between_fills_minutes_entry": 980.9996415694787, - "delay_weight_close": 96.81186087781896, - "delay_weight_entry": 29.348991825301777, - "ema_dist_close": -0.004236019257226732, - "ema_dist_entry": -0.012246343408584461, - "ema_span_0": 856.7828654312298, - "ema_span_1": 72.62194260108835, - "enabled": true, - "markup_range": 0.002405189122616705, - "min_markup": 0.008491134387257014, - "n_close_orders": 15, - "qty_pct_close": 0.011458769537118057, - "qty_pct_entry": 0.011449590730404175, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.43352234728496}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRUUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRUUSDT.json deleted file mode 100644 index 6756b7548..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 952.7001101952578, - "delay_between_fills_minutes_entry": 1199.430093676076, - "delay_weight_close": 4.085911601297259, - "delay_weight_entry": 10.97862123140131, - "ema_dist_close": 0.0007916098192061761, - "ema_dist_entry": 0.0012558169205408355, - "ema_span_0": 1334.1580471865152, - "ema_span_1": 881.3395852694684, - "enabled": true, - "markup_range": 0.04127502242805815, - "min_markup": 0.00928082283279103, - "n_close_orders": 8, - "qty_pct_close": 0.02676481222984645, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.88226183627663}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.2785125540347, - "delay_between_fills_minutes_entry": 1177.4786437509272, - "delay_weight_close": 12.502894804895066, - "delay_weight_entry": 30.739050081177147, - "ema_dist_close": -0.0014146219975519976, - "ema_dist_entry": -0.003803966019739172, - "ema_span_0": 890.3765095613105, - "ema_span_1": 1259.8317550428683, - "enabled": true, - "markup_range": 0.01248969565454208, - "min_markup": 0.009985272958071655, - "n_close_orders": 12, - "qty_pct_close": 0.014908166345384607, - "qty_pct_entry": 0.011530649504319942, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.943844864527904}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRXUSDT.json deleted file mode 100644 index 484b3b780..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1283.4591567628113, - "delay_between_fills_minutes_entry": 847.3109094024388, - "delay_weight_close": 86.7018425814027, - "delay_weight_entry": 9.202275996516597, - "ema_dist_close": 0.001476526444402524, - "ema_dist_entry": -0.011085874949114493, - "ema_span_0": 1037.287459168743, - "ema_span_1": 833.8803170014027, - "enabled": true, - "markup_range": 0.05291181517152272, - "min_markup": 0.0010745438344220344, - "n_close_orders": 2, - "qty_pct_close": 0.010378997269844847, - "qty_pct_entry": 0.012389144143921827, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.19997879451239}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1363.0016361019966, - "delay_between_fills_minutes_entry": 1235.2899997332424, - "delay_weight_close": 54.455512306587714, - "delay_weight_entry": 17.364312169662973, - "ema_dist_close": 0.0029987754468503817, - "ema_dist_entry": -0.004092425393016123, - "ema_span_0": 21.340514779566984, - "ema_span_1": 1003.7073183223773, - "enabled": true, - "markup_range": 0.014174601672917621, - "min_markup": 0.008181892665205713, - "n_close_orders": 4, - "qty_pct_close": 0.010201652774253018, - "qty_pct_entry": 0.015023064343410681, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.959537257387307}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TUSDT.json deleted file mode 100644 index a09fdc83a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/TUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.7251287489978, - "delay_between_fills_minutes_entry": 1368.9417669244547, - "delay_weight_close": 52.080559997541116, - "delay_weight_entry": 14.35100158682418, - "ema_dist_close": 0.0013851099716046455, - "ema_dist_entry": -0.006535074873298663, - "ema_span_0": 1303.5929483877521, - "ema_span_1": 1083.6604834514114, - "enabled": true, - "markup_range": 0.05995219910985276, - "min_markup": 0.006745378794126493, - "n_close_orders": 8, - "qty_pct_close": 0.01012232836336567, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 14.198182066801985}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1216.3472762287788, - "delay_between_fills_minutes_entry": 477.68103145635314, - "delay_weight_close": 88.06441633285678, - "delay_weight_entry": 19.532231101840797, - "ema_dist_close": -0.0044207255379547315, - "ema_dist_entry": -0.03473519804995916, - "ema_span_0": 358.35525202848464, - "ema_span_1": 995.8579752841731, - "enabled": true, - "markup_range": 0.0032224569909968894, - "min_markup": 0.0022862532651185983, - "n_close_orders": 12, - "qty_pct_close": 0.010023869869803092, - "qty_pct_entry": 0.020776981463996463, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.97434940203671}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UMAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UMAUSDT.json deleted file mode 100644 index 46ff3ec55..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UMAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 944.595186915099, - "delay_between_fills_minutes_entry": 1241.6005802092168, - "delay_weight_close": 25.22755352350961, - "delay_weight_entry": 8.250738066414259, - "ema_dist_close": -0.005757489004711124, - "ema_dist_entry": 0.0026788883775021323, - "ema_span_0": 1417.2523725104747, - "ema_span_1": 1165.1109914415297, - "enabled": true, - "markup_range": 0.06, - "min_markup": 0.009283327402618264, - "n_close_orders": 14, - "qty_pct_close": 0.010001829705099692, - "qty_pct_entry": 0.01041361672681173, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.603347550281335}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1414.8806081116916, - "delay_between_fills_minutes_entry": 663.0315219306096, - "delay_weight_close": 3.143339062915379, - "delay_weight_entry": 7.112935148297081, - "ema_dist_close": 0.0019625694009568736, - "ema_dist_entry": 0.0008513008244474496, - "ema_span_0": 1150.5841317556876, - "ema_span_1": 1263.6903544314657, - "enabled": true, - "markup_range": 0.012051799347237083, - "min_markup": 0.00672600948395433, - "n_close_orders": 9, - "qty_pct_close": 0.01105564343877192, - "qty_pct_entry": 0.023409252469695118, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.995174171043395}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UNFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UNFIUSDT.json deleted file mode 100644 index 02805d419..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UNFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1205.7378290962856, - "delay_between_fills_minutes_entry": 499.5308848655867, - "delay_weight_close": 65.93551820311527, - "delay_weight_entry": 9.547671433261517, - "ema_dist_close": 0.001330253751116735, - "ema_dist_entry": -0.049975982906115796, - "ema_span_0": 620.80346073236, - "ema_span_1": 1173.7141933945986, - "enabled": true, - "markup_range": 0.019562696309681927, - "min_markup": 0.005926267780844783, - "n_close_orders": 5, - "qty_pct_close": 0.02098500599755878, - "qty_pct_entry": 0.010013532372603676, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.993106808720437}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 927.5536393402995, - "delay_between_fills_minutes_entry": 76.65521428223664, - "delay_weight_close": 4.0912562091058975, - "delay_weight_entry": 0.4026069516881707, - "ema_dist_close": 0.0027286292890744213, - "ema_dist_entry": -0.0024395190240046735, - "ema_span_0": 1029.0821444294024, - "ema_span_1": 1110.6017165946846, - "enabled": true, - "markup_range": 0.0037852668244971474, - "min_markup": 0.0022884136867671575, - "n_close_orders": 6, - "qty_pct_close": 0.012226923140416623, - "qty_pct_entry": 0.010209693427915594, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.520846381647537}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UNIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UNIUSDT.json deleted file mode 100644 index ac51d3b9b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/UNIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1088.583416750614, - "delay_between_fills_minutes_entry": 792.4507659725243, - "delay_weight_close": 65.42238389799536, - "delay_weight_entry": 12.830346867656306, - "ema_dist_close": -0.002119624854989983, - "ema_dist_entry": 0.0015544721047252806, - "ema_span_0": 1265.2522213657214, - "ema_span_1": 1335.0483095828058, - "enabled": true, - "markup_range": 0.055356487943297776, - "min_markup": 0.006326758630168559, - "n_close_orders": 2, - "qty_pct_close": 0.01490044281158096, - "qty_pct_entry": 0.010079717350843617, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.810447565742179}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.908049581273, - "delay_between_fills_minutes_entry": 59.74076689517965, - "delay_weight_close": 25.279307079735386, - "delay_weight_entry": 0.03610005714272519, - "ema_dist_close": -0.001631463132074381, - "ema_dist_entry": 0.0027795674082172943, - "ema_span_0": 1193.7477154980545, - "ema_span_1": 1189.3415874690265, - "enabled": true, - "markup_range": 0.0, - "min_markup": 0.005992141460953038, - "n_close_orders": 2, - "qty_pct_close": 0.021849933068977704, - "qty_pct_entry": 0.010131751468933482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.001014448562444}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/USDCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/USDCUSDT.json deleted file mode 100644 index 7e28f3595..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/USDCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.4429205737542, - "delay_between_fills_minutes_entry": 1345.3675628822427, - "delay_weight_close": 64.60184521639349, - "delay_weight_entry": 12.204087943002815, - "ema_dist_close": -0.004810660317730696, - "ema_dist_entry": 0.0029195137862580724, - "ema_span_0": 1150.7586832226953, - "ema_span_1": 1422.6048754589658, - "enabled": true, - "markup_range": 0.04088218740466626, - "min_markup": 0.008484854767347982, - "n_close_orders": 8, - "qty_pct_close": 0.01178290011936797, - "qty_pct_entry": 0.02112233710916093, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.199918948348532}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1313.1268291117328, - "delay_between_fills_minutes_entry": 886.542217891262, - "delay_weight_close": 0, - "delay_weight_entry": 17.35306015124601, - "ema_dist_close": -0.001968365311010524, - "ema_dist_entry": -0.0004891699802945449, - "ema_span_0": 916.4505527833876, - "ema_span_1": 986.3777937221939, - "enabled": true, - "markup_range": 0.017680575056617066, - "min_markup": 0.009240790703387654, - "n_close_orders": 7, - "qty_pct_close": 0.011796157392248893, - "qty_pct_entry": 0.013122606461476234, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.795491387693982}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/VETUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/VETUSDT.json deleted file mode 100644 index ab3ae3a1f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/VETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1057.4482577815427, - "delay_between_fills_minutes_entry": 1439.7833559486626, - "delay_weight_close": 31.395139358898117, - "delay_weight_entry": 11.465509842146316, - "ema_dist_close": 0.0025486498951164905, - "ema_dist_entry": 0.0020025323959402385, - "ema_span_0": 60.451698858588756, - "ema_span_1": 1102.2789125391246, - "enabled": true, - "markup_range": 0.04396865479564753, - "min_markup": 0.009727565238580347, - "n_close_orders": 16, - "qty_pct_close": 0.017465531288866788, - "qty_pct_entry": 0.011871194170150116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.11959336729332}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 897.8163910988793, - "delay_between_fills_minutes_entry": 677.0057330451879, - "delay_weight_close": 0.00017261689240360823, - "delay_weight_entry": 12.076695525824556, - "ema_dist_close": -0.0021647634475497252, - "ema_dist_entry": -0.0014320187109550572, - "ema_span_0": 1263.0435793360768, - "ema_span_1": 578.9977105862318, - "enabled": true, - "markup_range": 0.007382333335290091, - "min_markup": 0.007431983908812237, - "n_close_orders": 11, - "qty_pct_close": 0.02803869311841688, - "qty_pct_entry": 0.01532924078361097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/WAVESUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/WAVESUSDT.json deleted file mode 100644 index a6b8bf431..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/WAVESUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1186.2798097626264, - "delay_between_fills_minutes_entry": 1099.0053381747416, - "delay_weight_close": 13.226221412387021, - "delay_weight_entry": 26.40594905488671, - "ema_dist_close": -0.0038524493339151273, - "ema_dist_entry": 0.002172870650925028, - "ema_span_0": 132.028447833531, - "ema_span_1": 316.73249819472977, - "enabled": true, - "markup_range": 0.005030180498700875, - "min_markup": 0.004176474987184056, - "n_close_orders": 3, - "qty_pct_close": 0.01550170830279334, - "qty_pct_entry": 0.016004554071441482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.7847910142078}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 926.8401824718923, - "delay_between_fills_minutes_entry": 565.9102557972923, - "delay_weight_close": 7.115927486106189, - "delay_weight_entry": 5.886435124435912, - "ema_dist_close": 0.002598127617680403, - "ema_dist_entry": -0.004747067344375997, - "ema_span_0": 1199.1173840814245, - "ema_span_1": 1056.4427610127157, - "enabled": true, - "markup_range": 0.004073388569302741, - "min_markup": 0.0023687164650121285, - "n_close_orders": 14, - "qty_pct_close": 0.021899763344203613, - "qty_pct_entry": 0.016574597833629023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.6205871831539}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/WOOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/WOOUSDT.json deleted file mode 100644 index 23bd35d4c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/WOOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1366.321098540098, - "delay_between_fills_minutes_entry": 636.6337648428845, - "delay_weight_close": 57.90623687779367, - "delay_weight_entry": 28.138124492837324, - "ema_dist_close": -0.006841493013846575, - "ema_dist_entry": -0.003633649145628234, - "ema_span_0": 695.6854576945196, - "ema_span_1": 1300.4606286630358, - "enabled": true, - "markup_range": 0.007890613476048948, - "min_markup": 0.004840723163864273, - "n_close_orders": 2, - "qty_pct_close": 0.010035626410775442, - "qty_pct_entry": 0.010027664660164281, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.053343943918165}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1092.7933986121764, - "delay_between_fills_minutes_entry": 401.42858709105656, - "delay_weight_close": 98.12108475064394, - "delay_weight_entry": 1.6704164299010074, - "ema_dist_close": 0.002882062045779017, - "ema_dist_entry": -0.0022292488956759428, - "ema_span_0": 488.7827380993889, - "ema_span_1": 1342.3278034873897, - "enabled": true, - "markup_range": 0.008564586703618841, - "min_markup": 0.007957175263396137, - "n_close_orders": 2, - "qty_pct_close": 0.010040493363755936, - "qty_pct_entry": 0.018692394307530693, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.51263427220036}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XEMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XEMUSDT.json deleted file mode 100644 index 90e282b55..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XEMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1184.3615944910123, - "delay_between_fills_minutes_entry": 1316.6598694856843, - "delay_weight_close": 22.216220423949164, - "delay_weight_entry": 14.865104379084425, - "ema_dist_close": 0.0012823448749537177, - "ema_dist_entry": 0.002502092258008941, - "ema_span_0": 954.9415062627131, - "ema_span_1": 457.9176932314965, - "enabled": true, - "markup_range": 0.05537256221278992, - "min_markup": 0.008997769337391387, - "n_close_orders": 12, - "qty_pct_close": 0.04205694962398605, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.54322583474827}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.2785125540347, - "delay_between_fills_minutes_entry": 1177.4786437509272, - "delay_weight_close": 12.502894804895066, - "delay_weight_entry": 30.739050081177147, - "ema_dist_close": -0.0014146219975519976, - "ema_dist_entry": -0.003803966019739172, - "ema_span_0": 890.3765095613105, - "ema_span_1": 1259.8317550428683, - "enabled": true, - "markup_range": 0.01248969565454208, - "min_markup": 0.009985272958071655, - "n_close_orders": 12, - "qty_pct_close": 0.014908166345384607, - "qty_pct_entry": 0.011530649504319942, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.943844864527904}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XLMUSDT.json deleted file mode 100644 index 0c0bfcb46..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1187.3582263636256, - "delay_between_fills_minutes_entry": 719.5167294060245, - "delay_weight_close": 81.55413329763614, - "delay_weight_entry": 9.471636148922881, - "ema_dist_close": 0.0004402471634626214, - "ema_dist_entry": 0.0010263738488436693, - "ema_span_0": 1131.4713394159055, - "ema_span_1": 1033.2037958171775, - "enabled": true, - "markup_range": 0.05825395747259353, - "min_markup": 0.004666673368084952, - "n_close_orders": 7, - "qty_pct_close": 0.03390576541814004, - "qty_pct_entry": 0.016155757188729688, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.2215199287487}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1436.9092633867413, - "delay_between_fills_minutes_entry": 1322.7733616827293, - "delay_weight_close": 0.0016452100340805288, - "delay_weight_entry": 11.397613869123177, - "ema_dist_close": 0.0022720899682362604, - "ema_dist_entry": 0.0006810070514117067, - "ema_span_0": 1348.6855108432178, - "ema_span_1": 272.6365276965177, - "enabled": true, - "markup_range": 0.03030048307518138, - "min_markup": 0.008644947440559624, - "n_close_orders": 12, - "qty_pct_close": 0.02074592242974908, - "qty_pct_entry": 0.0102347821587015, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 27.774152947337555}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XMRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XMRUSDT.json deleted file mode 100644 index ff59613d3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.1139308011736, - "delay_between_fills_minutes_entry": 693.0349062007738, - "delay_weight_close": 82.13677590880553, - "delay_weight_entry": 14.982332433571083, - "ema_dist_close": 0.0029218958840272116, - "ema_dist_entry": -0.012090266789590905, - "ema_span_0": 463.8076290026756, - "ema_span_1": 778.3462829804885, - "enabled": true, - "markup_range": 0.012077560953074254, - "min_markup": 0.0010390027324572286, - "n_close_orders": 10, - "qty_pct_close": 0.013782254798379665, - "qty_pct_entry": 0.01569845142922474, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.28321631880821}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 936.2106592919471, - "delay_between_fills_minutes_entry": 119.78136082881281, - "delay_weight_close": 82.28134909058998, - "delay_weight_entry": 30.729076509781514, - "ema_dist_close": -0.0023693449729841392, - "ema_dist_entry": 0.003, - "ema_span_0": 684.1302138413905, - "ema_span_1": 845.4753009111467, - "enabled": true, - "markup_range": 0.002291152236149825, - "min_markup": 0.0025826797890563776, - "n_close_orders": 9, - "qty_pct_close": 0.014650743305058889, - "qty_pct_entry": 0.013000446785912613, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.29385948125307}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XRPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XRPUSDT.json deleted file mode 100644 index 007552073..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XRPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 670.6455096802099, - "delay_between_fills_minutes_entry": 1257.9336804598204, - "delay_weight_close": 30.291468299427745, - "delay_weight_entry": 19.084684692603158, - "ema_dist_close": 0.002970962052969961, - "ema_dist_entry": 0.0014053453050027326, - "ema_span_0": 1421.1175890148627, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.02548661705907167, - "min_markup": 0.009582457394692484, - "n_close_orders": 8, - "qty_pct_close": 0.030675148381381433, - "qty_pct_entry": 0.01000039838721209, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.76033814688205}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9358173468663, - "delay_between_fills_minutes_entry": 402.71055894875246, - "delay_weight_close": 3.5868533883618197, - "delay_weight_entry": 45.04644827224692, - "ema_dist_close": 0.0006736504613828147, - "ema_dist_entry": 0.0002949415904531963, - "ema_span_0": 232.1521522299785, - "ema_span_1": 263.83004730026727, - "enabled": true, - "markup_range": 0.004788509949432755, - "min_markup": 0.004860018085431361, - "n_close_orders": 9, - "qty_pct_close": 0.016422458669158462, - "qty_pct_entry": 0.010147962445387885, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.960760053178976}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XTZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XTZUSDT.json deleted file mode 100644 index df5190f72..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XTZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1082.3784312759485, - "delay_between_fills_minutes_entry": 1152.9818485502278, - "delay_weight_close": 52.485209615127346, - "delay_weight_entry": 13.10557506790253, - "ema_dist_close": 0.002535988847112949, - "ema_dist_entry": 0.0029997905105054617, - "ema_span_0": 34.72257223152276, - "ema_span_1": 1250.6964955061185, - "enabled": true, - "markup_range": 0.03926657699053889, - "min_markup": 0.009375537462549493, - "n_close_orders": 6, - "qty_pct_close": 0.011003703047308976, - "qty_pct_entry": 0.01189344755513509, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.554578686185888}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 644.4163259197, - "delay_between_fills_minutes_entry": 1301.8720549357552, - "delay_weight_close": 0.041684516177598725, - "delay_weight_entry": 25.176970069438195, - "ema_dist_close": 0.0027763028976834445, - "ema_dist_entry": -0.0031061513459361184, - "ema_span_0": 1258.5814730036361, - "ema_span_1": 1192.5444555692497, - "enabled": true, - "markup_range": 0.008105879229017534, - "min_markup": 0.005754429005311597, - "n_close_orders": 14, - "qty_pct_close": 0.02023636405446212, - "qty_pct_entry": 0.014991292257776925, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.8426325896334}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XVSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XVSUSDT.json deleted file mode 100644 index c6e35ab4b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/XVSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1397.8199291138544, - "delay_between_fills_minutes_entry": 793.1004339866311, - "delay_weight_close": 54.16698659813556, - "delay_weight_entry": 11.304365076226238, - "ema_dist_close": 0.002733527861907303, - "ema_dist_entry": -0.000346237700325354, - "ema_span_0": 521.6924137710201, - "ema_span_1": 754.3854297676163, - "enabled": true, - "markup_range": 0.00675618003034359, - "min_markup": 0.00964021986412634, - "n_close_orders": 3, - "qty_pct_close": 0.01270611205690984, - "qty_pct_entry": 0.012330519289802042, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.15137992696264}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1287.4941565092554, - "delay_between_fills_minutes_entry": 689.4464843576683, - "delay_weight_close": 2.7245102787361155, - "delay_weight_entry": 5.699272424356302, - "ema_dist_close": -0.006658678994121317, - "ema_dist_entry": -0.009412793242884639, - "ema_span_0": 1185.4527240889165, - "ema_span_1": 1355.6471638930602, - "enabled": true, - "markup_range": 0.007251919676811635, - "min_markup": 0.006800278793274927, - "n_close_orders": 4, - "qty_pct_close": 0.01365340171017174, - "qty_pct_entry": 0.024784324531117098, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.01836573671166}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/YFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/YFIUSDT.json deleted file mode 100644 index 1c1fd7805..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/YFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.7251287489978, - "delay_between_fills_minutes_entry": 1368.9417669244547, - "delay_weight_close": 52.080559997541116, - "delay_weight_entry": 14.35100158682418, - "ema_dist_close": 0.0013851099716046455, - "ema_dist_entry": -0.006535074873298663, - "ema_span_0": 1303.5929483877521, - "ema_span_1": 1083.6604834514114, - "enabled": true, - "markup_range": 0.05995219910985276, - "min_markup": 0.006745378794126493, - "n_close_orders": 8, - "qty_pct_close": 0.01012232836336567, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 14.198182066801985}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 847.993918782681, - "delay_between_fills_minutes_entry": 190.75436075659786, - "delay_weight_close": 35.30480209485453, - "delay_weight_entry": 19.588397303375398, - "ema_dist_close": 0.0014877703992355583, - "ema_dist_entry": -0.008973721257785523, - "ema_span_0": 1266.3381492818276, - "ema_span_1": 305.0495923222279, - "enabled": true, - "markup_range": 0.0059425127516954165, - "min_markup": 0.00498701120133973, - "n_close_orders": 5, - "qty_pct_close": 0.01187455163353577, - "qty_pct_entry": 0.012868778959368216, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.23149146071709}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZECUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZECUSDT.json deleted file mode 100644 index 234b289bb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 653.2772187562517, - "delay_between_fills_minutes_entry": 784.8897929424177, - "delay_weight_close": 27.242455726903223, - "delay_weight_entry": 13.838916371697547, - "ema_dist_close": -0.00036256603833572515, - "ema_dist_entry": -0.003246303414018261, - "ema_span_0": 1344.339104043688, - "ema_span_1": 442.7269500263282, - "enabled": true, - "markup_range": 0.005209387328897737, - "min_markup": 0.006932956979362438, - "n_close_orders": 4, - "qty_pct_close": 0.010884734502046108, - "qty_pct_entry": 0.014459538409875053, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.86110259997793}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.658209229117, - "delay_between_fills_minutes_entry": 406.5747210268461, - "delay_weight_close": 36.138092054937935, - "delay_weight_entry": 35.931342214360555, - "ema_dist_close": 0.002842547171817625, - "ema_dist_entry": -0.0064233241389633645, - "ema_span_0": 263.2031306042399, - "ema_span_1": 1319.5444975686914, - "enabled": true, - "markup_range": 0.0021217411839612207, - "min_markup": 0.008232704715986021, - "n_close_orders": 6, - "qty_pct_close": 0.03528573140732389, - "qty_pct_entry": 0.01021420052659548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.41638471160738}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZENUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZENUSDT.json deleted file mode 100644 index 5634e8982..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1326.4003254104791, - "delay_between_fills_minutes_entry": 617.3547459981322, - "delay_weight_close": 84.62779354481654, - "delay_weight_entry": 10.751251039154608, - "ema_dist_close": -0.002981270464940916, - "ema_dist_entry": 0.0013162607832237988, - "ema_span_0": 1245.5088069583721, - "ema_span_1": 800.038058982777, - "enabled": true, - "markup_range": 0.057208187874939004, - "min_markup": 0.005143638707630197, - "n_close_orders": 13, - "qty_pct_close": 0.011201851611778701, - "qty_pct_entry": 0.016227409674471557, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 15.592775535802208}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.1112911674968, - "delay_between_fills_minutes_entry": 616.7070373447846, - "delay_weight_close": 51.89159813591251, - "delay_weight_entry": 10.63645650002792, - "ema_dist_close": -0.0023814123110283756, - "ema_dist_entry": -0.012052979261308258, - "ema_span_0": 1234.0171628939756, - "ema_span_1": 1399.9132687701488, - "enabled": true, - "markup_range": 0.049226512901658755, - "min_markup": 0.009436378533539732, - "n_close_orders": 14, - "qty_pct_close": 0.04032525985228874, - "qty_pct_entry": 0.015411012793970448, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.631338738594025}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZILUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZILUSDT.json deleted file mode 100644 index e7b5da8b8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 630.487520760646, - "delay_between_fills_minutes_entry": 365.49022281491085, - "delay_weight_close": 56.79741507573542, - "delay_weight_entry": 71.11577403621492, - "ema_dist_close": -0.005642039708268928, - "ema_dist_entry": -0.0001838835859573453, - "ema_span_0": 1240.9897058441943, - "ema_span_1": 1304.812024879166, - "enabled": true, - "markup_range": 0.003097828847169607, - "min_markup": 0.0013774198376102775, - "n_close_orders": 6, - "qty_pct_close": 0.012258157297317163, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.13867899956029}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1244.208032934712, - "delay_between_fills_minutes_entry": 291.37631532692063, - "delay_weight_close": 0.5332347020377187, - "delay_weight_entry": 35.28572265040823, - "ema_dist_close": 0.0029833280503946736, - "ema_dist_entry": -0.016364546519555972, - "ema_span_0": 1126.6013172706737, - "ema_span_1": 1151.2916518957898, - "enabled": true, - "markup_range": 0.003188719538592488, - "min_markup": 0.0016803836309737424, - "n_close_orders": 4, - "qty_pct_close": 0.011366066845799494, - "qty_pct_entry": 0.010000042175164833, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.12928491568566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZRXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZRXUSDT.json deleted file mode 100644 index d5dc71525..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/ZRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.0710539137312, - "delay_between_fills_minutes_entry": 1342.012115966861, - "delay_weight_close": 0.9087274495366522, - "delay_weight_entry": 11.47095079946854, - "ema_dist_close": -0.005179843032700449, - "ema_dist_entry": -0.00492561507015492, - "ema_span_0": 372.35420550671495, - "ema_span_1": 1397.3402519607769, - "enabled": true, - "markup_range": 0.041833040462485954, - "min_markup": 0.009838251801906674, - "n_close_orders": 4, - "qty_pct_close": 0.024536213051887797, - "qty_pct_entry": 0.010194813108889719, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.78773506030617}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.2871388655751, - "delay_between_fills_minutes_entry": 271.4662179059983, - "delay_weight_close": 76.98216565686008, - "delay_weight_entry": 8.939715626689782, - "ema_dist_close": -0.006080600507463103, - "ema_dist_entry": -0.0003158451525181873, - "ema_span_0": 1395.5265154079043, - "ema_span_1": 1416.0129707967699, - "enabled": true, - "markup_range": 0.04321151987008324, - "min_markup": 0.009322248258125871, - "n_close_orders": 16, - "qty_pct_close": 0.03396657329770534, - "qty_pct_entry": 0.011070104192630166, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.38159650883701}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/metrics_clock_2023-10-03.txt b/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/metrics_clock_2023-10-03.txt deleted file mode 100644 index cb93f1d19..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-03/metrics_clock_2023-10-03.txt +++ /dev/null @@ -1,419 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-09-11 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| RADUSDT | 0.002986 | 0.0009026 | 0.09285 | 0.02584 | 23.98 | 0.01152 | 0.009693 | 0.04534 | 0.04969 | 122.5 | 1297211.49701 | -| RDNTUSDT | 0.002967 | 0.002238 | 0.1351 | 0.04126 | 23.72 | 0.01214 | 0.01159 | 0.06138 | 0.02027 | 157.5 | 1297211.49703 | -| SSVUSDT | 0.002825 | 0.0017 | 0.129 | 0.02658 | 31.55 | 0.01984 | 0.0165 | 0.07979 | 0.03915 | 197.5 | 1297211.49717 | -| UMAUSDT | 0.002784 | 0.0006646 | 0.06072 | 0.00034 | 40.77 | 0.01223 | 0.01108 | 0.05765 | 0.07537 | 122.48 | 1297211.49722 | -| IDEXUSDT | 0.002643 | 0.001809 | 0.1403 | 0.01866 | 20.65 | 0.01334 | 0.01133 | 0.05487 | 0.03278 | 129.5 | 1297211.49736 | -| NKNUSDT | 0.002172 | 0.002866 | 0.1177 | 0.05323 | 30.93 | 0.0136 | 0.01997 | 0.1377 | 0.01634 | 883.71 | 1297211.49783 | -| 1000PEPEUSDT | 0.002165 | 0.002691 | 0.09372 | 0.009814 | 39.77 | 0.01721 | 0.0163 | 0.09396 | 0.008345 | 127.31 | 1297211.49783 | -| 1000FLOKIUSDT | 0.002117 | 0.001454 | 0.1322 | 0.05704 | 24.83 | 0.01118 | 0.01017 | 0.04842 | 0.01706 | 126.31 | 1297211.49788 | -| SOLUSDT | 0.002107 | 0.002758 | 0.1121 | 0.06942 | 59.87 | 0.01574 | 0.02401 | 0.1479 | 0.05704 | 1091.71 | 1297211.49789 | -| IOSTUSDT | 0.001899 | 0.001748 | 0.1393 | 0.06415 | 48.57 | 0.01789 | 0.02082 | 0.142 | 0.0619 | 1297.66 | 1297211.4981 | -| MTLUSDT | 0.001869 | 0.00168 | 0.1151 | 0.06049 | 46.7 | 0.01547 | 0.02074 | 0.1276 | 0.02216 | 892.71 | 1297211.49813 | -| ASTRUSDT | 0.001857 | 0.001787 | 0.1406 | 0.09738 | 52.62 | 0.01383 | 0.01846 | 0.1016 | 0.0981 | 207.89 | 1297211.49814 | -| OCEANUSDT | 0.001837 | 0.002278 | 0.1135 | 0.05725 | 35.7 | 0.01793 | 0.02256 | 0.1474 | 0.05437 | 1040.71 | 1297211.49816 | -| HIGHUSDT | 0.001815 | 0.001541 | 0.1157 | 0.06629 | 30.02 | 0.01657 | 0.01456 | 0.07552 | 0.07629 | 214.89 | 1297211.49819 | -| KEYUSDT | 0.001775 | 0.00147 | 0.1353 | 0.06372 | 27.28 | 0.0172 | 0.01602 | 0.08427 | 0.03133 | 108.5 | 1297211.49822 | -| STXUSDT | 0.001777 | 0.001672 | 0.1256 | 0.08002 | 66.1 | 0.01956 | 0.02381 | 0.1183 | 0.04841 | 200.39 | 1297211.49822 | -| BLURUSDT | 0.001754 | 0.001711 | 0.114 | 0.008362 | 32.23 | 0.0142 | 0.01202 | 0.05954 | 0.01134 | 134.5 | 1297211.49825 | -| RNDRUSDT | 0.001731 | 0.002019 | 0.05592 | 0.003616 | 50.67 | 0.01434 | 0.01276 | 0.05902 | 0.007023 | 218.89 | 1297211.49827 | -| GMXUSDT | 0.001715 | 0.00119 | 0.1447 | 0.05237 | 37.63 | 0.01538 | 0.01336 | 0.05669 | 0.03743 | 204.39 | 1297211.49829 | -| RENUSDT | 0.001679 | 0.001667 | 0.07824 | 0.02839 | 55.12 | 0.01847 | 0.0195 | 0.1278 | 0.03137 | 1062.71 | 1297211.49832 | -| DASHUSDT | 0.001673 | 0.001365 | 0.08876 | 0.03809 | 48.27 | 0.01461 | 0.01812 | 0.1197 | 0.05032 | 1314.66 | 1297211.49833 | -| ZRXUSDT | 0.001663 | 0.001586 | 0.1106 | 0.04899 | 39.17 | 0.01931 | 0.0209 | 0.1442 | 0.07845 | 1173.62 | 1297211.49834 | -| RUNEUSDT | 0.001649 | 0.002414 | 0.1072 | 0.05801 | 61.97 | 0.01411 | 0.02041 | 0.1265 | 0.02192 | 1101.7 | 1297211.49835 | -| SUIUSDT | 0.001653 | 0.001312 | 0.1293 | 0.04509 | 34.53 | 0.01522 | 0.01378 | 0.07033 | 0.03467 | 129.33 | 1297211.49835 | -| ATOMUSDT | 0.001639 | 0.00183 | 0.1095 | 0.07046 | 52.28 | 0.01086 | 0.02254 | 0.1422 | 0.02205 | 1311.49 | 1297211.49836 | -| HBARUSDT | 0.001578 | 0.002513 | 0.1329 | 0.08037 | 39.65 | 0.01338 | 0.01956 | 0.1383 | 0.03004 | 906.71 | 1297211.49842 | -| ALICEUSDT | 0.001579 | 0.002059 | 0.1386 | 0.09197 | 36.43 | 0.01428 | 0.0205 | 0.1284 | 0.08814 | 907.87 | 1297211.49842 | -| AGIXUSDT | 0.001566 | 0.00123 | 0.097 | 0.03346 | 50.43 | 0.01838 | 0.02082 | 0.1485 | 0.08094 | 205.4 | 1297211.49843 | -| DOGEUSDT | 0.001566 | 0.002653 | 0.108 | 0.04758 | 54.93 | 0.01352 | 0.02016 | 0.1467 | 0.0611 | 1157.62 | 1297211.49843 | -| ARBUSDT | 0.001566 | 0.001152 | 0.09596 | 0.02738 | 31.75 | 0.01241 | 0.01275 | 0.07002 | 0.03557 | 170.37 | 1297211.49843 | -| ENJUSDT | 0.001561 | 0.001375 | 0.1101 | 0.04377 | 48.33 | 0.01922 | 0.02323 | 0.1494 | 0.05231 | 1076.71 | 1297211.49844 | -| PERPUSDT | 0.001562 | 0.000833 | 0.144 | 0.07265 | 40.18 | 0.01697 | 0.01746 | 0.1154 | 0.05237 | 187.5 | 1297211.49844 | -| XLMUSDT | 0.001545 | 0.001487 | 0.1202 | 0.06859 | 57.48 | 0.01542 | 0.02236 | 0.1323 | 0.05378 | 1329.66 | 1297211.49845 | -| SPELLUSDT | 0.001531 | 0.00087 | 0.07943 | 0.02295 | 24.82 | 0.01261 | 0.01121 | 0.05528 | 0.07329 | 368.5 | 1297211.49847 | -| ZENUSDT | 0.001515 | 0.00203 | 0.1277 | 0.06697 | 54.03 | 0.01834 | 0.02096 | 0.1295 | 0.02567 | 1019.71 | 1297211.49848 | -| DENTUSDT | 0.001501 | 0.001372 | 0.1016 | 0.05746 | 56.4 | 0.01868 | 0.02149 | 0.1181 | 0.04944 | 899.83 | 1297211.4985 | -| BCHUSDT | 0.001489 | 0.001364 | 0.1289 | 0.06035 | 53.78 | 0.01337 | 0.01618 | 0.1046 | 0.0298 | 1349.0 | 1297211.49851 | -| UNFIUSDT | 0.001485 | 0.001718 | 0.0931 | 0.03252 | 39.57 | 0.01905 | 0.02059 | 0.1331 | 0.04285 | 932.71 | 1297211.49852 | -| LDOUSDT | 0.001474 | 0.001462 | 0.1114 | 0.03546 | 56.97 | 0.01845 | 0.02026 | 0.138 | 0.06208 | 352.5 | 1297211.49853 | -| BELUSDT | 0.00144 | 0.002017 | 0.09385 | 0.0455 | 56.42 | 0.01409 | 0.02217 | 0.1465 | 0.07263 | 1025.71 | 1297211.49856 | -| REEFUSDT | 0.001436 | 0.001777 | 0.1352 | 0.06946 | 52.55 | 0.01964 | 0.02178 | 0.1459 | 0.06816 | 929.7 | 1297211.49856 | -| LEVERUSDT | 0.001432 | 0.001287 | 0.1256 | 0.05682 | 29.97 | 0.01653 | 0.01399 | 0.06925 | 0.0489 | 163.49 | 1297211.49857 | -| LRCUSDT | 0.001426 | 0.002212 | 0.1138 | 0.04625 | 68.37 | 0.01829 | 0.02085 | 0.1383 | 0.05624 | 1056.7 | 1297211.49857 | -| GRTUSDT | 0.001413 | 0.002996 | 0.102 | 0.04792 | 59.53 | 0.01304 | 0.02131 | 0.1434 | 0.05727 | 994.71 | 1297211.49859 | -| STGUSDT | 0.001411 | 0.001343 | 0.1132 | 0.03635 | 71.63 | 0.01589 | 0.01703 | 0.1035 | 0.02524 | 380.5 | 1297211.49859 | -| STMXUSDT | 0.001402 | 0.001351 | 0.1179 | 0.07333 | 42.58 | 0.01917 | 0.02392 | 0.144 | 0.04488 | 901.71 | 1297211.4986 | -| ACHUSDT | 0.001386 | 0.001082 | 0.08615 | 0.03739 | 57.75 | 0.01511 | 0.01475 | 0.08787 | 0.03742 | 199.39 | 1297211.49861 | -| MATICUSDT | 0.001391 | 0.002414 | 0.08492 | 0.05204 | 66.38 | 0.01589 | 0.02236 | 0.1479 | 0.01975 | 1053.71 | 1297211.49861 | -| TUSDT | 0.001395 | 0.0008671 | 0.1458 | 0.05612 | 41.75 | 0.01975 | 0.02417 | 0.1461 | 0.08032 | 220.46 | 1297211.49861 | -| BNXUSDT | 0.001379 | 0.001744 | 0.1355 | 0.06288 | 56.58 | 0.01655 | 0.01546 | 0.08155 | 0.0351 | 199.38 | 1297211.49862 | -| XVSUSDT | 0.001371 | 0.001147 | 0.1457 | 0.08169 | 29.68 | 0.01616 | 0.02183 | 0.132 | 0.05622 | 149.89 | 1297211.49863 | -| INJUSDT | 0.001374 | 0.001493 | 0.1235 | 0.07756 | 81.72 | 0.01656 | 0.01946 | 0.105 | 0.06891 | 388.88 | 1297211.49863 | -| COMPUSDT | 0.001369 | 0.001708 | 0.07043 | 0.0202 | 47.07 | 0.01629 | 0.01797 | 0.1204 | 0.03432 | 1167.62 | 1297211.49863 | -| HOTUSDT | 0.001362 | 0.002558 | 0.1398 | 0.09408 | 50.93 | 0.01295 | 0.0251 | 0.1499 | 0.05555 | 893.71 | 1297211.49864 | -| 1000SHIBUSDT | 0.001358 | 0.002724 | 0.1005 | 0.05944 | 78.52 | 0.00988 | 0.01874 | 0.1201 | 0.03339 | 852.26 | 1297211.49864 | -| FETUSDT | 0.00135 | 0.001231 | 0.1286 | 0.0671 | 41.32 | 0.01668 | 0.01512 | 0.08542 | 0.0399 | 235.89 | 1297211.49865 | -| SFPUSDT | 0.001353 | 0.001425 | 0.09106 | 0.03301 | 55.82 | 0.01672 | 0.01894 | 0.116 | 0.01876 | 927.71 | 1297211.49865 | -| DOTUSDT | 0.00135 | 0.002297 | 0.1073 | 0.05999 | 57.43 | 0.01137 | 0.01523 | 0.09342 | 0.01161 | 1114.71 | 1297211.49865 | -| OMGUSDT | 0.001324 | 0.0022 | 0.1334 | 0.09154 | 62.72 | 0.01793 | 0.02832 | 0.1492 | 0.09594 | 1165.62 | 1297211.49868 | -| TRXUSDT | 0.001312 | 0.001254 | 0.1392 | 0.05026 | 52.18 | 0.01339 | 0.02027 | 0.1485 | 0.03538 | 1334.66 | 1297211.49869 | -| BLUEBIRDUSDT | 0.001314 | 0.0008929 | 0.09732 | 0.03544 | 58.77 | 0.009648 | 0.01196 | 0.07792 | 0.0427 | 311.5 | 1297211.49869 | -| BATUSDT | 0.00131 | 0.001409 | 0.115 | 0.05055 | 75.4 | 0.01961 | 0.02192 | 0.1476 | 0.05858 | 1305.66 | 1297211.49869 | -| THETAUSDT | 0.00131 | 0.002147 | 0.1038 | 0.05263 | 53.77 | 0.01375 | 0.02047 | 0.1467 | 0.03018 | 1201.66 | 1297211.49869 | -| DGBUSDT | 0.001307 | 0.002095 | 0.1379 | 0.07154 | 62.0 | 0.01799 | 0.02287 | 0.1449 | 0.03064 | 871.85 | 1297211.49869 | -| CELRUSDT | 0.001299 | 0.002613 | 0.09434 | 0.04159 | 40.23 | 0.01413 | 0.0174 | 0.1129 | 0.02585 | 894.71 | 1297211.4987 | -| HFTUSDT | 0.001287 | 0.001268 | 0.1147 | 0.03434 | 40.8 | 0.01325 | 0.01172 | 0.05932 | 0.02172 | 156.5 | 1297211.49871 | -| KAVAUSDT | 0.00126 | 0.001139 | 0.0767 | 0.03338 | 46.88 | 0.01755 | 0.01931 | 0.1157 | 0.05155 | 1139.7 | 1297211.49874 | -| CHZUSDT | 0.001264 | 0.002307 | 0.07149 | 0.03379 | 54.82 | 0.01133 | 0.01596 | 0.09854 | 0.04036 | 961.71 | 1297211.49874 | -| TRUUSDT | 0.001257 | 0.001547 | 0.1401 | 0.07349 | 84.9 | 0.01939 | 0.01885 | 0.1137 | 0.08479 | 186.5 | 1297211.49874 | -| WOOUSDT | 0.001255 | 0.001528 | 0.0695 | 0.02853 | 51.05 | 0.01115 | 0.02036 | 0.1437 | 0.01242 | 519.85 | 1297211.49875 | -| RLCUSDT | 0.001249 | 0.001649 | 0.07973 | 0.03742 | 49.27 | 0.01877 | 0.02199 | 0.1415 | 0.0377 | 1136.71 | 1297211.49875 | -| LTCUSDT | 0.001255 | 0.001111 | 0.09148 | 0.02987 | 49.85 | 0.01365 | 0.01663 | 0.1092 | 0.03195 | 1340.66 | 1297211.49875 | -| ICPUSDT | 0.001252 | 0.00114 | 0.1395 | 0.07963 | 52.03 | 0.01851 | 0.02555 | 0.1331 | 0.06241 | 347.89 | 1297211.49875 | -| AMBUSDT | 0.001235 | 0.001237 | 0.03546 | 0.001274 | 41.42 | 0.01476 | 0.01189 | 0.05265 | 0.0524 | 163.5 | 1297211.49877 | -| RVNUSDT | 0.001229 | 0.001751 | 0.1021 | 0.05267 | 65.87 | 0.01171 | 0.02064 | 0.1453 | 0.02305 | 928.71 | 1297211.49877 | -| FILUSDT | 0.001227 | 0.001293 | 0.09957 | 0.05013 | 59.43 | 0.01896 | 0.02298 | 0.1319 | 0.06591 | 1059.75 | 1297211.49877 | -| GALUSDT | 0.001222 | 0.002115 | 0.132 | 0.08393 | 52.7 | 0.01638 | 0.01884 | 0.1057 | 0.07709 | 492.41 | 1297211.49878 | -| HOOKUSDT | 0.001224 | 0.001441 | 0.08001 | 0.04839 | 43.18 | 0.01592 | 0.01996 | 0.1177 | 0.08499 | 229.87 | 1297211.49878 | -| XRPUSDT | 0.001221 | 0.00161 | 0.07975 | 0.02977 | 49.9 | 0.01032 | 0.0106 | 0.06344 | 0.01754 | 1343.65 | 1297211.49878 | -| VETUSDT | 0.001214 | 0.001292 | 0.09401 | 0.04132 | 64.03 | 0.01878 | 0.02301 | 0.1463 | 0.06265 | 1304.66 | 1297211.49879 | -| MINAUSDT | 0.001201 | 0.001315 | 0.08413 | 0.0332 | 40.33 | 0.007867 | 0.007644 | 0.04091 | 0.004764 | 214.54 | 1297211.4988 | -| QNTUSDT | 0.001194 | 0.001005 | 0.1239 | 0.05834 | 57.3 | 0.00837 | 0.008379 | 0.0463 | 0.02448 | 324.89 | 1297211.49881 | -| ALGOUSDT | 0.001185 | 0.001763 | 0.0762 | 0.03946 | 44.88 | 0.01336 | 0.01535 | 0.09264 | 0.02846 | 1181.62 | 1297211.49881 | -| ALPHAUSDT | 0.001179 | 0.001467 | 0.09796 | 0.04576 | 58.57 | 0.01896 | 0.02302 | 0.1484 | 0.0692 | 1020.71 | 1297211.49882 | -| BANDUSDT | 0.001179 | 0.001761 | 0.06718 | 0.03037 | 78.08 | 0.01366 | 0.01541 | 0.09332 | 0.009195 | 1138.71 | 1297211.49882 | -| BLZUSDT | 0.001176 | 0.001769 | 0.08262 | 0.03341 | 73.48 | 0.0197 | 0.02307 | 0.1483 | 0.02201 | 1088.7 | 1297211.49882 | -| NEARUSDT | 0.001174 | 0.00184 | 0.1235 | 0.07837 | 33.85 | 0.01761 | 0.02318 | 0.1377 | 0.04684 | 1060.66 | 1297211.49883 | -| EGLDUSDT | 0.001148 | 0.001597 | 0.07289 | 0.03462 | 53.05 | 0.01047 | 0.01592 | 0.1116 | 0.007337 | 1091.71 | 1297211.49885 | -| OPUSDT | 0.001149 | 0.001981 | 0.1277 | 0.07009 | 59.42 | 0.01655 | 0.01691 | 0.09677 | 0.04981 | 465.41 | 1297211.49885 | -| SKLUSDT | 0.001136 | 0.001769 | 0.08456 | 0.04135 | 46.62 | 0.01866 | 0.02188 | 0.1419 | 0.03734 | 1005.68 | 1297211.49886 | -| FTMUSDT | 0.00113 | 0.002003 | 0.09533 | 0.05473 | 60.3 | 0.01574 | 0.02352 | 0.1431 | 0.0856 | 1081.71 | 1297211.49887 | -| ONTUSDT | 0.001118 | 0.001229 | 0.09642 | 0.04034 | 42.25 | 0.01887 | 0.02236 | 0.1475 | 0.038 | 1307.66 | 1297211.49888 | -| COTIUSDT | 0.001121 | 0.002484 | 0.09492 | 0.04054 | 21.7 | 0.01174 | 0.0133 | 0.09725 | 0.05038 | 913.71 | 1297211.49888 | -| XEMUSDT | 0.001108 | 0.00134 | 0.079 | 0.02923 | 62.97 | 0.01552 | 0.01906 | 0.1303 | 0.08834 | 920.71 | 1297211.49889 | -| DEFIUSDT | 0.001109 | 0.001387 | 0.1217 | 0.05964 | 84.02 | 0.0189 | 0.02045 | 0.1228 | 0.08748 | 1108.71 | 1297211.49889 | -| XTZUSDT | 0.001098 | 0.001306 | 0.09807 | 0.03949 | 66.8 | 0.0168 | 0.02006 | 0.129 | 0.03338 | 1312.66 | 1297211.4989 | -| ETCUSDT | 0.001092 | 0.001824 | 0.08485 | 0.04721 | 71.38 | 0.01456 | 0.01781 | 0.1044 | 0.03938 | 1333.66 | 1297211.49891 | -| XMRUSDT | 0.001093 | 0.001404 | 0.1474 | 0.07486 | 57.87 | 0.01247 | 0.01893 | 0.1319 | 0.05092 | 1315.66 | 1297211.49891 | -| EOSUSDT | 0.001073 | 0.001619 | 0.1408 | 0.07798 | 51.33 | 0.01432 | 0.02116 | 0.1449 | 0.05815 | 1341.66 | 1297211.49893 | -| AXSUSDT | 0.001064 | 0.001386 | 0.08914 | 0.03781 | 90.3 | 0.01889 | 0.02087 | 0.1291 | 0.06512 | 1023.7 | 1297211.49894 | -| MKRUSDT | 0.001056 | 0.001955 | 0.07407 | 0.03029 | 44.88 | 0.01416 | 0.02117 | 0.1202 | 0.05257 | 1123.71 | 1297211.49894 | -| SANDUSDT | 0.001052 | 0.001711 | 0.0727 | 0.03319 | 70.3 | 0.01733 | 0.02137 | 0.147 | 0.04922 | 957.71 | 1297211.49895 | -| AVAXUSDT | 0.001047 | 0.002055 | 0.08408 | 0.0493 | 60.13 | 0.01145 | 0.01522 | 0.1017 | 0.02477 | 1082.71 | 1297211.49895 | -| CKBUSDT | 0.001048 | 0.001091 | 0.12 | 0.06631 | 38.58 | 0.01495 | 0.02111 | 0.1188 | 0.03041 | 193.5 | 1297211.49895 | -| JASMYUSDT | 0.001037 | 0.001004 | 0.07673 | 0.03142 | 28.93 | 0.01425 | 0.01501 | 0.08729 | 0.05002 | 507.85 | 1297211.49896 | -| 1000LUNCUSDT | 0.00104 | 0.001994 | 0.1188 | 0.06327 | 49.07 | 0.01223 | 0.01478 | 0.1042 | 0.04903 | 365.46 | 1297211.49896 | -| CTKUSDT | 0.001043 | 0.002069 | 0.09571 | 0.03737 | 20.58 | 0.01011 | 0.01207 | 0.08326 | 0.06802 | 1024.71 | 1297211.49896 | -| LINKUSDT | 0.001036 | 0.001976 | 0.0935 | 0.05524 | 54.27 | 0.01309 | 0.022 | 0.1377 | 0.04332 | 1332.66 | 1297211.49896 | -| CRVUSDT | 0.001028 | 0.001468 | 0.07695 | 0.03866 | 51.02 | 0.01959 | 0.02218 | 0.1314 | 0.06056 | 1104.71 | 1297211.49897 | -| OGNUSDT | 0.001031 | 0.001663 | 0.0903 | 0.02135 | 51.83 | 0.01946 | 0.01793 | 0.09611 | 0.0715 | 891.71 | 1297211.49897 | -| TRBUSDT | 0.001018 | 0.001514 | 0.07619 | 0.03068 | 70.15 | 0.01958 | 0.01847 | 0.1012 | 0.07139 | 1102.71 | 1297211.49898 | -| SNXUSDT | 0.0009994 | 0.002245 | 0.06653 | 0.03585 | 64.12 | 0.01649 | 0.0229 | 0.145 | 0.05764 | 1122.7 | 1297211.499 | -| 1INCHUSDT | 0.0009901 | 0.001801 | 0.06345 | 0.04316 | 71.7 | 0.008085 | 0.01459 | 0.08175 | 0.03381 | 988.58 | 1297211.49901 | -| SUSHIUSDT | 0.0009755 | 0.0009958 | 0.0493 | 0.01195 | 48.63 | 0.01739 | 0.01817 | 0.09397 | 0.0245 | 1101.71 | 1297211.49902 | -| AAVEUSDT | 0.0009644 | 0.001479 | 0.09005 | 0.05013 | 73.3 | 0.01595 | 0.02146 | 0.1339 | 0.04665 | 1059.71 | 1297211.49904 | -| QTUMUSDT | 0.0009566 | 0.001231 | 0.07855 | 0.03593 | 85.15 | 0.01687 | 0.02237 | 0.1496 | 0.035 | 1298.66 | 1297211.49904 | -| LITUSDT | 0.0009625 | 0.001195 | 0.09382 | 0.04734 | 45.32 | 0.01993 | 0.02402 | 0.1336 | 0.07188 | 933.71 | 1297211.49904 | -| MANAUSDT | 0.0009304 | 0.001535 | 0.08239 | 0.03352 | 77.03 | 0.01542 | 0.0182 | 0.1119 | 0.04178 | 908.71 | 1297211.49907 | -| PEOPLEUSDT | 0.0009281 | 0.001292 | 0.0691 | 0.02007 | 50.53 | 0.01813 | 0.01709 | 0.09711 | 0.07104 | 624.83 | 1297211.49907 | -| SXPUSDT | 0.0008958 | 0.001258 | 0.06453 | 0.02169 | 69.62 | 0.01997 | 0.0189 | 0.09774 | 0.05021 | 1146.62 | 1297211.4991 | -| ICXUSDT | 0.0009012 | 0.001339 | 0.07935 | 0.03732 | 42.43 | 0.01212 | 0.01577 | 0.1132 | 0.01832 | 1090.71 | 1297211.4991 | -| BNBUSDT | 0.0008904 | 0.001332 | 0.08968 | 0.04712 | 92.62 | 0.01351 | 0.02277 | 0.1482 | 0.07914 | 1308.66 | 1297211.49911 | -| APEUSDT | 0.0008852 | 0.001207 | 0.1233 | 0.08142 | 56.32 | 0.01473 | 0.01628 | 0.08795 | 0.06251 | 541.37 | 1297211.49911 | -| ANKRUSDT | 0.0008887 | 0.001545 | 0.07996 | 0.03671 | 57.38 | 0.01207 | 0.01519 | 0.1229 | 0.07525 | 956.71 | 1297211.49911 | -| ZILUSDT | 0.0008762 | 0.001893 | 0.08276 | 0.06075 | 59.12 | 0.01124 | 0.0257 | 0.1476 | 0.05835 | 1179.62 | 1297211.49912 | -| WAVESUSDT | 0.0008707 | 0.00145 | 0.07099 | 0.03823 | 27.2 | 0.01185 | 0.01894 | 0.133 | 0.06448 | 1124.71 | 1297211.49913 | -| FXSUSDT | 0.0008503 | 0.001137 | 0.09254 | 0.0678 | 53.15 | 0.01124 | 0.02473 | 0.1463 | 0.08653 | 232.87 | 1297211.49915 | -| ZECUSDT | 0.0008518 | 0.001103 | 0.06467 | 0.02785 | 47.48 | 0.01263 | 0.0141 | 0.08081 | 0.0401 | 1313.66 | 1297211.49915 | -| IOTAUSDT | 0.0008431 | 0.001382 | 0.07702 | 0.0433 | 60.2 | 0.01535 | 0.02065 | 0.1312 | 0.07012 | 1306.66 | 1297211.49916 | -| EDUUSDT | 0.0008309 | 0.001156 | 0.08793 | 0.04055 | 24.32 | 0.0116 | 0.01234 | 0.08771 | 0.01239 | 132.5 | 1297211.49917 | -| YFIUSDT | 0.0008288 | 0.001631 | 0.09824 | 0.0514 | 57.43 | 0.01787 | 0.01763 | 0.1082 | 0.03225 | 1105.71 | 1297211.49917 | -| TOMOUSDT | 0.0007968 | 0.0007749 | 0.04086 | 0.01966 | 54.05 | 0.01998 | 0.01966 | 0.1035 | 0.08674 | 1063.71 | 1297211.4992 | -| LINAUSDT | 0.0007889 | 0.001002 | 0.07094 | 0.03638 | 57.47 | 0.01915 | 0.02084 | 0.1304 | 0.03267 | 904.71 | 1297211.49921 | -| ENSUSDT | 0.0007711 | 0.0009118 | 0.06424 | 0.02299 | 36.78 | 0.01453 | 0.01796 | 0.1149 | 0.02445 | 648.85 | 1297211.49923 | -| API3USDT | 0.0007543 | 0.000763 | 0.04713 | 0.01092 | 45.38 | 0.01444 | 0.01428 | 0.07195 | 0.03449 | 564.85 | 1297211.49925 | -| CVXUSDT | 0.00074 | 0.0009143 | 0.1122 | 0.03463 | 58.93 | 0.01362 | 0.01355 | 0.0754 | 0.04316 | 352.49 | 1297211.49926 | -| KSMUSDT | 0.0007351 | 0.001333 | 0.08255 | 0.03807 | 69.28 | 0.01838 | 0.02206 | 0.1391 | 0.04534 | 1061.71 | 1297211.49926 | -| CTSIUSDT | 0.0007274 | 0.001283 | 0.05725 | 0.02711 | 81.27 | 0.01559 | 0.01707 | 0.103 | 0.02875 | 683.85 | 1297211.49927 | -| BTCUSDT | 0.0007218 | 0.000542 | 0.1279 | 0.04784 | 56.95 | 0.01655 | 0.0196 | 0.1116 | 0.09054 | 1349.0 | 1297211.49928 | -| BALUSDT | 0.0007204 | 0.0008918 | 0.07622 | 0.035 | 48.42 | 0.01649 | 0.0212 | 0.1426 | 0.03651 | 1104.71 | 1297211.49928 | -| CHRUSDT | 0.0007162 | 0.001443 | 0.0817 | 0.04639 | 57.5 | 0.01534 | 0.0197 | 0.1318 | 0.02815 | 911.71 | 1297211.49928 | -| KNCUSDT | 0.000707 | 0.001135 | 0.06954 | 0.02428 | 34.73 | 0.0153 | 0.01846 | 0.1182 | 0.06051 | 1175.63 | 1297211.49929 | -| PHBUSDT | 0.0007105 | 0.0008934 | 0.04732 | 0.009734 | 42.87 | 0.0104 | 0.009343 | 0.04442 | 0.002117 | 205.39 | 1297211.49929 | -| MAGICUSDT | 0.000703 | 0.0009091 | 0.1049 | 0.05265 | 57.27 | 0.01932 | 0.02041 | 0.1113 | 0.04239 | 227.87 | 1297211.4993 | -| NEOUSDT | 0.0006898 | 0.0008963 | 0.08931 | 0.04718 | 56.97 | 0.01589 | 0.02041 | 0.1224 | 0.09144 | 1301.63 | 1297211.49931 | -| FLMUSDT | 0.0006794 | 0.001044 | 0.06532 | 0.02879 | 60.67 | 0.01968 | 0.01869 | 0.09016 | 0.07496 | 1076.71 | 1297211.49932 | -| ATAUSDT | 0.0006732 | 0.0008179 | 0.07381 | 0.03576 | 52.77 | 0.01618 | 0.01811 | 0.1187 | 0.03324 | 739.85 | 1297211.49933 | -| LPTUSDT | 0.000663 | 0.001091 | 0.06093 | 0.02495 | 70.87 | 0.01678 | 0.0203 | 0.1329 | 0.04184 | 667.85 | 1297211.49934 | -| STORJUSDT | 0.0006522 | 0.001227 | 0.04602 | 0.0213 | 51.23 | 0.01615 | 0.02085 | 0.1318 | 0.07517 | 1089.7 | 1297211.49935 | -| LQTYUSDT | 0.0006136 | 0.000749 | 0.04762 | 0.0109 | 40.62 | 0.01404 | 0.01355 | 0.06844 | 0.03734 | 183.5 | 1297211.49939 | -| IMXUSDT | 0.0005656 | 0.001596 | 0.03423 | 0.008537 | 46.98 | 0.01146 | 0.01011 | 0.04806 | 0.02221 | 575.85 | 1297211.49943 | -| RSRUSDT | 0.0005544 | 0.001208 | 0.04798 | 0.01684 | 50.8 | 0.01957 | 0.01929 | 0.09914 | 0.07272 | 1056.7 | 1297211.49945 | -| CELOUSDT | 0.0005154 | 0.0006171 | 0.04999 | 0.02402 | 75.58 | 0.01614 | 0.01446 | 0.0676 | 0.0988 | 712.85 | 1297211.49948 | -| APTUSDT | 0.0004887 | 0.00073 | 0.03034 | 0.003707 | 49.43 | 0.01217 | 0.01086 | 0.04885 | 0.09085 | 325.92 | 1297211.49951 | -| 1000XECUSDT | 0.0004703 | 0.0008493 | 0.07619 | 0.03954 | 65.78 | 0.01513 | 0.02014 | 0.1284 | 0.09604 | 722.85 | 1297211.49953 | -| ROSEUSDT | 0.0004666 | 0.0008222 | 0.03604 | 0.004383 | 66.57 | 0.01686 | 0.01626 | 0.08276 | 0.05135 | 617.85 | 1297211.49953 | -| ONEUSDT | 0.0004122 | 0.001118 | 0.07737 | 0.03349 | 62.75 | 0.01982 | 0.01999 | 0.1133 | 0.06869 | 905.71 | 1297211.49959 | -| DARUSDT | 0.0004057 | 0.001198 | 0.07379 | 0.03992 | 22.83 | 0.01094 | 0.01656 | 0.1026 | 0.09126 | 498.85 | 1297211.49959 | -| FOOTBALLUSDT | 0.0003606 | 0.000923 | 0.02352 | 0.0005572 | 57.52 | 0.008455 | 0.008809 | 0.04395 | 0.01683 | 373.87 | 1297211.49964 | -| CVCUSDT | 0.0001716 | 0.001057 | 0.0487 | 0.02054 | 53.92 | 0.01618 | 0.0147 | 0.08186 | 0.07946 | 1032.71 | 1297211.49983 | -| ARUSDT | 0.0001585 | 0.0005695 | 0.01688 | 0.0007609 | 53.28 | 0.01646 | 0.0155 | 0.06983 | 0.08243 | 711.85 | 1297211.49984 | -| BTCDOMUSDT | 0.0001276 | 0.0002182 | 0.07375 | 0.01094 | 58.45 | 0.008217 | 0.007377 | 0.03265 | 0.0957 | 810.85 | 1297211.49987 | -| FTTUSDT | 0.0001209 | 0.001209 | 0.05058 | 0.02031 | 27.9 | 0.01542 | 0.01981 | 0.07131 | 0.01446 | 512.85 | 1297211.49988 | -| UNIUSDT | 0.0001181 | 0.0007964 | 0.04855 | 0.02019 | 54.9 | 0.01825 | 0.01958 | 0.1169 | 0.09295 | 1087.71 | 1297211.49988 | -| COCOSUSDT | 0.0001033 | 0.001033 | 0.04841 | 0.01393 | 26.68 | 0.0141 | 0.006667 | 0.04534 | 0.02861 | 200.38 | 1297211.4999 | -| BTSUSDT | 6.574e-05 | 0.0005066 | 0.08591 | 0.007932 | 38.52 | 0.01794 | 0.0129 | 0.07599 | 0.07013 | 950.71 | 1297211.49993 | -| SCUSDT | 5.349e-05 | 0.0005349 | 0.0184 | 0.01064 | 59.32 | 0.0192 | 0.0204 | 0.08932 | 0.05503 | 880.71 | 1297211.49995 | -| USDCUSDT | 2.004e-08 | 2.004e-07 | 4.089e-05 | 0.0 | 18.53 | 0.002461 | 9.221e-05 | 0.002461 | 0.0 | 181.29 | 1297211.5 | -| BTCSTUSDT | 2.933e-06 | 2.933e-05 | 0.0002851 | 0.0 | 14.47 | 0.01013 | 0.007214 | 0.01013 | 0.001916 | 919.71 | 1297211.5 | -| ETHUSDT | 0.0008054 | 0.001179 | 0.1522 | 0.07839 | 121.0 | 0.01647 | 0.02471 | 0.1476 | 0.05411 | 1349.0 | 1297211.5212 | -| TLMUSDT | 0.0008067 | 0.000761 | 0.214 | 0.1559 | 49.18 | 0.01841 | 0.02042 | 0.1072 | 0.09535 | 163.48 | 1297217.73199 | -| HNTUSDT | 0.0001909 | 0.0006649 | 0.1832 | 0.1665 | 71.52 | 0.02875 | 0.0233 | 0.09544 | 0.07432 | 1077.71 | 1297306.00124 | -| ADAUSDT | 0.0006443 | 0.000875 | 0.1026 | 0.06708 | 78.37 | 0.01765 | 0.02956 | 0.1506 | 0.06547 | 1318.66 | 1297796.75739 | -| DYDXUSDT | 0.0004843 | 0.0007729 | 0.07588 | 0.02729 | 47.23 | 0.02899 | 0.02806 | 0.1538 | 0.09787 | 729.85 | 1301105.88496 | -| MASKUSDT | 0.0006251 | 0.0008306 | 0.09497 | 0.0382 | 60.15 | 0.03044 | 0.02932 | 0.1558 | 0.09649 | 743.85 | 1303088.72743 | -| DUSKUSDT | 0.0004027 | 0.0008463 | 0.0855 | 0.04767 | 50.2 | 0.02032 | 0.02845 | 0.1599 | 0.07446 | 610.85 | 1307068.77922 | -| ANTUSDT | 0.0003831 | 0.0006664 | 0.03879 | 0.01266 | 67.82 | 0.01645 | 0.02354 | 0.1638 | 0.03814 | 621.83 | 1311057.06512 | -| ARPAUSDT | 0.0004764 | 0.0009359 | 0.07346 | 0.04149 | 74.77 | 0.01744 | 0.03092 | 0.1874 | 0.06037 | 690.85 | 1334741.86441 | -| LUNA2USDT | 0.0001433 | 0.0004875 | 0.01495 | 0.0 | 41.38 | 0.01267 | 0.01322 | 0.06585 | 0.1043 | 364.87 | 1339861.61125 | -| GALAUSDT | 0.0003347 | 0.0008458 | 0.07689 | 0.0415 | 53.07 | 0.02056 | 0.02629 | 0.1812 | 0.103 | 721.85 | 1358313.88075 | -| AUDIOUSDT | 0.0001803 | 0.0005343 | 0.03257 | 0.009088 | 48.07 | 0.01713 | 0.01759 | 0.09618 | 0.1081 | 751.85 | 1378064.78882 | -| IOTXUSDT | 0.001056 | 0.001504 | 0.1178 | 0.06857 | 57.15 | 0.02013 | 0.03077 | 0.1944 | 0.104 | 758.85 | 1382192.2391 | -| IDUSDT | 0.000143 | 0.00103 | 0.1475 | 0.1083 | 64.73 | 0.02865 | 0.05015 | 0.2193 | 0.105 | 170.39 | 1418945.49879 | -| FLOWUSDT | 0.0004057 | 0.000772 | 0.04002 | 0.01704 | 54.08 | 0.01431 | 0.01855 | 0.1167 | 0.1127 | 576.85 | 1424288.80182 | -| CFXUSDT | 0.0007669 | 0.0006675 | 0.05788 | 0.005171 | 41.62 | 0.0192 | 0.01746 | 0.07727 | 0.1173 | 201.39 | 1470550.19154 | -| C98USDT | 0.0006713 | 0.0009968 | 0.1303 | 0.09612 | 53.57 | 0.02605 | 0.0457 | 0.2384 | 0.11 | 746.85 | 1487275.66991 | -| GTCUSDT | 0.0003662 | 0.0007044 | 0.05349 | 0.01868 | 56.93 | 0.02393 | 0.03927 | 0.288 | 0.118 | 820.85 | 1615986.77853 | -| BAKEUSDT | 0.0004042 | 0.0008214 | 0.08156 | 0.04904 | 56.27 | 0.02683 | 0.03918 | 0.2348 | 0.1677 | 843.71 | 2060307.68503 | -| JOEUSDT | 0.0004149 | 0.0004775 | 0.115 | 0.06305 | 42.9 | 0.02194 | 0.02325 | 0.1249 | 0.1904 | 164.49 | 2201656.21256 | -| SRMUSDT | 7.147e-05 | 0.0006534 | 0.3073 | 0.2857 | 54.67 | 0.2159 | 0.2712 | 0.7399 | 0.1423 | 1100.91 | 2335902.57732 | -| GMTUSDT | 0.0001654 | 0.0006714 | 0.1229 | 0.09707 | 72.78 | 0.03053 | 0.04844 | 0.275 | 0.274 | 543.83 | 3163851.29153 | -| RAYUSDT | 1.244e-05 | 0.0002276 | 0.4268 | 0.4083 | 56.35 | 0.3141 | 0.2987 | 0.702 | 0.3143 | 750.85 | 4022443.6983 | -| KLAYUSDT | 9.095e-05 | 0.0001626 | 0.08422 | 0.06161 | 65.43 | 0.0239 | 0.04132 | 0.2225 | 0.5399 | 697.85 | 5769974.1635 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| LEVERUSDT | 0.004572 | 0.001935 | 0.1187 | 0.07439 | 83.3 | 0.01401 | 0.01811 | 0.1181 | 0.05396 | 163.49 | 1297211.49543 | -| HOOKUSDT | 0.003455 | 0.002592 | 0.1453 | 0.06433 | 37.35 | 0.01562 | 0.01748 | 0.09841 | 0.03475 | 229.87 | 1297211.49654 | -| HIGHUSDT | 0.003431 | 0.002662 | 0.1412 | 0.06397 | 33.57 | 0.01411 | 0.01752 | 0.1096 | 0.01921 | 214.89 | 1297211.49657 | -| RDNTUSDT | 0.003341 | 0.002561 | 0.131 | 0.05237 | 37.78 | 0.009929 | 0.01035 | 0.0568 | 0.003143 | 157.5 | 1297211.49666 | -| IDEXUSDT | 0.003287 | 0.001535 | 0.04598 | 0.001608 | 47.52 | 0.01246 | 0.01121 | 0.05813 | 0.01814 | 129.5 | 1297211.49671 | -| KEYUSDT | 0.003256 | 0.002554 | 0.1496 | 0.08445 | 36.38 | 0.009236 | 0.01079 | 0.06344 | 0.01772 | 108.5 | 1297211.49674 | -| AMBUSDT | 0.003191 | 0.002286 | 0.1422 | 0.08917 | 45.6 | 0.01813 | 0.02339 | 0.1282 | 0.01879 | 163.5 | 1297211.49681 | -| ZENUSDT | 0.003145 | 0.003363 | 0.1495 | 0.08078 | 48.27 | 0.01639 | 0.01903 | 0.1171 | 0.03343 | 1019.71 | 1297211.49686 | -| SFPUSDT | 0.00312 | 0.002558 | 0.1482 | 0.08839 | 81.12 | 0.01911 | 0.02493 | 0.1456 | 0.01632 | 927.71 | 1297211.49688 | -| AGIXUSDT | 0.003106 | 0.002395 | 0.1288 | 0.07808 | 55.15 | 0.01027 | 0.01343 | 0.07231 | 0.01027 | 205.4 | 1297211.49689 | -| LITUSDT | 0.003042 | 0.0033 | 0.1424 | 0.07483 | 78.58 | 0.01779 | 0.02254 | 0.1457 | 0.0199 | 933.71 | 1297211.49696 | -| EDUUSDT | 0.003006 | 0.002905 | 0.1167 | 0.04307 | 54.1 | 0.009825 | 0.01037 | 0.06394 | 0.006113 | 132.5 | 1297211.49699 | -| SANDUSDT | 0.002994 | 0.002607 | 0.1489 | 0.09997 | 53.8 | 0.01502 | 0.0244 | 0.1365 | 0.01492 | 957.71 | 1297211.49701 | -| 1000FLOKIUSDT | 0.002961 | 0.002338 | 0.1373 | 0.05704 | 14.87 | 0.006833 | 0.009228 | 0.06577 | 0.01922 | 126.31 | 1297211.49704 | -| RLCUSDT | 0.002933 | 0.00254 | 0.1496 | 0.07844 | 50.68 | 0.01857 | 0.0228 | 0.13 | 0.03203 | 1136.71 | 1297211.49707 | -| PHBUSDT | 0.002905 | 0.002257 | 0.1381 | 0.09025 | 44.17 | 0.01326 | 0.0215 | 0.1338 | 0.01735 | 205.39 | 1297211.4971 | -| TRUUSDT | 0.002899 | 0.002775 | 0.07142 | 0.02591 | 47.75 | 0.009264 | 0.007819 | 0.04545 | 0.004294 | 186.5 | 1297211.4971 | -| BLURUSDT | 0.002854 | 0.002684 | 0.117 | 0.05234 | 27.92 | 0.006736 | 0.00878 | 0.06055 | 0.007162 | 134.5 | 1297211.49715 | -| BNXUSDT | 0.002815 | 0.002437 | 0.1239 | 0.05118 | 49.28 | 0.009979 | 0.009935 | 0.05518 | 0.003312 | 199.38 | 1297211.49719 | -| LQTYUSDT | 0.002804 | 0.002791 | 0.09487 | 0.03678 | 21.88 | 0.008023 | 0.01125 | 0.08108 | 0.01194 | 183.5 | 1297211.4972 | -| REEFUSDT | 0.00273 | 0.003435 | 0.1452 | 0.06359 | 50.62 | 0.0142 | 0.02198 | 0.1487 | 0.01396 | 929.7 | 1297211.49727 | -| OCEANUSDT | 0.002716 | 0.002888 | 0.1402 | 0.06842 | 39.63 | 0.0177 | 0.01985 | 0.1229 | 0.04124 | 1040.71 | 1297211.49728 | -| CHRUSDT | 0.002681 | 0.002596 | 0.1497 | 0.08815 | 46.28 | 0.01532 | 0.0179 | 0.104 | 0.01978 | 911.71 | 1297211.49732 | -| ALICEUSDT | 0.002655 | 0.002243 | 0.1498 | 0.09422 | 56.65 | 0.0189 | 0.02601 | 0.1403 | 0.04941 | 907.87 | 1297211.49735 | -| COMPUSDT | 0.002608 | 0.002229 | 0.1366 | 0.06841 | 47.45 | 0.01718 | 0.02194 | 0.1346 | 0.01555 | 1167.62 | 1297211.49739 | -| ZRXUSDT | 0.002608 | 0.002628 | 0.1458 | 0.09181 | 77.4 | 0.01718 | 0.02394 | 0.1432 | 0.04588 | 1173.62 | 1297211.49739 | -| FETUSDT | 0.002547 | 0.001966 | 0.1474 | 0.09942 | 31.8 | 0.01718 | 0.02403 | 0.1306 | 0.03181 | 235.89 | 1297211.49745 | -| SUSHIUSDT | 0.002546 | 0.003377 | 0.1338 | 0.0812 | 53.45 | 0.01368 | 0.02257 | 0.144 | 0.02508 | 1101.71 | 1297211.49745 | -| HFTUSDT | 0.002538 | 0.002309 | 0.1208 | 0.03647 | 35.73 | 0.01186 | 0.01047 | 0.05218 | 0.03496 | 156.5 | 1297211.49746 | -| ACHUSDT | 0.00248 | 0.002121 | 0.1226 | 0.0633 | 24.3 | 0.007914 | 0.008952 | 0.0529 | 0.02486 | 199.39 | 1297211.49752 | -| GALUSDT | 0.002477 | 0.002519 | 0.08652 | 0.03621 | 59.25 | 0.01148 | 0.01492 | 0.08363 | 0.01212 | 492.41 | 1297211.49752 | -| XVSUSDT | 0.002438 | 0.002107 | 0.1485 | 0.06252 | 41.5 | 0.01335 | 0.01851 | 0.1146 | 0.04195 | 149.89 | 1297211.49756 | -| SUIUSDT | 0.002413 | 0.002194 | 0.1407 | 0.06795 | 10.72 | 0.00874 | 0.01353 | 0.09377 | 0.03951 | 129.33 | 1297211.49759 | -| TLMUSDT | 0.002382 | 0.001946 | 0.09232 | 0.01529 | 43.7 | 0.007999 | 0.007772 | 0.03977 | 0.003899 | 163.48 | 1297211.49762 | -| STMXUSDT | 0.002362 | 0.002121 | 0.0988 | 0.06007 | 71.18 | 0.01497 | 0.02245 | 0.1485 | 0.01749 | 901.71 | 1297211.49764 | -| RADUSDT | 0.002334 | 0.002187 | 0.06816 | 0.00578 | 38.58 | 0.007302 | 0.007314 | 0.04039 | 0.001737 | 122.5 | 1297211.49767 | -| OMGUSDT | 0.002325 | 0.002126 | 0.15 | 0.08657 | 19.38 | 0.01255 | 0.01951 | 0.1335 | 0.05236 | 1165.62 | 1297211.49768 | -| YFIUSDT | 0.002307 | 0.002367 | 0.1484 | 0.08339 | 50.82 | 0.01256 | 0.02108 | 0.1478 | 0.02085 | 1105.71 | 1297211.49769 | -| MAGICUSDT | 0.00227 | 0.002051 | 0.1365 | 0.07569 | 13.7 | 0.01146 | 0.01854 | 0.1164 | 0.05451 | 227.87 | 1297211.49773 | -| STORJUSDT | 0.002268 | 0.001968 | 0.1331 | 0.07288 | 23.63 | 0.0149 | 0.02183 | 0.149 | 0.04301 | 1089.7 | 1297211.49773 | -| ENSUSDT | 0.002264 | 0.002436 | 0.1444 | 0.09131 | 78.5 | 0.01353 | 0.01702 | 0.09866 | 0.03953 | 648.85 | 1297211.49774 | -| ANKRUSDT | 0.002216 | 0.002961 | 0.1302 | 0.06707 | 50.73 | 0.0152 | 0.02054 | 0.1396 | 0.02087 | 956.71 | 1297211.49778 | -| MINAUSDT | 0.002194 | 0.00166 | 0.1244 | 0.06816 | 43.22 | 0.01151 | 0.01377 | 0.07702 | 0.01304 | 214.54 | 1297211.49781 | -| ASTRUSDT | 0.002193 | 0.002075 | 0.07994 | 0.03186 | 24.0 | 0.005981 | 0.006141 | 0.04303 | 0.003991 | 207.89 | 1297211.49781 | -| ONEUSDT | 0.002166 | 0.002093 | 0.1222 | 0.05875 | 47.9 | 0.01973 | 0.02529 | 0.1474 | 0.04076 | 905.71 | 1297211.49783 | -| 1INCHUSDT | 0.002172 | 0.002052 | 0.1187 | 0.055 | 50.77 | 0.0114 | 0.01291 | 0.07989 | 0.02649 | 988.58 | 1297211.49783 | -| CRVUSDT | 0.002152 | 0.002466 | 0.1094 | 0.05424 | 38.8 | 0.0122 | 0.0191 | 0.1402 | 0.03519 | 1104.71 | 1297211.49785 | -| ENJUSDT | 0.002155 | 0.002244 | 0.1155 | 0.04613 | 50.67 | 0.01452 | 0.02045 | 0.1446 | 0.03671 | 1076.71 | 1297211.49785 | -| SSVUSDT | 0.002139 | 0.001925 | 0.0959 | 0.03881 | 70.62 | 0.01184 | 0.01078 | 0.05347 | 0.01375 | 197.5 | 1297211.49786 | -| UMAUSDT | 0.002098 | 0.002392 | 0.1494 | 0.04046 | 48.8 | 0.008444 | 0.009108 | 0.05504 | 0.001833 | 122.48 | 1297211.4979 | -| 1000LUNCUSDT | 0.00206 | 0.001809 | 0.1416 | 0.08333 | 48.5 | 0.01019 | 0.02129 | 0.1393 | 0.01649 | 365.46 | 1297211.49794 | -| DGBUSDT | 0.002044 | 0.002003 | 0.1487 | 0.08607 | 61.22 | 0.01437 | 0.02363 | 0.1491 | 0.02894 | 871.85 | 1297211.49796 | -| ATAUSDT | 0.002026 | 0.002164 | 0.1212 | 0.04956 | 60.5 | 0.01387 | 0.01938 | 0.1372 | 0.02281 | 739.85 | 1297211.49797 | -| MATICUSDT | 0.002025 | 0.00182 | 0.149 | 0.09146 | 27.02 | 0.01559 | 0.02001 | 0.121 | 0.02856 | 1053.71 | 1297211.49798 | -| DUSKUSDT | 0.002011 | 0.001921 | 0.1421 | 0.07878 | 19.95 | 0.01312 | 0.01768 | 0.1162 | 0.04851 | 610.85 | 1297211.49799 | -| COTIUSDT | 0.001996 | 0.002224 | 0.1385 | 0.07022 | 43.3 | 0.01627 | 0.01935 | 0.1253 | 0.02123 | 913.71 | 1297211.498 | -| LUNA2USDT | 0.001986 | 0.001772 | 0.1145 | 0.05241 | 43.75 | 0.01031 | 0.01266 | 0.07465 | 0.007163 | 364.87 | 1297211.49801 | -| ARBUSDT | 0.001937 | 0.001783 | 0.1422 | 0.07017 | 26.03 | 0.0105 | 0.01483 | 0.08877 | 0.02037 | 170.37 | 1297211.49806 | -| KAVAUSDT | 0.001933 | 0.002247 | 0.1317 | 0.06624 | 47.95 | 0.01675 | 0.02404 | 0.1498 | 0.03376 | 1139.7 | 1297211.49807 | -| CTKUSDT | 0.001918 | 0.001766 | 0.1214 | 0.04131 | 46.45 | 0.01567 | 0.01754 | 0.1008 | 0.01406 | 1024.71 | 1297211.49808 | -| BATUSDT | 0.001905 | 0.001709 | 0.145 | 0.09107 | 54.97 | 0.01842 | 0.02476 | 0.1424 | 0.03559 | 1305.66 | 1297211.49809 | -| IOSTUSDT | 0.001902 | 0.001795 | 0.1498 | 0.07863 | 53.75 | 0.01649 | 0.02295 | 0.1446 | 0.05536 | 1297.66 | 1297211.4981 | -| ONTUSDT | 0.001895 | 0.002136 | 0.1436 | 0.08466 | 55.53 | 0.01887 | 0.02603 | 0.1498 | 0.04716 | 1307.66 | 1297211.4981 | -| UNFIUSDT | 0.001898 | 0.001735 | 0.0972 | 0.05436 | 51.97 | 0.01456 | 0.02263 | 0.1292 | 0.01513 | 932.71 | 1297211.4981 | -| ALPHAUSDT | 0.001891 | 0.002155 | 0.1134 | 0.04551 | 51.65 | 0.01802 | 0.02103 | 0.1437 | 0.02473 | 1020.71 | 1297211.49811 | -| JASMYUSDT | 0.001873 | 0.001666 | 0.07362 | 0.01936 | 22.75 | 0.01028 | 0.01096 | 0.05994 | 0.009156 | 507.85 | 1297211.49813 | -| AVAXUSDT | 0.001865 | 0.002533 | 0.1393 | 0.06611 | 27.87 | 0.01378 | 0.019 | 0.1381 | 0.01947 | 1082.71 | 1297211.49814 | -| DARUSDT | 0.001865 | 0.001656 | 0.1144 | 0.05094 | 35.13 | 0.01273 | 0.0165 | 0.1008 | 0.02644 | 498.85 | 1297211.49814 | -| RSRUSDT | 0.001834 | 0.001777 | 0.0926 | 0.04254 | 77.38 | 0.01972 | 0.02451 | 0.1498 | 0.0128 | 1056.7 | 1297211.49817 | -| NKNUSDT | 0.001827 | 0.00326 | 0.1156 | 0.06379 | 66.43 | 0.01644 | 0.02081 | 0.1313 | 0.04779 | 883.71 | 1297211.49817 | -| FLMUSDT | 0.001816 | 0.002128 | 0.1072 | 0.04953 | 48.98 | 0.01675 | 0.02089 | 0.1497 | 0.02533 | 1076.71 | 1297211.49818 | -| DENTUSDT | 0.001817 | 0.001645 | 0.1396 | 0.0689 | 50.95 | 0.01765 | 0.02319 | 0.1494 | 0.02061 | 899.83 | 1297211.49818 | -| SPELLUSDT | 0.00181 | 0.00164 | 0.1318 | 0.0944 | 86.73 | 0.01128 | 0.0221 | 0.1273 | 0.03959 | 368.5 | 1297211.49819 | -| UNIUSDT | 0.001811 | 0.001791 | 0.1222 | 0.08527 | 86.67 | 0.01637 | 0.02726 | 0.1499 | 0.04611 | 1087.71 | 1297211.49819 | -| XEMUSDT | 0.001799 | 0.002334 | 0.1491 | 0.09096 | 48.33 | 0.01488 | 0.0248 | 0.1476 | 0.0252 | 920.71 | 1297211.4982 | -| TRBUSDT | 0.001793 | 0.002532 | 0.09072 | 0.05388 | 44.7 | 0.01336 | 0.02073 | 0.1458 | 0.01588 | 1102.71 | 1297211.49821 | -| CELOUSDT | 0.001789 | 0.001583 | 0.1169 | 0.05967 | 35.22 | 0.0144 | 0.01826 | 0.118 | 0.03236 | 712.85 | 1297211.49821 | -| SKLUSDT | 0.001765 | 0.00215 | 0.09995 | 0.05692 | 100.7 | 0.01607 | 0.02308 | 0.1399 | 0.01488 | 1005.68 | 1297211.49823 | -| HBARUSDT | 0.001756 | 0.002424 | 0.1176 | 0.05652 | 40.5 | 0.012 | 0.01482 | 0.1115 | 0.01208 | 906.71 | 1297211.49824 | -| DASHUSDT | 0.001761 | 0.001643 | 0.1361 | 0.06925 | 38.85 | 0.01857 | 0.02431 | 0.1489 | 0.05232 | 1314.66 | 1297211.49824 | -| ZECUSDT | 0.001761 | 0.002024 | 0.1424 | 0.09969 | 62.72 | 0.01302 | 0.02372 | 0.1462 | 0.0593 | 1313.66 | 1297211.49824 | -| QNTUSDT | 0.001739 | 0.001246 | 0.1201 | 0.05808 | 34.6 | 0.01318 | 0.01845 | 0.1003 | 0.0568 | 324.89 | 1297211.49826 | -| 1000XECUSDT | 0.001723 | 0.001645 | 0.1426 | 0.06715 | 71.68 | 0.01408 | 0.02059 | 0.1276 | 0.01448 | 722.85 | 1297211.49828 | -| CFXUSDT | 0.001724 | 0.001564 | 0.1098 | 0.06867 | 84.45 | 0.01539 | 0.02641 | 0.1401 | 0.03211 | 201.39 | 1297211.49828 | -| GMXUSDT | 0.001712 | 0.00162 | 0.1481 | 0.07092 | 34.82 | 0.01123 | 0.01081 | 0.05506 | 0.01472 | 204.39 | 1297211.49829 | -| KSMUSDT | 0.001711 | 0.001785 | 0.1241 | 0.06448 | 44.67 | 0.01741 | 0.01854 | 0.1071 | 0.02051 | 1061.71 | 1297211.49829 | -| GTCUSDT | 0.001676 | 0.001736 | 0.1206 | 0.05847 | 50.7 | 0.01853 | 0.02279 | 0.1442 | 0.0929 | 820.85 | 1297211.49832 | -| RVNUSDT | 0.001683 | 0.001215 | 0.08987 | 0.0354 | 48.43 | 0.0174 | 0.02106 | 0.1234 | 0.01804 | 928.71 | 1297211.49832 | -| MTLUSDT | 0.001672 | 0.001741 | 0.08982 | 0.04233 | 44.05 | 0.01456 | 0.02068 | 0.148 | 0.02607 | 892.71 | 1297211.49833 | -| KNCUSDT | 0.001657 | 0.001477 | 0.1297 | 0.07517 | 52.17 | 0.01919 | 0.02382 | 0.1336 | 0.05265 | 1175.63 | 1297211.49834 | -| MANAUSDT | 0.001648 | 0.001434 | 0.09432 | 0.02196 | 46.38 | 0.01799 | 0.01881 | 0.09881 | 0.02807 | 908.71 | 1297211.49835 | -| IMXUSDT | 0.001652 | 0.00174 | 0.07805 | 0.02149 | 41.77 | 0.01349 | 0.01418 | 0.07102 | 0.02251 | 575.85 | 1297211.49835 | -| SXPUSDT | 0.001645 | 0.001445 | 0.1138 | 0.05334 | 36.78 | 0.01614 | 0.02107 | 0.1331 | 0.04522 | 1146.62 | 1297211.49835 | -| SNXUSDT | 0.001643 | 0.001614 | 0.1004 | 0.05927 | 58.85 | 0.01852 | 0.02399 | 0.1421 | 0.01359 | 1122.7 | 1297211.49836 | -| JOEUSDT | 0.00164 | 0.001397 | 0.1489 | 0.08103 | 23.08 | 0.01404 | 0.02066 | 0.1282 | 0.05826 | 164.49 | 1297211.49836 | -| FILUSDT | 0.001644 | 0.001601 | 0.1125 | 0.046 | 58.33 | 0.01666 | 0.02366 | 0.1354 | 0.01793 | 1059.75 | 1297211.49836 | -| THETAUSDT | 0.001607 | 0.001568 | 0.1311 | 0.08609 | 55.08 | 0.017 | 0.02441 | 0.1407 | 0.05085 | 1201.66 | 1297211.49839 | -| FXSUSDT | 0.001599 | 0.001579 | 0.1324 | 0.06673 | 33.95 | 0.01442 | 0.01421 | 0.06629 | 0.01683 | 232.87 | 1297211.4984 | -| NEARUSDT | 0.001581 | 0.001664 | 0.08139 | 0.02373 | 47.38 | 0.01877 | 0.01961 | 0.1276 | 0.02161 | 1060.66 | 1297211.49842 | -| IOTAUSDT | 0.001577 | 0.002267 | 0.1472 | 0.09362 | 52.4 | 0.01092 | 0.02085 | 0.1486 | 0.02615 | 1306.66 | 1297211.49842 | -| API3USDT | 0.001559 | 0.001656 | 0.1033 | 0.07007 | 91.53 | 0.01373 | 0.02403 | 0.1306 | 0.0391 | 564.85 | 1297211.49844 | -| CKBUSDT | 0.001529 | 0.001403 | 0.09039 | 0.02605 | 28.58 | 0.009621 | 0.009969 | 0.05129 | 0.007829 | 193.5 | 1297211.49847 | -| BELUSDT | 0.001492 | 0.001418 | 0.07466 | 0.02608 | 64.95 | 0.0197 | 0.02052 | 0.1089 | 0.02092 | 1025.71 | 1297211.49851 | -| CELRUSDT | 0.001486 | 0.002467 | 0.07173 | 0.02976 | 60.05 | 0.01099 | 0.01261 | 0.07229 | 0.004302 | 894.71 | 1297211.49851 | -| DOTUSDT | 0.001493 | 0.002052 | 0.1462 | 0.07333 | 31.85 | 0.01356 | 0.01895 | 0.1391 | 0.02609 | 1114.71 | 1297211.49851 | -| ARUSDT | 0.001493 | 0.001525 | 0.0813 | 0.04091 | 70.13 | 0.01479 | 0.02271 | 0.1493 | 0.008649 | 711.85 | 1297211.49851 | -| LRCUSDT | 0.001458 | 0.001637 | 0.08024 | 0.02831 | 24.67 | 0.01471 | 0.01786 | 0.1245 | 0.06285 | 1056.7 | 1297211.49854 | -| MKRUSDT | 0.001439 | 0.001198 | 0.1157 | 0.0578 | 31.03 | 0.01922 | 0.02396 | 0.1381 | 0.06959 | 1123.71 | 1297211.49856 | -| NEOUSDT | 0.001435 | 0.001544 | 0.1451 | 0.07266 | 43.17 | 0.0158 | 0.02141 | 0.1363 | 0.04887 | 1301.63 | 1297211.49857 | -| XRPUSDT | 0.001423 | 0.002027 | 0.1074 | 0.06335 | 30.67 | 0.008726 | 0.01813 | 0.1324 | 0.02849 | 1343.65 | 1297211.49858 | -| WOOUSDT | 0.001348 | 0.001525 | 0.1091 | 0.05049 | 71.0 | 0.01892 | 0.02261 | 0.1253 | 0.01841 | 519.85 | 1297211.49865 | -| TOMOUSDT | 0.001342 | 0.001081 | 0.05272 | 0.013 | 62.88 | 0.01998 | 0.01828 | 0.09518 | 0.06349 | 1063.71 | 1297211.49866 | -| GRTUSDT | 0.001341 | 0.002699 | 0.08373 | 0.03946 | 28.5 | 0.01362 | 0.01983 | 0.1497 | 0.04818 | 994.71 | 1297211.49866 | -| ATOMUSDT | 0.001307 | 0.00189 | 0.08914 | 0.04038 | 64.5 | 0.01002 | 0.01572 | 0.1196 | 0.0167 | 1311.49 | 1297211.49869 | -| FLOWUSDT | 0.001287 | 0.001123 | 0.09229 | 0.03871 | 48.07 | 0.01533 | 0.01794 | 0.1011 | 0.01714 | 576.85 | 1297211.49871 | -| FTMUSDT | 0.001282 | 0.001387 | 0.08043 | 0.04214 | 53.85 | 0.01842 | 0.02299 | 0.1276 | 0.03574 | 1081.71 | 1297211.49872 | -| LINKUSDT | 0.001283 | 0.001414 | 0.1105 | 0.04324 | 33.35 | 0.01846 | 0.02024 | 0.1313 | 0.03888 | 1332.66 | 1297211.49872 | -| FOOTBALLUSDT | 0.00127 | 0.001099 | 0.07236 | 0.03488 | 66.77 | 0.009769 | 0.01202 | 0.07244 | 0.03389 | 373.87 | 1297211.49873 | -| CVXUSDT | 0.001255 | 0.001284 | 0.1498 | 0.07682 | 44.85 | 0.01455 | 0.01799 | 0.1052 | 0.02885 | 352.49 | 1297211.49874 | -| TUSDT | 0.001256 | 0.001573 | 0.1249 | 0.04837 | 22.17 | 0.009222 | 0.01364 | 0.1117 | 0.02012 | 220.46 | 1297211.49874 | -| RENUSDT | 0.001252 | 0.00148 | 0.06443 | 0.02078 | 50.53 | 0.01818 | 0.01707 | 0.09616 | 0.01978 | 1062.71 | 1297211.49875 | -| ALGOUSDT | 0.001253 | 0.003055 | 0.1257 | 0.04937 | 65.88 | 0.0177 | 0.02086 | 0.1481 | 0.04793 | 1181.62 | 1297211.49875 | -| C98USDT | 0.001244 | 0.001186 | 0.06746 | 0.01696 | 37.97 | 0.01609 | 0.01651 | 0.08727 | 0.04321 | 746.85 | 1297211.49876 | -| EOSUSDT | 0.001212 | 0.001261 | 0.1323 | 0.06081 | 52.38 | 0.01356 | 0.0193 | 0.1181 | 0.03889 | 1341.66 | 1297211.49879 | -| LTCUSDT | 0.001152 | 0.001402 | 0.113 | 0.05858 | 53.8 | 0.013 | 0.01738 | 0.1219 | 0.03894 | 1340.66 | 1297211.49885 | -| LPTUSDT | 0.001123 | 0.001186 | 0.06823 | 0.02177 | 63.78 | 0.01665 | 0.01926 | 0.129 | 0.05046 | 667.85 | 1297211.49888 | -| IDUSDT | 0.001118 | 0.001057 | 0.03856 | 0.01051 | 38.48 | 0.00646 | 0.008893 | 0.05941 | 0.002716 | 170.39 | 1297211.49888 | -| BALUSDT | 0.001106 | 0.001292 | 0.1157 | 0.05846 | 48.57 | 0.01957 | 0.02307 | 0.1476 | 0.0595 | 1104.71 | 1297211.49889 | -| XMRUSDT | 0.001114 | 0.001349 | 0.1345 | 0.099 | 54.1 | 0.0128 | 0.02544 | 0.1416 | 0.05626 | 1315.66 | 1297211.49889 | -| PERPUSDT | 0.001097 | 0.0006229 | 0.02787 | 0.005999 | 87.12 | 0.007803 | 0.008285 | 0.04069 | 0.004464 | 187.5 | 1297211.4989 | -| ZILUSDT | 0.00109 | 0.001437 | 0.08648 | 0.05051 | 50.45 | 0.01023 | 0.01698 | 0.123 | 0.02463 | 1179.62 | 1297211.49891 | -| STXUSDT | 0.001078 | 0.001074 | 0.09597 | 0.04905 | 47.73 | 0.01733 | 0.02471 | 0.1403 | 0.02314 | 200.39 | 1297211.49892 | -| PEOPLEUSDT | 0.00108 | 0.0011 | 0.05494 | 0.01187 | 40.85 | 0.01583 | 0.01897 | 0.1087 | 0.04014 | 624.83 | 1297211.49892 | -| EGLDUSDT | 0.001029 | 0.001105 | 0.08869 | 0.0545 | 40.48 | 0.01012 | 0.02069 | 0.146 | 0.02204 | 1091.71 | 1297211.49897 | -| VETUSDT | 0.00102 | 0.001382 | 0.08089 | 0.03733 | 78.7 | 0.01447 | 0.01935 | 0.1262 | 0.06 | 1304.66 | 1297211.49898 | -| BLZUSDT | 0.0009945 | 0.001209 | 0.03702 | 0.01049 | 27.92 | 0.01448 | 0.01512 | 0.08593 | 0.05531 | 1088.7 | 1297211.49901 | -| BCHUSDT | 0.000972 | 0.001065 | 0.08422 | 0.04275 | 66.02 | 0.01578 | 0.01648 | 0.08782 | 0.03915 | 1349.0 | 1297211.49903 | -| LINAUSDT | 0.0009381 | 0.0009429 | 0.03608 | 0.01644 | 60.72 | 0.0132 | 0.02324 | 0.1457 | 0.02284 | 904.71 | 1297211.49906 | -| QTUMUSDT | 0.0009283 | 0.001323 | 0.09753 | 0.04261 | 63.9 | 0.01908 | 0.02157 | 0.1398 | 0.05224 | 1298.66 | 1297211.49907 | -| DYDXUSDT | 0.0009064 | 0.000983 | 0.05456 | 0.01895 | 49.33 | 0.01881 | 0.01847 | 0.09236 | 0.06656 | 729.85 | 1297211.49909 | -| XTZUSDT | 0.0008867 | 0.001716 | 0.06969 | 0.02838 | 55.42 | 0.0108 | 0.01136 | 0.07363 | 0.01983 | 1312.66 | 1297211.49911 | -| STGUSDT | 0.0008536 | 0.001099 | 0.1137 | 0.07544 | 46.72 | 0.01112 | 0.02075 | 0.1317 | 0.04597 | 380.5 | 1297211.49915 | -| DOGEUSDT | 0.0008331 | 0.001071 | 0.06443 | 0.01587 | 77.23 | 0.01772 | 0.02484 | 0.1457 | 0.01951 | 1157.62 | 1297211.49917 | -| KLAYUSDT | 0.0008197 | 0.0007535 | 0.08808 | 0.03755 | 46.32 | 0.01206 | 0.01809 | 0.1157 | 0.03755 | 697.85 | 1297211.49918 | -| XLMUSDT | 0.0008081 | 0.0008599 | 0.06938 | 0.02535 | 55.45 | 0.01612 | 0.01526 | 0.08728 | 0.07114 | 1329.66 | 1297211.49919 | -| 1000SHIBUSDT | 0.000803 | 0.001337 | 0.04415 | 0.01496 | 38.85 | 0.01113 | 0.0144 | 0.1009 | 0.01334 | 852.26 | 1297211.4992 | -| IOTXUSDT | 0.0007949 | 0.0009329 | 0.07023 | 0.02031 | 71.67 | 0.0195 | 0.02368 | 0.1368 | 0.02535 | 758.85 | 1297211.49921 | -| TRXUSDT | 0.000783 | 0.001072 | 0.1384 | 0.05098 | 63.35 | 0.01392 | 0.0164 | 0.1193 | 0.04335 | 1334.66 | 1297211.49922 | -| CTSIUSDT | 0.0007585 | 0.0008707 | 0.05774 | 0.01444 | 81.87 | 0.01891 | 0.02067 | 0.1107 | 0.02314 | 683.85 | 1297211.49924 | -| HOTUSDT | 0.000756 | 0.001072 | 0.0643 | 0.03175 | 59.08 | 0.01224 | 0.0166 | 0.1074 | 0.0794 | 893.71 | 1297211.49924 | -| BANDUSDT | 0.0007404 | 0.0009092 | 0.04087 | 0.006806 | 47.08 | 0.01353 | 0.01295 | 0.06264 | 0.01252 | 1138.71 | 1297211.49926 | -| BAKEUSDT | 0.0007137 | 0.0008215 | 0.04564 | 0.009827 | 54.3 | 0.0132 | 0.01598 | 0.09785 | 0.02171 | 843.71 | 1297211.49929 | -| OGNUSDT | 0.0006846 | 0.0007888 | 0.04449 | 0.0122 | 47.37 | 0.01762 | 0.0158 | 0.08263 | 0.02337 | 891.71 | 1297211.49932 | -| AXSUSDT | 0.0006472 | 0.0009167 | 0.05341 | 0.01844 | 33.47 | 0.01819 | 0.01765 | 0.09444 | 0.02698 | 1023.7 | 1297211.49935 | -| INJUSDT | 0.0006455 | 0.001087 | 0.07198 | 0.04189 | 33.27 | 0.01208 | 0.01501 | 0.1152 | 0.02783 | 388.88 | 1297211.49935 | -| APEUSDT | 0.000629 | 0.001034 | 0.05165 | 0.02263 | 28.1 | 0.01088 | 0.01216 | 0.09741 | 0.02353 | 541.37 | 1297211.49937 | -| ETCUSDT | 0.0006181 | 0.000987 | 0.05473 | 0.02227 | 36.13 | 0.01096 | 0.01317 | 0.1093 | 0.02601 | 1333.66 | 1297211.49938 | -| SOLUSDT | 0.0006068 | 0.0008111 | 0.05597 | 0.009885 | 37.75 | 0.01829 | 0.01832 | 0.09388 | 0.03818 | 1091.71 | 1297211.49939 | -| AAVEUSDT | 0.0005857 | 0.0009505 | 0.06157 | 0.03059 | 52.35 | 0.01261 | 0.02042 | 0.1485 | 0.03362 | 1059.71 | 1297211.49941 | -| LDOUSDT | 0.0005936 | 0.0007333 | 0.07921 | 0.03865 | 35.02 | 0.01804 | 0.01986 | 0.1159 | 0.04936 | 352.5 | 1297211.49941 | -| ICPUSDT | 0.000586 | 0.000587 | 0.04266 | 0.006466 | 38.25 | 0.01093 | 0.01145 | 0.05759 | 0.02704 | 347.89 | 1297211.49941 | -| ROSEUSDT | 0.0005637 | 0.0008332 | 0.03893 | 0.009036 | 67.7 | 0.008493 | 0.009685 | 0.05788 | 0.007769 | 617.85 | 1297211.49944 | -| ADAUSDT | 0.0005551 | 0.001062 | 0.06603 | 0.03665 | 78.85 | 0.01367 | 0.01949 | 0.1332 | 0.09562 | 1318.66 | 1297211.49944 | -| CHZUSDT | 0.0005649 | 0.001004 | 0.03912 | 0.0146 | 65.65 | 0.009843 | 0.0167 | 0.1199 | 0.01733 | 961.71 | 1297211.49944 | -| WAVESUSDT | 0.0005387 | 0.0006693 | 0.05289 | 0.02393 | 51.25 | 0.01795 | 0.02381 | 0.1494 | 0.09575 | 1124.71 | 1297211.49946 | -| BNBUSDT | 0.0005308 | 0.0007226 | 0.1012 | 0.05463 | 85.32 | 0.0108 | 0.01862 | 0.1369 | 0.04904 | 1308.66 | 1297211.49947 | -| DEFIUSDT | 0.0005236 | 0.0006727 | 0.06834 | 0.03521 | 83.65 | 0.01128 | 0.01347 | 0.07814 | 0.06269 | 1108.71 | 1297211.49948 | -| ETHUSDT | 0.0004899 | 0.0006401 | 0.08035 | 0.04383 | 117.1 | 0.0101 | 0.01435 | 0.08457 | 0.06043 | 1349.0 | 1297211.49951 | -| ARPAUSDT | 0.0004777 | 0.0006609 | 0.05024 | 0.03088 | 77.92 | 0.01132 | 0.01874 | 0.1169 | 0.08821 | 690.85 | 1297211.49952 | -| ANTUSDT | 0.0004492 | 0.0006298 | 0.08667 | 0.04362 | 56.43 | 0.01979 | 0.02185 | 0.1411 | 0.09182 | 621.83 | 1297211.49955 | -| BLUEBIRDUSDT | 0.0004229 | 0.0004407 | 0.1066 | 0.0642 | 40.83 | 0.01127 | 0.02108 | 0.1157 | 0.09819 | 311.5 | 1297211.49958 | -| ICXUSDT | 0.0003085 | 0.0004298 | 0.0339 | 0.01772 | 59.3 | 0.01427 | 0.01693 | 0.09596 | 0.02749 | 1090.71 | 1297211.49969 | -| RNDRUSDT | 0.0003054 | 0.0006433 | 0.03983 | 0.006089 | 48.13 | 0.01567 | 0.01517 | 0.06867 | 0.03626 | 218.89 | 1297211.49969 | -| BTCUSDT | 0.0002182 | 0.0002849 | 0.06246 | 0.03666 | 95.13 | 0.01138 | 0.01741 | 0.1046 | 0.047 | 1349.0 | 1297211.49978 | -| BTSUSDT | 0.0001754 | 0.001487 | 0.1268 | 0.08967 | 40.12 | 0.01416 | 0.02249 | 0.1447 | 0.09659 | 950.71 | 1297211.49982 | -| COCOSUSDT | 0.0001842 | 0.001842 | 0.07758 | 0.04885 | 46.6 | 0.01898 | 0.02342 | 0.09695 | 0.01979 | 200.38 | 1297211.49982 | -| RAYUSDT | 0.0001367 | 0.0009524 | 0.1242 | 0.03745 | 56.22 | 0.0105 | 0.01927 | 0.1422 | 0.09419 | 750.85 | 1297211.49986 | -| CVCUSDT | 0.0001307 | 0.0007544 | 0.04658 | 0.007706 | 66.4 | 0.01919 | 0.02174 | 0.1331 | 0.02777 | 1032.71 | 1297211.49987 | -| HNTUSDT | 0.0001176 | 0.0004446 | 0.02322 | 0.01009 | 48.43 | 0.01606 | 0.01897 | 0.09821 | 0.02286 | 1077.71 | 1297211.49988 | -| FTTUSDT | 9.378e-05 | 0.0009378 | 0.1216 | 0.08489 | 45.77 | 0.0193 | 0.0269 | 0.1133 | 0.04768 | 512.85 | 1297211.49991 | -| SCUSDT | 7.117e-05 | 0.0007117 | 0.03139 | 0.005204 | 59.43 | 0.00771 | 0.008185 | 0.05055 | 0.04078 | 880.71 | 1297211.49993 | -| BTCSTUSDT | 7.744e-06 | 7.744e-05 | 0.02469 | 4.53e-05 | 23.98 | 0.01022 | 0.0008157 | 0.01375 | 0.0 | 919.71 | 1297211.49999 | -| 1000PEPEUSDT | 0.0008044 | 0.000848 | 0.0966 | 0.06771 | 39.3 | 0.02277 | 0.02942 | 0.1434 | 0.08895 | 127.31 | 1297239.21775 | -| MASKUSDT | 0.0007851 | 0.0009624 | 0.05067 | 0.01064 | 84.65 | 0.02429 | 0.02752 | 0.1438 | 0.02591 | 743.85 | 1297254.4454 | -| SRMUSDT | 0.0001031 | 0.0005978 | 0.05769 | 0.01907 | 39.3 | 0.03078 | 0.02436 | 0.1579 | 0.05859 | 1100.91 | 1305192.87475 | -| OPUSDT | 0.0005587 | 0.0007167 | 0.04884 | 0.02865 | 55.63 | 0.01377 | 0.02557 | 0.1602 | 0.07652 | 465.41 | 1307389.8933 | -| GALAUSDT | 0.0003055 | 0.0004431 | 0.03637 | 0.02447 | 49.5 | 0.02355 | 0.05727 | 0.3311 | 0.0981 | 721.85 | 1481031.75942 | -| AUDIOUSDT | 8.204e-05 | 0.0005603 | 0.3639 | 0.3397 | 86.6 | 0.1456 | 0.1794 | 0.5694 | 0.07655 | 751.85 | 1732802.74182 | -| APTUSDT | 6.1e-05 | 0.00061 | 0.7602 | 0.7491 | 47.52 | 0.4143 | 0.2512 | 0.7783 | 0.07425 | 325.92 | 1951665.68581 | -| RUNEUSDT | 4.965e-05 | 0.0004965 | 0.9037 | 0.9043 | 60.65 | 0.4706 | 0.319 | 0.9183 | 0.09996 | 1101.7 | 2099002.94157 | -| GMTUSDT | 5.041e-06 | 5.041e-05 | 0.9984 | 0.998 | 6.683 | 0.4777 | 0.3198 | 1.403 | 0.0005431 | 543.83 | 2584360.71195 | -| BTCDOMUSDT | -0.0002482 | 7.297e-05 | 0.2248 | 0.202 | 125.1 | 0.02688 | 0.03683 | 0.1419 | 0.5118 | 810.85 | 5416171.40875 | -| USDCUSDT | -1.832e-05 | -2.71e-05 | 0.9729 | 0.9607 | 22.4 | 0.00171 | 0.001722 | 0.01577 | 1.0 | 181.29 | 10297305.8002 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000FLOKIUSDT.json deleted file mode 100644 index fd8ef36e1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000FLOKIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1176.2933920128153, - "delay_between_fills_minutes_entry": 1311.93284254683, - "delay_weight_close": 99.59465913058501, - "delay_weight_entry": 11.629793957480768, - "ema_dist_close": -0.002331833217907417, - "ema_dist_entry": 0.0019004590167591544, - "ema_span_0": 1253.3836717750069, - "ema_span_1": 1270.8617601976564, - "enabled": true, - "markup_range": 0.05601897423189382, - "min_markup": 0.0070842491311411335, - "n_close_orders": 11, - "qty_pct_close": 0.01611412340400685, - "qty_pct_entry": 0.019732462661093002, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.0977667718358}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.0286270059273, - "delay_between_fills_minutes_entry": 590.5395382856542, - "delay_weight_close": 73.86409969774728, - "delay_weight_entry": 11.63606726174301, - "ema_dist_close": -0.005796864529819415, - "ema_dist_entry": -7.570223063483808e-05, - "ema_span_0": 1286.6537997748628, - "ema_span_1": 691.0788579399167, - "enabled": true, - "markup_range": 0.012768451198535615, - "min_markup": 0.00894371721026067, - "n_close_orders": 11, - "qty_pct_close": 0.011654886439630101, - "qty_pct_entry": 0.01906752780366286, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.319277142923205}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000LUNCUSDT.json deleted file mode 100644 index e0076123c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000LUNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1167.7763485721239, - "delay_between_fills_minutes_entry": 1070.5012635157057, - "delay_weight_close": 64.47411839324123, - "delay_weight_entry": 30.26921998384661, - "ema_dist_close": -0.003709025351532321, - "ema_dist_entry": 0.0018908163432512835, - "ema_span_0": 829.8861035037357, - "ema_span_1": 965.5048648942922, - "enabled": true, - "markup_range": 0.007026586156628394, - "min_markup": 0.006112892899813559, - "n_close_orders": 4, - "qty_pct_close": 0.013140272142490517, - "qty_pct_entry": 0.017138610711076877, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.646044922151553}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 734.7396861881456, - "delay_between_fills_minutes_entry": 609.0186551757695, - "delay_weight_close": 39.90564880827172, - "delay_weight_entry": 14.477193043747654, - "ema_dist_close": -0.0015802420109257693, - "ema_dist_entry": -0.0013456738278392372, - "ema_span_0": 1116.744294213687, - "ema_span_1": 1198.3652802741203, - "enabled": true, - "markup_range": 0.04242032251101452, - "min_markup": 0.009598049644936822, - "n_close_orders": 4, - "qty_pct_close": 0.012164760246819274, - "qty_pct_entry": 0.012023702424462145, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.90304290994119}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000PEPEUSDT.json deleted file mode 100644 index 8ac6ed2ce..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000PEPEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 839.1801799896591, - "delay_between_fills_minutes_entry": 644.261028669426, - "delay_weight_close": 58.34127596735245, - "delay_weight_entry": 7.664243878066273, - "ema_dist_close": 0.0002846716507897707, - "ema_dist_entry": 0.002559137808281017, - "ema_span_0": 1273.2870006819821, - "ema_span_1": 815.7100077515217, - "enabled": true, - "markup_range": 0.05416952302916918, - "min_markup": 0.006513797389018672, - "n_close_orders": 11, - "qty_pct_close": 0.014734855719935276, - "qty_pct_entry": 0.010000179802596482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.4809116933829}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 955.5776579023875, - "delay_between_fills_minutes_entry": 242.97544881281078, - "delay_weight_close": 90.74566514717702, - "delay_weight_entry": 12.988550145257186, - "ema_dist_close": 0.0026001936267315753, - "ema_dist_entry": -0.004864498779125685, - "ema_span_0": 159.56397528297634, - "ema_span_1": 972.4868060961741, - "enabled": true, - "markup_range": 0.003335160573084139, - "min_markup": 0.0050711121879614286, - "n_close_orders": 10, - "qty_pct_close": 0.010633269605017365, - "qty_pct_entry": 0.015240460341530346, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.56884348115593}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000SHIBUSDT.json deleted file mode 100644 index f4aba2964..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000SHIBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 638.26857551682, - "delay_between_fills_minutes_entry": 375.9215142030756, - "delay_weight_close": 56.22147981434775, - "delay_weight_entry": 70.46091912135594, - "ema_dist_close": -0.0055567561297844995, - "ema_dist_entry": 1.9387270791002715e-05, - "ema_span_0": 1242.1215036806868, - "ema_span_1": 1287.40880814886, - "enabled": true, - "markup_range": 0.003257583294477592, - "min_markup": 0.0013497355477332463, - "n_close_orders": 6, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010039019082963393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.01024433021802}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 897.9004201983784, - "delay_between_fills_minutes_entry": 675.180796654765, - "delay_weight_close": 0.011213604046964261, - "delay_weight_entry": 12.04765419786439, - "ema_dist_close": -0.002164652088403749, - "ema_dist_entry": -0.0012361830797100004, - "ema_span_0": 1274.8305437295428, - "ema_span_1": 561.2735621725376, - "enabled": true, - "markup_range": 0.007351269707813335, - "min_markup": 0.007460256796595262, - "n_close_orders": 11, - "qty_pct_close": 0.027965752213135072, - "qty_pct_entry": 0.01532582921581298, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000XECUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000XECUSDT.json deleted file mode 100644 index 80d74c071..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1000XECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1003.3889581069147, - "delay_between_fills_minutes_entry": 1380.7693155535935, - "delay_weight_close": 47.84376204405854, - "delay_weight_entry": 14.583242695867465, - "ema_dist_close": -0.004844551023371233, - "ema_dist_entry": -0.0003197635436775899, - "ema_span_0": 1255.4901326657778, - "ema_span_1": 1160.1499913634602, - "enabled": true, - "markup_range": 0.05912789091483531, - "min_markup": 0.00938448893036117, - "n_close_orders": 11, - "qty_pct_close": 0.013310663853359727, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.091390593841737}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1369.3906821906455, - "delay_between_fills_minutes_entry": 729.9660532657346, - "delay_weight_close": 83.20130511614042, - "delay_weight_entry": 6.308908296360244, - "ema_dist_close": -0.0007606613222497299, - "ema_dist_entry": -0.00072244706777596, - "ema_span_0": 735.7134575591834, - "ema_span_1": 15.188000629580786, - "enabled": true, - "markup_range": 0.043025018091113025, - "min_markup": 0.006572320213045065, - "n_close_orders": 9, - "qty_pct_close": 0.014900764638338266, - "qty_pct_entry": 0.01495087579051833, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99612281143063}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1INCHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1INCHUSDT.json deleted file mode 100644 index 81ba598fb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/1INCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1424.7180571887138, - "delay_between_fills_minutes_entry": 1194.4758580976995, - "delay_weight_close": 48.36738016103076, - "delay_weight_entry": 84.07087551664155, - "ema_dist_close": 0.001779566648864142, - "ema_dist_entry": 0.0013704399252430926, - "ema_span_0": 1213.7797716255177, - "ema_span_1": 35.687319947457745, - "enabled": true, - "markup_range": 0.003466437442690177, - "min_markup": 0.002261938020049302, - "n_close_orders": 4, - "qty_pct_close": 0.047989134373515915, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.444142236481294}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1124.4186742504526, - "delay_between_fills_minutes_entry": 285.1714037675292, - "delay_weight_close": 34.19130973481907, - "delay_weight_entry": 13.146625315104457, - "ema_dist_close": -0.00829607679827095, - "ema_dist_entry": -0.014357514140350877, - "ema_span_0": 1371.1638433013538, - "ema_span_1": 137.5794991173445, - "enabled": true, - "markup_range": 0.005055143768724704, - "min_markup": 0.004949399695602308, - "n_close_orders": 6, - "qty_pct_close": 0.014201732895870999, - "qty_pct_entry": 0.012281233441579827, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.26591730679152}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AAVEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AAVEUSDT.json deleted file mode 100644 index b01d99453..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AAVEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.0925451231878, - "delay_between_fills_minutes_entry": 718.411755741354, - "delay_weight_close": 77.54520129563898, - "delay_weight_entry": 14.382527161760205, - "ema_dist_close": -0.005380797277627744, - "ema_dist_entry": 0.001007441764553622, - "ema_span_0": 1203.1293052949197, - "ema_span_1": 1149.6357542579112, - "enabled": true, - "markup_range": 0.01051999176701563, - "min_markup": 0.0029987693816479473, - "n_close_orders": 15, - "qty_pct_close": 0.018569704591509792, - "qty_pct_entry": 0.014075371507308369, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.79303009721973}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 875.6892665219402, - "delay_between_fills_minutes_entry": 392.7820938989788, - "delay_weight_close": 2.2118949557992504, - "delay_weight_entry": 28.15757167410565, - "ema_dist_close": 0.0028127769575680773, - "ema_dist_entry": -0.006892496669237737, - "ema_span_0": 1294.5354645669106, - "ema_span_1": 25.08963542537773, - "enabled": true, - "markup_range": 0.0032637451977078503, - "min_markup": 0.0034282758772801437, - "n_close_orders": 15, - "qty_pct_close": 0.010198866631629094, - "qty_pct_entry": 0.010157353883734748, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.389479760458038}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ACHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ACHUSDT.json deleted file mode 100644 index 2c7f980b9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ACHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1278.015451884191, - "delay_between_fills_minutes_entry": 1168.5349744098987, - "delay_weight_close": 73.51892701521415, - "delay_weight_entry": 17.043253455955078, - "ema_dist_close": 0.0022754122091716133, - "ema_dist_entry": -0.0010076911867558744, - "ema_span_0": 593.985869003583, - "ema_span_1": 1296.294650706882, - "enabled": true, - "markup_range": 0.05976764211196854, - "min_markup": 0.003854864364475789, - "n_close_orders": 2, - "qty_pct_close": 0.010011785307207727, - "qty_pct_entry": 0.012699330523892603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.9243624835063575}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1195.6349010470192, - "delay_between_fills_minutes_entry": 1028.0226219294163, - "delay_weight_close": 0.4479308762505563, - "delay_weight_entry": 9.408810943425152, - "ema_dist_close": -0.0017343169838513078, - "ema_dist_entry": -0.00207684670398043, - "ema_span_0": 845.4835836383445, - "ema_span_1": 661.5236147697718, - "enabled": true, - "markup_range": 0.013659957402464763, - "min_markup": 0.008728025534855728, - "n_close_orders": 10, - "qty_pct_close": 0.018773382692647674, - "qty_pct_entry": 0.02891768010922691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.61425939556739}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ADAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ADAUSDT.json deleted file mode 100644 index 8c170912b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ADAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.5003973123619, - "delay_between_fills_minutes_entry": 526.3221218699568, - "delay_weight_close": 38.43171485203275, - "delay_weight_entry": 16.136122107729772, - "ema_dist_close": 0.0015652208395273695, - "ema_dist_entry": 0.0010480138294664575, - "ema_span_0": 365.1896933312504, - "ema_span_1": 1307.3560828543712, - "enabled": true, - "markup_range": 0.003163981405014405, - "min_markup": 0.003529016431257378, - "n_close_orders": 4, - "qty_pct_close": 0.01001023898085717, - "qty_pct_entry": 0.016540600909196734, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.44085890901838}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1116.148328187493, - "delay_between_fills_minutes_entry": 955.1927459895028, - "delay_weight_close": 7.116017203113914e-06, - "delay_weight_entry": 23.248483400780408, - "ema_dist_close": -0.00786888095111569, - "ema_dist_entry": 0.002003247627114407, - "ema_span_0": 1339.9547805731943, - "ema_span_1": 618.6449453015748, - "enabled": true, - "markup_range": 0.020313606633902605, - "min_markup": 0.008853625106037759, - "n_close_orders": 13, - "qty_pct_close": 0.03277703367406918, - "qty_pct_entry": 0.0100577403540605, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.433239717239113}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AGIXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AGIXUSDT.json deleted file mode 100644 index 68c757fe2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AGIXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 690.5655078895263, - "delay_between_fills_minutes_entry": 1103.2537369529284, - "delay_weight_close": 71.49582206926183, - "delay_weight_entry": 5.410521707622705, - "ema_dist_close": 0.0006404732704981607, - "ema_dist_entry": 0.0005348919944594128, - "ema_span_0": 732.9755026552284, - "ema_span_1": 1381.6907506968425, - "enabled": true, - "markup_range": 0.05953995486240887, - "min_markup": 0.009498296506061932, - "n_close_orders": 15, - "qty_pct_close": 0.015527158985520328, - "qty_pct_entry": 0.020254599810336817, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.57359517989189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1350.4944550800826, - "delay_between_fills_minutes_entry": 148.25612255587873, - "delay_weight_close": 81.40989169865331, - "delay_weight_entry": 12.74100004425152, - "ema_dist_close": -0.0013209271760803135, - "ema_dist_entry": -0.0019234139714162368, - "ema_span_0": 250.5903284781598, - "ema_span_1": 196.6490081367495, - "enabled": true, - "markup_range": 0.005748433717329186, - "min_markup": 0.003870389867844866, - "n_close_orders": 2, - "qty_pct_close": 0.022338256370162783, - "qty_pct_entry": 0.010273702499073147, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.08447240724606}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AGLDUSDT.json deleted file mode 100644 index 3754799d2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 946.0324511552675, - "delay_between_fills_minutes_entry": 1234.7531871252527, - "delay_weight_close": 23.81982993570577, - "delay_weight_entry": 14.534173468152913, - "ema_dist_close": -0.002186019491064776, - "ema_dist_entry": -0.0014662713762488417, - "ema_span_0": 1310.552922145013, - "ema_span_1": 1073.6182035104493, - "enabled": true, - "markup_range": 0.028580063621697554, - "min_markup": 0.008092299264809859, - "n_close_orders": 4, - "qty_pct_close": 0.011387301692636475, - "qty_pct_entry": 0.012613543935737853, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.1708870851534}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 955.5776579023875, - "delay_between_fills_minutes_entry": 242.97544881281078, - "delay_weight_close": 90.74566514717702, - "delay_weight_entry": 12.988550145257186, - "ema_dist_close": 0.0026001936267315753, - "ema_dist_entry": -0.004864498779125685, - "ema_span_0": 159.56397528297634, - "ema_span_1": 972.4868060961741, - "enabled": true, - "markup_range": 0.003335160573084139, - "min_markup": 0.0050711121879614286, - "n_close_orders": 10, - "qty_pct_close": 0.010633269605017365, - "qty_pct_entry": 0.015240460341530346, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.56884348115593}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALGOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALGOUSDT.json deleted file mode 100644 index af34b9e6b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALGOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.8680750134843, - "delay_between_fills_minutes_entry": 875.518001826808, - "delay_weight_close": 91.0390850405457, - "delay_weight_entry": 18.286652631600212, - "ema_dist_close": -0.0037007947983096253, - "ema_dist_entry": 0.0020232003017431194, - "ema_span_0": 222.6611949827334, - "ema_span_1": 1141.2763801842377, - "enabled": true, - "markup_range": 0.051192353764961805, - "min_markup": 0.009647824886468582, - "n_close_orders": 16, - "qty_pct_close": 0.011561177989106143, - "qty_pct_entry": 0.012658036162887467, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.661879707550536}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1426.2438734036848, - "delay_between_fills_minutes_entry": 1301.954954446437, - "delay_weight_close": 0.012107266356741942, - "delay_weight_entry": 25.199693237588573, - "ema_dist_close": -0.0015898069776289375, - "ema_dist_entry": -0.0013332931217623454, - "ema_span_0": 1067.3022616087426, - "ema_span_1": 1403.2947188807573, - "enabled": true, - "markup_range": 0.05380349721363272, - "min_markup": 0.009239678656653273, - "n_close_orders": 2, - "qty_pct_close": 0.049875091199461014, - "qty_pct_entry": 0.01102686813040208, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.883455808398026}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALICEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALICEUSDT.json deleted file mode 100644 index aa3181cfc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALICEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 923.5193907205228, - "delay_between_fills_minutes_entry": 572.5905076341224, - "delay_weight_close": 11.330165357169482, - "delay_weight_entry": 17.228729557316647, - "ema_dist_close": -0.000594278460416466, - "ema_dist_entry": -0.0012757617180653587, - "ema_span_0": 311.4415710723823, - "ema_span_1": 900.4415880150826, - "enabled": true, - "markup_range": 0.003558912952843082, - "min_markup": 0.004817189913833993, - "n_close_orders": 12, - "qty_pct_close": 0.028450973632322248, - "qty_pct_entry": 0.026598569500932534, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.0916021041494}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1010.0342115355276, - "delay_between_fills_minutes_entry": 264.2260209697158, - "delay_weight_close": 34.08677146819553, - "delay_weight_entry": 6.184148010557483, - "ema_dist_close": -0.004183381122459921, - "ema_dist_entry": -0.011747822111547854, - "ema_span_0": 1090.909379615847, - "ema_span_1": 1092.9029645165308, - "enabled": true, - "markup_range": 0.0003290558822729028, - "min_markup": 0.00890196387637511, - "n_close_orders": 13, - "qty_pct_close": 0.01618610326609813, - "qty_pct_entry": 0.01579984934868841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.46462357070327}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALPHAUSDT.json deleted file mode 100644 index ec68ae787..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ALPHAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 743.511695084353, - "delay_between_fills_minutes_entry": 737.184113473903, - "delay_weight_close": 0.0723833098903097, - "delay_weight_entry": 12.586867824488298, - "ema_dist_close": -0.0010871541543948985, - "ema_dist_entry": 0.0007505459056545043, - "ema_span_0": 1081.1680101954232, - "ema_span_1": 1360.9087753198803, - "enabled": true, - "markup_range": 0.026824188767557024, - "min_markup": 0.004346337159798564, - "n_close_orders": 5, - "qty_pct_close": 0.01982107434383019, - "qty_pct_entry": 0.010084154455354715, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.620082870010325}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 657.9354817888292, - "delay_between_fills_minutes_entry": 973.0712075310287, - "delay_weight_close": 4.137670342816308, - "delay_weight_entry": 11.218845722637502, - "ema_dist_close": 0.002982592354752991, - "ema_dist_entry": -0.008881273694416715, - "ema_span_0": 643.0134463024921, - "ema_span_1": 1235.329628477941, - "enabled": true, - "markup_range": 0.03289901251253172, - "min_markup": 0.0056128720996133745, - "n_close_orders": 3, - "qty_pct_close": 0.01049797659028328, - "qty_pct_entry": 0.012466293291526495, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.43682523409672}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AMBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AMBUSDT.json deleted file mode 100644 index c8d544c34..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AMBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1152.6703941349115, - "delay_between_fills_minutes_entry": 1151.5698001268431, - "delay_weight_close": 21.680148300323655, - "delay_weight_entry": 13.842330282178924, - "ema_dist_close": 0.0014483837042604663, - "ema_dist_entry": 0.002509114899523354, - "ema_span_0": 950.8918896795619, - "ema_span_1": 454.32416604800113, - "enabled": true, - "markup_range": 0.05495623306333167, - "min_markup": 0.008978350812596177, - "n_close_orders": 12, - "qty_pct_close": 0.0419988260213963, - "qty_pct_entry": 0.01004150620570805, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.391440564043485}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 378.9695069806188, - "delay_between_fills_minutes_entry": 336.9774642676796, - "delay_weight_close": 75.50438935618814, - "delay_weight_entry": 2.9728025399804854, - "ema_dist_close": 0.0028395015507380393, - "ema_dist_entry": -0.0001583660343275829, - "ema_span_0": 1370.05375447131, - "ema_span_1": 88.52808463184316, - "enabled": true, - "markup_range": 0.05172753519180264, - "min_markup": 0.009683835755756945, - "n_close_orders": 7, - "qty_pct_close": 0.010190966080316747, - "qty_pct_entry": 0.010246267418705936, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.54609558755943}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ANKRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ANKRUSDT.json deleted file mode 100644 index f15ec56b1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ANKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1311.1610691739004, - "delay_between_fills_minutes_entry": 927.0527613268443, - "delay_weight_close": 17.089343021594974, - "delay_weight_entry": 25.964854637704725, - "ema_dist_close": -0.0016916019414369386, - "ema_dist_entry": -0.03655552563979796, - "ema_span_0": 88.66486172889032, - "ema_span_1": 339.2744596194299, - "enabled": true, - "markup_range": 0.00517108361485135, - "min_markup": 0.005005853458634918, - "n_close_orders": 14, - "qty_pct_close": 0.01932913293665246, - "qty_pct_entry": 0.0101241566515552, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.816574903806504}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.242552911291, - "delay_between_fills_minutes_entry": 1136.8881382691468, - "delay_weight_close": 93.68575779787182, - "delay_weight_entry": 14.736403257028229, - "ema_dist_close": -0.009163549740664072, - "ema_dist_entry": -0.00955426174853583, - "ema_span_0": 1270.6619014242672, - "ema_span_1": 1170.5525286871516, - "enabled": true, - "markup_range": 0.015059670023580909, - "min_markup": 0.007983559420896706, - "n_close_orders": 12, - "qty_pct_close": 0.011633984668412008, - "qty_pct_entry": 0.025021552321859077, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.91040703202347}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ANTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ANTUSDT.json deleted file mode 100644 index 68001faca..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ANTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1321.0850892252276, - "delay_between_fills_minutes_entry": 723.9137207892292, - "delay_weight_close": 6.778064078180142, - "delay_weight_entry": 10.988406439954002, - "ema_dist_close": 0.0020250142472599186, - "ema_dist_entry": -0.008850336077802242, - "ema_span_0": 21.8964908679896, - "ema_span_1": 1414.102114250467, - "enabled": true, - "markup_range": 0.008603799997873966, - "min_markup": 0.007196036124784902, - "n_close_orders": 3, - "qty_pct_close": 0.01029743652757103, - "qty_pct_entry": 0.01199485269099403, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.439175524821858}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/APEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/APEUSDT.json deleted file mode 100644 index 7ba66e956..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/APEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9038312944454, - "delay_between_fills_minutes_entry": 1358.2269218391982, - "delay_weight_close": 19.36726999065258, - "delay_weight_entry": 13.792473220354431, - "ema_dist_close": 0.002995775390258391, - "ema_dist_entry": -0.006157067078552275, - "ema_span_0": 1380.551612249665, - "ema_span_1": 1428.1158268201004, - "enabled": true, - "markup_range": 0.006617068187209175, - "min_markup": 0.006892948989530765, - "n_close_orders": 2, - "qty_pct_close": 0.010101724252423288, - "qty_pct_entry": 0.01017592289519369, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.999982330441114}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1366.3039722347423, - "delay_between_fills_minutes_entry": 877.699022736164, - "delay_weight_close": 51.97795400115561, - "delay_weight_entry": 26.289335852509527, - "ema_dist_close": 0.002057815310722368, - "ema_dist_entry": -0.03666969489643718, - "ema_span_0": 1189.4339389831146, - "ema_span_1": 1236.3569354371555, - "enabled": true, - "markup_range": 0.0008006423664462353, - "min_markup": 0.003685885542732154, - "n_close_orders": 7, - "qty_pct_close": 0.010000742934055963, - "qty_pct_entry": 0.011375155335470117, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.054828835604646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/API3USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/API3USDT.json deleted file mode 100644 index 5286891ec..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/API3USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.2699061982983, - "delay_between_fills_minutes_entry": 759.3282496748589, - "delay_weight_close": 19.642581692198238, - "delay_weight_entry": 8.395388694148993, - "ema_dist_close": -0.0027235482926328005, - "ema_dist_entry": 0.0004287019332376506, - "ema_span_0": 1134.6099027180217, - "ema_span_1": 354.07887972072325, - "enabled": true, - "markup_range": 0.00829940886860947, - "min_markup": 0.007945344947761517, - "n_close_orders": 16, - "qty_pct_close": 0.010006309155270305, - "qty_pct_entry": 0.010751236409972841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.661645779221345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.296534384855, - "delay_between_fills_minutes_entry": 60.00216771317934, - "delay_weight_close": 25.360839349649748, - "delay_weight_entry": 0.03722496254391398, - "ema_dist_close": -0.0016860144742498221, - "ema_dist_entry": 0.00278213855533509, - "ema_span_0": 1196.7704319755164, - "ema_span_1": 1193.7319168426068, - "enabled": true, - "markup_range": 0.0, - "min_markup": 0.006013094464188351, - "n_close_orders": 2, - "qty_pct_close": 0.021780714916111738, - "qty_pct_entry": 0.010131652918473743, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.855778314800926}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/APTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/APTUSDT.json deleted file mode 100644 index f4c4377c5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/APTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.7357188679891, - "delay_between_fills_minutes_entry": 1356.2711460748983, - "delay_weight_close": 99.02566588088874, - "delay_weight_entry": 15.531894895040757, - "ema_dist_close": -0.009742305559658567, - "ema_dist_entry": 0.0008811953147525582, - "ema_span_0": 776.1041675821988, - "ema_span_1": 1186.368670004645, - "enabled": true, - "markup_range": 0.0342059963950984, - "min_markup": 0.007388644929588475, - "n_close_orders": 10, - "qty_pct_close": 0.018544712305160787, - "qty_pct_entry": 0.01029124612294046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.441602553662435}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.1774531358149, - "delay_between_fills_minutes_entry": 1041.3795698388174, - "delay_weight_close": 93.36314180868105, - "delay_weight_entry": 19.233880083671497, - "ema_dist_close": -0.00023288485156279555, - "ema_dist_entry": 0.002993208576396276, - "ema_span_0": 391.42066487081803, - "ema_span_1": 1400.9606053805953, - "enabled": true, - "markup_range": 0.028351678995716934, - "min_markup": 0.0025028951449733217, - "n_close_orders": 13, - "qty_pct_close": 0.010000993005291172, - "qty_pct_entry": 0.021965837271458448, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.532954214366974}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARBUSDT.json deleted file mode 100644 index 8de82dd37..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 839.1801799896591, - "delay_between_fills_minutes_entry": 644.261028669426, - "delay_weight_close": 58.34127596735245, - "delay_weight_entry": 7.664243878066273, - "ema_dist_close": 0.0002846716507897707, - "ema_dist_entry": 0.002559137808281017, - "ema_span_0": 1273.2870006819821, - "ema_span_1": 815.7100077515217, - "enabled": true, - "markup_range": 0.05416952302916918, - "min_markup": 0.006513797389018672, - "n_close_orders": 11, - "qty_pct_close": 0.014734855719935276, - "qty_pct_entry": 0.010000179802596482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.4809116933829}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1092.4776374281764, - "delay_between_fills_minutes_entry": 401.0870529655432, - "delay_weight_close": 97.72458676173235, - "delay_weight_entry": 1.642645164557317, - "ema_dist_close": 0.0025784942036235574, - "ema_dist_entry": -0.002229374843600856, - "ema_span_0": 487.62471283418927, - "ema_span_1": 1342.9791754564674, - "enabled": true, - "markup_range": 0.008521039881417653, - "min_markup": 0.00800530965626805, - "n_close_orders": 2, - "qty_pct_close": 0.010209719681135947, - "qty_pct_entry": 0.018728076197617193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.47346258189105}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARKMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARKMUSDT.json deleted file mode 100644 index 7a003575c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARKMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1272.295615728259, - "delay_between_fills_minutes_entry": 946.1575499032541, - "delay_weight_close": 23.070244907281033, - "delay_weight_entry": 30.726880052085708, - "ema_dist_close": 0.0011210874406601084, - "ema_dist_entry": 0.003, - "ema_span_0": 590.2557561937244, - "ema_span_1": 1395.8995066284672, - "enabled": true, - "markup_range": 0.006509473619827294, - "min_markup": 0.004377337441675553, - "n_close_orders": 4, - "qty_pct_close": 0.01034671335964153, - "qty_pct_entry": 0.02486423375940932, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.43984146055101}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1048.4609328936479, - "delay_between_fills_minutes_entry": 825.1223460169658, - "delay_weight_close": 32.83425694637858, - "delay_weight_entry": 12.335082461379335, - "ema_dist_close": 0.002722332965949797, - "ema_dist_entry": -0.008885664301206155, - "ema_span_0": 1380.4455760412031, - "ema_span_1": 1291.4148799392235, - "enabled": true, - "markup_range": 0.05195417039760784, - "min_markup": 0.007305073586800737, - "n_close_orders": 11, - "qty_pct_close": 0.012152701558263578, - "qty_pct_entry": 0.010010066704277894, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.15393587949443}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARPAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARPAUSDT.json deleted file mode 100644 index bba14fa72..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARPAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.7357188679891, - "delay_between_fills_minutes_entry": 1356.2711460748983, - "delay_weight_close": 99.02566588088874, - "delay_weight_entry": 15.531894895040757, - "ema_dist_close": -0.009742305559658567, - "ema_dist_entry": 0.0008811953147525582, - "ema_span_0": 776.1041675821988, - "ema_span_1": 1186.368670004645, - "enabled": true, - "markup_range": 0.0342059963950984, - "min_markup": 0.007388644929588475, - "n_close_orders": 10, - "qty_pct_close": 0.018544712305160787, - "qty_pct_entry": 0.01029124612294046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.441602553662435}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1366.3039722347423, - "delay_between_fills_minutes_entry": 877.699022736164, - "delay_weight_close": 51.97795400115561, - "delay_weight_entry": 26.289335852509527, - "ema_dist_close": 0.002057815310722368, - "ema_dist_entry": -0.03666969489643718, - "ema_span_0": 1189.4339389831146, - "ema_span_1": 1236.3569354371555, - "enabled": true, - "markup_range": 0.0008006423664462353, - "min_markup": 0.003685885542732154, - "n_close_orders": 7, - "qty_pct_close": 0.010000742934055963, - "qty_pct_entry": 0.011375155335470117, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.054828835604646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARUSDT.json deleted file mode 100644 index 8e80ff4a1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 359.70154922183286, - "delay_weight_close": 1.8684468067175353, - "delay_weight_entry": 7.4183255537921475, - "ema_dist_close": 0.0029997859886671677, - "ema_dist_entry": -0.001691060409185404, - "ema_span_0": 1206.750457563136, - "ema_span_1": 771.3172702577781, - "enabled": true, - "markup_range": 0.0059602319547304265, - "min_markup": 0.005079186050498823, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.015387447758002585, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.998184065868266}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ASTRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ASTRUSDT.json deleted file mode 100644 index 8dc4bc986..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ASTRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1190.0273715308176, - "delay_between_fills_minutes_entry": 711.494909795612, - "delay_weight_close": 81.59442626991188, - "delay_weight_entry": 9.473061740595735, - "ema_dist_close": 0.0005869187996545617, - "ema_dist_entry": 0.001045846077443509, - "ema_span_0": 1126.183320412245, - "ema_span_1": 964.5276091782608, - "enabled": true, - "markup_range": 0.058554872849972975, - "min_markup": 0.004702770113676486, - "n_close_orders": 7, - "qty_pct_close": 0.03388856637344066, - "qty_pct_entry": 0.016145941417022157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.97115260900077}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1010.0342115355276, - "delay_between_fills_minutes_entry": 264.2260209697158, - "delay_weight_close": 34.08677146819553, - "delay_weight_entry": 6.184148010557483, - "ema_dist_close": -0.004183381122459921, - "ema_dist_entry": -0.011747822111547854, - "ema_span_0": 1090.909379615847, - "ema_span_1": 1092.9029645165308, - "enabled": true, - "markup_range": 0.0003290558822729028, - "min_markup": 0.00890196387637511, - "n_close_orders": 13, - "qty_pct_close": 0.01618610326609813, - "qty_pct_entry": 0.01579984934868841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.46462357070327}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ATAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ATAUSDT.json deleted file mode 100644 index 0cec47c35..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ATAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.6355759042592, - "delay_between_fills_minutes_entry": 885.0761103076054, - "delay_weight_close": 0.5735493549614912, - "delay_weight_entry": 13.181646294679709, - "ema_dist_close": 0.0029998539309889446, - "ema_dist_entry": -0.0015638258734715354, - "ema_span_0": 1188.0961324668651, - "ema_span_1": 1130.7422210601246, - "enabled": true, - "markup_range": 0.008373913978111484, - "min_markup": 0.006166432840553094, - "n_close_orders": 5, - "qty_pct_close": 0.012069007829170534, - "qty_pct_entry": 0.010000012672901723, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.2006356297956}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1300.9024398199454, - "delay_between_fills_minutes_entry": 608.1488601105596, - "delay_weight_close": 25.374281973104768, - "delay_weight_entry": 10.286266722953142, - "ema_dist_close": -0.007291959630060191, - "ema_dist_entry": -0.023471341233173005, - "ema_span_0": 1406.6124783868022, - "ema_span_1": 1388.8739428775586, - "enabled": true, - "markup_range": 0.011484078660476798, - "min_markup": 0.008808400319445653, - "n_close_orders": 13, - "qty_pct_close": 0.010326429071965234, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.344657524015716}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ATOMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ATOMUSDT.json deleted file mode 100644 index f685ec649..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ATOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1293.2949514567902, - "delay_between_fills_minutes_entry": 812.5631553046901, - "delay_weight_close": 76.35971118516652, - "delay_weight_entry": 23.498200422079446, - "ema_dist_close": 0.0029019811758497186, - "ema_dist_entry": -0.010141539128529602, - "ema_span_0": 397.1260459433863, - "ema_span_1": 1131.4753399035055, - "enabled": true, - "markup_range": 0.008036835746562195, - "min_markup": 0.0062175018176349505, - "n_close_orders": 4, - "qty_pct_close": 0.012960455548697822, - "qty_pct_entry": 0.013119283704811939, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.7897418250017}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1397.4356234672036, - "delay_between_fills_minutes_entry": 362.41778010921234, - "delay_weight_close": 66.51221749266405, - "delay_weight_entry": 29.874981172384672, - "ema_dist_close": -0.0034891915231158514, - "ema_dist_entry": -0.022241976669033294, - "ema_span_0": 1252.3574904635905, - "ema_span_1": 5.105766588824434, - "enabled": true, - "markup_range": 0.004414952041497922, - "min_markup": 0.003504478660960904, - "n_close_orders": 12, - "qty_pct_close": 0.010735811745924443, - "qty_pct_entry": 0.010786244736850524, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.73558531003513}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AUDIOUSDT.json deleted file mode 100644 index 02f5a413a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AUDIOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.7357188679891, - "delay_between_fills_minutes_entry": 1356.2711460748983, - "delay_weight_close": 99.02566588088874, - "delay_weight_entry": 15.531894895040757, - "ema_dist_close": -0.009742305559658567, - "ema_dist_entry": 0.0008811953147525582, - "ema_span_0": 776.1041675821988, - "ema_span_1": 1186.368670004645, - "enabled": true, - "markup_range": 0.0342059963950984, - "min_markup": 0.007388644929588475, - "n_close_orders": 10, - "qty_pct_close": 0.018544712305160787, - "qty_pct_entry": 0.01029124612294046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.441602553662435}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1419.3676962697248, - "delay_between_fills_minutes_entry": 312.63332002210075, - "delay_weight_close": 4.20026481283658, - "delay_weight_entry": 11.985960685813058, - "ema_dist_close": 0.0020589355515788017, - "ema_dist_entry": -0.0053094528673759776, - "ema_span_0": 720.1562335588767, - "ema_span_1": 928.1561920881004, - "enabled": true, - "markup_range": 0.00781294701678672, - "min_markup": 0.003242161927052182, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01002153714709753, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.006819860939437}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AVAXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AVAXUSDT.json deleted file mode 100644 index 2d2a78dec..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AVAXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 998.283100095386, - "delay_between_fills_minutes_entry": 1353.9409151401867, - "delay_weight_close": 23.998700533855594, - "delay_weight_entry": 29.208246411345336, - "ema_dist_close": 0.0003477238347567329, - "ema_dist_entry": 0.0012639934251844486, - "ema_span_0": 1044.0114215350177, - "ema_span_1": 1212.3195550389867, - "enabled": true, - "markup_range": 0.008305561421068789, - "min_markup": 0.00838610468114567, - "n_close_orders": 13, - "qty_pct_close": 0.014025191308656305, - "qty_pct_entry": 0.010729640997343774, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.19873304895643}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 955.5776579023875, - "delay_between_fills_minutes_entry": 242.97544881281078, - "delay_weight_close": 90.74566514717702, - "delay_weight_entry": 12.988550145257186, - "ema_dist_close": 0.0026001936267315753, - "ema_dist_entry": -0.004864498779125685, - "ema_span_0": 159.56397528297634, - "ema_span_1": 972.4868060961741, - "enabled": true, - "markup_range": 0.003335160573084139, - "min_markup": 0.0050711121879614286, - "n_close_orders": 10, - "qty_pct_close": 0.010633269605017365, - "qty_pct_entry": 0.015240460341530346, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.56884348115593}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AXSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AXSUSDT.json deleted file mode 100644 index 432bad93e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/AXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 568.2316371846455, - "delay_between_fills_minutes_entry": 696.0360713828156, - "delay_weight_close": 42.38861661765466, - "delay_weight_entry": 10.743898710046228, - "ema_dist_close": 0.000493203264393399, - "ema_dist_entry": 0.0028693449079558414, - "ema_span_0": 1026.49221167881, - "ema_span_1": 1334.9849978301283, - "enabled": true, - "markup_range": 0.05559312790251497, - "min_markup": 0.004835554660619544, - "n_close_orders": 10, - "qty_pct_close": 0.01585918622920868, - "qty_pct_entry": 0.010427923355991239, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.262228758728327}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.656643855095, - "delay_between_fills_minutes_entry": 782.8056664510294, - "delay_weight_close": 78.07989747591833, - "delay_weight_entry": 8.309990917221118, - "ema_dist_close": 0.00280942380814027, - "ema_dist_entry": -0.026794734338817888, - "ema_span_0": 1373.190004694209, - "ema_span_1": 279.02125940733515, - "enabled": true, - "markup_range": 0.003292640720548637, - "min_markup": 0.009132300009798113, - "n_close_orders": 2, - "qty_pct_close": 0.01026966029595279, - "qty_pct_entry": 0.01120347489116189, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.14973299326769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BAKEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BAKEUSDT.json deleted file mode 100644 index 285061fc4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BAKEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.7357188679891, - "delay_between_fills_minutes_entry": 1356.2711460748983, - "delay_weight_close": 99.02566588088874, - "delay_weight_entry": 15.531894895040757, - "ema_dist_close": -0.009742305559658567, - "ema_dist_entry": 0.0008811953147525582, - "ema_span_0": 776.1041675821988, - "ema_span_1": 1186.368670004645, - "enabled": true, - "markup_range": 0.0342059963950984, - "min_markup": 0.007388644929588475, - "n_close_orders": 10, - "qty_pct_close": 0.018544712305160787, - "qty_pct_entry": 0.01029124612294046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.441602553662435}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1324.0488930782142, - "delay_between_fills_minutes_entry": 1002.9445682451891, - "delay_weight_close": 56.43385764973538, - "delay_weight_entry": 15.324152423547583, - "ema_dist_close": -0.0023936462260436254, - "ema_dist_entry": -0.0030417323095584575, - "ema_span_0": 441.4417003774887, - "ema_span_1": 467.6399349698424, - "enabled": true, - "markup_range": 0.00850010451170167, - "min_markup": 0.007279980421371357, - "n_close_orders": 6, - "qty_pct_close": 0.020292393844517507, - "qty_pct_entry": 0.010842091438105089, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.41832756253448}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BALUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BALUSDT.json deleted file mode 100644 index d5f3de64e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.6355759042592, - "delay_between_fills_minutes_entry": 885.0761103076054, - "delay_weight_close": 0.5735493549614912, - "delay_weight_entry": 13.181646294679709, - "ema_dist_close": 0.0029998539309889446, - "ema_dist_entry": -0.0015638258734715354, - "ema_span_0": 1188.0961324668651, - "ema_span_1": 1130.7422210601246, - "enabled": true, - "markup_range": 0.008373913978111484, - "min_markup": 0.006166432840553094, - "n_close_orders": 5, - "qty_pct_close": 0.012069007829170534, - "qty_pct_entry": 0.010000012672901723, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.2006356297956}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1204.4546701711274, - "delay_between_fills_minutes_entry": 1128.1408534064008, - "delay_weight_close": 16.678306635091506, - "delay_weight_entry": 8.85516848053756, - "ema_dist_close": -0.003818699394040435, - "ema_dist_entry": -0.007529238148379888, - "ema_span_0": 1316.8704868026111, - "ema_span_1": 1048.413572357066, - "enabled": true, - "markup_range": 0.02711580065855055, - "min_markup": 0.0037526765235939264, - "n_close_orders": 5, - "qty_pct_close": 0.011394630718400411, - "qty_pct_entry": 0.012983194494298482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.34142025772678}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BANDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BANDUSDT.json deleted file mode 100644 index 0d773a09b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1254.3185368880913, - "delay_between_fills_minutes_entry": 837.4057618397428, - "delay_weight_close": 12.002156107154304, - "delay_weight_entry": 15.983419463881797, - "ema_dist_close": 0.002934753642313193, - "ema_dist_entry": 0.0014839990846928477, - "ema_span_0": 1046.7126603754068, - "ema_span_1": 1387.3118038092148, - "enabled": true, - "markup_range": 0.008537842928700053, - "min_markup": 0.006259756799476494, - "n_close_orders": 2, - "qty_pct_close": 0.01482439146216911, - "qty_pct_entry": 0.013880334677533026, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.53906902102223}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1419.3676962697248, - "delay_between_fills_minutes_entry": 312.63332002210075, - "delay_weight_close": 4.20026481283658, - "delay_weight_entry": 11.985960685813058, - "ema_dist_close": 0.0020589355515788017, - "ema_dist_entry": -0.0053094528673759776, - "ema_span_0": 720.1562335588767, - "ema_span_1": 928.1561920881004, - "enabled": true, - "markup_range": 0.00781294701678672, - "min_markup": 0.003242161927052182, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01002153714709753, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.006819860939437}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BATUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BATUSDT.json deleted file mode 100644 index fc42d0b74..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BATUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 997.0000428669509, - "delay_between_fills_minutes_entry": 1217.8755637864206, - "delay_weight_close": 27.36272314154286, - "delay_weight_entry": 9.89645320260862, - "ema_dist_close": 0.0021969286141675804, - "ema_dist_entry": -0.006420112272369508, - "ema_span_0": 1329.8829530532444, - "ema_span_1": 458.627939784733, - "enabled": true, - "markup_range": 0.059362192350556946, - "min_markup": 0.007719194571645459, - "n_close_orders": 15, - "qty_pct_close": 0.01284845196424333, - "qty_pct_entry": 0.010228660619906562, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.654758176804897}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1295.1140316978913, - "delay_between_fills_minutes_entry": 722.8939727330927, - "delay_weight_close": 56.82370025196661, - "delay_weight_entry": 9.257791869051784, - "ema_dist_close": -0.007373392125224754, - "ema_dist_entry": -0.008375507302133087, - "ema_span_0": 1326.6963428146223, - "ema_span_1": 868.5170173675886, - "enabled": true, - "markup_range": 0.049017895341310305, - "min_markup": 0.006865319781961213, - "n_close_orders": 5, - "qty_pct_close": 0.01568356820581512, - "qty_pct_entry": 0.015190103137526903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.1409964782557}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BCHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BCHUSDT.json deleted file mode 100644 index 4be11b9cd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1131.204851733571, - "delay_between_fills_minutes_entry": 1135.779637180378, - "delay_weight_close": 47.85349920185897, - "delay_weight_entry": 12.030954263829626, - "ema_dist_close": 0.001731098062530846, - "ema_dist_entry": -0.00033231698205597835, - "ema_span_0": 800.4043914857048, - "ema_span_1": 1061.2673852281587, - "enabled": true, - "markup_range": 0.03848941416393788, - "min_markup": 0.0033013855060008506, - "n_close_orders": 8, - "qty_pct_close": 0.011906647068625485, - "qty_pct_entry": 0.012358980222218046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.70135867732929}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1102.4268902287085, - "delay_between_fills_minutes_entry": 1143.6782342115246, - "delay_weight_close": 48.152335533992336, - "delay_weight_entry": 11.56526535150033, - "ema_dist_close": 0.002925928947629586, - "ema_dist_entry": 0.001688382249233648, - "ema_span_0": 1256.1913595716821, - "ema_span_1": 234.34923083009457, - "enabled": true, - "markup_range": 0.059939712323572876, - "min_markup": 0.009971534764545183, - "n_close_orders": 4, - "qty_pct_close": 0.01423231416458122, - "qty_pct_entry": 0.010024815802867968, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.739393021935946}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BELUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BELUSDT.json deleted file mode 100644 index d0f85b8fd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BELUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1231.1135225921125, - "delay_between_fills_minutes_entry": 1245.9933234935468, - "delay_weight_close": 51.10860085832518, - "delay_weight_entry": 10.249204681845477, - "ema_dist_close": -0.008398034951875006, - "ema_dist_entry": -0.0008022406743282484, - "ema_span_0": 540.2399514628768, - "ema_span_1": 1130.691172767897, - "enabled": true, - "markup_range": 0.05939620556469505, - "min_markup": 0.0098687526642422, - "n_close_orders": 10, - "qty_pct_close": 0.011044434979374955, - "qty_pct_entry": 0.011625971321085142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.181629965877347}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1389.8976337525241, - "delay_between_fills_minutes_entry": 411.6783686881874, - "delay_weight_close": 69.29928481433383, - "delay_weight_entry": 5.098026613647114, - "ema_dist_close": -0.008438865108147776, - "ema_dist_entry": -0.0038444385355450874, - "ema_span_0": 77.473434508426, - "ema_span_1": 1355.5044552300055, - "enabled": true, - "markup_range": 0.0035001192740958267, - "min_markup": 0.006633991397875712, - "n_close_orders": 6, - "qty_pct_close": 0.010162245096375576, - "qty_pct_entry": 0.02171163274016745, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.18675106006738}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLUEBIRDUSDT.json deleted file mode 100644 index 13a36fca8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLUEBIRDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1016.6629045472315, - "delay_between_fills_minutes_entry": 1270.8202434059544, - "delay_weight_close": 51.69804172780125, - "delay_weight_entry": 7.502587313574915, - "ema_dist_close": -0.006746329960301846, - "ema_dist_entry": -0.0015600454763283207, - "ema_span_0": 575.4080633190265, - "ema_span_1": 1365.3385120217313, - "enabled": true, - "markup_range": 0.05666482791896981, - "min_markup": 0.009388483354566778, - "n_close_orders": 12, - "qty_pct_close": 0.010057455452326232, - "qty_pct_entry": 0.010821353641580544, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.97552626016154}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.299515850433, - "delay_between_fills_minutes_entry": 785.825602551224, - "delay_weight_close": 57.813702203013236, - "delay_weight_entry": 25.059215973127245, - "ema_dist_close": 0.002613520802295475, - "ema_dist_entry": -0.004821790048485822, - "ema_span_0": 5.001519536755321, - "ema_span_1": 946.1559469281274, - "enabled": true, - "markup_range": 0.005213390903377498, - "min_markup": 0.0035250964142057592, - "n_close_orders": 12, - "qty_pct_close": 0.010042781433558839, - "qty_pct_entry": 0.010720774065264716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.091327689326654}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLURUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLURUSDT.json deleted file mode 100644 index 002a41601..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLURUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 748.2397704686491, - "delay_between_fills_minutes_entry": 904.8824236728501, - "delay_weight_close": 97.55266740859084, - "delay_weight_entry": 12.440606063904358, - "ema_dist_close": 0.0029999387140627895, - "ema_dist_entry": 0.00043965030161566894, - "ema_span_0": 23.574095790382188, - "ema_span_1": 420.8820338794546, - "enabled": true, - "markup_range": 0.05995765108730484, - "min_markup": 0.006798841028425073, - "n_close_orders": 9, - "qty_pct_close": 0.011023088583789118, - "qty_pct_entry": 0.010006718854385852, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.697905356722462}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1048.4609328936479, - "delay_between_fills_minutes_entry": 825.1223460169658, - "delay_weight_close": 32.83425694637858, - "delay_weight_entry": 12.335082461379335, - "ema_dist_close": 0.002722332965949797, - "ema_dist_entry": -0.008885664301206155, - "ema_span_0": 1380.4455760412031, - "ema_span_1": 1291.4148799392235, - "enabled": true, - "markup_range": 0.05195417039760784, - "min_markup": 0.007305073586800737, - "n_close_orders": 11, - "qty_pct_close": 0.012152701558263578, - "qty_pct_entry": 0.010010066704277894, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.15393587949443}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLZUSDT.json deleted file mode 100644 index 6b20fc72b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BLZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1278.015451884191, - "delay_between_fills_minutes_entry": 1168.5349744098987, - "delay_weight_close": 73.51892701521415, - "delay_weight_entry": 17.043253455955078, - "ema_dist_close": 0.0022754122091716133, - "ema_dist_entry": -0.0010076911867558744, - "ema_span_0": 593.985869003583, - "ema_span_1": 1296.294650706882, - "enabled": true, - "markup_range": 0.05976764211196854, - "min_markup": 0.003854864364475789, - "n_close_orders": 2, - "qty_pct_close": 0.010011785307207727, - "qty_pct_entry": 0.012699330523892603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.9243624835063575}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1324.0488930782142, - "delay_between_fills_minutes_entry": 1002.9445682451891, - "delay_weight_close": 56.43385764973538, - "delay_weight_entry": 15.324152423547583, - "ema_dist_close": -0.0023936462260436254, - "ema_dist_entry": -0.0030417323095584575, - "ema_span_0": 441.4417003774887, - "ema_span_1": 467.6399349698424, - "enabled": true, - "markup_range": 0.00850010451170167, - "min_markup": 0.007279980421371357, - "n_close_orders": 6, - "qty_pct_close": 0.020292393844517507, - "qty_pct_entry": 0.010842091438105089, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.41832756253448}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BNBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BNBUSDT.json deleted file mode 100644 index 3fc408541..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BNBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 308.34550938086875, - "delay_between_fills_minutes_entry": 992.8325989755132, - "delay_weight_close": 51.9370050376494, - "delay_weight_entry": 12.596152316071224, - "ema_dist_close": 0.0013682423671277214, - "ema_dist_entry": 0.0029948062071203127, - "ema_span_0": 572.0615743403218, - "ema_span_1": 1337.5733753300879, - "enabled": true, - "markup_range": 0.0591002177160067, - "min_markup": 0.008343535530007861, - "n_close_orders": 3, - "qty_pct_close": 0.012501794404313314, - "qty_pct_entry": 0.01637672650253166, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.58136822663436}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.299515850433, - "delay_between_fills_minutes_entry": 785.825602551224, - "delay_weight_close": 57.813702203013236, - "delay_weight_entry": 25.059215973127245, - "ema_dist_close": 0.002613520802295475, - "ema_dist_entry": -0.004821790048485822, - "ema_span_0": 5.001519536755321, - "ema_span_1": 946.1559469281274, - "enabled": true, - "markup_range": 0.005213390903377498, - "min_markup": 0.0035250964142057592, - "n_close_orders": 12, - "qty_pct_close": 0.010042781433558839, - "qty_pct_entry": 0.010720774065264716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.091327689326654}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BNXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BNXUSDT.json deleted file mode 100644 index 53f500b5d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1209.3036804600613, - "delay_between_fills_minutes_entry": 833.8179130869366, - "delay_weight_close": 87.05710135909973, - "delay_weight_entry": 20.453563100798753, - "ema_dist_close": -0.0007670043568597384, - "ema_dist_entry": -0.004568362996141598, - "ema_span_0": 709.8339133688785, - "ema_span_1": 1308.7822567038122, - "enabled": true, - "markup_range": 0.055131066425365624, - "min_markup": 0.006641158011111413, - "n_close_orders": 2, - "qty_pct_close": 0.01624878330513155, - "qty_pct_entry": 0.024913912075110057, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.68352514034606}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCDOMUSDT.json deleted file mode 100644 index 85c30a3eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCDOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1436.892386165355, - "delay_between_fills_minutes_entry": 1056.7607277678278, - "delay_weight_close": 61.92577769577431, - "delay_weight_entry": 22.33568912695574, - "ema_dist_close": 0.0014144636745898605, - "ema_dist_entry": 0.0016874612039642406, - "ema_span_0": 443.12693749654824, - "ema_span_1": 558.726851928593, - "enabled": true, - "markup_range": 0.013333451799582629, - "min_markup": 0.008760889598654958, - "n_close_orders": 4, - "qty_pct_close": 0.010309722139757548, - "qty_pct_entry": 0.010027382062929337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.730794315367106}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 901.5076567879579, - "delay_between_fills_minutes_entry": 1131.2022532827618, - "delay_weight_close": 55.515072132648655, - "delay_weight_entry": 31.893636353995436, - "ema_dist_close": -0.0051733300288347665, - "ema_dist_entry": -0.0012095731474502747, - "ema_span_0": 1365.9427972591172, - "ema_span_1": 1147.4012750067955, - "enabled": true, - "markup_range": 0.055440390519553684, - "min_markup": 0.009044600406361248, - "n_close_orders": 13, - "qty_pct_close": 0.03849439255207487, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.38326616228164}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCSTUSDT.json deleted file mode 100644 index 522a6191d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.8438084156824, - "delay_between_fills_minutes_entry": 886.322579998403, - "delay_weight_close": 86.33747421432105, - "delay_weight_entry": 25.410370281808532, - "ema_dist_close": 0.0005860956543850228, - "ema_dist_entry": -0.004036084802165886, - "ema_span_0": 966.2627914788455, - "ema_span_1": 769.570332373255, - "enabled": true, - "markup_range": 0.05292900311940766, - "min_markup": 0.007968974100394178, - "n_close_orders": 11, - "qty_pct_close": 0.01944493772729828, - "qty_pct_entry": 0.010000229586371123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.758296984178248}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 901.5076567879579, - "delay_between_fills_minutes_entry": 1131.2022532827618, - "delay_weight_close": 55.515072132648655, - "delay_weight_entry": 31.893636353995436, - "ema_dist_close": -0.0051733300288347665, - "ema_dist_entry": -0.0012095731474502747, - "ema_span_0": 1365.9427972591172, - "ema_span_1": 1147.4012750067955, - "enabled": true, - "markup_range": 0.055440390519553684, - "min_markup": 0.009044600406361248, - "n_close_orders": 13, - "qty_pct_close": 0.03849439255207487, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.38326616228164}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCUSDT.json deleted file mode 100644 index 7365918b7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.0016141920605, - "delay_between_fills_minutes_entry": 1202.7114676731842, - "delay_weight_close": 50.389294725772416, - "delay_weight_entry": 5.746580200460412, - "ema_dist_close": 0.0028328575815906747, - "ema_dist_entry": -0.005723235969645436, - "ema_span_0": 312.1344406190465, - "ema_span_1": 1363.3191615225846, - "enabled": true, - "markup_range": 0.05898444891935176, - "min_markup": 0.00900433482828235, - "n_close_orders": 7, - "qty_pct_close": 0.010561583492291823, - "qty_pct_entry": 0.013273141877125366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.167876684260362}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.7883440996302, - "delay_between_fills_minutes_entry": 442.79311910935394, - "delay_weight_close": 0.9561158719284885, - "delay_weight_entry": 12.579981925884814, - "ema_dist_close": 0.0029074011076066805, - "ema_dist_entry": 0.0029997478348963956, - "ema_span_0": 818.243128725334, - "ema_span_1": 883.7670898464805, - "enabled": true, - "markup_range": 0.0016745322814163618, - "min_markup": 0.0028152109542536837, - "n_close_orders": 3, - "qty_pct_close": 0.010123547332678545, - "qty_pct_entry": 0.011133379871535442, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.39004155478513}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTSUSDT.json deleted file mode 100644 index 133119dce..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/BTSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1231.1135225921125, - "delay_between_fills_minutes_entry": 1245.9933234935468, - "delay_weight_close": 51.10860085832518, - "delay_weight_entry": 10.249204681845477, - "ema_dist_close": -0.008398034951875006, - "ema_dist_entry": -0.0008022406743282484, - "ema_span_0": 540.2399514628768, - "ema_span_1": 1130.691172767897, - "enabled": true, - "markup_range": 0.05939620556469505, - "min_markup": 0.0098687526642422, - "n_close_orders": 10, - "qty_pct_close": 0.011044434979374955, - "qty_pct_entry": 0.011625971321085142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.181629965877347}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1033.3242697051262, - "delay_between_fills_minutes_entry": 331.6381768122269, - "delay_weight_close": 4.870267240277105, - "delay_weight_entry": 20.497139391207572, - "ema_dist_close": 0.0023553147068376616, - "ema_dist_entry": -0.010177534535963062, - "ema_span_0": 421.3354277615984, - "ema_span_1": 713.4885052437176, - "enabled": true, - "markup_range": 0.010372997741224289, - "min_markup": 0.0025836842379023035, - "n_close_orders": 4, - "qty_pct_close": 0.014818591972418011, - "qty_pct_entry": 0.010235873297106929, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.70510958773345}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/C98USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/C98USDT.json deleted file mode 100644 index dc27b4ed8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/C98USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1016.6629045472315, - "delay_between_fills_minutes_entry": 1270.8202434059544, - "delay_weight_close": 51.69804172780125, - "delay_weight_entry": 7.502587313574915, - "ema_dist_close": -0.006746329960301846, - "ema_dist_entry": -0.0015600454763283207, - "ema_span_0": 575.4080633190265, - "ema_span_1": 1365.3385120217313, - "enabled": true, - "markup_range": 0.05666482791896981, - "min_markup": 0.009388483354566778, - "n_close_orders": 12, - "qty_pct_close": 0.010057455452326232, - "qty_pct_entry": 0.010821353641580544, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.97552626016154}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 959.4153028238243, - "delay_between_fills_minutes_entry": 626.6523399517594, - "delay_weight_close": 53.22801834622622, - "delay_weight_entry": 3.416100026053266, - "ema_dist_close": -0.00018474954394237178, - "ema_dist_entry": -0.007069659016688305, - "ema_span_0": 1026.1002815476602, - "ema_span_1": 296.21673532299315, - "enabled": true, - "markup_range": 0.0021566093734247433, - "min_markup": 0.00912483776187694, - "n_close_orders": 11, - "qty_pct_close": 0.014664062989888222, - "qty_pct_entry": 0.022530846711492986, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.884988752046745}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CELOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CELOUSDT.json deleted file mode 100644 index d4fcda891..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CELOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.8680750134843, - "delay_between_fills_minutes_entry": 875.518001826808, - "delay_weight_close": 91.0390850405457, - "delay_weight_entry": 18.286652631600212, - "ema_dist_close": -0.0037007947983096253, - "ema_dist_entry": 0.0020232003017431194, - "ema_span_0": 222.6611949827334, - "ema_span_1": 1141.2763801842377, - "enabled": true, - "markup_range": 0.051192353764961805, - "min_markup": 0.009647824886468582, - "n_close_orders": 16, - "qty_pct_close": 0.011561177989106143, - "qty_pct_entry": 0.012658036162887467, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 19.661879707550536}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 770.7531654636675, - "delay_between_fills_minutes_entry": 1193.4299152332094, - "delay_weight_close": 23.698085040018046, - "delay_weight_entry": 17.550284945778113, - "ema_dist_close": 0.002012916269846434, - "ema_dist_entry": -0.015759346363981814, - "ema_span_0": 882.0499311033377, - "ema_span_1": 90.4454165503562, - "enabled": true, - "markup_range": 0.020987911292693718, - "min_markup": 0.007866526911323687, - "n_close_orders": 12, - "qty_pct_close": 0.01079108589653615, - "qty_pct_entry": 0.013254098083453288, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.30887816506409}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CELRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CELRUSDT.json deleted file mode 100644 index 9163b6035..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CELRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 769.4619836732393, - "delay_between_fills_minutes_entry": 544.5595903701939, - "delay_weight_close": 95.07445844371298, - "delay_weight_entry": 17.624346233092286, - "ema_dist_close": 0.002116684136685326, - "ema_dist_entry": -0.0024244057343740227, - "ema_span_0": 822.5657122979112, - "ema_span_1": 1201.1889977592696, - "enabled": true, - "markup_range": 0.03630277877554145, - "min_markup": 0.009473211425957551, - "n_close_orders": 13, - "qty_pct_close": 0.012487784679931302, - "qty_pct_entry": 0.012628409284236744, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.824529580365404}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.0769107474218, - "delay_between_fills_minutes_entry": 869.2534631608304, - "delay_weight_close": 0.012767945708539208, - "delay_weight_entry": 22.9978433439715, - "ema_dist_close": 0.0029944711652107204, - "ema_dist_entry": 0.0015357179207470056, - "ema_span_0": 360.5695371185307, - "ema_span_1": 1073.6522974972947, - "enabled": true, - "markup_range": 0.0036910887253282015, - "min_markup": 0.005241011883401892, - "n_close_orders": 9, - "qty_pct_close": 0.01035811296108013, - "qty_pct_entry": 0.023984963489771065, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.50255386738371}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CFXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CFXUSDT.json deleted file mode 100644 index 48dfdd76a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CFXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.5388034717066, - "delay_between_fills_minutes_entry": 564.7431304295302, - "delay_weight_close": 73.72682388188508, - "delay_weight_entry": 9.030332966876738, - "ema_dist_close": 0.0004649982638920925, - "ema_dist_entry": -0.009884870798924781, - "ema_span_0": 558.0545950250996, - "ema_span_1": 872.3668589373002, - "enabled": true, - "markup_range": 0.01703499666759896, - "min_markup": 0.0057454243309324644, - "n_close_orders": 14, - "qty_pct_close": 0.013402581359097861, - "qty_pct_entry": 0.015264922555705784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.000267610171793}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CHRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CHRUSDT.json deleted file mode 100644 index 4d43d7828..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CHRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1348.2932639754804, - "delay_between_fills_minutes_entry": 1296.331528972186, - "delay_weight_close": 7.851709771966389, - "delay_weight_entry": 25.793963092818164, - "ema_dist_close": 0.002916693007996688, - "ema_dist_entry": 0.0027927571443207917, - "ema_span_0": 1360.5706926037635, - "ema_span_1": 39.15577003390894, - "enabled": true, - "markup_range": 0.012486665897733111, - "min_markup": 0.009166665089356719, - "n_close_orders": 2, - "qty_pct_close": 0.010192081613708789, - "qty_pct_entry": 0.012489059273803244, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.6889008580716114}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1325.0286270059273, - "delay_between_fills_minutes_entry": 590.5395382856542, - "delay_weight_close": 73.86409969774728, - "delay_weight_entry": 11.63606726174301, - "ema_dist_close": -0.005796864529819415, - "ema_dist_entry": -7.570223063483808e-05, - "ema_span_0": 1286.6537997748628, - "ema_span_1": 691.0788579399167, - "enabled": true, - "markup_range": 0.012768451198535615, - "min_markup": 0.00894371721026067, - "n_close_orders": 11, - "qty_pct_close": 0.011654886439630101, - "qty_pct_entry": 0.01906752780366286, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.319277142923205}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CHZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CHZUSDT.json deleted file mode 100644 index 80d6d5660..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CHZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1383.82873112594, - "delay_between_fills_minutes_entry": 1158.5460878493345, - "delay_weight_close": 65.96102480121154, - "delay_weight_entry": 19.06963873921997, - "ema_dist_close": 0.0016895333683320222, - "ema_dist_entry": 0.0013689308291749533, - "ema_span_0": 266.48145981258114, - "ema_span_1": 941.7353388173117, - "enabled": true, - "markup_range": 0.006110203829272311, - "min_markup": 0.004663560191386829, - "n_close_orders": 6, - "qty_pct_close": 0.01224055733773456, - "qty_pct_entry": 0.02531643553044907, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.023874038667074}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 873.378217689891, - "delay_between_fills_minutes_entry": 187.37255255563213, - "delay_weight_close": 80.8159629672552, - "delay_weight_entry": 15.01975489112832, - "ema_dist_close": 0.0013367915570242329, - "ema_dist_entry": -0.006958024745967752, - "ema_span_0": 244.21034326640392, - "ema_span_1": 378.7883817959548, - "enabled": true, - "markup_range": 0.004064046500505916, - "min_markup": 0.0028625583770335895, - "n_close_orders": 6, - "qty_pct_close": 0.04032499981472366, - "qty_pct_entry": 0.01991918186316874, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.857527864035568}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CKBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CKBUSDT.json deleted file mode 100644 index 1a6dc3a99..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CKBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1254.3185368880913, - "delay_between_fills_minutes_entry": 837.4057618397428, - "delay_weight_close": 12.002156107154304, - "delay_weight_entry": 15.983419463881797, - "ema_dist_close": 0.002934753642313193, - "ema_dist_entry": 0.0014839990846928477, - "ema_span_0": 1046.7126603754068, - "ema_span_1": 1387.3118038092148, - "enabled": true, - "markup_range": 0.008537842928700053, - "min_markup": 0.006259756799476494, - "n_close_orders": 2, - "qty_pct_close": 0.01482439146216911, - "qty_pct_entry": 0.013880334677533026, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.53906902102223}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1209.3036804600613, - "delay_between_fills_minutes_entry": 833.8179130869366, - "delay_weight_close": 87.05710135909973, - "delay_weight_entry": 20.453563100798753, - "ema_dist_close": -0.0007670043568597384, - "ema_dist_entry": -0.004568362996141598, - "ema_span_0": 709.8339133688785, - "ema_span_1": 1308.7822567038122, - "enabled": true, - "markup_range": 0.055131066425365624, - "min_markup": 0.006641158011111413, - "n_close_orders": 2, - "qty_pct_close": 0.01624878330513155, - "qty_pct_entry": 0.024913912075110057, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.68352514034606}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COCOSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COCOSUSDT.json deleted file mode 100644 index e277d63c9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COCOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1083.014638315174, - "delay_between_fills_minutes_entry": 1439.7974927880402, - "delay_weight_close": 75.72296573278135, - "delay_weight_entry": 16.051877103958347, - "ema_dist_close": 0.0028760465061158608, - "ema_dist_entry": 0.003, - "ema_span_0": 895.5915312958269, - "ema_span_1": 260.00767248245126, - "enabled": true, - "markup_range": 0.005401964294285949, - "min_markup": 0.0041025376032684975, - "n_close_orders": 5, - "qty_pct_close": 0.01937441603262953, - "qty_pct_entry": 0.03091088414746243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.40639403992916}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1209.3036804600613, - "delay_between_fills_minutes_entry": 833.8179130869366, - "delay_weight_close": 87.05710135909973, - "delay_weight_entry": 20.453563100798753, - "ema_dist_close": -0.0007670043568597384, - "ema_dist_entry": -0.004568362996141598, - "ema_span_0": 709.8339133688785, - "ema_span_1": 1308.7822567038122, - "enabled": true, - "markup_range": 0.055131066425365624, - "min_markup": 0.006641158011111413, - "n_close_orders": 2, - "qty_pct_close": 0.01624878330513155, - "qty_pct_entry": 0.024913912075110057, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.68352514034606}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COMBOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COMBOUSDT.json deleted file mode 100644 index 6a10c9b36..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COMBOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1140.150165680905, - "delay_between_fills_minutes_entry": 1152.5778699995353, - "delay_weight_close": 52.456813636327276, - "delay_weight_entry": 13.10253311453895, - "ema_dist_close": 0.0025371854685661823, - "ema_dist_entry": 0.0029939777962427346, - "ema_span_0": 34.84832309154025, - "ema_span_1": 1250.0849991751825, - "enabled": true, - "markup_range": 0.0393023377337375, - "min_markup": 0.009376388465028836, - "n_close_orders": 6, - "qty_pct_close": 0.01102077989419074, - "qty_pct_entry": 0.011896396893990387, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.56246268880058}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1403.6470300997244, - "delay_between_fills_minutes_entry": 553.3983162919372, - "delay_weight_close": 27.709607620684167, - "delay_weight_entry": 9.469848052561215, - "ema_dist_close": 0.0029988000042291975, - "ema_dist_entry": -0.011465950482309265, - "ema_span_0": 701.5690294300441, - "ema_span_1": 1439.8873965376818, - "enabled": true, - "markup_range": 0.050755916462128056, - "min_markup": 0.006911595659900277, - "n_close_orders": 3, - "qty_pct_close": 0.025223174820301907, - "qty_pct_entry": 0.010000069821422366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.094888664355306}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COMPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COMPUSDT.json deleted file mode 100644 index 36ca4dff4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COMPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.6341028960558, - "delay_between_fills_minutes_entry": 1318.1447638534917, - "delay_weight_close": 41.95083872535282, - "delay_weight_entry": 14.00152016126425, - "ema_dist_close": 0.00021597573069882404, - "ema_dist_entry": -0.0036445961267289853, - "ema_span_0": 1165.4222716536276, - "ema_span_1": 1346.3141090608895, - "enabled": true, - "markup_range": 0.052254851764753765, - "min_markup": 0.007336546924757905, - "n_close_orders": 8, - "qty_pct_close": 0.025100189317447414, - "qty_pct_entry": 0.010242372032759765, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.50304664033492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.3222386089421, - "delay_between_fills_minutes_entry": 338.44026666825425, - "delay_weight_close": 62.18630749224111, - "delay_weight_entry": 4.714145871611542, - "ema_dist_close": 0.0007986265815163455, - "ema_dist_entry": -0.017991313782758565, - "ema_span_0": 219.1429898648105, - "ema_span_1": 1229.8665028556711, - "enabled": true, - "markup_range": 0.0046063513758729715, - "min_markup": 0.008248139240830121, - "n_close_orders": 5, - "qty_pct_close": 0.013336719840706158, - "qty_pct_entry": 0.013274799404213883, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.28619159793865}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COTIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COTIUSDT.json deleted file mode 100644 index fcb217350..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/COTIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 766.3018715466401, - "delay_between_fills_minutes_entry": 1097.6512853807874, - "delay_weight_close": 62.29441403697084, - "delay_weight_entry": 26.2953081479466, - "ema_dist_close": -0.007362951274188356, - "ema_dist_entry": -0.04132060691537761, - "ema_span_0": 893.956023347693, - "ema_span_1": 820.9524027268009, - "enabled": true, - "markup_range": 0.005175692503560464, - "min_markup": 0.006932142397472679, - "n_close_orders": 11, - "qty_pct_close": 0.01646396858506009, - "qty_pct_entry": 0.01335086888365399, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.84146532431182}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.3395368462945, - "delay_between_fills_minutes_entry": 464.72360460375097, - "delay_weight_close": 27.836949255173046, - "delay_weight_entry": 10.538903018346414, - "ema_dist_close": -0.0013579101789730726, - "ema_dist_entry": -0.013464875809875206, - "ema_span_0": 1208.282067427354, - "ema_span_1": 1096.5553820623143, - "enabled": true, - "markup_range": 0.006508815858749005, - "min_markup": 0.007556938784113187, - "n_close_orders": 5, - "qty_pct_close": 0.011116220803081132, - "qty_pct_entry": 0.01441335665010748, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.476747854158525}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CRVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CRVUSDT.json deleted file mode 100644 index c211997e4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CRVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1312.0602954968158, - "delay_between_fills_minutes_entry": 1288.3010053035753, - "delay_weight_close": 29.311001384301854, - "delay_weight_entry": 23.426831418062886, - "ema_dist_close": 0.0022587983376774947, - "ema_dist_entry": 0.0023789232428968188, - "ema_span_0": 595.3555943508433, - "ema_span_1": 1247.786570339029, - "enabled": true, - "markup_range": 0.006637192171488077, - "min_markup": 0.006544743500063032, - "n_close_orders": 13, - "qty_pct_close": 0.01105875848325817, - "qty_pct_entry": 0.012817132536529531, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.564073227379865}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1033.3242697051262, - "delay_between_fills_minutes_entry": 331.6381768122269, - "delay_weight_close": 4.870267240277105, - "delay_weight_entry": 20.497139391207572, - "ema_dist_close": 0.0023553147068376616, - "ema_dist_entry": -0.010177534535963062, - "ema_span_0": 421.3354277615984, - "ema_span_1": 713.4885052437176, - "enabled": true, - "markup_range": 0.010372997741224289, - "min_markup": 0.0025836842379023035, - "n_close_orders": 4, - "qty_pct_close": 0.014818591972418011, - "qty_pct_entry": 0.010235873297106929, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.70510958773345}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CTKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CTKUSDT.json deleted file mode 100644 index f1bb7dcbd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CTKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 943.2976683573387, - "delay_between_fills_minutes_entry": 648.1315053080045, - "delay_weight_close": 25.745472927411964, - "delay_weight_entry": 11.688226732123015, - "ema_dist_close": -0.007874497425922647, - "ema_dist_entry": 0.0022333898774499175, - "ema_span_0": 1184.127624375479, - "ema_span_1": 1371.165491193332, - "enabled": true, - "markup_range": 0.059443261055087286, - "min_markup": 0.00884158393424732, - "n_close_orders": 11, - "qty_pct_close": 0.010243952150185623, - "qty_pct_entry": 0.010611084021199901, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.571587571748328}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1245.7492735057767, - "delay_between_fills_minutes_entry": 319.7073462732383, - "delay_weight_close": 71.42998257328867, - "delay_weight_entry": 2.4664035130435327, - "ema_dist_close": 0.0013240496815417854, - "ema_dist_entry": -0.011545302441795252, - "ema_span_0": 329.9909861040062, - "ema_span_1": 823.0364472943686, - "enabled": true, - "markup_range": 0.007457631277024575, - "min_markup": 0.00798584372601077, - "n_close_orders": 11, - "qty_pct_close": 0.012424153954362274, - "qty_pct_entry": 0.010014071600446142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.22779679395116}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CTSIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CTSIUSDT.json deleted file mode 100644 index 8d17e06c9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CTSIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1011.811617132957, - "delay_between_fills_minutes_entry": 1094.016748897848, - "delay_weight_close": 58.09959729199144, - "delay_weight_entry": 12.669876019736474, - "ema_dist_close": 0.002385028367669372, - "ema_dist_entry": -0.0018940193237226009, - "ema_span_0": 1415.037263936293, - "ema_span_1": 19.71528244342316, - "enabled": true, - "markup_range": 0.05894861744193266, - "min_markup": 0.0075142105121210395, - "n_close_orders": 6, - "qty_pct_close": 0.030864730675376786, - "qty_pct_entry": 0.010969394685214745, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.83972060511391}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1434.2492659185266, - "delay_between_fills_minutes_entry": 627.8920200330992, - "delay_weight_close": 3.91305306793461, - "delay_weight_entry": 10.473262413007424, - "ema_dist_close": -3.259592390646135e-05, - "ema_dist_entry": -0.007694695682825576, - "ema_span_0": 246.241575457051, - "ema_span_1": 315.07644857764376, - "enabled": true, - "markup_range": 0.0064214842471586485, - "min_markup": 0.0070234960697073134, - "n_close_orders": 9, - "qty_pct_close": 0.014030970538306394, - "qty_pct_entry": 0.014052624022010789, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.240090901886816}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CVCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CVCUSDT.json deleted file mode 100644 index bdffd241f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CVCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 875.6892665219402, - "delay_between_fills_minutes_entry": 392.7820938989788, - "delay_weight_close": 2.2118949557992504, - "delay_weight_entry": 28.15757167410565, - "ema_dist_close": 0.0028127769575680773, - "ema_dist_entry": -0.006892496669237737, - "ema_span_0": 1294.5354645669106, - "ema_span_1": 25.08963542537773, - "enabled": true, - "markup_range": 0.0032637451977078503, - "min_markup": 0.0034282758772801437, - "n_close_orders": 15, - "qty_pct_close": 0.010198866631629094, - "qty_pct_entry": 0.010157353883734748, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.389479760458038}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CVXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CVXUSDT.json deleted file mode 100644 index 22ef91261..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/CVXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1386.034959694264, - "delay_between_fills_minutes_entry": 1368.9245451811485, - "delay_weight_close": 52.07438978822763, - "delay_weight_entry": 14.353355332575303, - "ema_dist_close": 0.0013865795669801837, - "ema_dist_entry": -0.00653435743725839, - "ema_span_0": 1303.728636657968, - "ema_span_1": 1083.5700694403556, - "enabled": true, - "markup_range": 0.05995211228861413, - "min_markup": 0.006744941256124304, - "n_close_orders": 8, - "qty_pct_close": 0.010120934229523804, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 14.201576482211884}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.656643855095, - "delay_between_fills_minutes_entry": 782.8056664510294, - "delay_weight_close": 78.07989747591833, - "delay_weight_entry": 8.309990917221118, - "ema_dist_close": 0.00280942380814027, - "ema_dist_entry": -0.026794734338817888, - "ema_span_0": 1373.190004694209, - "ema_span_1": 279.02125940733515, - "enabled": true, - "markup_range": 0.003292640720548637, - "min_markup": 0.009132300009798113, - "n_close_orders": 2, - "qty_pct_close": 0.01026966029595279, - "qty_pct_entry": 0.01120347489116189, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.14973299326769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DARUSDT.json deleted file mode 100644 index 88244b392..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.2699061982983, - "delay_between_fills_minutes_entry": 759.3282496748589, - "delay_weight_close": 19.642581692198238, - "delay_weight_entry": 8.395388694148993, - "ema_dist_close": -0.0027235482926328005, - "ema_dist_entry": 0.0004287019332376506, - "ema_span_0": 1134.6099027180217, - "ema_span_1": 354.07887972072325, - "enabled": true, - "markup_range": 0.00829940886860947, - "min_markup": 0.007945344947761517, - "n_close_orders": 16, - "qty_pct_close": 0.010006309155270305, - "qty_pct_entry": 0.010751236409972841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.661645779221345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 218.23765274094657, - "delay_weight_close": 4.117100029286175, - "delay_weight_entry": 24.73813505382206, - "ema_dist_close": -0.0050956743227290125, - "ema_dist_entry": -0.006596456456318663, - "ema_span_0": 430.8138299789277, - "ema_span_1": 201.76615305479638, - "enabled": true, - "markup_range": 0.004035973473116341, - "min_markup": 0.002866865357931114, - "n_close_orders": 12, - "qty_pct_close": 0.011003456318429417, - "qty_pct_entry": 0.014859201542350512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.305386227578495}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DASHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DASHUSDT.json deleted file mode 100644 index ce3f8d8fd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DASHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 657.263844071358, - "delay_between_fills_minutes_entry": 1182.0633775746246, - "delay_weight_close": 22.537584255626207, - "delay_weight_entry": 12.9096000246279, - "ema_dist_close": -0.005451395614030544, - "ema_dist_entry": -0.002009261694069023, - "ema_span_0": 999.687632983683, - "ema_span_1": 1193.5008377201427, - "enabled": true, - "markup_range": 0.033897796433638744, - "min_markup": 0.009473621154297973, - "n_close_orders": 6, - "qty_pct_close": 0.010004460288531632, - "qty_pct_entry": 0.011436653083245233, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.078708084270716}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1369.3906821906455, - "delay_between_fills_minutes_entry": 729.9660532657346, - "delay_weight_close": 83.20130511614042, - "delay_weight_entry": 6.308908296360244, - "ema_dist_close": -0.0007606613222497299, - "ema_dist_entry": -0.00072244706777596, - "ema_span_0": 735.7134575591834, - "ema_span_1": 15.188000629580786, - "enabled": true, - "markup_range": 0.043025018091113025, - "min_markup": 0.006572320213045065, - "n_close_orders": 9, - "qty_pct_close": 0.014900764638338266, - "qty_pct_entry": 0.01495087579051833, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99612281143063}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DEFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DEFIUSDT.json deleted file mode 100644 index 6f503a6d7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DEFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.5667122759824, - "delay_between_fills_minutes_entry": 1030.2403282869602, - "delay_weight_close": 17.25268174371195, - "delay_weight_entry": 10.712555836883771, - "ema_dist_close": 0.0029968121272002783, - "ema_dist_entry": -0.0013532461532244227, - "ema_span_0": 719.3466098784393, - "ema_span_1": 1439.3369309187415, - "enabled": true, - "markup_range": 0.05963226683649791, - "min_markup": 0.008709899502852373, - "n_close_orders": 11, - "qty_pct_close": 0.039984937945290816, - "qty_pct_entry": 0.010326922150025645, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.13932600394649}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1361.5937274211178, - "delay_between_fills_minutes_entry": 582.1005830540269, - "delay_weight_close": 76.17825841459162, - "delay_weight_entry": 8.671992459295344, - "ema_dist_close": -0.00032132214140374285, - "ema_dist_entry": -0.003995063876749917, - "ema_span_0": 1364.2517453560517, - "ema_span_1": 1355.066938730454, - "enabled": true, - "markup_range": 0.053733420384857886, - "min_markup": 0.00820627289299877, - "n_close_orders": 6, - "qty_pct_close": 0.01731705715452194, - "qty_pct_entry": 0.010703379593971015, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.10882974381124}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DENTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DENTUSDT.json deleted file mode 100644 index ac831e34f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DENTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 839.1801799896591, - "delay_between_fills_minutes_entry": 644.261028669426, - "delay_weight_close": 58.34127596735245, - "delay_weight_entry": 7.664243878066273, - "ema_dist_close": 0.0002846716507897707, - "ema_dist_entry": 0.002559137808281017, - "ema_span_0": 1273.2870006819821, - "ema_span_1": 815.7100077515217, - "enabled": true, - "markup_range": 0.05416952302916918, - "min_markup": 0.006513797389018672, - "n_close_orders": 11, - "qty_pct_close": 0.014734855719935276, - "qty_pct_entry": 0.010000179802596482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.4809116933829}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1230.656643855095, - "delay_between_fills_minutes_entry": 782.8056664510294, - "delay_weight_close": 78.07989747591833, - "delay_weight_entry": 8.309990917221118, - "ema_dist_close": 0.00280942380814027, - "ema_dist_entry": -0.026794734338817888, - "ema_span_0": 1373.190004694209, - "ema_span_1": 279.02125940733515, - "enabled": true, - "markup_range": 0.003292640720548637, - "min_markup": 0.009132300009798113, - "n_close_orders": 2, - "qty_pct_close": 0.01026966029595279, - "qty_pct_entry": 0.01120347489116189, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.14973299326769}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DGBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DGBUSDT.json deleted file mode 100644 index ca6289f67..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DGBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 877.9549316169137, - "delay_between_fills_minutes_entry": 961.183768692796, - "delay_weight_close": 69.05687830860249, - "delay_weight_entry": 12.481044384342425, - "ema_dist_close": 0.0028579536057323244, - "ema_dist_entry": -0.0005463713566508398, - "ema_span_0": 1206.0053368014235, - "ema_span_1": 127.811822789862, - "enabled": true, - "markup_range": 0.03892409388489294, - "min_markup": 0.008721548949440423, - "n_close_orders": 12, - "qty_pct_close": 0.01026338502381335, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.36381793171282}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1262.7472849377568, - "delay_between_fills_minutes_entry": 340.1478838511046, - "delay_weight_close": 90.4075199942873, - "delay_weight_entry": 21.442967842890003, - "ema_dist_close": 0.0010522396513185136, - "ema_dist_entry": -0.008122610251342867, - "ema_span_0": 910.7049877004654, - "ema_span_1": 821.1287650217366, - "enabled": true, - "markup_range": 0.003963148902595629, - "min_markup": 0.005878346387918888, - "n_close_orders": 15, - "qty_pct_close": 0.02198006070551255, - "qty_pct_entry": 0.011542542607698941, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.81172028215472}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DOGEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DOGEUSDT.json deleted file mode 100644 index 4366ea42c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DOGEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 743.511695084353, - "delay_between_fills_minutes_entry": 737.184113473903, - "delay_weight_close": 0.0723833098903097, - "delay_weight_entry": 12.586867824488298, - "ema_dist_close": -0.0010871541543948985, - "ema_dist_entry": 0.0007505459056545043, - "ema_span_0": 1081.1680101954232, - "ema_span_1": 1360.9087753198803, - "enabled": true, - "markup_range": 0.026824188767557024, - "min_markup": 0.004346337159798564, - "n_close_orders": 5, - "qty_pct_close": 0.01982107434383019, - "qty_pct_entry": 0.010084154455354715, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.620082870010325}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.5562929185464, - "delay_between_fills_minutes_entry": 1042.057854722162, - "delay_weight_close": 39.317234431920305, - "delay_weight_entry": 3.359605305283861, - "ema_dist_close": 0.0029928245328844643, - "ema_dist_entry": 0.002014952319694898, - "ema_span_0": 1229.8239959817665, - "ema_span_1": 1407.6963683436545, - "enabled": true, - "markup_range": 0.011162202902803774, - "min_markup": 0.006307921203151887, - "n_close_orders": 7, - "qty_pct_close": 0.010029803845904336, - "qty_pct_entry": 0.021121374354248806, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.89308632409213}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DOTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DOTUSDT.json deleted file mode 100644 index bc1a747e7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1402.4649130698585, - "delay_between_fills_minutes_entry": 1404.5143426748027, - "delay_weight_close": 13.243701495196923, - "delay_weight_entry": 40.5494800603547, - "ema_dist_close": -0.004461606835502168, - "ema_dist_entry": -0.0017888614745233111, - "ema_span_0": 1216.1621639604534, - "ema_span_1": 1227.877741407984, - "enabled": true, - "markup_range": 0.0061570093253987485, - "min_markup": 0.0066511174451634346, - "n_close_orders": 9, - "qty_pct_close": 0.010855361885612702, - "qty_pct_entry": 0.010104967012255285, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.39241268480666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 218.23765274094657, - "delay_weight_close": 4.117100029286175, - "delay_weight_entry": 24.73813505382206, - "ema_dist_close": -0.0050956743227290125, - "ema_dist_entry": -0.006596456456318663, - "ema_span_0": 430.8138299789277, - "ema_span_1": 201.76615305479638, - "enabled": true, - "markup_range": 0.004035973473116341, - "min_markup": 0.002866865357931114, - "n_close_orders": 12, - "qty_pct_close": 0.011003456318429417, - "qty_pct_entry": 0.014859201542350512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.305386227578495}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DUSKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DUSKUSDT.json deleted file mode 100644 index bdf2d4225..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DUSKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.6355759042592, - "delay_between_fills_minutes_entry": 885.0761103076054, - "delay_weight_close": 0.5735493549614912, - "delay_weight_entry": 13.181646294679709, - "ema_dist_close": 0.0029998539309889446, - "ema_dist_entry": -0.0015638258734715354, - "ema_span_0": 1188.0961324668651, - "ema_span_1": 1130.7422210601246, - "enabled": true, - "markup_range": 0.008373913978111484, - "min_markup": 0.006166432840553094, - "n_close_orders": 5, - "qty_pct_close": 0.012069007829170534, - "qty_pct_entry": 0.010000012672901723, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.2006356297956}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 359.70154922183286, - "delay_weight_close": 1.8684468067175353, - "delay_weight_entry": 7.4183255537921475, - "ema_dist_close": 0.0029997859886671677, - "ema_dist_entry": -0.001691060409185404, - "ema_span_0": 1206.750457563136, - "ema_span_1": 771.3172702577781, - "enabled": true, - "markup_range": 0.0059602319547304265, - "min_markup": 0.005079186050498823, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.015387447758002585, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.998184065868266}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DYDXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DYDXUSDT.json deleted file mode 100644 index 8816cf874..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/DYDXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.0016141920605, - "delay_between_fills_minutes_entry": 1202.7114676731842, - "delay_weight_close": 50.389294725772416, - "delay_weight_entry": 5.746580200460412, - "ema_dist_close": 0.0028328575815906747, - "ema_dist_entry": -0.005723235969645436, - "ema_span_0": 312.1344406190465, - "ema_span_1": 1363.3191615225846, - "enabled": true, - "markup_range": 0.05898444891935176, - "min_markup": 0.00900433482828235, - "n_close_orders": 7, - "qty_pct_close": 0.010561583492291823, - "qty_pct_entry": 0.013273141877125366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.167876684260362}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.9837308020371, - "delay_between_fills_minutes_entry": 827.8385419311081, - "delay_weight_close": 21.37358508742853, - "delay_weight_entry": 16.584560272360868, - "ema_dist_close": 0.0019494839178959525, - "ema_dist_entry": -0.019629507455303803, - "ema_span_0": 878.6984336911423, - "ema_span_1": 1254.9908122277566, - "enabled": true, - "markup_range": 0.006766136808845835, - "min_markup": 0.0063289610220227535, - "n_close_orders": 10, - "qty_pct_close": 0.010722162919569702, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.620684593180385}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EDUUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EDUUSDT.json deleted file mode 100644 index 3fd6b9ae9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EDUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1016.6629045472315, - "delay_between_fills_minutes_entry": 1270.8202434059544, - "delay_weight_close": 51.69804172780125, - "delay_weight_entry": 7.502587313574915, - "ema_dist_close": -0.006746329960301846, - "ema_dist_entry": -0.0015600454763283207, - "ema_span_0": 575.4080633190265, - "ema_span_1": 1365.3385120217313, - "enabled": true, - "markup_range": 0.05666482791896981, - "min_markup": 0.009388483354566778, - "n_close_orders": 12, - "qty_pct_close": 0.010057455452326232, - "qty_pct_entry": 0.010821353641580544, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.97552626016154}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1319.0276651758943, - "delay_between_fills_minutes_entry": 468.1191753542268, - "delay_weight_close": 6.063273201271272, - "delay_weight_entry": 28.07029795942001, - "ema_dist_close": -0.009095550498698016, - "ema_dist_entry": -0.007825284588397593, - "ema_span_0": 1115.2383837667342, - "ema_span_1": 146.15943142846294, - "enabled": true, - "markup_range": 0.01191604999991418, - "min_markup": 0.006226424222648785, - "n_close_orders": 11, - "qty_pct_close": 0.01192959253384803, - "qty_pct_entry": 0.01013478258805602, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.977948795968445}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EGLDUSDT.json deleted file mode 100644 index 797d302d6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.584435934785, - "delay_between_fills_minutes_entry": 613.9669603794349, - "delay_weight_close": 1.3240496321409205, - "delay_weight_entry": 23.63023727396494, - "ema_dist_close": 0.0021643177623499508, - "ema_dist_entry": -0.00462033225552684, - "ema_span_0": 1233.8448535547816, - "ema_span_1": 930.9897907349388, - "enabled": true, - "markup_range": 0.0001888510606800829, - "min_markup": 0.005163501889502219, - "n_close_orders": 3, - "qty_pct_close": 0.010011884145557585, - "qty_pct_entry": 0.021574110048833545, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.83144882028307}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1157.0565499122636, - "delay_between_fills_minutes_entry": 116.89062833428821, - "delay_weight_close": 93.91228800448053, - "delay_weight_entry": 24.136544052452784, - "ema_dist_close": -0.0006732246951197443, - "ema_dist_entry": -0.006303809675330171, - "ema_span_0": 211.38550217428522, - "ema_span_1": 881.1853555106971, - "enabled": true, - "markup_range": 0.0026231743848130064, - "min_markup": 0.0010196772191427342, - "n_close_orders": 5, - "qty_pct_close": 0.010424032719372702, - "qty_pct_entry": 0.010000525439889598, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.730346022356855}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ENJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ENJUSDT.json deleted file mode 100644 index 6d7695f5a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ENJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1437.3100958789362, - "delay_between_fills_minutes_entry": 1024.9643572015066, - "delay_weight_close": 47.864080101654935, - "delay_weight_entry": 8.77752100036747, - "ema_dist_close": -0.005925514892999087, - "ema_dist_entry": -0.004849086604972567, - "ema_span_0": 695.4976259383546, - "ema_span_1": 1086.9799322698454, - "enabled": true, - "markup_range": 0.022406495510769685, - "min_markup": 0.008431124628247919, - "n_close_orders": 14, - "qty_pct_close": 0.013311905521065816, - "qty_pct_entry": 0.01412847727985817, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.215918054574214}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.269951478433, - "delay_between_fills_minutes_entry": 332.0606212839182, - "delay_weight_close": 29.029487334766205, - "delay_weight_entry": 14.784834588063124, - "ema_dist_close": 0.0025383698081087166, - "ema_dist_entry": -0.009185843141986446, - "ema_span_0": 959.8123018819391, - "ema_span_1": 999.6139821689234, - "enabled": true, - "markup_range": 0.010833680850158229, - "min_markup": 0.007591655352679719, - "n_close_orders": 7, - "qty_pct_close": 0.035401344715519374, - "qty_pct_entry": 0.012620381399139366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 15.552034173418122}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ENSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ENSUSDT.json deleted file mode 100644 index c19086a88..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ENSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.2699061982983, - "delay_between_fills_minutes_entry": 759.3282496748589, - "delay_weight_close": 19.642581692198238, - "delay_weight_entry": 8.395388694148993, - "ema_dist_close": -0.0027235482926328005, - "ema_dist_entry": 0.0004287019332376506, - "ema_span_0": 1134.6099027180217, - "ema_span_1": 354.07887972072325, - "enabled": true, - "markup_range": 0.00829940886860947, - "min_markup": 0.007945344947761517, - "n_close_orders": 16, - "qty_pct_close": 0.010006309155270305, - "qty_pct_entry": 0.010751236409972841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.661645779221345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1292.1819711173644, - "delay_between_fills_minutes_entry": 618.0138488105508, - "delay_weight_close": 27.88929925504254, - "delay_weight_entry": 6.0617961043543165, - "ema_dist_close": 0.0016072475635017969, - "ema_dist_entry": -0.007716463247147574, - "ema_span_0": 789.0315268412587, - "ema_span_1": 1160.9505665597887, - "enabled": true, - "markup_range": 0.005314201011737649, - "min_markup": 0.00501075235691034, - "n_close_orders": 3, - "qty_pct_close": 0.024511667807265904, - "qty_pct_entry": 0.03044180003135801, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.764565677918576}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EOSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EOSUSDT.json deleted file mode 100644 index 50da285db..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/EOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 801.3457881993035, - "delay_between_fills_minutes_entry": 1350.5186057404444, - "delay_weight_close": 36.33324717553879, - "delay_weight_entry": 12.050604072750989, - "ema_dist_close": 0.0019194319823167144, - "ema_dist_entry": -0.002049475835452583, - "ema_span_0": 1324.650897484725, - "ema_span_1": 1438.076473769553, - "enabled": true, - "markup_range": 0.05121666456691198, - "min_markup": 0.008863263627100524, - "n_close_orders": 15, - "qty_pct_close": 0.017964522531185564, - "qty_pct_entry": 0.012557610697352495, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.402540672616816}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 579.0584089823398, - "delay_between_fills_minutes_entry": 145.0212073445239, - "delay_weight_close": 1.2416917149082012, - "delay_weight_entry": 7.39668391406919, - "ema_dist_close": 0.0017116206400238764, - "ema_dist_entry": -0.002179978516973531, - "ema_span_0": 961.1702182995201, - "ema_span_1": 475.3892139361597, - "enabled": true, - "markup_range": 0.006037238608939958, - "min_markup": 0.004736209557509444, - "n_close_orders": 2, - "qty_pct_close": 0.010004790348140644, - "qty_pct_entry": 0.010034202059488262, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.778312362747615}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ETCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ETCUSDT.json deleted file mode 100644 index 42a57c679..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ETCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1176.2933920128153, - "delay_between_fills_minutes_entry": 1311.93284254683, - "delay_weight_close": 99.59465913058501, - "delay_weight_entry": 11.629793957480768, - "ema_dist_close": -0.002331833217907417, - "ema_dist_entry": 0.0019004590167591544, - "ema_span_0": 1253.3836717750069, - "ema_span_1": 1270.8617601976564, - "enabled": true, - "markup_range": 0.05601897423189382, - "min_markup": 0.0070842491311411335, - "n_close_orders": 11, - "qty_pct_close": 0.01611412340400685, - "qty_pct_entry": 0.019732462661093002, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.0977667718358}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1366.3039722347423, - "delay_between_fills_minutes_entry": 877.699022736164, - "delay_weight_close": 51.97795400115561, - "delay_weight_entry": 26.289335852509527, - "ema_dist_close": 0.002057815310722368, - "ema_dist_entry": -0.03666969489643718, - "ema_span_0": 1189.4339389831146, - "ema_span_1": 1236.3569354371555, - "enabled": true, - "markup_range": 0.0008006423664462353, - "min_markup": 0.003685885542732154, - "n_close_orders": 7, - "qty_pct_close": 0.010000742934055963, - "qty_pct_entry": 0.011375155335470117, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.054828835604646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ETHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ETHUSDT.json deleted file mode 100644 index 095ef5dac..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ETHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 946.0324511552675, - "delay_between_fills_minutes_entry": 1234.7531871252527, - "delay_weight_close": 23.81982993570577, - "delay_weight_entry": 14.534173468152913, - "ema_dist_close": -0.002186019491064776, - "ema_dist_entry": -0.0014662713762488417, - "ema_span_0": 1310.552922145013, - "ema_span_1": 1073.6182035104493, - "enabled": true, - "markup_range": 0.028580063621697554, - "min_markup": 0.008092299264809859, - "n_close_orders": 4, - "qty_pct_close": 0.011387301692636475, - "qty_pct_entry": 0.012613543935737853, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.1708870851534}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 830.3183696152602, - "delay_between_fills_minutes_entry": 239.3680029503623, - "delay_weight_close": 1.1293686327633308, - "delay_weight_entry": 15.657861274226658, - "ema_dist_close": 0.0016758342421083297, - "ema_dist_entry": 0.0019834274913894064, - "ema_span_0": 1122.8746044006098, - "ema_span_1": 849.0829433832555, - "enabled": true, - "markup_range": 0.003038057475054796, - "min_markup": 0.002180260427207077, - "n_close_orders": 6, - "qty_pct_close": 0.02414699338474555, - "qty_pct_entry": 0.010889022962533003, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.42214394023863}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FETUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FETUSDT.json deleted file mode 100644 index 1fcc55c67..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 913.6148811192733, - "delay_between_fills_minutes_entry": 1249.42551218315, - "delay_weight_close": 50.863091196005854, - "delay_weight_entry": 20.54741858023571, - "ema_dist_close": -0.0017801145644501667, - "ema_dist_entry": -0.007187680019349892, - "ema_span_0": 498.47833372887175, - "ema_span_1": 1347.8399690302901, - "enabled": true, - "markup_range": 0.0055212686657047155, - "min_markup": 0.006678136947142042, - "n_close_orders": 12, - "qty_pct_close": 0.010323670468848231, - "qty_pct_entry": 0.022411353241072653, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.87644141779816}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.1853395319615, - "delay_between_fills_minutes_entry": 505.02704637582883, - "delay_weight_close": 11.91636586808022, - "delay_weight_entry": 5.943828542763821, - "ema_dist_close": 0.0003701467887769311, - "ema_dist_entry": -0.004019062125416825, - "ema_span_0": 1374.7015089376073, - "ema_span_1": 1382.1761448167981, - "enabled": true, - "markup_range": 0.008739167783273279, - "min_markup": 0.007283927178502984, - "n_close_orders": 3, - "qty_pct_close": 0.010044951193249123, - "qty_pct_entry": 0.015558056453449135, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.00483183816011}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FILUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FILUSDT.json deleted file mode 100644 index 35716cff3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 690.5655078895263, - "delay_between_fills_minutes_entry": 1103.2537369529284, - "delay_weight_close": 71.49582206926183, - "delay_weight_entry": 5.410521707622705, - "ema_dist_close": 0.0006404732704981607, - "ema_dist_entry": 0.0005348919944594128, - "ema_span_0": 732.9755026552284, - "ema_span_1": 1381.6907506968425, - "enabled": true, - "markup_range": 0.05953995486240887, - "min_markup": 0.009498296506061932, - "n_close_orders": 15, - "qty_pct_close": 0.015527158985520328, - "qty_pct_entry": 0.020254599810336817, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.57359517989189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1092.4776374281764, - "delay_between_fills_minutes_entry": 401.0870529655432, - "delay_weight_close": 97.72458676173235, - "delay_weight_entry": 1.642645164557317, - "ema_dist_close": 0.0025784942036235574, - "ema_dist_entry": -0.002229374843600856, - "ema_span_0": 487.62471283418927, - "ema_span_1": 1342.9791754564674, - "enabled": true, - "markup_range": 0.008521039881417653, - "min_markup": 0.00800530965626805, - "n_close_orders": 2, - "qty_pct_close": 0.010209719681135947, - "qty_pct_entry": 0.018728076197617193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.47346258189105}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FLMUSDT.json deleted file mode 100644 index 410533bed..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1140.2841950865761, - "delay_between_fills_minutes_entry": 1262.364569498778, - "delay_weight_close": 71.10303109631704, - "delay_weight_entry": 15.707526846967632, - "ema_dist_close": -0.005511555406681553, - "ema_dist_entry": -0.007370300194529687, - "ema_span_0": 1077.8315053932763, - "ema_span_1": 1151.220461838715, - "enabled": true, - "markup_range": 0.02151915502304428, - "min_markup": 0.007569554337444057, - "n_close_orders": 10, - "qty_pct_close": 0.015251751085232856, - "qty_pct_entry": 0.017092560928378322, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.38920660579612}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FLOWUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FLOWUSDT.json deleted file mode 100644 index 514992766..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FLOWUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.7357188679891, - "delay_between_fills_minutes_entry": 1356.2711460748983, - "delay_weight_close": 99.02566588088874, - "delay_weight_entry": 15.531894895040757, - "ema_dist_close": -0.009742305559658567, - "ema_dist_entry": 0.0008811953147525582, - "ema_span_0": 776.1041675821988, - "ema_span_1": 1186.368670004645, - "enabled": true, - "markup_range": 0.0342059963950984, - "min_markup": 0.007388644929588475, - "n_close_orders": 10, - "qty_pct_close": 0.018544712305160787, - "qty_pct_entry": 0.01029124612294046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.441602553662435}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1195.9010655167735, - "delay_between_fills_minutes_entry": 914.8413201727267, - "delay_weight_close": 64.84946999383591, - "delay_weight_entry": 9.412513350497788, - "ema_dist_close": -0.003820212369005769, - "ema_dist_entry": -0.015489116350021526, - "ema_span_0": 228.0585781422762, - "ema_span_1": 1301.843330496509, - "enabled": true, - "markup_range": 0.02269539690219534, - "min_markup": 0.0073741486985211295, - "n_close_orders": 7, - "qty_pct_close": 0.010037549015766785, - "qty_pct_entry": 0.012507376781474561, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.81651950436099}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FOOTBALLUSDT.json deleted file mode 100644 index b9e1a8c19..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FOOTBALLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1157.0565499122636, - "delay_between_fills_minutes_entry": 116.89062833428821, - "delay_weight_close": 93.91228800448053, - "delay_weight_entry": 24.136544052452784, - "ema_dist_close": -0.0006732246951197443, - "ema_dist_entry": -0.006303809675330171, - "ema_span_0": 211.38550217428522, - "ema_span_1": 881.1853555106971, - "enabled": true, - "markup_range": 0.0026231743848130064, - "min_markup": 0.0010196772191427342, - "n_close_orders": 5, - "qty_pct_close": 0.010424032719372702, - "qty_pct_entry": 0.010000525439889598, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.730346022356855}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FTMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FTMUSDT.json deleted file mode 100644 index 2f9f54be5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FTMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1320.8488807103988, - "delay_between_fills_minutes_entry": 770.0890667625478, - "delay_weight_close": 53.70357465103633, - "delay_weight_entry": 23.205353047912656, - "ema_dist_close": 0.0012076187997844146, - "ema_dist_entry": -0.005854675865472014, - "ema_span_0": 436.4771099174527, - "ema_span_1": 1327.8103202754235, - "enabled": true, - "markup_range": 0.0038939076693955805, - "min_markup": 0.006593944640567088, - "n_close_orders": 10, - "qty_pct_close": 0.04126100930799637, - "qty_pct_entry": 0.017394714518928628, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.250501765968124}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1299.4827895993396, - "delay_between_fills_minutes_entry": 373.9303236152505, - "delay_weight_close": 61.946889195765195, - "delay_weight_entry": 8.144499844239173, - "ema_dist_close": -0.0003024605359111548, - "ema_dist_entry": -0.00576409903720695, - "ema_span_0": 603.7204100079025, - "ema_span_1": 1030.7651674483802, - "enabled": true, - "markup_range": 0.005516773473783776, - "min_markup": 0.004627311816550159, - "n_close_orders": 10, - "qty_pct_close": 0.014893850606044853, - "qty_pct_entry": 0.013857771478354472, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.45966930173466}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FTTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FTTUSDT.json deleted file mode 100644 index 8b4849c82..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FTTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.190590129848, - "delay_between_fills_minutes_entry": 1339.2665697715354, - "delay_weight_close": 1.2302457250067613, - "delay_weight_entry": 11.399247384233874, - "ema_dist_close": -0.005179278376980927, - "ema_dist_entry": -0.005141450651484262, - "ema_span_0": 369.8072327552787, - "ema_span_1": 1398.9193616889447, - "enabled": true, - "markup_range": 0.041901983240027856, - "min_markup": 0.00999817832290518, - "n_close_orders": 4, - "qty_pct_close": 0.024582663793959295, - "qty_pct_entry": 0.010199945724196023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.75281535143274}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1278.9116712061686, - "delay_between_fills_minutes_entry": 273.99728689765993, - "delay_weight_close": 45.960879362662475, - "delay_weight_entry": 3.3106391883284516, - "ema_dist_close": -0.0016747835535708454, - "ema_dist_entry": -0.007352944649096215, - "ema_span_0": 457.0172596160006, - "ema_span_1": 1003.7622575651411, - "enabled": true, - "markup_range": 0.006206117846960465, - "min_markup": 0.008428081227158378, - "n_close_orders": 3, - "qty_pct_close": 0.012845078163928943, - "qty_pct_entry": 0.012026979012439739, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.14755357323136}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FXSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FXSUSDT.json deleted file mode 100644 index cb5fcc620..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/FXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1424.7180571887138, - "delay_between_fills_minutes_entry": 1194.4758580976995, - "delay_weight_close": 48.36738016103076, - "delay_weight_entry": 84.07087551664155, - "ema_dist_close": 0.001779566648864142, - "ema_dist_entry": 0.0013704399252430926, - "ema_span_0": 1213.7797716255177, - "ema_span_1": 35.687319947457745, - "enabled": true, - "markup_range": 0.003466437442690177, - "min_markup": 0.002261938020049302, - "n_close_orders": 4, - "qty_pct_close": 0.047989134373515915, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.444142236481294}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9355969167718, - "delay_between_fills_minutes_entry": 769.208349957439, - "delay_weight_close": 9.042322617347699, - "delay_weight_entry": 5.000376041746193, - "ema_dist_close": 0.001615457601709266, - "ema_dist_entry": -0.011526570687382644, - "ema_span_0": 1306.2424756625448, - "ema_span_1": 391.10841629983116, - "enabled": true, - "markup_range": 0.02037422460461928, - "min_markup": 0.009709044462468303, - "n_close_orders": 5, - "qty_pct_close": 0.012833445563225002, - "qty_pct_entry": 0.010001004520557947, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.670121149817845}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GALAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GALAUSDT.json deleted file mode 100644 index 436012f8f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GALAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1397.4356234672036, - "delay_between_fills_minutes_entry": 362.41778010921234, - "delay_weight_close": 66.51221749266405, - "delay_weight_entry": 29.874981172384672, - "ema_dist_close": -0.0034891915231158514, - "ema_dist_entry": -0.022241976669033294, - "ema_span_0": 1252.3574904635905, - "ema_span_1": 5.105766588824434, - "enabled": true, - "markup_range": 0.004414952041497922, - "min_markup": 0.003504478660960904, - "n_close_orders": 12, - "qty_pct_close": 0.010735811745924443, - "qty_pct_entry": 0.010786244736850524, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.73558531003513}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GALUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GALUSDT.json deleted file mode 100644 index b68479b4e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 877.9549316169137, - "delay_between_fills_minutes_entry": 961.183768692796, - "delay_weight_close": 69.05687830860249, - "delay_weight_entry": 12.481044384342425, - "ema_dist_close": 0.0028579536057323244, - "ema_dist_entry": -0.0005463713566508398, - "ema_span_0": 1206.0053368014235, - "ema_span_1": 127.811822789862, - "enabled": true, - "markup_range": 0.03892409388489294, - "min_markup": 0.008721548949440423, - "n_close_orders": 12, - "qty_pct_close": 0.01026338502381335, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.36381793171282}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1152.7312826867956, - "delay_between_fills_minutes_entry": 210.87866876694983, - "delay_weight_close": 85.09806952312518, - "delay_weight_entry": 18.434214216926843, - "ema_dist_close": -0.004113782509645251, - "ema_dist_entry": -0.006660760018831201, - "ema_span_0": 498.8192196953636, - "ema_span_1": 1267.442753649392, - "enabled": true, - "markup_range": 0.00432501425372252, - "min_markup": 0.004491271493565847, - "n_close_orders": 5, - "qty_pct_close": 0.011160874812992034, - "qty_pct_entry": 0.012556422850453589, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.85284570392885}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GMTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GMTUSDT.json deleted file mode 100644 index 13451e993..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GMTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 1401.9447578644595, - "delay_weight_close": 2.4438848938159516, - "delay_weight_entry": 61.40272307083629, - "ema_dist_close": 0.003, - "ema_dist_entry": 0.003, - "ema_span_0": 753.8617854037661, - "ema_span_1": 872.3157573504777, - "enabled": true, - "markup_range": 0.04996996952202913, - "min_markup": 0.006671950172101227, - "n_close_orders": 11, - "qty_pct_close": 0.034265404351605286, - "qty_pct_entry": 0.07815021856965543, - "wallet_exposure_limit": 1.0, - "we_multiplier_close": 0.0, - "we_multiplier_entry": 31.30450538476181}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GMXUSDT.json deleted file mode 100644 index ab5b00742..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 801.3457881993035, - "delay_between_fills_minutes_entry": 1350.5186057404444, - "delay_weight_close": 36.33324717553879, - "delay_weight_entry": 12.050604072750989, - "ema_dist_close": 0.0019194319823167144, - "ema_dist_entry": -0.002049475835452583, - "ema_span_0": 1324.650897484725, - "ema_span_1": 1438.076473769553, - "enabled": true, - "markup_range": 0.05121666456691198, - "min_markup": 0.008863263627100524, - "n_close_orders": 15, - "qty_pct_close": 0.017964522531185564, - "qty_pct_entry": 0.012557610697352495, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.402540672616816}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.6947341043958, - "delay_between_fills_minutes_entry": 698.1018171884307, - "delay_weight_close": 55.561512834097975, - "delay_weight_entry": 2.927227180170575, - "ema_dist_close": 0.0011017636188067955, - "ema_dist_entry": -0.009595625853882548, - "ema_span_0": 1386.4660627147987, - "ema_span_1": 102.49553073822958, - "enabled": true, - "markup_range": 0.0077757839496282516, - "min_markup": 0.009973013135537738, - "n_close_orders": 8, - "qty_pct_close": 0.010042739791588753, - "qty_pct_entry": 0.012894715886545517, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.217515856044955}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GRTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GRTUSDT.json deleted file mode 100644 index 3dedf92f9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GRTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1389.7796191476998, - "delay_between_fills_minutes_entry": 1426.3475600854192, - "delay_weight_close": 24.11236503337965, - "delay_weight_entry": 27.387760234824704, - "ema_dist_close": -0.004783036661098915, - "ema_dist_entry": -0.0009367136138739742, - "ema_span_0": 1088.317524316767, - "ema_span_1": 1259.7353524097152, - "enabled": true, - "markup_range": 0.010572624214850935, - "min_markup": 0.007172117871849724, - "n_close_orders": 5, - "qty_pct_close": 0.046317890375279114, - "qty_pct_entry": 0.01996030142826058, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.472608529852776}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 770.7531654636675, - "delay_between_fills_minutes_entry": 1193.4299152332094, - "delay_weight_close": 23.698085040018046, - "delay_weight_entry": 17.550284945778113, - "ema_dist_close": 0.002012916269846434, - "ema_dist_entry": -0.015759346363981814, - "ema_span_0": 882.0499311033377, - "ema_span_1": 90.4454165503562, - "enabled": true, - "markup_range": 0.020987911292693718, - "min_markup": 0.007866526911323687, - "n_close_orders": 12, - "qty_pct_close": 0.01079108589653615, - "qty_pct_entry": 0.013254098083453288, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.30887816506409}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GTCUSDT.json deleted file mode 100644 index 8d31ad90f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/GTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.9244121420863, - "delay_between_fills_minutes_entry": 342.6578846801222, - "delay_weight_close": 80.54898917280158, - "delay_weight_entry": 5.202644295764904, - "ema_dist_close": 0.0019358379786174116, - "ema_dist_entry": -0.008304638046809597, - "ema_span_0": 34.964689000196294, - "ema_span_1": 967.8008110125016, - "enabled": true, - "markup_range": 0.051830300291440506, - "min_markup": 0.009467067871090242, - "n_close_orders": 7, - "qty_pct_close": 0.03198366141959117, - "qty_pct_entry": 0.010209343558710974, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.22119462366783}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HBARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HBARUSDT.json deleted file mode 100644 index 522a6191d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HBARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.8438084156824, - "delay_between_fills_minutes_entry": 886.322579998403, - "delay_weight_close": 86.33747421432105, - "delay_weight_entry": 25.410370281808532, - "ema_dist_close": 0.0005860956543850228, - "ema_dist_entry": -0.004036084802165886, - "ema_span_0": 966.2627914788455, - "ema_span_1": 769.570332373255, - "enabled": true, - "markup_range": 0.05292900311940766, - "min_markup": 0.007968974100394178, - "n_close_orders": 11, - "qty_pct_close": 0.01944493772729828, - "qty_pct_entry": 0.010000229586371123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.758296984178248}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 901.5076567879579, - "delay_between_fills_minutes_entry": 1131.2022532827618, - "delay_weight_close": 55.515072132648655, - "delay_weight_entry": 31.893636353995436, - "ema_dist_close": -0.0051733300288347665, - "ema_dist_entry": -0.0012095731474502747, - "ema_span_0": 1365.9427972591172, - "ema_span_1": 1147.4012750067955, - "enabled": true, - "markup_range": 0.055440390519553684, - "min_markup": 0.009044600406361248, - "n_close_orders": 13, - "qty_pct_close": 0.03849439255207487, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.38326616228164}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HFTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HFTUSDT.json deleted file mode 100644 index b3d392f90..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HFTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 998.283100095386, - "delay_between_fills_minutes_entry": 1353.9409151401867, - "delay_weight_close": 23.998700533855594, - "delay_weight_entry": 29.208246411345336, - "ema_dist_close": 0.0003477238347567329, - "ema_dist_entry": 0.0012639934251844486, - "ema_span_0": 1044.0114215350177, - "ema_span_1": 1212.3195550389867, - "enabled": true, - "markup_range": 0.008305561421068789, - "min_markup": 0.00838610468114567, - "n_close_orders": 13, - "qty_pct_close": 0.014025191308656305, - "qty_pct_entry": 0.010729640997343774, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.19873304895643}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1239.6718647809325, - "delay_between_fills_minutes_entry": 796.4787215162715, - "delay_weight_close": 35.42769864227112, - "delay_weight_entry": 22.74280741449601, - "ema_dist_close": 0.002999960277866133, - "ema_dist_entry": -0.016107109959944167, - "ema_span_0": 1378.6896995873008, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.05505639701669875, - "min_markup": 0.01, - "n_close_orders": 12, - "qty_pct_close": 0.03673629485196972, - "qty_pct_entry": 0.010921940757489621, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.719306637973421}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HIGHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HIGHUSDT.json deleted file mode 100644 index 1157edd2b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HIGHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 988.6328435467195, - "delay_between_fills_minutes_entry": 1184.7756349951135, - "delay_weight_close": 69.57831960048824, - "delay_weight_entry": 13.308654517066229, - "ema_dist_close": 0.002683066673106195, - "ema_dist_entry": -0.003388828558815632, - "ema_span_0": 1230.32285357319, - "ema_span_1": 15.695631160197719, - "enabled": true, - "markup_range": 0.05375888007437027, - "min_markup": 0.008618996653066693, - "n_close_orders": 15, - "qty_pct_close": 0.010014897416903057, - "qty_pct_entry": 0.010383133344692697, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.825758289563732}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1278.9116712061686, - "delay_between_fills_minutes_entry": 273.99728689765993, - "delay_weight_close": 45.960879362662475, - "delay_weight_entry": 3.3106391883284516, - "ema_dist_close": -0.0016747835535708454, - "ema_dist_entry": -0.007352944649096215, - "ema_span_0": 457.0172596160006, - "ema_span_1": 1003.7622575651411, - "enabled": true, - "markup_range": 0.006206117846960465, - "min_markup": 0.008428081227158378, - "n_close_orders": 3, - "qty_pct_close": 0.012845078163928943, - "qty_pct_entry": 0.012026979012439739, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.14755357323136}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HNTUSDT.json deleted file mode 100644 index 5c1276c3a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.7883440996302, - "delay_between_fills_minutes_entry": 442.79311910935394, - "delay_weight_close": 0.9561158719284885, - "delay_weight_entry": 12.579981925884814, - "ema_dist_close": 0.0029074011076066805, - "ema_dist_entry": 0.0029997478348963956, - "ema_span_0": 818.243128725334, - "ema_span_1": 883.7670898464805, - "enabled": true, - "markup_range": 0.0016745322814163618, - "min_markup": 0.0028152109542536837, - "n_close_orders": 3, - "qty_pct_close": 0.010123547332678545, - "qty_pct_entry": 0.011133379871535442, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.39004155478513}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HOOKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HOOKUSDT.json deleted file mode 100644 index 002a41601..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HOOKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 748.2397704686491, - "delay_between_fills_minutes_entry": 904.8824236728501, - "delay_weight_close": 97.55266740859084, - "delay_weight_entry": 12.440606063904358, - "ema_dist_close": 0.0029999387140627895, - "ema_dist_entry": 0.00043965030161566894, - "ema_span_0": 23.574095790382188, - "ema_span_1": 420.8820338794546, - "enabled": true, - "markup_range": 0.05995765108730484, - "min_markup": 0.006798841028425073, - "n_close_orders": 9, - "qty_pct_close": 0.011023088583789118, - "qty_pct_entry": 0.010006718854385852, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.697905356722462}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1048.4609328936479, - "delay_between_fills_minutes_entry": 825.1223460169658, - "delay_weight_close": 32.83425694637858, - "delay_weight_entry": 12.335082461379335, - "ema_dist_close": 0.002722332965949797, - "ema_dist_entry": -0.008885664301206155, - "ema_span_0": 1380.4455760412031, - "ema_span_1": 1291.4148799392235, - "enabled": true, - "markup_range": 0.05195417039760784, - "min_markup": 0.007305073586800737, - "n_close_orders": 11, - "qty_pct_close": 0.012152701558263578, - "qty_pct_entry": 0.010010066704277894, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.15393587949443}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HOTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HOTUSDT.json deleted file mode 100644 index b7e5cd3cd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/HOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1272.295615728259, - "delay_between_fills_minutes_entry": 946.1575499032541, - "delay_weight_close": 23.070244907281033, - "delay_weight_entry": 30.726880052085708, - "ema_dist_close": 0.0011210874406601084, - "ema_dist_entry": 0.003, - "ema_span_0": 590.2557561937244, - "ema_span_1": 1395.8995066284672, - "enabled": true, - "markup_range": 0.006509473619827294, - "min_markup": 0.004377337441675553, - "n_close_orders": 4, - "qty_pct_close": 0.01034671335964153, - "qty_pct_entry": 0.02486423375940932, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.43984146055101}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.5388034717066, - "delay_between_fills_minutes_entry": 564.7431304295302, - "delay_weight_close": 73.72682388188508, - "delay_weight_entry": 9.030332966876738, - "ema_dist_close": 0.0004649982638920925, - "ema_dist_entry": -0.009884870798924781, - "ema_span_0": 558.0545950250996, - "ema_span_1": 872.3668589373002, - "enabled": true, - "markup_range": 0.01703499666759896, - "min_markup": 0.0057454243309324644, - "n_close_orders": 14, - "qty_pct_close": 0.013402581359097861, - "qty_pct_entry": 0.015264922555705784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.000267610171793}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ICPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ICPUSDT.json deleted file mode 100644 index 44e518f71..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ICPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 877.9549316169137, - "delay_between_fills_minutes_entry": 961.183768692796, - "delay_weight_close": 69.05687830860249, - "delay_weight_entry": 12.481044384342425, - "ema_dist_close": 0.0028579536057323244, - "ema_dist_entry": -0.0005463713566508398, - "ema_span_0": 1206.0053368014235, - "ema_span_1": 127.811822789862, - "enabled": true, - "markup_range": 0.03892409388489294, - "min_markup": 0.008721548949440423, - "n_close_orders": 12, - "qty_pct_close": 0.01026338502381335, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.36381793171282}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1140.2841950865761, - "delay_between_fills_minutes_entry": 1262.364569498778, - "delay_weight_close": 71.10303109631704, - "delay_weight_entry": 15.707526846967632, - "ema_dist_close": -0.005511555406681553, - "ema_dist_entry": -0.007370300194529687, - "ema_span_0": 1077.8315053932763, - "ema_span_1": 1151.220461838715, - "enabled": true, - "markup_range": 0.02151915502304428, - "min_markup": 0.007569554337444057, - "n_close_orders": 10, - "qty_pct_close": 0.015251751085232856, - "qty_pct_entry": 0.017092560928378322, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.38920660579612}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ICXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ICXUSDT.json deleted file mode 100644 index a4a37e3d5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ICXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1166.9697944881566, - "delay_between_fills_minutes_entry": 722.9896233072201, - "delay_weight_close": 58.64478358475898, - "delay_weight_entry": 19.551264631059443, - "ema_dist_close": -0.0016129618023790087, - "ema_dist_entry": -0.0022664625251724068, - "ema_span_0": 1131.5947425118536, - "ema_span_1": 1393.535537105129, - "enabled": true, - "markup_range": 0.009276074365136845, - "min_markup": 0.0018270950536528826, - "n_close_orders": 6, - "qty_pct_close": 0.024391439259912464, - "qty_pct_entry": 0.016974994868773734, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.32857413687968}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1433.4263970872826, - "delay_between_fills_minutes_entry": 207.35354320817038, - "delay_weight_close": 1.9350041921010577, - "delay_weight_entry": 5.805917429920655, - "ema_dist_close": -0.0007492353273459108, - "ema_dist_entry": -0.017839001606464764, - "ema_span_0": 1171.1621146279342, - "ema_span_1": 1371.262998022305, - "enabled": true, - "markup_range": 0.004415954702278954, - "min_markup": 0.00454242557753177, - "n_close_orders": 8, - "qty_pct_close": 0.0103955324980597, - "qty_pct_entry": 0.012635225328997116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.002397173191437}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IDEXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IDEXUSDT.json deleted file mode 100644 index f69175b0f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IDEXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1254.7357799530266, - "delay_between_fills_minutes_entry": 1130.2856381216482, - "delay_weight_close": 45.23408899147888, - "delay_weight_entry": 11.177077949419791, - "ema_dist_close": 0.0027348980202713444, - "ema_dist_entry": -0.04895942306700758, - "ema_span_0": 23.606546868528177, - "ema_span_1": 1345.6052991413037, - "enabled": true, - "markup_range": 0.05280974508516258, - "min_markup": 0.009509922187515908, - "n_close_orders": 11, - "qty_pct_close": 0.021414876564825, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.69304359314071}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.9830249846816, - "delay_between_fills_minutes_entry": 989.6649699707626, - "delay_weight_close": 96.5999816863601, - "delay_weight_entry": 14.854363423534656, - "ema_dist_close": -0.0007236437403721288, - "ema_dist_entry": -0.012746766443775166, - "ema_span_0": 1285.3984019632667, - "ema_span_1": 1191.502867055806, - "enabled": true, - "markup_range": 0.011704822473162462, - "min_markup": 0.009261881278457297, - "n_close_orders": 9, - "qty_pct_close": 0.014023521348316371, - "qty_pct_entry": 0.020258474115915737, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.96354917696177}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IDUSDT.json deleted file mode 100644 index 81e7c677c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1254.3185368880913, - "delay_between_fills_minutes_entry": 837.4057618397428, - "delay_weight_close": 12.002156107154304, - "delay_weight_entry": 15.983419463881797, - "ema_dist_close": 0.002934753642313193, - "ema_dist_entry": 0.0014839990846928477, - "ema_span_0": 1046.7126603754068, - "ema_span_1": 1387.3118038092148, - "enabled": true, - "markup_range": 0.008537842928700053, - "min_markup": 0.006259756799476494, - "n_close_orders": 2, - "qty_pct_close": 0.01482439146216911, - "qty_pct_entry": 0.013880334677533026, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.53906902102223}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1157.0565499122636, - "delay_between_fills_minutes_entry": 116.89062833428821, - "delay_weight_close": 93.91228800448053, - "delay_weight_entry": 24.136544052452784, - "ema_dist_close": -0.0006732246951197443, - "ema_dist_entry": -0.006303809675330171, - "ema_span_0": 211.38550217428522, - "ema_span_1": 881.1853555106971, - "enabled": true, - "markup_range": 0.0026231743848130064, - "min_markup": 0.0010196772191427342, - "n_close_orders": 5, - "qty_pct_close": 0.010424032719372702, - "qty_pct_entry": 0.010000525439889598, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.730346022356855}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IMXUSDT.json deleted file mode 100644 index 21396b9f4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1167.7763485721239, - "delay_between_fills_minutes_entry": 1070.5012635157057, - "delay_weight_close": 64.47411839324123, - "delay_weight_entry": 30.26921998384661, - "ema_dist_close": -0.003709025351532321, - "ema_dist_entry": 0.0018908163432512835, - "ema_span_0": 829.8861035037357, - "ema_span_1": 965.5048648942922, - "enabled": true, - "markup_range": 0.007026586156628394, - "min_markup": 0.006112892899813559, - "n_close_orders": 4, - "qty_pct_close": 0.013140272142490517, - "qty_pct_entry": 0.017138610711076877, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.646044922151553}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.9244121420863, - "delay_between_fills_minutes_entry": 342.6578846801222, - "delay_weight_close": 80.54898917280158, - "delay_weight_entry": 5.202644295764904, - "ema_dist_close": 0.0019358379786174116, - "ema_dist_entry": -0.008304638046809597, - "ema_span_0": 34.964689000196294, - "ema_span_1": 967.8008110125016, - "enabled": true, - "markup_range": 0.051830300291440506, - "min_markup": 0.009467067871090242, - "n_close_orders": 7, - "qty_pct_close": 0.03198366141959117, - "qty_pct_entry": 0.010209343558710974, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.22119462366783}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/INJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/INJUSDT.json deleted file mode 100644 index bb401c792..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/INJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 687.3093692116705, - "delay_between_fills_minutes_entry": 1265.597806086118, - "delay_weight_close": 0.6227862275253533, - "delay_weight_entry": 19.361652197757596, - "ema_dist_close": 0.0029827860709536985, - "ema_dist_entry": 0.0012893987289558147, - "ema_span_0": 1429.086787564919, - "ema_span_1": 5.000044702958417, - "enabled": true, - "markup_range": 0.026220259975951375, - "min_markup": 0.009656104466337079, - "n_close_orders": 8, - "qty_pct_close": 0.0306957932756937, - "qty_pct_entry": 0.010000002127913117, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.79826372819124}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1366.3039722347423, - "delay_between_fills_minutes_entry": 877.699022736164, - "delay_weight_close": 51.97795400115561, - "delay_weight_entry": 26.289335852509527, - "ema_dist_close": 0.002057815310722368, - "ema_dist_entry": -0.03666969489643718, - "ema_span_0": 1189.4339389831146, - "ema_span_1": 1236.3569354371555, - "enabled": true, - "markup_range": 0.0008006423664462353, - "min_markup": 0.003685885542732154, - "n_close_orders": 7, - "qty_pct_close": 0.010000742934055963, - "qty_pct_entry": 0.011375155335470117, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.054828835604646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOSTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOSTUSDT.json deleted file mode 100644 index 65faeb5c0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 952.9229896192328, - "delay_between_fills_minutes_entry": 1194.8809882412936, - "delay_weight_close": 4.088734174487934, - "delay_weight_entry": 10.955815763234, - "ema_dist_close": 0.0008134515899316833, - "ema_dist_entry": 0.0012767353734932506, - "ema_span_0": 1302.4867365311704, - "ema_span_1": 858.5852891669841, - "enabled": true, - "markup_range": 0.041145868210987264, - "min_markup": 0.009391405822313178, - "n_close_orders": 8, - "qty_pct_close": 0.026795193505130807, - "qty_pct_entry": 0.010004119931970574, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.876264664494414}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1292.1819711173644, - "delay_between_fills_minutes_entry": 618.0138488105508, - "delay_weight_close": 27.88929925504254, - "delay_weight_entry": 6.0617961043543165, - "ema_dist_close": 0.0016072475635017969, - "ema_dist_entry": -0.007716463247147574, - "ema_span_0": 789.0315268412587, - "ema_span_1": 1160.9505665597887, - "enabled": true, - "markup_range": 0.005314201011737649, - "min_markup": 0.00501075235691034, - "n_close_orders": 3, - "qty_pct_close": 0.024511667807265904, - "qty_pct_entry": 0.03044180003135801, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.764565677918576}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOTAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOTAUSDT.json deleted file mode 100644 index d94294489..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOTAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1011.811617132957, - "delay_between_fills_minutes_entry": 1094.016748897848, - "delay_weight_close": 58.09959729199144, - "delay_weight_entry": 12.669876019736474, - "ema_dist_close": 0.002385028367669372, - "ema_dist_entry": -0.0018940193237226009, - "ema_span_0": 1415.037263936293, - "ema_span_1": 19.71528244342316, - "enabled": true, - "markup_range": 0.05894861744193266, - "min_markup": 0.0075142105121210395, - "n_close_orders": 6, - "qty_pct_close": 0.030864730675376786, - "qty_pct_entry": 0.010969394685214745, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.83972060511391}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.7033894887893, - "delay_between_fills_minutes_entry": 327.60349046371806, - "delay_weight_close": 18.24449638444089, - "delay_weight_entry": 46.88338038846605, - "ema_dist_close": 0.002161159558592138, - "ema_dist_entry": -0.021672354231718795, - "ema_span_0": 190.08178666399021, - "ema_span_1": 950.3751993711579, - "enabled": true, - "markup_range": 0.004623201527423169, - "min_markup": 0.0016558500851504964, - "n_close_orders": 13, - "qty_pct_close": 0.012251038387188835, - "qty_pct_entry": 0.0101308217172472, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.91661827529285}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOTXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOTXUSDT.json deleted file mode 100644 index e2ff16a12..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/IOTXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1373.2725817066453, - "delay_between_fills_minutes_entry": 569.7493733065807, - "delay_weight_close": 90.35184523809806, - "delay_weight_entry": 10.371271085540615, - "ema_dist_close": 0.0026699853139973808, - "ema_dist_entry": 0.0006858269637528678, - "ema_span_0": 872.9806171019176, - "ema_span_1": 870.7583480903252, - "enabled": true, - "markup_range": 0.01848533576653506, - "min_markup": 0.009802964997115846, - "n_close_orders": 12, - "qty_pct_close": 0.010629208189091492, - "qty_pct_entry": 0.010294718523339484, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.74089606001299}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1102.4268902287085, - "delay_between_fills_minutes_entry": 1143.6782342115246, - "delay_weight_close": 48.152335533992336, - "delay_weight_entry": 11.56526535150033, - "ema_dist_close": 0.002925928947629586, - "ema_dist_entry": 0.001688382249233648, - "ema_span_0": 1256.1913595716821, - "ema_span_1": 234.34923083009457, - "enabled": true, - "markup_range": 0.059939712323572876, - "min_markup": 0.009971534764545183, - "n_close_orders": 4, - "qty_pct_close": 0.01423231416458122, - "qty_pct_entry": 0.010024815802867968, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.739393021935946}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/JASMYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/JASMYUSDT.json deleted file mode 100644 index ff5e497eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/JASMYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1373.2725817066453, - "delay_between_fills_minutes_entry": 569.7493733065807, - "delay_weight_close": 90.35184523809806, - "delay_weight_entry": 10.371271085540615, - "ema_dist_close": 0.0026699853139973808, - "ema_dist_entry": 0.0006858269637528678, - "ema_span_0": 872.9806171019176, - "ema_span_1": 870.7583480903252, - "enabled": true, - "markup_range": 0.01848533576653506, - "min_markup": 0.009802964997115846, - "n_close_orders": 12, - "qty_pct_close": 0.010629208189091492, - "qty_pct_entry": 0.010294718523339484, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.74089606001299}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 359.70154922183286, - "delay_weight_close": 1.8684468067175353, - "delay_weight_entry": 7.4183255537921475, - "ema_dist_close": 0.0029997859886671677, - "ema_dist_entry": -0.001691060409185404, - "ema_span_0": 1206.750457563136, - "ema_span_1": 771.3172702577781, - "enabled": true, - "markup_range": 0.0059602319547304265, - "min_markup": 0.005079186050498823, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.015387447758002585, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.998184065868266}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/JOEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/JOEUSDT.json deleted file mode 100644 index 11b9554ab..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/JOEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.1774531358149, - "delay_between_fills_minutes_entry": 1041.3795698388174, - "delay_weight_close": 93.36314180868105, - "delay_weight_entry": 19.233880083671497, - "ema_dist_close": -0.00023288485156279555, - "ema_dist_entry": 0.002993208576396276, - "ema_span_0": 391.42066487081803, - "ema_span_1": 1400.9606053805953, - "enabled": true, - "markup_range": 0.028351678995716934, - "min_markup": 0.0025028951449733217, - "n_close_orders": 13, - "qty_pct_close": 0.010000993005291172, - "qty_pct_entry": 0.021965837271458448, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.532954214366974}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KAVAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KAVAUSDT.json deleted file mode 100644 index e2cfcd86e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KAVAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 728.4738256180318, - "delay_between_fills_minutes_entry": 881.2924347519538, - "delay_weight_close": 1.4789558964611118, - "delay_weight_entry": 8.450286814325986, - "ema_dist_close": 0.0024094821816171945, - "ema_dist_entry": -0.010706871289822503, - "ema_span_0": 876.4677164649286, - "ema_span_1": 1127.2760158989688, - "enabled": true, - "markup_range": 0.007948965680056716, - "min_markup": 0.009269365008670672, - "n_close_orders": 6, - "qty_pct_close": 0.011055949352580245, - "qty_pct_entry": 0.013999199919880427, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.39702872986415}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1380.630153179188, - "delay_between_fills_minutes_entry": 414.89923055240234, - "delay_weight_close": 80.44616398611339, - "delay_weight_entry": 10.90653988939582, - "ema_dist_close": -0.002914200317332709, - "ema_dist_entry": -0.013535277497002684, - "ema_span_0": 987.1029927414348, - "ema_span_1": 1256.9757410213165, - "enabled": true, - "markup_range": 0.032199788726144006, - "min_markup": 0.005807296206033685, - "n_close_orders": 3, - "qty_pct_close": 0.023599074672940607, - "qty_pct_entry": 0.01015634143603875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.72593130092842}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KEYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KEYUSDT.json deleted file mode 100644 index cce543513..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KEYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 690.5655078895263, - "delay_between_fills_minutes_entry": 1103.2537369529284, - "delay_weight_close": 71.49582206926183, - "delay_weight_entry": 5.410521707622705, - "ema_dist_close": 0.0006404732704981607, - "ema_dist_entry": 0.0005348919944594128, - "ema_span_0": 732.9755026552284, - "ema_span_1": 1381.6907506968425, - "enabled": true, - "markup_range": 0.05953995486240887, - "min_markup": 0.009498296506061932, - "n_close_orders": 15, - "qty_pct_close": 0.015527158985520328, - "qty_pct_entry": 0.020254599810336817, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.57359517989189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1361.5937274211178, - "delay_between_fills_minutes_entry": 582.1005830540269, - "delay_weight_close": 76.17825841459162, - "delay_weight_entry": 8.671992459295344, - "ema_dist_close": -0.00032132214140374285, - "ema_dist_entry": -0.003995063876749917, - "ema_span_0": 1364.2517453560517, - "ema_span_1": 1355.066938730454, - "enabled": true, - "markup_range": 0.053733420384857886, - "min_markup": 0.00820627289299877, - "n_close_orders": 6, - "qty_pct_close": 0.01731705715452194, - "qty_pct_entry": 0.010703379593971015, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.10882974381124}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KLAYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KLAYUSDT.json deleted file mode 100644 index eeb4c4907..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KLAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1419.3676962697248, - "delay_between_fills_minutes_entry": 312.63332002210075, - "delay_weight_close": 4.20026481283658, - "delay_weight_entry": 11.985960685813058, - "ema_dist_close": 0.0020589355515788017, - "ema_dist_entry": -0.0053094528673759776, - "ema_span_0": 720.1562335588767, - "ema_span_1": 928.1561920881004, - "enabled": true, - "markup_range": 0.00781294701678672, - "min_markup": 0.003242161927052182, - "n_close_orders": 3, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01002153714709753, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 18.006819860939437}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KNCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KNCUSDT.json deleted file mode 100644 index 5eed55da7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.521756415495, - "delay_between_fills_minutes_entry": 822.9702681612168, - "delay_weight_close": 42.358594033241076, - "delay_weight_entry": 19.3587466167511, - "ema_dist_close": 0.002937270994381808, - "ema_dist_entry": 0.002495465884852918, - "ema_span_0": 595.8931914943587, - "ema_span_1": 652.4631683374857, - "enabled": true, - "markup_range": 0.008454206075181752, - "min_markup": 0.006930388630105883, - "n_close_orders": 10, - "qty_pct_close": 0.017623003297889746, - "qty_pct_entry": 0.019508034136531238, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 1.5958838883380642}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1416.4087821322057, - "delay_between_fills_minutes_entry": 483.3047545155999, - "delay_weight_close": 59.18648754891567, - "delay_weight_entry": 4.1745369327141475, - "ema_dist_close": -0.0021717487000694918, - "ema_dist_entry": -0.0033712189581966284, - "ema_span_0": 609.9437992212333, - "ema_span_1": 924.161683127996, - "enabled": true, - "markup_range": 0.0019658618218926604, - "min_markup": 0.005688494269969634, - "n_close_orders": 13, - "qty_pct_close": 0.01390908955167051, - "qty_pct_entry": 0.021220384133120333, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.39614603857179}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KSMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KSMUSDT.json deleted file mode 100644 index ad2d78b9b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/KSMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.3261039557924, - "delay_between_fills_minutes_entry": 1119.2737362968026, - "delay_weight_close": 57.850891419834895, - "delay_weight_entry": 11.632421440044132, - "ema_dist_close": -0.0006523524307687509, - "ema_dist_entry": 0.0027998235993790354, - "ema_span_0": 1314.5834645544687, - "ema_span_1": 1377.2409446839235, - "enabled": true, - "markup_range": 0.05738380603018685, - "min_markup": 0.005192647334939926, - "n_close_orders": 9, - "qty_pct_close": 0.018613187146853897, - "qty_pct_entry": 0.011470388696531546, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.577392281852035}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1300.9024398199454, - "delay_between_fills_minutes_entry": 608.1488601105596, - "delay_weight_close": 25.374281973104768, - "delay_weight_entry": 10.286266722953142, - "ema_dist_close": -0.007291959630060191, - "ema_dist_entry": -0.023471341233173005, - "ema_span_0": 1406.6124783868022, - "ema_span_1": 1388.8739428775586, - "enabled": true, - "markup_range": 0.011484078660476798, - "min_markup": 0.008808400319445653, - "n_close_orders": 13, - "qty_pct_close": 0.010326429071965234, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.344657524015716}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LDOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LDOUSDT.json deleted file mode 100644 index f89be78df..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LDOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 946.0324511552675, - "delay_between_fills_minutes_entry": 1234.7531871252527, - "delay_weight_close": 23.81982993570577, - "delay_weight_entry": 14.534173468152913, - "ema_dist_close": -0.002186019491064776, - "ema_dist_entry": -0.0014662713762488417, - "ema_span_0": 1310.552922145013, - "ema_span_1": 1073.6182035104493, - "enabled": true, - "markup_range": 0.028580063621697554, - "min_markup": 0.008092299264809859, - "n_close_orders": 4, - "qty_pct_close": 0.011387301692636475, - "qty_pct_entry": 0.012613543935737853, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.1708870851534}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.299515850433, - "delay_between_fills_minutes_entry": 785.825602551224, - "delay_weight_close": 57.813702203013236, - "delay_weight_entry": 25.059215973127245, - "ema_dist_close": 0.002613520802295475, - "ema_dist_entry": -0.004821790048485822, - "ema_span_0": 5.001519536755321, - "ema_span_1": 946.1559469281274, - "enabled": true, - "markup_range": 0.005213390903377498, - "min_markup": 0.0035250964142057592, - "n_close_orders": 12, - "qty_pct_close": 0.010042781433558839, - "qty_pct_entry": 0.010720774065264716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.091327689326654}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LEVERUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LEVERUSDT.json deleted file mode 100644 index aa9a95fb5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LEVERUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.0016141920605, - "delay_between_fills_minutes_entry": 1202.7114676731842, - "delay_weight_close": 50.389294725772416, - "delay_weight_entry": 5.746580200460412, - "ema_dist_close": 0.0028328575815906747, - "ema_dist_entry": -0.005723235969645436, - "ema_span_0": 312.1344406190465, - "ema_span_1": 1363.3191615225846, - "enabled": true, - "markup_range": 0.05898444891935176, - "min_markup": 0.00900433482828235, - "n_close_orders": 7, - "qty_pct_close": 0.010561583492291823, - "qty_pct_entry": 0.013273141877125366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.167876684260362}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1033.4022503781366, - "delay_between_fills_minutes_entry": 931.9010148569423, - "delay_weight_close": 76.32428644493694, - "delay_weight_entry": 12.00229380451139, - "ema_dist_close": 0.001125395264693441, - "ema_dist_entry": -0.0024311450729707818, - "ema_span_0": 1266.7181212977468, - "ema_span_1": 332.28946994306176, - "enabled": true, - "markup_range": 0.03659960118679062, - "min_markup": 0.006471036933768709, - "n_close_orders": 5, - "qty_pct_close": 0.02767191168985521, - "qty_pct_entry": 0.01986481514875144, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.694392034791285}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LINAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LINAUSDT.json deleted file mode 100644 index 830efe85d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9038312944454, - "delay_between_fills_minutes_entry": 1358.2269218391982, - "delay_weight_close": 19.36726999065258, - "delay_weight_entry": 13.792473220354431, - "ema_dist_close": 0.002995775390258391, - "ema_dist_entry": -0.006157067078552275, - "ema_span_0": 1380.551612249665, - "ema_span_1": 1428.1158268201004, - "enabled": true, - "markup_range": 0.006617068187209175, - "min_markup": 0.006892948989530765, - "n_close_orders": 2, - "qty_pct_close": 0.010101724252423288, - "qty_pct_entry": 0.01017592289519369, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.999982330441114}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1119.5565299618086, - "delay_between_fills_minutes_entry": 530.8296051704276, - "delay_weight_close": 14.658870857876673, - "delay_weight_entry": 21.702090270019788, - "ema_dist_close": 0.0004703054388804743, - "ema_dist_entry": -0.0017742729420446178, - "ema_span_0": 732.4802103146062, - "ema_span_1": 1082.4122640841542, - "enabled": true, - "markup_range": 7.51963174887884e-06, - "min_markup": 0.00581707039158619, - "n_close_orders": 12, - "qty_pct_close": 0.01608264721802408, - "qty_pct_entry": 0.011039098959663903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.64742290329854}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LINKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LINKUSDT.json deleted file mode 100644 index fc3374b56..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LINKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1167.7763485721239, - "delay_between_fills_minutes_entry": 1070.5012635157057, - "delay_weight_close": 64.47411839324123, - "delay_weight_entry": 30.26921998384661, - "ema_dist_close": -0.003709025351532321, - "ema_dist_entry": 0.0018908163432512835, - "ema_span_0": 829.8861035037357, - "ema_span_1": 965.5048648942922, - "enabled": true, - "markup_range": 0.007026586156628394, - "min_markup": 0.006112892899813559, - "n_close_orders": 4, - "qty_pct_close": 0.013140272142490517, - "qty_pct_entry": 0.017138610711076877, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.646044922151553}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1195.9010655167735, - "delay_between_fills_minutes_entry": 914.8413201727267, - "delay_weight_close": 64.84946999383591, - "delay_weight_entry": 9.412513350497788, - "ema_dist_close": -0.003820212369005769, - "ema_dist_entry": -0.015489116350021526, - "ema_span_0": 228.0585781422762, - "ema_span_1": 1301.843330496509, - "enabled": true, - "markup_range": 0.02269539690219534, - "min_markup": 0.0073741486985211295, - "n_close_orders": 7, - "qty_pct_close": 0.010037549015766785, - "qty_pct_entry": 0.012507376781474561, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 34.81651950436099}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LITUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LITUSDT.json deleted file mode 100644 index 41f1fb860..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LITUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 902.2961130150294, - "delay_between_fills_minutes_entry": 443.52891005006444, - "delay_weight_close": 0.49086545535646114, - "delay_weight_entry": 7.492229293694529, - "ema_dist_close": -0.0031170841105026092, - "ema_dist_entry": -0.002393986527846376, - "ema_span_0": 1235.1456592644545, - "ema_span_1": 1085.9354291433322, - "enabled": true, - "markup_range": 0.008581885694242076, - "min_markup": 0.00803030215450985, - "n_close_orders": 13, - "qty_pct_close": 0.011710016034467847, - "qty_pct_entry": 0.012420969921253425, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.992364591361554}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 734.7396861881456, - "delay_between_fills_minutes_entry": 609.0186551757695, - "delay_weight_close": 39.90564880827172, - "delay_weight_entry": 14.477193043747654, - "ema_dist_close": -0.0015802420109257693, - "ema_dist_entry": -0.0013456738278392372, - "ema_span_0": 1116.744294213687, - "ema_span_1": 1198.3652802741203, - "enabled": true, - "markup_range": 0.04242032251101452, - "min_markup": 0.009598049644936822, - "n_close_orders": 4, - "qty_pct_close": 0.012164760246819274, - "qty_pct_entry": 0.012023702424462145, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.90304290994119}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LPTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LPTUSDT.json deleted file mode 100644 index 3937b2778..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LPTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1204.4546701711274, - "delay_between_fills_minutes_entry": 1128.1408534064008, - "delay_weight_close": 16.678306635091506, - "delay_weight_entry": 8.85516848053756, - "ema_dist_close": -0.003818699394040435, - "ema_dist_entry": -0.007529238148379888, - "ema_span_0": 1316.8704868026111, - "ema_span_1": 1048.413572357066, - "enabled": true, - "markup_range": 0.02711580065855055, - "min_markup": 0.0037526765235939264, - "n_close_orders": 5, - "qty_pct_close": 0.011394630718400411, - "qty_pct_entry": 0.012983194494298482, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.34142025772678}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LQTYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LQTYUSDT.json deleted file mode 100644 index ac00ed9b2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LQTYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.5003973123619, - "delay_between_fills_minutes_entry": 526.3221218699568, - "delay_weight_close": 38.43171485203275, - "delay_weight_entry": 16.136122107729772, - "ema_dist_close": 0.0015652208395273695, - "ema_dist_entry": 0.0010480138294664575, - "ema_span_0": 365.1896933312504, - "ema_span_1": 1307.3560828543712, - "enabled": true, - "markup_range": 0.003163981405014405, - "min_markup": 0.003529016431257378, - "n_close_orders": 4, - "qty_pct_close": 0.01001023898085717, - "qty_pct_entry": 0.016540600909196734, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.44085890901838}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1358.1507440409694, - "delay_between_fills_minutes_entry": 1185.5250589917293, - "delay_weight_close": 11.194981584596777, - "delay_weight_entry": 30.960468455782927, - "ema_dist_close": -0.0012637273903097874, - "ema_dist_entry": -0.0037775357806224628, - "ema_span_0": 904.5160203557302, - "ema_span_1": 1257.015460783107, - "enabled": true, - "markup_range": 0.01032910064094417, - "min_markup": 0.009922313806737764, - "n_close_orders": 12, - "qty_pct_close": 0.013680900946083745, - "qty_pct_entry": 0.01169330825577778, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.745460366815045}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LRCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LRCUSDT.json deleted file mode 100644 index 1c27e5a6f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LRCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1301.4013007475369, - "delay_between_fills_minutes_entry": 590.4570671148313, - "delay_weight_close": 8.733034244999319, - "delay_weight_entry": 28.239206835319052, - "ema_dist_close": 0.002054564883820892, - "ema_dist_entry": 0.0013572807772383195, - "ema_span_0": 286.42659769694944, - "ema_span_1": 899.7968555627447, - "enabled": true, - "markup_range": 0.0038380879750995445, - "min_markup": 0.0033487252854815307, - "n_close_orders": 14, - "qty_pct_close": 0.02871158027782959, - "qty_pct_entry": 0.022248656968013324, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.836136263422624}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1434.2492659185266, - "delay_between_fills_minutes_entry": 627.8920200330992, - "delay_weight_close": 3.91305306793461, - "delay_weight_entry": 10.473262413007424, - "ema_dist_close": -3.259592390646135e-05, - "ema_dist_entry": -0.007694695682825576, - "ema_span_0": 246.241575457051, - "ema_span_1": 315.07644857764376, - "enabled": true, - "markup_range": 0.0064214842471586485, - "min_markup": 0.0070234960697073134, - "n_close_orders": 9, - "qty_pct_close": 0.014030970538306394, - "qty_pct_entry": 0.014052624022010789, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.240090901886816}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LTCUSDT.json deleted file mode 100644 index 2852ee9f5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 865.5489492313311, - "delay_between_fills_minutes_entry": 1390.9828929848597, - "delay_weight_close": 1.5129674223365635, - "delay_weight_entry": 12.105352528490803, - "ema_dist_close": 0.0023770081476436936, - "ema_dist_entry": 0.0003193612834659218, - "ema_span_0": 1119.226006591058, - "ema_span_1": 755.0645323556859, - "enabled": true, - "markup_range": 0.029015921972541183, - "min_markup": 0.005337164355965974, - "n_close_orders": 7, - "qty_pct_close": 0.010423262204255213, - "qty_pct_entry": 0.011038614242141722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.21404411707376}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 1204.158916160061, - "delay_weight_close": 4.721122068857771, - "delay_weight_entry": 17.257264592918833, - "ema_dist_close": -0.0031889974238897157, - "ema_dist_entry": -0.004394147705068543, - "ema_span_0": 811.4094091942593, - "ema_span_1": 1147.8824394476048, - "enabled": true, - "markup_range": 0.010288926961286202, - "min_markup": 0.007715525672593151, - "n_close_orders": 7, - "qty_pct_close": 0.011049378358284326, - "qty_pct_entry": 0.015207253197605835, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.80562913755809}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LUNA2USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LUNA2USDT.json deleted file mode 100644 index 3f89bf56b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/LUNA2USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.1853395319615, - "delay_between_fills_minutes_entry": 505.02704637582883, - "delay_weight_close": 11.91636586808022, - "delay_weight_entry": 5.943828542763821, - "ema_dist_close": 0.0003701467887769311, - "ema_dist_entry": -0.004019062125416825, - "ema_span_0": 1374.7015089376073, - "ema_span_1": 1382.1761448167981, - "enabled": true, - "markup_range": 0.008739167783273279, - "min_markup": 0.007283927178502984, - "n_close_orders": 3, - "qty_pct_close": 0.010044951193249123, - "qty_pct_entry": 0.015558056453449135, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.00483183816011}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MAGICUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MAGICUSDT.json deleted file mode 100644 index 13fde1f64..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MAGICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1249.6016279432083, - "delay_between_fills_minutes_entry": 287.8771145282911, - "delay_weight_close": 59.20389750170639, - "delay_weight_entry": 10.635702763867219, - "ema_dist_close": 0.0018001315857547196, - "ema_dist_entry": -0.002438325661434333, - "ema_span_0": 977.2464132923661, - "ema_span_1": 1066.0959823167059, - "enabled": true, - "markup_range": 0.0052457539627156794, - "min_markup": 0.005472418095531287, - "n_close_orders": 2, - "qty_pct_close": 0.0247330208066704, - "qty_pct_entry": 0.016159474220569656, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.979085244122}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MANAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MANAUSDT.json deleted file mode 100644 index cf36c82f7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MANAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1083.014638315174, - "delay_between_fills_minutes_entry": 1439.7974927880402, - "delay_weight_close": 75.72296573278135, - "delay_weight_entry": 16.051877103958347, - "ema_dist_close": 0.0028760465061158608, - "ema_dist_entry": 0.003, - "ema_span_0": 895.5915312958269, - "ema_span_1": 260.00767248245126, - "enabled": true, - "markup_range": 0.005401964294285949, - "min_markup": 0.0041025376032684975, - "n_close_orders": 5, - "qty_pct_close": 0.01937441603262953, - "qty_pct_entry": 0.03091088414746243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.40639403992916}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9355969167718, - "delay_between_fills_minutes_entry": 769.208349957439, - "delay_weight_close": 9.042322617347699, - "delay_weight_entry": 5.000376041746193, - "ema_dist_close": 0.001615457601709266, - "ema_dist_entry": -0.011526570687382644, - "ema_span_0": 1306.2424756625448, - "ema_span_1": 391.10841629983116, - "enabled": true, - "markup_range": 0.02037422460461928, - "min_markup": 0.009709044462468303, - "n_close_orders": 5, - "qty_pct_close": 0.012833445563225002, - "qty_pct_entry": 0.010001004520557947, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.670121149817845}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MASKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MASKUSDT.json deleted file mode 100644 index f2ceaeafd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MASKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 851.1261624334139, - "delay_between_fills_minutes_entry": 1271.0128898192, - "delay_weight_close": 33.7539985353951, - "delay_weight_entry": 10.414270094086978, - "ema_dist_close": -0.009545457899965961, - "ema_dist_entry": 0.002115365253008751, - "ema_span_0": 1367.7750550512967, - "ema_span_1": 1338.1133801935707, - "enabled": true, - "markup_range": 0.059990632069684545, - "min_markup": 0.009602798977270031, - "n_close_orders": 14, - "qty_pct_close": 0.010279844709505229, - "qty_pct_entry": 0.010829335252269996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.084360042875474}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1412.5562929185464, - "delay_between_fills_minutes_entry": 1042.057854722162, - "delay_weight_close": 39.317234431920305, - "delay_weight_entry": 3.359605305283861, - "ema_dist_close": 0.0029928245328844643, - "ema_dist_entry": 0.002014952319694898, - "ema_span_0": 1229.8239959817665, - "ema_span_1": 1407.6963683436545, - "enabled": true, - "markup_range": 0.011162202902803774, - "min_markup": 0.006307921203151887, - "n_close_orders": 7, - "qty_pct_close": 0.010029803845904336, - "qty_pct_entry": 0.021121374354248806, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.89308632409213}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MATICUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MATICUSDT.json deleted file mode 100644 index 737228837..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MATICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.1960510736133, - "delay_between_fills_minutes_entry": 1088.6575659110858, - "delay_weight_close": 88.53949865319319, - "delay_weight_entry": 14.957056899695903, - "ema_dist_close": -0.004611681930662295, - "ema_dist_entry": 0.0029718052126254855, - "ema_span_0": 998.9047375929403, - "ema_span_1": 1285.040251303308, - "enabled": true, - "markup_range": 0.059992090351877886, - "min_markup": 0.009267627545427657, - "n_close_orders": 13, - "qty_pct_close": 0.010279547467729808, - "qty_pct_entry": 0.01181490390220532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.85542866320343}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.0655233560587, - "delay_between_fills_minutes_entry": 332.96008448463857, - "delay_weight_close": 77.86852920348063, - "delay_weight_entry": 6.3676466673365155, - "ema_dist_close": -0.009194594454980479, - "ema_dist_entry": -0.012369053054976481, - "ema_span_0": 402.81318384463515, - "ema_span_1": 1137.9212894522004, - "enabled": true, - "markup_range": 0.0021617747285637835, - "min_markup": 0.006448558106702591, - "n_close_orders": 2, - "qty_pct_close": 0.010000246807232266, - "qty_pct_entry": 0.013654074278562063, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.86393142761051}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MAVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MAVUSDT.json deleted file mode 100644 index 085c2ef38..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MAVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.0016141920605, - "delay_between_fills_minutes_entry": 1202.7114676731842, - "delay_weight_close": 50.389294725772416, - "delay_weight_entry": 5.746580200460412, - "ema_dist_close": 0.0028328575815906747, - "ema_dist_entry": -0.005723235969645436, - "ema_span_0": 312.1344406190465, - "ema_span_1": 1363.3191615225846, - "enabled": true, - "markup_range": 0.05898444891935176, - "min_markup": 0.00900433482828235, - "n_close_orders": 7, - "qty_pct_close": 0.010561583492291823, - "qty_pct_entry": 0.013273141877125366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10.167876684260362}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1295.1140316978913, - "delay_between_fills_minutes_entry": 722.8939727330927, - "delay_weight_close": 56.82370025196661, - "delay_weight_entry": 9.257791869051784, - "ema_dist_close": -0.007373392125224754, - "ema_dist_entry": -0.008375507302133087, - "ema_span_0": 1326.6963428146223, - "ema_span_1": 868.5170173675886, - "enabled": true, - "markup_range": 0.049017895341310305, - "min_markup": 0.006865319781961213, - "n_close_orders": 5, - "qty_pct_close": 0.01568356820581512, - "qty_pct_entry": 0.015190103137526903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.1409964782557}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MDTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MDTUSDT.json deleted file mode 100644 index def718e50..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MDTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1373.2725817066453, - "delay_between_fills_minutes_entry": 569.7493733065807, - "delay_weight_close": 90.35184523809806, - "delay_weight_entry": 10.371271085540615, - "ema_dist_close": 0.0026699853139973808, - "ema_dist_entry": 0.0006858269637528678, - "ema_span_0": 872.9806171019176, - "ema_span_1": 870.7583480903252, - "enabled": true, - "markup_range": 0.01848533576653506, - "min_markup": 0.009802964997115846, - "n_close_orders": 12, - "qty_pct_close": 0.010629208189091492, - "qty_pct_entry": 0.010294718523339484, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.74089606001299}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 378.9695069806188, - "delay_between_fills_minutes_entry": 336.9774642676796, - "delay_weight_close": 75.50438935618814, - "delay_weight_entry": 2.9728025399804854, - "ema_dist_close": 0.0028395015507380393, - "ema_dist_entry": -0.0001583660343275829, - "ema_span_0": 1370.05375447131, - "ema_span_1": 88.52808463184316, - "enabled": true, - "markup_range": 0.05172753519180264, - "min_markup": 0.009683835755756945, - "n_close_orders": 7, - "qty_pct_close": 0.010190966080316747, - "qty_pct_entry": 0.010246267418705936, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.54609558755943}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MINAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MINAUSDT.json deleted file mode 100644 index 3bdda493d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.584435934785, - "delay_between_fills_minutes_entry": 613.9669603794349, - "delay_weight_close": 1.3240496321409205, - "delay_weight_entry": 23.63023727396494, - "ema_dist_close": 0.0021643177623499508, - "ema_dist_entry": -0.00462033225552684, - "ema_span_0": 1233.8448535547816, - "ema_span_1": 930.9897907349388, - "enabled": true, - "markup_range": 0.0001888510606800829, - "min_markup": 0.005163501889502219, - "n_close_orders": 3, - "qty_pct_close": 0.010011884145557585, - "qty_pct_entry": 0.021574110048833545, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.83144882028307}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 852.8618135611847, - "delay_between_fills_minutes_entry": 208.4763151722832, - "delay_weight_close": 16.48587382470705, - "delay_weight_entry": 5.187839973516923, - "ema_dist_close": 0.001656151139733923, - "ema_dist_entry": -0.004402998803478992, - "ema_span_0": 525.1263626038292, - "ema_span_1": 1302.2180546826974, - "enabled": true, - "markup_range": 0.0019528601291662856, - "min_markup": 0.006072853468199506, - "n_close_orders": 13, - "qty_pct_close": 0.012208369729040205, - "qty_pct_entry": 0.015086033532875773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.931427198670995}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MKRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MKRUSDT.json deleted file mode 100644 index f05c936d3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1253.6096981112642, - "delay_between_fills_minutes_entry": 226.11950703494594, - "delay_weight_close": 73.69168272957373, - "delay_weight_entry": 23.284127809944035, - "ema_dist_close": 0.0020803730179850127, - "ema_dist_entry": 0.00019361038216874645, - "ema_span_0": 1072.734924307779, - "ema_span_1": 807.5232959162155, - "enabled": true, - "markup_range": 0.003222835020308639, - "min_markup": 0.0022588832454478918, - "n_close_orders": 15, - "qty_pct_close": 0.040020705763116705, - "qty_pct_entry": 0.018153300394923914, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.749867055669988}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1239.0972139194034, - "delay_between_fills_minutes_entry": 754.3680361440678, - "delay_weight_close": 70.44481036883703, - "delay_weight_entry": 6.406345090929128, - "ema_dist_close": 0.00013304540307925472, - "ema_dist_entry": -0.000748381167218324, - "ema_span_0": 1211.0832116420174, - "ema_span_1": 1222.3732019836675, - "enabled": true, - "markup_range": 0.024485102060739273, - "min_markup": 0.008632487308840107, - "n_close_orders": 7, - "qty_pct_close": 0.010001601767737461, - "qty_pct_entry": 0.012930423244197554, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.004669580982263}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MTLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MTLUSDT.json deleted file mode 100644 index 17540a8f3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/MTLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.553480939822, - "delay_between_fills_minutes_entry": 378.13697132336705, - "delay_weight_close": 87.35778802930635, - "delay_weight_entry": 8.745684578249582, - "ema_dist_close": -0.004011799084458176, - "ema_dist_entry": -0.008732880567769746, - "ema_span_0": 1143.0309730290771, - "ema_span_1": 1142.241351261113, - "enabled": true, - "markup_range": 0.0012872883650712904, - "min_markup": 0.008693190355053743, - "n_close_orders": 6, - "qty_pct_close": 0.013319955458597498, - "qty_pct_entry": 0.013309898751401842, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.22153206338651}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1272.966126875726, - "delay_between_fills_minutes_entry": 875.1972626365003, - "delay_weight_close": 31.57792222346523, - "delay_weight_entry": 12.85858998479335, - "ema_dist_close": -0.003182010044640864, - "ema_dist_entry": -0.010030871825741076, - "ema_span_0": 782.1911739423958, - "ema_span_1": 1036.9255740347683, - "enabled": true, - "markup_range": 0.019683474017385277, - "min_markup": 0.006571357292419819, - "n_close_orders": 11, - "qty_pct_close": 0.01183333169570996, - "qty_pct_entry": 0.010670079688520608, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.66515278343877}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NEARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NEARUSDT.json deleted file mode 100644 index 332a5a30e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NEARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1436.892386165355, - "delay_between_fills_minutes_entry": 1056.7607277678278, - "delay_weight_close": 61.92577769577431, - "delay_weight_entry": 22.33568912695574, - "ema_dist_close": 0.0014144636745898605, - "ema_dist_entry": 0.0016874612039642406, - "ema_span_0": 443.12693749654824, - "ema_span_1": 558.726851928593, - "enabled": true, - "markup_range": 0.013333451799582629, - "min_markup": 0.008760889598654958, - "n_close_orders": 4, - "qty_pct_close": 0.010309722139757548, - "qty_pct_entry": 0.010027382062929337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.730794315367106}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1416.43184061744, - "delay_between_fills_minutes_entry": 1295.7109338254324, - "delay_weight_close": 15.206754455619496, - "delay_weight_entry": 9.449758313968402, - "ema_dist_close": 0.000825372950422615, - "ema_dist_entry": -0.01228633112058592, - "ema_span_0": 1312.8759340711392, - "ema_span_1": 683.2631426350719, - "enabled": true, - "markup_range": 0.028024157654192278, - "min_markup": 0.006725809645670081, - "n_close_orders": 9, - "qty_pct_close": 0.010081906273981148, - "qty_pct_entry": 0.01133318013541956, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.909428156875954}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NEOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NEOUSDT.json deleted file mode 100644 index 8b792e8b6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NEOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 665.3680002531862, - "delay_between_fills_minutes_entry": 803.0768674061874, - "delay_weight_close": 0.06738008843672376, - "delay_weight_entry": 10.581766436512678, - "ema_dist_close": 0.0029960396686027403, - "ema_dist_entry": -0.006731307826226412, - "ema_span_0": 1344.1013623078077, - "ema_span_1": 495.6643375725563, - "enabled": true, - "markup_range": 0.004974727650062353, - "min_markup": 0.005931764963768757, - "n_close_orders": 3, - "qty_pct_close": 0.015931393085724124, - "qty_pct_entry": 0.015956488549683907, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.978163585747566}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.4640974438394, - "delay_between_fills_minutes_entry": 350.2982219969693, - "delay_weight_close": 33.22001804027791, - "delay_weight_entry": 12.750181860977499, - "ema_dist_close": 0.0012302952439329237, - "ema_dist_entry": -0.012651463107320994, - "ema_span_0": 374.4775335470185, - "ema_span_1": 650.5032235190827, - "enabled": true, - "markup_range": 0.001290201281146244, - "min_markup": 0.006393286755262519, - "n_close_orders": 4, - "qty_pct_close": 0.012654175522877037, - "qty_pct_entry": 0.01958935532278478, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.64253829066923}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NKNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NKNUSDT.json deleted file mode 100644 index 37f860d88..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NKNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1200.2421632811902, - "delay_between_fills_minutes_entry": 794.9399682151148, - "delay_weight_close": 22.877420301437105, - "delay_weight_entry": 18.638620187312856, - "ema_dist_close": 0.002789277517396805, - "ema_dist_entry": -0.0038902053335531737, - "ema_span_0": 577.4183919561128, - "ema_span_1": 853.6410292226709, - "enabled": true, - "markup_range": 0.007075870961040554, - "min_markup": 0.008895065617156275, - "n_close_orders": 2, - "qty_pct_close": 0.01010502562400264, - "qty_pct_entry": 0.017367035436985957, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.47492967315895}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1239.6718647809325, - "delay_between_fills_minutes_entry": 796.4787215162715, - "delay_weight_close": 35.42769864227112, - "delay_weight_entry": 22.74280741449601, - "ema_dist_close": 0.002999960277866133, - "ema_dist_entry": -0.016107109959944167, - "ema_span_0": 1378.6896995873008, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.05505639701669875, - "min_markup": 0.01, - "n_close_orders": 12, - "qty_pct_close": 0.03673629485196972, - "qty_pct_entry": 0.010921940757489621, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.719306637973421}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NMRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NMRUSDT.json deleted file mode 100644 index e6f751826..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/NMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1244.1393741514032, - "delay_between_fills_minutes_entry": 619.5471378377125, - "delay_weight_close": 84.63020679383811, - "delay_weight_entry": 10.759480177919857, - "ema_dist_close": -0.002981868628961178, - "ema_dist_entry": 0.0013179542818022906, - "ema_span_0": 1246.9385792330954, - "ema_span_1": 801.4724381076145, - "enabled": true, - "markup_range": 0.05739099046891489, - "min_markup": 0.005164131570392095, - "n_close_orders": 13, - "qty_pct_close": 0.011169807138134286, - "qty_pct_entry": 0.01632213443044013, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 15.731326689904549}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1295.1140316978913, - "delay_between_fills_minutes_entry": 722.8939727330927, - "delay_weight_close": 56.82370025196661, - "delay_weight_entry": 9.257791869051784, - "ema_dist_close": -0.007373392125224754, - "ema_dist_entry": -0.008375507302133087, - "ema_span_0": 1326.6963428146223, - "ema_span_1": 868.5170173675886, - "enabled": true, - "markup_range": 0.049017895341310305, - "min_markup": 0.006865319781961213, - "n_close_orders": 5, - "qty_pct_close": 0.01568356820581512, - "qty_pct_entry": 0.015190103137526903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.1409964782557}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OCEANUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OCEANUSDT.json deleted file mode 100644 index 462312fc3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OCEANUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1102.532710777919, - "delay_between_fills_minutes_entry": 574.6937848713518, - "delay_weight_close": 77.88538986199619, - "delay_weight_entry": 10.396534637131998, - "ema_dist_close": 0.0022765520877612677, - "ema_dist_entry": -0.007135131089036308, - "ema_span_0": 808.9890522303118, - "ema_span_1": 781.48970952326, - "enabled": true, - "markup_range": 0.047379227792259025, - "min_markup": 0.009106537571075742, - "n_close_orders": 8, - "qty_pct_close": 0.0291755226839536, - "qty_pct_entry": 0.016570828884378216, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 27.860710179904668}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1195.6349010470192, - "delay_between_fills_minutes_entry": 1028.0226219294163, - "delay_weight_close": 0.4479308762505563, - "delay_weight_entry": 9.408810943425152, - "ema_dist_close": -0.0017343169838513078, - "ema_dist_entry": -0.00207684670398043, - "ema_span_0": 845.4835836383445, - "ema_span_1": 661.5236147697718, - "enabled": true, - "markup_range": 0.013659957402464763, - "min_markup": 0.008728025534855728, - "n_close_orders": 10, - "qty_pct_close": 0.018773382692647674, - "qty_pct_entry": 0.02891768010922691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.61425939556739}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OGNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OGNUSDT.json deleted file mode 100644 index 36bb4a771..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OGNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1016.6629045472315, - "delay_between_fills_minutes_entry": 1270.8202434059544, - "delay_weight_close": 51.69804172780125, - "delay_weight_entry": 7.502587313574915, - "ema_dist_close": -0.006746329960301846, - "ema_dist_entry": -0.0015600454763283207, - "ema_span_0": 575.4080633190265, - "ema_span_1": 1365.3385120217313, - "enabled": true, - "markup_range": 0.05666482791896981, - "min_markup": 0.009388483354566778, - "n_close_orders": 12, - "qty_pct_close": 0.010057455452326232, - "qty_pct_entry": 0.010821353641580544, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.97552626016154}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1249.6016279432083, - "delay_between_fills_minutes_entry": 287.8771145282911, - "delay_weight_close": 59.20389750170639, - "delay_weight_entry": 10.635702763867219, - "ema_dist_close": 0.0018001315857547196, - "ema_dist_entry": -0.002438325661434333, - "ema_span_0": 977.2464132923661, - "ema_span_1": 1066.0959823167059, - "enabled": true, - "markup_range": 0.0052457539627156794, - "min_markup": 0.005472418095531287, - "n_close_orders": 2, - "qty_pct_close": 0.0247330208066704, - "qty_pct_entry": 0.016159474220569656, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.979085244122}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OMGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OMGUSDT.json deleted file mode 100644 index 09b4014dc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OMGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1353.9285578482718, - "delay_between_fills_minutes_entry": 891.555726754508, - "delay_weight_close": 90.42481896116982, - "delay_weight_entry": 31.53450911112857, - "ema_dist_close": -3.836781235478385e-05, - "ema_dist_entry": 0.0026887422949251043, - "ema_span_0": 178.00420580358912, - "ema_span_1": 963.0079059775044, - "enabled": true, - "markup_range": 0.007934763024522621, - "min_markup": 0.005817057547944828, - "n_close_orders": 8, - "qty_pct_close": 0.015585986237799047, - "qty_pct_entry": 0.012031999187548987, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.63836724829314}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1350.4944550800826, - "delay_between_fills_minutes_entry": 148.25612255587873, - "delay_weight_close": 81.40989169865331, - "delay_weight_entry": 12.74100004425152, - "ema_dist_close": -0.0013209271760803135, - "ema_dist_entry": -0.0019234139714162368, - "ema_span_0": 250.5903284781598, - "ema_span_1": 196.6490081367495, - "enabled": true, - "markup_range": 0.005748433717329186, - "min_markup": 0.003870389867844866, - "n_close_orders": 2, - "qty_pct_close": 0.022338256370162783, - "qty_pct_entry": 0.010273702499073147, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.08447240724606}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ONEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ONEUSDT.json deleted file mode 100644 index aa02a3280..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ONEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.996273294513, - "delay_between_fills_minutes_entry": 689.2606682984391, - "delay_weight_close": 2.8040460410598533, - "delay_weight_entry": 5.7238563423367355, - "ema_dist_close": -0.006656105832286994, - "ema_dist_entry": -0.009340350379594504, - "ema_span_0": 1135.1731296878663, - "ema_span_1": 1350.1684412945851, - "enabled": true, - "markup_range": 0.007347795786160195, - "min_markup": 0.006800459693128549, - "n_close_orders": 4, - "qty_pct_close": 0.013795360664979488, - "qty_pct_entry": 0.02485196411135992, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.809896349308836}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ONTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ONTUSDT.json deleted file mode 100644 index 36a480a11..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ONTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 988.6328435467195, - "delay_between_fills_minutes_entry": 1184.7756349951135, - "delay_weight_close": 69.57831960048824, - "delay_weight_entry": 13.308654517066229, - "ema_dist_close": 0.002683066673106195, - "ema_dist_entry": -0.003388828558815632, - "ema_span_0": 1230.32285357319, - "ema_span_1": 15.695631160197719, - "enabled": true, - "markup_range": 0.05375888007437027, - "min_markup": 0.008618996653066693, - "n_close_orders": 15, - "qty_pct_close": 0.010014897416903057, - "qty_pct_entry": 0.010383133344692697, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 13.825758289563732}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1033.4022503781366, - "delay_between_fills_minutes_entry": 931.9010148569423, - "delay_weight_close": 76.32428644493694, - "delay_weight_entry": 12.00229380451139, - "ema_dist_close": 0.001125395264693441, - "ema_dist_entry": -0.0024311450729707818, - "ema_span_0": 1266.7181212977468, - "ema_span_1": 332.28946994306176, - "enabled": true, - "markup_range": 0.03659960118679062, - "min_markup": 0.006471036933768709, - "n_close_orders": 5, - "qty_pct_close": 0.02767191168985521, - "qty_pct_entry": 0.01986481514875144, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.694392034791285}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OPUSDT.json deleted file mode 100644 index bee407b48..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/OPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 308.34550938086875, - "delay_between_fills_minutes_entry": 992.8325989755132, - "delay_weight_close": 51.9370050376494, - "delay_weight_entry": 12.596152316071224, - "ema_dist_close": 0.0013682423671277214, - "ema_dist_entry": 0.0029948062071203127, - "ema_span_0": 572.0615743403218, - "ema_span_1": 1337.5733753300879, - "enabled": true, - "markup_range": 0.0591002177160067, - "min_markup": 0.008343535530007861, - "n_close_orders": 3, - "qty_pct_close": 0.012501794404313314, - "qty_pct_entry": 0.01637672650253166, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.58136822663436}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 830.3183696152602, - "delay_between_fills_minutes_entry": 239.3680029503623, - "delay_weight_close": 1.1293686327633308, - "delay_weight_entry": 15.657861274226658, - "ema_dist_close": 0.0016758342421083297, - "ema_dist_entry": 0.0019834274913894064, - "ema_span_0": 1122.8746044006098, - "ema_span_1": 849.0829433832555, - "enabled": true, - "markup_range": 0.003038057475054796, - "min_markup": 0.002180260427207077, - "n_close_orders": 6, - "qty_pct_close": 0.02414699338474555, - "qty_pct_entry": 0.010889022962533003, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.42214394023863}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PENDLEUSDT.json deleted file mode 100644 index 8423b2dd2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PENDLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 805.6549138226437, - "delay_between_fills_minutes_entry": 978.9429975788164, - "delay_weight_close": 0.024510430732700966, - "delay_weight_entry": 9.122495253979675, - "ema_dist_close": -0.004588276700955273, - "ema_dist_entry": 0.002982013752303075, - "ema_span_0": 1341.396817002181, - "ema_span_1": 1140.8461275131997, - "enabled": true, - "markup_range": 0.03150473585430412, - "min_markup": 0.009555317143422493, - "n_close_orders": 8, - "qty_pct_close": 0.01005381665295796, - "qty_pct_entry": 0.010792141251528572, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.999767275926786}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 657.9354817888292, - "delay_between_fills_minutes_entry": 973.0712075310287, - "delay_weight_close": 4.137670342816308, - "delay_weight_entry": 11.218845722637502, - "ema_dist_close": 0.002982592354752991, - "ema_dist_entry": -0.008881273694416715, - "ema_span_0": 643.0134463024921, - "ema_span_1": 1235.329628477941, - "enabled": true, - "markup_range": 0.03289901251253172, - "min_markup": 0.0056128720996133745, - "n_close_orders": 3, - "qty_pct_close": 0.01049797659028328, - "qty_pct_entry": 0.012466293291526495, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.43682523409672}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PEOPLEUSDT.json deleted file mode 100644 index 0ef524624..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PEOPLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 959.4153028238243, - "delay_between_fills_minutes_entry": 626.6523399517594, - "delay_weight_close": 53.22801834622622, - "delay_weight_entry": 3.416100026053266, - "ema_dist_close": -0.00018474954394237178, - "ema_dist_entry": -0.007069659016688305, - "ema_span_0": 1026.1002815476602, - "ema_span_1": 296.21673532299315, - "enabled": true, - "markup_range": 0.0021566093734247433, - "min_markup": 0.00912483776187694, - "n_close_orders": 11, - "qty_pct_close": 0.014664062989888222, - "qty_pct_entry": 0.022530846711492986, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.884988752046745}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PERPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PERPUSDT.json deleted file mode 100644 index 5e0fd40ce..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PERPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 830.3183696152602, - "delay_between_fills_minutes_entry": 239.3680029503623, - "delay_weight_close": 1.1293686327633308, - "delay_weight_entry": 15.657861274226658, - "ema_dist_close": 0.0016758342421083297, - "ema_dist_entry": 0.0019834274913894064, - "ema_span_0": 1122.8746044006098, - "ema_span_1": 849.0829433832555, - "enabled": true, - "markup_range": 0.003038057475054796, - "min_markup": 0.002180260427207077, - "n_close_orders": 6, - "qty_pct_close": 0.02414699338474555, - "qty_pct_entry": 0.010889022962533003, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.42214394023863}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PHBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PHBUSDT.json deleted file mode 100644 index 7064f30ff..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/PHBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.3261039557924, - "delay_between_fills_minutes_entry": 1119.2737362968026, - "delay_weight_close": 57.850891419834895, - "delay_weight_entry": 11.632421440044132, - "ema_dist_close": -0.0006523524307687509, - "ema_dist_entry": 0.0027998235993790354, - "ema_span_0": 1314.5834645544687, - "ema_span_1": 1377.2409446839235, - "enabled": true, - "markup_range": 0.05738380603018685, - "min_markup": 0.005192647334939926, - "n_close_orders": 9, - "qty_pct_close": 0.018613187146853897, - "qty_pct_entry": 0.011470388696531546, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 36.577392281852035}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1245.7492735057767, - "delay_between_fills_minutes_entry": 319.7073462732383, - "delay_weight_close": 71.42998257328867, - "delay_weight_entry": 2.4664035130435327, - "ema_dist_close": 0.0013240496815417854, - "ema_dist_entry": -0.011545302441795252, - "ema_span_0": 329.9909861040062, - "ema_span_1": 823.0364472943686, - "enabled": true, - "markup_range": 0.007457631277024575, - "min_markup": 0.00798584372601077, - "n_close_orders": 11, - "qty_pct_close": 0.012424153954362274, - "qty_pct_entry": 0.010014071600446142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.22779679395116}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/QNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/QNTUSDT.json deleted file mode 100644 index fa1ff5aa1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/QNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1167.7763485721239, - "delay_between_fills_minutes_entry": 1070.5012635157057, - "delay_weight_close": 64.47411839324123, - "delay_weight_entry": 30.26921998384661, - "ema_dist_close": -0.003709025351532321, - "ema_dist_entry": 0.0018908163432512835, - "ema_span_0": 829.8861035037357, - "ema_span_1": 965.5048648942922, - "enabled": true, - "markup_range": 0.007026586156628394, - "min_markup": 0.006112892899813559, - "n_close_orders": 4, - "qty_pct_close": 0.013140272142490517, - "qty_pct_entry": 0.017138610711076877, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.646044922151553}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1369.3906821906455, - "delay_between_fills_minutes_entry": 729.9660532657346, - "delay_weight_close": 83.20130511614042, - "delay_weight_entry": 6.308908296360244, - "ema_dist_close": -0.0007606613222497299, - "ema_dist_entry": -0.00072244706777596, - "ema_span_0": 735.7134575591834, - "ema_span_1": 15.188000629580786, - "enabled": true, - "markup_range": 0.043025018091113025, - "min_markup": 0.006572320213045065, - "n_close_orders": 9, - "qty_pct_close": 0.014900764638338266, - "qty_pct_entry": 0.01495087579051833, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.99612281143063}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/QTUMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/QTUMUSDT.json deleted file mode 100644 index 632eaf479..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/QTUMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1264.5591745481781, - "delay_between_fills_minutes_entry": 721.3469624726237, - "delay_weight_close": 98.07359031572418, - "delay_weight_entry": 11.39628309734827, - "ema_dist_close": 0.000475036152980005, - "ema_dist_entry": -0.0068138324784223405, - "ema_span_0": 366.7541313370658, - "ema_span_1": 1154.0851444009418, - "enabled": true, - "markup_range": 0.05058644122915853, - "min_markup": 0.009369208613386795, - "n_close_orders": 10, - "qty_pct_close": 0.012147670939920476, - "qty_pct_entry": 0.011369244615227762, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.5129932596471}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1343.9483972120374, - "delay_between_fills_minutes_entry": 1214.627799125734, - "delay_weight_close": 90.32642113010829, - "delay_weight_entry": 7.416596169944362, - "ema_dist_close": 0.0025610566659585252, - "ema_dist_entry": -0.0017788565335973827, - "ema_span_0": 551.6489728607337, - "ema_span_1": 1439.9982672100207, - "enabled": true, - "markup_range": 0.0038585754410093613, - "min_markup": 0.004942728714912869, - "n_close_orders": 8, - "qty_pct_close": 0.01047917876830742, - "qty_pct_entry": 0.03806690361249887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.5191909213613}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RADUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RADUSDT.json deleted file mode 100644 index 1dbdfaaeb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RADUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1254.7357799530266, - "delay_between_fills_minutes_entry": 1130.2856381216482, - "delay_weight_close": 45.23408899147888, - "delay_weight_entry": 11.177077949419791, - "ema_dist_close": 0.0027348980202713444, - "ema_dist_entry": -0.04895942306700758, - "ema_span_0": 23.606546868528177, - "ema_span_1": 1345.6052991413037, - "enabled": true, - "markup_range": 0.05280974508516258, - "min_markup": 0.009509922187515908, - "n_close_orders": 11, - "qty_pct_close": 0.021414876564825, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.69304359314071}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1295.1140316978913, - "delay_between_fills_minutes_entry": 722.8939727330927, - "delay_weight_close": 56.82370025196661, - "delay_weight_entry": 9.257791869051784, - "ema_dist_close": -0.007373392125224754, - "ema_dist_entry": -0.008375507302133087, - "ema_span_0": 1326.6963428146223, - "ema_span_1": 868.5170173675886, - "enabled": true, - "markup_range": 0.049017895341310305, - "min_markup": 0.006865319781961213, - "n_close_orders": 5, - "qty_pct_close": 0.01568356820581512, - "qty_pct_entry": 0.015190103137526903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.1409964782557}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RAYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RAYUSDT.json deleted file mode 100644 index b87208e3c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1203.861220286326, - "delay_between_fills_minutes_entry": 499.7157824628817, - "delay_weight_close": 66.18706584128218, - "delay_weight_entry": 9.573996168477693, - "ema_dist_close": 0.0016398685438080468, - "ema_dist_entry": -0.04995555038004375, - "ema_span_0": 626.2917610271998, - "ema_span_1": 1167.5811587184053, - "enabled": true, - "markup_range": 0.022605213945978638, - "min_markup": 0.00599831939283211, - "n_close_orders": 5, - "qty_pct_close": 0.021005755201978067, - "qty_pct_entry": 0.010013244919589423, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.976373836505598}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.5388034717066, - "delay_between_fills_minutes_entry": 564.7431304295302, - "delay_weight_close": 73.72682388188508, - "delay_weight_entry": 9.030332966876738, - "ema_dist_close": 0.0004649982638920925, - "ema_dist_entry": -0.009884870798924781, - "ema_span_0": 558.0545950250996, - "ema_span_1": 872.3668589373002, - "enabled": true, - "markup_range": 0.01703499666759896, - "min_markup": 0.0057454243309324644, - "n_close_orders": 14, - "qty_pct_close": 0.013402581359097861, - "qty_pct_entry": 0.015264922555705784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.000267610171793}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RDNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RDNTUSDT.json deleted file mode 100644 index fe471d181..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RDNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 769.4619836732393, - "delay_between_fills_minutes_entry": 544.5595903701939, - "delay_weight_close": 95.07445844371298, - "delay_weight_entry": 17.624346233092286, - "ema_dist_close": 0.002116684136685326, - "ema_dist_entry": -0.0024244057343740227, - "ema_span_0": 822.5657122979112, - "ema_span_1": 1201.1889977592696, - "enabled": true, - "markup_range": 0.03630277877554145, - "min_markup": 0.009473211425957551, - "n_close_orders": 13, - "qty_pct_close": 0.012487784679931302, - "qty_pct_entry": 0.012628409284236744, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 21.824529580365404}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 657.9354817888292, - "delay_between_fills_minutes_entry": 973.0712075310287, - "delay_weight_close": 4.137670342816308, - "delay_weight_entry": 11.218845722637502, - "ema_dist_close": 0.002982592354752991, - "ema_dist_entry": -0.008881273694416715, - "ema_span_0": 643.0134463024921, - "ema_span_1": 1235.329628477941, - "enabled": true, - "markup_range": 0.03289901251253172, - "min_markup": 0.0056128720996133745, - "n_close_orders": 3, - "qty_pct_close": 0.01049797659028328, - "qty_pct_entry": 0.012466293291526495, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.43682523409672}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/REEFUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/REEFUSDT.json deleted file mode 100644 index 5eb425142..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/REEFUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1254.7357799530266, - "delay_between_fills_minutes_entry": 1130.2856381216482, - "delay_weight_close": 45.23408899147888, - "delay_weight_entry": 11.177077949419791, - "ema_dist_close": 0.0027348980202713444, - "ema_dist_entry": -0.04895942306700758, - "ema_span_0": 23.606546868528177, - "ema_span_1": 1345.6052991413037, - "enabled": true, - "markup_range": 0.05280974508516258, - "min_markup": 0.009509922187515908, - "n_close_orders": 11, - "qty_pct_close": 0.021414876564825, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.69304359314071}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1209.3036804600613, - "delay_between_fills_minutes_entry": 833.8179130869366, - "delay_weight_close": 87.05710135909973, - "delay_weight_entry": 20.453563100798753, - "ema_dist_close": -0.0007670043568597384, - "ema_dist_entry": -0.004568362996141598, - "ema_span_0": 709.8339133688785, - "ema_span_1": 1308.7822567038122, - "enabled": true, - "markup_range": 0.055131066425365624, - "min_markup": 0.006641158011111413, - "n_close_orders": 2, - "qty_pct_close": 0.01624878330513155, - "qty_pct_entry": 0.024913912075110057, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 20.68352514034606}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RENUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RENUSDT.json deleted file mode 100644 index 6a06b028d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 805.6549138226437, - "delay_between_fills_minutes_entry": 978.9429975788164, - "delay_weight_close": 0.024510430732700966, - "delay_weight_entry": 9.122495253979675, - "ema_dist_close": -0.004588276700955273, - "ema_dist_entry": 0.002982013752303075, - "ema_span_0": 1341.396817002181, - "ema_span_1": 1140.8461275131997, - "enabled": true, - "markup_range": 0.03150473585430412, - "min_markup": 0.009555317143422493, - "n_close_orders": 8, - "qty_pct_close": 0.01005381665295796, - "qty_pct_entry": 0.010792141251528572, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.999767275926786}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1403.6470300997244, - "delay_between_fills_minutes_entry": 553.3983162919372, - "delay_weight_close": 27.709607620684167, - "delay_weight_entry": 9.469848052561215, - "ema_dist_close": 0.0029988000042291975, - "ema_dist_entry": -0.011465950482309265, - "ema_span_0": 701.5690294300441, - "ema_span_1": 1439.8873965376818, - "enabled": true, - "markup_range": 0.050755916462128056, - "min_markup": 0.006911595659900277, - "n_close_orders": 3, - "qty_pct_close": 0.025223174820301907, - "qty_pct_entry": 0.010000069821422366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.094888664355306}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RLCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RLCUSDT.json deleted file mode 100644 index 8c9332b4b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RLCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.3648673631, - "delay_between_fills_minutes_entry": 1315.5748546071823, - "delay_weight_close": 85.63801876954983, - "delay_weight_entry": 13.021356109576379, - "ema_dist_close": 0.0008971961824723084, - "ema_dist_entry": -0.04702779840488363, - "ema_span_0": 493.7691946135893, - "ema_span_1": 588.4450370528722, - "enabled": true, - "markup_range": 0.05990208572894217, - "min_markup": 0.00705966361842999, - "n_close_orders": 14, - "qty_pct_close": 0.012227216110370762, - "qty_pct_entry": 0.010000009013501301, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.91986726145129}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1278.9116712061686, - "delay_between_fills_minutes_entry": 273.99728689765993, - "delay_weight_close": 45.960879362662475, - "delay_weight_entry": 3.3106391883284516, - "ema_dist_close": -0.0016747835535708454, - "ema_dist_entry": -0.007352944649096215, - "ema_span_0": 457.0172596160006, - "ema_span_1": 1003.7622575651411, - "enabled": true, - "markup_range": 0.006206117846960465, - "min_markup": 0.008428081227158378, - "n_close_orders": 3, - "qty_pct_close": 0.012845078163928943, - "qty_pct_entry": 0.012026979012439739, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.14755357323136}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RNDRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RNDRUSDT.json deleted file mode 100644 index ed53473d8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RNDRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1293.2949514567902, - "delay_between_fills_minutes_entry": 812.5631553046901, - "delay_weight_close": 76.35971118516652, - "delay_weight_entry": 23.498200422079446, - "ema_dist_close": 0.0029019811758497186, - "ema_dist_entry": -0.010141539128529602, - "ema_span_0": 397.1260459433863, - "ema_span_1": 1131.4753399035055, - "enabled": true, - "markup_range": 0.008036835746562195, - "min_markup": 0.0062175018176349505, - "n_close_orders": 4, - "qty_pct_close": 0.012960455548697822, - "qty_pct_entry": 0.013119283704811939, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.7897418250017}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1321.0850892252276, - "delay_between_fills_minutes_entry": 723.9137207892292, - "delay_weight_close": 6.778064078180142, - "delay_weight_entry": 10.988406439954002, - "ema_dist_close": 0.0020250142472599186, - "ema_dist_entry": -0.008850336077802242, - "ema_span_0": 21.8964908679896, - "ema_span_1": 1414.102114250467, - "enabled": true, - "markup_range": 0.008603799997873966, - "min_markup": 0.007196036124784902, - "n_close_orders": 3, - "qty_pct_close": 0.01029743652757103, - "qty_pct_entry": 0.01199485269099403, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.439175524821858}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ROSEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ROSEUSDT.json deleted file mode 100644 index a9b3f74a6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ROSEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 953.3879466752447, - "delay_between_fills_minutes_entry": 1223.2609745170255, - "delay_weight_close": 24.932543610212225, - "delay_weight_entry": 7.7517516302293386, - "ema_dist_close": -0.005604819578855546, - "ema_dist_entry": 0.0027016474318047943, - "ema_span_0": 1403.4994185671644, - "ema_span_1": 1174.8285426340685, - "enabled": true, - "markup_range": 0.05461172263464395, - "min_markup": 0.009925746412544338, - "n_close_orders": 14, - "qty_pct_close": 0.01001242890918053, - "qty_pct_entry": 0.010526243512046592, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.716555947693667}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1433.1602017729838, - "delay_between_fills_minutes_entry": 1062.0697492866318, - "delay_weight_close": 25.812913567250153, - "delay_weight_entry": 7.723769031967619, - "ema_dist_close": -0.0006526515229991158, - "ema_dist_entry": -0.002906549878703389, - "ema_span_0": 1233.3349272852545, - "ema_span_1": 759.7594583468402, - "enabled": true, - "markup_range": 0.05745863979281857, - "min_markup": 0.009927131815354609, - "n_close_orders": 3, - "qty_pct_close": 0.023816369359895947, - "qty_pct_entry": 0.010006045221346875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.17307611873914}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RSRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RSRUSDT.json deleted file mode 100644 index 951a5f0eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RSRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.1853395319615, - "delay_between_fills_minutes_entry": 505.02704637582883, - "delay_weight_close": 11.91636586808022, - "delay_weight_entry": 5.943828542763821, - "ema_dist_close": 0.0003701467887769311, - "ema_dist_entry": -0.004019062125416825, - "ema_span_0": 1374.7015089376073, - "ema_span_1": 1382.1761448167981, - "enabled": true, - "markup_range": 0.008739167783273279, - "min_markup": 0.007283927178502984, - "n_close_orders": 3, - "qty_pct_close": 0.010044951193249123, - "qty_pct_entry": 0.015558056453449135, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.00483183816011}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RUNEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RUNEUSDT.json deleted file mode 100644 index 1ce4e02b7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RUNEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1266.6307580392308, - "delay_between_fills_minutes_entry": 794.1861072278795, - "delay_weight_close": 30.452382807829455, - "delay_weight_entry": 21.047569709559305, - "ema_dist_close": 0.0029404249224339236, - "ema_dist_entry": -0.0006403531081488756, - "ema_span_0": 1439.993515187582, - "ema_span_1": 364.19062664818466, - "enabled": true, - "markup_range": 0.004751802340187407, - "min_markup": 0.006116565608036242, - "n_close_orders": 16, - "qty_pct_close": 0.02280040273517309, - "qty_pct_entry": 0.018373638835743996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.90924073364806}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.1774531358149, - "delay_between_fills_minutes_entry": 1041.3795698388174, - "delay_weight_close": 93.36314180868105, - "delay_weight_entry": 19.233880083671497, - "ema_dist_close": -0.00023288485156279555, - "ema_dist_entry": 0.002993208576396276, - "ema_span_0": 391.42066487081803, - "ema_span_1": 1400.9606053805953, - "enabled": true, - "markup_range": 0.028351678995716934, - "min_markup": 0.0025028951449733217, - "n_close_orders": 13, - "qty_pct_close": 0.010000993005291172, - "qty_pct_entry": 0.021965837271458448, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.532954214366974}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RVNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RVNUSDT.json deleted file mode 100644 index b860fc62a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/RVNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1376.477453351561, - "delay_between_fills_minutes_entry": 639.9227107932807, - "delay_weight_close": 57.68751735967374, - "delay_weight_entry": 28.54870522510204, - "ema_dist_close": -0.006925222103021778, - "ema_dist_entry": -0.003619072937516666, - "ema_span_0": 696.0633780160931, - "ema_span_1": 1311.0608509130361, - "enabled": true, - "markup_range": 0.007825757477960453, - "min_markup": 0.005090747763117205, - "n_close_orders": 2, - "qty_pct_close": 0.010072911727939693, - "qty_pct_entry": 0.010033544135363975, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.746784513356864}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.6947341043958, - "delay_between_fills_minutes_entry": 698.1018171884307, - "delay_weight_close": 55.561512834097975, - "delay_weight_entry": 2.927227180170575, - "ema_dist_close": 0.0011017636188067955, - "ema_dist_entry": -0.009595625853882548, - "ema_span_0": 1386.4660627147987, - "ema_span_1": 102.49553073822958, - "enabled": true, - "markup_range": 0.0077757839496282516, - "min_markup": 0.009973013135537738, - "n_close_orders": 8, - "qty_pct_close": 0.010042739791588753, - "qty_pct_entry": 0.012894715886545517, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.217515856044955}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SANDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SANDUSDT.json deleted file mode 100644 index e44632393..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1003.3889581069147, - "delay_between_fills_minutes_entry": 1380.7693155535935, - "delay_weight_close": 47.84376204405854, - "delay_weight_entry": 14.583242695867465, - "ema_dist_close": -0.004844551023371233, - "ema_dist_entry": -0.0003197635436775899, - "ema_span_0": 1255.4901326657778, - "ema_span_1": 1160.1499913634602, - "enabled": true, - "markup_range": 0.05912789091483531, - "min_markup": 0.00938448893036117, - "n_close_orders": 11, - "qty_pct_close": 0.013310663853359727, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.091390593841737}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1152.7312826867956, - "delay_between_fills_minutes_entry": 210.87866876694983, - "delay_weight_close": 85.09806952312518, - "delay_weight_entry": 18.434214216926843, - "ema_dist_close": -0.004113782509645251, - "ema_dist_entry": -0.006660760018831201, - "ema_span_0": 498.8192196953636, - "ema_span_1": 1267.442753649392, - "enabled": true, - "markup_range": 0.00432501425372252, - "min_markup": 0.004491271493565847, - "n_close_orders": 5, - "qty_pct_close": 0.011160874812992034, - "qty_pct_entry": 0.012556422850453589, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.85284570392885}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SCUSDT.json deleted file mode 100644 index 6b5e82840..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1312.0602954968158, - "delay_between_fills_minutes_entry": 1288.3010053035753, - "delay_weight_close": 29.311001384301854, - "delay_weight_entry": 23.426831418062886, - "ema_dist_close": 0.0022587983376774947, - "ema_dist_entry": 0.0023789232428968188, - "ema_span_0": 595.3555943508433, - "ema_span_1": 1247.786570339029, - "enabled": true, - "markup_range": 0.006637192171488077, - "min_markup": 0.006544743500063032, - "n_close_orders": 13, - "qty_pct_close": 0.01105875848325817, - "qty_pct_entry": 0.012817132536529531, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.564073227379865}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1272.966126875726, - "delay_between_fills_minutes_entry": 875.1972626365003, - "delay_weight_close": 31.57792222346523, - "delay_weight_entry": 12.85858998479335, - "ema_dist_close": -0.003182010044640864, - "ema_dist_entry": -0.010030871825741076, - "ema_span_0": 782.1911739423958, - "ema_span_1": 1036.9255740347683, - "enabled": true, - "markup_range": 0.019683474017385277, - "min_markup": 0.006571357292419819, - "n_close_orders": 11, - "qty_pct_close": 0.01183333169570996, - "qty_pct_entry": 0.010670079688520608, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.66515278343877}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SFPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SFPUSDT.json deleted file mode 100644 index 8743f7ba0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SFPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.0023646007235, - "delay_between_fills_minutes_entry": 345.11565848192197, - "delay_weight_close": 36.880916472282564, - "delay_weight_entry": 2.6756002784081607, - "ema_dist_close": 0.0026890769243986287, - "ema_dist_entry": -0.015758692821043845, - "ema_span_0": 1313.4117240957908, - "ema_span_1": 1378.9974115008613, - "enabled": true, - "markup_range": 0.004551920896554268, - "min_markup": 0.006165135737670581, - "n_close_orders": 7, - "qty_pct_close": 0.010896784340511164, - "qty_pct_entry": 0.010098376444404861, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.59993430068118}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 931.8887126109198, - "delay_between_fills_minutes_entry": 76.64609503847433, - "delay_weight_close": 4.492118422030745, - "delay_weight_entry": 0.3665628697380306, - "ema_dist_close": 0.002720270752734288, - "ema_dist_entry": -0.0023175338729465042, - "ema_span_0": 1029.5083290638263, - "ema_span_1": 1068.139677775562, - "enabled": true, - "markup_range": 0.0037859562405724383, - "min_markup": 0.0023763012060358996, - "n_close_orders": 6, - "qty_pct_close": 0.012258146982182293, - "qty_pct_entry": 0.010210272127904518, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.54681876473949}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SKLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SKLUSDT.json deleted file mode 100644 index d4671a99a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SKLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1154.205078381012, - "delay_between_fills_minutes_entry": 977.9266454985783, - "delay_weight_close": 60.66234494229808, - "delay_weight_entry": 13.439410261778225, - "ema_dist_close": -0.0038782307419281733, - "ema_dist_entry": -0.003473996359250784, - "ema_span_0": 1406.5548629794628, - "ema_span_1": 1374.407966781841, - "enabled": true, - "markup_range": 0.05237390147361234, - "min_markup": 0.008570689160768447, - "n_close_orders": 9, - "qty_pct_close": 0.014234622346182156, - "qty_pct_entry": 0.010090077381406267, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.263721091031595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1402.3089845220288, - "delay_between_fills_minutes_entry": 521.6121967965777, - "delay_weight_close": 29.648539686411688, - "delay_weight_entry": 9.751253514564386, - "ema_dist_close": 0.002419617506624312, - "ema_dist_entry": -0.0006752545501937054, - "ema_span_0": 1030.06377574765, - "ema_span_1": 1383.1568373178304, - "enabled": true, - "markup_range": 0.0043600155313650475, - "min_markup": 0.006960565841658939, - "n_close_orders": 12, - "qty_pct_close": 0.010077862546554801, - "qty_pct_entry": 0.024481400210483537, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.56923512633691}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SNXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SNXUSDT.json deleted file mode 100644 index ce5604256..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.5859477166675, - "delay_between_fills_minutes_entry": 1361.0160553726296, - "delay_weight_close": 96.1682067629612, - "delay_weight_entry": 19.968669297732628, - "ema_dist_close": -0.009229184930469798, - "ema_dist_entry": 0.002470759981349575, - "ema_span_0": 476.2093369400016, - "ema_span_1": 968.4452183148073, - "enabled": true, - "markup_range": 0.04522387005634351, - "min_markup": 0.007001748445543029, - "n_close_orders": 11, - "qty_pct_close": 0.017696327855003555, - "qty_pct_entry": 0.011745618483956973, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.79070762731068}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 359.70154922183286, - "delay_weight_close": 1.8684468067175353, - "delay_weight_entry": 7.4183255537921475, - "ema_dist_close": 0.0029997859886671677, - "ema_dist_entry": -0.001691060409185404, - "ema_span_0": 1206.750457563136, - "ema_span_1": 771.3172702577781, - "enabled": true, - "markup_range": 0.0059602319547304265, - "min_markup": 0.005079186050498823, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.015387447758002585, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.998184065868266}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SOLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SOLUSDT.json deleted file mode 100644 index e13ca0020..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SOLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 361.51810864078584, - "delay_between_fills_minutes_entry": 729.3386832259418, - "delay_weight_close": 81.93955778924344, - "delay_weight_entry": 13.386289646712045, - "ema_dist_close": 0.0017119051935297206, - "ema_dist_entry": 0.002710638146687863, - "ema_span_0": 1191.381126889249, - "ema_span_1": 965.172658632495, - "enabled": true, - "markup_range": 0.002604080946984898, - "min_markup": 0.008473099146410581, - "n_close_orders": 2, - "qty_pct_close": 0.0255828727564025, - "qty_pct_entry": 0.03515558285770933, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.94576484655632}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1321.0850892252276, - "delay_between_fills_minutes_entry": 723.9137207892292, - "delay_weight_close": 6.778064078180142, - "delay_weight_entry": 10.988406439954002, - "ema_dist_close": 0.0020250142472599186, - "ema_dist_entry": -0.008850336077802242, - "ema_span_0": 21.8964908679896, - "ema_span_1": 1414.102114250467, - "enabled": true, - "markup_range": 0.008603799997873966, - "min_markup": 0.007196036124784902, - "n_close_orders": 3, - "qty_pct_close": 0.01029743652757103, - "qty_pct_entry": 0.01199485269099403, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.439175524821858}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SPELLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SPELLUSDT.json deleted file mode 100644 index eee53a751..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SPELLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1176.2933920128153, - "delay_between_fills_minutes_entry": 1311.93284254683, - "delay_weight_close": 99.59465913058501, - "delay_weight_entry": 11.629793957480768, - "ema_dist_close": -0.002331833217907417, - "ema_dist_entry": 0.0019004590167591544, - "ema_span_0": 1253.3836717750069, - "ema_span_1": 1270.8617601976564, - "enabled": true, - "markup_range": 0.05601897423189382, - "min_markup": 0.0070842491311411335, - "n_close_orders": 11, - "qty_pct_close": 0.01611412340400685, - "qty_pct_entry": 0.019732462661093002, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.0977667718358}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.242552911291, - "delay_between_fills_minutes_entry": 1136.8881382691468, - "delay_weight_close": 93.68575779787182, - "delay_weight_entry": 14.736403257028229, - "ema_dist_close": -0.009163549740664072, - "ema_dist_entry": -0.00955426174853583, - "ema_span_0": 1270.6619014242672, - "ema_span_1": 1170.5525286871516, - "enabled": true, - "markup_range": 0.015059670023580909, - "min_markup": 0.007983559420896706, - "n_close_orders": 12, - "qty_pct_close": 0.011633984668412008, - "qty_pct_entry": 0.025021552321859077, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.91040703202347}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SRMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SRMUSDT.json deleted file mode 100644 index 07496af59..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SRMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.5104758977973, - "delay_between_fills_minutes_entry": 1090.113364954926, - "delay_weight_close": 29.976295470832362, - "delay_weight_entry": 11.176737453498339, - "ema_dist_close": 0.0011913388741614705, - "ema_dist_entry": -0.010974320446217562, - "ema_span_0": 546.7128913884131, - "ema_span_1": 1430.4865462558662, - "enabled": true, - "markup_range": 0.010664419859808712, - "min_markup": 0.0058787981942411555, - "n_close_orders": 13, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010539175732125268, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.42717123756755}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1239.0972139194034, - "delay_between_fills_minutes_entry": 754.3680361440678, - "delay_weight_close": 70.44481036883703, - "delay_weight_entry": 6.406345090929128, - "ema_dist_close": 0.00013304540307925472, - "ema_dist_entry": -0.000748381167218324, - "ema_span_0": 1211.0832116420174, - "ema_span_1": 1222.3732019836675, - "enabled": true, - "markup_range": 0.024485102060739273, - "min_markup": 0.008632487308840107, - "n_close_orders": 7, - "qty_pct_close": 0.010001601767737461, - "qty_pct_entry": 0.012930423244197554, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 23.004669580982263}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SSVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SSVUSDT.json deleted file mode 100644 index 4215daaf4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SSVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 865.5489492313311, - "delay_between_fills_minutes_entry": 1390.9828929848597, - "delay_weight_close": 1.5129674223365635, - "delay_weight_entry": 12.105352528490803, - "ema_dist_close": 0.0023770081476436936, - "ema_dist_entry": 0.0003193612834659218, - "ema_span_0": 1119.226006591058, - "ema_span_1": 755.0645323556859, - "enabled": true, - "markup_range": 0.029015921972541183, - "min_markup": 0.005337164355965974, - "n_close_orders": 7, - "qty_pct_close": 0.010423262204255213, - "qty_pct_entry": 0.011038614242141722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.21404411707376}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 385.04558477908205, - "delay_between_fills_minutes_entry": 1103.5596749301073, - "delay_weight_close": 0.3659327025845835, - "delay_weight_entry": 11.298486682109083, - "ema_dist_close": 0.0017941559107941274, - "ema_dist_entry": -0.033198293423021, - "ema_span_0": 1087.2873207657383, - "ema_span_1": 1219.4775350948428, - "enabled": true, - "markup_range": 0.059643450699386924, - "min_markup": 0.00918017471837059, - "n_close_orders": 3, - "qty_pct_close": 0.02883206176068581, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.9821192866092}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STGUSDT.json deleted file mode 100644 index 2f1da8249..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.2699061982983, - "delay_between_fills_minutes_entry": 759.3282496748589, - "delay_weight_close": 19.642581692198238, - "delay_weight_entry": 8.395388694148993, - "ema_dist_close": -0.0027235482926328005, - "ema_dist_entry": 0.0004287019332376506, - "ema_span_0": 1134.6099027180217, - "ema_span_1": 354.07887972072325, - "enabled": true, - "markup_range": 0.00829940886860947, - "min_markup": 0.007945344947761517, - "n_close_orders": 16, - "qty_pct_close": 0.010006309155270305, - "qty_pct_entry": 0.010751236409972841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.661645779221345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.0800653009833, - "delay_between_fills_minutes_entry": 291.1350387085681, - "delay_weight_close": 0.5352176981980249, - "delay_weight_entry": 35.29143209509675, - "ema_dist_close": 0.0029925759918415463, - "ema_dist_entry": -0.01634788240880482, - "ema_span_0": 1114.8260967792446, - "ema_span_1": 1142.7834177559148, - "enabled": true, - "markup_range": 0.003188348589935108, - "min_markup": 0.0016806970272977876, - "n_close_orders": 4, - "qty_pct_close": 0.011397097690399753, - "qty_pct_entry": 0.010000029171193305, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.130764152034736}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STMXUSDT.json deleted file mode 100644 index 99f5f80c2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1426.5628135199345, - "delay_between_fills_minutes_entry": 792.8510970371467, - "delay_weight_close": 53.94977316129044, - "delay_weight_entry": 11.305566165800203, - "ema_dist_close": 0.002774957553457106, - "ema_dist_entry": -0.00038853361842989745, - "ema_span_0": 517.2730375641071, - "ema_span_1": 718.8659005957718, - "enabled": true, - "markup_range": 0.007105893741022071, - "min_markup": 0.009661836610948004, - "n_close_orders": 3, - "qty_pct_close": 0.012469433837732996, - "qty_pct_entry": 0.01240594794975727, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.49849763621484}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 385.04558477908205, - "delay_between_fills_minutes_entry": 1103.5596749301073, - "delay_weight_close": 0.3659327025845835, - "delay_weight_entry": 11.298486682109083, - "ema_dist_close": 0.0017941559107941274, - "ema_dist_entry": -0.033198293423021, - "ema_span_0": 1087.2873207657383, - "ema_span_1": 1219.4775350948428, - "enabled": true, - "markup_range": 0.059643450699386924, - "min_markup": 0.00918017471837059, - "n_close_orders": 3, - "qty_pct_close": 0.02883206176068581, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.9821192866092}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STORJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STORJUSDT.json deleted file mode 100644 index 739a598ca..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STORJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 840.7357188679891, - "delay_between_fills_minutes_entry": 1356.2711460748983, - "delay_weight_close": 99.02566588088874, - "delay_weight_entry": 15.531894895040757, - "ema_dist_close": -0.009742305559658567, - "ema_dist_entry": 0.0008811953147525582, - "ema_span_0": 776.1041675821988, - "ema_span_1": 1186.368670004645, - "enabled": true, - "markup_range": 0.0342059963950984, - "min_markup": 0.007388644929588475, - "n_close_orders": 10, - "qty_pct_close": 0.018544712305160787, - "qty_pct_entry": 0.01029124612294046, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.441602553662435}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 959.4153028238243, - "delay_between_fills_minutes_entry": 626.6523399517594, - "delay_weight_close": 53.22801834622622, - "delay_weight_entry": 3.416100026053266, - "ema_dist_close": -0.00018474954394237178, - "ema_dist_entry": -0.007069659016688305, - "ema_span_0": 1026.1002815476602, - "ema_span_1": 296.21673532299315, - "enabled": true, - "markup_range": 0.0021566093734247433, - "min_markup": 0.00912483776187694, - "n_close_orders": 11, - "qty_pct_close": 0.014664062989888222, - "qty_pct_entry": 0.022530846711492986, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.884988752046745}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STXUSDT.json deleted file mode 100644 index 7f42e6d96..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/STXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 877.9549316169137, - "delay_between_fills_minutes_entry": 961.183768692796, - "delay_weight_close": 69.05687830860249, - "delay_weight_entry": 12.481044384342425, - "ema_dist_close": 0.0028579536057323244, - "ema_dist_entry": -0.0005463713566508398, - "ema_span_0": 1206.0053368014235, - "ema_span_1": 127.811822789862, - "enabled": true, - "markup_range": 0.03892409388489294, - "min_markup": 0.008721548949440423, - "n_close_orders": 12, - "qty_pct_close": 0.01026338502381335, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.36381793171282}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.6947341043958, - "delay_between_fills_minutes_entry": 698.1018171884307, - "delay_weight_close": 55.561512834097975, - "delay_weight_entry": 2.927227180170575, - "ema_dist_close": 0.0011017636188067955, - "ema_dist_entry": -0.009595625853882548, - "ema_span_0": 1386.4660627147987, - "ema_span_1": 102.49553073822958, - "enabled": true, - "markup_range": 0.0077757839496282516, - "min_markup": 0.009973013135537738, - "n_close_orders": 8, - "qty_pct_close": 0.010042739791588753, - "qty_pct_entry": 0.012894715886545517, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 47.217515856044955}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SUIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SUIUSDT.json deleted file mode 100644 index bd4f7774f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SUIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1190.0273715308176, - "delay_between_fills_minutes_entry": 711.494909795612, - "delay_weight_close": 81.59442626991188, - "delay_weight_entry": 9.473061740595735, - "ema_dist_close": 0.0005869187996545617, - "ema_dist_entry": 0.001045846077443509, - "ema_span_0": 1126.183320412245, - "ema_span_1": 964.5276091782608, - "enabled": true, - "markup_range": 0.058554872849972975, - "min_markup": 0.004702770113676486, - "n_close_orders": 7, - "qty_pct_close": 0.03388856637344066, - "qty_pct_entry": 0.016145941417022157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.97115260900077}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1403.6470300997244, - "delay_between_fills_minutes_entry": 553.3983162919372, - "delay_weight_close": 27.709607620684167, - "delay_weight_entry": 9.469848052561215, - "ema_dist_close": 0.0029988000042291975, - "ema_dist_entry": -0.011465950482309265, - "ema_span_0": 701.5690294300441, - "ema_span_1": 1439.8873965376818, - "enabled": true, - "markup_range": 0.050755916462128056, - "min_markup": 0.006911595659900277, - "n_close_orders": 3, - "qty_pct_close": 0.025223174820301907, - "qty_pct_entry": 0.010000069821422366, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.094888664355306}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SUSHIUSDT.json deleted file mode 100644 index 7c1bdafb3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SUSHIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.2699061982983, - "delay_between_fills_minutes_entry": 759.3282496748589, - "delay_weight_close": 19.642581692198238, - "delay_weight_entry": 8.395388694148993, - "ema_dist_close": -0.0027235482926328005, - "ema_dist_entry": 0.0004287019332376506, - "ema_span_0": 1134.6099027180217, - "ema_span_1": 354.07887972072325, - "enabled": true, - "markup_range": 0.00829940886860947, - "min_markup": 0.007945344947761517, - "n_close_orders": 16, - "qty_pct_close": 0.010006309155270305, - "qty_pct_entry": 0.010751236409972841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.661645779221345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1319.0276651758943, - "delay_between_fills_minutes_entry": 468.1191753542268, - "delay_weight_close": 6.063273201271272, - "delay_weight_entry": 28.07029795942001, - "ema_dist_close": -0.009095550498698016, - "ema_dist_entry": -0.007825284588397593, - "ema_span_0": 1115.2383837667342, - "ema_span_1": 146.15943142846294, - "enabled": true, - "markup_range": 0.01191604999991418, - "min_markup": 0.006226424222648785, - "n_close_orders": 11, - "qty_pct_close": 0.01192959253384803, - "qty_pct_entry": 0.01013478258805602, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.977948795968445}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SXPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SXPUSDT.json deleted file mode 100644 index 0a2544ff8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/SXPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 953.3879466752447, - "delay_between_fills_minutes_entry": 1223.2609745170255, - "delay_weight_close": 24.932543610212225, - "delay_weight_entry": 7.7517516302293386, - "ema_dist_close": -0.005604819578855546, - "ema_dist_entry": 0.0027016474318047943, - "ema_span_0": 1403.4994185671644, - "ema_span_1": 1174.8285426340685, - "enabled": true, - "markup_range": 0.05461172263464395, - "min_markup": 0.009925746412544338, - "n_close_orders": 14, - "qty_pct_close": 0.01001242890918053, - "qty_pct_entry": 0.010526243512046592, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.716555947693667}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 895.6031973957427, - "delay_between_fills_minutes_entry": 168.063602875883, - "delay_weight_close": 2.887614049592572, - "delay_weight_entry": 0.995993667935513, - "ema_dist_close": 0.001696204179579773, - "ema_dist_entry": -0.02094138365062557, - "ema_span_0": 944.0286580248105, - "ema_span_1": 842.802889092976, - "enabled": true, - "markup_range": 0.005075737176087575, - "min_markup": 0.0029404127331084714, - "n_close_orders": 14, - "qty_pct_close": 0.010317935594492539, - "qty_pct_entry": 0.010818400920152769, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.7243350972109}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/THETAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/THETAUSDT.json deleted file mode 100644 index e4a105278..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/THETAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 913.6148811192733, - "delay_between_fills_minutes_entry": 1249.42551218315, - "delay_weight_close": 50.863091196005854, - "delay_weight_entry": 20.54741858023571, - "ema_dist_close": -0.0017801145644501667, - "ema_dist_entry": -0.007187680019349892, - "ema_span_0": 498.47833372887175, - "ema_span_1": 1347.8399690302901, - "enabled": true, - "markup_range": 0.0055212686657047155, - "min_markup": 0.006678136947142042, - "n_close_orders": 12, - "qty_pct_close": 0.010323670468848231, - "qty_pct_entry": 0.022411353241072653, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 32.87644141779816}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 852.8618135611847, - "delay_between_fills_minutes_entry": 208.4763151722832, - "delay_weight_close": 16.48587382470705, - "delay_weight_entry": 5.187839973516923, - "ema_dist_close": 0.001656151139733923, - "ema_dist_entry": -0.004402998803478992, - "ema_span_0": 525.1263626038292, - "ema_span_1": 1302.2180546826974, - "enabled": true, - "markup_range": 0.0019528601291662856, - "min_markup": 0.006072853468199506, - "n_close_orders": 13, - "qty_pct_close": 0.012208369729040205, - "qty_pct_entry": 0.015086033532875773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.931427198670995}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TLMUSDT.json deleted file mode 100644 index 03c16f788..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1140.150165680905, - "delay_between_fills_minutes_entry": 1152.5778699995353, - "delay_weight_close": 52.456813636327276, - "delay_weight_entry": 13.10253311453895, - "ema_dist_close": 0.0025371854685661823, - "ema_dist_entry": 0.0029939777962427346, - "ema_span_0": 34.84832309154025, - "ema_span_1": 1250.0849991751825, - "enabled": true, - "markup_range": 0.0393023377337375, - "min_markup": 0.009376388465028836, - "n_close_orders": 6, - "qty_pct_close": 0.01102077989419074, - "qty_pct_entry": 0.011896396893990387, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.56246268880058}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1239.6718647809325, - "delay_between_fills_minutes_entry": 796.4787215162715, - "delay_weight_close": 35.42769864227112, - "delay_weight_entry": 22.74280741449601, - "ema_dist_close": 0.002999960277866133, - "ema_dist_entry": -0.016107109959944167, - "ema_span_0": 1378.6896995873008, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.05505639701669875, - "min_markup": 0.01, - "n_close_orders": 12, - "qty_pct_close": 0.03673629485196972, - "qty_pct_entry": 0.010921940757489621, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.719306637973421}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TOMOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TOMOUSDT.json deleted file mode 100644 index 36558b281..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TOMOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1231.1135225921125, - "delay_between_fills_minutes_entry": 1245.9933234935468, - "delay_weight_close": 51.10860085832518, - "delay_weight_entry": 10.249204681845477, - "ema_dist_close": -0.008398034951875006, - "ema_dist_entry": -0.0008022406743282484, - "ema_span_0": 540.2399514628768, - "ema_span_1": 1130.691172767897, - "enabled": true, - "markup_range": 0.05939620556469505, - "min_markup": 0.0098687526642422, - "n_close_orders": 10, - "qty_pct_close": 0.011044434979374955, - "qty_pct_entry": 0.011625971321085142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.181629965877347}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1433.1602017729838, - "delay_between_fills_minutes_entry": 1062.0697492866318, - "delay_weight_close": 25.812913567250153, - "delay_weight_entry": 7.723769031967619, - "ema_dist_close": -0.0006526515229991158, - "ema_dist_entry": -0.002906549878703389, - "ema_span_0": 1233.3349272852545, - "ema_span_1": 759.7594583468402, - "enabled": true, - "markup_range": 0.05745863979281857, - "min_markup": 0.009927131815354609, - "n_close_orders": 3, - "qty_pct_close": 0.023816369359895947, - "qty_pct_entry": 0.010006045221346875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.17307611873914}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRBUSDT.json deleted file mode 100644 index fe7769f1a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 975.8917548714082, - "delay_between_fills_minutes_entry": 760.8657591143406, - "delay_weight_close": 11.580568111942396, - "delay_weight_entry": 9.037011260832239, - "ema_dist_close": 0.00267594363392044, - "ema_dist_entry": 0.002421570506159672, - "ema_span_0": 877.8850316485666, - "ema_span_1": 788.345827100845, - "enabled": true, - "markup_range": 0.051271302188930785, - "min_markup": 0.0074386312044289965, - "n_close_orders": 12, - "qty_pct_close": 0.03906732769050866, - "qty_pct_entry": 0.010006998690072743, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.70103114522961}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 814.6381255617612, - "delay_between_fills_minutes_entry": 781.9482075618125, - "delay_weight_close": 24.821470381068373, - "delay_weight_entry": 8.111124380818417, - "ema_dist_close": -0.005387994730789018, - "ema_dist_entry": 0.0002917565528755008, - "ema_span_0": 1191.036099762665, - "ema_span_1": 965.9605939494263, - "enabled": true, - "markup_range": 0.027659955748156072, - "min_markup": 0.00860369063001154, - "n_close_orders": 12, - "qty_pct_close": 0.010005989310993722, - "qty_pct_entry": 0.012704943833591813, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 35.269558718325825}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRUUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRUUSDT.json deleted file mode 100644 index 4215daaf4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 865.5489492313311, - "delay_between_fills_minutes_entry": 1390.9828929848597, - "delay_weight_close": 1.5129674223365635, - "delay_weight_entry": 12.105352528490803, - "ema_dist_close": 0.0023770081476436936, - "ema_dist_entry": 0.0003193612834659218, - "ema_span_0": 1119.226006591058, - "ema_span_1": 755.0645323556859, - "enabled": true, - "markup_range": 0.029015921972541183, - "min_markup": 0.005337164355965974, - "n_close_orders": 7, - "qty_pct_close": 0.010423262204255213, - "qty_pct_entry": 0.011038614242141722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.21404411707376}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 385.04558477908205, - "delay_between_fills_minutes_entry": 1103.5596749301073, - "delay_weight_close": 0.3659327025845835, - "delay_weight_entry": 11.298486682109083, - "ema_dist_close": 0.0017941559107941274, - "ema_dist_entry": -0.033198293423021, - "ema_span_0": 1087.2873207657383, - "ema_span_1": 1219.4775350948428, - "enabled": true, - "markup_range": 0.059643450699386924, - "min_markup": 0.00918017471837059, - "n_close_orders": 3, - "qty_pct_close": 0.02883206176068581, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.9821192866092}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRXUSDT.json deleted file mode 100644 index 2fdbf4996..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1011.811617132957, - "delay_between_fills_minutes_entry": 1094.016748897848, - "delay_weight_close": 58.09959729199144, - "delay_weight_entry": 12.669876019736474, - "ema_dist_close": 0.002385028367669372, - "ema_dist_entry": -0.0018940193237226009, - "ema_span_0": 1415.037263936293, - "ema_span_1": 19.71528244342316, - "enabled": true, - "markup_range": 0.05894861744193266, - "min_markup": 0.0075142105121210395, - "n_close_orders": 6, - "qty_pct_close": 0.030864730675376786, - "qty_pct_entry": 0.010969394685214745, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.83972060511391}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.9837308020371, - "delay_between_fills_minutes_entry": 827.8385419311081, - "delay_weight_close": 21.37358508742853, - "delay_weight_entry": 16.584560272360868, - "ema_dist_close": 0.0019494839178959525, - "ema_dist_entry": -0.019629507455303803, - "ema_span_0": 878.6984336911423, - "ema_span_1": 1254.9908122277566, - "enabled": true, - "markup_range": 0.006766136808845835, - "min_markup": 0.0063289610220227535, - "n_close_orders": 10, - "qty_pct_close": 0.010722162919569702, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 28.620684593180385}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TUSDT.json deleted file mode 100644 index 363f3c002..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/TUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.6341028960558, - "delay_between_fills_minutes_entry": 1318.1447638534917, - "delay_weight_close": 41.95083872535282, - "delay_weight_entry": 14.00152016126425, - "ema_dist_close": 0.00021597573069882404, - "ema_dist_entry": -0.0036445961267289853, - "ema_span_0": 1165.4222716536276, - "ema_span_1": 1346.3141090608895, - "enabled": true, - "markup_range": 0.052254851764753765, - "min_markup": 0.007336546924757905, - "n_close_orders": 8, - "qty_pct_close": 0.025100189317447414, - "qty_pct_entry": 0.010242372032759765, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 41.50304664033492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1416.4087821322057, - "delay_between_fills_minutes_entry": 483.3047545155999, - "delay_weight_close": 59.18648754891567, - "delay_weight_entry": 4.1745369327141475, - "ema_dist_close": -0.0021717487000694918, - "ema_dist_entry": -0.0033712189581966284, - "ema_span_0": 609.9437992212333, - "ema_span_1": 924.161683127996, - "enabled": true, - "markup_range": 0.0019658618218926604, - "min_markup": 0.005688494269969634, - "n_close_orders": 13, - "qty_pct_close": 0.01390908955167051, - "qty_pct_entry": 0.021220384133120333, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.39614603857179}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UMAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UMAUSDT.json deleted file mode 100644 index 8d1635599..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UMAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1387.3648673631, - "delay_between_fills_minutes_entry": 1315.5748546071823, - "delay_weight_close": 85.63801876954983, - "delay_weight_entry": 13.021356109576379, - "ema_dist_close": 0.0008971961824723084, - "ema_dist_entry": -0.04702779840488363, - "ema_span_0": 493.7691946135893, - "ema_span_1": 588.4450370528722, - "enabled": true, - "markup_range": 0.05990208572894217, - "min_markup": 0.00705966361842999, - "n_close_orders": 14, - "qty_pct_close": 0.012227216110370762, - "qty_pct_entry": 0.010000009013501301, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.91986726145129}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 734.7396861881456, - "delay_between_fills_minutes_entry": 609.0186551757695, - "delay_weight_close": 39.90564880827172, - "delay_weight_entry": 14.477193043747654, - "ema_dist_close": -0.0015802420109257693, - "ema_dist_entry": -0.0013456738278392372, - "ema_span_0": 1116.744294213687, - "ema_span_1": 1198.3652802741203, - "enabled": true, - "markup_range": 0.04242032251101452, - "min_markup": 0.009598049644936822, - "n_close_orders": 4, - "qty_pct_close": 0.012164760246819274, - "qty_pct_entry": 0.012023702424462145, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.90304290994119}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UNFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UNFIUSDT.json deleted file mode 100644 index 86bade628..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UNFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1203.861220286326, - "delay_between_fills_minutes_entry": 499.7157824628817, - "delay_weight_close": 66.18706584128218, - "delay_weight_entry": 9.573996168477693, - "ema_dist_close": 0.0016398685438080468, - "ema_dist_entry": -0.04995555038004375, - "ema_span_0": 626.2917610271998, - "ema_span_1": 1167.5811587184053, - "enabled": true, - "markup_range": 0.022605213945978638, - "min_markup": 0.00599831939283211, - "n_close_orders": 5, - "qty_pct_close": 0.021005755201978067, - "qty_pct_entry": 0.010013244919589423, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.976373836505598}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 931.8887126109198, - "delay_between_fills_minutes_entry": 76.64609503847433, - "delay_weight_close": 4.492118422030745, - "delay_weight_entry": 0.3665628697380306, - "ema_dist_close": 0.002720270752734288, - "ema_dist_entry": -0.0023175338729465042, - "ema_span_0": 1029.5083290638263, - "ema_span_1": 1068.139677775562, - "enabled": true, - "markup_range": 0.0037859562405724383, - "min_markup": 0.0023763012060358996, - "n_close_orders": 6, - "qty_pct_close": 0.012258146982182293, - "qty_pct_entry": 0.010210272127904518, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.54681876473949}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UNIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UNIUSDT.json deleted file mode 100644 index c03fdb71a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/UNIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1184.1378729747114, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 56.32536207416283, - "delay_weight_entry": 13.278151573958517, - "ema_dist_close": 0.0027845055309752946, - "ema_dist_entry": 0.0019630124194404634, - "ema_span_0": 8.367968499880716, - "ema_span_1": 1253.3618881828816, - "enabled": true, - "markup_range": 0.058708300949088486, - "min_markup": 0.006721599063037031, - "n_close_orders": 2, - "qty_pct_close": 0.012617154553917072, - "qty_pct_entry": 0.01302504627410299, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.591251241465892}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.296534384855, - "delay_between_fills_minutes_entry": 60.00216771317934, - "delay_weight_close": 25.360839349649748, - "delay_weight_entry": 0.03722496254391398, - "ema_dist_close": -0.0016860144742498221, - "ema_dist_entry": 0.00278213855533509, - "ema_span_0": 1196.7704319755164, - "ema_span_1": 1193.7319168426068, - "enabled": true, - "markup_range": 0.0, - "min_markup": 0.006013094464188351, - "n_close_orders": 2, - "qty_pct_close": 0.021780714916111738, - "qty_pct_entry": 0.010131652918473743, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 24.855778314800926}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/USDCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/USDCUSDT.json deleted file mode 100644 index 34985618f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/USDCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.4943994149442, - "delay_between_fills_minutes_entry": 915.7281768874293, - "delay_weight_close": 82.3485253335867, - "delay_weight_entry": 13.002990789409136, - "ema_dist_close": -0.0024800597975805656, - "ema_dist_entry": -0.0005163897463163937, - "ema_span_0": 728.1689233129588, - "ema_span_1": 1260.5714828763248, - "enabled": true, - "markup_range": 0.05841537443069621, - "min_markup": 0.004498593522636097, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010495963605498142, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.062295908923966}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1357.0655233560587, - "delay_between_fills_minutes_entry": 332.96008448463857, - "delay_weight_close": 77.86852920348063, - "delay_weight_entry": 6.3676466673365155, - "ema_dist_close": -0.009194594454980479, - "ema_dist_entry": -0.012369053054976481, - "ema_span_0": 402.81318384463515, - "ema_span_1": 1137.9212894522004, - "enabled": true, - "markup_range": 0.0021617747285637835, - "min_markup": 0.006448558106702591, - "n_close_orders": 2, - "qty_pct_close": 0.010000246807232266, - "qty_pct_entry": 0.013654074278562063, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 48.86393142761051}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/VETUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/VETUSDT.json deleted file mode 100644 index 769b6c184..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/VETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1062.6148078802476, - "delay_between_fills_minutes_entry": 1438.9471651688355, - "delay_weight_close": 29.540000332635564, - "delay_weight_entry": 11.415941488324895, - "ema_dist_close": 0.0025519614772854396, - "ema_dist_entry": 0.0019945065205469897, - "ema_span_0": 60.50860445365145, - "ema_span_1": 1104.55364201045, - "enabled": true, - "markup_range": 0.04505499196462964, - "min_markup": 0.009732112387631987, - "n_close_orders": 16, - "qty_pct_close": 0.017332284673970175, - "qty_pct_entry": 0.011852047522312332, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.107000747661324}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 897.9004201983784, - "delay_between_fills_minutes_entry": 675.180796654765, - "delay_weight_close": 0.011213604046964261, - "delay_weight_entry": 12.04765419786439, - "ema_dist_close": -0.002164652088403749, - "ema_dist_entry": -0.0012361830797100004, - "ema_span_0": 1274.8305437295428, - "ema_span_1": 561.2735621725376, - "enabled": true, - "markup_range": 0.007351269707813335, - "min_markup": 0.007460256796595262, - "n_close_orders": 11, - "qty_pct_close": 0.027965752213135072, - "qty_pct_entry": 0.01532582921581298, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 50}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WAVESUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WAVESUSDT.json deleted file mode 100644 index 5b0f3b88e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WAVESUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1269.8367325234808, - "delay_between_fills_minutes_entry": 1105.903729251217, - "delay_weight_close": 55.725700482365575, - "delay_weight_entry": 26.38600762557348, - "ema_dist_close": -0.003743895028907957, - "ema_dist_entry": 0.0024480646266899432, - "ema_span_0": 120.85844996822826, - "ema_span_1": 306.13491220307975, - "enabled": true, - "markup_range": 0.005273869193235313, - "min_markup": 0.004155007095818262, - "n_close_orders": 3, - "qty_pct_close": 0.013679210288273605, - "qty_pct_entry": 0.01589075641417831, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 29.156476235314813}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 918.7305717978827, - "delay_between_fills_minutes_entry": 565.632424239714, - "delay_weight_close": 6.931817728326191, - "delay_weight_entry": 5.8695820048845615, - "ema_dist_close": 0.0026447860369612193, - "ema_dist_entry": -0.005372488566863115, - "ema_span_0": 1204.6749410925725, - "ema_span_1": 1061.783483762992, - "enabled": true, - "markup_range": 0.0041303332600758375, - "min_markup": 0.002367598305607927, - "n_close_orders": 14, - "qty_pct_close": 0.02066606946164962, - "qty_pct_entry": 0.01662155754682676, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.96816937109922}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WLDUSDT.json deleted file mode 100644 index 43215853c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 638.26857551682, - "delay_between_fills_minutes_entry": 375.9215142030756, - "delay_weight_close": 56.22147981434775, - "delay_weight_entry": 70.46091912135594, - "ema_dist_close": -0.0055567561297844995, - "ema_dist_entry": 1.9387270791002715e-05, - "ema_span_0": 1242.1215036806868, - "ema_span_1": 1287.40880814886, - "enabled": true, - "markup_range": 0.003257583294477592, - "min_markup": 0.0013497355477332463, - "n_close_orders": 6, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010039019082963393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.01024433021802}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.3395368462945, - "delay_between_fills_minutes_entry": 464.72360460375097, - "delay_weight_close": 27.836949255173046, - "delay_weight_entry": 10.538903018346414, - "ema_dist_close": -0.0013579101789730726, - "ema_dist_entry": -0.013464875809875206, - "ema_span_0": 1208.282067427354, - "ema_span_1": 1096.5553820623143, - "enabled": true, - "markup_range": 0.006508815858749005, - "min_markup": 0.007556938784113187, - "n_close_orders": 5, - "qty_pct_close": 0.011116220803081132, - "qty_pct_entry": 0.01441335665010748, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 40.476747854158525}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WOOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WOOUSDT.json deleted file mode 100644 index 889a5f011..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/WOOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1266.6307580392308, - "delay_between_fills_minutes_entry": 794.1861072278795, - "delay_weight_close": 30.452382807829455, - "delay_weight_entry": 21.047569709559305, - "ema_dist_close": 0.0029404249224339236, - "ema_dist_entry": -0.0006403531081488756, - "ema_span_0": 1439.993515187582, - "ema_span_1": 364.19062664818466, - "enabled": true, - "markup_range": 0.004751802340187407, - "min_markup": 0.006116565608036242, - "n_close_orders": 16, - "qty_pct_close": 0.02280040273517309, - "qty_pct_entry": 0.018373638835743996, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.90924073364806}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1092.4776374281764, - "delay_between_fills_minutes_entry": 401.0870529655432, - "delay_weight_close": 97.72458676173235, - "delay_weight_entry": 1.642645164557317, - "ema_dist_close": 0.0025784942036235574, - "ema_dist_entry": -0.002229374843600856, - "ema_span_0": 487.62471283418927, - "ema_span_1": 1342.9791754564674, - "enabled": true, - "markup_range": 0.008521039881417653, - "min_markup": 0.00800530965626805, - "n_close_orders": 2, - "qty_pct_close": 0.010209719681135947, - "qty_pct_entry": 0.018728076197617193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.47346258189105}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XEMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XEMUSDT.json deleted file mode 100644 index cb5666913..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XEMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1152.6703941349115, - "delay_between_fills_minutes_entry": 1151.5698001268431, - "delay_weight_close": 21.680148300323655, - "delay_weight_entry": 13.842330282178924, - "ema_dist_close": 0.0014483837042604663, - "ema_dist_entry": 0.002509114899523354, - "ema_span_0": 950.8918896795619, - "ema_span_1": 454.32416604800113, - "enabled": true, - "markup_range": 0.05495623306333167, - "min_markup": 0.008978350812596177, - "n_close_orders": 12, - "qty_pct_close": 0.0419988260213963, - "qty_pct_entry": 0.01004150620570805, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.391440564043485}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 1204.158916160061, - "delay_weight_close": 4.721122068857771, - "delay_weight_entry": 17.257264592918833, - "ema_dist_close": -0.0031889974238897157, - "ema_dist_entry": -0.004394147705068543, - "ema_span_0": 811.4094091942593, - "ema_span_1": 1147.8824394476048, - "enabled": true, - "markup_range": 0.010288926961286202, - "min_markup": 0.007715525672593151, - "n_close_orders": 7, - "qty_pct_close": 0.011049378358284326, - "qty_pct_entry": 0.015207253197605835, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 46.80562913755809}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XLMUSDT.json deleted file mode 100644 index 48657d54c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1190.0273715308176, - "delay_between_fills_minutes_entry": 711.494909795612, - "delay_weight_close": 81.59442626991188, - "delay_weight_entry": 9.473061740595735, - "ema_dist_close": 0.0005869187996545617, - "ema_dist_entry": 0.001045846077443509, - "ema_span_0": 1126.183320412245, - "ema_span_1": 964.5276091782608, - "enabled": true, - "markup_range": 0.058554872849972975, - "min_markup": 0.004702770113676486, - "n_close_orders": 7, - "qty_pct_close": 0.03388856637344066, - "qty_pct_entry": 0.016145941417022157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.97115260900077}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 1308.5220909328875, - "delay_weight_close": 7.2302374976073756, - "delay_weight_entry": 12.29868158011695, - "ema_dist_close": 0.0018766267838593324, - "ema_dist_entry": 0.0013349688374325863, - "ema_span_0": 1133.9612451062221, - "ema_span_1": 239.12082987222777, - "enabled": true, - "markup_range": 0.039856360997248264, - "min_markup": 0.00832093702381125, - "n_close_orders": 13, - "qty_pct_close": 0.02121900202037217, - "qty_pct_entry": 0.010029083013311686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 22.735609553565293}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XMRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XMRUSDT.json deleted file mode 100644 index a07715b17..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1369.6443190773643, - "delay_between_fills_minutes_entry": 841.0510351166638, - "delay_weight_close": 97.68972488394888, - "delay_weight_entry": 14.95762283738466, - "ema_dist_close": -7.273441480622939e-06, - "ema_dist_entry": -0.02520730619834346, - "ema_span_0": 1171.3065189950746, - "ema_span_1": 891.372028010379, - "enabled": true, - "markup_range": 0.003899180080999572, - "min_markup": 0.007743633756932846, - "n_close_orders": 10, - "qty_pct_close": 0.01371079708567695, - "qty_pct_entry": 0.016619498277895783, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 25.760782600443314}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 928.0008556033357, - "delay_between_fills_minutes_entry": 119.74789377891614, - "delay_weight_close": 82.20260361057997, - "delay_weight_entry": 30.637718040325787, - "ema_dist_close": -0.002368750562245673, - "ema_dist_entry": 0.003, - "ema_span_0": 683.7824306416165, - "ema_span_1": 842.996949685458, - "enabled": true, - "markup_range": 0.0022685780788570726, - "min_markup": 0.0026031659080431083, - "n_close_orders": 9, - "qty_pct_close": 0.013440329422139248, - "qty_pct_entry": 0.01300152360719368, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 42.291487141212684}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XRPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XRPUSDT.json deleted file mode 100644 index 007e4fa2e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XRPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 687.3093692116705, - "delay_between_fills_minutes_entry": 1265.597806086118, - "delay_weight_close": 0.6227862275253533, - "delay_weight_entry": 19.361652197757596, - "ema_dist_close": 0.0029827860709536985, - "ema_dist_entry": 0.0012893987289558147, - "ema_span_0": 1429.086787564919, - "ema_span_1": 5.000044702958417, - "enabled": true, - "markup_range": 0.026220259975951375, - "min_markup": 0.009656104466337079, - "n_close_orders": 8, - "qty_pct_close": 0.0306957932756937, - "qty_pct_entry": 0.010000002127913117, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.79826372819124}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9355983170362, - "delay_between_fills_minutes_entry": 402.59014455603574, - "delay_weight_close": 3.573207261433151, - "delay_weight_entry": 45.044515201881595, - "ema_dist_close": 0.0006738777910419884, - "ema_dist_entry": 0.0002947934156556626, - "ema_span_0": 232.19410331963903, - "ema_span_1": 263.6470282427085, - "enabled": true, - "markup_range": 0.004787587170097435, - "min_markup": 0.004862995689727049, - "n_close_orders": 9, - "qty_pct_close": 0.016430731017161675, - "qty_pct_entry": 0.010148104256457197, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 30.962042049265317}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XTZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XTZUSDT.json deleted file mode 100644 index 3926f1918..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XTZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1140.150165680905, - "delay_between_fills_minutes_entry": 1152.5778699995353, - "delay_weight_close": 52.456813636327276, - "delay_weight_entry": 13.10253311453895, - "ema_dist_close": 0.0025371854685661823, - "ema_dist_entry": 0.0029939777962427346, - "ema_span_0": 34.84832309154025, - "ema_span_1": 1250.0849991751825, - "enabled": true, - "markup_range": 0.0393023377337375, - "min_markup": 0.009376388465028836, - "n_close_orders": 6, - "qty_pct_close": 0.01102077989419074, - "qty_pct_entry": 0.011896396893990387, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.56246268880058}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1331.1959495278406, - "delay_between_fills_minutes_entry": 1197.1665855186511, - "delay_weight_close": 51.655604134218216, - "delay_weight_entry": 13.031279279062586, - "ema_dist_close": 0.0025128752545609126, - "ema_dist_entry": -0.009361972982482411, - "ema_span_0": 1034.1847150076346, - "ema_span_1": 732.5330461128023, - "enabled": true, - "markup_range": 0.010178914850308095, - "min_markup": 0.006031933669244625, - "n_close_orders": 9, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01786032902372548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.623285367563604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XVGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XVGUSDT.json deleted file mode 100644 index 30656f1f1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XVGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 953.3879466752447, - "delay_between_fills_minutes_entry": 1223.2609745170255, - "delay_weight_close": 24.932543610212225, - "delay_weight_entry": 7.7517516302293386, - "ema_dist_close": -0.005604819578855546, - "ema_dist_entry": 0.0027016474318047943, - "ema_span_0": 1403.4994185671644, - "ema_span_1": 1174.8285426340685, - "enabled": true, - "markup_range": 0.05461172263464395, - "min_markup": 0.009925746412544338, - "n_close_orders": 14, - "qty_pct_close": 0.01001242890918053, - "qty_pct_entry": 0.010526243512046592, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.716555947693667}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1249.6016279432083, - "delay_between_fills_minutes_entry": 287.8771145282911, - "delay_weight_close": 59.20389750170639, - "delay_weight_entry": 10.635702763867219, - "ema_dist_close": 0.0018001315857547196, - "ema_dist_entry": -0.002438325661434333, - "ema_span_0": 977.2464132923661, - "ema_span_1": 1066.0959823167059, - "enabled": true, - "markup_range": 0.0052457539627156794, - "min_markup": 0.005472418095531287, - "n_close_orders": 2, - "qty_pct_close": 0.0247330208066704, - "qty_pct_entry": 0.016159474220569656, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 43.979085244122}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XVSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XVSUSDT.json deleted file mode 100644 index 3a494ae7e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/XVSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1373.2725817066453, - "delay_between_fills_minutes_entry": 569.7493733065807, - "delay_weight_close": 90.35184523809806, - "delay_weight_entry": 10.371271085540615, - "ema_dist_close": 0.0026699853139973808, - "ema_dist_entry": 0.0006858269637528678, - "ema_span_0": 872.9806171019176, - "ema_span_1": 870.7583480903252, - "enabled": true, - "markup_range": 0.01848533576653506, - "min_markup": 0.009802964997115846, - "n_close_orders": 12, - "qty_pct_close": 0.010629208189091492, - "qty_pct_entry": 0.010294718523339484, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 26.74089606001299}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1239.6718647809325, - "delay_between_fills_minutes_entry": 796.4787215162715, - "delay_weight_close": 35.42769864227112, - "delay_weight_entry": 22.74280741449601, - "ema_dist_close": 0.002999960277866133, - "ema_dist_entry": -0.016107109959944167, - "ema_span_0": 1378.6896995873008, - "ema_span_1": 5, - "enabled": true, - "markup_range": 0.05505639701669875, - "min_markup": 0.01, - "n_close_orders": 12, - "qty_pct_close": 0.03673629485196972, - "qty_pct_entry": 0.010921940757489621, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 12.719306637973421}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/YFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/YFIUSDT.json deleted file mode 100644 index cff4c091f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/YFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1386.034959694264, - "delay_between_fills_minutes_entry": 1368.9245451811485, - "delay_weight_close": 52.07438978822763, - "delay_weight_entry": 14.353355332575303, - "ema_dist_close": 0.0013865795669801837, - "ema_dist_entry": -0.00653435743725839, - "ema_span_0": 1303.728636657968, - "ema_span_1": 1083.5700694403556, - "enabled": true, - "markup_range": 0.05995211228861413, - "min_markup": 0.006744941256124304, - "n_close_orders": 8, - "qty_pct_close": 0.010120934229523804, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 14.201576482211884}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 807.9986779393959, - "delay_between_fills_minutes_entry": 191.25276417485608, - "delay_weight_close": 32.37890385824016, - "delay_weight_entry": 19.91781435871835, - "ema_dist_close": 0.0014904618083960467, - "ema_dist_entry": -0.008831122254590368, - "ema_span_0": 1284.6033031888903, - "ema_span_1": 317.75480720099023, - "enabled": true, - "markup_range": 0.0060640923882785205, - "min_markup": 0.004871638747736082, - "n_close_orders": 6, - "qty_pct_close": 0.012027878951591906, - "qty_pct_entry": 0.012632264731592045, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 17.478069473953948}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZECUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZECUSDT.json deleted file mode 100644 index 064eb58d3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 653.7517490321233, - "delay_between_fills_minutes_entry": 777.1212352253502, - "delay_weight_close": 27.67904330480241, - "delay_weight_entry": 13.773195883283371, - "ema_dist_close": -0.0002460586228115068, - "ema_dist_entry": -0.003407737786428895, - "ema_span_0": 1361.127096542436, - "ema_span_1": 441.08317398689604, - "enabled": true, - "markup_range": 0.005214844774691213, - "min_markup": 0.007117762838845156, - "n_close_orders": 4, - "qty_pct_close": 0.010495376231658166, - "qty_pct_entry": 0.014930396921969574, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 44.80463388248994}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1340.3263267507243, - "delay_between_fills_minutes_entry": 404.6691166506183, - "delay_weight_close": 32.97967655564789, - "delay_weight_entry": 36.017355878568104, - "ema_dist_close": 0.0029995214368457, - "ema_dist_entry": -0.0063242666475044045, - "ema_span_0": 5.070079170552965, - "ema_span_1": 1320.8784484736734, - "enabled": true, - "markup_range": 0.001460604771985495, - "min_markup": 0.008259922385981026, - "n_close_orders": 8, - "qty_pct_close": 0.03125461594671802, - "qty_pct_entry": 0.010110087306674818, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 49.71918795788479}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZENUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZENUSDT.json deleted file mode 100644 index f63586bf8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1244.1393741514032, - "delay_between_fills_minutes_entry": 619.5471378377125, - "delay_weight_close": 84.63020679383811, - "delay_weight_entry": 10.759480177919857, - "ema_dist_close": -0.002981868628961178, - "ema_dist_entry": 0.0013179542818022906, - "ema_span_0": 1246.9385792330954, - "ema_span_1": 801.4724381076145, - "enabled": true, - "markup_range": 0.05739099046891489, - "min_markup": 0.005164131570392095, - "n_close_orders": 13, - "qty_pct_close": 0.011169807138134286, - "qty_pct_entry": 0.01632213443044013, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 15.731326689904549}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1048.4609328936479, - "delay_between_fills_minutes_entry": 825.1223460169658, - "delay_weight_close": 32.83425694637858, - "delay_weight_entry": 12.335082461379335, - "ema_dist_close": 0.002722332965949797, - "ema_dist_entry": -0.008885664301206155, - "ema_span_0": 1380.4455760412031, - "ema_span_1": 1291.4148799392235, - "enabled": true, - "markup_range": 0.05195417039760784, - "min_markup": 0.007305073586800737, - "n_close_orders": 11, - "qty_pct_close": 0.012152701558263578, - "qty_pct_entry": 0.010010066704277894, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 45.15393587949443}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZILUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZILUSDT.json deleted file mode 100644 index 0fccac144..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 638.26857551682, - "delay_between_fills_minutes_entry": 375.9215142030756, - "delay_weight_close": 56.22147981434775, - "delay_weight_entry": 70.46091912135594, - "ema_dist_close": -0.0055567561297844995, - "ema_dist_entry": 1.9387270791002715e-05, - "ema_span_0": 1242.1215036806868, - "ema_span_1": 1287.40880814886, - "enabled": true, - "markup_range": 0.003257583294477592, - "min_markup": 0.0013497355477332463, - "n_close_orders": 6, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.010039019082963393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 38.01024433021802}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.0800653009833, - "delay_between_fills_minutes_entry": 291.1350387085681, - "delay_weight_close": 0.5352176981980249, - "delay_weight_entry": 35.29143209509675, - "ema_dist_close": 0.0029925759918415463, - "ema_dist_entry": -0.01634788240880482, - "ema_span_0": 1114.8260967792446, - "ema_span_1": 1142.7834177559148, - "enabled": true, - "markup_range": 0.003188348589935108, - "min_markup": 0.0016806970272977876, - "n_close_orders": 4, - "qty_pct_close": 0.011397097690399753, - "qty_pct_entry": 0.010000029171193305, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 33.130764152034736}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZRXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZRXUSDT.json deleted file mode 100644 index 62d1f31a3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/ZRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.190590129848, - "delay_between_fills_minutes_entry": 1339.2665697715354, - "delay_weight_close": 1.2302457250067613, - "delay_weight_entry": 11.399247384233874, - "ema_dist_close": -0.005179278376980927, - "ema_dist_entry": -0.005141450651484262, - "ema_span_0": 369.8072327552787, - "ema_span_1": 1398.9193616889447, - "enabled": true, - "markup_range": 0.041901983240027856, - "min_markup": 0.00999817832290518, - "n_close_orders": 4, - "qty_pct_close": 0.024582663793959295, - "qty_pct_entry": 0.010199945724196023, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 39.75281535143274}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.9830249846816, - "delay_between_fills_minutes_entry": 989.6649699707626, - "delay_weight_close": 96.5999816863601, - "delay_weight_entry": 14.854363423534656, - "ema_dist_close": -0.0007236437403721288, - "ema_dist_entry": -0.012746766443775166, - "ema_span_0": 1285.3984019632667, - "ema_span_1": 1191.502867055806, - "enabled": true, - "markup_range": 0.011704822473162462, - "min_markup": 0.009261881278457297, - "n_close_orders": 9, - "qty_pct_close": 0.014023521348316371, - "qty_pct_entry": 0.020258474115915737, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 37.96354917696177}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/metrics_clock_2021-10-21.txt b/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/metrics_clock_2021-10-21.txt deleted file mode 100644 index 0d5e91f28..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-10-21/metrics_clock_2021-10-21.txt +++ /dev/null @@ -1,437 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-10-21 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| NMRUSDT | 0.002421 | 0.001749 | 0.1304 | 0.01673 | 33.73 | 0.01179 | 0.01286 | 0.08326 | 0.01721 | 119.5 | 1297211.49758 | -| PENDLEUSDT | 0.002298 | 0.001212 | 0.1288 | 0.07246 | 66.45 | 0.01914 | 0.02415 | 0.117 | 0.06902 | 83.89 | 1297211.4977 | -| SUIUSDT | 0.002247 | 0.001812 | 0.1267 | 0.05191 | 34.93 | 0.01386 | 0.0153 | 0.1031 | 0.03831 | 169.33 | 1297211.49775 | -| NKNUSDT | 0.002166 | 0.00285 | 0.1486 | 0.08097 | 36.25 | 0.01467 | 0.02168 | 0.1467 | 0.01937 | 923.71 | 1297211.49783 | -| IDEXUSDT | 0.00206 | 0.001059 | 0.06573 | 0.000983 | 18.9 | 0.0154 | 0.01338 | 0.06354 | 0.04755 | 169.5 | 1297211.49794 | -| SOLUSDT | 0.002057 | 0.002794 | 0.1157 | 0.07119 | 59.87 | 0.0155 | 0.02288 | 0.1383 | 0.06474 | 1130.71 | 1297211.49794 | -| 1000PEPEUSDT | 0.002053 | 0.002201 | 0.07691 | 0.0117 | 54.12 | 0.0166 | 0.01594 | 0.08248 | 0.01276 | 167.31 | 1297211.49795 | -| MDTUSDT | 0.002022 | 0.001277 | 0.1381 | 0.0452 | 28.27 | 0.01259 | 0.01165 | 0.05897 | 0.01539 | 111.5 | 1297211.49798 | -| 1000FLOKIUSDT | 0.001924 | 0.001359 | 0.07044 | 0.01653 | 39.95 | 0.01151 | 0.01052 | 0.04698 | 0.02134 | 166.31 | 1297211.49808 | -| XVGUSDT | 0.001903 | 0.001211 | 0.1052 | 0.02034 | 31.37 | 0.01965 | 0.01707 | 0.08359 | 0.06338 | 106.5 | 1297211.4981 | -| IOSTUSDT | 0.001892 | 0.001753 | 0.1361 | 0.05954 | 48.57 | 0.01688 | 0.01703 | 0.1029 | 0.05605 | 1336.66 | 1297211.49811 | -| AMBUSDT | 0.001893 | 0.001532 | 0.05498 | 0.007779 | 41.42 | 0.01578 | 0.013 | 0.05927 | 0.05517 | 203.5 | 1297211.49811 | -| MTLUSDT | 0.001863 | 0.00166 | 0.1275 | 0.07255 | 46.7 | 0.01581 | 0.02143 | 0.1334 | 0.02708 | 932.71 | 1297211.49814 | -| REEFUSDT | 0.001851 | 0.001744 | 0.1205 | 0.05611 | 39.32 | 0.01839 | 0.01918 | 0.126 | 0.05198 | 969.7 | 1297211.49815 | -| DGBUSDT | 0.001836 | 0.001586 | 0.1412 | 0.08407 | 47.38 | 0.01731 | 0.02209 | 0.1432 | 0.03033 | 911.85 | 1297211.49816 | -| ATOMUSDT | 0.001819 | 0.002335 | 0.1215 | 0.06673 | 47.88 | 0.01096 | 0.02743 | 0.1356 | 0.009524 | 1350.49 | 1297211.49818 | -| OCEANUSDT | 0.001785 | 0.002306 | 0.1474 | 0.08856 | 40.22 | 0.01867 | 0.02329 | 0.1496 | 0.0731 | 1080.71 | 1297211.49822 | -| DASHUSDT | 0.001696 | 0.001403 | 0.121 | 0.05833 | 48.43 | 0.01525 | 0.02054 | 0.1425 | 0.06002 | 1353.66 | 1297211.4983 | -| ENJUSDT | 0.001689 | 0.001486 | 0.1205 | 0.04922 | 44.97 | 0.01857 | 0.02279 | 0.15 | 0.04234 | 1115.71 | 1297211.49831 | -| RUNEUSDT | 0.001677 | 0.002369 | 0.1132 | 0.06275 | 90.9 | 0.01456 | 0.02329 | 0.1418 | 0.02429 | 1140.7 | 1297211.49832 | -| HOTUSDT | 0.001655 | 0.00272 | 0.1499 | 0.0983 | 65.83 | 0.01494 | 0.02651 | 0.1441 | 0.02222 | 933.71 | 1297211.49834 | -| RENUSDT | 0.001647 | 0.001653 | 0.08328 | 0.03056 | 57.25 | 0.01854 | 0.01984 | 0.1303 | 0.03097 | 1101.71 | 1297211.49835 | -| TRBUSDT | 0.001624 | 0.002051 | 0.08408 | 0.02784 | 47.12 | 0.01999 | 0.02254 | 0.1392 | 0.05562 | 1141.71 | 1297211.49838 | -| ALICEUSDT | 0.001624 | 0.002329 | 0.1275 | 0.0756 | 39.2 | 0.01457 | 0.01983 | 0.1155 | 0.06326 | 947.87 | 1297211.49838 | -| UNFIUSDT | 0.001612 | 0.001801 | 0.1046 | 0.04001 | 39.57 | 0.01942 | 0.02132 | 0.1417 | 0.04853 | 972.71 | 1297211.49839 | -| SFPUSDT | 0.001579 | 0.001409 | 0.1244 | 0.0676 | 55.25 | 0.01857 | 0.02324 | 0.1399 | 0.01745 | 967.71 | 1297211.49842 | -| XLMUSDT | 0.001572 | 0.001452 | 0.1386 | 0.08621 | 57.48 | 0.01592 | 0.02231 | 0.1313 | 0.07464 | 1368.66 | 1297211.49843 | -| HBARUSDT | 0.001561 | 0.002478 | 0.1462 | 0.09101 | 40.22 | 0.01371 | 0.01975 | 0.1365 | 0.03828 | 946.71 | 1297211.49844 | -| RDNTUSDT | 0.001562 | 0.001707 | 0.1234 | 0.05104 | 36.52 | 0.01098 | 0.01037 | 0.05642 | 0.01269 | 197.5 | 1297211.49844 | -| BCHUSDT | 0.001551 | 0.001365 | 0.1255 | 0.05727 | 53.78 | 0.01319 | 0.01593 | 0.1032 | 0.02768 | 1388.0 | 1297211.49845 | -| ASTRUSDT | 0.00155 | 0.001241 | 0.1143 | 0.05579 | 48.45 | 0.01357 | 0.0138 | 0.07454 | 0.04877 | 247.89 | 1297211.49845 | -| LRCUSDT | 0.001538 | 0.002284 | 0.1189 | 0.07963 | 39.45 | 0.01394 | 0.02385 | 0.1371 | 0.04449 | 1095.7 | 1297211.49846 | -| STMXUSDT | 0.001544 | 0.001414 | 0.119 | 0.07176 | 46.08 | 0.01935 | 0.0244 | 0.1492 | 0.04218 | 941.71 | 1297211.49846 | -| RADUSDT | 0.001521 | 0.0009997 | 0.1319 | 0.0646 | 35.48 | 0.01419 | 0.01181 | 0.05764 | 0.04823 | 162.5 | 1297211.49848 | -| XRPUSDT | 0.001503 | 0.001752 | 0.1021 | 0.04309 | 53.83 | 0.0112 | 0.01329 | 0.08854 | 0.02171 | 1382.65 | 1297211.4985 | -| BLURUSDT | 0.001476 | 0.0009939 | 0.08144 | 0.005729 | 15.18 | 0.01477 | 0.01254 | 0.05804 | 0.08666 | 174.5 | 1297211.49852 | -| ICPUSDT | 0.001455 | 0.0009638 | 0.1291 | 0.07679 | 43.98 | 0.0174 | 0.02451 | 0.1311 | 0.05643 | 387.89 | 1297211.49854 | -| TRUUSDT | 0.001461 | 0.001486 | 0.1444 | 0.05922 | 46.97 | 0.01944 | 0.02278 | 0.1468 | 0.04696 | 226.5 | 1297211.49854 | -| FILUSDT | 0.001438 | 0.001416 | 0.1122 | 0.05783 | 59.35 | 0.01838 | 0.02259 | 0.1338 | 0.05323 | 1098.75 | 1297211.49856 | -| CELRUSDT | 0.001429 | 0.002786 | 0.1463 | 0.09405 | 53.53 | 0.01901 | 0.02498 | 0.1406 | 0.05656 | 934.71 | 1297211.49857 | -| INJUSDT | 0.001424 | 0.001642 | 0.1406 | 0.08305 | 87.03 | 0.01607 | 0.0186 | 0.1042 | 0.05798 | 428.88 | 1297211.49858 | -| ZRXUSDT | 0.001425 | 0.001552 | 0.128 | 0.06308 | 39.17 | 0.01999 | 0.02151 | 0.1435 | 0.09542 | 1212.62 | 1297211.49858 | -| OMGUSDT | 0.001408 | 0.002063 | 0.0876 | 0.05313 | 52.92 | 0.01132 | 0.01592 | 0.09254 | 0.0197 | 1204.62 | 1297211.49859 | -| KAVAUSDT | 0.001415 | 0.001251 | 0.09671 | 0.04712 | 58.42 | 0.01805 | 0.02201 | 0.1391 | 0.05504 | 1178.7 | 1297211.49859 | -| ARBUSDT | 0.001375 | 0.0009926 | 0.0769 | 0.01644 | 43.65 | 0.01236 | 0.01278 | 0.0678 | 0.02709 | 210.37 | 1297211.49862 | -| ZENUSDT | 0.001367 | 0.001964 | 0.1235 | 0.06421 | 54.6 | 0.01766 | 0.0205 | 0.1261 | 0.0246 | 1059.71 | 1297211.49863 | -| MATICUSDT | 0.001369 | 0.002371 | 0.08698 | 0.05193 | 71.5 | 0.0156 | 0.02201 | 0.1454 | 0.01977 | 1092.71 | 1297211.49863 | -| SSVUSDT | 0.001374 | 0.001238 | 0.1375 | 0.05999 | 35.95 | 0.01572 | 0.01556 | 0.09239 | 0.0368 | 237.5 | 1297211.49863 | -| XEMUSDT | 0.001361 | 0.001323 | 0.0841 | 0.03565 | 62.97 | 0.01516 | 0.01621 | 0.09701 | 0.07872 | 960.71 | 1297211.49864 | -| ARKMUSDT | 0.001356 | 0.002312 | 0.1435 | 0.08238 | 35.27 | 0.01299 | 0.0191 | 0.09807 | 0.01206 | 83.88 | 1297211.49864 | -| DENTUSDT | 0.001364 | 0.001343 | 0.1003 | 0.05462 | 64.0 | 0.01825 | 0.02111 | 0.1164 | 0.04887 | 939.83 | 1297211.49864 | -| LTCUSDT | 0.001359 | 0.001093 | 0.1075 | 0.04639 | 49.85 | 0.01456 | 0.01823 | 0.1263 | 0.03441 | 1379.66 | 1297211.49864 | -| EOSUSDT | 0.001352 | 0.001342 | 0.1159 | 0.05326 | 59.43 | 0.01487 | 0.01507 | 0.08613 | 0.04418 | 1380.66 | 1297211.49865 | -| UMAUSDT | 0.001354 | 0.0006976 | 0.08595 | 0.03871 | 24.88 | 0.01366 | 0.01189 | 0.05899 | 0.0919 | 162.48 | 1297211.49865 | -| IOTAUSDT | 0.00134 | 0.001445 | 0.1039 | 0.05112 | 57.05 | 0.01662 | 0.01919 | 0.1177 | 0.0688 | 1345.66 | 1297211.49866 | -| THETAUSDT | 0.001308 | 0.002132 | 0.1077 | 0.05538 | 53.77 | 0.01362 | 0.02065 | 0.1491 | 0.03068 | 1240.66 | 1297211.49869 | -| BATUSDT | 0.001304 | 0.001425 | 0.1171 | 0.05069 | 75.68 | 0.0195 | 0.02182 | 0.1468 | 0.05474 | 1344.66 | 1297211.4987 | -| COMPUSDT | 0.001303 | 0.001672 | 0.08547 | 0.03588 | 47.3 | 0.01705 | 0.01904 | 0.1238 | 0.05073 | 1206.62 | 1297211.4987 | -| EGLDUSDT | 0.001288 | 0.001836 | 0.09969 | 0.05645 | 53.05 | 0.0109 | 0.01687 | 0.1172 | 0.009736 | 1130.71 | 1297211.49871 | -| CTKUSDT | 0.001273 | 0.001441 | 0.1499 | 0.07435 | 46.88 | 0.01978 | 0.02137 | 0.1412 | 0.07757 | 1064.71 | 1297211.49873 | -| HOOKUSDT | 0.001266 | 0.0008541 | 0.08821 | 0.03875 | 21.65 | 0.01647 | 0.01427 | 0.07155 | 0.094 | 269.87 | 1297211.49873 | -| AGIXUSDT | 0.001262 | 0.001226 | 0.1009 | 0.04108 | 53.75 | 0.01832 | 0.01933 | 0.1066 | 0.06104 | 245.4 | 1297211.49874 | -| WOOUSDT | 0.00126 | 0.001674 | 0.09814 | 0.05313 | 53.47 | 0.01455 | 0.02383 | 0.1496 | 0.03433 | 559.85 | 1297211.49874 | -| RLCUSDT | 0.001241 | 0.002103 | 0.09433 | 0.04398 | 31.55 | 0.01981 | 0.02046 | 0.1449 | 0.04443 | 1175.71 | 1297211.49876 | -| RVNUSDT | 0.001244 | 0.001758 | 0.1052 | 0.05544 | 65.87 | 0.01136 | 0.01997 | 0.1402 | 0.02256 | 968.71 | 1297211.49876 | -| CKBUSDT | 0.001238 | 0.001213 | 0.112 | 0.05013 | 66.18 | 0.01328 | 0.01771 | 0.105 | 0.02715 | 233.5 | 1297211.49876 | -| LDOUSDT | 0.001221 | 0.001434 | 0.1026 | 0.02516 | 58.45 | 0.01504 | 0.01739 | 0.1137 | 0.0303 | 392.5 | 1297211.49878 | -| CHZUSDT | 0.001217 | 0.002154 | 0.08824 | 0.04409 | 46.55 | 0.01313 | 0.02166 | 0.15 | 0.01447 | 1001.71 | 1297211.49878 | -| ICXUSDT | 0.001224 | 0.001681 | 0.1011 | 0.05348 | 51.12 | 0.0144 | 0.02114 | 0.1302 | 0.05992 | 1129.71 | 1297211.49878 | -| BANDUSDT | 0.001213 | 0.001641 | 0.08648 | 0.04398 | 78.5 | 0.01523 | 0.02298 | 0.1491 | 0.02799 | 1177.71 | 1297211.49879 | -| FETUSDT | 0.001213 | 0.001734 | 0.1207 | 0.05571 | 41.35 | 0.01149 | 0.01156 | 0.07143 | 0.0177 | 275.89 | 1297211.49879 | -| MKRUSDT | 0.001208 | 0.001378 | 0.09924 | 0.05859 | 72.63 | 0.01251 | 0.02224 | 0.1378 | 0.05568 | 1162.71 | 1297211.49879 | -| GRTUSDT | 0.001189 | 0.002911 | 0.1065 | 0.05142 | 59.53 | 0.01288 | 0.02089 | 0.141 | 0.06162 | 1034.71 | 1297211.49881 | -| ONTUSDT | 0.001188 | 0.001187 | 0.1041 | 0.05374 | 46.5 | 0.01846 | 0.02157 | 0.139 | 0.04677 | 1346.66 | 1297211.49881 | -| AVAXUSDT | 0.00118 | 0.002126 | 0.1115 | 0.07069 | 60.12 | 0.01253 | 0.01821 | 0.1234 | 0.0318 | 1121.71 | 1297211.49882 | -| BLZUSDT | 0.001165 | 0.001791 | 0.08366 | 0.03333 | 72.73 | 0.01962 | 0.02295 | 0.1489 | 0.02196 | 1127.7 | 1297211.49884 | -| ETCUSDT | 0.00115 | 0.001805 | 0.09273 | 0.05066 | 71.38 | 0.01487 | 0.01924 | 0.1164 | 0.04321 | 1372.66 | 1297211.49885 | -| VETUSDT | 0.001148 | 0.001337 | 0.09294 | 0.0382 | 64.02 | 0.01763 | 0.01967 | 0.1158 | 0.05005 | 1343.66 | 1297211.49885 | -| OPUSDT | 0.001153 | 0.001965 | 0.1236 | 0.06545 | 59.42 | 0.01588 | 0.01652 | 0.09567 | 0.04706 | 505.41 | 1297211.49885 | -| FTMUSDT | 0.001142 | 0.002015 | 0.09886 | 0.05458 | 60.28 | 0.01517 | 0.02195 | 0.1347 | 0.07874 | 1120.71 | 1297211.49886 | -| AGLDUSDT | 0.001142 | 0.001444 | 0.08051 | 0.02109 | 41.38 | 0.0139 | 0.01113 | 0.04972 | 0.0255 | 82.89 | 1297211.49886 | -| RNDRUSDT | 0.001141 | 0.002114 | 0.0904 | 0.04264 | 42.07 | 0.01019 | 0.01116 | 0.07722 | 0.006518 | 258.89 | 1297211.49886 | -| GALUSDT | 0.001125 | 0.00182 | 0.1252 | 0.08021 | 45.4 | 0.01817 | 0.02095 | 0.1189 | 0.03591 | 532.41 | 1297211.49887 | -| GMXUSDT | 0.001134 | 0.001124 | 0.1038 | 0.01926 | 52.7 | 0.01563 | 0.01272 | 0.05352 | 0.04871 | 244.39 | 1297211.49887 | -| ETHUSDT | 0.001108 | 0.001146 | 0.08908 | 0.0254 | 64.72 | 0.01186 | 0.01709 | 0.08601 | 0.02901 | 1388.0 | 1297211.49889 | -| SNXUSDT | 0.001095 | 0.002431 | 0.08329 | 0.04871 | 50.62 | 0.01658 | 0.02125 | 0.1335 | 0.05044 | 1161.7 | 1297211.49891 | -| COMBOUSDT | 0.001093 | 0.001431 | 0.1457 | 0.04778 | 44.77 | 0.01658 | 0.01469 | 0.07108 | 0.02851 | 139.5 | 1297211.49891 | -| CRVUSDT | 0.001065 | 0.001852 | 0.08306 | 0.05002 | 62.35 | 0.01545 | 0.02244 | 0.1359 | 0.02302 | 1143.71 | 1297211.49893 | -| WLDUSDT | 0.001062 | 0.001832 | 0.0679 | 0.03665 | 33.13 | 0.006519 | 0.008467 | 0.05108 | 0.009364 | 87.5 | 1297211.49894 | -| COTIUSDT | 0.001063 | 0.002406 | 0.09653 | 0.03919 | 21.7 | 0.01159 | 0.01296 | 0.09261 | 0.0545 | 953.71 | 1297211.49894 | -| ALPHAUSDT | 0.001052 | 0.001506 | 0.118 | 0.05923 | 58.53 | 0.01924 | 0.02314 | 0.1476 | 0.08019 | 1060.71 | 1297211.49895 | -| AXSUSDT | 0.001054 | 0.001405 | 0.09615 | 0.03944 | 90.3 | 0.01864 | 0.02117 | 0.133 | 0.06581 | 1063.7 | 1297211.49895 | -| SUSHIUSDT | 0.001055 | 0.001009 | 0.06329 | 0.02246 | 48.62 | 0.01738 | 0.01816 | 0.09586 | 0.02844 | 1140.71 | 1297211.49895 | -| SXPUSDT | 0.001046 | 0.001177 | 0.07527 | 0.02913 | 58.5 | 0.0198 | 0.01927 | 0.1037 | 0.05177 | 1185.62 | 1297211.49895 | -| ALGOUSDT | 0.001046 | 0.001775 | 0.08074 | 0.04304 | 44.87 | 0.01346 | 0.0162 | 0.1024 | 0.03294 | 1220.62 | 1297211.49895 | -| NEARUSDT | 0.001045 | 0.001793 | 0.1313 | 0.08445 | 33.85 | 0.01752 | 0.02292 | 0.1369 | 0.04995 | 1099.66 | 1297211.49896 | -| LITUSDT | 0.001045 | 0.001238 | 0.1009 | 0.05178 | 43.52 | 0.01972 | 0.02387 | 0.1354 | 0.07531 | 973.71 | 1297211.49896 | -| DOTUSDT | 0.001038 | 0.002091 | 0.1008 | 0.05991 | 57.5 | 0.01009 | 0.01766 | 0.117 | 0.02296 | 1153.71 | 1297211.49896 | -| JASMYUSDT | 0.001025 | 0.001188 | 0.1256 | 0.07316 | 36.78 | 0.01731 | 0.02014 | 0.1144 | 0.03312 | 547.85 | 1297211.49897 | -| KEYUSDT | 0.001023 | 0.001217 | 0.1253 | 0.06676 | 44.53 | 0.01615 | 0.0178 | 0.103 | 0.05624 | 148.5 | 1297211.49898 | -| XMRUSDT | 0.001021 | 0.001205 | 0.1059 | 0.04327 | 34.78 | 0.01193 | 0.01705 | 0.1357 | 0.03285 | 1354.66 | 1297211.49898 | -| AAVEUSDT | 0.001005 | 0.001466 | 0.0877 | 0.04645 | 73.3 | 0.0156 | 0.02113 | 0.1321 | 0.04326 | 1098.71 | 1297211.499 | -| BNBUSDT | 0.0009972 | 0.001387 | 0.1016 | 0.05414 | 91.42 | 0.01327 | 0.02268 | 0.1496 | 0.07225 | 1347.66 | 1297211.499 | -| PHBUSDT | 0.0009974 | 0.000919 | 0.07885 | 0.0258 | 48.57 | 0.01589 | 0.01386 | 0.06237 | 0.0369 | 245.39 | 1297211.499 | -| LINKUSDT | 0.0009975 | 0.001962 | 0.09528 | 0.05632 | 54.27 | 0.01309 | 0.02196 | 0.1368 | 0.04405 | 1371.66 | 1297211.499 | -| DEFIUSDT | 0.0009893 | 0.001365 | 0.1149 | 0.05485 | 84.02 | 0.01851 | 0.0197 | 0.1172 | 0.0839 | 1147.71 | 1297211.49901 | -| MANAUSDT | 0.0009819 | 0.001708 | 0.09885 | 0.05077 | 51.82 | 0.01572 | 0.02203 | 0.1356 | 0.04943 | 948.71 | 1297211.49902 | -| XVSUSDT | 0.0009776 | 0.0009283 | 0.08981 | 0.03707 | 41.2 | 0.01386 | 0.01498 | 0.08499 | 0.02874 | 189.89 | 1297211.49902 | -| XTZUSDT | 0.0009787 | 0.001282 | 0.0964 | 0.03844 | 80.12 | 0.0166 | 0.01982 | 0.1276 | 0.03246 | 1351.66 | 1297211.49902 | -| MINAUSDT | 0.0009587 | 0.001432 | 0.1189 | 0.06399 | 48.07 | 0.008434 | 0.009065 | 0.05035 | 0.009004 | 254.54 | 1297211.49904 | -| QTUMUSDT | 0.0009582 | 0.001259 | 0.08801 | 0.039 | 84.97 | 0.01646 | 0.02083 | 0.1342 | 0.03424 | 1337.66 | 1297211.49904 | -| SKLUSDT | 0.0009583 | 0.001714 | 0.08248 | 0.03976 | 46.62 | 0.01837 | 0.02155 | 0.1403 | 0.03904 | 1045.68 | 1297211.49904 | -| STXUSDT | 0.0009393 | 0.001435 | 0.1082 | 0.05909 | 66.02 | 0.01783 | 0.02082 | 0.1103 | 0.03639 | 240.39 | 1297211.49906 | -| 1INCHUSDT | 0.0009349 | 0.001768 | 0.06415 | 0.04334 | 71.7 | 0.007901 | 0.01434 | 0.08135 | 0.03152 | 1028.58 | 1297211.49907 | -| EDUUSDT | 0.0009134 | 0.001006 | 0.06753 | 0.02053 | 28.43 | 0.01683 | 0.01599 | 0.07502 | 0.05491 | 172.5 | 1297211.49909 | -| STORJUSDT | 0.0009107 | 0.001235 | 0.05678 | 0.02898 | 51.23 | 0.01671 | 0.02209 | 0.145 | 0.08058 | 1128.7 | 1297211.49909 | -| WAVESUSDT | 0.000903 | 0.001493 | 0.07374 | 0.03845 | 24.57 | 0.01191 | 0.01967 | 0.1394 | 0.04546 | 1163.71 | 1297211.4991 | -| SPELLUSDT | 0.0008891 | 0.001019 | 0.1365 | 0.09556 | 45.75 | 0.01582 | 0.01866 | 0.08935 | 0.09403 | 408.5 | 1297211.49911 | -| ZILUSDT | 0.0008801 | 0.001846 | 0.08551 | 0.06294 | 59.12 | 0.01126 | 0.02567 | 0.1446 | 0.04723 | 1218.62 | 1297211.49912 | -| ZECUSDT | 0.000875 | 0.001174 | 0.07547 | 0.03422 | 47.48 | 0.01253 | 0.01418 | 0.08257 | 0.03818 | 1352.66 | 1297211.49912 | -| HFTUSDT | 0.0008748 | 0.001024 | 0.1362 | 0.0884 | 62.1 | 0.01452 | 0.02352 | 0.1456 | 0.0644 | 196.5 | 1297211.49913 | -| 1000SHIBUSDT | 0.0008478 | 0.001844 | 0.04686 | 0.02554 | 78.55 | 0.005272 | 0.00952 | 0.06697 | 0.01329 | 892.26 | 1297211.49915 | -| BLUEBIRDUSDT | 0.0008445 | 0.0004501 | 0.08165 | 0.0416 | 41.73 | 0.009889 | 0.01163 | 0.06379 | 0.09894 | 351.5 | 1297211.49916 | -| FLMUSDT | 0.0008348 | 0.001102 | 0.05346 | 0.0115 | 58.42 | 0.01933 | 0.01778 | 0.08398 | 0.07528 | 1115.71 | 1297211.49917 | -| DOGEUSDT | 0.0008298 | 0.001189 | 0.09018 | 0.03346 | 63.05 | 0.01345 | 0.01807 | 0.1276 | 0.07256 | 1196.62 | 1297211.49917 | -| ANKRUSDT | 0.0008233 | 0.001525 | 0.08411 | 0.03796 | 66.18 | 0.01198 | 0.01506 | 0.1214 | 0.07892 | 996.71 | 1297211.49918 | -| SANDUSDT | 0.00081 | 0.001697 | 0.08221 | 0.04055 | 70.3 | 0.01743 | 0.02162 | 0.147 | 0.05399 | 997.71 | 1297211.49919 | -| CHRUSDT | 0.0007901 | 0.001737 | 0.1243 | 0.0746 | 81.87 | 0.01704 | 0.02289 | 0.1441 | 0.03061 | 951.71 | 1297211.49921 | -| UNIUSDT | 0.0007897 | 0.001263 | 0.1023 | 0.02736 | 54.38 | 0.0197 | 0.02057 | 0.1336 | 0.04654 | 1126.71 | 1297211.49921 | -| 1000LUNCUSDT | 0.0007823 | 0.001554 | 0.06553 | 0.02538 | 55.03 | 0.007862 | 0.01092 | 0.07936 | 0.01542 | 405.46 | 1297211.49922 | -| KNCUSDT | 0.0007663 | 0.001314 | 0.0715 | 0.02525 | 34.73 | 0.01526 | 0.02025 | 0.1437 | 0.06768 | 1214.63 | 1297211.49923 | -| QNTUSDT | 0.0007592 | 0.0009536 | 0.1186 | 0.06565 | 41.4 | 0.009394 | 0.01398 | 0.0863 | 0.05345 | 364.89 | 1297211.49924 | -| TRXUSDT | 0.0007541 | 0.0009355 | 0.1164 | 0.08035 | 135.1 | 0.01291 | 0.01537 | 0.08823 | 0.08465 | 1373.66 | 1297211.49925 | -| NEOUSDT | 0.0007454 | 0.0009128 | 0.09375 | 0.04901 | 56.97 | 0.01565 | 0.02029 | 0.1227 | 0.08233 | 1340.63 | 1297211.49925 | -| IOTXUSDT | 0.0007491 | 0.001025 | 0.08922 | 0.0436 | 48.22 | 0.01758 | 0.02311 | 0.1489 | 0.03524 | 798.85 | 1297211.49925 | -| BTCUSDT | 0.0007418 | 0.0005458 | 0.1482 | 0.06589 | 75.5 | 0.01702 | 0.02008 | 0.1146 | 0.0972 | 1388.0 | 1297211.49926 | -| YFIUSDT | 0.0007437 | 0.001586 | 0.09773 | 0.04943 | 57.43 | 0.01742 | 0.01708 | 0.1043 | 0.03214 | 1144.71 | 1297211.49926 | -| TOMOUSDT | 0.0007304 | 0.000772 | 0.04064 | 0.01942 | 54.05 | 0.01986 | 0.0196 | 0.1023 | 0.08117 | 1102.71 | 1297211.49927 | -| API3USDT | 0.0007189 | 0.0008442 | 0.08208 | 0.03733 | 38.33 | 0.01499 | 0.01584 | 0.08528 | 0.03915 | 604.85 | 1297211.49928 | -| BALUSDT | 0.0007187 | 0.0008944 | 0.08652 | 0.04248 | 48.43 | 0.01671 | 0.02196 | 0.1489 | 0.03751 | 1143.71 | 1297211.49928 | -| LINAUSDT | 0.000716 | 0.001009 | 0.07259 | 0.03647 | 57.45 | 0.01907 | 0.02113 | 0.1323 | 0.02902 | 944.71 | 1297211.49928 | -| FXSUSDT | 0.0007079 | 0.001073 | 0.08948 | 0.06336 | 53.78 | 0.01058 | 0.02336 | 0.1426 | 0.08098 | 272.87 | 1297211.49929 | -| ADAUSDT | 0.0007016 | 0.0008148 | 0.07591 | 0.03855 | 78.3 | 0.01334 | 0.02106 | 0.1347 | 0.02963 | 1357.66 | 1297211.4993 | -| CVXUSDT | 0.0006962 | 0.0007777 | 0.132 | 0.05488 | 58.33 | 0.01685 | 0.01738 | 0.102 | 0.0688 | 392.49 | 1297211.4993 | -| STGUSDT | 0.0006834 | 0.0007857 | 0.09955 | 0.05122 | 71.58 | 0.01635 | 0.01855 | 0.1039 | 0.06549 | 420.5 | 1297211.49932 | -| TUSDT | 0.0006771 | 0.0009433 | 0.09173 | 0.02015 | 45.07 | 0.01308 | 0.01253 | 0.06875 | 0.04959 | 260.46 | 1297211.49932 | -| ENSUSDT | 0.0006635 | 0.0007833 | 0.1148 | 0.07276 | 47.02 | 0.01913 | 0.02322 | 0.1311 | 0.07755 | 688.85 | 1297211.49934 | -| CELOUSDT | 0.0006444 | 0.001362 | 0.08218 | 0.03996 | 51.07 | 0.01428 | 0.01621 | 0.09637 | 0.04399 | 752.85 | 1297211.49936 | -| ATAUSDT | 0.0006444 | 0.0008693 | 0.1268 | 0.0819 | 53.78 | 0.01898 | 0.02305 | 0.1344 | 0.06063 | 779.85 | 1297211.49936 | -| 1000XECUSDT | 0.0006279 | 0.0008394 | 0.06938 | 0.03222 | 65.93 | 0.0146 | 0.01914 | 0.1184 | 0.08607 | 762.85 | 1297211.49937 | -| BNXUSDT | 0.0006177 | 0.0006855 | 0.06489 | 0.009048 | 24.77 | 0.01638 | 0.01469 | 0.07105 | 0.04347 | 239.38 | 1297211.49938 | -| PEOPLEUSDT | 0.0006168 | 0.0007548 | 0.06474 | 0.01924 | 46.43 | 0.01754 | 0.0194 | 0.1264 | 0.04652 | 664.83 | 1297211.49938 | -| LQTYUSDT | 0.0006129 | 0.0007657 | 0.03085 | 0.001678 | 48.3 | 0.0102 | 0.009361 | 0.04466 | 0.001543 | 223.5 | 1297211.49939 | -| KSMUSDT | 0.0006041 | 0.001321 | 0.08546 | 0.04444 | 69.33 | 0.01875 | 0.02321 | 0.1468 | 0.05219 | 1100.71 | 1297211.4994 | -| RSRUSDT | 0.0005903 | 0.0008213 | 0.05079 | 0.01297 | 49.15 | 0.01867 | 0.01925 | 0.1082 | 0.03327 | 1095.7 | 1297211.49941 | -| CTSIUSDT | 0.0005777 | 0.001223 | 0.09578 | 0.05324 | 77.62 | 0.01795 | 0.01989 | 0.1196 | 0.07865 | 723.85 | 1297211.49942 | -| HIGHUSDT | 0.0005849 | 0.001213 | 0.1401 | 0.06227 | 40.97 | 0.01849 | 0.01536 | 0.07226 | 0.03236 | 254.89 | 1297211.49942 | -| MAGICUSDT | 0.000571 | 0.0006857 | 0.07827 | 0.03142 | 57.3 | 0.01836 | 0.01586 | 0.07134 | 0.04746 | 267.87 | 1297211.49943 | -| FOOTBALLUSDT | 0.0005455 | 0.0004577 | 0.06007 | 0.01289 | 31.83 | 0.01097 | 0.0111 | 0.05818 | 0.06332 | 413.87 | 1297211.49945 | -| PERPUSDT | 0.0005198 | 0.0005961 | 0.09212 | 0.03571 | 40.23 | 0.01665 | 0.01816 | 0.1201 | 0.07088 | 227.5 | 1297211.49948 | -| ONEUSDT | 0.0004503 | 0.001076 | 0.08582 | 0.04102 | 55.52 | 0.01972 | 0.01964 | 0.1108 | 0.05091 | 945.71 | 1297211.49955 | -| ROSEUSDT | 0.0004441 | 0.0007907 | 0.03507 | 0.00209 | 66.57 | 0.01639 | 0.01625 | 0.08395 | 0.05045 | 657.85 | 1297211.49956 | -| ACHUSDT | 0.0004148 | 0.0007529 | 0.06887 | 0.003654 | 45.38 | 0.01513 | 0.01219 | 0.05778 | 0.03268 | 239.39 | 1297211.49959 | -| ARPAUSDT | 0.0003541 | 0.000712 | 0.03073 | 0.009805 | 60.3 | 0.01385 | 0.01941 | 0.1227 | 0.09261 | 730.85 | 1297211.49965 | -| MASKUSDT | 0.0002894 | 0.0008692 | 0.04514 | 0.01153 | 59.33 | 0.01968 | 0.0217 | 0.1205 | 0.08455 | 783.85 | 1297211.49971 | -| BELUSDT | 0.0002837 | 0.0007883 | 0.03391 | 0.006373 | 53.5 | 0.01945 | 0.0194 | 0.1008 | 0.08884 | 1065.71 | 1297211.49972 | -| APTUSDT | 0.0002158 | 0.000651 | 0.02812 | 0.004782 | 49.43 | 0.01169 | 0.01062 | 0.04804 | 0.09831 | 365.92 | 1297211.49978 | -| ANTUSDT | 0.0002202 | 0.0005348 | 0.05378 | 0.02392 | 68.5 | 0.01729 | 0.02027 | 0.1246 | 0.06239 | 661.83 | 1297211.49978 | -| CVCUSDT | 0.0001195 | 0.0007222 | 0.02097 | 0.005166 | 66.3 | 0.01651 | 0.01383 | 0.08012 | 0.05185 | 1072.71 | 1297211.49988 | -| SRMUSDT | 0.0001083 | 0.0005928 | 0.03458 | 0.01045 | 50.73 | 0.01959 | 0.01863 | 0.08763 | 0.03353 | 1139.91 | 1297211.49989 | -| FTTUSDT | 0.0001069 | 0.001069 | 0.03272 | 0.008742 | 35.53 | 0.01589 | 0.02646 | 0.07434 | 0.02523 | 552.85 | 1297211.49989 | -| SCUSDT | 8.723e-05 | 0.0008723 | 0.03827 | 0.02543 | 48.62 | 0.017 | 0.02923 | 0.1469 | 0.01925 | 920.71 | 1297211.49991 | -| COCOSUSDT | 7.861e-05 | 0.0007861 | 0.04294 | 0.0008664 | 37.83 | 0.005762 | 0.007687 | 0.04357 | 0.007253 | 240.38 | 1297211.49992 | -| BTSUSDT | 6.239e-05 | 0.0004922 | 0.09359 | 0.01148 | 37.77 | 0.01995 | 0.01327 | 0.08151 | 0.07361 | 990.71 | 1297211.49994 | -| BTCSTUSDT | 2.566e-06 | 2.566e-05 | 0.009377 | 0.0 | 8.617 | 0.005889 | 0.0005968 | 0.008291 | 0.0 | 959.71 | 1297211.5 | -| OGNUSDT | 0.001023 | 0.001217 | 0.07712 | 0.03953 | 62.6 | 0.02002 | 0.02113 | 0.1125 | 0.04944 | 931.71 | 1297211.67251 | -| TLMUSDT | 0.0008451 | 0.0007636 | 0.1913 | 0.1255 | 49.18 | 0.01678 | 0.01913 | 0.1061 | 0.0816 | 203.48 | 1297214.46041 | -| BTCDOMUSDT | 0.0002751 | 0.0004355 | 0.1984 | 0.1281 | 65.52 | 0.009414 | 0.01006 | 0.05176 | 0.09536 | 850.85 | 1297214.79864 | -| CFXUSDT | 0.0001807 | 0.0006378 | 0.1124 | 0.05591 | 44.85 | 0.02114 | 0.02255 | 0.1173 | 0.09374 | 241.39 | 1297222.85059 | -| USDCUSDT | -4.822e-06 | 6.153e-06 | 0.8868 | 0.8375 | 43.43 | 0.0003975 | 0.0004018 | 0.002341 | 0.08307 | 221.29 | 1297292.62201 | -| MAVUSDT | 0.001893 | 0.0009342 | 0.1606 | 0.06146 | 31.17 | 0.02939 | 0.02394 | 0.1128 | 0.09103 | 112.5 | 1297305.53344 | -| DYDXUSDT | 0.00041 | 0.0007533 | 0.07579 | 0.02614 | 47.23 | 0.02801 | 0.02743 | 0.1513 | 0.09714 | 769.85 | 1298565.33977 | -| DUSKUSDT | 0.0003925 | 0.0008339 | 0.08514 | 0.04699 | 66.27 | 0.02001 | 0.02849 | 0.1622 | 0.0685 | 650.85 | 1309414.20274 | -| LPTUSDT | 0.0004603 | 0.0006108 | 0.06835 | 0.02831 | 38.18 | 0.01879 | 0.02336 | 0.1628 | 0.07237 | 707.85 | 1310034.92403 | -| HNTUSDT | 0.0001579 | 0.0006723 | 0.2176 | 0.1977 | 71.32 | 0.04354 | 0.04468 | 0.1633 | 0.094 | 1116.71 | 1312238.64392 | -| ARUSDT | 0.0003011 | 0.0006359 | 0.07287 | 0.03463 | 53.02 | 0.02016 | 0.02739 | 0.1846 | 0.08184 | 751.85 | 1331839.05668 | -| GTCUSDT | 0.0005513 | 0.0007225 | 0.08591 | 0.04627 | 41.33 | 0.02159 | 0.02676 | 0.1866 | 0.07277 | 860.85 | 1333875.45276 | -| APEUSDT | 0.0007075 | 0.000798 | 0.0866 | 0.04594 | 55.6 | 0.01921 | 0.02881 | 0.2002 | 0.06611 | 581.37 | 1347458.26517 | -| GALAUSDT | 0.0002477 | 0.0008464 | 0.1003 | 0.05573 | 52.98 | 0.02366 | 0.03174 | 0.1834 | 0.1067 | 761.85 | 1397361.75818 | -| IMXUSDT | 0.001215 | 0.001891 | 0.1431 | 0.09843 | 41.35 | 0.02245 | 0.047 | 0.2789 | 0.07761 | 615.85 | 1427848.60732 | -| AUDIOUSDT | 0.0002457 | 0.0008632 | 0.03851 | 0.01905 | 65.9 | 0.0164 | 0.0262 | 0.1831 | 0.1127 | 791.85 | 1457642.6673 | -| FLOWUSDT | 0.0002922 | 0.0007236 | 0.04051 | 0.01783 | 53.55 | 0.01413 | 0.01835 | 0.115 | 0.1176 | 616.85 | 1472917.02167 | -| C98USDT | 0.0004036 | 0.0008019 | 0.08087 | 0.05178 | 53.48 | 0.02261 | 0.02974 | 0.1802 | 0.119 | 786.85 | 1517486.27289 | -| IDUSDT | 0.0009762 | 0.001062 | 0.1399 | 0.0883 | 65.42 | 0.02707 | 0.04828 | 0.2148 | 0.1157 | 210.39 | 1521198.85818 | -| LUNA2USDT | 0.0001318 | 0.0004144 | 0.01281 | 0.0 | 41.45 | 0.01204 | 0.01225 | 0.06408 | 0.1309 | 404.87 | 1605868.03299 | -| JOEUSDT | 0.0002758 | 0.0004217 | 0.09168 | 0.04726 | 42.78 | 0.0193 | 0.0216 | 0.1179 | 0.132 | 204.49 | 1617527.74729 | -| BAKEUSDT | 0.0004288 | 0.001004 | 0.0762 | 0.05238 | 52.12 | 0.02225 | 0.03579 | 0.2239 | 0.1805 | 883.71 | 2176947.8194 | -| GMTUSDT | 0.0002086 | 0.0007273 | 0.1051 | 0.06929 | 72.72 | 0.02712 | 0.04311 | 0.2605 | 0.2163 | 583.83 | 2572018.21406 | -| LEVERUSDT | -0.0001672 | 0.0004987 | 0.1345 | 0.07349 | 52.15 | 0.04045 | 0.06188 | 0.3372 | 0.2166 | 203.49 | 2653361.11512 | -| DARUSDT | -0.0002705 | 0.0005969 | 0.2181 | 0.1787 | 53.55 | 0.03281 | 0.04637 | 0.2197 | 0.2522 | 538.85 | 2890284.18513 | -| KLAYUSDT | 5.157e-05 | 0.0001422 | 0.0866 | 0.06714 | 65.28 | 0.02486 | 0.04439 | 0.2565 | 0.5742 | 737.85 | 6147093.31691 | -| RAYUSDT | -7.074e-05 | -0.0005228 | 0.6532 | 0.6237 | 74.02 | 0.4138 | 0.3713 | 0.9881 | 1.496 | 790.85 | 16132568.1917 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| BNXUSDT | 0.004918 | 0.002888 | 0.09628 | 0.01914 | 59.65 | 0.009535 | 0.009279 | 0.05135 | 0.003445 | 239.38 | 1297211.49508 | -| BLURUSDT | 0.004079 | 0.002391 | 0.08496 | 0.0117 | 53.63 | 0.0108 | 0.01101 | 0.06239 | 0.004452 | 174.5 | 1297211.49592 | -| LQTYUSDT | 0.003949 | 0.002696 | 0.08256 | 0.04194 | 41.45 | 0.01076 | 0.01575 | 0.1058 | 0.01337 | 223.5 | 1297211.49605 | -| STMXUSDT | 0.00384 | 0.002127 | 0.1012 | 0.0384 | 35.28 | 0.01866 | 0.01897 | 0.1272 | 0.06587 | 941.71 | 1297211.49616 | -| RADUSDT | 0.003457 | 0.001933 | 0.1353 | 0.02743 | 33.03 | 0.009177 | 0.009079 | 0.05 | 0.02067 | 162.5 | 1297211.49654 | -| RENUSDT | 0.00331 | 0.002839 | 0.1498 | 0.05586 | 50.62 | 0.01909 | 0.02066 | 0.1288 | 0.02317 | 1101.71 | 1297211.49669 | -| COMBOUSDT | 0.003107 | 0.002329 | 0.1193 | 0.03255 | 46.92 | 0.01295 | 0.01458 | 0.09448 | 0.01758 | 139.5 | 1297211.49689 | -| ZENUSDT | 0.003085 | 0.003295 | 0.1498 | 0.06826 | 56.98 | 0.01699 | 0.01934 | 0.1335 | 0.011 | 1059.71 | 1297211.49691 | -| HIGHUSDT | 0.003042 | 0.002418 | 0.1446 | 0.0773 | 37.22 | 0.01339 | 0.01677 | 0.1004 | 0.01522 | 254.89 | 1297211.49696 | -| LITUSDT | 0.003026 | 0.003262 | 0.1443 | 0.07741 | 78.58 | 0.01766 | 0.02241 | 0.141 | 0.02341 | 973.71 | 1297211.49697 | -| SUIUSDT | 0.003006 | 0.002299 | 0.1395 | 0.04748 | 34.9 | 0.01326 | 0.01548 | 0.09605 | 0.02193 | 169.33 | 1297211.49699 | -| OCEANUSDT | 0.002949 | 0.002981 | 0.1499 | 0.0726 | 39.63 | 0.01707 | 0.01865 | 0.113 | 0.03735 | 1080.71 | 1297211.49705 | -| NMRUSDT | 0.002947 | 0.002318 | 0.1352 | 0.04531 | 36.0 | 0.01051 | 0.01147 | 0.07257 | 0.02557 | 119.5 | 1297211.49705 | -| ARKMUSDT | 0.002901 | 0.002645 | 0.1117 | 0.05459 | 40.52 | 0.01544 | 0.0206 | 0.1205 | 0.02075 | 83.88 | 1297211.4971 | -| 1000FLOKIUSDT | 0.002872 | 0.001903 | 0.148 | 0.09517 | 48.57 | 0.01349 | 0.02064 | 0.1081 | 0.02535 | 166.31 | 1297211.49713 | -| CHZUSDT | 0.002834 | 0.003036 | 0.1499 | 0.07217 | 24.25 | 0.01004 | 0.01656 | 0.127 | 0.05204 | 1001.71 | 1297211.49717 | -| HOOKUSDT | 0.002807 | 0.002587 | 0.1208 | 0.05604 | 41.17 | 0.01545 | 0.01756 | 0.1147 | 0.01375 | 269.87 | 1297211.49719 | -| RLCUSDT | 0.002793 | 0.002303 | 0.1459 | 0.08512 | 48.28 | 0.01873 | 0.02216 | 0.1185 | 0.02401 | 1175.71 | 1297211.49721 | -| XVSUSDT | 0.002786 | 0.002046 | 0.09454 | 0.02391 | 26.43 | 0.01107 | 0.01538 | 0.1075 | 0.02031 | 189.89 | 1297211.49721 | -| TRUUSDT | 0.002787 | 0.001793 | 0.09305 | 0.04414 | 29.07 | 0.01564 | 0.01395 | 0.06813 | 0.08443 | 226.5 | 1297211.49721 | -| AMBUSDT | 0.002775 | 0.00188 | 0.0881 | 0.0436 | 69.87 | 0.0172 | 0.02207 | 0.1291 | 0.02117 | 203.5 | 1297211.49722 | -| EDUUSDT | 0.002769 | 0.002601 | 0.1168 | 0.04878 | 37.8 | 0.007961 | 0.009235 | 0.06386 | 0.009672 | 172.5 | 1297211.49723 | -| CTKUSDT | 0.002747 | 0.002059 | 0.1483 | 0.07369 | 49.65 | 0.01561 | 0.01856 | 0.1122 | 0.02157 | 1064.71 | 1297211.49725 | -| SSVUSDT | 0.002737 | 0.001275 | 0.1023 | 0.04192 | 38.83 | 0.01426 | 0.01265 | 0.06321 | 0.0936 | 237.5 | 1297211.49726 | -| MDTUSDT | 0.002739 | 0.002453 | 0.1094 | 0.05977 | 58.83 | 0.01142 | 0.01594 | 0.1033 | 0.003473 | 111.5 | 1297211.49726 | -| LEVERUSDT | 0.0027 | 0.002079 | 0.1222 | 0.06919 | 46.38 | 0.01552 | 0.01875 | 0.1148 | 0.04151 | 203.49 | 1297211.4973 | -| SUSHIUSDT | 0.00267 | 0.003458 | 0.1467 | 0.0889 | 54.15 | 0.0138 | 0.02298 | 0.149 | 0.02437 | 1140.71 | 1297211.49733 | -| OMGUSDT | 0.002653 | 0.002374 | 0.1481 | 0.08401 | 25.28 | 0.01254 | 0.01931 | 0.1239 | 0.0314 | 1204.62 | 1297211.49735 | -| UMAUSDT | 0.002591 | 0.001991 | 0.1449 | 0.05435 | 34.15 | 0.01011 | 0.01454 | 0.1019 | 0.02435 | 162.48 | 1297211.49741 | -| ALICEUSDT | 0.002574 | 0.002311 | 0.1397 | 0.07433 | 47.33 | 0.01462 | 0.01733 | 0.09592 | 0.03539 | 947.87 | 1297211.49743 | -| KEYUSDT | 0.002536 | 0.001501 | 0.06351 | 0.01403 | 75.13 | 0.01137 | 0.01128 | 0.06131 | 0.008526 | 148.5 | 1297211.49746 | -| COMPUSDT | 0.002544 | 0.002244 | 0.1451 | 0.07669 | 47.4 | 0.017 | 0.02157 | 0.1359 | 0.02177 | 1206.62 | 1297211.49746 | -| GALUSDT | 0.002515 | 0.002345 | 0.11 | 0.05838 | 58.8 | 0.008453 | 0.01062 | 0.06369 | 0.006164 | 532.41 | 1297211.49748 | -| PHBUSDT | 0.002516 | 0.001789 | 0.1092 | 0.04583 | 27.88 | 0.01406 | 0.01754 | 0.1121 | 0.01953 | 245.39 | 1297211.49748 | -| CRVUSDT | 0.002502 | 0.002678 | 0.1266 | 0.06627 | 37.78 | 0.01263 | 0.01993 | 0.1438 | 0.01941 | 1143.71 | 1297211.4975 | -| PENDLEUSDT | 0.002503 | 0.002131 | 0.1438 | 0.04467 | 37.55 | 0.01306 | 0.01094 | 0.05715 | 0.01333 | 83.89 | 1297211.4975 | -| CHRUSDT | 0.002476 | 0.002892 | 0.1496 | 0.09167 | 75.05 | 0.01645 | 0.02186 | 0.1269 | 0.02278 | 951.71 | 1297211.49752 | -| AGIXUSDT | 0.002472 | 0.00233 | 0.1452 | 0.07622 | 26.0 | 0.009327 | 0.01353 | 0.08466 | 0.02707 | 245.4 | 1297211.49753 | -| REEFUSDT | 0.002457 | 0.003375 | 0.1497 | 0.06888 | 50.65 | 0.01422 | 0.02188 | 0.1476 | 0.01696 | 969.7 | 1297211.49754 | -| XVGUSDT | 0.002438 | 0.002042 | 0.1042 | 0.04928 | 39.97 | 0.01033 | 0.01368 | 0.07718 | 0.02359 | 106.5 | 1297211.49756 | -| TRBUSDT | 0.002423 | 0.001832 | 0.09968 | 0.04624 | 58.52 | 0.01998 | 0.01954 | 0.1063 | 0.03617 | 1141.71 | 1297211.49758 | -| MINAUSDT | 0.002412 | 0.001759 | 0.1436 | 0.08462 | 49.0 | 0.0103 | 0.01467 | 0.08114 | 0.01744 | 254.54 | 1297211.49759 | -| ACHUSDT | 0.002406 | 0.002304 | 0.1394 | 0.06873 | 28.77 | 0.01318 | 0.01403 | 0.08249 | 0.04232 | 239.39 | 1297211.49759 | -| SANDUSDT | 0.002406 | 0.002448 | 0.1471 | 0.09935 | 46.82 | 0.01356 | 0.02412 | 0.1468 | 0.01854 | 997.71 | 1297211.49759 | -| ALPHAUSDT | 0.002391 | 0.002453 | 0.1409 | 0.06242 | 51.65 | 0.01781 | 0.01979 | 0.1256 | 0.02371 | 1060.71 | 1297211.49761 | -| HOTUSDT | 0.002372 | 0.001897 | 0.1433 | 0.06426 | 38.92 | 0.01345 | 0.01657 | 0.1065 | 0.02452 | 933.71 | 1297211.49763 | -| AGLDUSDT | 0.002319 | 0.002025 | 0.07608 | 0.02612 | 32.05 | 0.008371 | 0.01141 | 0.07514 | 0.005061 | 82.89 | 1297211.49768 | -| ANKRUSDT | 0.00232 | 0.002992 | 0.1399 | 0.07387 | 50.75 | 0.01496 | 0.02023 | 0.1385 | 0.02239 | 996.71 | 1297211.49768 | -| OGNUSDT | 0.002305 | 0.002356 | 0.1149 | 0.06337 | 54.58 | 0.01386 | 0.02084 | 0.137 | 0.02126 | 931.71 | 1297211.49769 | -| KAVAUSDT | 0.002301 | 0.002135 | 0.1408 | 0.08042 | 47.58 | 0.01659 | 0.02196 | 0.138 | 0.0345 | 1178.7 | 1297211.4977 | -| YFIUSDT | 0.002291 | 0.002338 | 0.1474 | 0.07957 | 50.82 | 0.01169 | 0.01919 | 0.1381 | 0.01697 | 1144.71 | 1297211.49771 | -| ENJUSDT | 0.002275 | 0.002332 | 0.1202 | 0.04377 | 49.18 | 0.01335 | 0.01666 | 0.1164 | 0.02552 | 1115.71 | 1297211.49773 | -| AVAXUSDT | 0.002239 | 0.002137 | 0.1487 | 0.09535 | 88.93 | 0.01437 | 0.02245 | 0.1366 | 0.02155 | 1121.71 | 1297211.49776 | -| ONEUSDT | 0.002244 | 0.002155 | 0.1405 | 0.07679 | 47.9 | 0.0193 | 0.0252 | 0.1491 | 0.04253 | 945.71 | 1297211.49776 | -| COTIUSDT | 0.002217 | 0.002173 | 0.1358 | 0.07208 | 43.3 | 0.0152 | 0.01936 | 0.1339 | 0.02116 | 953.71 | 1297211.49778 | -| WLDUSDT | 0.002187 | 0.0018 | 0.1118 | 0.06188 | 26.27 | 0.01526 | 0.01958 | 0.1297 | 0.0203 | 87.5 | 1297211.49781 | -| MAGICUSDT | 0.002159 | 0.001976 | 0.1347 | 0.08196 | 78.67 | 0.01588 | 0.02557 | 0.1386 | 0.04585 | 267.87 | 1297211.49784 | -| 1000LUNCUSDT | 0.002151 | 0.002172 | 0.1444 | 0.07357 | 43.75 | 0.01148 | 0.01697 | 0.1169 | 0.02686 | 405.46 | 1297211.49785 | -| IDEXUSDT | 0.002139 | 0.001791 | 0.1307 | 0.0607 | 28.42 | 0.01012 | 0.009348 | 0.05135 | 0.018 | 169.5 | 1297211.49786 | -| SPELLUSDT | 0.002131 | 0.001834 | 0.1227 | 0.05589 | 62.2 | 0.01041 | 0.01324 | 0.09037 | 0.01658 | 408.5 | 1297211.49787 | -| NKNUSDT | 0.00213 | 0.003566 | 0.1269 | 0.0636 | 46.55 | 0.01522 | 0.02109 | 0.1482 | 0.03629 | 923.71 | 1297211.49787 | -| CFXUSDT | 0.002102 | 0.001686 | 0.1424 | 0.07506 | 24.48 | 0.01473 | 0.01895 | 0.1163 | 0.03526 | 241.39 | 1297211.4979 | -| MAVUSDT | 0.002083 | 0.001556 | 0.09108 | 0.0522 | 48.43 | 0.01713 | 0.02626 | 0.1426 | 0.06524 | 112.5 | 1297211.49792 | -| DGBUSDT | 0.002076 | 0.00194 | 0.1464 | 0.08302 | 49.6 | 0.01115 | 0.01493 | 0.09766 | 0.03253 | 911.85 | 1297211.49792 | -| DASHUSDT | 0.002071 | 0.001719 | 0.1336 | 0.06313 | 40.03 | 0.0176 | 0.02281 | 0.1455 | 0.04502 | 1353.66 | 1297211.49793 | -| TLMUSDT | 0.002058 | 0.001679 | 0.1211 | 0.03685 | 41.35 | 0.01065 | 0.01214 | 0.08833 | 0.03045 | 203.48 | 1297211.49794 | -| MANAUSDT | 0.002044 | 0.001567 | 0.1163 | 0.03601 | 46.37 | 0.01798 | 0.01903 | 0.1007 | 0.02731 | 948.71 | 1297211.49796 | -| 1INCHUSDT | 0.00204 | 0.001947 | 0.1237 | 0.06027 | 50.78 | 0.01147 | 0.01301 | 0.07972 | 0.03057 | 1028.58 | 1297211.49796 | -| RDNTUSDT | 0.001999 | 0.002059 | 0.1465 | 0.05737 | 37.0 | 0.01432 | 0.0145 | 0.08998 | 0.02303 | 197.5 | 1297211.498 | -| LUNA2USDT | 0.001993 | 0.001813 | 0.1226 | 0.05865 | 55.13 | 0.01073 | 0.01391 | 0.08237 | 0.009562 | 404.87 | 1297211.49801 | -| ATAUSDT | 0.001976 | 0.001693 | 0.1396 | 0.07544 | 46.42 | 0.01742 | 0.02205 | 0.1435 | 0.03895 | 779.85 | 1297211.49802 | -| ONTUSDT | 0.001975 | 0.002104 | 0.1477 | 0.08366 | 55.52 | 0.01824 | 0.0238 | 0.1452 | 0.06471 | 1346.66 | 1297211.49803 | -| BATUSDT | 0.00194 | 0.001902 | 0.1473 | 0.07248 | 51.0 | 0.01783 | 0.02124 | 0.1368 | 0.04398 | 1344.66 | 1297211.49806 | -| KSMUSDT | 0.001941 | 0.001864 | 0.1358 | 0.06772 | 37.8 | 0.01677 | 0.02038 | 0.1454 | 0.03961 | 1100.71 | 1297211.49806 | -| UNFIUSDT | 0.001926 | 0.001774 | 0.09715 | 0.0535 | 51.95 | 0.01428 | 0.02263 | 0.129 | 0.01451 | 972.71 | 1297211.49807 | -| FLMUSDT | 0.001919 | 0.002273 | 0.08329 | 0.03335 | 52.28 | 0.01557 | 0.02026 | 0.1419 | 0.03384 | 1115.71 | 1297211.49808 | -| SXPUSDT | 0.001925 | 0.001671 | 0.1476 | 0.08367 | 31.75 | 0.01689 | 0.02307 | 0.1435 | 0.04511 | 1185.62 | 1297211.49808 | -| SKLUSDT | 0.001919 | 0.002181 | 0.1094 | 0.05861 | 100.6 | 0.01778 | 0.02419 | 0.1404 | 0.01582 | 1045.68 | 1297211.49808 | -| ASTRUSDT | 0.001918 | 0.002162 | 0.1403 | 0.06856 | 25.37 | 0.01039 | 0.01311 | 0.08311 | 0.02981 | 247.89 | 1297211.49808 | -| BELUSDT | 0.001898 | 0.001841 | 0.1064 | 0.05778 | 66.45 | 0.01814 | 0.02306 | 0.1272 | 0.01648 | 1065.71 | 1297211.4981 | -| RVNUSDT | 0.001898 | 0.001257 | 0.1013 | 0.04434 | 48.38 | 0.01705 | 0.02067 | 0.1216 | 0.01741 | 968.71 | 1297211.4981 | -| ZRXUSDT | 0.001903 | 0.002369 | 0.1457 | 0.08435 | 46.45 | 0.01723 | 0.02254 | 0.1473 | 0.02763 | 1212.62 | 1297211.4981 | -| RSRUSDT | 0.001878 | 0.001793 | 0.1022 | 0.05027 | 77.38 | 0.01959 | 0.02437 | 0.149 | 0.01482 | 1095.7 | 1297211.49812 | -| MATICUSDT | 0.001871 | 0.001737 | 0.1469 | 0.09086 | 31.22 | 0.01571 | 0.02 | 0.1152 | 0.02985 | 1092.71 | 1297211.49813 | -| FETUSDT | 0.001862 | 0.001541 | 0.1489 | 0.09799 | 41.98 | 0.01718 | 0.02126 | 0.1082 | 0.02638 | 275.89 | 1297211.49814 | -| GTCUSDT | 0.001849 | 0.001691 | 0.1009 | 0.04917 | 46.75 | 0.01858 | 0.02392 | 0.1457 | 0.06261 | 860.85 | 1297211.49815 | -| THETAUSDT | 0.00184 | 0.001714 | 0.135 | 0.08369 | 55.07 | 0.01652 | 0.02474 | 0.1465 | 0.03331 | 1240.66 | 1297211.49816 | -| STORJUSDT | 0.001801 | 0.001584 | 0.09716 | 0.04109 | 48.33 | 0.01937 | 0.02306 | 0.1319 | 0.03547 | 1128.7 | 1297211.4982 | -| NEARUSDT | 0.001787 | 0.001776 | 0.0858 | 0.02042 | 47.33 | 0.01827 | 0.01884 | 0.121 | 0.01815 | 1099.66 | 1297211.49821 | -| SNXUSDT | 0.001782 | 0.001664 | 0.1048 | 0.06058 | 58.85 | 0.01815 | 0.02397 | 0.1422 | 0.01265 | 1161.7 | 1297211.49822 | -| UNIUSDT | 0.00177 | 0.001779 | 0.1264 | 0.08564 | 86.63 | 0.01605 | 0.02684 | 0.1487 | 0.04416 | 1126.71 | 1297211.49823 | -| HBARUSDT | 0.001761 | 0.002594 | 0.09823 | 0.06161 | 62.68 | 0.01255 | 0.01971 | 0.124 | 0.07758 | 946.71 | 1297211.49824 | -| JASMYUSDT | 0.001757 | 0.001616 | 0.08241 | 0.03498 | 56.0 | 0.01071 | 0.0123 | 0.06549 | 0.004945 | 547.85 | 1297211.49824 | -| IOSTUSDT | 0.001749 | 0.00177 | 0.1465 | 0.07076 | 52.28 | 0.01602 | 0.01944 | 0.1159 | 0.0424 | 1336.66 | 1297211.49825 | -| MTLUSDT | 0.001751 | 0.001665 | 0.1041 | 0.04369 | 42.23 | 0.01605 | 0.02139 | 0.1498 | 0.03405 | 932.71 | 1297211.49825 | -| ENSUSDT | 0.001716 | 0.001755 | 0.1123 | 0.03925 | 41.8 | 0.01433 | 0.01534 | 0.07823 | 0.02708 | 688.85 | 1297211.49828 | -| DARUSDT | 0.001715 | 0.001758 | 0.1449 | 0.08079 | 26.27 | 0.0111 | 0.02156 | 0.1473 | 0.04334 | 538.85 | 1297211.49828 | -| ZECUSDT | 0.001721 | 0.001957 | 0.1418 | 0.09949 | 89.53 | 0.01291 | 0.02353 | 0.1447 | 0.04859 | 1352.66 | 1297211.49828 | -| FXSUSDT | 0.001705 | 0.001544 | 0.1083 | 0.02321 | 35.02 | 0.01704 | 0.0163 | 0.08367 | 0.02561 | 272.87 | 1297211.49829 | -| DEFIUSDT | 0.001706 | 0.001634 | 0.126 | 0.06201 | 54.87 | 0.01621 | 0.01629 | 0.09359 | 0.03002 | 1147.71 | 1297211.49829 | -| SFPUSDT | 0.001683 | 0.001736 | 0.1479 | 0.0998 | 66.95 | 0.01569 | 0.02277 | 0.1196 | 0.04013 | 967.71 | 1297211.49832 | -| HFTUSDT | 0.001668 | 0.001507 | 0.1181 | 0.05173 | 32.87 | 0.01155 | 0.01167 | 0.07216 | 0.03732 | 196.5 | 1297211.49833 | -| API3USDT | 0.001662 | 0.00166 | 0.0999 | 0.06254 | 91.53 | 0.01314 | 0.02334 | 0.1289 | 0.03525 | 604.85 | 1297211.49834 | -| DUSKUSDT | 0.001645 | 0.001747 | 0.1056 | 0.05179 | 52.67 | 0.01242 | 0.01437 | 0.07805 | 0.006631 | 650.85 | 1297211.49835 | -| FILUSDT | 0.001632 | 0.001588 | 0.128 | 0.06063 | 58.33 | 0.01661 | 0.02331 | 0.1329 | 0.02155 | 1098.75 | 1297211.49837 | -| PEOPLEUSDT | 0.001615 | 0.001542 | 0.08826 | 0.03403 | 42.68 | 0.01668 | 0.02249 | 0.1363 | 0.03251 | 664.83 | 1297211.49839 | -| IOTAUSDT | 0.001602 | 0.002295 | 0.1484 | 0.09295 | 52.4 | 0.01075 | 0.02061 | 0.1475 | 0.02493 | 1345.66 | 1297211.4984 | -| ARUSDT | 0.001584 | 0.001562 | 0.09854 | 0.05453 | 70.55 | 0.01474 | 0.02251 | 0.1473 | 0.01011 | 751.85 | 1297211.49842 | -| DOTUSDT | 0.001558 | 0.001819 | 0.1479 | 0.08685 | 29.07 | 0.01189 | 0.02083 | 0.1364 | 0.04152 | 1153.71 | 1297211.49844 | -| ICXUSDT | 0.001559 | 0.001626 | 0.1482 | 0.08272 | 50.65 | 0.01707 | 0.02356 | 0.1492 | 0.03922 | 1129.71 | 1297211.49844 | -| ARBUSDT | 0.001561 | 0.001466 | 0.1374 | 0.07109 | 59.08 | 0.01415 | 0.01989 | 0.1029 | 0.02017 | 210.37 | 1297211.49844 | -| LRCUSDT | 0.001549 | 0.001627 | 0.08307 | 0.03042 | 28.32 | 0.01445 | 0.01755 | 0.1208 | 0.05921 | 1095.7 | 1297211.49845 | -| CELOUSDT | 0.001542 | 0.001848 | 0.1016 | 0.03581 | 36.93 | 0.01303 | 0.01423 | 0.1039 | 0.02868 | 752.85 | 1297211.49846 | -| GRTUSDT | 0.001544 | 0.00261 | 0.0898 | 0.03544 | 26.6 | 0.01421 | 0.01746 | 0.134 | 0.02585 | 1034.71 | 1297211.49846 | -| FTMUSDT | 0.001506 | 0.001533 | 0.09296 | 0.04863 | 53.65 | 0.01803 | 0.02271 | 0.1267 | 0.03455 | 1120.71 | 1297211.49849 | -| JOEUSDT | 0.001502 | 0.001582 | 0.1358 | 0.09595 | 93.17 | 0.01695 | 0.02479 | 0.1339 | 0.02586 | 204.49 | 1297211.4985 | -| 1000PEPEUSDT | 0.001499 | 0.001695 | 0.0913 | 0.05975 | 35.77 | 0.009877 | 0.0132 | 0.0716 | 0.01333 | 167.31 | 1297211.4985 | -| C98USDT | 0.001463 | 0.00138 | 0.1087 | 0.05719 | 50.73 | 0.01854 | 0.02243 | 0.1272 | 0.06845 | 786.85 | 1297211.49854 | -| LINKUSDT | 0.001464 | 0.001506 | 0.1175 | 0.04517 | 33.68 | 0.0183 | 0.02011 | 0.1296 | 0.03813 | 1371.66 | 1297211.49854 | -| IMXUSDT | 0.001451 | 0.001304 | 0.1006 | 0.05635 | 41.63 | 0.01708 | 0.0236 | 0.1424 | 0.073 | 615.85 | 1297211.49855 | -| NEOUSDT | 0.001439 | 0.001542 | 0.1489 | 0.07533 | 43.17 | 0.01552 | 0.02115 | 0.1358 | 0.04742 | 1340.63 | 1297211.49856 | -| XRPUSDT | 0.00143 | 0.002012 | 0.1091 | 0.06358 | 30.67 | 0.008627 | 0.01796 | 0.1313 | 0.0276 | 1382.65 | 1297211.49857 | -| WOOUSDT | 0.001421 | 0.00152 | 0.1258 | 0.06556 | 71.0 | 0.01891 | 0.02237 | 0.1234 | 0.02316 | 559.85 | 1297211.49858 | -| CKBUSDT | 0.001416 | 0.002352 | 0.149 | 0.06833 | 55.25 | 0.01146 | 0.01592 | 0.1097 | 0.02014 | 233.5 | 1297211.49858 | -| QNTUSDT | 0.001409 | 0.001312 | 0.1317 | 0.06416 | 34.6 | 0.01227 | 0.01733 | 0.09722 | 0.04811 | 364.89 | 1297211.49859 | -| CELRUSDT | 0.001405 | 0.002412 | 0.07031 | 0.02706 | 60.05 | 0.01075 | 0.01231 | 0.07026 | 0.003627 | 934.71 | 1297211.49859 | -| ATOMUSDT | 0.001366 | 0.001953 | 0.1151 | 0.06562 | 47.8 | 0.01153 | 0.01892 | 0.1354 | 0.01758 | 1350.49 | 1297211.49863 | -| XTZUSDT | 0.001363 | 0.001543 | 0.1107 | 0.04935 | 67.02 | 0.01616 | 0.02092 | 0.1421 | 0.01978 | 1351.66 | 1297211.49864 | -| FLOWUSDT | 0.001341 | 0.001047 | 0.07925 | 0.02526 | 44.28 | 0.01456 | 0.01867 | 0.1315 | 0.04187 | 616.85 | 1297211.49866 | -| 1000XECUSDT | 0.00133 | 0.001409 | 0.1013 | 0.04386 | 37.72 | 0.01278 | 0.01663 | 0.1023 | 0.03536 | 762.85 | 1297211.49867 | -| EOSUSDT | 0.001308 | 0.001307 | 0.1453 | 0.06874 | 52.4 | 0.01397 | 0.02131 | 0.1347 | 0.04042 | 1380.66 | 1297211.49869 | -| GMXUSDT | 0.001293 | 0.001308 | 0.1407 | 0.06443 | 55.72 | 0.01562 | 0.02084 | 0.1304 | 0.03007 | 244.39 | 1297211.49871 | -| CTSIUSDT | 0.001283 | 0.001381 | 0.128 | 0.07327 | 30.08 | 0.01491 | 0.01823 | 0.1215 | 0.0815 | 723.85 | 1297211.49872 | -| TOMOUSDT | 0.001252 | 0.001192 | 0.05599 | 0.01621 | 62.83 | 0.01982 | 0.01814 | 0.09434 | 0.05984 | 1102.71 | 1297211.49875 | -| QTUMUSDT | 0.001235 | 0.001456 | 0.09663 | 0.04267 | 68.47 | 0.01781 | 0.02374 | 0.1451 | 0.01545 | 1337.66 | 1297211.49877 | -| KNCUSDT | 0.001224 | 0.001194 | 0.1006 | 0.05512 | 48.33 | 0.01839 | 0.02141 | 0.1172 | 0.0403 | 1214.63 | 1297211.49878 | -| XEMUSDT | 0.001192 | 0.00133 | 0.0854 | 0.03335 | 44.8 | 0.0115 | 0.01376 | 0.09495 | 0.02762 | 960.71 | 1297211.49881 | -| LTCUSDT | 0.001187 | 0.0014 | 0.113 | 0.05753 | 53.8 | 0.01279 | 0.01717 | 0.1206 | 0.03747 | 1379.66 | 1297211.49881 | -| TUSDT | 0.001169 | 0.00117 | 0.1266 | 0.07262 | 33.67 | 0.01267 | 0.01896 | 0.1145 | 0.04594 | 260.46 | 1297211.49883 | -| IDUSDT | 0.001159 | 0.0011 | 0.04897 | 0.01544 | 39.25 | 0.006071 | 0.008181 | 0.05377 | 0.002765 | 210.39 | 1297211.49884 | -| STXUSDT | 0.001161 | 0.001088 | 0.1132 | 0.06099 | 47.73 | 0.01756 | 0.0243 | 0.1366 | 0.02941 | 240.39 | 1297211.49884 | -| XMRUSDT | 0.001127 | 0.001354 | 0.133 | 0.09713 | 54.1 | 0.01257 | 0.02528 | 0.1415 | 0.04922 | 1354.66 | 1297211.49887 | -| BALUSDT | 0.001123 | 0.001296 | 0.1157 | 0.05752 | 48.57 | 0.0192 | 0.02284 | 0.1469 | 0.05876 | 1143.71 | 1297211.49888 | -| FOOTBALLUSDT | 0.001107 | 0.001069 | 0.1224 | 0.06674 | 35.82 | 0.006119 | 0.01282 | 0.09628 | 0.02049 | 413.87 | 1297211.49889 | -| VETUSDT | 0.001096 | 0.001369 | 0.08104 | 0.0364 | 78.7 | 0.01426 | 0.01926 | 0.1258 | 0.05705 | 1343.66 | 1297211.4989 | -| ALGOUSDT | 0.0011 | 0.002962 | 0.1222 | 0.04779 | 65.88 | 0.01748 | 0.02065 | 0.1462 | 0.04892 | 1220.62 | 1297211.4989 | -| BLZUSDT | 0.001079 | 0.001216 | 0.03563 | 0.008941 | 27.93 | 0.01442 | 0.01495 | 0.08456 | 0.05744 | 1127.7 | 1297211.49892 | -| BCHUSDT | 0.00107 | 0.001073 | 0.08513 | 0.04236 | 66.02 | 0.01563 | 0.01633 | 0.08696 | 0.03782 | 1388.0 | 1297211.49893 | -| LPTUSDT | 0.00106 | 0.00115 | 0.07094 | 0.02578 | 63.78 | 0.01648 | 0.01972 | 0.1328 | 0.05359 | 707.85 | 1297211.49894 | -| ZILUSDT | 0.001039 | 0.001414 | 0.08963 | 0.0533 | 50.45 | 0.01017 | 0.0168 | 0.1221 | 0.02521 | 1218.62 | 1297211.49896 | -| MKRUSDT | 0.001011 | 0.000864 | 0.08324 | 0.03781 | 53.78 | 0.01922 | 0.02095 | 0.1103 | 0.0524 | 1162.71 | 1297211.49899 | -| KLAYUSDT | 0.0009877 | 0.0009196 | 0.1193 | 0.05884 | 45.75 | 0.01211 | 0.01823 | 0.1182 | 0.03233 | 737.85 | 1297211.49901 | -| EGLDUSDT | 0.0009514 | 0.001123 | 0.1015 | 0.0667 | 40.48 | 0.01044 | 0.02073 | 0.1448 | 0.0295 | 1130.71 | 1297211.49905 | -| DOGEUSDT | 0.0009241 | 0.001108 | 0.07137 | 0.01978 | 77.23 | 0.01738 | 0.02492 | 0.1489 | 0.01735 | 1196.62 | 1297211.49908 | -| 1000SHIBUSDT | 0.0009073 | 0.001169 | 0.06121 | 0.03002 | 55.45 | 0.01184 | 0.01887 | 0.1215 | 0.0612 | 892.26 | 1297211.49909 | -| DENTUSDT | 0.0009027 | 0.0009382 | 0.07353 | 0.0289 | 39.6 | 0.01678 | 0.01853 | 0.1197 | 0.02414 | 939.83 | 1297211.4991 | -| AXSUSDT | 0.0008476 | 0.001042 | 0.06166 | 0.0215 | 33.82 | 0.01729 | 0.01802 | 0.1009 | 0.02163 | 1063.7 | 1297211.49915 | -| CVXUSDT | 0.000847 | 0.0008684 | 0.118 | 0.05551 | 48.42 | 0.01314 | 0.01345 | 0.07239 | 0.03149 | 392.49 | 1297211.49915 | -| BAKEUSDT | 0.0008535 | 0.0008078 | 0.03315 | 0.007685 | 28.48 | 0.01363 | 0.01702 | 0.1075 | 0.09239 | 883.71 | 1297211.49915 | -| BANDUSDT | 0.0008336 | 0.00103 | 0.06159 | 0.02321 | 46.87 | 0.01491 | 0.01895 | 0.1269 | 0.0246 | 1177.71 | 1297211.49917 | -| DYDXUSDT | 0.0008082 | 0.001075 | 0.07026 | 0.03393 | 44.47 | 0.01502 | 0.01799 | 0.1302 | 0.02879 | 769.85 | 1297211.49919 | -| ICPUSDT | 0.0008058 | 0.0008655 | 0.08603 | 0.04446 | 34.3 | 0.01229 | 0.01939 | 0.1499 | 0.08502 | 387.89 | 1297211.49919 | -| STGUSDT | 0.0007982 | 0.001071 | 0.111 | 0.07104 | 46.72 | 0.01045 | 0.01978 | 0.1293 | 0.04379 | 420.5 | 1297211.4992 | -| LINAUSDT | 0.0007892 | 0.0009942 | 0.04518 | 0.02285 | 59.67 | 0.0132 | 0.02253 | 0.1463 | 0.02411 | 944.71 | 1297211.49921 | -| XLMUSDT | 0.0007737 | 0.0009364 | 0.06828 | 0.02411 | 48.37 | 0.01642 | 0.01789 | 0.1134 | 0.06713 | 1368.66 | 1297211.49923 | -| ROSEUSDT | 0.000747 | 0.0006881 | 0.05511 | 0.02318 | 65.72 | 0.01602 | 0.01853 | 0.115 | 0.0922 | 657.85 | 1297211.49925 | -| ARPAUSDT | 0.0006995 | 0.001002 | 0.056 | 0.02525 | 33.5 | 0.01165 | 0.01681 | 0.1454 | 0.02521 | 730.85 | 1297211.4993 | -| SOLUSDT | 0.0006471 | 0.0008071 | 0.05964 | 0.01109 | 37.75 | 0.01825 | 0.01818 | 0.09245 | 0.04015 | 1130.71 | 1297211.49935 | -| PERPUSDT | 0.0006503 | 0.0006085 | 0.02721 | 0.00531 | 87.12 | 0.00766 | 0.008073 | 0.0393 | 0.003652 | 227.5 | 1297211.49935 | -| AAVEUSDT | 0.0006184 | 0.0009156 | 0.07619 | 0.04528 | 58.27 | 0.01361 | 0.02231 | 0.1484 | 0.04554 | 1098.71 | 1297211.49938 | -| BNBUSDT | 0.0006164 | 0.0007814 | 0.1081 | 0.06329 | 53.85 | 0.01108 | 0.01883 | 0.1371 | 0.04609 | 1347.66 | 1297211.49938 | -| LDOUSDT | 0.0006102 | 0.0009292 | 0.06797 | 0.03896 | 36.72 | 0.01068 | 0.01632 | 0.1155 | 0.0219 | 392.5 | 1297211.49939 | -| BLUEBIRDUSDT | 0.000612 | 0.0005487 | 0.06558 | 0.01956 | 36.03 | 0.005952 | 0.00575 | 0.0289 | 0.007634 | 351.5 | 1297211.49939 | -| WAVESUSDT | 0.0005997 | 0.0006885 | 0.05551 | 0.0237 | 51.25 | 0.01742 | 0.02355 | 0.1499 | 0.0899 | 1163.71 | 1297211.4994 | -| ETCUSDT | 0.0005784 | 0.0009734 | 0.05601 | 0.02301 | 36.03 | 0.01083 | 0.01299 | 0.1072 | 0.02668 | 1372.66 | 1297211.49942 | -| APEUSDT | 0.000577 | 0.0009994 | 0.05104 | 0.02236 | 28.03 | 0.01067 | 0.01183 | 0.09428 | 0.02365 | 581.37 | 1297211.49942 | -| INJUSDT | 0.0005733 | 0.00103 | 0.07064 | 0.03837 | 33.27 | 0.01177 | 0.01448 | 0.1125 | 0.02822 | 428.88 | 1297211.49943 | -| RNDRUSDT | 0.0005519 | 0.000657 | 0.04769 | 0.005149 | 48.13 | 0.01549 | 0.01474 | 0.06869 | 0.04012 | 258.89 | 1297211.49945 | -| IOTXUSDT | 0.0005546 | 0.000943 | 0.0475 | 0.01799 | 67.23 | 0.01605 | 0.01912 | 0.1191 | 0.03918 | 798.85 | 1297211.49945 | -| ADAUSDT | 0.0004753 | 0.001044 | 0.06521 | 0.03594 | 78.85 | 0.01351 | 0.01926 | 0.1324 | 0.09737 | 1357.66 | 1297211.49952 | -| ETHUSDT | 0.0004727 | 0.0006456 | 0.08265 | 0.04563 | 117.0 | 0.009983 | 0.01421 | 0.08376 | 0.05891 | 1388.0 | 1297211.49953 | -| BTCUSDT | 0.0002234 | 0.0002965 | 0.06058 | 0.03515 | 95.8 | 0.01122 | 0.01736 | 0.1047 | 0.04148 | 1388.0 | 1297211.49978 | -| BTSUSDT | 0.0001512 | 0.001248 | 0.1133 | 0.06359 | 27.22 | 0.01018 | 0.01869 | 0.1178 | 0.06486 | 990.71 | 1297211.49985 | -| COCOSUSDT | 0.0001548 | 0.001548 | 0.06507 | 0.04159 | 46.6 | 0.01902 | 0.02389 | 0.09638 | 0.0197 | 240.38 | 1297211.49985 | -| CVCUSDT | 0.0001097 | 0.0007396 | 0.03333 | 0.008972 | 50.8 | 0.01214 | 0.02087 | 0.1356 | 0.02088 | 1072.71 | 1297211.49989 | -| RAYUSDT | 0.0001132 | 0.00091 | 0.05773 | 0.01754 | 38.18 | 0.007349 | 0.01224 | 0.06338 | 0.02491 | 790.85 | 1297211.49989 | -| HNTUSDT | 9.714e-05 | 0.0004351 | 0.02287 | 0.009738 | 58.07 | 0.0161 | 0.01766 | 0.08683 | 0.01991 | 1116.71 | 1297211.4999 | -| FTTUSDT | 9.641e-05 | 0.0009641 | 0.1312 | 0.09118 | 37.4 | 0.01424 | 0.0172 | 0.1104 | 0.06006 | 552.85 | 1297211.4999 | -| SCUSDT | 7.986e-05 | 0.0007986 | 0.04395 | 0.007195 | 46.32 | 0.01448 | 0.008997 | 0.06407 | 0.02199 | 920.71 | 1297211.49992 | -| BTCSTUSDT | 8.371e-06 | 8.371e-05 | 0.009331 | 0.0 | 24.7 | 0.00648 | 0.001111 | 0.01138 | 0.0 | 959.71 | 1297211.49999 | -| TRXUSDT | 0.000621 | 0.0008775 | 0.1508 | 0.08356 | 64.68 | 0.01431 | 0.01797 | 0.122 | 0.06604 | 1373.66 | 1297211.50718 | -| MASKUSDT | 0.0009652 | 0.001012 | 0.05774 | 0.01286 | 78.77 | 0.02365 | 0.02712 | 0.1434 | 0.02399 | 783.85 | 1297248.02552 | -| SRMUSDT | 9.428e-05 | 0.0006033 | 0.1245 | 0.003655 | 65.2 | 0.04601 | 0.03382 | 0.08796 | 0.02981 | 1139.91 | 1297853.70499 | -| OPUSDT | 0.0005091 | 0.0007053 | 0.05042 | 0.02943 | 55.78 | 0.01334 | 0.02489 | 0.1532 | 0.07425 | 505.41 | 1300444.23034 | -| ANTUSDT | 0.0003654 | 0.0006035 | 0.1096 | 0.0639 | 56.43 | 0.02086 | 0.02329 | 0.1399 | 0.1147 | 661.83 | 1444702.33402 | -| AUDIOUSDT | 0.0008895 | 0.0008147 | 0.1039 | 0.06382 | 48.85 | 0.02605 | 0.05869 | 0.3406 | 0.0999 | 791.85 | 1490712.87492 | -| GALAUSDT | 0.0001652 | 0.0013 | 0.4332 | 0.4136 | 50.72 | 0.1635 | 0.2098 | 0.6342 | 0.05259 | 761.85 | 1800814.50783 | -| APTUSDT | 3.943e-05 | 0.0003943 | 0.8114 | 0.8052 | 65.55 | 0.4864 | 0.2299 | 0.8096 | 0.07852 | 365.92 | 1981555.82782 | -| RUNEUSDT | 4.768e-05 | 0.0004768 | 0.9063 | 0.9073 | 60.65 | 0.4588 | 0.3198 | 0.9182 | 0.09982 | 1140.7 | 2098840.38969 | -| GMTUSDT | 1.15e-05 | 0.000115 | 0.9993 | 0.999 | 6.367 | 0.5002 | 0.2918 | 1.187 | 0.0 | 583.83 | 2365720.56173 | -| BTCDOMUSDT | 3.265e-06 | 0.0001712 | 0.04213 | 0.02355 | 65.28 | 0.005083 | 0.006002 | 0.03766 | 0.3085 | 850.85 | 3382379.8258 | -| USDCUSDT | -1.428e-05 | -3.023e-05 | 0.9893 | 0.9921 | 23.4 | 0.002386 | 0.001537 | 0.009334 | 1.0 | 221.29 | 10297309.1023 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000FLOKIUSDT.json deleted file mode 100644 index 1e5e2490a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000FLOKIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 681.2796170982723, - "delay_between_fills_minutes_entry": 836.3582349247018, - "delay_weight_close": 58.67953031686145, - "delay_weight_entry": 32.940231217529494, - "ema_dist_close": 0.002787588761103723, - "ema_dist_entry": 0.0026528113995466364, - "ema_span_0": 899.9613087174203, - "ema_span_1": 446.0961273722432, - "enabled": true, - "markup_range": 0.006134439771879277, - "min_markup": 0.004569991358982784, - "n_close_orders": 9, - "qty_pct_close": 0.04402809310293846, - "qty_pct_entry": 0.016707973217995116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.980025083750068}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.3847458857667, - "delay_between_fills_minutes_entry": 838.5393872061234, - "delay_weight_close": 88.58314009171943, - "delay_weight_entry": 34.909096468946856, - "ema_dist_close": -0.0015739922757253414, - "ema_dist_entry": 0.0007447866287026189, - "ema_span_0": 1328.1554955509337, - "ema_span_1": 495.56532674545684, - "enabled": true, - "markup_range": 0.00043257196724793336, - "min_markup": 0.006486053071877406, - "n_close_orders": 9, - "qty_pct_close": 0.01302058085821121, - "qty_pct_entry": 0.017741049955391983, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.922611965005485}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000LUNCUSDT.json deleted file mode 100644 index e0df2975b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000LUNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 934.5622413670984, - "delay_between_fills_minutes_entry": 39.572690499285066, - "delay_weight_close": 52.908231439142476, - "delay_weight_entry": 0.6932251456211235, - "ema_dist_close": 0.0025041454577122233, - "ema_dist_entry": 6.89649686684348e-05, - "ema_span_0": 1384.998897272804, - "ema_span_1": 1307.9600410633623, - "enabled": true, - "markup_range": 4.258456436992088e-05, - "min_markup": 0.003739942548195558, - "n_close_orders": 7, - "qty_pct_close": 0.01728334200174955, - "qty_pct_entry": 0.011184784497331334, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.496918334099302}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000PEPEUSDT.json deleted file mode 100644 index fa41386c9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000PEPEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1132.504506727316, - "delay_between_fills_minutes_entry": 271.2949888174522, - "delay_weight_close": 46.62959202464396, - "delay_weight_entry": 21.225264319072384, - "ema_dist_close": 0.0029502727657052244, - "ema_dist_entry": -0.0011764144447320743, - "ema_span_0": 1200.2056828957004, - "ema_span_1": 952.5980600630442, - "enabled": true, - "markup_range": 0.0007213701100334605, - "min_markup": 0.0021660492907288674, - "n_close_orders": 9, - "qty_pct_close": 0.012804451594978223, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.829187823095918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000SHIBUSDT.json deleted file mode 100644 index 621e9047d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000SHIBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 647.8222539313874, - "delay_between_fills_minutes_entry": 718.4498503578127, - "delay_weight_close": 74.8996951963156, - "delay_weight_entry": 27.86126728804292, - "ema_dist_close": 0.0028547711436244416, - "ema_dist_entry": 0.002971892879800595, - "ema_span_0": 647.8106028777783, - "ema_span_1": 1284.021151355735, - "enabled": true, - "markup_range": 7.551994800895838e-05, - "min_markup": 0.005894634008284491, - "n_close_orders": 8, - "qty_pct_close": 0.02789055159943267, - "qty_pct_entry": 0.023083524362018364, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.203394965078033}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 139.11685765116061, - "delay_weight_close": 29.021598942951584, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.0015739922757253414, - "ema_dist_entry": -0.003248483434972992, - "ema_span_0": 46.71886232334039, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.00043257196724793336, - "min_markup": 0.0046029988936655, - "n_close_orders": 3, - "qty_pct_close": 0.012216300466014737, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 1.1023947822663303}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000XECUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000XECUSDT.json deleted file mode 100644 index beaed6b2c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1000XECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1296.1419739084013, - "delay_between_fills_minutes_entry": 147.02021689326304, - "delay_weight_close": 5.97148502628611, - "delay_weight_entry": 3.650032916171652, - "ema_dist_close": 0.000970137623367213, - "ema_dist_entry": -0.0020118711305088465, - "ema_span_0": 914.6314864360197, - "ema_span_1": 988.0233545150836, - "enabled": true, - "markup_range": 0.0004247384515813301, - "min_markup": 0.006149104388253391, - "n_close_orders": 9, - "qty_pct_close": 0.019408268413854183, - "qty_pct_entry": 0.01459981809009704, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.128695941373563}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1INCHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1INCHUSDT.json deleted file mode 100644 index fd075a991..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/1INCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1255.7695283248577, - "delay_between_fills_minutes_entry": 1296.0126089200369, - "delay_weight_close": 55.82391802311442, - "delay_weight_entry": 58.54378807746673, - "ema_dist_close": -0.0031683814845681565, - "ema_dist_entry": -0.008266728487231714, - "ema_span_0": 1369.1522002969482, - "ema_span_1": 1242.3011202357745, - "enabled": true, - "markup_range": 0.000695502154123218, - "min_markup": 0.0032333360142341723, - "n_close_orders": 2, - "qty_pct_close": 0.04640615838436692, - "qty_pct_entry": 0.010347812658492163, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.589797190261674}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1410.1883668126077, - "delay_between_fills_minutes_entry": 715.2035803334743, - "delay_weight_close": 49.6662714461656, - "delay_weight_entry": 8.871380681433667, - "ema_dist_close": -0.002882270356222004, - "ema_dist_entry": -0.04349643255790327, - "ema_span_0": 1181.7009862367192, - "ema_span_1": 1118.7599119180738, - "enabled": true, - "markup_range": 0.03062568712726192, - "min_markup": 0.007198910650418894, - "n_close_orders": 4, - "qty_pct_close": 0.01005552873997189, - "qty_pct_entry": 0.010509015651677372, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.489761446197864}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AAVEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AAVEUSDT.json deleted file mode 100644 index 5358f5d4d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AAVEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.278457321503, - "delay_between_fills_minutes_entry": 834.0816443740619, - "delay_weight_close": 70.42268666961847, - "delay_weight_entry": 10.640623875533915, - "ema_dist_close": 0.002986756643100404, - "ema_dist_entry": -0.000583390349495386, - "ema_span_0": 5.070100507623538, - "ema_span_1": 580.684309125214, - "enabled": true, - "markup_range": 0.055227476791439696, - "min_markup": 0.009747582404212786, - "n_close_orders": 14, - "qty_pct_close": 0.015107454686523959, - "qty_pct_entry": 0.010000000677648875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.8912686853238405}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1390.2579752796764, - "delay_between_fills_minutes_entry": 669.8954279400186, - "delay_weight_close": 84.03300146614866, - "delay_weight_entry": 10.121719907764334, - "ema_dist_close": 0.0022563487350934085, - "ema_dist_entry": -0.002912675468766438, - "ema_span_0": 1369.8957114906796, - "ema_span_1": 1434.3800383113123, - "enabled": true, - "markup_range": 0.0028831060261065985, - "min_markup": 0.007500370955703341, - "n_close_orders": 9, - "qty_pct_close": 0.010002536340047495, - "qty_pct_entry": 0.011834287558867746, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.403108172035272}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ACHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ACHUSDT.json deleted file mode 100644 index 9b28900a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ACHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 521.7603243740695, - "delay_between_fills_minutes_entry": 769.9296774628966, - "delay_weight_close": 68.78342526989807, - "delay_weight_entry": 13.32034012519684, - "ema_dist_close": 0.0025548970693686814, - "ema_dist_entry": 0.002977299553394627, - "ema_span_0": 1175.7980040326704, - "ema_span_1": 1045.1400862539235, - "enabled": true, - "markup_range": 0.016658900774052764, - "min_markup": 0.009444828984161031, - "n_close_orders": 12, - "qty_pct_close": 0.010382319101156723, - "qty_pct_entry": 0.011369724708293267, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.783849169726006}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 651.4169496594105, - "delay_between_fills_minutes_entry": 114.03862314682469, - "delay_weight_close": 45.162420375719186, - "delay_weight_entry": 16.194811111382208, - "ema_dist_close": 0.001469410278343695, - "ema_dist_entry": -0.00030275227134301814, - "ema_span_0": 294.4448675643771, - "ema_span_1": 210.41861110021503, - "enabled": true, - "markup_range": 0.0016015869684358171, - "min_markup": 0.006724749754376175, - "n_close_orders": 2, - "qty_pct_close": 0.012707208624374853, - "qty_pct_entry": 0.010001809165311236, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.493889468278645}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ADAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ADAUSDT.json deleted file mode 100644 index fc4e5610d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ADAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.7212190235336, - "delay_between_fills_minutes_entry": 974.8829438497269, - "delay_weight_close": 47.715489135266665, - "delay_weight_entry": 10.105388059026021, - "ema_dist_close": 0.001719130091622788, - "ema_dist_entry": -0.0006874897820281204, - "ema_span_0": 705.4799842940254, - "ema_span_1": 1350.7655097962324, - "enabled": true, - "markup_range": 0.010312696095400302, - "min_markup": 0.0048947919298551155, - "n_close_orders": 9, - "qty_pct_close": 0.01077067282126931, - "qty_pct_entry": 0.011890154249054243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.371720712919617}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 621.865844900537, - "delay_between_fills_minutes_entry": 1094.5659287079359, - "delay_weight_close": 3.031952906997509, - "delay_weight_entry": 20.81747284451902, - "ema_dist_close": -0.005204564658045069, - "ema_dist_entry": -0.0001809325047902715, - "ema_span_0": 1424.1768708749748, - "ema_span_1": 908.2106628952099, - "enabled": true, - "markup_range": 0.009233634366138622, - "min_markup": 0.009722461367103346, - "n_close_orders": 9, - "qty_pct_close": 0.03944771037022657, - "qty_pct_entry": 0.010991552190301936, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.842007047435493}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AGIXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AGIXUSDT.json deleted file mode 100644 index 2ceda94b3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AGIXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1302.0553240831775, - "delay_between_fills_minutes_entry": 744.6283945538563, - "delay_weight_close": 48.30093076266343, - "delay_weight_entry": 7.47004907461783, - "ema_dist_close": 0.0029993243778576356, - "ema_dist_entry": -0.004605501118424108, - "ema_span_0": 1365.5962189821926, - "ema_span_1": 25.313532385768017, - "enabled": true, - "markup_range": 0.05966659044113894, - "min_markup": 0.008213752392521015, - "n_close_orders": 6, - "qty_pct_close": 0.02407958560010621, - "qty_pct_entry": 0.010007319142267164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999999479131189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 661.5327842815884, - "delay_between_fills_minutes_entry": 1422.911446368116, - "delay_weight_close": 20.1036989519919, - "delay_weight_entry": 14.593169305490902, - "ema_dist_close": 0.0024139434527850434, - "ema_dist_entry": -0.017215502842211797, - "ema_span_0": 804.8379512088446, - "ema_span_1": 1378.155523961007, - "enabled": true, - "markup_range": 0.031155813413785798, - "min_markup": 0.008732526426521305, - "n_close_orders": 10, - "qty_pct_close": 0.013660104874959405, - "qty_pct_entry": 0.011053381188245741, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.361107441858329}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AGLDUSDT.json deleted file mode 100644 index 77ad7dd80..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALGOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALGOUSDT.json deleted file mode 100644 index da961d39e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALGOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.3428536393867, - "delay_between_fills_minutes_entry": 1185.9050347143673, - "delay_weight_close": 59.42795144932482, - "delay_weight_entry": 24.39288071676801, - "ema_dist_close": -0.001048290112673706, - "ema_dist_entry": -0.01216106391847627, - "ema_span_0": 437.5069705321616, - "ema_span_1": 813.7990832725427, - "enabled": true, - "markup_range": 0.011828867885331596, - "min_markup": 0.007890470482281736, - "n_close_orders": 5, - "qty_pct_close": 0.013491342742327966, - "qty_pct_entry": 0.017240666612956455, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.181828521736271}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALICEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALICEUSDT.json deleted file mode 100644 index 183f46a92..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALICEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 941.2275073556168, - "delay_between_fills_minutes_entry": 639.1795489134216, - "delay_weight_close": 48.7332636725728, - "delay_weight_entry": 8.13699279459239, - "ema_dist_close": 0.0027170351367633576, - "ema_dist_entry": 0.002500260892556313, - "ema_span_0": 1365.8463728200568, - "ema_span_1": 746.1906803885232, - "enabled": true, - "markup_range": 0.010987611588739817, - "min_markup": 0.004913611097007987, - "n_close_orders": 8, - "qty_pct_close": 0.010419475109354493, - "qty_pct_entry": 0.01811153691609926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999361012336713}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1169.6641128771712, - "delay_between_fills_minutes_entry": 506.1225240195993, - "delay_weight_close": 43.12109960905372, - "delay_weight_entry": 10.565317496270032, - "ema_dist_close": 0.001258051366150663, - "ema_dist_entry": -0.01975743303621753, - "ema_span_0": 1025.1686104987782, - "ema_span_1": 738.3576934163665, - "enabled": true, - "markup_range": 0.0072393557089415065, - "min_markup": 0.00811907873362953, - "n_close_orders": 11, - "qty_pct_close": 0.011588550848380357, - "qty_pct_entry": 0.011555195265078562, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.40521847704868}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALPHAUSDT.json deleted file mode 100644 index 2770b2db4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ALPHAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 822.1340957169649, - "delay_between_fills_minutes_entry": 995.0389205950953, - "delay_weight_close": 44.921573032374894, - "delay_weight_entry": 14.194116780656488, - "ema_dist_close": 0.0015917435169842814, - "ema_dist_entry": 0.0029644734995271436, - "ema_span_0": 1367.147365707656, - "ema_span_1": 373.72215204496433, - "enabled": true, - "markup_range": 0.017704470894770428, - "min_markup": 0.004742020830978237, - "n_close_orders": 8, - "qty_pct_close": 0.012776584480313876, - "qty_pct_entry": 0.01198350096306373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.06005231586295}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 859.1785831161967, - "delay_between_fills_minutes_entry": 551.8643877335543, - "delay_weight_close": 49.296647105307414, - "delay_weight_entry": 4.8139793440571745, - "ema_dist_close": 0.0012375169495958305, - "ema_dist_entry": 0.0029660621044046774, - "ema_span_0": 458.6631604842703, - "ema_span_1": 805.3534786761369, - "enabled": true, - "markup_range": 0.0015081676117190742, - "min_markup": 0.0042186181730413455, - "n_close_orders": 8, - "qty_pct_close": 0.013872963119025264, - "qty_pct_entry": 0.026842631321507743, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.865276647735383}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AMBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AMBUSDT.json deleted file mode 100644 index a0ca6c899..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AMBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1392.8792537027443, - "delay_between_fills_minutes_entry": 872.4126544485439, - "delay_weight_close": 69.75491294053022, - "delay_weight_entry": 14.973670421469889, - "ema_dist_close": 1.4264432521890424e-05, - "ema_dist_entry": -0.043303820246895997, - "ema_span_0": 396.40626615349055, - "ema_span_1": 389.1072980748438, - "enabled": true, - "markup_range": 0.01887366608125784, - "min_markup": 0.005284386528563718, - "n_close_orders": 10, - "qty_pct_close": 0.019909263439227443, - "qty_pct_entry": 0.011936709883053167, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.560326581540767}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ANKRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ANKRUSDT.json deleted file mode 100644 index d3cfea4a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ANKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 603.3267811783331, - "delay_between_fills_minutes_entry": 1351.055922217821, - "delay_weight_close": 26.216183994269414, - "delay_weight_entry": 18.202315132512688, - "ema_dist_close": -0.0006581961016549106, - "ema_dist_entry": 0.0001344705370392922, - "ema_span_0": 702.8531656796472, - "ema_span_1": 1334.111825532691, - "enabled": true, - "markup_range": 0.05994402685182565, - "min_markup": 0.007996451339242192, - "n_close_orders": 12, - "qty_pct_close": 0.03856397835994202, - "qty_pct_entry": 0.010100429823748501, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.925140520256441}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1260.0265415031079, - "delay_between_fills_minutes_entry": 1137.651218740672, - "delay_weight_close": 64.65189031066255, - "delay_weight_entry": 25.3030756112232, - "ema_dist_close": -0.0013381742919232303, - "ema_dist_entry": -0.010080730309767, - "ema_span_0": 1335.370090456449, - "ema_span_1": 1120.1708687982666, - "enabled": true, - "markup_range": 0.008220670194196365, - "min_markup": 0.006711238766762056, - "n_close_orders": 9, - "qty_pct_close": 0.012216300466014737, - "qty_pct_entry": 0.01759800671224648, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.952006750363102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ANTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ANTUSDT.json deleted file mode 100644 index 363cacbfb..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ANTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.3899052982217, - "delay_between_fills_minutes_entry": 1392.3049132990773, - "delay_weight_close": 49.807760172513554, - "delay_weight_entry": 7.162508190579138, - "ema_dist_close": -0.004782524819944762, - "ema_dist_entry": -0.0028231485656754376, - "ema_span_0": 1305.2475254448404, - "ema_span_1": 390.5383382248257, - "enabled": true, - "markup_range": 0.03820330822561088, - "min_markup": 0.0066933545836667194, - "n_close_orders": 8, - "qty_pct_close": 0.01046416625246991, - "qty_pct_entry": 0.013816993276890857, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.26025673761001}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/APEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/APEUSDT.json deleted file mode 100644 index a1375567a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/APEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.5360124862, - "delay_between_fills_minutes_entry": 859.1227070243172, - "delay_weight_close": 29.556555395771973, - "delay_weight_entry": 13.25201710002017, - "ema_dist_close": 0.001733117204678289, - "ema_dist_entry": 0.002232389049173993, - "ema_span_0": 982.6152333352189, - "ema_span_1": 789.3269555523823, - "enabled": true, - "markup_range": 0.0010562689965902708, - "min_markup": 0.008030938912674498, - "n_close_orders": 15, - "qty_pct_close": 0.012665893826731929, - "qty_pct_entry": 0.0127344177482051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.890426202318031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.8817832880302, - "delay_between_fills_minutes_entry": 647.5493853721531, - "delay_weight_close": 53.70798966547013, - "delay_weight_entry": 6.974831854223101, - "ema_dist_close": -0.0035085468171338354, - "ema_dist_entry": -0.004428144109769674, - "ema_span_0": 612.423977376808, - "ema_span_1": 605.0330359148352, - "enabled": true, - "markup_range": 0.0045149413115564046, - "min_markup": 0.00975465531531431, - "n_close_orders": 9, - "qty_pct_close": 0.01143580772435395, - "qty_pct_entry": 0.01601059995335201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.121202682936747}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/API3USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/API3USDT.json deleted file mode 100644 index 0c54af173..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/API3USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/APTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/APTUSDT.json deleted file mode 100644 index f24b20196..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/APTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1018.1326928268926, - "delay_between_fills_minutes_entry": 1209.2441405456718, - "delay_weight_close": 76.22429188948485, - "delay_weight_entry": 26.30335818604116, - "ema_dist_close": -0.003752793838310099, - "ema_dist_entry": 0.0016972391242632869, - "ema_span_0": 1112.679175136077, - "ema_span_1": 1155.3596235352968, - "enabled": true, - "markup_range": 0.00906994510461339, - "min_markup": 0.003763177210427331, - "n_close_orders": 5, - "qty_pct_close": 0.010001201873711948, - "qty_pct_entry": 0.011612013565130612, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.894977345286492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.0606565467324, - "delay_between_fills_minutes_entry": 597.3404935133965, - "delay_weight_close": 51.30188886336951, - "delay_weight_entry": 7.3189798041352185, - "ema_dist_close": 0.0026241791967977824, - "ema_dist_entry": -0.0058327947396331955, - "ema_span_0": 383.1823643909721, - "ema_span_1": 1192.3384075923834, - "enabled": true, - "markup_range": 0.009192103699652262, - "min_markup": 0.006846861874381054, - "n_close_orders": 14, - "qty_pct_close": 0.01573391125062259, - "qty_pct_entry": 0.01069624576704663, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.332602107381742}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARBUSDT.json deleted file mode 100644 index cef176ea2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.2154638603602, - "delay_between_fills_minutes_entry": 1044.898378602072, - "delay_weight_close": 48.8970112262042, - "delay_weight_entry": 10.586532185086313, - "ema_dist_close": 0.0010565943229162475, - "ema_dist_entry": -0.002263974056758919, - "ema_span_0": 1423.923887979255, - "ema_span_1": 1295.1143740669238, - "enabled": true, - "markup_range": 0.04736225138902009, - "min_markup": 0.008831390198209763, - "n_close_orders": 12, - "qty_pct_close": 0.016102132015729593, - "qty_pct_entry": 0.010556074384481732, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.950606859597613}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1410.1883668126077, - "delay_between_fills_minutes_entry": 715.2035803334743, - "delay_weight_close": 49.6662714461656, - "delay_weight_entry": 8.871380681433667, - "ema_dist_close": -0.002882270356222004, - "ema_dist_entry": -0.04349643255790327, - "ema_span_0": 1181.7009862367192, - "ema_span_1": 1118.7599119180738, - "enabled": true, - "markup_range": 0.03062568712726192, - "min_markup": 0.007198910650418894, - "n_close_orders": 4, - "qty_pct_close": 0.01005552873997189, - "qty_pct_entry": 0.010509015651677372, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.489761446197864}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARKMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARKMUSDT.json deleted file mode 100644 index 418f89a12..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARKMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1061.8823999064584, - "delay_between_fills_minutes_entry": 1012.1825530990295, - "delay_weight_close": 35.409202373884135, - "delay_weight_entry": 32.95956402925812, - "ema_dist_close": -0.007254519009069184, - "ema_dist_entry": 0.0028304482415728097, - "ema_span_0": 91.16702196899816, - "ema_span_1": 91.93736565179938, - "enabled": true, - "markup_range": 0.0031895140493152776, - "min_markup": 0.0030837805934416707, - "n_close_orders": 4, - "qty_pct_close": 0.010458652758586526, - "qty_pct_entry": 0.012868236452401689, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.966008726830031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARPAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARPAUSDT.json deleted file mode 100644 index a6db8bad3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARPAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 820.7095359893672, - "delay_weight_close": 78.68968193948258, - "delay_weight_entry": 0, - "ema_dist_close": -0.0038648572551458734, - "ema_dist_entry": -0.04552424529181222, - "ema_span_0": 1216.7234950151756, - "ema_span_1": 797.7321684213772, - "enabled": true, - "markup_range": 0.04033942435116666, - "min_markup": 0.009652309506809365, - "n_close_orders": 10, - "qty_pct_close": 0.01000391130234922, - "qty_pct_entry": 0.013532372454122314, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.488706402202238}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARUSDT.json deleted file mode 100644 index 7d27e232a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1107.4710337669503, - "delay_between_fills_minutes_entry": 825.3839968138504, - "delay_weight_close": 67.9701611480623, - "delay_weight_entry": 12.49526594390872, - "ema_dist_close": -0.0021178858109151314, - "ema_dist_entry": 0.0022021111003530723, - "ema_span_0": 1235.0830428493039, - "ema_span_1": 1198.9408034555945, - "enabled": true, - "markup_range": 0.056226370825320615, - "min_markup": 0.0060538760772622996, - "n_close_orders": 2, - "qty_pct_close": 0.014385109210252368, - "qty_pct_entry": 0.010087930789726559, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.046985925428747}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.111167038018, - "delay_between_fills_minutes_entry": 829.899307490801, - "delay_weight_close": 60.4335502424105, - "delay_weight_entry": 13.743453934991578, - "ema_dist_close": -0.0009512631874595318, - "ema_dist_entry": 0.0012970239907388545, - "ema_span_0": 477.4363440470011, - "ema_span_1": 854.14796144117, - "enabled": true, - "markup_range": 0.0016657374568103396, - "min_markup": 0.006257117654757969, - "n_close_orders": 5, - "qty_pct_close": 0.023507393838320723, - "qty_pct_entry": 0.01005730292473667, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.97727105060391}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ASTRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ASTRUSDT.json deleted file mode 100644 index 1d1d6f1ad..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ASTRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 871.0076644722373, - "delay_between_fills_minutes_entry": 966.5104024105381, - "delay_weight_close": 23.622080365167058, - "delay_weight_entry": 27.12654429442176, - "ema_dist_close": -0.002309627899683788, - "ema_dist_entry": -0.00011334500836491201, - "ema_span_0": 640.8885394037771, - "ema_span_1": 1405.8237926382726, - "enabled": true, - "markup_range": 0.01826436231216122, - "min_markup": 0.006772079535549647, - "n_close_orders": 8, - "qty_pct_close": 0.03499318124348151, - "qty_pct_entry": 0.01216979353232123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.985962569174529}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ATAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ATAUSDT.json deleted file mode 100644 index 9db98faa6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ATAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1181.0970928386196, - "delay_between_fills_minutes_entry": 873.4401029243514, - "delay_weight_close": 8.026239512558506, - "delay_weight_entry": 14.993891417608344, - "ema_dist_close": 0.0014469794610280629, - "ema_dist_entry": -0.0005836366726527844, - "ema_span_0": 1166.7659877298502, - "ema_span_1": 939.9550887023798, - "enabled": true, - "markup_range": 0.0198254483271822, - "min_markup": 0.0014048041439875282, - "n_close_orders": 2, - "qty_pct_close": 0.010135430007086846, - "qty_pct_entry": 0.012335679890291168, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.835641590166915}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.8817832880302, - "delay_between_fills_minutes_entry": 647.5493853721531, - "delay_weight_close": 53.70798966547013, - "delay_weight_entry": 6.974831854223101, - "ema_dist_close": -0.0035085468171338354, - "ema_dist_entry": -0.004428144109769674, - "ema_span_0": 612.423977376808, - "ema_span_1": 605.0330359148352, - "enabled": true, - "markup_range": 0.0045149413115564046, - "min_markup": 0.00975465531531431, - "n_close_orders": 9, - "qty_pct_close": 0.01143580772435395, - "qty_pct_entry": 0.01601059995335201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.121202682936747}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ATOMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ATOMUSDT.json deleted file mode 100644 index da1f53731..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ATOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.2623288862642, - "delay_between_fills_minutes_entry": 617.690462230286, - "delay_weight_close": 70.74553540266763, - "delay_weight_entry": 9.253890833223641, - "ema_dist_close": -0.0038816958420885236, - "ema_dist_entry": 0.0021860210056283374, - "ema_span_0": 1341.0765641516768, - "ema_span_1": 141.32955211627913, - "enabled": true, - "markup_range": 0.034018727560806865, - "min_markup": 0.0028296329405596648, - "n_close_orders": 7, - "qty_pct_close": 0.010106153602057747, - "qty_pct_entry": 0.0101619072210512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.726418970518557}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1164.7087235339047, - "delay_between_fills_minutes_entry": 300.69374510732354, - "delay_weight_close": 52.06502301880436, - "delay_weight_entry": 36.01605058517654, - "ema_dist_close": 8.259372311939905e-05, - "ema_dist_entry": -0.01975630463739775, - "ema_span_0": 964.86749838601, - "ema_span_1": 1053.8271666805751, - "enabled": true, - "markup_range": 0.0017393770784750954, - "min_markup": 0.0024836763501848618, - "n_close_orders": 9, - "qty_pct_close": 0.010176864411502399, - "qty_pct_entry": 0.012911151054359927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.738487269062477}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AUDIOUSDT.json deleted file mode 100644 index c5e38ca5c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AUDIOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1413.5558565686624, - "delay_between_fills_minutes_entry": 784.9899665507813, - "delay_weight_close": 63.11789338578739, - "delay_weight_entry": 5.831921044029341, - "ema_dist_close": 0.0008992223320789086, - "ema_dist_entry": -0.0002838257924038979, - "ema_span_0": 1348.0735885470365, - "ema_span_1": 1071.0504500508011, - "enabled": true, - "markup_range": 0.00468923487929032, - "min_markup": 0.00869470771701888, - "n_close_orders": 8, - "qty_pct_close": 0.011935308303393993, - "qty_pct_entry": 0.016084273347267565, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.702971993720947}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AVAXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AVAXUSDT.json deleted file mode 100644 index 25c944887..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AVAXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1054.6073127975912, - "delay_between_fills_minutes_entry": 1215.7308152043706, - "delay_weight_close": 51.06249710724819, - "delay_weight_entry": 34.41451259487796, - "ema_dist_close": -0.001186647276972562, - "ema_dist_entry": 0.002999991477527065, - "ema_span_0": 1095.394921768691, - "ema_span_1": 1436.7065751729206, - "enabled": true, - "markup_range": 0.0006460695114931178, - "min_markup": 0.009989835927428371, - "n_close_orders": 10, - "qty_pct_close": 0.016079828211897115, - "qty_pct_entry": 0.01506423577399871, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.75596409161722}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1223.532901098575, - "delay_between_fills_minutes_entry": 285.42237426430717, - "delay_weight_close": 28.807735664900346, - "delay_weight_entry": 6.200429378307002, - "ema_dist_close": -0.006314539881649975, - "ema_dist_entry": -0.010238935923295693, - "ema_span_0": 662.2542146427257, - "ema_span_1": 931.3933801193048, - "enabled": true, - "markup_range": 0.000648857411140018, - "min_markup": 0.009913049521563813, - "n_close_orders": 2, - "qty_pct_close": 0.010008868903117096, - "qty_pct_entry": 0.014061797121068222, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.552237610907176}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AXSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AXSUSDT.json deleted file mode 100644 index ff60ad1b2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/AXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 768.2308483926287, - "delay_between_fills_minutes_entry": 741.9973437021383, - "delay_weight_close": 47.45113338329799, - "delay_weight_entry": 10.100994716492973, - "ema_dist_close": 0.0011497314913957294, - "ema_dist_entry": 0.0016779188996500465, - "ema_span_0": 1189.8940578899194, - "ema_span_1": 1090.950027319124, - "enabled": true, - "markup_range": 0.058664839823971894, - "min_markup": 0.007061994033748377, - "n_close_orders": 11, - "qty_pct_close": 0.01686962763340502, - "qty_pct_entry": 0.0102119587547341, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.982920621031488}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1213.8808604575988, - "delay_between_fills_minutes_entry": 319.8805659148345, - "delay_weight_close": 2.663350062481493, - "delay_weight_entry": 9.039510921080103, - "ema_dist_close": 0.0029441187892161966, - "ema_dist_entry": -0.006899703006473927, - "ema_span_0": 9.082344740316472, - "ema_span_1": 935.7226512380286, - "enabled": true, - "markup_range": 0.0009430202211385166, - "min_markup": 0.0029601774438838702, - "n_close_orders": 7, - "qty_pct_close": 0.010202109440378334, - "qty_pct_entry": 0.010000497266764313, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.645104986712898}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BAKEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BAKEUSDT.json deleted file mode 100644 index ece6d7bec..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BAKEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1354.5066938905186, - "delay_between_fills_minutes_entry": 725.9935142379863, - "delay_weight_close": 62.20825798174928, - "delay_weight_entry": 11.28958169774337, - "ema_dist_close": 0.001672846506497217, - "ema_dist_entry": -0.019059710926787935, - "ema_span_0": 316.12881552871283, - "ema_span_1": 1064.3061474359838, - "enabled": true, - "markup_range": 0.004106706527024396, - "min_markup": 0.008599328632882706, - "n_close_orders": 2, - "qty_pct_close": 0.010255910801467224, - "qty_pct_entry": 0.011593851635857556, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.317876107865237}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BALUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BALUSDT.json deleted file mode 100644 index c919c3f0f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1317.591592327777, - "delay_between_fills_minutes_entry": 1071.69858139155, - "delay_weight_close": 95.75145488217994, - "delay_weight_entry": 10.677772707461562, - "ema_dist_close": 0.0025113730533239424, - "ema_dist_entry": -0.0002561234607761504, - "ema_span_0": 32.89460426774302, - "ema_span_1": 1389.6914634374418, - "enabled": true, - "markup_range": 0.04209352442687081, - "min_markup": 0.0040307219160839545, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01068455374538823, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1354.5066938905186, - "delay_between_fills_minutes_entry": 725.9935142379863, - "delay_weight_close": 62.20825798174928, - "delay_weight_entry": 11.28958169774337, - "ema_dist_close": 0.001672846506497217, - "ema_dist_entry": -0.019059710926787935, - "ema_span_0": 316.12881552871283, - "ema_span_1": 1064.3061474359838, - "enabled": true, - "markup_range": 0.004106706527024396, - "min_markup": 0.008599328632882706, - "n_close_orders": 2, - "qty_pct_close": 0.010255910801467224, - "qty_pct_entry": 0.011593851635857556, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.317876107865237}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BANDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BANDUSDT.json deleted file mode 100644 index bb2fceb87..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.7159676756846, - "delay_between_fills_minutes_entry": 747.5801809507312, - "delay_weight_close": 78.86285659621852, - "delay_weight_entry": 8.330985649214435, - "ema_dist_close": 0.002980765210287476, - "ema_dist_entry": -0.001713985505406783, - "ema_span_0": 1250.9783247617538, - "ema_span_1": 1432.0787676605144, - "enabled": true, - "markup_range": 0.054883694446307564, - "min_markup": 0.009856167146947028, - "n_close_orders": 8, - "qty_pct_close": 0.014892572169187528, - "qty_pct_entry": 0.010341012413964543, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.455348336908134}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.4141447709878, - "delay_between_fills_minutes_entry": 441.1073717945042, - "delay_weight_close": 40.71042994495278, - "delay_weight_entry": 13.888293268391225, - "ema_dist_close": 0.0012506077015050012, - "ema_dist_entry": -0.0009251862958045151, - "ema_span_0": 916.5966734173559, - "ema_span_1": 902.4689005607486, - "enabled": true, - "markup_range": 0.0011008246200862883, - "min_markup": 0.007593015282927445, - "n_close_orders": 3, - "qty_pct_close": 0.012107510661348176, - "qty_pct_entry": 0.010382178027008672, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99891960197657}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BATUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BATUSDT.json deleted file mode 100644 index fba3b5d70..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BATUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1021.1436369787372, - "delay_between_fills_minutes_entry": 1417.267357749826, - "delay_weight_close": 25.005816260082653, - "delay_weight_entry": 12.399073464188993, - "ema_dist_close": 0.0008623687443322454, - "ema_dist_entry": 4.0400635821305375e-05, - "ema_span_0": 1260.77025080792, - "ema_span_1": 807.7611029522367, - "enabled": true, - "markup_range": 0.057489948732585, - "min_markup": 0.008228250494530367, - "n_close_orders": 14, - "qty_pct_close": 0.011707420370663057, - "qty_pct_entry": 0.010442373122738147, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82140843603225}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.7795167350398, - "delay_between_fills_minutes_entry": 563.5908993212031, - "delay_weight_close": 50.5017707710666, - "delay_weight_entry": 12.684678466859516, - "ema_dist_close": 0.0003608660301057808, - "ema_dist_entry": -0.017802733076996657, - "ema_span_0": 1146.0137489066165, - "ema_span_1": 1233.9629277227436, - "enabled": true, - "markup_range": 0.011136594392899343, - "min_markup": 0.00817054397228463, - "n_close_orders": 7, - "qty_pct_close": 0.012077708804262306, - "qty_pct_entry": 0.011568453111244053, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.88378165956302}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BCHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BCHUSDT.json deleted file mode 100644 index e0e1cef42..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.9675194232736, - "delay_between_fills_minutes_entry": 1007.1682620636734, - "delay_weight_close": 89.87252105323053, - "delay_weight_entry": 8.761528423864856, - "ema_dist_close": 0.0019744920924290137, - "ema_dist_entry": 0.001227027407331943, - "ema_span_0": 1236.3547451221145, - "ema_span_1": 910.3422794295219, - "enabled": true, - "markup_range": 0.008475686726893564, - "min_markup": 0.007695340096036006, - "n_close_orders": 3, - "qty_pct_close": 0.010665723673662307, - "qty_pct_entry": 0.014672410239745194, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.794050691780967}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1123.6046724453147, - "delay_between_fills_minutes_entry": 1007.8961745795849, - "delay_weight_close": 54.302544923341415, - "delay_weight_entry": 14.561869304632943, - "ema_dist_close": 0.0028543215010157835, - "ema_dist_entry": 0.0006475938775836436, - "ema_span_0": 1367.2468919982805, - "ema_span_1": 259.1595249455664, - "enabled": true, - "markup_range": 0.03585622421151245, - "min_markup": 0.009931016147315366, - "n_close_orders": 13, - "qty_pct_close": 0.012360992940652588, - "qty_pct_entry": 0.011136411681853352, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919313098773648}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BELUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BELUSDT.json deleted file mode 100644 index fd17d85c8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BELUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1377.261628148479, - "delay_between_fills_minutes_entry": 671.6120897557548, - "delay_weight_close": 82.05325271699174, - "delay_weight_entry": 9.938069452680832, - "ema_dist_close": 0.0017645982150461532, - "ema_dist_entry": 0.0017079786666064673, - "ema_span_0": 876.9941644851451, - "ema_span_1": 526.1293007589786, - "enabled": true, - "markup_range": 0.029062134347423576, - "min_markup": 0.008905111594007642, - "n_close_orders": 11, - "qty_pct_close": 0.01619556597229533, - "qty_pct_entry": 0.011006353040930351, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.261070313693871}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1003.1080962771331, - "delay_between_fills_minutes_entry": 547.7023597978994, - "delay_weight_close": 17.599323370517855, - "delay_weight_entry": 1.403718519909038, - "ema_dist_close": 0.0028045747234350677, - "ema_dist_entry": 0.0029941201216696, - "ema_span_0": 1065.7988883781788, - "ema_span_1": 1339.1222922400511, - "enabled": true, - "markup_range": 0.03688611249005888, - "min_markup": 0.00848260645802433, - "n_close_orders": 5, - "qty_pct_close": 0.020101355631071533, - "qty_pct_entry": 0.010096400305198604, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997541837353916}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLUEBIRDUSDT.json deleted file mode 100644 index 848f1e1e7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLUEBIRDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 774.1749994763805, - "delay_between_fills_minutes_entry": 417.10841008932033, - "delay_weight_close": 98.3006781681464, - "delay_weight_entry": 13.875164322812196, - "ema_dist_close": 0.0004161606343772757, - "ema_dist_entry": -0.012285586951885853, - "ema_span_0": 1257.1972969611616, - "ema_span_1": 185.4758736354263, - "enabled": true, - "markup_range": 0.032757699175851945, - "min_markup": 0.003851274926855553, - "n_close_orders": 11, - "qty_pct_close": 0.01829234698898702, - "qty_pct_entry": 0.010006129333077879, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997756395445421}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLURUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLURUSDT.json deleted file mode 100644 index 568915902..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLURUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 417.10032999409367, - "delay_between_fills_minutes_entry": 483.89554164990125, - "delay_weight_close": 30.386021284189134, - "delay_weight_entry": 11.45213513909002, - "ema_dist_close": 0.002359618163183817, - "ema_dist_entry": -0.005401969069027971, - "ema_span_0": 1358.040501374106, - "ema_span_1": 698.1122943720719, - "enabled": true, - "markup_range": 0.02438499264430349, - "min_markup": 0.002477898691579286, - "n_close_orders": 10, - "qty_pct_close": 0.014976947166622385, - "qty_pct_entry": 0.01956247676084041, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.119483512668944}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLZUSDT.json deleted file mode 100644 index 02db40f7b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BLZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1156.8712434096142, - "delay_between_fills_minutes_entry": 1251.305509414807, - "delay_weight_close": 80.41823962853118, - "delay_weight_entry": 13.045752163253102, - "ema_dist_close": 0.0029857509360842432, - "ema_dist_entry": 0.0008168281136099627, - "ema_span_0": 882.3122588041192, - "ema_span_1": 1144.301833145371, - "enabled": true, - "markup_range": 0.05996295781572166, - "min_markup": 0.004895311338925644, - "n_close_orders": 6, - "qty_pct_close": 0.01035848845458019, - "qty_pct_entry": 0.012495472494464841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.639006324400857}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1147.2175746240093, - "delay_between_fills_minutes_entry": 1344.4174639926466, - "delay_weight_close": 55.08480444793561, - "delay_weight_entry": 5.527524296320485, - "ema_dist_close": -0.005818784796419914, - "ema_dist_entry": 0.002984551312844512, - "ema_span_0": 1388.9714235200731, - "ema_span_1": 842.8980135040856, - "enabled": true, - "markup_range": 0.051935804057843316, - "min_markup": 0.007278101464767998, - "n_close_orders": 10, - "qty_pct_close": 0.010044210831340496, - "qty_pct_entry": 0.011622579759049822, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82638218593147}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BNBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BNBUSDT.json deleted file mode 100644 index a60fbc08f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BNBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 980.1552203722606, - "delay_between_fills_minutes_entry": 840.9399279767658, - "delay_weight_close": 41.174720235937926, - "delay_weight_entry": 13.793255269700973, - "ema_dist_close": 0.0015926904973345383, - "ema_dist_entry": -0.0007781318559360737, - "ema_span_0": 1149.7336545302992, - "ema_span_1": 1172.419783469573, - "enabled": true, - "markup_range": 0.05674841136789421, - "min_markup": 0.006871909315044843, - "n_close_orders": 9, - "qty_pct_close": 0.013417037239112603, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.883614098664665}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1340.8213463076263, - "delay_between_fills_minutes_entry": 242.259177860988, - "delay_weight_close": 63.44401419435697, - "delay_weight_entry": 28.887175181977064, - "ema_dist_close": 0.002999695780576214, - "ema_dist_entry": -0.0028569994010262706, - "ema_span_0": 12.171269633026471, - "ema_span_1": 851.7126011649405, - "enabled": true, - "markup_range": 0.0007185368730701129, - "min_markup": 0.003002884396642793, - "n_close_orders": 10, - "qty_pct_close": 0.011072065734249934, - "qty_pct_entry": 0.010326519043378054, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.049873309359348}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BNXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BNXUSDT.json deleted file mode 100644 index 1195fca5e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 941.2275073556168, - "delay_between_fills_minutes_entry": 639.1795489134216, - "delay_weight_close": 48.7332636725728, - "delay_weight_entry": 8.13699279459239, - "ema_dist_close": 0.0027170351367633576, - "ema_dist_entry": 0.002500260892556313, - "ema_span_0": 1365.8463728200568, - "ema_span_1": 746.1906803885232, - "enabled": true, - "markup_range": 0.010987611588739817, - "min_markup": 0.004913611097007987, - "n_close_orders": 8, - "qty_pct_close": 0.010419475109354493, - "qty_pct_entry": 0.01811153691609926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999361012336713}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCDOMUSDT.json deleted file mode 100644 index d7b3b3696..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCDOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1317.591592327777, - "delay_between_fills_minutes_entry": 1071.69858139155, - "delay_weight_close": 95.75145488217994, - "delay_weight_entry": 10.677772707461562, - "ema_dist_close": 0.0025113730533239424, - "ema_dist_entry": -0.0002561234607761504, - "ema_span_0": 32.89460426774302, - "ema_span_1": 1389.6914634374418, - "enabled": true, - "markup_range": 0.04209352442687081, - "min_markup": 0.0040307219160839545, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01068455374538823, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1151.2725786705696, - "delay_between_fills_minutes_entry": 1432.5918922967433, - "delay_weight_close": 11.022693608393448, - "delay_weight_entry": 14.839016724652891, - "ema_dist_close": 0.001372637460468898, - "ema_dist_entry": 0.0027645404826423885, - "ema_span_0": 1348.563732319282, - "ema_span_1": 541.1280889127311, - "enabled": true, - "markup_range": 0.022185663602024702, - "min_markup": 0.009584419776066605, - "n_close_orders": 14, - "qty_pct_close": 0.010066138265541362, - "qty_pct_entry": 0.010002330324521512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.967567048842325}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCSTUSDT.json deleted file mode 100644 index 16919528e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1111.8577317403558, - "delay_between_fills_minutes_entry": 446.5246509317262, - "delay_weight_close": 82.74031097917285, - "delay_weight_entry": 31.358100512063892, - "ema_dist_close": -0.00024230184912420064, - "ema_dist_entry": 0.0017844147362385619, - "ema_span_0": 1438.8545701011808, - "ema_span_1": 914.5555442257083, - "enabled": true, - "markup_range": 7.249282113820378e-05, - "min_markup": 0.009460799542397083, - "n_close_orders": 5, - "qty_pct_close": 0.019460174032906046, - "qty_pct_entry": 0.019069801890396143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.921549839813937}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCUSDT.json deleted file mode 100644 index ab94e165f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.5822534480844, - "delay_between_fills_minutes_entry": 890.857060741827, - "delay_weight_close": 89.68497956637307, - "delay_weight_entry": 4.621357780568565, - "ema_dist_close": 0.002998452889880113, - "ema_dist_entry": 0.002943592814291854, - "ema_span_0": 1397.0725108976064, - "ema_span_1": 595.4708721363418, - "enabled": true, - "markup_range": 0.05740478413565188, - "min_markup": 0.009425835613633455, - "n_close_orders": 10, - "qty_pct_close": 0.010716339616979438, - "qty_pct_entry": 0.010150235355761174, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983273240860251}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 575.6269065990026, - "delay_between_fills_minutes_entry": 1345.7644028099298, - "delay_weight_close": 99.29964991806611, - "delay_weight_entry": 21.81972555927393, - "ema_dist_close": 0.0001808929642584481, - "ema_dist_entry": 0.0029850853867354884, - "ema_span_0": 1326.0945412172505, - "ema_span_1": 80.6360450257509, - "enabled": true, - "markup_range": 0.013583941260804014, - "min_markup": 0.008150319782666322, - "n_close_orders": 15, - "qty_pct_close": 0.02179112645707215, - "qty_pct_entry": 0.010061797086595563, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.700636298552576}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTSUSDT.json deleted file mode 100644 index e8bd16b20..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/BTSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.2623288862642, - "delay_between_fills_minutes_entry": 617.690462230286, - "delay_weight_close": 70.74553540266763, - "delay_weight_entry": 9.253890833223641, - "ema_dist_close": -0.0038816958420885236, - "ema_dist_entry": 0.0021860210056283374, - "ema_span_0": 1341.0765641516768, - "ema_span_1": 141.32955211627913, - "enabled": true, - "markup_range": 0.034018727560806865, - "min_markup": 0.0028296329405596648, - "n_close_orders": 7, - "qty_pct_close": 0.010106153602057747, - "qty_pct_entry": 0.0101619072210512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.726418970518557}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.0242714648448, - "delay_between_fills_minutes_entry": 328.2305083427938, - "delay_weight_close": 38.92221993129098, - "delay_weight_entry": 12.24139049420294, - "ema_dist_close": -0.0008560612853727447, - "ema_dist_entry": -0.005497049380766986, - "ema_span_0": 384.44513774552, - "ema_span_1": 1256.9980699630817, - "enabled": true, - "markup_range": 0.0031737576042087778, - "min_markup": 0.003671761954620994, - "n_close_orders": 11, - "qty_pct_close": 0.011128236162992335, - "qty_pct_entry": 0.013734107201188051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99114774620646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/C98USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/C98USDT.json deleted file mode 100644 index 13b1a746a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/C98USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1411.1968411072783, - "delay_between_fills_minutes_entry": 1174.9580129356102, - "delay_weight_close": 27.615393391724123, - "delay_weight_entry": 6.803022024280431, - "ema_dist_close": -0.0014828244022903649, - "ema_dist_entry": -0.005648810861896309, - "ema_span_0": 626.126866947274, - "ema_span_1": 842.2993110771496, - "enabled": true, - "markup_range": 0.032319249004179845, - "min_markup": 0.009587715496984084, - "n_close_orders": 6, - "qty_pct_close": 0.010086907414758386, - "qty_pct_entry": 0.01078816215728284, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.87643160171025}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CELOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CELOUSDT.json deleted file mode 100644 index a58764614..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CELOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1377.261628148479, - "delay_between_fills_minutes_entry": 671.6120897557548, - "delay_weight_close": 82.05325271699174, - "delay_weight_entry": 9.938069452680832, - "ema_dist_close": 0.0017645982150461532, - "ema_dist_entry": 0.0017079786666064673, - "ema_span_0": 876.9941644851451, - "ema_span_1": 526.1293007589786, - "enabled": true, - "markup_range": 0.029062134347423576, - "min_markup": 0.008905111594007642, - "n_close_orders": 11, - "qty_pct_close": 0.01619556597229533, - "qty_pct_entry": 0.011006353040930351, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.261070313693871}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 871.0076644722373, - "delay_between_fills_minutes_entry": 966.5104024105381, - "delay_weight_close": 23.622080365167058, - "delay_weight_entry": 27.12654429442176, - "ema_dist_close": -0.002309627899683788, - "ema_dist_entry": -0.00011334500836491201, - "ema_span_0": 640.8885394037771, - "ema_span_1": 1405.8237926382726, - "enabled": true, - "markup_range": 0.01826436231216122, - "min_markup": 0.006772079535549647, - "n_close_orders": 8, - "qty_pct_close": 0.03499318124348151, - "qty_pct_entry": 0.01216979353232123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.985962569174529}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CELRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CELRUSDT.json deleted file mode 100644 index cc2f7b864..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CELRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CFXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CFXUSDT.json deleted file mode 100644 index fcd6cd018..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CFXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1180.0481078095363, - "delay_between_fills_minutes_entry": 1158.6523360850267, - "delay_weight_close": 7.604553658110747, - "delay_weight_entry": 8.622864021901783, - "ema_dist_close": -0.00150514095494208, - "ema_dist_entry": -0.001821113340755755, - "ema_span_0": 1339.331876102062, - "ema_span_1": 1263.7802735710468, - "enabled": true, - "markup_range": 0.028262924932764028, - "min_markup": 0.00646301080764169, - "n_close_orders": 4, - "qty_pct_close": 0.01133254977434379, - "qty_pct_entry": 0.014183682481879092, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.824586513799584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.7178502765457, - "delay_between_fills_minutes_entry": 574.3537408896536, - "delay_weight_close": 79.80491949338992, - "delay_weight_entry": 11.562035417347104, - "ema_dist_close": -8.152786006796259e-05, - "ema_dist_entry": -0.006999278647231068, - "ema_span_0": 1391.1389085569626, - "ema_span_1": 915.519171904557, - "enabled": true, - "markup_range": 0.0018840191727093577, - "min_markup": 0.004188852247657481, - "n_close_orders": 3, - "qty_pct_close": 0.018508670460081623, - "qty_pct_entry": 0.010483362142496691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.630049911945353}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CHRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CHRUSDT.json deleted file mode 100644 index 8f3c1344f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CHRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CHZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CHZUSDT.json deleted file mode 100644 index 5a57c07d5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CHZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 647.8222539313874, - "delay_between_fills_minutes_entry": 718.4498503578127, - "delay_weight_close": 74.8996951963156, - "delay_weight_entry": 27.86126728804292, - "ema_dist_close": 0.0028547711436244416, - "ema_dist_entry": 0.002971892879800595, - "ema_span_0": 647.8106028777783, - "ema_span_1": 1284.021151355735, - "enabled": true, - "markup_range": 7.551994800895838e-05, - "min_markup": 0.005894634008284491, - "n_close_orders": 8, - "qty_pct_close": 0.02789055159943267, - "qty_pct_entry": 0.023083524362018364, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.203394965078033}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CKBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CKBUSDT.json deleted file mode 100644 index 3c1073b21..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CKBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COCOSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COCOSUSDT.json deleted file mode 100644 index 8fbf5e656..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COCOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5402911357278, - "delay_between_fills_minutes_entry": 705.2311636892108, - "delay_weight_close": 65.49854174609756, - "delay_weight_entry": 17.611898553308663, - "ema_dist_close": 0.002429996018635014, - "ema_dist_entry": 0.0013589226004891521, - "ema_span_0": 1319.7192743024323, - "ema_span_1": 1414.9932931638582, - "enabled": true, - "markup_range": 0.0028033086702613404, - "min_markup": 0.004860796242085709, - "n_close_orders": 11, - "qty_pct_close": 0.010008122508872121, - "qty_pct_entry": 0.01001059088391252, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.256456045876257}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1335.2768819845921, - "delay_between_fills_minutes_entry": 428.6975600221851, - "delay_weight_close": 50.78557583382557, - "delay_weight_entry": 25.83468775753399, - "ema_dist_close": -0.005729792068735952, - "ema_dist_entry": -0.0060008799575101785, - "ema_span_0": 615.8987912234022, - "ema_span_1": 389.18468385438194, - "enabled": true, - "markup_range": 0.002004695884103621, - "min_markup": 0.005257696384174906, - "n_close_orders": 10, - "qty_pct_close": 0.010713783063561551, - "qty_pct_entry": 0.01028958370444903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.369243812144566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COMBOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COMBOUSDT.json deleted file mode 100644 index 10ba408af..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COMBOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.6666621187816, - "delay_between_fills_minutes_entry": 830.7356293585204, - "delay_weight_close": 59.65456372475734, - "delay_weight_entry": 12.996514457960043, - "ema_dist_close": 0.0024265084376465713, - "ema_dist_entry": -0.006172690559696017, - "ema_span_0": 993.1391453003579, - "ema_span_1": 1295.8572880261877, - "enabled": true, - "markup_range": 0.04427765976689768, - "min_markup": 0.00839296736251286, - "n_close_orders": 4, - "qty_pct_close": 0.014278085065318977, - "qty_pct_entry": 0.010079432021904882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.931109437156035}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COMPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COMPUSDT.json deleted file mode 100644 index 117ada916..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COMPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.6666621187816, - "delay_between_fills_minutes_entry": 830.7356293585204, - "delay_weight_close": 59.65456372475734, - "delay_weight_entry": 12.996514457960043, - "ema_dist_close": 0.0024265084376465713, - "ema_dist_entry": -0.006172690559696017, - "ema_span_0": 993.1391453003579, - "ema_span_1": 1295.8572880261877, - "enabled": true, - "markup_range": 0.04427765976689768, - "min_markup": 0.00839296736251286, - "n_close_orders": 4, - "qty_pct_close": 0.014278085065318977, - "qty_pct_entry": 0.010079432021904882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.931109437156035}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1376.4334380827709, - "delay_between_fills_minutes_entry": 462.21640330817615, - "delay_weight_close": 54.86638255316273, - "delay_weight_entry": 13.656492405203156, - "ema_dist_close": 0.0015517067437677457, - "ema_dist_entry": -0.004974150937097131, - "ema_span_0": 1022.5869576168661, - "ema_span_1": 367.08980155557924, - "enabled": true, - "markup_range": 0.032466125973707516, - "min_markup": 0.005976370130450931, - "n_close_orders": 8, - "qty_pct_close": 0.020160212896662512, - "qty_pct_entry": 0.010019110485541778, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 1.5144278044113433}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COTIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COTIUSDT.json deleted file mode 100644 index a0ead4bb0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/COTIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1203.4611181572768, - "delay_between_fills_minutes_entry": 1265.794247342226, - "delay_weight_close": 57.83783859617172, - "delay_weight_entry": 12.499722800741255, - "ema_dist_close": -0.0005024491267574696, - "ema_dist_entry": -0.027340186975463802, - "ema_span_0": 452.468690047275, - "ema_span_1": 1198.7397140746277, - "enabled": true, - "markup_range": 0.043056168258799585, - "min_markup": 0.009938065969980503, - "n_close_orders": 11, - "qty_pct_close": 0.010048868385421263, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.823099979339839}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1307.2449624621993, - "delay_between_fills_minutes_entry": 790.3950370792779, - "delay_weight_close": 22.345811397598496, - "delay_weight_entry": 14.99666336310483, - "ema_dist_close": -0.004540150724966096, - "ema_dist_entry": -0.007693291856595792, - "ema_span_0": 1139.1336177640706, - "ema_span_1": 675.2041597066742, - "enabled": true, - "markup_range": 0.009144216003937276, - "min_markup": 0.006806675684091585, - "n_close_orders": 5, - "qty_pct_close": 0.02266718250353984, - "qty_pct_entry": 0.016774245691894223, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.57948571130427}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CRVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CRVUSDT.json deleted file mode 100644 index 1516dbd25..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CRVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.5591713988508, - "delay_between_fills_minutes_entry": 1222.387567984932, - "delay_weight_close": 59.45358227933449, - "delay_weight_entry": 10.558181151699905, - "ema_dist_close": -0.0008640894989598183, - "ema_dist_entry": 0.0006870016090268654, - "ema_span_0": 913.497230257846, - "ema_span_1": 1436.215122325884, - "enabled": true, - "markup_range": 0.059578361950649174, - "min_markup": 0.009643362227367292, - "n_close_orders": 9, - "qty_pct_close": 0.01689913460888909, - "qty_pct_entry": 0.010080542810707492, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.995938157759916}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CTKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CTKUSDT.json deleted file mode 100644 index 915747def..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CTKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1266.6770429974376, - "delay_between_fills_minutes_entry": 752.4399864420632, - "delay_weight_close": 88.30794360867762, - "delay_weight_entry": 29.370592315262346, - "ema_dist_close": 0.0012602939584487683, - "ema_dist_entry": -0.0029290555464139122, - "ema_span_0": 380.15410611634405, - "ema_span_1": 1400.4504008491972, - "enabled": true, - "markup_range": 0.0004626893957857511, - "min_markup": 0.00490145366768504, - "n_close_orders": 12, - "qty_pct_close": 0.043984734198136144, - "qty_pct_entry": 0.018595681207980296, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.900895979162492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 913.5070119905605, - "delay_between_fills_minutes_entry": 572.0967952802034, - "delay_weight_close": 72.25048035614671, - "delay_weight_entry": 5.8452862726548656, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008821592964316104, - "ema_span_0": 1061.7117244066478, - "ema_span_1": 926.1535412288271, - "enabled": true, - "markup_range": 0.006653493176864328, - "min_markup": 0.0038257668668339804, - "n_close_orders": 5, - "qty_pct_close": 0.020795698612646792, - "qty_pct_entry": 0.02831515252280558, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.187414843952739}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CTSIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CTSIUSDT.json deleted file mode 100644 index b82056d0f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CTSIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9173644454004, - "delay_between_fills_minutes_entry": 1419.8246387852046, - "delay_weight_close": 48.012293572630455, - "delay_weight_entry": 15.183351382612488, - "ema_dist_close": 0.0015012186349785742, - "ema_dist_entry": 0.0014541136121861997, - "ema_span_0": 389.51920707173974, - "ema_span_1": 897.3213415855408, - "enabled": true, - "markup_range": 0.05333828949180657, - "min_markup": 0.007511389686758822, - "n_close_orders": 16, - "qty_pct_close": 0.01018937358950912, - "qty_pct_entry": 0.010050152566720193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.255688645124718}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1364.2587732218208, - "delay_between_fills_minutes_entry": 425.84037015267313, - "delay_weight_close": 6.3775015565461795, - "delay_weight_entry": 7.188384360444416, - "ema_dist_close": 0.0004912029105375679, - "ema_dist_entry": -0.0028814858912651446, - "ema_span_0": 1298.8192103417834, - "ema_span_1": 690.4848588072921, - "enabled": true, - "markup_range": 0.005609324244712735, - "min_markup": 0.006610630726702749, - "n_close_orders": 6, - "qty_pct_close": 0.011262475636718951, - "qty_pct_entry": 0.011465358373293532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.362093152965102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CVCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CVCUSDT.json deleted file mode 100644 index 2b2afd965..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CVCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 889.6570684770882, - "delay_between_fills_minutes_entry": 949.8684524371805, - "delay_weight_close": 60.196386471595105, - "delay_weight_entry": 10.156954362839604, - "ema_dist_close": 0.0022416940540073947, - "ema_dist_entry": -0.0009026687641129229, - "ema_span_0": 937.4700105028668, - "ema_span_1": 1439.1829358356267, - "enabled": true, - "markup_range": 0.05172736744359791, - "min_markup": 0.007357589766707474, - "n_close_orders": 15, - "qty_pct_close": 0.012516553533768805, - "qty_pct_entry": 0.010001931494448266, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.430935442991904}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CVXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CVXUSDT.json deleted file mode 100644 index 377eb152e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/CVXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1021.1436369787372, - "delay_between_fills_minutes_entry": 1417.267357749826, - "delay_weight_close": 25.005816260082653, - "delay_weight_entry": 12.399073464188993, - "ema_dist_close": 0.0008623687443322454, - "ema_dist_entry": 4.0400635821305375e-05, - "ema_span_0": 1260.77025080792, - "ema_span_1": 807.7611029522367, - "enabled": true, - "markup_range": 0.057489948732585, - "min_markup": 0.008228250494530367, - "n_close_orders": 14, - "qty_pct_close": 0.011707420370663057, - "qty_pct_entry": 0.010442373122738147, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82140843603225}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1169.6641128771712, - "delay_between_fills_minutes_entry": 506.1225240195993, - "delay_weight_close": 43.12109960905372, - "delay_weight_entry": 10.565317496270032, - "ema_dist_close": 0.001258051366150663, - "ema_dist_entry": -0.01975743303621753, - "ema_span_0": 1025.1686104987782, - "ema_span_1": 738.3576934163665, - "enabled": true, - "markup_range": 0.0072393557089415065, - "min_markup": 0.00811907873362953, - "n_close_orders": 11, - "qty_pct_close": 0.011588550848380357, - "qty_pct_entry": 0.011555195265078562, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.40521847704868}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DARUSDT.json deleted file mode 100644 index 6059f0ab7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5402911357278, - "delay_between_fills_minutes_entry": 705.2311636892108, - "delay_weight_close": 65.49854174609756, - "delay_weight_entry": 17.611898553308663, - "ema_dist_close": 0.002429996018635014, - "ema_dist_entry": 0.0013589226004891521, - "ema_span_0": 1319.7192743024323, - "ema_span_1": 1414.9932931638582, - "enabled": true, - "markup_range": 0.0028033086702613404, - "min_markup": 0.004860796242085709, - "n_close_orders": 11, - "qty_pct_close": 0.010008122508872121, - "qty_pct_entry": 0.01001059088391252, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.256456045876257}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1164.7087235339047, - "delay_between_fills_minutes_entry": 300.69374510732354, - "delay_weight_close": 52.06502301880436, - "delay_weight_entry": 36.01605058517654, - "ema_dist_close": 8.259372311939905e-05, - "ema_dist_entry": -0.01975630463739775, - "ema_span_0": 964.86749838601, - "ema_span_1": 1053.8271666805751, - "enabled": true, - "markup_range": 0.0017393770784750954, - "min_markup": 0.0024836763501848618, - "n_close_orders": 9, - "qty_pct_close": 0.010176864411502399, - "qty_pct_entry": 0.012911151054359927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.738487269062477}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DASHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DASHUSDT.json deleted file mode 100644 index 5a36fe51e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DASHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.2154638603602, - "delay_between_fills_minutes_entry": 1044.898378602072, - "delay_weight_close": 48.8970112262042, - "delay_weight_entry": 10.586532185086313, - "ema_dist_close": 0.0010565943229162475, - "ema_dist_entry": -0.002263974056758919, - "ema_span_0": 1423.923887979255, - "ema_span_1": 1295.1143740669238, - "enabled": true, - "markup_range": 0.04736225138902009, - "min_markup": 0.008831390198209763, - "n_close_orders": 12, - "qty_pct_close": 0.016102132015729593, - "qty_pct_entry": 0.010556074384481732, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.950606859597613}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.8817832880302, - "delay_between_fills_minutes_entry": 647.5493853721531, - "delay_weight_close": 53.70798966547013, - "delay_weight_entry": 6.974831854223101, - "ema_dist_close": -0.0035085468171338354, - "ema_dist_entry": -0.004428144109769674, - "ema_span_0": 612.423977376808, - "ema_span_1": 605.0330359148352, - "enabled": true, - "markup_range": 0.0045149413115564046, - "min_markup": 0.00975465531531431, - "n_close_orders": 9, - "qty_pct_close": 0.01143580772435395, - "qty_pct_entry": 0.01601059995335201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.121202682936747}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DEFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DEFIUSDT.json deleted file mode 100644 index 8fa0ca037..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DEFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1189.6674519445728, - "delay_between_fills_minutes_entry": 862.4110000370761, - "delay_weight_close": 23.090209961168704, - "delay_weight_entry": 12.066816715373017, - "ema_dist_close": 0.0026883412545098792, - "ema_dist_entry": -0.00022862768112942008, - "ema_span_0": 677.8538015735493, - "ema_span_1": 1439.2627717108842, - "enabled": true, - "markup_range": 0.05999840459861702, - "min_markup": 0.009029539604876008, - "n_close_orders": 10, - "qty_pct_close": 0.03871146699164828, - "qty_pct_entry": 0.010416304519439132, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999716324467864}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.253628686756, - "delay_between_fills_minutes_entry": 820.1779971790736, - "delay_weight_close": 77.50158656274952, - "delay_weight_entry": 15.998538436063031, - "ema_dist_close": -0.0027557296842778117, - "ema_dist_entry": -0.009534887152035624, - "ema_span_0": 1196.8382833667606, - "ema_span_1": 1191.543764973548, - "enabled": true, - "markup_range": 0.01792881799193969, - "min_markup": 0.003960448151934989, - "n_close_orders": 9, - "qty_pct_close": 0.013912845359340155, - "qty_pct_entry": 0.011470756448086351, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.320930354751255}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DENTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DENTUSDT.json deleted file mode 100644 index 17aa63c86..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DENTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1409.2523689784412, - "delay_between_fills_minutes_entry": 592.3926124970354, - "delay_weight_close": 71.12671335399787, - "delay_weight_entry": 12.160621998382826, - "ema_dist_close": 0.0006770893834596368, - "ema_dist_entry": -0.00684337984136156, - "ema_span_0": 850.3837607809575, - "ema_span_1": 322.4578598589943, - "enabled": true, - "markup_range": 0.008824137597215726, - "min_markup": 0.0060133145036067375, - "n_close_orders": 13, - "qty_pct_close": 0.010212491158651759, - "qty_pct_entry": 0.011678700485474801, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.505994062962653}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DGBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DGBUSDT.json deleted file mode 100644 index e8695cb0a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DGBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1345.4851141881727, - "delay_between_fills_minutes_entry": 315.0473994919766, - "delay_weight_close": 85.60285991396627, - "delay_weight_entry": 12.367303720940644, - "ema_dist_close": -0.0010377260560565, - "ema_dist_entry": -0.0003301296683804859, - "ema_span_0": 1409.5225953185495, - "ema_span_1": 285.3695267567089, - "enabled": true, - "markup_range": 0.04000082654119734, - "min_markup": 0.009168461112122278, - "n_close_orders": 9, - "qty_pct_close": 0.025643411052427862, - "qty_pct_entry": 0.011798853510332347, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.794884245929113}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1111.8577317403558, - "delay_between_fills_minutes_entry": 446.5246509317262, - "delay_weight_close": 82.74031097917285, - "delay_weight_entry": 31.358100512063892, - "ema_dist_close": -0.00024230184912420064, - "ema_dist_entry": 0.0017844147362385619, - "ema_span_0": 1438.8545701011808, - "ema_span_1": 914.5555442257083, - "enabled": true, - "markup_range": 7.249282113820378e-05, - "min_markup": 0.009460799542397083, - "n_close_orders": 5, - "qty_pct_close": 0.019460174032906046, - "qty_pct_entry": 0.019069801890396143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.921549839813937}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DOGEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DOGEUSDT.json deleted file mode 100644 index b8f9aa773..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DOGEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1246.453675439523, - "delay_between_fills_minutes_entry": 1043.4026414875514, - "delay_weight_close": 59.00638071467824, - "delay_weight_entry": 12.783527392042384, - "ema_dist_close": -0.001174471722058444, - "ema_dist_entry": -0.0008280528023009111, - "ema_span_0": 905.0803044663683, - "ema_span_1": 1274.1281529111866, - "enabled": true, - "markup_range": 0.02939339511460445, - "min_markup": 0.006431641992599841, - "n_close_orders": 10, - "qty_pct_close": 0.036761321855843444, - "qty_pct_entry": 0.02461482313117535, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99284196964666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 852.2074633272662, - "delay_between_fills_minutes_entry": 325.50145741631263, - "delay_weight_close": 18.631976944547564, - "delay_weight_entry": 29.830619775365292, - "ema_dist_close": 0.002201878864055427, - "ema_dist_entry": 0.0012225438770040859, - "ema_span_0": 606.6869848391283, - "ema_span_1": 5.116676371440883, - "enabled": true, - "markup_range": 0.002384385970263092, - "min_markup": 0.004733621569366062, - "n_close_orders": 9, - "qty_pct_close": 0.019266859547764515, - "qty_pct_entry": 0.011220249209691507, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.185953452138878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DOTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DOTUSDT.json deleted file mode 100644 index a046783d2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1201.3553115734176, - "delay_between_fills_minutes_entry": 155.40520705437388, - "delay_weight_close": 43.27170215217793, - "delay_weight_entry": 26.507696134409546, - "ema_dist_close": -0.0019492633737805062, - "ema_dist_entry": -0.00670905708080243, - "ema_span_0": 424.1388409434823, - "ema_span_1": 481.5134035268234, - "enabled": true, - "markup_range": 0.0005162061255941643, - "min_markup": 0.003109419278027527, - "n_close_orders": 3, - "qty_pct_close": 0.015444009985160424, - "qty_pct_entry": 0.013566597667700837, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.821599512174}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DUSKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DUSKUSDT.json deleted file mode 100644 index 1d594dd47..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DUSKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1061.8823999064584, - "delay_between_fills_minutes_entry": 1012.1825530990295, - "delay_weight_close": 35.409202373884135, - "delay_weight_entry": 32.95956402925812, - "ema_dist_close": -0.007254519009069184, - "ema_dist_entry": 0.0028304482415728097, - "ema_span_0": 91.16702196899816, - "ema_span_1": 91.93736565179938, - "enabled": true, - "markup_range": 0.0031895140493152776, - "min_markup": 0.0030837805934416707, - "n_close_orders": 4, - "qty_pct_close": 0.010458652758586526, - "qty_pct_entry": 0.012868236452401689, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.966008726830031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 117.61266519534016, - "delay_weight_close": 22.90997304169476, - "delay_weight_entry": 14.256381652203737, - "ema_dist_close": 1.042146393954212e-06, - "ema_dist_entry": -0.009186440298592299, - "ema_span_0": 534.2014868965927, - "ema_span_1": 947.5578932680734, - "enabled": true, - "markup_range": 0.0006327390122436608, - "min_markup": 0.004532160264044096, - "n_close_orders": 14, - "qty_pct_close": 0.01116374643841166, - "qty_pct_entry": 0.010002450092506773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983118834246604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DYDXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DYDXUSDT.json deleted file mode 100644 index 3a2c6251b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/DYDXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.5822534480844, - "delay_between_fills_minutes_entry": 890.857060741827, - "delay_weight_close": 89.68497956637307, - "delay_weight_entry": 4.621357780568565, - "ema_dist_close": 0.002998452889880113, - "ema_dist_entry": 0.002943592814291854, - "ema_span_0": 1397.0725108976064, - "ema_span_1": 595.4708721363418, - "enabled": true, - "markup_range": 0.05740478413565188, - "min_markup": 0.009425835613633455, - "n_close_orders": 10, - "qty_pct_close": 0.010716339616979438, - "qty_pct_entry": 0.010150235355761174, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983273240860251}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.0606565467324, - "delay_between_fills_minutes_entry": 597.3404935133965, - "delay_weight_close": 51.30188886336951, - "delay_weight_entry": 7.3189798041352185, - "ema_dist_close": 0.0026241791967977824, - "ema_dist_entry": -0.0058327947396331955, - "ema_span_0": 383.1823643909721, - "ema_span_1": 1192.3384075923834, - "enabled": true, - "markup_range": 0.009192103699652262, - "min_markup": 0.006846861874381054, - "n_close_orders": 14, - "qty_pct_close": 0.01573391125062259, - "qty_pct_entry": 0.01069624576704663, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.332602107381742}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EDUUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EDUUSDT.json deleted file mode 100644 index 21dbe5d42..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EDUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.7995308089592, - "delay_between_fills_minutes_entry": 1068.5930950999073, - "delay_weight_close": 76.73912133547697, - "delay_weight_entry": 9.480197763450395, - "ema_dist_close": -0.00041694208248724924, - "ema_dist_entry": -0.002304322571779274, - "ema_span_0": 1100.419610237486, - "ema_span_1": 544.0615071003361, - "enabled": true, - "markup_range": 0.0176791624976898, - "min_markup": 0.005460683083261101, - "n_close_orders": 5, - "qty_pct_close": 0.011975770785258287, - "qty_pct_entry": 0.020042093949155005, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.219164099825345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EGLDUSDT.json deleted file mode 100644 index 906edf2b4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1185.5604663424745, - "delay_between_fills_minutes_entry": 1245.3395974602226, - "delay_weight_close": 0.5348155593158134, - "delay_weight_entry": 20.999187531404058, - "ema_dist_close": 0.0029719388902514016, - "ema_dist_entry": -0.012923814128996793, - "ema_span_0": 1409.3932834375444, - "ema_span_1": 914.7067421277651, - "enabled": true, - "markup_range": 0.0012172565036916443, - "min_markup": 0.008796877028114004, - "n_close_orders": 15, - "qty_pct_close": 0.012731494579591999, - "qty_pct_entry": 0.0189926115075577, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.727955020694845}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ENJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ENJUSDT.json deleted file mode 100644 index f67e55855..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ENJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1401.0388472375867, - "delay_between_fills_minutes_entry": 1046.5429971057345, - "delay_weight_close": 46.123983741206544, - "delay_weight_entry": 10.748299168060415, - "ema_dist_close": -0.0042592740619516655, - "ema_dist_entry": -0.00691027510879591, - "ema_span_0": 835.7684013255501, - "ema_span_1": 999.78222208355, - "enabled": true, - "markup_range": 0.032161646455142, - "min_markup": 0.007879984221323478, - "n_close_orders": 14, - "qty_pct_close": 0.011448624166079665, - "qty_pct_entry": 0.01288872088361904, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.057021738291256}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1068.6598702446938, - "delay_between_fills_minutes_entry": 341.5359166522215, - "delay_weight_close": 44.413500441106656, - "delay_weight_entry": 14.657270309753374, - "ema_dist_close": 0.002991470374193444, - "ema_dist_entry": -0.010106402016082552, - "ema_span_0": 1033.097790868257, - "ema_span_1": 997.9260911008586, - "enabled": true, - "markup_range": 0.010375330005099746, - "min_markup": 0.005268552794362952, - "n_close_orders": 7, - "qty_pct_close": 0.04228009762642517, - "qty_pct_entry": 0.013315804562231673, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.65099975692485}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ENSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ENSUSDT.json deleted file mode 100644 index dd5c58356..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ENSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1185.5604663424745, - "delay_between_fills_minutes_entry": 1245.3395974602226, - "delay_weight_close": 0.5348155593158134, - "delay_weight_entry": 20.999187531404058, - "ema_dist_close": 0.0029719388902514016, - "ema_dist_entry": -0.012923814128996793, - "ema_span_0": 1409.3932834375444, - "ema_span_1": 914.7067421277651, - "enabled": true, - "markup_range": 0.0012172565036916443, - "min_markup": 0.008796877028114004, - "n_close_orders": 15, - "qty_pct_close": 0.012731494579591999, - "qty_pct_entry": 0.0189926115075577, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.727955020694845}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.864398928915, - "delay_between_fills_minutes_entry": 377.030366780971, - "delay_weight_close": 31.633775495098284, - "delay_weight_entry": 10.39800970648835, - "ema_dist_close": -0.0011984885226454648, - "ema_dist_entry": -0.0181731076771228, - "ema_span_0": 315.1392140663329, - "ema_span_1": 1407.4195279428977, - "enabled": true, - "markup_range": 0.012673770174367016, - "min_markup": 0.006191514860892238, - "n_close_orders": 3, - "qty_pct_close": 0.02655876793425885, - "qty_pct_entry": 0.01283788113376384, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EOSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EOSUSDT.json deleted file mode 100644 index 788f43285..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/EOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1192.1404553964874, - "delay_between_fills_minutes_entry": 791.1037635231085, - "delay_weight_close": 48.218381112190315, - "delay_weight_entry": 13.868387685640204, - "ema_dist_close": 0.0023170909153975025, - "ema_dist_entry": -0.0033549192251556077, - "ema_span_0": 1428.2000594584051, - "ema_span_1": 1017.5592176979353, - "enabled": true, - "markup_range": 0.04313039661653261, - "min_markup": 0.00792529313634666, - "n_close_orders": 13, - "qty_pct_close": 0.030788111818365802, - "qty_pct_entry": 0.013430945301825882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.56746817431372}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1138.3743014252896, - "delay_between_fills_minutes_entry": 485.35402752523305, - "delay_weight_close": 7.740128227727208, - "delay_weight_entry": 26.904846261974686, - "ema_dist_close": -0.004998795658128728, - "ema_dist_entry": -0.01392539097918844, - "ema_span_0": 862.9674998653496, - "ema_span_1": 703.2786612389693, - "enabled": true, - "markup_range": 0.004673626053725119, - "min_markup": 0.004479852845419759, - "n_close_orders": 3, - "qty_pct_close": 0.01183696807459079, - "qty_pct_entry": 0.011833936760066539, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.873012335945738}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ETCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ETCUSDT.json deleted file mode 100644 index 044a9d5b3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ETCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 889.6570684770882, - "delay_between_fills_minutes_entry": 949.8684524371805, - "delay_weight_close": 60.196386471595105, - "delay_weight_entry": 10.156954362839604, - "ema_dist_close": 0.0022416940540073947, - "ema_dist_entry": -0.0009026687641129229, - "ema_span_0": 937.4700105028668, - "ema_span_1": 1439.1829358356267, - "enabled": true, - "markup_range": 0.05172736744359791, - "min_markup": 0.007357589766707474, - "n_close_orders": 15, - "qty_pct_close": 0.012516553533768805, - "qty_pct_entry": 0.010001931494448266, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.430935442991904}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.0287420572067, - "delay_between_fills_minutes_entry": 1275.4491178494188, - "delay_weight_close": 39.69283231709805, - "delay_weight_entry": 34.02636765589773, - "ema_dist_close": -0.004713380264882618, - "ema_dist_entry": 0.0010410345460773714, - "ema_span_0": 156.0481654714335, - "ema_span_1": 1346.0410160194367, - "enabled": true, - "markup_range": 6.070525549324779e-05, - "min_markup": 0.0025076589991530657, - "n_close_orders": 5, - "qty_pct_close": 0.01474649720966588, - "qty_pct_entry": 0.02131997285753128, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.703998430961954}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ETHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ETHUSDT.json deleted file mode 100644 index 307c34923..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ETHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1181.0970928386196, - "delay_between_fills_minutes_entry": 873.4401029243514, - "delay_weight_close": 8.026239512558506, - "delay_weight_entry": 14.993891417608344, - "ema_dist_close": 0.0014469794610280629, - "ema_dist_entry": -0.0005836366726527844, - "ema_span_0": 1166.7659877298502, - "ema_span_1": 939.9550887023798, - "enabled": true, - "markup_range": 0.0198254483271822, - "min_markup": 0.0014048041439875282, - "n_close_orders": 2, - "qty_pct_close": 0.010135430007086846, - "qty_pct_entry": 0.012335679890291168, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.835641590166915}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1132.504506727316, - "delay_between_fills_minutes_entry": 271.2949888174522, - "delay_weight_close": 46.62959202464396, - "delay_weight_entry": 21.225264319072384, - "ema_dist_close": 0.0029502727657052244, - "ema_dist_entry": -0.0011764144447320743, - "ema_span_0": 1200.2056828957004, - "ema_span_1": 952.5980600630442, - "enabled": true, - "markup_range": 0.0007213701100334605, - "min_markup": 0.0021660492907288674, - "n_close_orders": 9, - "qty_pct_close": 0.012804451594978223, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.829187823095918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FETUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FETUSDT.json deleted file mode 100644 index 2e0bdf908..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FILUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FILUSDT.json deleted file mode 100644 index e9d90ea40..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 521.7603243740695, - "delay_between_fills_minutes_entry": 769.9296774628966, - "delay_weight_close": 68.78342526989807, - "delay_weight_entry": 13.32034012519684, - "ema_dist_close": 0.0025548970693686814, - "ema_dist_entry": 0.002977299553394627, - "ema_span_0": 1175.7980040326704, - "ema_span_1": 1045.1400862539235, - "enabled": true, - "markup_range": 0.016658900774052764, - "min_markup": 0.009444828984161031, - "n_close_orders": 12, - "qty_pct_close": 0.010382319101156723, - "qty_pct_entry": 0.011369724708293267, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.783849169726006}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1346.5225720008018, - "delay_between_fills_minutes_entry": 219.7506646481463, - "delay_weight_close": 76.1355554790148, - "delay_weight_entry": 1.6878188313963847, - "ema_dist_close": 0.000859620219531208, - "ema_dist_entry": 0.002981671173784195, - "ema_span_0": 1070.3760677895707, - "ema_span_1": 872.9919495755898, - "enabled": true, - "markup_range": 0.0002007358162144108, - "min_markup": 0.0028605370042807787, - "n_close_orders": 13, - "qty_pct_close": 0.027710255804151415, - "qty_pct_entry": 0.017340267279843443, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.59652959812533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FLMUSDT.json deleted file mode 100644 index 9ffdab1d2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.1300275559712, - "delay_between_fills_minutes_entry": 1212.803527085094, - "delay_weight_close": 34.2600187729523, - "delay_weight_entry": 10.37922745763959, - "ema_dist_close": -0.009510778465579003, - "ema_dist_entry": 0.0015544752209250647, - "ema_span_0": 1369.194009433199, - "ema_span_1": 1344.924365633511, - "enabled": true, - "markup_range": 0.058935127007619666, - "min_markup": 0.009672368146548005, - "n_close_orders": 14, - "qty_pct_close": 0.010063953212069694, - "qty_pct_entry": 0.01096620969409276, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.792246221691608}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.0606565467324, - "delay_between_fills_minutes_entry": 597.3404935133965, - "delay_weight_close": 51.30188886336951, - "delay_weight_entry": 7.3189798041352185, - "ema_dist_close": 0.0026241791967977824, - "ema_dist_entry": -0.0058327947396331955, - "ema_span_0": 383.1823643909721, - "ema_span_1": 1192.3384075923834, - "enabled": true, - "markup_range": 0.009192103699652262, - "min_markup": 0.006846861874381054, - "n_close_orders": 14, - "qty_pct_close": 0.01573391125062259, - "qty_pct_entry": 0.01069624576704663, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.332602107381742}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FLOWUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FLOWUSDT.json deleted file mode 100644 index b57625d04..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FLOWUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 822.1340957169649, - "delay_between_fills_minutes_entry": 995.0389205950953, - "delay_weight_close": 44.921573032374894, - "delay_weight_entry": 14.194116780656488, - "ema_dist_close": 0.0015917435169842814, - "ema_dist_entry": 0.0029644734995271436, - "ema_span_0": 1367.147365707656, - "ema_span_1": 373.72215204496433, - "enabled": true, - "markup_range": 0.017704470894770428, - "min_markup": 0.004742020830978237, - "n_close_orders": 8, - "qty_pct_close": 0.012776584480313876, - "qty_pct_entry": 0.01198350096306373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.06005231586295}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1050.5295393999195, - "delay_between_fills_minutes_entry": 249.34438597251201, - "delay_weight_close": 69.4023349664883, - "delay_weight_entry": 6.536877092449303, - "ema_dist_close": 0.0006926333086275973, - "ema_dist_entry": -0.0018377152098485155, - "ema_span_0": 1395.0135640784026, - "ema_span_1": 1190.5073354970134, - "enabled": true, - "markup_range": 0.0029094069241854302, - "min_markup": 0.006163893303507779, - "n_close_orders": 7, - "qty_pct_close": 0.013889098416466386, - "qty_pct_entry": 0.01702205435649927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.683842582341931}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FOOTBALLUSDT.json deleted file mode 100644 index 4c852af5b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FOOTBALLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1164.7087235339047, - "delay_between_fills_minutes_entry": 300.69374510732354, - "delay_weight_close": 52.06502301880436, - "delay_weight_entry": 36.01605058517654, - "ema_dist_close": 8.259372311939905e-05, - "ema_dist_entry": -0.01975630463739775, - "ema_span_0": 964.86749838601, - "ema_span_1": 1053.8271666805751, - "enabled": true, - "markup_range": 0.0017393770784750954, - "min_markup": 0.0024836763501848618, - "n_close_orders": 9, - "qty_pct_close": 0.010176864411502399, - "qty_pct_entry": 0.012911151054359927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.738487269062477}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FTMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FTMUSDT.json deleted file mode 100644 index 26050fe6b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FTMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1093.3931226800835, - "delay_between_fills_minutes_entry": 665.5016883421802, - "delay_weight_close": 80.50557823810949, - "delay_weight_entry": 12.491775425200546, - "ema_dist_close": 0.00010154903299379399, - "ema_dist_entry": 0.00274606597357272, - "ema_span_0": 1414.3082202202006, - "ema_span_1": 793.9458016941576, - "enabled": true, - "markup_range": 0.03134863435740628, - "min_markup": 0.00976340479791794, - "n_close_orders": 6, - "qty_pct_close": 0.03802576895450344, - "qty_pct_entry": 0.010018757438066206, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.617625781838909}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FTTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FTTUSDT.json deleted file mode 100644 index e1f1cba66..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FTTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 941.2275073556168, - "delay_between_fills_minutes_entry": 639.1795489134216, - "delay_weight_close": 48.7332636725728, - "delay_weight_entry": 8.13699279459239, - "ema_dist_close": 0.0027170351367633576, - "ema_dist_entry": 0.002500260892556313, - "ema_span_0": 1365.8463728200568, - "ema_span_1": 746.1906803885232, - "enabled": true, - "markup_range": 0.010987611588739817, - "min_markup": 0.004913611097007987, - "n_close_orders": 8, - "qty_pct_close": 0.010419475109354493, - "qty_pct_entry": 0.01811153691609926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999361012336713}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FXSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FXSUSDT.json deleted file mode 100644 index 3a2ed0940..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/FXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1283.4882543935753, - "delay_between_fills_minutes_entry": 1282.4088245805738, - "delay_weight_close": 54.34792163679577, - "delay_weight_entry": 20.418515739638806, - "ema_dist_close": 0.0029242067519374454, - "ema_dist_entry": 0.0008165675084510879, - "ema_span_0": 994.3367379926599, - "ema_span_1": 728.3527546430134, - "enabled": true, - "markup_range": 0.005630467403920814, - "min_markup": 0.009990225854072622, - "n_close_orders": 6, - "qty_pct_close": 0.01024891611858392, - "qty_pct_entry": 0.010013352583831101, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18888554382496}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 417.10032999409367, - "delay_between_fills_minutes_entry": 483.89554164990125, - "delay_weight_close": 30.386021284189134, - "delay_weight_entry": 11.45213513909002, - "ema_dist_close": 0.002359618163183817, - "ema_dist_entry": -0.005401969069027971, - "ema_span_0": 1358.040501374106, - "ema_span_1": 698.1122943720719, - "enabled": true, - "markup_range": 0.02438499264430349, - "min_markup": 0.002477898691579286, - "n_close_orders": 10, - "qty_pct_close": 0.014976947166622385, - "qty_pct_entry": 0.01956247676084041, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.119483512668944}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GALAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GALAUSDT.json deleted file mode 100644 index b2358b81f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GALAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GALUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GALUSDT.json deleted file mode 100644 index ba91f4745..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 774.1749994763805, - "delay_between_fills_minutes_entry": 417.10841008932033, - "delay_weight_close": 98.3006781681464, - "delay_weight_entry": 13.875164322812196, - "ema_dist_close": 0.0004161606343772757, - "ema_dist_entry": -0.012285586951885853, - "ema_span_0": 1257.1972969611616, - "ema_span_1": 185.4758736354263, - "enabled": true, - "markup_range": 0.032757699175851945, - "min_markup": 0.003851274926855553, - "n_close_orders": 11, - "qty_pct_close": 0.01829234698898702, - "qty_pct_entry": 0.010006129333077879, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997756395445421}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.3841045307663, - "delay_between_fills_minutes_entry": 139.11685765116061, - "delay_weight_close": 32.57298427264517, - "delay_weight_entry": 10.863799906543202, - "ema_dist_close": 0.0001790996759514929, - "ema_dist_entry": -0.01556809129267982, - "ema_span_0": 1172.7020073545473, - "ema_span_1": 1311.1838295528844, - "enabled": true, - "markup_range": 0.0018156850489901677, - "min_markup": 0.005292289979349248, - "n_close_orders": 8, - "qty_pct_close": 0.011440690681059679, - "qty_pct_entry": 0.012989161682118546, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.118642784734591}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GMTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GMTUSDT.json deleted file mode 100644 index 35fc7d44b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GMTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.8339657258755, - "delay_between_fills_minutes_entry": 891.4788712105387, - "delay_weight_close": 5.4809425813516315, - "delay_weight_entry": 11.58920722892928, - "ema_dist_close": 0.0019639993868800177, - "ema_dist_entry": -0.0007257395086024544, - "ema_span_0": 1187.4204451756896, - "ema_span_1": 763.4232758378089, - "enabled": true, - "markup_range": 0.054783689970365215, - "min_markup": 0.008829482630767964, - "n_close_orders": 4, - "qty_pct_close": 0.046453895676820026, - "qty_pct_entry": 0.010006508807464292, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.201441326354832}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GMXUSDT.json deleted file mode 100644 index d1a8cdee9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1192.1404553964874, - "delay_between_fills_minutes_entry": 791.1037635231085, - "delay_weight_close": 48.218381112190315, - "delay_weight_entry": 13.868387685640204, - "ema_dist_close": 0.0023170909153975025, - "ema_dist_entry": -0.0033549192251556077, - "ema_span_0": 1428.2000594584051, - "ema_span_1": 1017.5592176979353, - "enabled": true, - "markup_range": 0.04313039661653261, - "min_markup": 0.00792529313634666, - "n_close_orders": 13, - "qty_pct_close": 0.030788111818365802, - "qty_pct_entry": 0.013430945301825882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.56746817431372}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1123.6046724453147, - "delay_between_fills_minutes_entry": 1007.8961745795849, - "delay_weight_close": 54.302544923341415, - "delay_weight_entry": 14.561869304632943, - "ema_dist_close": 0.0028543215010157835, - "ema_dist_entry": 0.0006475938775836436, - "ema_span_0": 1367.2468919982805, - "ema_span_1": 259.1595249455664, - "enabled": true, - "markup_range": 0.03585622421151245, - "min_markup": 0.009931016147315366, - "n_close_orders": 13, - "qty_pct_close": 0.012360992940652588, - "qty_pct_entry": 0.011136411681853352, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919313098773648}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GRTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GRTUSDT.json deleted file mode 100644 index b03e64569..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GRTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 829.2056509446012, - "delay_between_fills_minutes_entry": 681.3646138042108, - "delay_weight_close": 51.187852714467795, - "delay_weight_entry": 26.67094334656582, - "ema_dist_close": -0.0018465384659754412, - "ema_dist_entry": -0.049910333726392524, - "ema_span_0": 1319.5819556533716, - "ema_span_1": 939.8866392694617, - "enabled": true, - "markup_range": 0.0015524732447086756, - "min_markup": 0.0052013372444876796, - "n_close_orders": 13, - "qty_pct_close": 0.03824287933308041, - "qty_pct_entry": 0.010000348257180033, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.823980118365053}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.7178502765457, - "delay_between_fills_minutes_entry": 574.3537408896536, - "delay_weight_close": 79.80491949338992, - "delay_weight_entry": 11.562035417347104, - "ema_dist_close": -8.152786006796259e-05, - "ema_dist_entry": -0.006999278647231068, - "ema_span_0": 1391.1389085569626, - "ema_span_1": 915.519171904557, - "enabled": true, - "markup_range": 0.0018840191727093577, - "min_markup": 0.004188852247657481, - "n_close_orders": 3, - "qty_pct_close": 0.018508670460081623, - "qty_pct_entry": 0.010483362142496691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.630049911945353}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GTCUSDT.json deleted file mode 100644 index f3af5af87..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/GTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.9675194232736, - "delay_between_fills_minutes_entry": 1007.1682620636734, - "delay_weight_close": 89.87252105323053, - "delay_weight_entry": 8.761528423864856, - "ema_dist_close": 0.0019744920924290137, - "ema_dist_entry": 0.001227027407331943, - "ema_span_0": 1236.3547451221145, - "ema_span_1": 910.3422794295219, - "enabled": true, - "markup_range": 0.008475686726893564, - "min_markup": 0.007695340096036006, - "n_close_orders": 3, - "qty_pct_close": 0.010665723673662307, - "qty_pct_entry": 0.014672410239745194, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.794050691780967}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1364.2587732218208, - "delay_between_fills_minutes_entry": 425.84037015267313, - "delay_weight_close": 6.3775015565461795, - "delay_weight_entry": 7.188384360444416, - "ema_dist_close": 0.0004912029105375679, - "ema_dist_entry": -0.0028814858912651446, - "ema_span_0": 1298.8192103417834, - "ema_span_1": 690.4848588072921, - "enabled": true, - "markup_range": 0.005609324244712735, - "min_markup": 0.006610630726702749, - "n_close_orders": 6, - "qty_pct_close": 0.011262475636718951, - "qty_pct_entry": 0.011465358373293532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.362093152965102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HBARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HBARUSDT.json deleted file mode 100644 index 9866afe93..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HBARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1332.7987126249104, - "delay_between_fills_minutes_entry": 624.9168506512478, - "delay_weight_close": 88.8538847686371, - "delay_weight_entry": 23.99292759292018, - "ema_dist_close": 0.0002927075317135663, - "ema_dist_entry": -0.003574502696154154, - "ema_span_0": 1019.0195072593476, - "ema_span_1": 665.9141008553138, - "enabled": true, - "markup_range": 0.05333111971959553, - "min_markup": 0.00735610034529312, - "n_close_orders": 7, - "qty_pct_close": 0.022098395982313356, - "qty_pct_entry": 0.010016520510945722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.765112397875368}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1131.2034191980229, - "delay_between_fills_minutes_entry": 603.9919367267665, - "delay_weight_close": 59.30276271909621, - "delay_weight_entry": 56.615227116540645, - "ema_dist_close": 0.0006752535836517838, - "ema_dist_entry": -0.002247204524569638, - "ema_span_0": 113.176331576974, - "ema_span_1": 82.3205831069274, - "enabled": true, - "markup_range": 6.556947657638679e-05, - "min_markup": 0.005432387048014245, - "n_close_orders": 7, - "qty_pct_close": 0.019624372080746008, - "qty_pct_entry": 0.010409397311243742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9141047108220475}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HFTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HFTUSDT.json deleted file mode 100644 index fb5fbedcc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HFTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 593.7839940862833, - "delay_between_fills_minutes_entry": 1349.6547115519363, - "delay_weight_close": 31.262585915509586, - "delay_weight_entry": 11.783630048138324, - "ema_dist_close": 0.0029586601407631413, - "ema_dist_entry": -0.0007703020436630937, - "ema_span_0": 1230.7466168345422, - "ema_span_1": 1380.275694355039, - "enabled": true, - "markup_range": 0.019753667261125103, - "min_markup": 0.004827276579657606, - "n_close_orders": 4, - "qty_pct_close": 0.010023263627875487, - "qty_pct_entry": 0.010680411439793808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.15153762541229}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HIGHUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HIGHUSDT.json deleted file mode 100644 index 02dd16f5c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HIGHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.278457321503, - "delay_between_fills_minutes_entry": 834.0816443740619, - "delay_weight_close": 70.42268666961847, - "delay_weight_entry": 10.640623875533915, - "ema_dist_close": 0.002986756643100404, - "ema_dist_entry": -0.000583390349495386, - "ema_span_0": 5.070100507623538, - "ema_span_1": 580.684309125214, - "enabled": true, - "markup_range": 0.055227476791439696, - "min_markup": 0.009747582404212786, - "n_close_orders": 14, - "qty_pct_close": 0.015107454686523959, - "qty_pct_entry": 0.010000000677648875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.8912686853238405}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HNTUSDT.json deleted file mode 100644 index 16a4392d6..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.1300275559712, - "delay_between_fills_minutes_entry": 1212.803527085094, - "delay_weight_close": 34.2600187729523, - "delay_weight_entry": 10.37922745763959, - "ema_dist_close": -0.009510778465579003, - "ema_dist_entry": 0.0015544752209250647, - "ema_span_0": 1369.194009433199, - "ema_span_1": 1344.924365633511, - "enabled": true, - "markup_range": 0.058935127007619666, - "min_markup": 0.009672368146548005, - "n_close_orders": 14, - "qty_pct_close": 0.010063953212069694, - "qty_pct_entry": 0.01096620969409276, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.792246221691608}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HOOKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HOOKUSDT.json deleted file mode 100644 index 66e4d8727..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HOOKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.278457321503, - "delay_between_fills_minutes_entry": 834.0816443740619, - "delay_weight_close": 70.42268666961847, - "delay_weight_entry": 10.640623875533915, - "ema_dist_close": 0.002986756643100404, - "ema_dist_entry": -0.000583390349495386, - "ema_span_0": 5.070100507623538, - "ema_span_1": 580.684309125214, - "enabled": true, - "markup_range": 0.055227476791439696, - "min_markup": 0.009747582404212786, - "n_close_orders": 14, - "qty_pct_close": 0.015107454686523959, - "qty_pct_entry": 0.010000000677648875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.8912686853238405}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HOTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HOTUSDT.json deleted file mode 100644 index 42bc4cae2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/HOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 681.2796170982723, - "delay_between_fills_minutes_entry": 836.3582349247018, - "delay_weight_close": 58.67953031686145, - "delay_weight_entry": 32.940231217529494, - "ema_dist_close": 0.002787588761103723, - "ema_dist_entry": 0.0026528113995466364, - "ema_span_0": 899.9613087174203, - "ema_span_1": 446.0961273722432, - "enabled": true, - "markup_range": 0.006134439771879277, - "min_markup": 0.004569991358982784, - "n_close_orders": 9, - "qty_pct_close": 0.04402809310293846, - "qty_pct_entry": 0.016707973217995116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.980025083750068}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.864398928915, - "delay_between_fills_minutes_entry": 377.030366780971, - "delay_weight_close": 31.633775495098284, - "delay_weight_entry": 10.39800970648835, - "ema_dist_close": -0.0011984885226454648, - "ema_dist_entry": -0.0181731076771228, - "ema_span_0": 315.1392140663329, - "ema_span_1": 1407.4195279428977, - "enabled": true, - "markup_range": 0.012673770174367016, - "min_markup": 0.006191514860892238, - "n_close_orders": 3, - "qty_pct_close": 0.02655876793425885, - "qty_pct_entry": 0.01283788113376384, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ICPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ICPUSDT.json deleted file mode 100644 index 61c02d7f3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ICPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.9064026488463, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 58.79959585708705, - "delay_weight_entry": 10.959076388436209, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.02772778938036382, - "ema_span_0": 1138.739721733395, - "ema_span_1": 5.0062918268054695, - "enabled": true, - "markup_range": 0.051451689323101686, - "min_markup": 0.008293567493695307, - "n_close_orders": 12, - "qty_pct_close": 0.017450501048647354, - "qty_pct_entry": 0.01101553339681686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.934438426010102}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1260.0265415031079, - "delay_between_fills_minutes_entry": 1137.651218740672, - "delay_weight_close": 64.65189031066255, - "delay_weight_entry": 25.3030756112232, - "ema_dist_close": -0.0013381742919232303, - "ema_dist_entry": -0.010080730309767, - "ema_span_0": 1335.370090456449, - "ema_span_1": 1120.1708687982666, - "enabled": true, - "markup_range": 0.008220670194196365, - "min_markup": 0.006711238766762056, - "n_close_orders": 9, - "qty_pct_close": 0.012216300466014737, - "qty_pct_entry": 0.01759800671224648, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.952006750363102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ICXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ICXUSDT.json deleted file mode 100644 index be7f1594a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ICXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.9284392347556, - "delay_between_fills_minutes_entry": 851.6691833284603, - "delay_weight_close": 45.35882563779744, - "delay_weight_entry": 26.883220255129054, - "ema_dist_close": 0.0006882160335942308, - "ema_dist_entry": 0.0018579347621751389, - "ema_span_0": 1187.368091952627, - "ema_span_1": 1265.4502225890506, - "enabled": true, - "markup_range": 0.0015247693691875356, - "min_markup": 0.006610726762835915, - "n_close_orders": 4, - "qty_pct_close": 0.01400566944581456, - "qty_pct_entry": 0.015544797728112843, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.55569866634186}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.8073930039345, - "delay_between_fills_minutes_entry": 183.3070460019667, - "delay_weight_close": 18.34911435798682, - "delay_weight_entry": 6.694348659919506, - "ema_dist_close": -0.0015196928075700466, - "ema_dist_entry": -0.0013779302410489745, - "ema_span_0": 917.6447116631633, - "ema_span_1": 1375.0551217604964, - "enabled": true, - "markup_range": 8.585396330318892e-06, - "min_markup": 0.007865167514619307, - "n_close_orders": 6, - "qty_pct_close": 0.011255231244372254, - "qty_pct_entry": 0.011434515642898923, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.850974984564138}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IDEXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IDEXUSDT.json deleted file mode 100644 index b8ff08be3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IDEXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IDUSDT.json deleted file mode 100644 index d284ad3c3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1077.1807282484492, - "delay_between_fills_minutes_entry": 1232.7128505088735, - "delay_weight_close": 73.02572088977536, - "delay_weight_entry": 14.453691276160244, - "ema_dist_close": 0.0026294226803143914, - "ema_dist_entry": 0.0029811359697856695, - "ema_span_0": 1150.1390184501067, - "ema_span_1": 1374.864691153405, - "enabled": true, - "markup_range": 0.0585552665236782, - "min_markup": 0.008875991138911835, - "n_close_orders": 14, - "qty_pct_close": 0.013612979997873373, - "qty_pct_entry": 0.011835520328508337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.515438059683117}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1022.8864815436656, - "delay_between_fills_minutes_entry": 490.5600353595079, - "delay_weight_close": 72.37618149523273, - "delay_weight_entry": 41.018339144892835, - "ema_dist_close": 0.001322610222533517, - "ema_dist_entry": 0.0019311796604976857, - "ema_span_0": 587.962722777956, - "ema_span_1": 660.7285425992538, - "enabled": true, - "markup_range": 0.0014137528485443944, - "min_markup": 0.004172374633890429, - "n_close_orders": 5, - "qty_pct_close": 0.020668900143290286, - "qty_pct_entry": 0.01153287491899116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.816195008286176}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IMXUSDT.json deleted file mode 100644 index 57e82c614..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1266.6770429974376, - "delay_between_fills_minutes_entry": 752.4399864420632, - "delay_weight_close": 88.30794360867762, - "delay_weight_entry": 29.370592315262346, - "ema_dist_close": 0.0012602939584487683, - "ema_dist_entry": -0.0029290555464139122, - "ema_span_0": 380.15410611634405, - "ema_span_1": 1400.4504008491972, - "enabled": true, - "markup_range": 0.0004626893957857511, - "min_markup": 0.00490145366768504, - "n_close_orders": 12, - "qty_pct_close": 0.043984734198136144, - "qty_pct_entry": 0.018595681207980296, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.900895979162492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1335.2768819845921, - "delay_between_fills_minutes_entry": 428.6975600221851, - "delay_weight_close": 50.78557583382557, - "delay_weight_entry": 25.83468775753399, - "ema_dist_close": -0.005729792068735952, - "ema_dist_entry": -0.0060008799575101785, - "ema_span_0": 615.8987912234022, - "ema_span_1": 389.18468385438194, - "enabled": true, - "markup_range": 0.002004695884103621, - "min_markup": 0.005257696384174906, - "n_close_orders": 10, - "qty_pct_close": 0.010713783063561551, - "qty_pct_entry": 0.01028958370444903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.369243812144566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/INJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/INJUSDT.json deleted file mode 100644 index 5e0530ea7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/INJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1246.453675439523, - "delay_between_fills_minutes_entry": 1043.4026414875514, - "delay_weight_close": 59.00638071467824, - "delay_weight_entry": 12.783527392042384, - "ema_dist_close": -0.001174471722058444, - "ema_dist_entry": -0.0008280528023009111, - "ema_span_0": 905.0803044663683, - "ema_span_1": 1274.1281529111866, - "enabled": true, - "markup_range": 0.02939339511460445, - "min_markup": 0.006431641992599841, - "n_close_orders": 10, - "qty_pct_close": 0.036761321855843444, - "qty_pct_entry": 0.02461482313117535, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99284196964666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 460.5591024758043, - "delay_between_fills_minutes_entry": 313.8573420594556, - "delay_weight_close": 29.428693192415487, - "delay_weight_entry": 14.575576098175764, - "ema_dist_close": 0.002419780270044737, - "ema_dist_entry": 0.002950025840287133, - "ema_span_0": 648.6083234045662, - "ema_span_1": 1044.0823364870644, - "enabled": true, - "markup_range": 0.00025492089030924604, - "min_markup": 0.005564097913609937, - "n_close_orders": 9, - "qty_pct_close": 0.03188792662557526, - "qty_pct_entry": 0.020533460787277247, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.641977297807237}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOSTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOSTUSDT.json deleted file mode 100644 index 8d9afae4c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 794.9677128822912, - "delay_between_fills_minutes_entry": 544.5366404219461, - "delay_weight_close": 0.18515578996131565, - "delay_weight_entry": 8.847290908872262, - "ema_dist_close": 0.0026585377101442614, - "ema_dist_entry": -0.00716347729674227, - "ema_span_0": 1005.1986313704755, - "ema_span_1": 1211.3624013771268, - "enabled": true, - "markup_range": 0.012265193390456144, - "min_markup": 0.008919571995125492, - "n_close_orders": 4, - "qty_pct_close": 0.020828941130818134, - "qty_pct_entry": 0.010000021053481946, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.975135688485736}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1296.1419739084013, - "delay_between_fills_minutes_entry": 147.02021689326304, - "delay_weight_close": 5.97148502628611, - "delay_weight_entry": 3.650032916171652, - "ema_dist_close": 0.000970137623367213, - "ema_dist_entry": -0.0020118711305088465, - "ema_span_0": 914.6314864360197, - "ema_span_1": 988.0233545150836, - "enabled": true, - "markup_range": 0.0004247384515813301, - "min_markup": 0.006149104388253391, - "n_close_orders": 9, - "qty_pct_close": 0.019408268413854183, - "qty_pct_entry": 0.01459981809009704, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.128695941373563}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOTAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOTAUSDT.json deleted file mode 100644 index 3ab3a2627..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOTAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1302.0553240831775, - "delay_between_fills_minutes_entry": 744.6283945538563, - "delay_weight_close": 48.30093076266343, - "delay_weight_entry": 7.47004907461783, - "ema_dist_close": 0.0029993243778576356, - "ema_dist_entry": -0.004605501118424108, - "ema_span_0": 1365.5962189821926, - "ema_span_1": 25.313532385768017, - "enabled": true, - "markup_range": 0.05966659044113894, - "min_markup": 0.008213752392521015, - "n_close_orders": 6, - "qty_pct_close": 0.02407958560010621, - "qty_pct_entry": 0.010007319142267164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999999479131189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1241.5531396673398, - "delay_between_fills_minutes_entry": 924.7665421320967, - "delay_weight_close": 76.84409374666565, - "delay_weight_entry": 5.082690639588664, - "ema_dist_close": 0.002965477638722856, - "ema_dist_entry": -0.00831357205741749, - "ema_span_0": 1188.005118327466, - "ema_span_1": 684.6816258458737, - "enabled": true, - "markup_range": 0.009273611487348286, - "min_markup": 0.003025526370742791, - "n_close_orders": 6, - "qty_pct_close": 0.010129662625364787, - "qty_pct_entry": 0.01583046026292428, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.679930277336049}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOTXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOTXUSDT.json deleted file mode 100644 index d21bdaa22..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/IOTXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.9675194232736, - "delay_between_fills_minutes_entry": 1007.1682620636734, - "delay_weight_close": 89.87252105323053, - "delay_weight_entry": 8.761528423864856, - "ema_dist_close": 0.0019744920924290137, - "ema_dist_entry": 0.001227027407331943, - "ema_span_0": 1236.3547451221145, - "ema_span_1": 910.3422794295219, - "enabled": true, - "markup_range": 0.008475686726893564, - "min_markup": 0.007695340096036006, - "n_close_orders": 3, - "qty_pct_close": 0.010665723673662307, - "qty_pct_entry": 0.014672410239745194, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.794050691780967}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/JASMYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/JASMYUSDT.json deleted file mode 100644 index 20522e0ef..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/JASMYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1409.2523689784412, - "delay_between_fills_minutes_entry": 592.3926124970354, - "delay_weight_close": 71.12671335399787, - "delay_weight_entry": 12.160621998382826, - "ema_dist_close": 0.0006770893834596368, - "ema_dist_entry": -0.00684337984136156, - "ema_span_0": 850.3837607809575, - "ema_span_1": 322.4578598589943, - "enabled": true, - "markup_range": 0.008824137597215726, - "min_markup": 0.0060133145036067375, - "n_close_orders": 13, - "qty_pct_close": 0.010212491158651759, - "qty_pct_entry": 0.011678700485474801, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.505994062962653}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/JOEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/JOEUSDT.json deleted file mode 100644 index ae1533dbd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/JOEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.5360124862, - "delay_between_fills_minutes_entry": 859.1227070243172, - "delay_weight_close": 29.556555395771973, - "delay_weight_entry": 13.25201710002017, - "ema_dist_close": 0.001733117204678289, - "ema_dist_entry": 0.002232389049173993, - "ema_span_0": 982.6152333352189, - "ema_span_1": 789.3269555523823, - "enabled": true, - "markup_range": 0.0010562689965902708, - "min_markup": 0.008030938912674498, - "n_close_orders": 15, - "qty_pct_close": 0.012665893826731929, - "qty_pct_entry": 0.0127344177482051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.890426202318031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1410.1883668126077, - "delay_between_fills_minutes_entry": 715.2035803334743, - "delay_weight_close": 49.6662714461656, - "delay_weight_entry": 8.871380681433667, - "ema_dist_close": -0.002882270356222004, - "ema_dist_entry": -0.04349643255790327, - "ema_span_0": 1181.7009862367192, - "ema_span_1": 1118.7599119180738, - "enabled": true, - "markup_range": 0.03062568712726192, - "min_markup": 0.007198910650418894, - "n_close_orders": 4, - "qty_pct_close": 0.01005552873997189, - "qty_pct_entry": 0.010509015651677372, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.489761446197864}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KAVAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KAVAUSDT.json deleted file mode 100644 index d7a6e0f9c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KAVAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5402911357278, - "delay_between_fills_minutes_entry": 705.2311636892108, - "delay_weight_close": 65.49854174609756, - "delay_weight_entry": 17.611898553308663, - "ema_dist_close": 0.002429996018635014, - "ema_dist_entry": 0.0013589226004891521, - "ema_span_0": 1319.7192743024323, - "ema_span_1": 1414.9932931638582, - "enabled": true, - "markup_range": 0.0028033086702613404, - "min_markup": 0.004860796242085709, - "n_close_orders": 11, - "qty_pct_close": 0.010008122508872121, - "qty_pct_entry": 0.01001059088391252, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.256456045876257}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.988118806758, - "delay_between_fills_minutes_entry": 317.0114095372921, - "delay_weight_close": 64.21435545867797, - "delay_weight_entry": 9.41060851968836, - "ema_dist_close": 0.0020302865280332426, - "ema_dist_entry": -0.005320416273806871, - "ema_span_0": 1001.1702346693172, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.004255931827100837, - "min_markup": 0.0045768707404305825, - "n_close_orders": 9, - "qty_pct_close": 0.0119074650277676, - "qty_pct_entry": 0.014054182208395603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.886623694505245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KEYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KEYUSDT.json deleted file mode 100644 index 8af00bc77..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KEYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1401.0388472375867, - "delay_between_fills_minutes_entry": 1046.5429971057345, - "delay_weight_close": 46.123983741206544, - "delay_weight_entry": 10.748299168060415, - "ema_dist_close": -0.0042592740619516655, - "ema_dist_entry": -0.00691027510879591, - "ema_span_0": 835.7684013255501, - "ema_span_1": 999.78222208355, - "enabled": true, - "markup_range": 0.032161646455142, - "min_markup": 0.007879984221323478, - "n_close_orders": 14, - "qty_pct_close": 0.011448624166079665, - "qty_pct_entry": 0.01288872088361904, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.057021738291256}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KLAYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KLAYUSDT.json deleted file mode 100644 index 26f21f7a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KLAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.1300275559712, - "delay_between_fills_minutes_entry": 1212.803527085094, - "delay_weight_close": 34.2600187729523, - "delay_weight_entry": 10.37922745763959, - "ema_dist_close": -0.009510778465579003, - "ema_dist_entry": 0.0015544752209250647, - "ema_span_0": 1369.194009433199, - "ema_span_1": 1344.924365633511, - "enabled": true, - "markup_range": 0.058935127007619666, - "min_markup": 0.009672368146548005, - "n_close_orders": 14, - "qty_pct_close": 0.010063953212069694, - "qty_pct_entry": 0.01096620969409276, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.792246221691608}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.8073930039345, - "delay_between_fills_minutes_entry": 183.3070460019667, - "delay_weight_close": 18.34911435798682, - "delay_weight_entry": 6.694348659919506, - "ema_dist_close": -0.0015196928075700466, - "ema_dist_entry": -0.0013779302410489745, - "ema_span_0": 917.6447116631633, - "ema_span_1": 1375.0551217604964, - "enabled": true, - "markup_range": 8.585396330318892e-06, - "min_markup": 0.007865167514619307, - "n_close_orders": 6, - "qty_pct_close": 0.011255231244372254, - "qty_pct_entry": 0.011434515642898923, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.850974984564138}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KNCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KNCUSDT.json deleted file mode 100644 index 1fd5a5127..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1009.1977740778378, - "delay_between_fills_minutes_entry": 909.967718334142, - "delay_weight_close": 90.4996555877358, - "delay_weight_entry": 15.256177586301156, - "ema_dist_close": 0.0017054772290421116, - "ema_dist_entry": 0.002419259869883262, - "ema_span_0": 249.76804345090204, - "ema_span_1": 1340.698356145972, - "enabled": true, - "markup_range": 0.057106229854452066, - "min_markup": 0.009533024183349517, - "n_close_orders": 6, - "qty_pct_close": 0.015820073008262145, - "qty_pct_entry": 0.010128692522338976, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.752682195950484}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1210.5854819005217, - "delay_between_fills_minutes_entry": 1201.8652824589042, - "delay_weight_close": 31.08976269589001, - "delay_weight_entry": 13.128115257669641, - "ema_dist_close": 0.0011007867425663353, - "ema_dist_entry": 0.002899917470147996, - "ema_span_0": 680.9184979346117, - "ema_span_1": 1135.8101404085917, - "enabled": true, - "markup_range": 0.03690816222300829, - "min_markup": 0.004234609277555328, - "n_close_orders": 15, - "qty_pct_close": 0.03301262190452386, - "qty_pct_entry": 0.01442787548021332, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.9742782293134975}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KSMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KSMUSDT.json deleted file mode 100644 index 3098395ac..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/KSMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.5360124862, - "delay_between_fills_minutes_entry": 859.1227070243172, - "delay_weight_close": 29.556555395771973, - "delay_weight_entry": 13.25201710002017, - "ema_dist_close": 0.001733117204678289, - "ema_dist_entry": 0.002232389049173993, - "ema_span_0": 982.6152333352189, - "ema_span_1": 789.3269555523823, - "enabled": true, - "markup_range": 0.0010562689965902708, - "min_markup": 0.008030938912674498, - "n_close_orders": 15, - "qty_pct_close": 0.012665893826731929, - "qty_pct_entry": 0.0127344177482051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.890426202318031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.4439537906833, - "delay_between_fills_minutes_entry": 284.9948072242528, - "delay_weight_close": 85.83752226983684, - "delay_weight_entry": 11.644392476918501, - "ema_dist_close": 0.0014532398114953044, - "ema_dist_entry": -0.012907490908855493, - "ema_span_0": 1350.1084840401143, - "ema_span_1": 1245.3609442867687, - "enabled": true, - "markup_range": 0.004792893120458578, - "min_markup": 0.0038254230464410737, - "n_close_orders": 9, - "qty_pct_close": 0.01851960244535793, - "qty_pct_entry": 0.015076926731944766, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.729020699832065}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LDOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LDOUSDT.json deleted file mode 100644 index d4c08c1af..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LDOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 647.8222539313874, - "delay_between_fills_minutes_entry": 718.4498503578127, - "delay_weight_close": 74.8996951963156, - "delay_weight_entry": 27.86126728804292, - "ema_dist_close": 0.0028547711436244416, - "ema_dist_entry": 0.002971892879800595, - "ema_span_0": 647.8106028777783, - "ema_span_1": 1284.021151355735, - "enabled": true, - "markup_range": 7.551994800895838e-05, - "min_markup": 0.005894634008284491, - "n_close_orders": 8, - "qty_pct_close": 0.02789055159943267, - "qty_pct_entry": 0.023083524362018364, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.203394965078033}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LEVERUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LEVERUSDT.json deleted file mode 100644 index 2cb49db2e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LEVERUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1073.3204753488105, - "delay_between_fills_minutes_entry": 1302.9584111487866, - "delay_weight_close": 40.09374865761545, - "delay_weight_entry": 2.8545540516746795, - "ema_dist_close": 0.0020539728714032085, - "ema_dist_entry": 0.002997479332770153, - "ema_span_0": 772.5636643325025, - "ema_span_1": 1180.3310157865521, - "enabled": true, - "markup_range": 0.03791294679515116, - "min_markup": 0.008544402617761243, - "n_close_orders": 6, - "qty_pct_close": 0.010080776659859821, - "qty_pct_entry": 0.02040020550786626, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.252994944637564}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LINAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LINAUSDT.json deleted file mode 100644 index 4e653255d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 593.7839940862833, - "delay_between_fills_minutes_entry": 1349.6547115519363, - "delay_weight_close": 31.262585915509586, - "delay_weight_entry": 11.783630048138324, - "ema_dist_close": 0.0029586601407631413, - "ema_dist_entry": -0.0007703020436630937, - "ema_span_0": 1230.7466168345422, - "ema_span_1": 1380.275694355039, - "enabled": true, - "markup_range": 0.019753667261125103, - "min_markup": 0.004827276579657606, - "n_close_orders": 4, - "qty_pct_close": 0.010023263627875487, - "qty_pct_entry": 0.010680411439793808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.15153762541229}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.3899052982217, - "delay_between_fills_minutes_entry": 1392.3049132990773, - "delay_weight_close": 49.807760172513554, - "delay_weight_entry": 7.162508190579138, - "ema_dist_close": -0.004782524819944762, - "ema_dist_entry": -0.0028231485656754376, - "ema_span_0": 1305.2475254448404, - "ema_span_1": 390.5383382248257, - "enabled": true, - "markup_range": 0.03820330822561088, - "min_markup": 0.0066933545836667194, - "n_close_orders": 8, - "qty_pct_close": 0.01046416625246991, - "qty_pct_entry": 0.013816993276890857, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.26025673761001}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LINKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LINKUSDT.json deleted file mode 100644 index 08b8676ad..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LINKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1240.619948215464, - "delay_between_fills_minutes_entry": 1406.9355515864531, - "delay_weight_close": 39.21527068773809, - "delay_weight_entry": 25.462377929629536, - "ema_dist_close": -0.006258194975658179, - "ema_dist_entry": -0.0007965550060604941, - "ema_span_0": 961.4813030206554, - "ema_span_1": 595.2620996581525, - "enabled": true, - "markup_range": 0.00037638638314941696, - "min_markup": 0.003747616601162867, - "n_close_orders": 12, - "qty_pct_close": 0.010034298852995118, - "qty_pct_entry": 0.022535360635394373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.692521793590576}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LITUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LITUSDT.json deleted file mode 100644 index 5a5c47d9f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LITUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1002.5220682488126, - "delay_between_fills_minutes_entry": 753.7464152781814, - "delay_weight_close": 30.301237731473744, - "delay_weight_entry": 11.853087539919636, - "ema_dist_close": 0.0024396134129753256, - "ema_dist_entry": 0.0006415958761849742, - "ema_span_0": 1421.0820943291521, - "ema_span_1": 1331.186242472097, - "enabled": true, - "markup_range": 0.05974981897418855, - "min_markup": 0.00836075491961724, - "n_close_orders": 5, - "qty_pct_close": 0.035184754511334765, - "qty_pct_entry": 0.010000004512269314, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.233724680204666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LPTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LPTUSDT.json deleted file mode 100644 index 49d20f238..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LPTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1077.1807282484492, - "delay_between_fills_minutes_entry": 1232.7128505088735, - "delay_weight_close": 73.02572088977536, - "delay_weight_entry": 14.453691276160244, - "ema_dist_close": 0.0026294226803143914, - "ema_dist_entry": 0.0029811359697856695, - "ema_span_0": 1150.1390184501067, - "ema_span_1": 1374.864691153405, - "enabled": true, - "markup_range": 0.0585552665236782, - "min_markup": 0.008875991138911835, - "n_close_orders": 14, - "qty_pct_close": 0.013612979997873373, - "qty_pct_entry": 0.011835520328508337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.515438059683117}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LQTYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LQTYUSDT.json deleted file mode 100644 index a00efc98b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LQTYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1240.619948215464, - "delay_between_fills_minutes_entry": 1406.9355515864531, - "delay_weight_close": 39.21527068773809, - "delay_weight_entry": 25.462377929629536, - "ema_dist_close": -0.006258194975658179, - "ema_dist_entry": -0.0007965550060604941, - "ema_span_0": 961.4813030206554, - "ema_span_1": 595.2620996581525, - "enabled": true, - "markup_range": 0.00037638638314941696, - "min_markup": 0.003747616601162867, - "n_close_orders": 12, - "qty_pct_close": 0.010034298852995118, - "qty_pct_entry": 0.022535360635394373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.692521793590576}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.3428536393867, - "delay_between_fills_minutes_entry": 1185.9050347143673, - "delay_weight_close": 59.42795144932482, - "delay_weight_entry": 24.39288071676801, - "ema_dist_close": -0.001048290112673706, - "ema_dist_entry": -0.01216106391847627, - "ema_span_0": 437.5069705321616, - "ema_span_1": 813.7990832725427, - "enabled": true, - "markup_range": 0.011828867885331596, - "min_markup": 0.007890470482281736, - "n_close_orders": 5, - "qty_pct_close": 0.013491342742327966, - "qty_pct_entry": 0.017240666612956455, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.181828521736271}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LRCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LRCUSDT.json deleted file mode 100644 index af91ec48e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LRCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.8339657258755, - "delay_between_fills_minutes_entry": 891.4788712105387, - "delay_weight_close": 5.4809425813516315, - "delay_weight_entry": 11.58920722892928, - "ema_dist_close": 0.0019639993868800177, - "ema_dist_entry": -0.0007257395086024544, - "ema_span_0": 1187.4204451756896, - "ema_span_1": 763.4232758378089, - "enabled": true, - "markup_range": 0.054783689970365215, - "min_markup": 0.008829482630767964, - "n_close_orders": 4, - "qty_pct_close": 0.046453895676820026, - "qty_pct_entry": 0.010006508807464292, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.201441326354832}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.111167038018, - "delay_between_fills_minutes_entry": 829.899307490801, - "delay_weight_close": 60.4335502424105, - "delay_weight_entry": 13.743453934991578, - "ema_dist_close": -0.0009512631874595318, - "ema_dist_entry": 0.0012970239907388545, - "ema_span_0": 477.4363440470011, - "ema_span_1": 854.14796144117, - "enabled": true, - "markup_range": 0.0016657374568103396, - "min_markup": 0.006257117654757969, - "n_close_orders": 5, - "qty_pct_close": 0.023507393838320723, - "qty_pct_entry": 0.01005730292473667, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.97727105060391}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LTCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LTCUSDT.json deleted file mode 100644 index d18a8b985..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 962.409178222383, - "delay_between_fills_minutes_entry": 1172.1376830193153, - "delay_weight_close": 53.40502168442531, - "delay_weight_entry": 11.969432812912661, - "ema_dist_close": 0.00031138704169496263, - "ema_dist_entry": -0.0006270140214384637, - "ema_span_0": 568.7011450827894, - "ema_span_1": 949.5337302663744, - "enabled": true, - "markup_range": 0.021297698497498223, - "min_markup": 0.00784453473598048, - "n_close_orders": 8, - "qty_pct_close": 0.01018370628522916, - "qty_pct_entry": 0.016029569751713095, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.932634426458602}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 641.9819212414824, - "delay_between_fills_minutes_entry": 1172.6385171146794, - "delay_weight_close": 21.807205185648012, - "delay_weight_entry": 17.944148727070388, - "ema_dist_close": -9.014996706754828e-05, - "ema_dist_entry": 0.0029064209160962113, - "ema_span_0": 1100.595256404529, - "ema_span_1": 1004.6989617949113, - "enabled": true, - "markup_range": 0.04212888621379307, - "min_markup": 0.009977804304003083, - "n_close_orders": 14, - "qty_pct_close": 0.018784939258070024, - "qty_pct_entry": 0.011238592623085223, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.520167026810461}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LUNA2USDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LUNA2USDT.json deleted file mode 100644 index 5b666f389..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/LUNA2USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 603.3267811783331, - "delay_between_fills_minutes_entry": 1351.055922217821, - "delay_weight_close": 26.216183994269414, - "delay_weight_entry": 18.202315132512688, - "ema_dist_close": -0.0006581961016549106, - "ema_dist_entry": 0.0001344705370392922, - "ema_span_0": 702.8531656796472, - "ema_span_1": 1334.111825532691, - "enabled": true, - "markup_range": 0.05994402685182565, - "min_markup": 0.007996451339242192, - "n_close_orders": 12, - "qty_pct_close": 0.03856397835994202, - "qty_pct_entry": 0.010100429823748501, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.925140520256441}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1020.1354708240111, - "delay_between_fills_minutes_entry": 782.9943558645925, - "delay_weight_close": 87.83223302288249, - "delay_weight_entry": 22.92669845378868, - "ema_dist_close": 0.002982470636322073, - "ema_dist_entry": 0.0025312584957361993, - "ema_span_0": 26.994223816162194, - "ema_span_1": 1059.3369427276514, - "enabled": true, - "markup_range": 0.03214757166893674, - "min_markup": 0.0077591689577204475, - "n_close_orders": 4, - "qty_pct_close": 0.020507435372544618, - "qty_pct_entry": 0.01653153063658084, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.3936272636061915}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MAGICUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MAGICUSDT.json deleted file mode 100644 index e2340d09a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MAGICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 962.409178222383, - "delay_between_fills_minutes_entry": 1172.1376830193153, - "delay_weight_close": 53.40502168442531, - "delay_weight_entry": 11.969432812912661, - "ema_dist_close": 0.00031138704169496263, - "ema_dist_entry": -0.0006270140214384637, - "ema_span_0": 568.7011450827894, - "ema_span_1": 949.5337302663744, - "enabled": true, - "markup_range": 0.021297698497498223, - "min_markup": 0.00784453473598048, - "n_close_orders": 8, - "qty_pct_close": 0.01018370628522916, - "qty_pct_entry": 0.016029569751713095, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.932634426458602}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.4141447709878, - "delay_between_fills_minutes_entry": 441.1073717945042, - "delay_weight_close": 40.71042994495278, - "delay_weight_entry": 13.888293268391225, - "ema_dist_close": 0.0012506077015050012, - "ema_dist_entry": -0.0009251862958045151, - "ema_span_0": 916.5966734173559, - "ema_span_1": 902.4689005607486, - "enabled": true, - "markup_range": 0.0011008246200862883, - "min_markup": 0.007593015282927445, - "n_close_orders": 3, - "qty_pct_close": 0.012107510661348176, - "qty_pct_entry": 0.010382178027008672, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99891960197657}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MANAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MANAUSDT.json deleted file mode 100644 index b368f1297..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MANAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1037.836089658439, - "delay_between_fills_minutes_entry": 807.9066251771726, - "delay_weight_close": 53.51399066237716, - "delay_weight_entry": 13.516096873399823, - "ema_dist_close": 0.002850591122230487, - "ema_dist_entry": 0.002145523190467474, - "ema_span_0": 1437.4514239247146, - "ema_span_1": 1179.7164890358806, - "enabled": true, - "markup_range": 0.03202813071907875, - "min_markup": 0.009132441557509424, - "n_close_orders": 5, - "qty_pct_close": 0.032228373404120596, - "qty_pct_entry": 0.010523847645499271, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.28892881203416}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.7445248262156, - "delay_between_fills_minutes_entry": 227.90525998215583, - "delay_weight_close": 78.62678747689974, - "delay_weight_entry": 33.25167826633527, - "ema_dist_close": 0.0015298325261995135, - "ema_dist_entry": -0.0036348490706013888, - "ema_span_0": 481.885751965521, - "ema_span_1": 122.4611974909468, - "enabled": true, - "markup_range": 0.0003335275328934153, - "min_markup": 0.004049109756675185, - "n_close_orders": 4, - "qty_pct_close": 0.013980327298291741, - "qty_pct_entry": 0.010010113944758045, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.478062397384196}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MASKUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MASKUSDT.json deleted file mode 100644 index 998543158..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MASKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1241.5531396673398, - "delay_between_fills_minutes_entry": 924.7665421320967, - "delay_weight_close": 76.84409374666565, - "delay_weight_entry": 5.082690639588664, - "ema_dist_close": 0.002965477638722856, - "ema_dist_entry": -0.00831357205741749, - "ema_span_0": 1188.005118327466, - "ema_span_1": 684.6816258458737, - "enabled": true, - "markup_range": 0.009273611487348286, - "min_markup": 0.003025526370742791, - "n_close_orders": 6, - "qty_pct_close": 0.010129662625364787, - "qty_pct_entry": 0.01583046026292428, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.679930277336049}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MATICUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MATICUSDT.json deleted file mode 100644 index 465174363..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MATICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1018.1326928268926, - "delay_between_fills_minutes_entry": 1209.2441405456718, - "delay_weight_close": 76.22429188948485, - "delay_weight_entry": 26.30335818604116, - "ema_dist_close": -0.003752793838310099, - "ema_dist_entry": 0.0016972391242632869, - "ema_span_0": 1112.679175136077, - "ema_span_1": 1155.3596235352968, - "enabled": true, - "markup_range": 0.00906994510461339, - "min_markup": 0.003763177210427331, - "n_close_orders": 5, - "qty_pct_close": 0.010001201873711948, - "qty_pct_entry": 0.011612013565130612, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.894977345286492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.0242714648448, - "delay_between_fills_minutes_entry": 328.2305083427938, - "delay_weight_close": 38.92221993129098, - "delay_weight_entry": 12.24139049420294, - "ema_dist_close": -0.0008560612853727447, - "ema_dist_entry": -0.005497049380766986, - "ema_span_0": 384.44513774552, - "ema_span_1": 1256.9980699630817, - "enabled": true, - "markup_range": 0.0031737576042087778, - "min_markup": 0.003671761954620994, - "n_close_orders": 11, - "qty_pct_close": 0.011128236162992335, - "qty_pct_entry": 0.013734107201188051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99114774620646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MAVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MAVUSDT.json deleted file mode 100644 index b827eed72..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MAVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1203.4611181572768, - "delay_between_fills_minutes_entry": 1265.794247342226, - "delay_weight_close": 57.83783859617172, - "delay_weight_entry": 12.499722800741255, - "ema_dist_close": -0.0005024491267574696, - "ema_dist_entry": -0.027340186975463802, - "ema_span_0": 452.468690047275, - "ema_span_1": 1198.7397140746277, - "enabled": true, - "markup_range": 0.043056168258799585, - "min_markup": 0.009938065969980503, - "n_close_orders": 11, - "qty_pct_close": 0.010048868385421263, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.823099979339839}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MDTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MDTUSDT.json deleted file mode 100644 index 1ab1fb219..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MDTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1071.7321448776502, - "delay_between_fills_minutes_entry": 608.4339463035063, - "delay_weight_close": 47.700175722135015, - "delay_weight_entry": 7.570410307946368, - "ema_dist_close": -0.0032534951737690663, - "ema_dist_entry": -0.015400883777569794, - "ema_span_0": 901.2066666132317, - "ema_span_1": 1295.1303089278313, - "enabled": true, - "markup_range": 0.04596908396510209, - "min_markup": 0.008067229828822261, - "n_close_orders": 5, - "qty_pct_close": 0.011542071704623675, - "qty_pct_entry": 0.01410069807249177, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.958301334593878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MINAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MINAUSDT.json deleted file mode 100644 index aaf4e3e17..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.8750005823726, - "delay_between_fills_minutes_entry": 933.0747102807682, - "delay_weight_close": 59.31298431253631, - "delay_weight_entry": 27.35368231497901, - "ema_dist_close": -0.0010273524468826557, - "ema_dist_entry": -0.0002409218479536592, - "ema_span_0": 17.169308700991014, - "ema_span_1": 828.8804772625111, - "enabled": true, - "markup_range": 0.0025172044764906073, - "min_markup": 0.007396176653168389, - "n_close_orders": 16, - "qty_pct_close": 0.010621157486843023, - "qty_pct_entry": 0.01742535821106157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.357276278752911}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1111.8577317403558, - "delay_between_fills_minutes_entry": 446.5246509317262, - "delay_weight_close": 82.74031097917285, - "delay_weight_entry": 31.358100512063892, - "ema_dist_close": -0.00024230184912420064, - "ema_dist_entry": 0.0017844147362385619, - "ema_span_0": 1438.8545701011808, - "ema_span_1": 914.5555442257083, - "enabled": true, - "markup_range": 7.249282113820378e-05, - "min_markup": 0.009460799542397083, - "n_close_orders": 5, - "qty_pct_close": 0.019460174032906046, - "qty_pct_entry": 0.019069801890396143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.921549839813937}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MKRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MKRUSDT.json deleted file mode 100644 index 26a3953a1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 853.4756680075038, - "delay_between_fills_minutes_entry": 363.82500611441225, - "delay_weight_close": 94.5951146520179, - "delay_weight_entry": 24.325264328955065, - "ema_dist_close": -0.0010880396686602934, - "ema_dist_entry": 0.0028425839377123055, - "ema_span_0": 1001.6218619505116, - "ema_span_1": 729.5370897971022, - "enabled": true, - "markup_range": 4.886668298595115e-11, - "min_markup": 0.004984786784268092, - "n_close_orders": 13, - "qty_pct_close": 0.04930744247869185, - "qty_pct_entry": 0.02434332684967244, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.641317309338868}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1364.2587732218208, - "delay_between_fills_minutes_entry": 425.84037015267313, - "delay_weight_close": 6.3775015565461795, - "delay_weight_entry": 7.188384360444416, - "ema_dist_close": 0.0004912029105375679, - "ema_dist_entry": -0.0028814858912651446, - "ema_span_0": 1298.8192103417834, - "ema_span_1": 690.4848588072921, - "enabled": true, - "markup_range": 0.005609324244712735, - "min_markup": 0.006610630726702749, - "n_close_orders": 6, - "qty_pct_close": 0.011262475636718951, - "qty_pct_entry": 0.011465358373293532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.362093152965102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MTLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MTLUSDT.json deleted file mode 100644 index 466f55a6f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/MTLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.7995308089592, - "delay_between_fills_minutes_entry": 1068.5930950999073, - "delay_weight_close": 76.73912133547697, - "delay_weight_entry": 9.480197763450395, - "ema_dist_close": -0.00041694208248724924, - "ema_dist_entry": -0.002304322571779274, - "ema_span_0": 1100.419610237486, - "ema_span_1": 544.0615071003361, - "enabled": true, - "markup_range": 0.0176791624976898, - "min_markup": 0.005460683083261101, - "n_close_orders": 5, - "qty_pct_close": 0.011975770785258287, - "qty_pct_entry": 0.020042093949155005, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.219164099825345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1411.1968411072783, - "delay_between_fills_minutes_entry": 1174.9580129356102, - "delay_weight_close": 27.615393391724123, - "delay_weight_entry": 6.803022024280431, - "ema_dist_close": -0.0014828244022903649, - "ema_dist_entry": -0.005648810861896309, - "ema_span_0": 626.126866947274, - "ema_span_1": 842.2993110771496, - "enabled": true, - "markup_range": 0.032319249004179845, - "min_markup": 0.009587715496984084, - "n_close_orders": 6, - "qty_pct_close": 0.010086907414758386, - "qty_pct_entry": 0.01078816215728284, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.87643160171025}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NEARUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NEARUSDT.json deleted file mode 100644 index 18b74abc0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NEARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1409.768208407833, - "delay_between_fills_minutes_entry": 1015.3705586685882, - "delay_weight_close": 36.319118519027676, - "delay_weight_entry": 14.60198490498238, - "ema_dist_close": 0.0029395529965181703, - "ema_dist_entry": 0.0015513558518733127, - "ema_span_0": 1099.0424062207, - "ema_span_1": 852.6180188875159, - "enabled": true, - "markup_range": 0.0076994774976876885, - "min_markup": 0.009474830070044755, - "n_close_orders": 8, - "qty_pct_close": 0.011587275112986893, - "qty_pct_entry": 0.011566188555475008, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.696228909889838}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1142.645363057264, - "delay_between_fills_minutes_entry": 1399.5541102498773, - "delay_weight_close": 44.90527102019327, - "delay_weight_entry": 14.268146833277532, - "ema_dist_close": 0.002931339823923542, - "ema_dist_entry": -0.007921003781265165, - "ema_span_0": 1396.5103968705203, - "ema_span_1": 275.12457142530025, - "enabled": true, - "markup_range": 0.005443408402998408, - "min_markup": 0.009068417646324588, - "n_close_orders": 7, - "qty_pct_close": 0.022632777700431705, - "qty_pct_entry": 0.017759125934843523, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.779990984391535}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NEOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NEOUSDT.json deleted file mode 100644 index 6e0b24496..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NEOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1430.8328838880266, - "delay_between_fills_minutes_entry": 568.900308891042, - "delay_weight_close": 75.10880632547341, - "delay_weight_entry": 12.984572220378992, - "ema_dist_close": 0.0029502650992093388, - "ema_dist_entry": -0.000593120783969449, - "ema_span_0": 1162.8601593295332, - "ema_span_1": 1382.7324818780382, - "enabled": true, - "markup_range": 0.035913430020931524, - "min_markup": 0.009839201916333041, - "n_close_orders": 14, - "qty_pct_close": 0.0269141471590569, - "qty_pct_entry": 0.01015102661932223, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.074656308268904}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 871.0076644722373, - "delay_between_fills_minutes_entry": 966.5104024105381, - "delay_weight_close": 23.622080365167058, - "delay_weight_entry": 27.12654429442176, - "ema_dist_close": -0.002309627899683788, - "ema_dist_entry": -0.00011334500836491201, - "ema_span_0": 640.8885394037771, - "ema_span_1": 1405.8237926382726, - "enabled": true, - "markup_range": 0.01826436231216122, - "min_markup": 0.006772079535549647, - "n_close_orders": 8, - "qty_pct_close": 0.03499318124348151, - "qty_pct_entry": 0.01216979353232123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.985962569174529}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NKNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NKNUSDT.json deleted file mode 100644 index 69ae56a48..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NKNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 913.5070119905605, - "delay_between_fills_minutes_entry": 572.0967952802034, - "delay_weight_close": 72.25048035614671, - "delay_weight_entry": 5.8452862726548656, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008821592964316104, - "ema_span_0": 1061.7117244066478, - "ema_span_1": 926.1535412288271, - "enabled": true, - "markup_range": 0.006653493176864328, - "min_markup": 0.0038257668668339804, - "n_close_orders": 5, - "qty_pct_close": 0.020795698612646792, - "qty_pct_entry": 0.02831515252280558, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.187414843952739}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NMRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NMRUSDT.json deleted file mode 100644 index 41be1f919..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/NMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OCEANUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OCEANUSDT.json deleted file mode 100644 index ed7ec9f7d..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OCEANUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 774.1749994763805, - "delay_between_fills_minutes_entry": 417.10841008932033, - "delay_weight_close": 98.3006781681464, - "delay_weight_entry": 13.875164322812196, - "ema_dist_close": 0.0004161606343772757, - "ema_dist_entry": -0.012285586951885853, - "ema_span_0": 1257.1972969611616, - "ema_span_1": 185.4758736354263, - "enabled": true, - "markup_range": 0.032757699175851945, - "min_markup": 0.003851274926855553, - "n_close_orders": 11, - "qty_pct_close": 0.01829234698898702, - "qty_pct_entry": 0.010006129333077879, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997756395445421}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.8772469560158, - "delay_between_fills_minutes_entry": 141.20412942956406, - "delay_weight_close": 41.169205595560385, - "delay_weight_entry": 11.197336527950059, - "ema_dist_close": -0.003821852967934773, - "ema_dist_entry": -0.010510345648237223, - "ema_span_0": 1245.7272536609853, - "ema_span_1": 922.8126890290862, - "enabled": true, - "markup_range": 0.0004928115612244999, - "min_markup": 0.0048392010600468785, - "n_close_orders": 11, - "qty_pct_close": 0.014222089344028, - "qty_pct_entry": 0.019508207449639766, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.259614666541513}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OGNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OGNUSDT.json deleted file mode 100644 index 5842d34a0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OGNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.8339657258755, - "delay_between_fills_minutes_entry": 891.4788712105387, - "delay_weight_close": 5.4809425813516315, - "delay_weight_entry": 11.58920722892928, - "ema_dist_close": 0.0019639993868800177, - "ema_dist_entry": -0.0007257395086024544, - "ema_span_0": 1187.4204451756896, - "ema_span_1": 763.4232758378089, - "enabled": true, - "markup_range": 0.054783689970365215, - "min_markup": 0.008829482630767964, - "n_close_orders": 4, - "qty_pct_close": 0.046453895676820026, - "qty_pct_entry": 0.010006508807464292, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.201441326354832}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.7573638896351, - "delay_between_fills_minutes_entry": 362.3313538303902, - "delay_weight_close": 21.23308296215357, - "delay_weight_entry": 5.477689454769026, - "ema_dist_close": 0.0011526715229510792, - "ema_dist_entry": -0.0008373151339031716, - "ema_span_0": 396.5447869133196, - "ema_span_1": 574.9036700815492, - "enabled": true, - "markup_range": 0.0002783986561550665, - "min_markup": 0.0063869285445374725, - "n_close_orders": 4, - "qty_pct_close": 0.010286170485719684, - "qty_pct_entry": 0.01055798481390355, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.965974351733472}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OMGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OMGUSDT.json deleted file mode 100644 index c1ab9bb48..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OMGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1384.1091225426126, - "delay_between_fills_minutes_entry": 611.6254569509724, - "delay_weight_close": 5.758883400106157, - "delay_weight_entry": 23.44268989485146, - "ema_dist_close": 0.0029996327286531494, - "ema_dist_entry": -0.0068984518075020035, - "ema_span_0": 1329.4864579288776, - "ema_span_1": 585.4828680357193, - "enabled": true, - "markup_range": 0.0008622381146811774, - "min_markup": 0.007118942523005943, - "n_close_orders": 3, - "qty_pct_close": 0.03367200615364038, - "qty_pct_entry": 0.012888464025018646, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.677478366506111}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 651.4169496594105, - "delay_between_fills_minutes_entry": 114.03862314682469, - "delay_weight_close": 45.162420375719186, - "delay_weight_entry": 16.194811111382208, - "ema_dist_close": 0.001469410278343695, - "ema_dist_entry": -0.00030275227134301814, - "ema_span_0": 294.4448675643771, - "ema_span_1": 210.41861110021503, - "enabled": true, - "markup_range": 0.0016015869684358171, - "min_markup": 0.006724749754376175, - "n_close_orders": 2, - "qty_pct_close": 0.012707208624374853, - "qty_pct_entry": 0.010001809165311236, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.493889468278645}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ONEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ONEUSDT.json deleted file mode 100644 index 0f510f26f..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ONEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1107.4710337669503, - "delay_between_fills_minutes_entry": 825.3839968138504, - "delay_weight_close": 67.9701611480623, - "delay_weight_entry": 12.49526594390872, - "ema_dist_close": -0.0021178858109151314, - "ema_dist_entry": 0.0022021111003530723, - "ema_span_0": 1235.0830428493039, - "ema_span_1": 1198.9408034555945, - "enabled": true, - "markup_range": 0.056226370825320615, - "min_markup": 0.0060538760772622996, - "n_close_orders": 2, - "qty_pct_close": 0.014385109210252368, - "qty_pct_entry": 0.010087930789726559, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.046985925428747}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.0242714648448, - "delay_between_fills_minutes_entry": 328.2305083427938, - "delay_weight_close": 38.92221993129098, - "delay_weight_entry": 12.24139049420294, - "ema_dist_close": -0.0008560612853727447, - "ema_dist_entry": -0.005497049380766986, - "ema_span_0": 384.44513774552, - "ema_span_1": 1256.9980699630817, - "enabled": true, - "markup_range": 0.0031737576042087778, - "min_markup": 0.003671761954620994, - "n_close_orders": 11, - "qty_pct_close": 0.011128236162992335, - "qty_pct_entry": 0.013734107201188051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99114774620646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ONTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ONTUSDT.json deleted file mode 100644 index d35e499b3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ONTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9173644454004, - "delay_between_fills_minutes_entry": 1419.8246387852046, - "delay_weight_close": 48.012293572630455, - "delay_weight_entry": 15.183351382612488, - "ema_dist_close": 0.0015012186349785742, - "ema_dist_entry": 0.0014541136121861997, - "ema_span_0": 389.51920707173974, - "ema_span_1": 897.3213415855408, - "enabled": true, - "markup_range": 0.05333828949180657, - "min_markup": 0.007511389686758822, - "n_close_orders": 16, - "qty_pct_close": 0.01018937358950912, - "qty_pct_entry": 0.010050152566720193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.255688645124718}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 885.4990958624089, - "delay_between_fills_minutes_entry": 828.6580183585879, - "delay_weight_close": 88.98288979706892, - "delay_weight_entry": 22.267129707838787, - "ema_dist_close": 0.002266588450384522, - "ema_dist_entry": -0.009709243442689435, - "ema_span_0": 1236.730426399713, - "ema_span_1": 767.1031813611141, - "enabled": true, - "markup_range": 0.015226109907477529, - "min_markup": 0.00679435246256114, - "n_close_orders": 5, - "qty_pct_close": 0.030487100012519728, - "qty_pct_entry": 0.014204103824928826, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.882166003822793}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OPUSDT.json deleted file mode 100644 index a843939ae..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/OPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.8471219862013, - "delay_between_fills_minutes_entry": 1439.5546497907865, - "delay_weight_close": 57.88964637046297, - "delay_weight_entry": 13.090442704461383, - "ema_dist_close": 0.002996520452507227, - "ema_dist_entry": -0.0033451476752006455, - "ema_span_0": 367.80671025597053, - "ema_span_1": 1350.9596433183763, - "enabled": true, - "markup_range": 0.058798133871946545, - "min_markup": 0.0070946380295461185, - "n_close_orders": 12, - "qty_pct_close": 0.011131520461024794, - "qty_pct_entry": 0.012949698111735146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.246610551859352}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.111167038018, - "delay_between_fills_minutes_entry": 829.899307490801, - "delay_weight_close": 60.4335502424105, - "delay_weight_entry": 13.743453934991578, - "ema_dist_close": -0.0009512631874595318, - "ema_dist_entry": 0.0012970239907388545, - "ema_span_0": 477.4363440470011, - "ema_span_1": 854.14796144117, - "enabled": true, - "markup_range": 0.0016657374568103396, - "min_markup": 0.006257117654757969, - "n_close_orders": 5, - "qty_pct_close": 0.023507393838320723, - "qty_pct_entry": 0.01005730292473667, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.97727105060391}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PENDLEUSDT.json deleted file mode 100644 index a9ee03188..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PENDLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1248.1789885059768, - "delay_between_fills_minutes_entry": 227.99268514064005, - "delay_weight_close": 78.75473228984815, - "delay_weight_entry": 6.216960673508106, - "ema_dist_close": 0.0026028078903315615, - "ema_dist_entry": 0.003, - "ema_span_0": 784.5152476941988, - "ema_span_1": 1205.366418561911, - "enabled": true, - "markup_range": 0.05917662143888649, - "min_markup": 0.009918070200054691, - "n_close_orders": 7, - "qty_pct_close": 0.03103642627381348, - "qty_pct_entry": 0.010006216470470716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.58215952037477}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PEOPLEUSDT.json deleted file mode 100644 index b5ea746c7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PEOPLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 823.925380691432, - "delay_between_fills_minutes_entry": 552.1101561076499, - "delay_weight_close": 80.76346040980073, - "delay_weight_entry": 5.923744767045681, - "ema_dist_close": 0.0026632234530420723, - "ema_dist_entry": -0.005803973299114309, - "ema_span_0": 943.0370411200279, - "ema_span_1": 1422.5397241747166, - "enabled": true, - "markup_range": 0.0038455296273103945, - "min_markup": 0.004971921043439715, - "n_close_orders": 16, - "qty_pct_close": 0.01979557808628567, - "qty_pct_entry": 0.010060880479196744, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.693793947683548}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PERPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PERPUSDT.json deleted file mode 100644 index c4341682b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PERPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 945.6295755258033, - "delay_between_fills_minutes_entry": 1129.3036024850337, - "delay_weight_close": 49.428798145227546, - "delay_weight_entry": 23.244316646980483, - "ema_dist_close": 0.001639520327615728, - "ema_dist_entry": -0.0014840288276448815, - "ema_span_0": 1436.8600255462013, - "ema_span_1": 513.6808484133488, - "enabled": true, - "markup_range": 0.0003920027644607531, - "min_markup": 0.004511865898676224, - "n_close_orders": 14, - "qty_pct_close": 0.018725398018618583, - "qty_pct_entry": 0.023096401118212994, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.778662774848787}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PHBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PHBUSDT.json deleted file mode 100644 index 4fa8063da..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/PHBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/QNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/QNTUSDT.json deleted file mode 100644 index b01b8815b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/QNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.1904529114277, - "delay_between_fills_minutes_entry": 948.3513811188083, - "delay_weight_close": 56.13407444686111, - "delay_weight_entry": 10.807476449083884, - "ema_dist_close": -0.0006766010557382271, - "ema_dist_entry": 0.0015278141413719523, - "ema_span_0": 1148.7742187263384, - "ema_span_1": 1196.1061278731943, - "enabled": true, - "markup_range": 0.05059262384485033, - "min_markup": 0.007499739719254243, - "n_close_orders": 11, - "qty_pct_close": 0.01001026923951864, - "qty_pct_entry": 0.010467521768919784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.948752455445286}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/QTUMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/QTUMUSDT.json deleted file mode 100644 index 7706a09a7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/QTUMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1037.836089658439, - "delay_between_fills_minutes_entry": 807.9066251771726, - "delay_weight_close": 53.51399066237716, - "delay_weight_entry": 13.516096873399823, - "ema_dist_close": 0.002850591122230487, - "ema_dist_entry": 0.002145523190467474, - "ema_span_0": 1437.4514239247146, - "ema_span_1": 1179.7164890358806, - "enabled": true, - "markup_range": 0.03202813071907875, - "min_markup": 0.009132441557509424, - "n_close_orders": 5, - "qty_pct_close": 0.032228373404120596, - "qty_pct_entry": 0.010523847645499271, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.28892881203416}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 517.1403528157814, - "delay_between_fills_minutes_entry": 1111.0124932935207, - "delay_weight_close": 9.394062387802434, - "delay_weight_entry": 27.338250754772233, - "ema_dist_close": 0.002237558799644698, - "ema_dist_entry": 0.002315918170835833, - "ema_span_0": 1412.1496078844782, - "ema_span_1": 480.6309940753328, - "enabled": true, - "markup_range": 0.0021463559700849733, - "min_markup": 0.0017918587928544576, - "n_close_orders": 11, - "qty_pct_close": 0.031221262506754884, - "qty_pct_entry": 0.015624881656753345, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.859738804842135}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RADUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RADUSDT.json deleted file mode 100644 index 97578db7a..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RADUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 417.10032999409367, - "delay_between_fills_minutes_entry": 483.89554164990125, - "delay_weight_close": 30.386021284189134, - "delay_weight_entry": 11.45213513909002, - "ema_dist_close": 0.002359618163183817, - "ema_dist_entry": -0.005401969069027971, - "ema_span_0": 1358.040501374106, - "ema_span_1": 698.1122943720719, - "enabled": true, - "markup_range": 0.02438499264430349, - "min_markup": 0.002477898691579286, - "n_close_orders": 10, - "qty_pct_close": 0.014976947166622385, - "qty_pct_entry": 0.01956247676084041, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.119483512668944}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RAYUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RAYUSDT.json deleted file mode 100644 index 22e91e6a4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.5591713988508, - "delay_between_fills_minutes_entry": 1222.387567984932, - "delay_weight_close": 59.45358227933449, - "delay_weight_entry": 10.558181151699905, - "ema_dist_close": -0.0008640894989598183, - "ema_dist_entry": 0.0006870016090268654, - "ema_span_0": 913.497230257846, - "ema_span_1": 1436.215122325884, - "enabled": true, - "markup_range": 0.059578361950649174, - "min_markup": 0.009643362227367292, - "n_close_orders": 9, - "qty_pct_close": 0.01689913460888909, - "qty_pct_entry": 0.010080542810707492, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.995938157759916}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1132.504506727316, - "delay_between_fills_minutes_entry": 271.2949888174522, - "delay_weight_close": 46.62959202464396, - "delay_weight_entry": 21.225264319072384, - "ema_dist_close": 0.0029502727657052244, - "ema_dist_entry": -0.0011764144447320743, - "ema_span_0": 1200.2056828957004, - "ema_span_1": 952.5980600630442, - "enabled": true, - "markup_range": 0.0007213701100334605, - "min_markup": 0.0021660492907288674, - "n_close_orders": 9, - "qty_pct_close": 0.012804451594978223, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.829187823095918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RDNTUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RDNTUSDT.json deleted file mode 100644 index 41be1f919..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RDNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/REEFUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/REEFUSDT.json deleted file mode 100644 index f682f1ae0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/REEFUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.9064026488463, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 58.79959585708705, - "delay_weight_entry": 10.959076388436209, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.02772778938036382, - "ema_span_0": 1138.739721733395, - "ema_span_1": 5.0062918268054695, - "enabled": true, - "markup_range": 0.051451689323101686, - "min_markup": 0.008293567493695307, - "n_close_orders": 12, - "qty_pct_close": 0.017450501048647354, - "qty_pct_entry": 0.01101553339681686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.934438426010102}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1020.1354708240111, - "delay_between_fills_minutes_entry": 782.9943558645925, - "delay_weight_close": 87.83223302288249, - "delay_weight_entry": 22.92669845378868, - "ema_dist_close": 0.002982470636322073, - "ema_dist_entry": 0.0025312584957361993, - "ema_span_0": 26.994223816162194, - "ema_span_1": 1059.3369427276514, - "enabled": true, - "markup_range": 0.03214757166893674, - "min_markup": 0.0077591689577204475, - "n_close_orders": 4, - "qty_pct_close": 0.020507435372544618, - "qty_pct_entry": 0.01653153063658084, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.3936272636061915}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RENUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RENUSDT.json deleted file mode 100644 index 7446c82f0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.1904529114277, - "delay_between_fills_minutes_entry": 948.3513811188083, - "delay_weight_close": 56.13407444686111, - "delay_weight_entry": 10.807476449083884, - "ema_dist_close": -0.0006766010557382271, - "ema_dist_entry": 0.0015278141413719523, - "ema_span_0": 1148.7742187263384, - "ema_span_1": 1196.1061278731943, - "enabled": true, - "markup_range": 0.05059262384485033, - "min_markup": 0.007499739719254243, - "n_close_orders": 11, - "qty_pct_close": 0.01001026923951864, - "qty_pct_entry": 0.010467521768919784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.948752455445286}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1071.7321448776502, - "delay_between_fills_minutes_entry": 608.4339463035063, - "delay_weight_close": 47.700175722135015, - "delay_weight_entry": 7.570410307946368, - "ema_dist_close": -0.0032534951737690663, - "ema_dist_entry": -0.015400883777569794, - "ema_span_0": 901.2066666132317, - "ema_span_1": 1295.1303089278313, - "enabled": true, - "markup_range": 0.04596908396510209, - "min_markup": 0.008067229828822261, - "n_close_orders": 5, - "qty_pct_close": 0.011542071704623675, - "qty_pct_entry": 0.01410069807249177, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.958301334593878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RLCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RLCUSDT.json deleted file mode 100644 index c256328d1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RLCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1019.7356204361605, - "delay_between_fills_minutes_entry": 915.8961688967711, - "delay_weight_close": 93.79482822561037, - "delay_weight_entry": 8.490162495739465, - "ema_dist_close": -0.00369985403855864, - "ema_dist_entry": 0.002494394037840404, - "ema_span_0": 527.5546042342173, - "ema_span_1": 886.388242864027, - "enabled": true, - "markup_range": 0.05999753170181225, - "min_markup": 0.00984014998857967, - "n_close_orders": 8, - "qty_pct_close": 0.011852183169987441, - "qty_pct_entry": 0.01581380034546556, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.315715453538093}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RNDRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RNDRUSDT.json deleted file mode 100644 index b258d7ade..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RNDRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.7178502765457, - "delay_between_fills_minutes_entry": 574.3537408896536, - "delay_weight_close": 79.80491949338992, - "delay_weight_entry": 11.562035417347104, - "ema_dist_close": -8.152786006796259e-05, - "ema_dist_entry": -0.006999278647231068, - "ema_span_0": 1391.1389085569626, - "ema_span_1": 915.519171904557, - "enabled": true, - "markup_range": 0.0018840191727093577, - "min_markup": 0.004188852247657481, - "n_close_orders": 3, - "qty_pct_close": 0.018508670460081623, - "qty_pct_entry": 0.010483362142496691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.630049911945353}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ROSEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ROSEUSDT.json deleted file mode 100644 index 4d0407700..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ROSEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.7212190235336, - "delay_between_fills_minutes_entry": 974.8829438497269, - "delay_weight_close": 47.715489135266665, - "delay_weight_entry": 10.105388059026021, - "ema_dist_close": 0.001719130091622788, - "ema_dist_entry": -0.0006874897820281204, - "ema_span_0": 705.4799842940254, - "ema_span_1": 1350.7655097962324, - "enabled": true, - "markup_range": 0.010312696095400302, - "min_markup": 0.0048947919298551155, - "n_close_orders": 9, - "qty_pct_close": 0.01077067282126931, - "qty_pct_entry": 0.011890154249054243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.371720712919617}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RSRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RSRUSDT.json deleted file mode 100644 index 3c3c733af..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RSRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1098.1890971328564, - "delay_between_fills_minutes_entry": 1375.243065814745, - "delay_weight_close": 29.88896098753217, - "delay_weight_entry": 12.091121232363104, - "ema_dist_close": -0.00770144974972434, - "ema_dist_entry": 0.0029555600090398868, - "ema_span_0": 1282.1557227028245, - "ema_span_1": 1354.531959111327, - "enabled": true, - "markup_range": 0.0564658804360234, - "min_markup": 0.004536239776665542, - "n_close_orders": 2, - "qty_pct_close": 0.010318006553638565, - "qty_pct_entry": 0.011391045897932045, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.0564509175305545}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1147.2175746240093, - "delay_between_fills_minutes_entry": 1344.4174639926466, - "delay_weight_close": 55.08480444793561, - "delay_weight_entry": 5.527524296320485, - "ema_dist_close": -0.005818784796419914, - "ema_dist_entry": 0.002984551312844512, - "ema_span_0": 1388.9714235200731, - "ema_span_1": 842.8980135040856, - "enabled": true, - "markup_range": 0.051935804057843316, - "min_markup": 0.007278101464767998, - "n_close_orders": 10, - "qty_pct_close": 0.010044210831340496, - "qty_pct_entry": 0.011622579759049822, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82638218593147}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RUNEUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RUNEUSDT.json deleted file mode 100644 index 6d2e35ccd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RUNEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 945.6295755258033, - "delay_between_fills_minutes_entry": 1129.3036024850337, - "delay_weight_close": 49.428798145227546, - "delay_weight_entry": 23.244316646980483, - "ema_dist_close": 0.001639520327615728, - "ema_dist_entry": -0.0014840288276448815, - "ema_span_0": 1436.8600255462013, - "ema_span_1": 513.6808484133488, - "enabled": true, - "markup_range": 0.0003920027644607531, - "min_markup": 0.004511865898676224, - "n_close_orders": 14, - "qty_pct_close": 0.018725398018618583, - "qty_pct_entry": 0.023096401118212994, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.778662774848787}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 942.2049874105497, - "delay_between_fills_minutes_entry": 1251.261921045089, - "delay_weight_close": 17.45312514381512, - "delay_weight_entry": 3.4964432705152726, - "ema_dist_close": -0.006942503015183075, - "ema_dist_entry": -0.021781367944668163, - "ema_span_0": 1131.7075219768979, - "ema_span_1": 1193.713092725062, - "enabled": true, - "markup_range": 0.029097064292162727, - "min_markup": 0.006842915004951266, - "n_close_orders": 13, - "qty_pct_close": 0.02750739300096945, - "qty_pct_entry": 0.01742283349182834, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.802182324665643}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RVNUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RVNUSDT.json deleted file mode 100644 index febcfeac8..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/RVNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1432.4006108800506, - "delay_between_fills_minutes_entry": 751.6201541712261, - "delay_weight_close": 54.68570415972831, - "delay_weight_entry": 13.94705474048763, - "ema_dist_close": -0.00800383974635666, - "ema_dist_entry": -0.0034491862148341964, - "ema_span_0": 889.5236258098854, - "ema_span_1": 1153.6741997558875, - "enabled": true, - "markup_range": 0.010076527626258228, - "min_markup": 0.006650382120173611, - "n_close_orders": 9, - "qty_pct_close": 0.010011236171168177, - "qty_pct_entry": 0.013288174370963723, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.979238060621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1413.5558565686624, - "delay_between_fills_minutes_entry": 784.9899665507813, - "delay_weight_close": 63.11789338578739, - "delay_weight_entry": 5.831921044029341, - "ema_dist_close": 0.0008992223320789086, - "ema_dist_entry": -0.0002838257924038979, - "ema_span_0": 1348.0735885470365, - "ema_span_1": 1071.0504500508011, - "enabled": true, - "markup_range": 0.00468923487929032, - "min_markup": 0.00869470771701888, - "n_close_orders": 8, - "qty_pct_close": 0.011935308303393993, - "qty_pct_entry": 0.016084273347267565, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.702971993720947}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SANDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SANDUSDT.json deleted file mode 100644 index fd70bfdca..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1277.3251244157748, - "delay_between_fills_minutes_entry": 1216.057734091145, - "delay_weight_close": 66.32059985194971, - "delay_weight_entry": 15.073984925181811, - "ema_dist_close": 0.0006115295846138357, - "ema_dist_entry": -3.278822778787082e-05, - "ema_span_0": 1230.121989346604, - "ema_span_1": 949.180179825066, - "enabled": true, - "markup_range": 0.05370800531749068, - "min_markup": 0.008098935350333665, - "n_close_orders": 11, - "qty_pct_close": 0.015146066038749706, - "qty_pct_entry": 0.01006698912163443, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.393369727504902}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.988118806758, - "delay_between_fills_minutes_entry": 317.0114095372921, - "delay_weight_close": 64.21435545867797, - "delay_weight_entry": 9.41060851968836, - "ema_dist_close": 0.0020302865280332426, - "ema_dist_entry": -0.005320416273806871, - "ema_span_0": 1001.1702346693172, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.004255931827100837, - "min_markup": 0.0045768707404305825, - "n_close_orders": 9, - "qty_pct_close": 0.0119074650277676, - "qty_pct_entry": 0.014054182208395603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.886623694505245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SCUSDT.json deleted file mode 100644 index a118841dd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SFPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SFPUSDT.json deleted file mode 100644 index 897089973..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SFPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1180.0481078095363, - "delay_between_fills_minutes_entry": 1158.6523360850267, - "delay_weight_close": 7.604553658110747, - "delay_weight_entry": 8.622864021901783, - "ema_dist_close": -0.00150514095494208, - "ema_dist_entry": -0.001821113340755755, - "ema_span_0": 1339.331876102062, - "ema_span_1": 1263.7802735710468, - "enabled": true, - "markup_range": 0.028262924932764028, - "min_markup": 0.00646301080764169, - "n_close_orders": 4, - "qty_pct_close": 0.01133254977434379, - "qty_pct_entry": 0.014183682481879092, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.824586513799584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 420.05730200240686, - "delay_between_fills_minutes_entry": 265.93351344495, - "delay_weight_close": 33.93623140772891, - "delay_weight_entry": 3.192867291682798, - "ema_dist_close": 6.434720699154509e-05, - "ema_dist_entry": 0.0029982761820646674, - "ema_span_0": 1426.5561150104795, - "ema_span_1": 126.45044412539376, - "enabled": true, - "markup_range": 0.0005204528353887026, - "min_markup": 0.008931203100696214, - "n_close_orders": 14, - "qty_pct_close": 0.024598801545197287, - "qty_pct_entry": 0.010657415832710532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999921154506266}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SKLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SKLUSDT.json deleted file mode 100644 index 58ba94ae5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SKLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.3841045307663, - "delay_between_fills_minutes_entry": 139.11685765116061, - "delay_weight_close": 32.57298427264517, - "delay_weight_entry": 10.863799906543202, - "ema_dist_close": 0.0001790996759514929, - "ema_dist_entry": -0.01556809129267982, - "ema_span_0": 1172.7020073545473, - "ema_span_1": 1311.1838295528844, - "enabled": true, - "markup_range": 0.0018156850489901677, - "min_markup": 0.005292289979349248, - "n_close_orders": 8, - "qty_pct_close": 0.011440690681059679, - "qty_pct_entry": 0.012989161682118546, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.118642784734591}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SNXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SNXUSDT.json deleted file mode 100644 index 8eb4edc8e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1100.3857610128607, - "delay_between_fills_minutes_entry": 1317.1843014097822, - "delay_weight_close": 52.36617452345331, - "delay_weight_entry": 25.065813227627977, - "ema_dist_close": 0.0018406156685246136, - "ema_dist_entry": -0.0021629806866756986, - "ema_span_0": 384.57539860449975, - "ema_span_1": 968.939877291105, - "enabled": true, - "markup_range": 0.00518174965441663, - "min_markup": 0.009137505966543993, - "n_close_orders": 3, - "qty_pct_close": 0.016767580080325854, - "qty_pct_entry": 0.011749739286854877, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.403247514686073}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SOLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SOLUSDT.json deleted file mode 100644 index 8af1d4258..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SOLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 945.6295755258033, - "delay_between_fills_minutes_entry": 1129.3036024850337, - "delay_weight_close": 49.428798145227546, - "delay_weight_entry": 23.244316646980483, - "ema_dist_close": 0.001639520327615728, - "ema_dist_entry": -0.0014840288276448815, - "ema_span_0": 1436.8600255462013, - "ema_span_1": 513.6808484133488, - "enabled": true, - "markup_range": 0.0003920027644607531, - "min_markup": 0.004511865898676224, - "n_close_orders": 14, - "qty_pct_close": 0.018725398018618583, - "qty_pct_entry": 0.023096401118212994, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.778662774848787}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1166.2682193834287, - "delay_between_fills_minutes_entry": 924.9693928996616, - "delay_weight_close": 9.012005130044658, - "delay_weight_entry": 10.014226918020972, - "ema_dist_close": 0.001300366690463992, - "ema_dist_entry": -0.009524111902725823, - "ema_span_0": 104.16865859365394, - "ema_span_1": 1237.9800285975011, - "enabled": true, - "markup_range": 0.0006152167094315753, - "min_markup": 0.0046416221852974135, - "n_close_orders": 3, - "qty_pct_close": 0.010030416069800579, - "qty_pct_entry": 0.012447396919236986, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.0201405801931305}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SPELLUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SPELLUSDT.json deleted file mode 100644 index ff025c7d7..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SPELLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.9064026488463, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 58.79959585708705, - "delay_weight_entry": 10.959076388436209, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.02772778938036382, - "ema_span_0": 1138.739721733395, - "ema_span_1": 5.0062918268054695, - "enabled": true, - "markup_range": 0.051451689323101686, - "min_markup": 0.008293567493695307, - "n_close_orders": 12, - "qty_pct_close": 0.017450501048647354, - "qty_pct_entry": 0.01101553339681686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.934438426010102}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SRMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SRMUSDT.json deleted file mode 100644 index 2c21261fa..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SRMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SSVUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SSVUSDT.json deleted file mode 100644 index b8c0c3ab4..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SSVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STGUSDT.json deleted file mode 100644 index 0008af459..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1283.4882543935753, - "delay_between_fills_minutes_entry": 1282.4088245805738, - "delay_weight_close": 54.34792163679577, - "delay_weight_entry": 20.418515739638806, - "ema_dist_close": 0.0029242067519374454, - "ema_dist_entry": 0.0008165675084510879, - "ema_span_0": 994.3367379926599, - "ema_span_1": 728.3527546430134, - "enabled": true, - "markup_range": 0.005630467403920814, - "min_markup": 0.009990225854072622, - "n_close_orders": 6, - "qty_pct_close": 0.01024891611858392, - "qty_pct_entry": 0.010013352583831101, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18888554382496}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1381.1160054128657, - "delay_between_fills_minutes_entry": 1347.5188751377245, - "delay_weight_close": 1.1272380480882425, - "delay_weight_entry": 30.856317598870728, - "ema_dist_close": -0.008101076345204367, - "ema_dist_entry": 0.002410721458934586, - "ema_span_0": 1439.752127389134, - "ema_span_1": 923.6747669056006, - "enabled": true, - "markup_range": 0.0021272906471157312, - "min_markup": 0.001, - "n_close_orders": 10, - "qty_pct_close": 0.011347620091498152, - "qty_pct_entry": 0.01005415129671987, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.182110363256823}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STMXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STMXUSDT.json deleted file mode 100644 index c8ff72c45..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1293.9282047823156, - "delay_between_fills_minutes_entry": 651.579910510287, - "delay_weight_close": 36.593318352552075, - "delay_weight_entry": 13.383443451865407, - "ema_dist_close": 0.0028334812925875836, - "ema_dist_entry": -0.0030329433178104916, - "ema_span_0": 490.1520758240891, - "ema_span_1": 929.4300297956834, - "enabled": true, - "markup_range": 0.0011258315006138482, - "min_markup": 0.007259543701320098, - "n_close_orders": 7, - "qty_pct_close": 0.0110481141972596, - "qty_pct_entry": 0.0161440743178088, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.9128327794569575}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 661.5327842815884, - "delay_between_fills_minutes_entry": 1422.911446368116, - "delay_weight_close": 20.1036989519919, - "delay_weight_entry": 14.593169305490902, - "ema_dist_close": 0.0024139434527850434, - "ema_dist_entry": -0.017215502842211797, - "ema_span_0": 804.8379512088446, - "ema_span_1": 1378.155523961007, - "enabled": true, - "markup_range": 0.031155813413785798, - "min_markup": 0.008732526426521305, - "n_close_orders": 10, - "qty_pct_close": 0.013660104874959405, - "qty_pct_entry": 0.011053381188245741, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.361107441858329}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STORJUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STORJUSDT.json deleted file mode 100644 index 75c519e7e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STORJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1213.8808604575988, - "delay_between_fills_minutes_entry": 319.8805659148345, - "delay_weight_close": 2.663350062481493, - "delay_weight_entry": 9.039510921080103, - "ema_dist_close": 0.0029441187892161966, - "ema_dist_entry": -0.006899703006473927, - "ema_span_0": 9.082344740316472, - "ema_span_1": 935.7226512380286, - "enabled": true, - "markup_range": 0.0009430202211385166, - "min_markup": 0.0029601774438838702, - "n_close_orders": 7, - "qty_pct_close": 0.010202109440378334, - "qty_pct_entry": 0.010000497266764313, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.645104986712898}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STXUSDT.json deleted file mode 100644 index bd0145e27..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/STXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1246.453675439523, - "delay_between_fills_minutes_entry": 1043.4026414875514, - "delay_weight_close": 59.00638071467824, - "delay_weight_entry": 12.783527392042384, - "ema_dist_close": -0.001174471722058444, - "ema_dist_entry": -0.0008280528023009111, - "ema_span_0": 905.0803044663683, - "ema_span_1": 1274.1281529111866, - "enabled": true, - "markup_range": 0.02939339511460445, - "min_markup": 0.006431641992599841, - "n_close_orders": 10, - "qty_pct_close": 0.036761321855843444, - "qty_pct_entry": 0.02461482313117535, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99284196964666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1390.2579752796764, - "delay_between_fills_minutes_entry": 669.8954279400186, - "delay_weight_close": 84.03300146614866, - "delay_weight_entry": 10.121719907764334, - "ema_dist_close": 0.0022563487350934085, - "ema_dist_entry": -0.002912675468766438, - "ema_span_0": 1369.8957114906796, - "ema_span_1": 1434.3800383113123, - "enabled": true, - "markup_range": 0.0028831060261065985, - "min_markup": 0.007500370955703341, - "n_close_orders": 9, - "qty_pct_close": 0.010002536340047495, - "qty_pct_entry": 0.011834287558867746, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.403108172035272}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SUIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SUIUSDT.json deleted file mode 100644 index 208fdf6b0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SUIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SUSHIUSDT.json deleted file mode 100644 index 63d38f2b2..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SUSHIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SXPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SXPUSDT.json deleted file mode 100644 index fad9258b3..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/SXPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1314.578145412391, - "delay_between_fills_minutes_entry": 100.28723787428561, - "delay_weight_close": 78.14571859493338, - "delay_weight_entry": 2.7716252876689538, - "ema_dist_close": 0.0007729457957130902, - "ema_dist_entry": 0.0016966902883107766, - "ema_span_0": 1125.276945974064, - "ema_span_1": 1127.349961319618, - "enabled": true, - "markup_range": 0.0006493513539585139, - "min_markup": 0.005664696465398646, - "n_close_orders": 8, - "qty_pct_close": 0.010859581141978205, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.76473341355905}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/THETAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/THETAUSDT.json deleted file mode 100644 index f33cd90ed..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/THETAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.8750005823726, - "delay_between_fills_minutes_entry": 933.0747102807682, - "delay_weight_close": 59.31298431253631, - "delay_weight_entry": 27.35368231497901, - "ema_dist_close": -0.0010273524468826557, - "ema_dist_entry": -0.0002409218479536592, - "ema_span_0": 17.169308700991014, - "ema_span_1": 828.8804772625111, - "enabled": true, - "markup_range": 0.0025172044764906073, - "min_markup": 0.007396176653168389, - "n_close_orders": 16, - "qty_pct_close": 0.010621157486843023, - "qty_pct_entry": 0.01742535821106157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.357276278752911}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 117.61266519534016, - "delay_weight_close": 22.90997304169476, - "delay_weight_entry": 14.256381652203737, - "ema_dist_close": 1.042146393954212e-06, - "ema_dist_entry": -0.009186440298592299, - "ema_span_0": 534.2014868965927, - "ema_span_1": 947.5578932680734, - "enabled": true, - "markup_range": 0.0006327390122436608, - "min_markup": 0.004532160264044096, - "n_close_orders": 14, - "qty_pct_close": 0.01116374643841166, - "qty_pct_entry": 0.010002450092506773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983118834246604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TLMUSDT.json deleted file mode 100644 index 71ca8d916..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TOMOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TOMOUSDT.json deleted file mode 100644 index a18457469..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TOMOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1313.078179169225, - "delay_between_fills_minutes_entry": 1265.4598713161108, - "delay_weight_close": 51.96813352923502, - "delay_weight_entry": 10.367594004064612, - "ema_dist_close": -0.005627015083725043, - "ema_dist_entry": -0.00033016392070428735, - "ema_span_0": 640.6578608703904, - "ema_span_1": 1051.7951289460389, - "enabled": true, - "markup_range": 0.05946191874708107, - "min_markup": 0.009866835584826344, - "n_close_orders": 10, - "qty_pct_close": 0.010510838954766451, - "qty_pct_entry": 0.011175291184124324, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.744920847616848}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1381.1160054128657, - "delay_between_fills_minutes_entry": 1347.5188751377245, - "delay_weight_close": 1.1272380480882425, - "delay_weight_entry": 30.856317598870728, - "ema_dist_close": -0.008101076345204367, - "ema_dist_entry": 0.002410721458934586, - "ema_span_0": 1439.752127389134, - "ema_span_1": 923.6747669056006, - "enabled": true, - "markup_range": 0.0021272906471157312, - "min_markup": 0.001, - "n_close_orders": 10, - "qty_pct_close": 0.011347620091498152, - "qty_pct_entry": 0.01005415129671987, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.182110363256823}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRBUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRBUSDT.json deleted file mode 100644 index d55babb94..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 792.7998608335537, - "delay_between_fills_minutes_entry": 1262.9601813506247, - "delay_weight_close": 74.5991022439449, - "delay_weight_entry": 11.256738573441421, - "ema_dist_close": 0.0006792744366925414, - "ema_dist_entry": 0.0017573923343787562, - "ema_span_0": 186.24306469826516, - "ema_span_1": 1020.7377514815222, - "enabled": true, - "markup_range": 0.046105698494058225, - "min_markup": 0.007092101160748101, - "n_close_orders": 8, - "qty_pct_close": 0.010940083239478404, - "qty_pct_entry": 0.01277151716107362, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.70984829450165}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 777.462989171898, - "delay_between_fills_minutes_entry": 449.35955007194895, - "delay_weight_close": 42.13287998364174, - "delay_weight_entry": 8.60856119267638, - "ema_dist_close": -0.00498330690028925, - "ema_dist_entry": 0.0017512000496953453, - "ema_span_0": 1345.7031661674787, - "ema_span_1": 1306.8930690468742, - "enabled": true, - "markup_range": 0.017215392105539868, - "min_markup": 0.002232034564319618, - "n_close_orders": 8, - "qty_pct_close": 0.01022144014111894, - "qty_pct_entry": 0.011849392460712512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.38641895100172}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRUUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRUUSDT.json deleted file mode 100644 index 62e720a23..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1180.0481078095363, - "delay_between_fills_minutes_entry": 1158.6523360850267, - "delay_weight_close": 7.604553658110747, - "delay_weight_entry": 8.622864021901783, - "ema_dist_close": -0.00150514095494208, - "ema_dist_entry": -0.001821113340755755, - "ema_span_0": 1339.331876102062, - "ema_span_1": 1263.7802735710468, - "enabled": true, - "markup_range": 0.028262924932764028, - "min_markup": 0.00646301080764169, - "n_close_orders": 4, - "qty_pct_close": 0.01133254977434379, - "qty_pct_entry": 0.014183682481879092, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.824586513799584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1071.7321448776502, - "delay_between_fills_minutes_entry": 608.4339463035063, - "delay_weight_close": 47.700175722135015, - "delay_weight_entry": 7.570410307946368, - "ema_dist_close": -0.0032534951737690663, - "ema_dist_entry": -0.015400883777569794, - "ema_span_0": 901.2066666132317, - "ema_span_1": 1295.1303089278313, - "enabled": true, - "markup_range": 0.04596908396510209, - "min_markup": 0.008067229828822261, - "n_close_orders": 5, - "qty_pct_close": 0.011542071704623675, - "qty_pct_entry": 0.01410069807249177, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.958301334593878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRXUSDT.json deleted file mode 100644 index 6a60183a9..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TUSDT.json deleted file mode 100644 index 4e2475538..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/TUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 117.61266519534016, - "delay_weight_close": 22.90997304169476, - "delay_weight_entry": 14.256381652203737, - "ema_dist_close": 1.042146393954212e-06, - "ema_dist_entry": -0.009186440298592299, - "ema_span_0": 534.2014868965927, - "ema_span_1": 947.5578932680734, - "enabled": true, - "markup_range": 0.0006327390122436608, - "min_markup": 0.004532160264044096, - "n_close_orders": 14, - "qty_pct_close": 0.01116374643841166, - "qty_pct_entry": 0.010002450092506773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983118834246604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UMAUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UMAUSDT.json deleted file mode 100644 index 19afcb02c..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UMAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1332.7987126249104, - "delay_between_fills_minutes_entry": 624.9168506512478, - "delay_weight_close": 88.8538847686371, - "delay_weight_entry": 23.99292759292018, - "ema_dist_close": 0.0002927075317135663, - "ema_dist_entry": -0.003574502696154154, - "ema_span_0": 1019.0195072593476, - "ema_span_1": 665.9141008553138, - "enabled": true, - "markup_range": 0.05333111971959553, - "min_markup": 0.00735610034529312, - "n_close_orders": 7, - "qty_pct_close": 0.022098395982313356, - "qty_pct_entry": 0.010016520510945722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.765112397875368}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UNFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UNFIUSDT.json deleted file mode 100644 index 637a56065..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UNFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1392.8792537027443, - "delay_between_fills_minutes_entry": 872.4126544485439, - "delay_weight_close": 69.75491294053022, - "delay_weight_entry": 14.973670421469889, - "ema_dist_close": 1.4264432521890424e-05, - "ema_dist_entry": -0.043303820246895997, - "ema_span_0": 396.40626615349055, - "ema_span_1": 389.1072980748438, - "enabled": true, - "markup_range": 0.01887366608125784, - "min_markup": 0.005284386528563718, - "n_close_orders": 10, - "qty_pct_close": 0.019909263439227443, - "qty_pct_entry": 0.011936709883053167, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.560326581540767}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 820.7095359893672, - "delay_weight_close": 78.68968193948258, - "delay_weight_entry": 0, - "ema_dist_close": -0.0038648572551458734, - "ema_dist_entry": -0.04552424529181222, - "ema_span_0": 1216.7234950151756, - "ema_span_1": 797.7321684213772, - "enabled": true, - "markup_range": 0.04033942435116666, - "min_markup": 0.009652309506809365, - "n_close_orders": 10, - "qty_pct_close": 0.01000391130234922, - "qty_pct_entry": 0.013532372454122314, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.488706402202238}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UNIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UNIUSDT.json deleted file mode 100644 index 2e20dd6f5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/UNIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.6404338319678, - "delay_between_fills_minutes_entry": 1434.862098457989, - "delay_weight_close": 57.87473707247886, - "delay_weight_entry": 12.005038442814577, - "ema_dist_close": 0.0023061123016823275, - "ema_dist_entry": -0.0003165055969744564, - "ema_span_0": 1106.653870711679, - "ema_span_1": 1415.0014471505149, - "enabled": true, - "markup_range": 0.05200737467941337, - "min_markup": 0.006477086291229681, - "n_close_orders": 3, - "qty_pct_close": 0.010070821540046473, - "qty_pct_entry": 0.013077879611665143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.047583055325157}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 934.5622413670984, - "delay_between_fills_minutes_entry": 39.572690499285066, - "delay_weight_close": 52.908231439142476, - "delay_weight_entry": 0.6932251456211235, - "ema_dist_close": 0.0025041454577122233, - "ema_dist_entry": 6.89649686684348e-05, - "ema_span_0": 1384.998897272804, - "ema_span_1": 1307.9600410633623, - "enabled": true, - "markup_range": 4.258456436992088e-05, - "min_markup": 0.003739942548195558, - "n_close_orders": 7, - "qty_pct_close": 0.01728334200174955, - "qty_pct_entry": 0.011184784497331334, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.496918334099302}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/USDCUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/USDCUSDT.json deleted file mode 100644 index 7a9953bac..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/USDCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1255.7695283248577, - "delay_between_fills_minutes_entry": 1296.0126089200369, - "delay_weight_close": 55.82391802311442, - "delay_weight_entry": 58.54378807746673, - "ema_dist_close": -0.0031683814845681565, - "ema_dist_entry": -0.008266728487231714, - "ema_span_0": 1369.1522002969482, - "ema_span_1": 1242.3011202357745, - "enabled": true, - "markup_range": 0.000695502154123218, - "min_markup": 0.0032333360142341723, - "n_close_orders": 2, - "qty_pct_close": 0.04640615838436692, - "qty_pct_entry": 0.010347812658492163, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.589797190261674}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/VETUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/VETUSDT.json deleted file mode 100644 index ec030ffa5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/VETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1138.446659492275, - "delay_between_fills_minutes_entry": 1066.6134971825088, - "delay_weight_close": 89.85740175989847, - "delay_weight_entry": 7.113185862499532, - "ema_dist_close": 0.0028433580169823494, - "ema_dist_entry": 0.002602029066924209, - "ema_span_0": 901.5065919580145, - "ema_span_1": 997.2413531863783, - "enabled": true, - "markup_range": 0.05864578324591525, - "min_markup": 0.009529901923419248, - "n_close_orders": 5, - "qty_pct_close": 0.011688307341322927, - "qty_pct_entry": 0.015516605369897211, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.857673642964043}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 942.2049874105497, - "delay_between_fills_minutes_entry": 1251.261921045089, - "delay_weight_close": 17.45312514381512, - "delay_weight_entry": 3.4964432705152726, - "ema_dist_close": -0.006942503015183075, - "ema_dist_entry": -0.021781367944668163, - "ema_span_0": 1131.7075219768979, - "ema_span_1": 1193.713092725062, - "enabled": true, - "markup_range": 0.029097064292162727, - "min_markup": 0.006842915004951266, - "n_close_orders": 13, - "qty_pct_close": 0.02750739300096945, - "qty_pct_entry": 0.01742283349182834, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.802182324665643}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WAVESUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WAVESUSDT.json deleted file mode 100644 index 11fe87bba..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WAVESUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1061.8823999064584, - "delay_between_fills_minutes_entry": 1012.1825530990295, - "delay_weight_close": 35.409202373884135, - "delay_weight_entry": 32.95956402925812, - "ema_dist_close": -0.007254519009069184, - "ema_dist_entry": 0.0028304482415728097, - "ema_span_0": 91.16702196899816, - "ema_span_1": 91.93736565179938, - "enabled": true, - "markup_range": 0.0031895140493152776, - "min_markup": 0.0030837805934416707, - "n_close_orders": 4, - "qty_pct_close": 0.010458652758586526, - "qty_pct_entry": 0.012868236452401689, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.966008726830031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 823.925380691432, - "delay_between_fills_minutes_entry": 552.1101561076499, - "delay_weight_close": 80.76346040980073, - "delay_weight_entry": 5.923744767045681, - "ema_dist_close": 0.0026632234530420723, - "ema_dist_entry": -0.005803973299114309, - "ema_span_0": 943.0370411200279, - "ema_span_1": 1422.5397241747166, - "enabled": true, - "markup_range": 0.0038455296273103945, - "min_markup": 0.004971921043439715, - "n_close_orders": 16, - "qty_pct_close": 0.01979557808628567, - "qty_pct_entry": 0.010060880479196744, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.693793947683548}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WLDUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WLDUSDT.json deleted file mode 100644 index 55c208441..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1296.1419739084013, - "delay_between_fills_minutes_entry": 147.02021689326304, - "delay_weight_close": 5.97148502628611, - "delay_weight_entry": 3.650032916171652, - "ema_dist_close": 0.000970137623367213, - "ema_dist_entry": -0.0020118711305088465, - "ema_span_0": 914.6314864360197, - "ema_span_1": 988.0233545150836, - "enabled": true, - "markup_range": 0.0004247384515813301, - "min_markup": 0.006149104388253391, - "n_close_orders": 9, - "qty_pct_close": 0.019408268413854183, - "qty_pct_entry": 0.01459981809009704, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.128695941373563}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WOOUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WOOUSDT.json deleted file mode 100644 index 185ab1042..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/WOOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.9284392347556, - "delay_between_fills_minutes_entry": 851.6691833284603, - "delay_weight_close": 45.35882563779744, - "delay_weight_entry": 26.883220255129054, - "ema_dist_close": 0.0006882160335942308, - "ema_dist_entry": 0.0018579347621751389, - "ema_span_0": 1187.368091952627, - "ema_span_1": 1265.4502225890506, - "enabled": true, - "markup_range": 0.0015247693691875356, - "min_markup": 0.006610726762835915, - "n_close_orders": 4, - "qty_pct_close": 0.01400566944581456, - "qty_pct_entry": 0.015544797728112843, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.55569866634186}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.988118806758, - "delay_between_fills_minutes_entry": 317.0114095372921, - "delay_weight_close": 64.21435545867797, - "delay_weight_entry": 9.41060851968836, - "ema_dist_close": 0.0020302865280332426, - "ema_dist_entry": -0.005320416273806871, - "ema_span_0": 1001.1702346693172, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.004255931827100837, - "min_markup": 0.0045768707404305825, - "n_close_orders": 9, - "qty_pct_close": 0.0119074650277676, - "qty_pct_entry": 0.014054182208395603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.886623694505245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XEMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XEMUSDT.json deleted file mode 100644 index a7d35aa3b..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XEMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 611.0171335895814, - "delay_between_fills_minutes_entry": 696.1029097432362, - "delay_weight_close": 99.49420280916445, - "delay_weight_entry": 22.132445358986754, - "ema_dist_close": -0.0012094435127389547, - "ema_dist_entry": 0.0009945364711174236, - "ema_span_0": 418.10103687119744, - "ema_span_1": 1050.7259444611627, - "enabled": true, - "markup_range": 0.045833565129538345, - "min_markup": 0.009061315448339465, - "n_close_orders": 13, - "qty_pct_close": 0.04997856157558594, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.190728344474344}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XLMUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XLMUSDT.json deleted file mode 100644 index b326386fe..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1248.1789885059768, - "delay_between_fills_minutes_entry": 227.99268514064005, - "delay_weight_close": 78.75473228984815, - "delay_weight_entry": 6.216960673508106, - "ema_dist_close": 0.0026028078903315615, - "ema_dist_entry": 0.003, - "ema_span_0": 784.5152476941988, - "ema_span_1": 1205.366418561911, - "enabled": true, - "markup_range": 0.05917662143888649, - "min_markup": 0.009918070200054691, - "n_close_orders": 7, - "qty_pct_close": 0.03103642627381348, - "qty_pct_entry": 0.010006216470470716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.58215952037477}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1151.2725786705696, - "delay_between_fills_minutes_entry": 1432.5918922967433, - "delay_weight_close": 11.022693608393448, - "delay_weight_entry": 14.839016724652891, - "ema_dist_close": 0.001372637460468898, - "ema_dist_entry": 0.0027645404826423885, - "ema_span_0": 1348.563732319282, - "ema_span_1": 541.1280889127311, - "enabled": true, - "markup_range": 0.022185663602024702, - "min_markup": 0.009584419776066605, - "n_close_orders": 14, - "qty_pct_close": 0.010066138265541362, - "qty_pct_entry": 0.010002330324521512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.967567048842325}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XMRUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XMRUSDT.json deleted file mode 100644 index b88b046cc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XRPUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XRPUSDT.json deleted file mode 100644 index d8373fbc1..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XRPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1022.8864815436656, - "delay_between_fills_minutes_entry": 490.5600353595079, - "delay_weight_close": 72.37618149523273, - "delay_weight_entry": 41.018339144892835, - "ema_dist_close": 0.001322610222533517, - "ema_dist_entry": 0.0019311796604976857, - "ema_span_0": 587.962722777956, - "ema_span_1": 660.7285425992538, - "enabled": true, - "markup_range": 0.0014137528485443944, - "min_markup": 0.004172374633890429, - "n_close_orders": 5, - "qty_pct_close": 0.020668900143290286, - "qty_pct_entry": 0.01153287491899116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.816195008286176}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XTZUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XTZUSDT.json deleted file mode 100644 index 81f4bd3b0..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XTZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.2858732950951, - "delay_between_fills_minutes_entry": 1064.1999737368885, - "delay_weight_close": 30.6934224241991, - "delay_weight_entry": 13.78344958517849, - "ema_dist_close": 0.0029961186212629186, - "ema_dist_entry": 0.0017285088847224179, - "ema_span_0": 1379.646505892805, - "ema_span_1": 1399.6487424791053, - "enabled": true, - "markup_range": 0.032259655163425244, - "min_markup": 0.009630695090030625, - "n_close_orders": 15, - "qty_pct_close": 0.01750845517398313, - "qty_pct_entry": 0.010103584476829602, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.993594179024495}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.3847458857667, - "delay_between_fills_minutes_entry": 838.5393872061234, - "delay_weight_close": 88.58314009171943, - "delay_weight_entry": 34.909096468946856, - "ema_dist_close": -0.0015739922757253414, - "ema_dist_entry": 0.0007447866287026189, - "ema_span_0": 1328.1554955509337, - "ema_span_1": 495.56532674545684, - "enabled": true, - "markup_range": 0.00043257196724793336, - "min_markup": 0.006486053071877406, - "n_close_orders": 9, - "qty_pct_close": 0.01302058085821121, - "qty_pct_entry": 0.017741049955391983, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.922611965005485}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XVGUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XVGUSDT.json deleted file mode 100644 index b649faafd..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XVGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XVSUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XVSUSDT.json deleted file mode 100644 index 455789e1e..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/XVSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1345.4851141881727, - "delay_between_fills_minutes_entry": 315.0473994919766, - "delay_weight_close": 85.60285991396627, - "delay_weight_entry": 12.367303720940644, - "ema_dist_close": -0.0010377260560565, - "ema_dist_entry": -0.0003301296683804859, - "ema_span_0": 1409.5225953185495, - "ema_span_1": 285.3695267567089, - "enabled": true, - "markup_range": 0.04000082654119734, - "min_markup": 0.009168461112122278, - "n_close_orders": 9, - "qty_pct_close": 0.025643411052427862, - "qty_pct_entry": 0.011798853510332347, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.794884245929113}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/YFIUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/YFIUSDT.json deleted file mode 100644 index 650f99dfc..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/YFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.8471219862013, - "delay_between_fills_minutes_entry": 1439.5546497907865, - "delay_weight_close": 57.88964637046297, - "delay_weight_entry": 13.090442704461383, - "ema_dist_close": 0.002996520452507227, - "ema_dist_entry": -0.0033451476752006455, - "ema_span_0": 367.80671025597053, - "ema_span_1": 1350.9596433183763, - "enabled": true, - "markup_range": 0.058798133871946545, - "min_markup": 0.0070946380295461185, - "n_close_orders": 12, - "qty_pct_close": 0.011131520461024794, - "qty_pct_entry": 0.012949698111735146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.246610551859352}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZECUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZECUSDT.json deleted file mode 100644 index 990e51cd5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1077.1807282484492, - "delay_between_fills_minutes_entry": 1232.7128505088735, - "delay_weight_close": 73.02572088977536, - "delay_weight_entry": 14.453691276160244, - "ema_dist_close": 0.0026294226803143914, - "ema_dist_entry": 0.0029811359697856695, - "ema_span_0": 1150.1390184501067, - "ema_span_1": 1374.864691153405, - "enabled": true, - "markup_range": 0.0585552665236782, - "min_markup": 0.008875991138911835, - "n_close_orders": 14, - "qty_pct_close": 0.013612979997873373, - "qty_pct_entry": 0.011835520328508337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.515438059683117}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1335.2768819845921, - "delay_between_fills_minutes_entry": 428.6975600221851, - "delay_weight_close": 50.78557583382557, - "delay_weight_entry": 25.83468775753399, - "ema_dist_close": -0.005729792068735952, - "ema_dist_entry": -0.0060008799575101785, - "ema_span_0": 615.8987912234022, - "ema_span_1": 389.18468385438194, - "enabled": true, - "markup_range": 0.002004695884103621, - "min_markup": 0.005257696384174906, - "n_close_orders": 10, - "qty_pct_close": 0.010713783063561551, - "qty_pct_entry": 0.01028958370444903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.369243812144566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZENUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZENUSDT.json deleted file mode 100644 index 63c54a593..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1416.1153650952176, - "delay_between_fills_minutes_entry": 570.3850781127543, - "delay_weight_close": 80.62403879064334, - "delay_weight_entry": 10.533059367550711, - "ema_dist_close": -0.004926565330522571, - "ema_dist_entry": -0.0011861057194005778, - "ema_span_0": 1257.5415142575794, - "ema_span_1": 802.4313763607826, - "enabled": true, - "markup_range": 0.046085086334199374, - "min_markup": 0.006026896367362984, - "n_close_orders": 10, - "qty_pct_close": 0.014247805595023916, - "qty_pct_entry": 0.011877898151771853, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.865239505061227}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.4439537906833, - "delay_between_fills_minutes_entry": 284.9948072242528, - "delay_weight_close": 85.83752226983684, - "delay_weight_entry": 11.644392476918501, - "ema_dist_close": 0.0014532398114953044, - "ema_dist_entry": -0.012907490908855493, - "ema_span_0": 1350.1084840401143, - "ema_span_1": 1245.3609442867687, - "enabled": true, - "markup_range": 0.004792893120458578, - "min_markup": 0.0038254230464410737, - "n_close_orders": 9, - "qty_pct_close": 0.01851960244535793, - "qty_pct_entry": 0.015076926731944766, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.729020699832065}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZILUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZILUSDT.json deleted file mode 100644 index bb2adff33..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1053.9336473036074, - "delay_between_fills_minutes_entry": 1188.4226158590905, - "delay_weight_close": 50.94012285173099, - "delay_weight_entry": 13.488278639236169, - "ema_dist_close": -0.000736672543383453, - "ema_dist_entry": -0.009249579125312891, - "ema_span_0": 427.3829297315412, - "ema_span_1": 1012.1527607797397, - "enabled": true, - "markup_range": 0.057311990775531674, - "min_markup": 0.009098065116248126, - "n_close_orders": 9, - "qty_pct_close": 0.015332472506392128, - "qty_pct_entry": 0.01048726383021, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.30218176740931}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1087.8317230532139, - "delay_between_fills_minutes_entry": 341.6585799112227, - "delay_weight_close": 28.709964448295608, - "delay_weight_entry": 3.008641385238876, - "ema_dist_close": 0.0014068078828880085, - "ema_dist_entry": -0.0023821325100421347, - "ema_span_0": 967.569404557553, - "ema_span_1": 1429.8804216665167, - "enabled": true, - "markup_range": 4.574240958871176e-05, - "min_markup": 0.002134869709565852, - "n_close_orders": 3, - "qty_pct_close": 0.010862519071344659, - "qty_pct_entry": 0.010027442621645625, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.690588576699774}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZRXUSDT.json b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZRXUSDT.json deleted file mode 100644 index c3a5f86e5..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/ZRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1013.6556446866676, - "delay_between_fills_minutes_entry": 1229.5627009493573, - "delay_weight_close": 7.691433939208178, - "delay_weight_entry": 12.411067676945622, - "ema_dist_close": -0.0050419833070748914, - "ema_dist_entry": -0.014153233650744827, - "ema_span_0": 544.7634186204002, - "ema_span_1": 1375.3233788175166, - "enabled": true, - "markup_range": 0.04852565958059424, - "min_markup": 0.009222670732232471, - "n_close_orders": 8, - "qty_pct_close": 0.023931971215108764, - "qty_pct_entry": 0.010499875693731325, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.826494852634767}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 865.5767058037161, - "delay_between_fills_minutes_entry": 623.505580582898, - "delay_weight_close": 72.77213379158796, - "delay_weight_entry": 13.768099031341677, - "ema_dist_close": -0.0005115188655945352, - "ema_dist_entry": -0.00046516004195135667, - "ema_span_0": 913.6304517414763, - "ema_span_1": 1058.9216820979677, - "enabled": true, - "markup_range": 0.01549903792013474, - "min_markup": 0.00888148578140243, - "n_close_orders": 10, - "qty_pct_close": 0.026008643320479384, - "qty_pct_entry": 0.01965479447816872, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.733412544264802}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/metrics_clock_2023-11-10.txt b/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/metrics_clock_2023-11-10.txt deleted file mode 100644 index 4184ba531..000000000 --- a/configs/live/single_symbol_optimizations/archived/clock/2023-11-10/metrics_clock_2023-11-10.txt +++ /dev/null @@ -1,440 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-11-10 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| TRXUSDT | 0.001545 | 0.001252 | 0.141 | 0.05892 | 0.01321 | 0.0154 | 136.1 | 0.09912 | 0.05159 | 0.09231 | 0.2014 | 1393.66 | 275999999.998 | -| CRVUSDT | 0.0006147 | 0.001018 | 0.04582 | 0.01218 | 0.02278 | 0.01946 | 51.08 | 0.09944 | 0.07807 | 0.07768 | 0.2188 | 1163.71 | 275999999.999 | -| EOSUSDT | 0.0009313 | 0.001178 | 0.09531 | 0.03478 | 0.01388 | 0.01492 | 59.43 | 0.09163 | 0.05236 | 0.0923 | 0.1533 | 1400.66 | 275999999.999 | -| DUSKUSDT | 0.000508 | 0.0009672 | 0.05289 | 0.02212 | 0.009879 | 0.01077 | 17.73 | 0.08958 | 0.08878 | 0.08423 | 0.1433 | 670.85 | 275999999.999 | -| TOMOUSDT | 0.0007582 | 0.0007786 | 0.0445 | 0.01919 | 0.02009 | 0.019 | 54.05 | 0.09925 | 0.0762 | 0.08733 | 0.171 | 1122.71 | 275999999.999 | -| AAVEUSDT | 0.0008563 | 0.0009943 | 0.07795 | 0.02591 | 0.02016 | 0.01832 | 46.97 | 0.09046 | 0.08806 | 0.08376 | 0.1517 | 1118.71 | 275999999.999 | -| EGLDUSDT | 0.0007905 | 0.001345 | 0.09418 | 0.04724 | 0.01529 | 0.01965 | 65.85 | 0.09281 | 0.06289 | 0.08231 | 0.1983 | 1150.71 | 275999999.999 | -| ALPHAUSDT | 0.0005321 | 0.0009965 | 0.06229 | 0.02193 | 0.01831 | 0.01835 | 59.93 | 0.09935 | 0.04298 | 0.08778 | 0.2197 | 1080.71 | 275999999.999 | -| CTSIUSDT | 0.0005803 | 0.0009705 | 0.06282 | 0.0154 | 0.01755 | 0.01659 | 80.0 | 0.09503 | 0.0513 | 0.08605 | 0.2383 | 743.85 | 275999999.999 | -| ETHUSDT | 0.0005621 | 0.0007247 | 0.06809 | 0.01012 | 0.01158 | 0.01123 | 64.97 | 0.05818 | 0.03092 | 0.04182 | 0.1143 | 1408.0 | 275999999.999 | -| XVGUSDT | 0.001059 | 0.00135 | 0.206 | 0.1177 | 0.01713 | 0.01465 | 40.65 | 0.08088 | 0.06554 | 0.07632 | 0.09775 | 126.5 | 275999999.999 | -| OMGUSDT | 0.0007063 | 0.00106 | 0.0617 | 0.02646 | 0.01172 | 0.01148 | 61.8 | 0.06063 | 0.02801 | 0.05704 | 0.1547 | 1224.62 | 275999999.999 | -| MINAUSDT | 0.000815 | 0.0008784 | 0.08596 | 0.03419 | 0.00923 | 0.008402 | 31.88 | 0.05443 | 0.03885 | 0.05217 | 0.07466 | 274.54 | 275999999.999 | -| IDEXUSDT | 0.0006898 | 0.0008432 | 0.1226 | 0.06238 | 0.01489 | 0.01312 | 48.2 | 0.06866 | 0.1123 | 0.06739 | 0.09202 | 189.5 | 275999999.999 | -| ACHUSDT | 0.0005863 | 0.0006351 | 0.06091 | 0.01527 | 0.01421 | 0.01232 | 60.87 | 0.05909 | 0.0806 | 0.04097 | 0.07154 | 259.39 | 275999999.999 | -| QNTUSDT | 0.0006298 | 0.0004189 | 0.1197 | 0.04733 | 0.01234 | 0.01056 | 53.82 | 0.05814 | 0.1494 | 0.03977 | 0.06315 | 384.89 | 275999999.999 | -| FLMUSDT | 0.0009038 | 0.001121 | 0.07509 | 0.03099 | 0.02046 | 0.019 | 57.95 | 0.09221 | 0.0911 | 0.07952 | 0.1596 | 1135.71 | 275999999.999 | -| AXSUSDT | 0.0006994 | 0.001011 | 0.05872 | 0.01687 | 0.01896 | 0.01744 | 87.3 | 0.08401 | 0.07814 | 0.05644 | 0.168 | 1083.7 | 275999999.999 | -| UMAUSDT | 0.0008365 | 0.0007834 | 0.07071 | 0.02664 | 0.00846 | 0.008087 | 22.87 | 0.05261 | 0.05989 | 0.0521 | 0.05873 | 182.48 | 275999999.999 | -| ARKMUSDT | 0.000882 | 0.0008581 | 0.0391 | 0.01432 | 0.008601 | 0.00679 | 17.37 | 0.03271 | 0.06617 | 0.02606 | 0.04683 | 103.88 | 275999999.999 | -| TRBUSDT | 0.0006467 | 0.001015 | 0.04114 | 0.01469 | 0.02039 | 0.01904 | 58.55 | 0.09952 | 0.07533 | 0.08591 | 0.2014 | 1161.71 | 275999999.999 | -| HBARUSDT | 0.0008801 | 0.001814 | 0.07788 | 0.02835 | 0.01193 | 0.01334 | 39.82 | 0.09836 | 0.03433 | 0.09485 | 0.2024 | 966.71 | 275999999.999 | -| GALUSDT | 0.0007968 | 0.001342 | 0.1108 | 0.05576 | 0.01512 | 0.01431 | 40.45 | 0.07373 | 0.08073 | 0.0757 | 0.1762 | 552.41 | 275999999.999 | -| BANDUSDT | 0.0005405 | 0.0008325 | 0.04576 | 0.01079 | 0.02263 | 0.02084 | 78.62 | 0.0988 | 0.04923 | 0.06803 | 0.1306 | 1197.71 | 275999999.999 | -| AGIXUSDT | 0.0009782 | 0.0007414 | 0.06227 | 0.001318 | 0.01878 | 0.01639 | 37.27 | 0.08895 | 0.1369 | 0.04087 | 0.106 | 265.4 | 275999999.999 | -| DEFIUSDT | 0.0005728 | 0.001168 | 0.08826 | 0.03139 | 0.01752 | 0.01752 | 70.4 | 0.09835 | 0.09613 | 0.09672 | 0.1948 | 1167.71 | 275999999.999 | -| ENJUSDT | 0.0007594 | 0.001127 | 0.09161 | 0.03197 | 0.01876 | 0.01817 | 37.98 | 0.0999 | 0.06745 | 0.09346 | 0.2029 | 1135.71 | 275999999.999 | -| SNXUSDT | 0.0006767 | 0.001362 | 0.06014 | 0.02403 | 0.01467 | 0.01746 | 43.23 | 0.09116 | 0.03797 | 0.08278 | 0.1693 | 1181.7 | 275999999.999 | -| IOSTUSDT | 0.0006158 | 0.0007051 | 0.07968 | 0.02531 | 0.01662 | 0.01737 | 46.73 | 0.0987 | 0.1113 | 0.07553 | 0.2357 | 1356.66 | 275999999.999 | -| MTLUSDT | 0.0008269 | 0.001073 | 0.07337 | 0.02231 | 0.02067 | 0.02664 | 53.57 | 0.0951 | 0.06734 | 0.06867 | 0.2038 | 952.71 | 275999999.999 | -| FETUSDT | 0.0008009 | 0.001176 | 0.06078 | 0.01422 | 0.009418 | 0.007753 | 56.9 | 0.04191 | 0.003986 | 0.03674 | 0.0668 | 295.89 | 275999999.999 | -| HOTUSDT | 0.0005597 | 0.001409 | 0.04855 | 0.01909 | 0.009062 | 0.01251 | 49.45 | 0.09603 | 0.0569 | 0.09619 | 0.2234 | 953.71 | 275999999.999 | -| 1000SHIBUSDT | 0.0005833 | 0.001347 | 0.05837 | 0.0266 | 0.01006 | 0.01423 | 79.27 | 0.0945 | 0.05402 | 0.09261 | 0.17 | 912.26 | 275999999.999 | -| ZENUSDT | 0.000803 | 0.001187 | 0.07098 | 0.02006 | 0.01902 | 0.02002 | 46.68 | 0.09608 | 0.04936 | 0.07684 | 0.1986 | 1079.71 | 275999999.999 | -| SPELLUSDT | 0.0008874 | 0.0006695 | 0.0981 | 0.01795 | 0.01734 | 0.0145 | 34.78 | 0.07927 | 0.09829 | 0.06827 | 0.1237 | 428.5 | 275999999.999 | -| JASMYUSDT | 0.0006846 | 0.0008015 | 0.08242 | 0.01708 | 0.01506 | 0.01449 | 24.35 | 0.09231 | 0.05393 | 0.07411 | 0.1539 | 567.85 | 275999999.999 | -| RENUSDT | 0.0005134 | 0.0009214 | 0.0469 | 0.01044 | 0.01953 | 0.01859 | 55.3 | 0.0986 | 0.04077 | 0.07265 | 0.2032 | 1121.71 | 275999999.999 | -| BNBUSDT | 0.0007836 | 0.0009349 | 0.09139 | 0.03363 | 0.01299 | 0.01404 | 64.38 | 0.08282 | 0.05542 | 0.07806 | 0.1912 | 1367.66 | 275999999.999 | -| NEARUSDT | 0.0005569 | 0.0008937 | 0.08688 | 0.04612 | 0.0204 | 0.02141 | 51.27 | 0.09499 | 0.06208 | 0.09031 | 0.127 | 1119.66 | 275999999.999 | -| EDUUSDT | 0.0007483 | 0.0008636 | 0.09982 | 0.02772 | 0.01816 | 0.01597 | 26.62 | 0.0728 | 0.08021 | 0.04341 | 0.08625 | 192.5 | 275999999.999 | -| API3USDT | 0.0005019 | 0.001019 | 0.05671 | 0.008258 | 0.01591 | 0.01411 | 46.7 | 0.06792 | 0.04866 | 0.05118 | 0.1015 | 624.85 | 275999999.999 | -| AMBUSDT | 0.0009657 | 0.001106 | 0.06238 | 0.00853 | 0.01716 | 0.01329 | 14.6 | 0.06242 | 0.1137 | 0.04269 | 0.08245 | 223.5 | 275999999.999 | -| BELUSDT | 0.0006177 | 0.0008177 | 0.0442 | 0.01224 | 0.01999 | 0.01858 | 51.38 | 0.09207 | 0.07388 | 0.06819 | 0.178 | 1085.71 | 275999999.999 | -| CELRUSDT | 0.001023 | 0.002063 | 0.0954 | 0.04054 | 0.01496 | 0.01504 | 62.72 | 0.09552 | 0.02315 | 0.09336 | 0.2125 | 954.71 | 275999999.999 | -| DASHUSDT | 0.0005541 | 0.0006965 | 0.04809 | 0.009753 | 0.01691 | 0.01718 | 74.92 | 0.09438 | 0.06249 | 0.06222 | 0.2106 | 1373.66 | 275999999.999 | -| DENTUSDT | 0.0007139 | 0.0009243 | 0.07969 | 0.02523 | 0.01565 | 0.01579 | 34.47 | 0.09529 | 0.04581 | 0.07534 | 0.2029 | 959.83 | 275999999.999 | -| MAVUSDT | 0.001032 | 0.0008616 | 0.1374 | 0.06541 | 0.02132 | 0.01636 | 23.97 | 0.08334 | 0.1437 | 0.08069 | 0.09738 | 132.5 | 275999999.999 | -| YFIUSDT | 0.0006872 | 0.001389 | 0.08423 | 0.04609 | 0.01819 | 0.01886 | 67.53 | 0.09974 | 0.03945 | 0.09318 | 0.1719 | 1164.71 | 275999999.999 | -| ATAUSDT | 0.0007332 | 0.001029 | 0.07232 | 0.01166 | 0.01443 | 0.01253 | 53.4 | 0.05947 | 0.02244 | 0.04531 | 0.09183 | 799.85 | 275999999.999 | -| OCEANUSDT | 0.0009234 | 0.001319 | 0.06361 | 0.02101 | 0.01518 | 0.016 | 38.92 | 0.07475 | 0.0369 | 0.06136 | 0.1967 | 1100.71 | 275999999.999 | -| BLZUSDT | 0.0008412 | 0.001338 | 0.05649 | 0.01337 | 0.01962 | 0.01826 | 80.92 | 0.09919 | 0.02702 | 0.08677 | 0.2399 | 1147.7 | 275999999.999 | -| AVAXUSDT | 0.0008332 | 0.001898 | 0.08046 | 0.04947 | 0.01254 | 0.0177 | 68.9 | 0.09088 | 0.03761 | 0.08936 | 0.1667 | 1141.71 | 275999999.999 | -| SFPUSDT | 0.000714 | 0.0009961 | 0.08311 | 0.02011 | 0.0195 | 0.01799 | 55.82 | 0.09726 | 0.06287 | 0.07452 | 0.17 | 987.71 | 275999999.999 | -| ENSUSDT | 0.0006825 | 0.001295 | 0.115 | 0.06251 | 0.01476 | 0.01492 | 41.23 | 0.09422 | 0.05381 | 0.09269 | 0.1183 | 708.85 | 275999999.999 | -| 1000LUNCUSDT | 0.0006489 | 0.00119 | 0.05991 | 0.01632 | 0.00794 | 0.008203 | 55.05 | 0.05198 | 0.006979 | 0.04688 | 0.09215 | 425.46 | 275999999.999 | -| PHBUSDT | 0.0009067 | 0.0007658 | 0.08713 | 0.03647 | 0.01585 | 0.01345 | 38.63 | 0.06729 | 0.09218 | 0.06284 | 0.08778 | 265.39 | 275999999.999 | -| 1000FLOKIUSDT | 0.00143 | 0.0009874 | 0.06332 | 0.0146 | 0.00744 | 0.006486 | 29.67 | 0.03307 | 0.01774 | 0.0223 | 0.06092 | 186.31 | 275999999.999 | -| DOGEUSDT | 0.0008954 | 0.001799 | 0.07688 | 0.01243 | 0.01234 | 0.01244 | 63.68 | 0.06975 | 0.0494 | 0.04907 | 0.1275 | 1216.62 | 275999999.999 | -| BNXUSDT | 0.0008259 | 0.000965 | 0.1218 | 0.03054 | 0.0175 | 0.01627 | 53.47 | 0.08186 | 0.03185 | 0.06085 | 0.09202 | 259.38 | 275999999.999 | -| HIGHUSDT | 0.001134 | 0.0008727 | 0.09139 | 0.02233 | 0.01974 | 0.01634 | 25.92 | 0.07621 | 0.1273 | 0.05849 | 0.07084 | 274.89 | 275999999.999 | -| IMXUSDT | 0.0006304 | 0.001132 | 0.05257 | 0.0117 | 0.009846 | 0.008486 | 42.23 | 0.04757 | 0.0107 | 0.04091 | 0.1133 | 635.85 | 275999999.999 | -| 1INCHUSDT | 0.0005615 | 0.001323 | 0.06265 | 0.0369 | 0.007897 | 0.01115 | 41.27 | 0.08115 | 0.07801 | 0.07941 | 0.1551 | 1048.58 | 275999999.999 | -| XLMUSDT | 0.0007445 | 0.0008655 | 0.09456 | 0.03487 | 0.01443 | 0.0178 | 60.9 | 0.09991 | 0.07623 | 0.08729 | 0.2385 | 1388.66 | 275999999.999 | -| LITUSDT | 0.0005545 | 0.001132 | 0.05829 | 0.016 | 0.01931 | 0.01808 | 50.68 | 0.09909 | 0.08069 | 0.09226 | 0.1903 | 993.71 | 275999999.999 | -| LDOUSDT | 0.0007037 | 0.001059 | 0.08251 | 0.03984 | 0.01203 | 0.01203 | 75.45 | 0.0852 | 0.05105 | 0.08363 | 0.1133 | 412.5 | 275999999.999 | -| BLUEBIRDUSDT | 0.0005273 | 0.0005901 | 0.115 | 0.04826 | 0.008443 | 0.009052 | 27.13 | 0.05152 | 0.1322 | 0.0445 | 0.06997 | 371.5 | 275999999.999 | -| RLCUSDT | 0.0005727 | 0.0008574 | 0.03879 | 0.009333 | 0.02162 | 0.02061 | 48.95 | 0.09155 | 0.09665 | 0.063 | 0.2334 | 1195.71 | 275999999.999 | -| XVSUSDT | 0.0006547 | 0.0007245 | 0.06383 | 0.02093 | 0.01266 | 0.0131 | 59.42 | 0.07821 | 0.05883 | 0.06883 | 0.1066 | 209.89 | 275999999.999 | -| SXPUSDT | 0.0006821 | 0.001085 | 0.06261 | 0.01357 | 0.0199 | 0.01837 | 55.7 | 0.09356 | 0.08189 | 0.06978 | 0.151 | 1205.62 | 275999999.999 | -| AGLDUSDT | 0.001402 | 0.001197 | 0.1398 | 0.08382 | 0.01524 | 0.01271 | 98.97 | 0.09105 | 0.1157 | 0.08889 | 0.1183 | 102.89 | 275999999.999 | -| PENDLEUSDT | 0.0006058 | 0.0009207 | 0.1089 | 0.03437 | 0.01504 | 0.01454 | 44.37 | 0.09116 | 0.07109 | 0.08745 | 0.1054 | 103.89 | 275999999.999 | -| CHZUSDT | 0.000639 | 0.001505 | 0.04582 | 0.01472 | 0.009693 | 0.01117 | 64.95 | 0.05943 | 0.007515 | 0.0501 | 0.2192 | 1021.71 | 275999999.999 | -| KEYUSDT | 0.0005482 | 0.0008806 | 0.06564 | 0.005631 | 0.01493 | 0.01307 | 20.33 | 0.08023 | 0.09806 | 0.05067 | 0.1353 | 168.5 | 275999999.999 | -| MAGICUSDT | 0.0008924 | 0.001032 | 0.07105 | 0.01725 | 0.01776 | 0.01535 | 28.4 | 0.08684 | 0.06916 | 0.07942 | 0.1034 | 287.87 | 275999999.999 | -| RUNEUSDT | 0.0006103 | 0.001289 | 0.05837 | 0.02139 | 0.01431 | 0.01553 | 64.7 | 0.0937 | 0.02463 | 0.08506 | 0.2179 | 1160.7 | 275999999.999 | -| BLURUSDT | 0.001074 | 0.001197 | 0.1661 | 0.08187 | 0.01253 | 0.01219 | 26.68 | 0.08036 | 0.04425 | 0.07338 | 0.1379 | 194.5 | 275999999.999 | -| DOTUSDT | 0.000701 | 0.001485 | 0.1215 | 0.08252 | 0.0162 | 0.0195 | 69.18 | 0.08232 | 0.103 | 0.07723 | 0.2154 | 1173.71 | 275999999.999 | -| WLDUSDT | 0.001111 | 0.001519 | 0.07354 | 0.02848 | 0.01204 | 0.01178 | 32.88 | 0.09429 | 0.007261 | 0.08373 | 0.1499 | 107.5 | 275999999.999 | -| BATUSDT | 0.0007137 | 0.001083 | 0.08728 | 0.0322 | 0.01875 | 0.01718 | 50.53 | 0.09666 | 0.05784 | 0.09087 | 0.1576 | 1364.66 | 275999999.999 | -| INJUSDT | 0.0007494 | 0.001136 | 0.1285 | 0.07525 | 0.01756 | 0.01575 | 49.15 | 0.08711 | 0.148 | 0.09805 | 0.1224 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.000663 | 0.001476 | 0.06107 | 0.02455 | 0.01401 | 0.01513 | 73.02 | 0.09743 | 0.03448 | 0.09786 | 0.2289 | 1240.62 | 275999999.999 | -| COTIUSDT | 0.0007618 | 0.001246 | 0.08434 | 0.02972 | 0.01945 | 0.01712 | 26.93 | 0.09258 | 0.05809 | 0.08481 | 0.1871 | 973.71 | 275999999.999 | -| RADUSDT | 0.001228 | 0.0009832 | 0.1341 | 0.03991 | 0.01162 | 0.01008 | 30.83 | 0.05258 | 0.05289 | 0.04357 | 0.05487 | 182.5 | 275999999.999 | -| COMBOUSDT | 0.000854 | 0.000974 | 0.1524 | 0.08072 | 0.01914 | 0.01618 | 28.6 | 0.09209 | 0.131 | 0.08627 | 0.1078 | 159.5 | 275999999.999 | -| IOTAUSDT | 0.0007135 | 0.0006736 | 0.07642 | 0.02832 | 0.01922 | 0.01909 | 56.85 | 0.09666 | 0.0998 | 0.06299 | 0.2182 | 1365.66 | 275999999.999 | -| RVNUSDT | 0.000538 | 0.0008858 | 0.07415 | 0.01801 | 0.01564 | 0.01646 | 46.45 | 0.09982 | 0.0679 | 0.08752 | 0.1837 | 988.71 | 275999999.999 | -| ICXUSDT | 0.0005485 | 0.00108 | 0.06521 | 0.0373 | 0.0124 | 0.01498 | 79.3 | 0.09457 | 0.02963 | 0.08885 | 0.2101 | 1149.71 | 275999999.999 | -| RNDRUSDT | 0.0009174 | 0.001364 | 0.07425 | 0.0229 | 0.01137 | 0.009352 | 32.07 | 0.04971 | 0.01611 | 0.04274 | 0.07167 | 278.89 | 275999999.999 | -| XMRUSDT | 0.0007881 | 0.001129 | 0.09571 | 0.04254 | 0.01059 | 0.01341 | 36.25 | 0.09907 | 0.02862 | 0.09218 | 0.1834 | 1374.66 | 275999999.999 | -| CVXUSDT | 0.0008076 | 0.00071 | 0.1159 | 0.04073 | 0.01783 | 0.01598 | 58.95 | 0.08648 | 0.09946 | 0.08236 | 0.1278 | 412.49 | 275999999.999 | -| CTKUSDT | 0.000612 | 0.001164 | 0.05998 | 0.02375 | 0.01033 | 0.01143 | 43.82 | 0.06531 | 0.03218 | 0.05817 | 0.1827 | 1084.71 | 275999999.999 | -| COMPUSDT | 0.0008787 | 0.001139 | 0.07514 | 0.02663 | 0.0176 | 0.01687 | 46.73 | 0.09846 | 0.04397 | 0.09448 | 0.2198 | 1226.62 | 275999999.999 | -| GMXUSDT | 0.0009254 | 0.0009757 | 0.1298 | 0.03758 | 0.01448 | 0.01281 | 50.58 | 0.05615 | 0.07971 | 0.04818 | 0.06646 | 264.39 | 275999999.999 | -| TUSDT | 0.0005859 | 0.000472 | 0.04324 | 0.01338 | 0.0119 | 0.01199 | 48.35 | 0.07466 | 0.07887 | 0.0714 | 0.1073 | 280.46 | 275999999.999 | -| SUIUSDT | 0.001371 | 0.001062 | 0.111 | 0.03897 | 0.01508 | 0.01384 | 31.1 | 0.072 | 0.06888 | 0.07064 | 0.08696 | 189.33 | 275999999.999 | -| MKRUSDT | 0.0007241 | 0.00114 | 0.0567 | 0.02225 | 0.01065 | 0.01282 | 73.92 | 0.07676 | 0.05144 | 0.07346 | 0.206 | 1182.71 | 275999999.999 | -| XTZUSDT | 0.0005837 | 0.001036 | 0.08014 | 0.02851 | 0.01651 | 0.01638 | 79.93 | 0.09867 | 0.04369 | 0.09416 | 0.1819 | 1371.67 | 275999999.999 | -| SOLUSDT | 0.0005475 | 0.00117 | 0.05051 | 0.01869 | 0.01355 | 0.01523 | 70.18 | 0.08298 | 0.04674 | 0.08197 | 0.1632 | 1150.71 | 275999999.999 | -| OPUSDT | 0.0008659 | 0.001245 | 0.07922 | 0.02098 | 0.01782 | 0.01561 | 54.13 | 0.08725 | 0.03199 | 0.08448 | 0.1841 | 525.41 | 275999999.999 | -| STXUSDT | 0.0007166 | 0.001363 | 0.09392 | 0.02667 | 0.0146 | 0.01221 | 65.8 | 0.05892 | 0.08613 | 0.04041 | 0.05906 | 260.39 | 275999999.999 | -| THETAUSDT | 0.0007166 | 0.001413 | 0.06566 | 0.02645 | 0.01104 | 0.01357 | 48.3 | 0.09062 | 0.01909 | 0.0815 | 0.2337 | 1260.66 | 275999999.999 | -| ARBUSDT | 0.0009091 | 0.0004777 | 0.06517 | 0.005168 | 0.01499 | 0.01332 | 40.22 | 0.07099 | 0.1159 | 0.02939 | 0.03805 | 230.37 | 275999999.999 | -| SKLUSDT | 0.000728 | 0.001575 | 0.06677 | 0.02057 | 0.01878 | 0.0179 | 46.62 | 0.09593 | 0.03262 | 0.08702 | 0.1925 | 1065.68 | 275999999.999 | -| SSVUSDT | 0.001036 | 0.000983 | 0.1002 | 0.03716 | 0.01749 | 0.01466 | 41.08 | 0.07694 | 0.07197 | 0.07258 | 0.123 | 257.5 | 275999999.999 | -| LQTYUSDT | 0.001108 | 0.000869 | 0.04446 | 0.01055 | 0.01075 | 0.008526 | 40.63 | 0.03985 | 0.0339 | 0.02753 | 0.06908 | 243.5 | 275999999.999 | -| ASTRUSDT | 0.001237 | 0.0009168 | 0.09947 | 0.04162 | 0.01248 | 0.01029 | 30.55 | 0.04809 | 0.04428 | 0.04661 | 0.07134 | 267.89 | 275999999.999 | -| HOOKUSDT | 0.00105 | 0.0009412 | 0.0979 | 0.01422 | 0.01909 | 0.01588 | 38.25 | 0.07618 | 0.118 | 0.04521 | 0.06227 | 289.87 | 275999999.999 | -| RDNTUSDT | 0.001009 | 0.001127 | 0.114 | 0.04 | 0.01267 | 0.01147 | 44.02 | 0.05936 | 0.01741 | 0.04512 | 0.07715 | 217.5 | 275999999.999 | -| NMRUSDT | 0.0008633 | 0.001235 | 0.139 | 0.04889 | 0.01204 | 0.01215 | 30.92 | 0.09278 | 0.02107 | 0.08469 | 0.112 | 139.5 | 275999999.999 | -| NKNUSDT | 0.001177 | 0.001464 | 0.08796 | 0.03239 | 0.01498 | 0.01613 | 53.63 | 0.09868 | 0.01288 | 0.08704 | 0.1886 | 943.71 | 275999999.999 | -| ALICEUSDT | 0.000874 | 0.001111 | 0.1148 | 0.04711 | 0.02065 | 0.01964 | 60.85 | 0.09022 | 0.03835 | 0.07004 | 0.1127 | 967.87 | 275999999.999 | -| UNFIUSDT | 0.001259 | 0.001716 | 0.07351 | 0.01742 | 0.01768 | 0.01642 | 25.85 | 0.09988 | 0.07328 | 0.08701 | 0.2462 | 992.71 | 275999999.999 | -| LTCUSDT | 0.0007422 | 0.0008169 | 0.06105 | 0.01303 | 0.01424 | 0.01559 | 51.77 | 0.09768 | 0.06217 | 0.08438 | 0.1973 | 1399.66 | 275999999.999 | -| CKBUSDT | 0.0008869 | 0.001011 | 0.07532 | 0.01718 | 0.01132 | 0.009391 | 31.33 | 0.05026 | 0.04495 | 0.04157 | 0.07739 | 253.5 | 275999999.999 | -| STMXUSDT | 0.0007165 | 0.0008592 | 0.0672 | 0.02425 | 0.01639 | 0.01717 | 44.0 | 0.09948 | 0.03843 | 0.08966 | 0.1771 | 961.71 | 275999999.999 | -| ZRXUSDT | 0.0005934 | 0.001026 | 0.0453 | 0.007496 | 0.01759 | 0.01586 | 39.32 | 0.0891 | 0.1256 | 0.06721 | 0.222 | 1232.62 | 275999999.999 | -| ICPUSDT | 0.0008115 | 0.0006348 | 0.08637 | 0.01459 | 0.01746 | 0.01436 | 30.07 | 0.0735 | 0.1264 | 0.05652 | 0.09377 | 407.89 | 275999999.999 | -| REEFUSDT | 0.001138 | 0.001188 | 0.1034 | 0.03519 | 0.02099 | 0.01828 | 43.08 | 0.09857 | 0.07859 | 0.09125 | 0.2064 | 989.7 | 275999999.999 | -| BTCDOMUSDT | 0.0006638 | 0.0003493 | 0.13 | 0.03031 | 0.01014 | 0.009354 | 65.35 | 0.04607 | 0.06622 | 0.03447 | 0.0468 | 870.85 | 275999999.999 | -| TRUUSDT | 0.0008219 | 0.001012 | 0.1014 | 0.002296 | 0.02122 | 0.01694 | 52.38 | 0.08726 | 0.1023 | 0.04845 | 0.1192 | 246.5 | 275999999.999 | -| XRPUSDT | 0.0008925 | 0.001297 | 0.06209 | 0.01799 | 0.01052 | 0.01163 | 45.93 | 0.07129 | 0.02664 | 0.0631 | 0.2113 | 1402.65 | 275999999.999 | -| MDTUSDT | 0.001045 | 0.00121 | 0.158 | 0.07472 | 0.01157 | 0.01034 | 42.88 | 0.05145 | 0.01331 | 0.04367 | 0.07088 | 131.5 | 275999999.999 | -| PERPUSDT | 0.0005811 | 0.0005192 | 0.08768 | 0.04814 | 0.01365 | 0.01293 | 46.77 | 0.08836 | 0.1388 | 0.08731 | 0.1088 | 247.5 | 275999999.999 | -| 1000PEPEUSDT | 0.001268 | 0.001759 | 0.1162 | 0.04254 | 0.0151 | 0.01428 | 56.27 | 0.0944 | 0.008215 | 0.08096 | 0.2017 | 187.31 | 275999999.999 | -| DGBUSDT | 0.000575 | 0.001064 | 0.0821 | 0.02694 | 0.0154 | 0.01692 | 60.07 | 0.09895 | 0.06921 | 0.08583 | 0.2276 | 931.85 | 275999999.999 | -| UNIUSDT | 0.0005918 | 0.001045 | 0.07384 | 0.02377 | 0.01855 | 0.01616 | 53.38 | 0.08109 | 0.03766 | 0.06754 | 0.1489 | 1146.71 | 275999999.999 | -| XEMUSDT | 0.0002604 | 0.0007762 | 0.02711 | 0.006579 | 0.01217 | 0.01459 | 53.4 | 0.07956 | 0.1306 | 0.06191 | 0.2376 | 980.71 | 276000000.0 | -| KNCUSDT | 0.0004179 | 0.001114 | 0.03222 | 0.005088 | 0.01615 | 0.01561 | 85.48 | 0.0948 | 0.0285 | 0.07153 | 0.2448 | 1234.63 | 276000000.0 | -| LRCUSDT | 0.0004572 | 0.000886 | 0.03756 | 0.005514 | 0.01768 | 0.0157 | 66.92 | 0.0865 | 0.1328 | 0.05125 | 0.2484 | 1115.7 | 276000000.0 | -| QTUMUSDT | 0.0003406 | 0.0007656 | 0.02832 | 0.002673 | 0.01459 | 0.0137 | 85.7 | 0.06417 | 0.03889 | 0.02628 | 0.2162 | 1357.66 | 276000000.0 | -| RSRUSDT | 0.0004719 | 0.00113 | 0.05742 | 0.01441 | 0.01985 | 0.0176 | 57.05 | 0.09359 | 0.06778 | 0.08581 | 0.1362 | 1115.7 | 276000000.0 | -| MANAUSDT | 0.0003629 | 0.0008848 | 0.04697 | 0.00495 | 0.01565 | 0.01439 | 77.02 | 0.07162 | 0.06405 | 0.04517 | 0.1828 | 968.71 | 276000000.0 | -| ROSEUSDT | 0.0003022 | 0.0004469 | 0.05289 | 0.01424 | 0.01722 | 0.01715 | 68.83 | 0.09452 | 0.07141 | 0.07262 | 0.1481 | 677.85 | 276000000.0 | -| FTMUSDT | 0.0003444 | 0.001007 | 0.03347 | 0.006719 | 0.01773 | 0.0171 | 67.95 | 0.08742 | 0.05325 | 0.06061 | 0.2189 | 1140.71 | 276000000.0 | -| LPTUSDT | 0.0004254 | 0.0008836 | 0.04543 | 0.006221 | 0.01713 | 0.01496 | 68.28 | 0.08097 | 0.03064 | 0.06283 | 0.1738 | 727.85 | 276000000.0 | -| FXSUSDT | 0.0002731 | 0.0005423 | 0.03958 | 0.005317 | 0.0135 | 0.01014 | 39.73 | 0.04361 | 0.0457 | 0.02538 | 0.05321 | 292.87 | 276000000.0 | -| AUDIOUSDT | 0.0001744 | 0.0004388 | 0.03995 | 0.0141 | 0.01795 | 0.01635 | 56.48 | 0.08115 | 0.1437 | 0.06632 | 0.1555 | 811.85 | 276000000.0 | -| ETCUSDT | 0.000394 | 0.0006325 | 0.04337 | 0.009252 | 0.01657 | 0.01726 | 82.87 | 0.09578 | 0.06933 | 0.0696 | 0.1875 | 1392.66 | 276000000.0 | -| OGNUSDT | 0.000499 | 0.001185 | 0.06402 | 0.0141 | 0.01864 | 0.01613 | 60.48 | 0.08219 | 0.1143 | 0.06231 | 0.2284 | 951.71 | 276000000.0 | -| WOOUSDT | 0.0004822 | 0.0009384 | 0.04334 | 0.01619 | 0.01085 | 0.01102 | 53.48 | 0.07133 | 0.01682 | 0.06505 | 0.1176 | 579.85 | 276000000.0 | -| SUSHIUSDT | 0.00025 | 0.0003747 | 0.04113 | 0.009439 | 0.02272 | 0.02088 | 59.87 | 0.09997 | 0.1008 | 0.05223 | 0.1344 | 1160.71 | 276000000.0 | -| CELOUSDT | 0.0004757 | 0.000552 | 0.06264 | 0.01608 | 0.01853 | 0.01631 | 47.02 | 0.0835 | 0.1109 | 0.07242 | 0.09865 | 772.85 | 276000000.0 | -| APEUSDT | 0.0003221 | 0.0004737 | 0.04243 | 0.008172 | 0.01549 | 0.01336 | 56.03 | 0.06063 | 0.07795 | 0.03579 | 0.08257 | 601.37 | 276000000.0 | -| ADAUSDT | 0.0003048 | 0.0004221 | 0.04195 | 0.007778 | 0.01578 | 0.01614 | 63.13 | 0.0844 | 0.07193 | 0.05874 | 0.1685 | 1377.66 | 276000000.0 | -| GRTUSDT | 0.0004809 | 0.001203 | 0.04781 | 0.01284 | 0.01164 | 0.01189 | 45.18 | 0.0861 | 0.08192 | 0.07589 | 0.2204 | 1054.71 | 276000000.0 | -| APTUSDT | 0.0003165 | 0.0006353 | 0.05349 | 0.02478 | 0.01049 | 0.01197 | 49.45 | 0.08808 | 0.04817 | 0.08083 | 0.2287 | 385.92 | 276000000.0 | -| HFTUSDT | 0.0004717 | 0.0003071 | 0.04016 | 0.009224 | 0.01542 | 0.01434 | 61.2 | 0.08783 | 0.145 | 0.07555 | 0.1026 | 216.5 | 276000000.0 | -| LUNA2USDT | 0.0002615 | 0.000782 | 0.02199 | 0.001235 | 0.01049 | 0.009983 | 41.3 | 0.05441 | 0.1203 | 0.02513 | 0.2148 | 424.87 | 276000000.0 | -| BALUSDT | 0.0003857 | 0.00062 | 0.05319 | 0.01074 | 0.01936 | 0.0177 | 58.5 | 0.0999 | 0.04439 | 0.08629 | 0.1992 | 1163.71 | 276000000.0 | -| STGUSDT | 0.000364 | 0.0006167 | 0.07167 | 0.03487 | 0.01414 | 0.01295 | 63.78 | 0.0829 | 0.05335 | 0.07844 | 0.1109 | 440.5 | 276000000.0 | -| SANDUSDT | 0.0004864 | 0.001247 | 0.04997 | 0.01519 | 0.01684 | 0.01664 | 70.3 | 0.09953 | 0.05282 | 0.08826 | 0.2199 | 1017.71 | 276000000.0 | -| GTCUSDT | 0.0004101 | 0.0005996 | 0.06146 | 0.02166 | 0.02346 | 0.02105 | 57.0 | 0.09646 | 0.06699 | 0.07403 | 0.1795 | 880.85 | 276000000.0 | -| ONEUSDT | 0.0002716 | 0.0009625 | 0.06895 | 0.02654 | 0.01934 | 0.01847 | 63.0 | 0.09996 | 0.09554 | 0.09192 | 0.1883 | 965.71 | 276000000.0 | -| LINAUSDT | 0.0004656 | 0.0007125 | 0.05011 | 0.009176 | 0.02011 | 0.01739 | 64.78 | 0.08358 | 0.0615 | 0.06916 | 0.1823 | 964.71 | 276000000.0 | -| FLOWUSDT | 0.0003471 | 0.0006651 | 0.05467 | 0.01099 | 0.01565 | 0.01542 | 67.78 | 0.093 | 0.05737 | 0.08068 | 0.1517 | 636.85 | 276000000.0 | -| KAVAUSDT | 0.0003196 | 0.000563 | 0.03793 | 0.01433 | 0.01716 | 0.02299 | 74.57 | 0.06688 | 0.03335 | 0.04422 | 0.1495 | 1198.7 | 276000000.0 | -| JOEUSDT | 0.0002952 | 0.0003526 | 0.04628 | 0.009973 | 0.0162 | 0.01352 | 40.6 | 0.06093 | 0.1062 | 0.04281 | 0.06716 | 224.49 | 276000000.0 | -| ONTUSDT | 0.0004997 | 0.0009832 | 0.06651 | 0.0253 | 0.01686 | 0.01578 | 41.72 | 0.08489 | 0.04653 | 0.07713 | 0.141 | 1366.66 | 276000000.0 | -| DARUSDT | 0.0002457 | 0.0004398 | 0.06064 | 0.03289 | 0.0143 | 0.01391 | 61.97 | 0.08182 | 0.05811 | 0.07724 | 0.1036 | 558.85 | 276000000.0 | -| MATICUSDT | 0.0004673 | 0.001153 | 0.03947 | 0.01503 | 0.01105 | 0.01208 | 62.93 | 0.09874 | 0.02077 | 0.08869 | 0.2135 | 1112.71 | 276000000.0 | -| VETUSDT | 0.0004102 | 0.0007035 | 0.05114 | 0.01396 | 0.02049 | 0.01958 | 56.88 | 0.09514 | 0.07915 | 0.05555 | 0.2058 | 1363.66 | 276000000.0 | -| IDUSDT | 0.0003191 | 0.0005395 | 0.05915 | 0.02365 | 0.01673 | 0.01414 | 65.27 | 0.07158 | 0.06194 | 0.06489 | 0.1071 | 230.39 | 276000000.0 | -| ANKRUSDT | 0.0004643 | 0.001268 | 0.04648 | 0.0196 | 0.01477 | 0.01484 | 72.15 | 0.09631 | 0.09503 | 0.09473 | 0.1763 | 1015.71 | 276000000.0 | -| NEOUSDT | 0.0004349 | 0.0007897 | 0.04788 | 0.01174 | 0.01474 | 0.01428 | 52.37 | 0.06985 | 0.0412 | 0.04732 | 0.1141 | 1360.63 | 276000000.0 | -| BCHUSDT | 0.0003737 | 0.0004497 | 0.04116 | 0.003083 | 0.01541 | 0.0155 | 60.87 | 0.07691 | 0.06585 | 0.03091 | 0.2254 | 1408.0 | 276000000.0 | -| ANTUSDT | 0.0001952 | 0.0002697 | 0.04275 | 0.01908 | 0.01926 | 0.01836 | 71.98 | 0.09602 | 0.1141 | 0.07185 | 0.1233 | 681.83 | 276000000.0 | -| ARUSDT | 0.0002483 | 0.0006196 | 0.04039 | 0.005116 | 0.0177 | 0.01555 | 53.23 | 0.0742 | 0.09114 | 0.04739 | 0.1779 | 771.85 | 276000000.0 | -| FILUSDT | 0.0004113 | 0.0006605 | 0.04546 | 0.01471 | 0.01383 | 0.016 | 58.13 | 0.09932 | 0.04825 | 0.08737 | 0.2215 | 1118.75 | 276000000.0 | -| FOOTBALLUSDT | 0.0003343 | 0.0006046 | 0.05734 | 0.008196 | 0.01039 | 0.01049 | 54.88 | 0.05678 | 0.08615 | 0.0279 | 0.07596 | 433.87 | 276000000.0 | -| PEOPLEUSDT | 0.0004766 | 0.0009629 | 0.06049 | 0.006032 | 0.01912 | 0.01723 | 48.33 | 0.08401 | 0.0955 | 0.047 | 0.1273 | 684.83 | 276000000.0 | -| ATOMUSDT | 0.0003974 | 0.0006683 | 0.04341 | 0.009073 | 0.01817 | 0.01831 | 76.02 | 0.09502 | 0.05999 | 0.06676 | 0.174 | 1370.49 | 276000000.0 | -| ZILUSDT | 0.0004727 | 0.001014 | 0.06113 | 0.02225 | 0.01655 | 0.01627 | 44.28 | 0.0987 | 0.0931 | 0.09214 | 0.1771 | 1238.62 | 276000000.0 | -| LINKUSDT | 0.0004343 | 0.0009527 | 0.0577 | 0.0274 | 0.01309 | 0.0138 | 50.62 | 0.0905 | 0.05122 | 0.08923 | 0.2117 | 1391.66 | 276000000.0 | -| STORJUSDT | 0.0003825 | 0.0005721 | 0.04904 | 0.01611 | 0.01912 | 0.01786 | 58.52 | 0.09803 | 0.1118 | 0.08274 | 0.1765 | 1148.7 | 276000000.0 | -| KSMUSDT | 0.000294 | 0.0005286 | 0.03525 | 0.004817 | 0.01708 | 0.01478 | 50.8 | 0.06896 | 0.06815 | 0.03974 | 0.1313 | 1120.71 | 276000000.0 | -| ZECUSDT | 0.00046 | 0.001026 | 0.04885 | 0.02098 | 0.01664 | 0.01722 | 80.48 | 0.09873 | 0.03742 | 0.09005 | 0.1901 | 1372.66 | 276000000.0 | -| TLMUSDT | 0.0001825 | 0.0004235 | 0.1435 | 0.1105 | 0.01392 | 0.0144 | 51.1 | 0.09138 | 0.1248 | 0.0853 | 0.1163 | 223.48 | 276000000.0 | -| CFXUSDT | 0.0009222 | 0.0009359 | 0.1099 | 0.04263 | 0.02183 | 0.02006 | 63.72 | 0.1008 | 0.1289 | 0.09194 | 0.1132 | 261.39 | 276000813.687 | -| MASKUSDT | 0.0002472 | 0.0003444 | 0.03334 | 0.001855 | 0.02248 | 0.02068 | 59.33 | 0.1017 | 0.09715 | 0.03532 | 0.1106 | 803.85 | 276001728.704 | -| BTCUSDT | 0.0001503 | 0.0001993 | 0.03334 | 0.002 | 0.01605 | 0.01825 | 113.5 | 0.1019 | 0.1418 | 0.03516 | 0.2492 | 1408.0 | 276001931.348 | -| IOTXUSDT | 0.0003289 | 0.0004697 | 0.04894 | 0.00882 | 0.01976 | 0.01871 | 58.07 | 0.1069 | 0.08065 | 0.08648 | 0.1899 | 818.85 | 276006948.416 | -| CHRUSDT | 0.0004064 | 0.0009839 | 0.05616 | 0.01938 | 0.02104 | 0.02039 | 40.37 | 0.1132 | 0.1216 | 0.09241 | 0.1851 | 971.71 | 276013164.359 | -| 1000XECUSDT | 0.0001976 | 0.0002622 | 0.05813 | 0.01678 | 0.01817 | 0.01968 | 48.45 | 0.1077 | 0.157 | 0.08684 | 0.1886 | 782.85 | 276077729.041 | -| DYDXUSDT | 0.0001876 | 0.0004084 | 0.04736 | 0.01039 | 0.03103 | 0.02763 | 68.48 | 0.1393 | 0.1553 | 0.09743 | 0.1593 | 789.85 | 276092610.159 | -| BAKEUSDT | 0.0002363 | 0.0004897 | 0.04159 | 0.01575 | 0.0193 | 0.0186 | 56.98 | 0.1116 | 0.1765 | 0.09944 | 0.2169 | 903.71 | 276276568.527 | -| ARPAUSDT | 0.000198 | 0.0003453 | 0.04679 | 0.02348 | 0.01721 | 0.01679 | 74.55 | 0.08942 | 0.1836 | 0.08379 | 0.159 | 750.85 | 276335932.822 | -| GALAUSDT | 0.0001714 | 0.0004433 | 0.04428 | 0.01583 | 0.01893 | 0.02053 | 53.07 | 0.1425 | 0.1881 | 0.1308 | 0.2063 | 781.85 | 279504607.873 | -| C98USDT | 0.0002206 | 0.0002688 | 0.04778 | 0.01545 | 0.02329 | 0.02422 | 53.78 | 0.187 | 0.1698 | 0.1696 | 0.2046 | 806.85 | 283245080.502 | -| USDCUSDT | -4.882e-06 | -4.012e-06 | 0.0103 | 0.0 | 0.0001332 | 0.000158 | 23.97 | 0.001315 | 0.9729 | 0.001187 | 0.001192 | 241.29 | 284228558.14 | -| GMTUSDT | 0.0004476 | 0.0008175 | 0.1766 | 0.08953 | 0.02461 | 0.02849 | 68.67 | 0.1832 | 0.4669 | 0.1735 | 0.1925 | 603.83 | 286601095.65 | -| LEVERUSDT | -0.0006052 | 0.0004361 | 0.1769 | 0.1062 | 0.04178 | 0.03587 | 70.12 | 0.2596 | 0.645 | 0.2168 | 0.2345 | 223.49 | 292787293.131 | -| WAVESUSDT | 0.000577 | 0.00112 | 0.1472 | 0.1207 | 0.067 | 0.05874 | 19.03 | 0.09569 | 2.305 | 0.08698 | 0.206 | 1183.71 | 297548192.654 | -| KLAYUSDT | 8.279e-05 | 0.0001645 | 0.09709 | 0.07409 | 0.02357 | 0.0291 | 65.28 | 0.223 | 0.5017 | 0.2146 | 0.2844 | 757.85 | 325538144.885 | -| COCOSUSDT | 1.937e-05 | 0.0001937 | 0.03659 | 0.0 | 50.01 | 0.5047 | 4024.0 | 0.0453 | 0.504 | 0.008449 | 0.03264 | 260.38 | 667580176.194 | -| HNTUSDT | 0.0001746 | 0.0007357 | 0.1527 | 0.1311 | 10.05 | 0.1507 | 5615.0 | 0.1352 | 0.836 | 0.1257 | 0.2377 | 1136.71 | 832580312.053 | -| CVCUSDT | 0.000108 | 0.0006815 | 0.02725 | 0.00886 | 20.02 | 0.2166 | 8272.0 | 0.1204 | 0.2341 | 0.09491 | 0.2387 | 1092.71 | 1089621657.54 | -| FTTUSDT | 5.402e-05 | 0.0005402 | 0.04583 | 0.01757 | 50.01 | 0.5096 | 8636.0 | 0.07592 | 0.5145 | 0.05079 | 0.1065 | 572.85 | 1128859551.67 | -| BTSUSDT | 4.947e-05 | 0.0004413 | 0.1091 | 0.004941 | 30.01 | 0.3124 | 10740.0 | 0.08663 | 0.3366 | 0.0515 | 0.1734 | 1010.71 | 1337933058.63 | -| SRMUSDT | 4.155e-05 | 0.0002382 | 0.0309 | 0.00932 | 20.02 | 0.229 | 8616.0 | 0.1621 | 0.2999 | 0.1143 | 0.4622 | 1159.91 | 1338344657.88 | -| RAYUSDT | 8.009e-06 | 0.0001714 | 0.2079 | 0.1832 | 30.11 | 0.3872 | 8624.0 | 0.6401 | 1.164 | 0.411 | 0.5417 | 810.85 | 1457474256.15 | -| SCUSDT | 6.404e-05 | 0.0006404 | 0.02104 | 0.002763 | 40.01 | 0.4118 | 12230.0 | 0.08767 | 0.4315 | 0.0422 | 0.2294 | 940.71 | 1487548741.81 | -| BTCSTUSDT | 1.02e-06 | 1.02e-05 | 0.0001061 | 0.0 | 80.0 | 0.8018 | 23330.0 | 0.01126 | 0.8 | 0.0002598 | 0.007286 | 979.71 | 2600700000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| 1000FLOKIUSDT | 0.002542 | 0.001178 | 0.01989 | 0.00163 | 0.005939 | 0.006042 | 51.52 | 0.03499 | 0.0009537 | 0.01849 | 0.1138 | 186.31 | 275999999.997 | -| BLURUSDT | 0.003236 | 0.001779 | 0.09043 | 0.01788 | 0.01068 | 0.01064 | 58.6 | 0.06263 | 0.01209 | 0.05341 | 0.0951 | 194.5 | 275999999.997 | -| RADUSDT | 0.002517 | 0.001807 | 0.1509 | 0.0385 | 0.009237 | 0.008501 | 34.75 | 0.05159 | 0.01561 | 0.04303 | 0.07385 | 182.5 | 275999999.997 | -| LQTYUSDT | 0.002534 | 0.001889 | 0.08215 | 0.03968 | 0.01267 | 0.01444 | 25.1 | 0.0719 | 0.06241 | 0.07716 | 0.2373 | 243.5 | 275999999.997 | -| XVGUSDT | 0.001973 | 0.001698 | 0.07819 | 0.04231 | 0.008501 | 0.00835 | 51.43 | 0.05278 | 0.03801 | 0.05737 | 0.07968 | 126.5 | 275999999.998 | -| MINAUSDT | 0.001772 | 0.001332 | 0.04403 | 0.009933 | 0.006927 | 0.007072 | 79.22 | 0.04558 | 0.003616 | 0.0428 | 0.2033 | 274.54 | 275999999.998 | -| IDEXUSDT | 0.001874 | 0.00115 | 0.04529 | 0.004809 | 0.008782 | 0.006826 | 58.48 | 0.0328 | 0.04423 | 0.02817 | 0.04537 | 189.5 | 275999999.998 | -| ACHUSDT | 0.001543 | 0.001315 | 0.09003 | 0.03863 | 0.008491 | 0.01003 | 15.95 | 0.06976 | 0.04281 | 0.07703 | 0.1202 | 259.39 | 275999999.998 | -| UMAUSDT | 0.0021 | 0.001418 | 0.103 | 0.01045 | 0.009409 | 0.01005 | 44.53 | 0.06223 | 0.02311 | 0.05108 | 0.1744 | 182.48 | 275999999.998 | -| ARKMUSDT | 0.002311 | 0.002136 | 0.06909 | 0.01164 | 0.0069 | 0.006311 | 15.48 | 0.03468 | 0.002459 | 0.02272 | 0.06179 | 103.88 | 275999999.998 | -| GALUSDT | 0.001601 | 0.001637 | 0.1065 | 0.0354 | 0.0106 | 0.01235 | 55.55 | 0.07657 | 0.01076 | 0.07844 | 0.171 | 552.41 | 275999999.998 | -| FXSUSDT | 0.002087 | 0.001698 | 0.1839 | 0.08525 | 0.0157 | 0.01526 | 52.08 | 0.07615 | 0.06754 | 0.0868 | 0.1084 | 292.87 | 275999999.998 | -| FETUSDT | 0.001803 | 0.001693 | 0.0893 | 0.04061 | 0.01292 | 0.01316 | 39.58 | 0.08675 | 0.0398 | 0.09695 | 0.1392 | 295.89 | 275999999.998 | -| HOTUSDT | 0.001534 | 0.001538 | 0.1036 | 0.02091 | 0.01223 | 0.01265 | 39.58 | 0.08012 | 0.04216 | 0.08027 | 0.212 | 953.71 | 275999999.998 | -| SPELLUSDT | 0.001888 | 0.001977 | 0.1497 | 0.06235 | 0.006675 | 0.007878 | 22.98 | 0.0554 | 0.01817 | 0.0594 | 0.1281 | 428.5 | 275999999.998 | -| RENUSDT | 0.001915 | 0.001766 | 0.096 | 0.01772 | 0.01961 | 0.01871 | 50.55 | 0.09773 | 0.03507 | 0.08775 | 0.2477 | 1121.71 | 275999999.998 | -| EDUUSDT | 0.001714 | 0.00149 | 0.0435 | 0.01053 | 0.007915 | 0.007848 | 54.05 | 0.05004 | 0.02007 | 0.05095 | 0.1329 | 192.5 | 275999999.998 | -| AMBUSDT | 0.001751 | 0.001616 | 0.0748 | 0.009387 | 0.015 | 0.01554 | 71.37 | 0.08554 | 0.01829 | 0.07412 | 0.1602 | 223.5 | 275999999.998 | -| HFTUSDT | 0.001756 | 0.0009768 | 0.04444 | 0.006707 | 0.009081 | 0.007225 | 96.48 | 0.03612 | 0.02578 | 0.03819 | 0.06127 | 216.5 | 275999999.998 | -| MAVUSDT | 0.002188 | 0.002061 | 0.1193 | 0.05344 | 0.008149 | 0.009537 | 17.55 | 0.0736 | 0.02084 | 0.08118 | 0.1174 | 132.5 | 275999999.998 | -| OCEANUSDT | 0.001756 | 0.001818 | 0.1084 | 0.04436 | 0.01298 | 0.01425 | 39.47 | 0.0884 | 0.01469 | 0.09827 | 0.2212 | 1100.71 | 275999999.998 | -| BNXUSDT | 0.00208 | 0.001454 | 0.03024 | 0.0005775 | 0.009763 | 0.007659 | 73.87 | 0.03643 | 0.01264 | 0.01494 | 0.1039 | 259.38 | 275999999.998 | -| HIGHUSDT | 0.0018 | 0.002003 | 0.04873 | 0.008297 | 0.01028 | 0.008541 | 62.37 | 0.04534 | 0.005281 | 0.03903 | 0.08138 | 274.89 | 275999999.998 | -| LITUSDT | 0.001568 | 0.002072 | 0.07743 | 0.02497 | 0.01416 | 0.01318 | 67.95 | 0.08264 | 0.01977 | 0.09117 | 0.1933 | 993.71 | 275999999.998 | -| RLCUSDT | 0.001576 | 0.001641 | 0.08859 | 0.02588 | 0.01837 | 0.01886 | 66.82 | 0.0857 | 0.02359 | 0.0751 | 0.1919 | 1195.71 | 275999999.998 | -| PENDLEUSDT | 0.002046 | 0.001376 | 0.1595 | 0.08965 | 0.01592 | 0.0128 | 43.33 | 0.07151 | 0.1051 | 0.07876 | 0.09757 | 103.89 | 275999999.998 | -| CHZUSDT | 0.001981 | 0.00241 | 0.1203 | 0.04985 | 0.0083 | 0.008976 | 27.93 | 0.06253 | 0.01414 | 0.06406 | 0.1246 | 1021.71 | 275999999.998 | -| COMBOUSDT | 0.00225 | 0.001986 | 0.1125 | 0.04864 | 0.007131 | 0.00817 | 17.85 | 0.05669 | 0.01869 | 0.0615 | 0.09099 | 159.5 | 275999999.998 | -| SUIUSDT | 0.001801 | 0.001352 | 0.05702 | 0.02488 | 0.007651 | 0.007069 | 43.77 | 0.03817 | 0.01889 | 0.03847 | 0.07172 | 189.33 | 275999999.998 | -| ARBUSDT | 0.001523 | 0.001099 | 0.1031 | 0.02195 | 0.01521 | 0.0145 | 24.02 | 0.08738 | 0.07372 | 0.08294 | 0.1481 | 230.37 | 275999999.998 | -| SKLUSDT | 0.001668 | 0.001688 | 0.09314 | 0.03187 | 0.0128 | 0.01357 | 46.05 | 0.08417 | 0.008972 | 0.08876 | 0.1976 | 1065.68 | 275999999.998 | -| SSVUSDT | 0.001829 | 0.001559 | 0.04995 | 0.0104 | 0.00932 | 0.007989 | 80.07 | 0.04463 | 0.009961 | 0.04783 | 0.1011 | 257.5 | 275999999.998 | -| HOOKUSDT | 0.001795 | 0.001473 | 0.08726 | 0.02115 | 0.01505 | 0.01562 | 56.83 | 0.08485 | 0.02439 | 0.08897 | 0.1492 | 289.87 | 275999999.998 | -| RDNTUSDT | 0.00167 | 0.001308 | 0.0916 | 0.02909 | 0.01182 | 0.01016 | 37.03 | 0.06868 | 0.0455 | 0.07934 | 0.1096 | 217.5 | 275999999.998 | -| NMRUSDT | 0.001816 | 0.001465 | 0.07491 | 0.0178 | 0.01006 | 0.008502 | 36.02 | 0.04982 | 0.04806 | 0.048 | 0.1352 | 139.5 | 275999999.998 | -| CKBUSDT | 0.001554 | 0.001238 | 0.0576 | 0.01583 | 0.009761 | 0.008827 | 105.2 | 0.0625 | 0.04632 | 0.06852 | 0.1444 | 253.5 | 275999999.998 | -| REEFUSDT | 0.001503 | 0.001976 | 0.05981 | 0.01294 | 0.01084 | 0.009733 | 79.95 | 0.05266 | 0.00633 | 0.05215 | 0.2302 | 989.7 | 275999999.998 | -| TRUUSDT | 0.001639 | 0.001396 | 0.1213 | 0.04772 | 0.01762 | 0.01664 | 26.63 | 0.08462 | 0.06263 | 0.0923 | 0.1125 | 246.5 | 275999999.998 | -| TLMUSDT | 0.001739 | 0.0008866 | 0.02723 | 1.864e-05 | 0.008133 | 0.006969 | 93.45 | 0.03345 | 0.02255 | 0.01217 | 0.02928 | 223.48 | 275999999.998 | -| MDTUSDT | 0.002244 | 0.001667 | 0.1112 | 0.03227 | 0.0135 | 0.01388 | 21.67 | 0.09217 | 0.04527 | 0.08251 | 0.1801 | 131.5 | 275999999.998 | -| XEMUSDT | 0.001368 | 0.001616 | 0.08886 | 0.03284 | 0.009369 | 0.0112 | 48.65 | 0.07725 | 0.02745 | 0.0864 | 0.2357 | 980.71 | 275999999.999 | -| EOSUSDT | 0.0008078 | 0.001059 | 0.08115 | 0.02725 | 0.009851 | 0.0115 | 31.42 | 0.08725 | 0.06582 | 0.09792 | 0.2154 | 1400.66 | 275999999.999 | -| DUSKUSDT | 0.0009527 | 0.00105 | 0.06456 | 0.01541 | 0.009282 | 0.009303 | 34.4 | 0.05257 | 0.01407 | 0.04286 | 0.1201 | 670.85 | 275999999.999 | -| LEVERUSDT | 0.001155 | 0.001157 | 0.0951 | 0.03207 | 0.01435 | 0.01491 | 77.08 | 0.07969 | 0.02027 | 0.07673 | 0.1562 | 223.49 | 275999999.999 | -| CTSIUSDT | 0.0005673 | 0.0006054 | 0.04736 | 0.007447 | 0.01551 | 0.01573 | 54.7 | 0.08148 | 0.04134 | 0.05185 | 0.1948 | 743.85 | 275999999.999 | -| KNCUSDT | 0.0005427 | 0.0007715 | 0.0371 | 0.01143 | 0.01777 | 0.01542 | 54.92 | 0.08394 | 0.1018 | 0.09128 | 0.2184 | 1234.63 | 275999999.999 | -| OMGUSDT | 0.001331 | 0.001468 | 0.08148 | 0.03266 | 0.01075 | 0.01314 | 17.8 | 0.08761 | 0.04661 | 0.09976 | 0.2104 | 1224.62 | 275999999.999 | -| FLMUSDT | 0.0006371 | 0.000555 | 0.04924 | 0.01348 | 0.02332 | 0.02466 | 82.15 | 0.09438 | 0.1253 | 0.05242 | 0.1838 | 1135.71 | 275999999.999 | -| TRBUSDT | 0.000989 | 0.0008523 | 0.05132 | 0.01461 | 0.01918 | 0.01836 | 78.7 | 0.09426 | 0.05381 | 0.08909 | 0.2493 | 1161.71 | 275999999.999 | -| 1000XECUSDT | 0.001107 | 0.001118 | 0.1013 | 0.03913 | 0.0107 | 0.0146 | 51.07 | 0.0888 | 0.02494 | 0.07952 | 0.2217 | 782.85 | 275999999.999 | -| MANAUSDT | 0.0006735 | 0.0009637 | 0.04591 | 0.01816 | 0.00755 | 0.008455 | 25.43 | 0.04318 | 0.01437 | 0.04014 | 0.09706 | 968.71 | 275999999.999 | -| LPTUSDT | 0.0006213 | 0.0005644 | 0.04318 | 0.005826 | 0.01974 | 0.01952 | 64.18 | 0.09707 | 0.08685 | 0.07683 | 0.2095 | 727.85 | 275999999.999 | -| HBARUSDT | 0.0008157 | 0.001472 | 0.05732 | 0.02532 | 0.006804 | 0.008339 | 20.75 | 0.06946 | 0.04706 | 0.07705 | 0.2099 | 966.71 | 275999999.999 | -| AGIXUSDT | 0.001308 | 0.0009251 | 0.0447 | 0.00706 | 0.01392 | 0.01191 | 32.0 | 0.06589 | 0.09085 | 0.07101 | 0.1085 | 265.4 | 275999999.999 | -| DEFIUSDT | 0.0005504 | 0.0007531 | 0.07226 | 0.01429 | 0.01699 | 0.01406 | 46.62 | 0.05819 | 0.09958 | 0.05177 | 0.2027 | 1167.71 | 275999999.999 | -| ENJUSDT | 0.001188 | 0.001546 | 0.07069 | 0.01648 | 0.01293 | 0.01272 | 49.32 | 0.08094 | 0.04008 | 0.09397 | 0.1513 | 1135.71 | 275999999.999 | -| IOSTUSDT | 0.001119 | 0.001162 | 0.07767 | 0.02236 | 0.01285 | 0.01591 | 52.75 | 0.09774 | 0.02013 | 0.07507 | 0.2247 | 1356.66 | 275999999.999 | -| MTLUSDT | 0.0005937 | 0.0006395 | 0.04318 | 0.004333 | 0.02028 | 0.01915 | 42.17 | 0.09788 | 0.1272 | 0.06537 | 0.1486 | 952.71 | 275999999.999 | -| 1000SHIBUSDT | 0.0006613 | 0.0009304 | 0.03943 | 0.007941 | 0.006823 | 0.008948 | 30.53 | 0.05672 | 0.03244 | 0.04883 | 0.1764 | 912.26 | 275999999.999 | -| ZENUSDT | 0.001064 | 0.001256 | 0.0882 | 0.03065 | 0.01451 | 0.01407 | 48.3 | 0.08147 | 0.02622 | 0.08689 | 0.2292 | 1079.71 | 275999999.999 | -| JASMYUSDT | 0.001368 | 0.001747 | 0.05262 | 0.01471 | 0.007827 | 0.007529 | 50.48 | 0.04542 | 0.01654 | 0.04538 | 0.09412 | 567.85 | 275999999.999 | -| WOOUSDT | 0.0007943 | 0.0008635 | 0.07299 | 0.02037 | 0.01407 | 0.0133 | 40.0 | 0.06351 | 0.02834 | 0.04813 | 0.08011 | 579.85 | 275999999.999 | -| SUSHIUSDT | 0.0005905 | 0.0009498 | 0.02993 | 0.007052 | 0.0103 | 0.01062 | 88.62 | 0.04396 | 0.005914 | 0.02995 | 0.1945 | 1160.71 | 275999999.999 | -| CELOUSDT | 0.000829 | 0.001131 | 0.04246 | 0.01223 | 0.01028 | 0.009163 | 57.93 | 0.051 | 0.02549 | 0.05154 | 0.1418 | 772.85 | 275999999.999 | -| NEARUSDT | 0.0005061 | 0.001023 | 0.05001 | 0.01599 | 0.01686 | 0.01504 | 50.53 | 0.06733 | 0.05183 | 0.0583 | 0.1652 | 1119.66 | 275999999.999 | -| APEUSDT | 0.0007137 | 0.0008106 | 0.05855 | 0.009128 | 0.01546 | 0.01611 | 24.73 | 0.09359 | 0.08503 | 0.06717 | 0.2467 | 601.37 | 275999999.999 | -| API3USDT | 0.001105 | 0.001182 | 0.0581 | 0.0118 | 0.01289 | 0.0146 | 64.97 | 0.08288 | 0.00981 | 0.0495 | 0.1839 | 624.85 | 275999999.999 | -| CELRUSDT | 0.001153 | 0.001342 | 0.06917 | 0.0167 | 0.01711 | 0.01717 | 76.4 | 0.08873 | 0.01187 | 0.06709 | 0.1993 | 954.71 | 275999999.999 | -| DASHUSDT | 0.0007595 | 0.0007459 | 0.0767 | 0.01753 | 0.01779 | 0.01712 | 25.52 | 0.09251 | 0.1122 | 0.09852 | 0.1821 | 1373.66 | 275999999.999 | -| LUNA2USDT | 0.001252 | 0.001463 | 0.02215 | 0.001039 | 0.007423 | 0.007349 | 62.25 | 0.03692 | 0.002847 | 0.01385 | 0.1255 | 424.87 | 275999999.999 | -| ATAUSDT | 0.000752 | 0.0007697 | 0.05444 | 0.004129 | 0.01702 | 0.01557 | 28.93 | 0.07978 | 0.09371 | 0.04578 | 0.1415 | 799.85 | 275999999.999 | -| KLAYUSDT | 0.0006821 | 0.0006546 | 0.06837 | 0.01499 | 0.01159 | 0.01527 | 96.13 | 0.09377 | 0.03056 | 0.08741 | 0.2124 | 757.85 | 275999999.999 | -| SANDUSDT | 0.0008203 | 0.0009875 | 0.05842 | 0.01612 | 0.01487 | 0.01569 | 46.72 | 0.09105 | 0.02418 | 0.09987 | 0.1935 | 1017.71 | 275999999.999 | -| GTCUSDT | 0.000597 | 0.0006591 | 0.04746 | 0.01106 | 0.01863 | 0.01847 | 101.8 | 0.09448 | 0.04114 | 0.09338 | 0.184 | 880.85 | 275999999.999 | -| AVAXUSDT | 0.001123 | 0.001135 | 0.0854 | 0.01956 | 0.01778 | 0.01814 | 46.68 | 0.095 | 0.058 | 0.07547 | 0.199 | 1141.71 | 275999999.999 | -| ONEUSDT | 0.0006397 | 0.0007598 | 0.0442 | 0.0101 | 0.01393 | 0.01416 | 54.62 | 0.09456 | 0.01537 | 0.09931 | 0.2102 | 965.71 | 275999999.999 | -| ENSUSDT | 0.001337 | 0.001445 | 0.1063 | 0.02565 | 0.01386 | 0.01321 | 37.35 | 0.06861 | 0.04674 | 0.06804 | 0.1136 | 708.85 | 275999999.999 | -| LINAUSDT | 0.0005364 | 0.0006414 | 0.03222 | 0.002163 | 0.0231 | 0.02108 | 67.73 | 0.09709 | 0.09671 | 0.04827 | 0.1658 | 964.71 | 275999999.999 | -| 1000LUNCUSDT | 0.001294 | 0.001221 | 0.08015 | 0.03754 | 0.007307 | 0.01237 | 57.3 | 0.08172 | 0.008935 | 0.07272 | 0.2136 | 425.46 | 275999999.999 | -| PHBUSDT | 0.001248 | 0.001119 | 0.07169 | 0.01642 | 0.01373 | 0.01421 | 80.68 | 0.07447 | 0.01538 | 0.06199 | 0.1235 | 265.39 | 275999999.999 | -| FLOWUSDT | 0.0006926 | 0.0009105 | 0.08861 | 0.03614 | 0.01352 | 0.01536 | 94.65 | 0.08387 | 0.03034 | 0.08998 | 0.1321 | 636.85 | 275999999.999 | -| KAVAUSDT | 0.000807 | 0.0008884 | 0.06081 | 0.01645 | 0.0156 | 0.0159 | 48.07 | 0.09223 | 0.02809 | 0.09369 | 0.233 | 1198.7 | 275999999.999 | -| IMXUSDT | 0.0007356 | 0.0009296 | 0.03387 | 0.005966 | 0.009106 | 0.008145 | 30.95 | 0.04177 | 0.02797 | 0.02988 | 0.1753 | 635.85 | 275999999.999 | -| 1INCHUSDT | 0.001194 | 0.00131 | 0.09888 | 0.02705 | 0.02031 | 0.01789 | 29.83 | 0.09581 | 0.06316 | 0.09503 | 0.2167 | 1048.58 | 275999999.999 | -| JOEUSDT | 0.001174 | 0.0009803 | 0.09695 | 0.03011 | 0.01688 | 0.01643 | 30.07 | 0.09369 | 0.06961 | 0.09808 | 0.1578 | 224.49 | 275999999.999 | -| ONTUSDT | 0.0009487 | 0.001337 | 0.06594 | 0.0211 | 0.01261 | 0.01168 | 54.62 | 0.0824 | 0.0446 | 0.09732 | 0.1838 | 1366.66 | 275999999.999 | -| DARUSDT | 0.0008795 | 0.001051 | 0.07164 | 0.02651 | 0.008606 | 0.009845 | 35.93 | 0.07979 | 0.02425 | 0.08878 | 0.208 | 558.85 | 275999999.999 | -| MATICUSDT | 0.0005955 | 0.0008684 | 0.06128 | 0.01941 | 0.01387 | 0.01453 | 50.88 | 0.08022 | 0.02283 | 0.08407 | 0.1489 | 1112.71 | 275999999.999 | -| LDOUSDT | 0.0005898 | 0.0005292 | 0.04114 | 0.006108 | 0.0214 | 0.01992 | 44.72 | 0.09156 | 0.09465 | 0.05136 | 0.1037 | 412.5 | 275999999.999 | -| XVSUSDT | 0.0009709 | 0.0005382 | 0.03706 | 0.001071 | 0.01504 | 0.01479 | 43.55 | 0.08208 | 0.08702 | 0.03065 | 0.1304 | 209.89 | 275999999.999 | -| SXPUSDT | 0.0007245 | 0.0007686 | 0.04266 | 0.006089 | 0.01438 | 0.01715 | 86.0 | 0.09927 | 0.01145 | 0.06268 | 0.1922 | 1205.62 | 275999999.999 | -| IDUSDT | 0.0009694 | 0.0008885 | 0.02819 | 0.0105 | 0.006896 | 0.007227 | 43.05 | 0.04517 | 0.01771 | 0.0427 | 0.1279 | 230.39 | 275999999.999 | -| AGLDUSDT | 0.0007512 | 0.0006007 | 0.01471 | 0.0 | 0.006354 | 0.007976 | 28.32 | 0.02751 | 0.0008249 | 0.005182 | 0.01371 | 102.89 | 275999999.999 | -| ANKRUSDT | 0.00117 | 0.002166 | 0.06496 | 0.02124 | 0.0108 | 0.01166 | 50.98 | 0.0811 | 0.009524 | 0.08657 | 0.2332 | 1015.71 | 275999999.999 | -| KEYUSDT | 0.001457 | 0.001681 | 0.07055 | 0.03529 | 0.0114 | 0.01099 | 78.48 | 0.08263 | 0.04786 | 0.0925 | 0.1269 | 168.5 | 275999999.999 | -| MAGICUSDT | 0.0005762 | 0.0005592 | 0.03506 | 0.008461 | 0.0132 | 0.01249 | 86.18 | 0.08593 | 0.03132 | 0.08857 | 0.2049 | 287.87 | 275999999.999 | -| DOTUSDT | 0.0008985 | 0.001154 | 0.08391 | 0.03554 | 0.009049 | 0.01124 | 25.88 | 0.08557 | 0.04116 | 0.09984 | 0.1667 | 1173.71 | 275999999.999 | -| WLDUSDT | 0.00111 | 0.001016 | 0.03535 | 0.0 | 0.01358 | 0.01495 | 37.28 | 0.09563 | 0.00781 | 0.03881 | 0.1016 | 107.5 | 275999999.999 | -| BATUSDT | 0.001102 | 0.001256 | 0.08678 | 0.02231 | 0.01528 | 0.01339 | 32.53 | 0.06835 | 0.034 | 0.06781 | 0.1256 | 1364.66 | 275999999.999 | -| INJUSDT | 0.0008225 | 0.0009135 | 0.05259 | 0.01371 | 0.01225 | 0.01154 | 41.35 | 0.05497 | 0.03029 | 0.05339 | 0.1047 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.001059 | 0.001985 | 0.08912 | 0.02714 | 0.01233 | 0.01185 | 30.25 | 0.08198 | 0.02623 | 0.09077 | 0.196 | 1240.62 | 275999999.999 | -| COTIUSDT | 0.0008044 | 0.001237 | 0.08383 | 0.03398 | 0.01929 | 0.02105 | 43.42 | 0.08315 | 0.1382 | 0.09031 | 0.2069 | 973.71 | 275999999.999 | -| NEOUSDT | 0.000948 | 0.001304 | 0.06395 | 0.02682 | 0.01136 | 0.01177 | 98.35 | 0.07542 | 0.0478 | 0.08484 | 0.1624 | 1360.63 | 275999999.999 | -| BCHUSDT | 0.001001 | 0.0009252 | 0.07345 | 0.03135 | 0.01523 | 0.01562 | 68.83 | 0.08848 | 0.04048 | 0.09988 | 0.2492 | 1408.0 | 275999999.999 | -| ICXUSDT | 0.0007054 | 0.0007297 | 0.05319 | 0.01154 | 0.0156 | 0.01693 | 64.77 | 0.09793 | 0.0229 | 0.08549 | 0.2106 | 1149.71 | 275999999.999 | -| CVXUSDT | 0.0009581 | 0.0008992 | 0.1393 | 0.04582 | 0.01392 | 0.0141 | 48.55 | 0.07355 | 0.07532 | 0.07833 | 0.1135 | 412.49 | 275999999.999 | -| CTKUSDT | 0.0008221 | 0.001063 | 0.07391 | 0.005576 | 0.01734 | 0.01585 | 37.8 | 0.08814 | 0.06981 | 0.04798 | 0.1419 | 1084.71 | 275999999.999 | -| COMPUSDT | 0.0008828 | 0.0009674 | 0.05032 | 0.01045 | 0.01587 | 0.01523 | 50.65 | 0.08991 | 0.04963 | 0.09161 | 0.2471 | 1226.62 | 275999999.999 | -| GMXUSDT | 0.0008746 | 0.000609 | 0.05846 | 0.01654 | 0.01411 | 0.01166 | 87.73 | 0.05528 | 0.06217 | 0.04807 | 0.07468 | 264.39 | 275999999.999 | -| TUSDT | 0.001121 | 0.001019 | 0.09331 | 0.02935 | 0.007741 | 0.0102 | 41.83 | 0.07625 | 0.02767 | 0.08288 | 0.1856 | 280.46 | 275999999.999 | -| MKRUSDT | 0.0006385 | 0.0006248 | 0.0909 | 0.04853 | 0.02017 | 0.02241 | 87.55 | 0.08881 | 0.09871 | 0.07905 | 0.2338 | 1182.71 | 275999999.999 | -| XTZUSDT | 0.0006202 | 0.001192 | 0.04732 | 0.01842 | 0.009 | 0.008791 | 85.87 | 0.05346 | 0.006967 | 0.05744 | 0.1552 | 1371.67 | 275999999.999 | -| CHRUSDT | 0.0005885 | 0.0006966 | 0.04928 | 0.008427 | 0.02244 | 0.02075 | 58.32 | 0.09763 | 0.08713 | 0.07223 | 0.1909 | 971.71 | 275999999.999 | -| THETAUSDT | 0.0009831 | 0.001088 | 0.07119 | 0.02335 | 0.01075 | 0.0118 | 48.3 | 0.0733 | 0.0248 | 0.07953 | 0.1453 | 1260.66 | 275999999.999 | -| ASTRUSDT | 0.001196 | 0.0009441 | 0.03403 | 0.005455 | 0.009136 | 0.007651 | 84.03 | 0.03972 | 0.03535 | 0.03037 | 0.1343 | 267.89 | 275999999.999 | -| ATOMUSDT | 0.0007537 | 0.00133 | 0.06775 | 0.0235 | 0.009295 | 0.01091 | 31.15 | 0.08789 | 0.01494 | 0.09805 | 0.207 | 1370.49 | 275999999.999 | -| NKNUSDT | 0.0008401 | 0.001081 | 0.07117 | 0.00889 | 0.01809 | 0.01741 | 45.17 | 0.09217 | 0.07052 | 0.06264 | 0.2369 | 943.71 | 275999999.999 | -| ALICEUSDT | 0.001001 | 0.001176 | 0.07416 | 0.01268 | 0.01706 | 0.01564 | 35.0 | 0.08646 | 0.04492 | 0.08359 | 0.2049 | 967.87 | 275999999.999 | -| STMXUSDT | 0.001439 | 0.001171 | 0.04105 | 0.004665 | 0.01639 | 0.01345 | 47.95 | 0.06706 | 0.05718 | 0.04595 | 0.2245 | 961.71 | 275999999.999 | -| C98USDT | 0.0005054 | 0.0005389 | 0.03884 | 9.293e-05 | 0.02076 | 0.01923 | 37.77 | 0.09528 | 0.1387 | 0.04107 | 0.1132 | 806.85 | 275999999.999 | -| ZRXUSDT | 0.001243 | 0.001545 | 0.06849 | 0.0193 | 0.0145 | 0.01376 | 72.47 | 0.07443 | 0.04359 | 0.07883 | 0.2371 | 1232.62 | 275999999.999 | -| ICPUSDT | 0.001065 | 0.001014 | 0.07482 | 0.02123 | 0.009708 | 0.009306 | 34.47 | 0.06686 | 0.02309 | 0.07336 | 0.1788 | 407.89 | 275999999.999 | -| KSMUSDT | 0.001094 | 0.001244 | 0.08833 | 0.02798 | 0.01425 | 0.01361 | 50.47 | 0.07541 | 0.0228 | 0.08253 | 0.1322 | 1120.71 | 275999999.999 | -| ZECUSDT | 0.0005262 | 0.0008041 | 0.06274 | 0.02863 | 0.01137 | 0.0139 | 25.77 | 0.08389 | 0.05099 | 0.09349 | 0.1752 | 1372.66 | 275999999.999 | -| PERPUSDT | 0.0005699 | 0.0005691 | 0.0235 | 0.002406 | 0.007949 | 0.007471 | 86.83 | 0.03379 | 0.0005944 | 0.01569 | 0.07543 | 247.5 | 275999999.999 | -| 1000PEPEUSDT | 0.0007556 | 0.0005646 | 0.01928 | 0.004019 | 0.009132 | 0.008572 | 48.87 | 0.04409 | 0.001074 | 0.0255 | 0.08459 | 187.31 | 275999999.999 | -| DGBUSDT | 0.0009131 | 0.001521 | 0.07742 | 0.03443 | 0.01008 | 0.01161 | 84.23 | 0.08198 | 0.01407 | 0.09125 | 0.1849 | 931.85 | 275999999.999 | -| BAKEUSDT | 0.0007951 | 0.0007196 | 0.04896 | 0.006785 | 0.01672 | 0.01428 | 35.33 | 0.0692 | 0.05416 | 0.05079 | 0.1281 | 903.71 | 275999999.999 | -| UNIUSDT | 0.00133 | 0.001389 | 0.08116 | 0.03507 | 0.01044 | 0.01419 | 85.4 | 0.08867 | 0.0125 | 0.09045 | 0.2256 | 1146.71 | 275999999.999 | -| CRVUSDT | 0.0003885 | 0.0007896 | 0.03519 | 0.004596 | 0.01775 | 0.01505 | 56.23 | 0.07281 | 0.04252 | 0.05341 | 0.2351 | 1163.71 | 276000000.0 | -| TOMOUSDT | 0.00034 | 0.0004209 | 0.01583 | 0.001855 | 0.01118 | 0.008269 | 88.73 | 0.03518 | 0.0279 | 0.01298 | 0.05811 | 1122.71 | 276000000.0 | -| AAVEUSDT | 0.0003683 | 0.0004827 | 0.04207 | 0.01204 | 0.01969 | 0.01924 | 60.7 | 0.09979 | 0.04939 | 0.09656 | 0.2304 | 1118.71 | 276000000.0 | -| EGLDUSDT | 0.0003781 | 0.0006266 | 0.04944 | 0.02672 | 0.00888 | 0.01326 | 39.98 | 0.08622 | 0.02624 | 0.09629 | 0.2126 | 1150.71 | 276000000.0 | -| ALPHAUSDT | 0.0004119 | 0.0006681 | 0.04011 | 0.005392 | 0.02076 | 0.01968 | 72.92 | 0.09991 | 0.1054 | 0.0518 | 0.2058 | 1080.71 | 276000000.0 | -| ETHUSDT | 0.0002469 | 0.0003451 | 0.05516 | 0.01972 | 0.01029 | 0.01262 | 59.9 | 0.07138 | 0.04539 | 0.07617 | 0.172 | 1408.0 | 276000000.0 | -| LRCUSDT | 0.0001438 | 0.0003737 | 0.01398 | 0.003144 | 0.01446 | 0.01366 | 47.75 | 0.06612 | 0.1448 | 0.03203 | 0.2374 | 1115.7 | 276000000.0 | -| QNTUSDT | 0.0004771 | 0.0003846 | 0.04322 | 0.003094 | 0.01326 | 0.01436 | 40.17 | 0.07677 | 0.1036 | 0.04565 | 0.09085 | 384.89 | 276000000.0 | -| AXSUSDT | 0.0003063 | 0.0004198 | 0.04866 | 0.02509 | 0.01804 | 0.01911 | 41.63 | 0.09244 | 0.08002 | 0.09263 | 0.1794 | 1083.7 | 276000000.0 | -| QTUMUSDT | 0.000297 | 0.0005072 | 0.02481 | 0.007463 | 0.0111 | 0.01051 | 98.32 | 0.05386 | 0.04288 | 0.04928 | 0.2253 | 1357.66 | 276000000.0 | -| ROSEUSDT | 0.0004807 | 0.0006637 | 0.02881 | 0.006132 | 0.008645 | 0.009001 | 96.6 | 0.04762 | 0.006237 | 0.03929 | 0.1674 | 677.85 | 276000000.0 | -| BANDUSDT | 0.0004522 | 0.0006589 | 0.02669 | 0.001802 | 0.01432 | 0.01279 | 48.98 | 0.06582 | 0.02246 | 0.04167 | 0.1939 | 1197.71 | 276000000.0 | -| AUDIOUSDT | 0.000416 | 0.0004844 | 0.03407 | 0.00451 | 0.01876 | 0.01873 | 75.73 | 0.09485 | 0.06514 | 0.06057 | 0.1735 | 811.85 | 276000000.0 | -| TRXUSDT | 0.0002267 | 0.0004487 | 0.07047 | 0.02714 | 0.01363 | 0.01291 | 56.0 | 0.07301 | 0.1182 | 0.08344 | 0.1551 | 1393.66 | 276000000.0 | -| ETCUSDT | 0.0003211 | 0.000616 | 0.03192 | 0.01508 | 0.009813 | 0.01262 | 76.02 | 0.08511 | 0.03236 | 0.09715 | 0.2297 | 1392.66 | 276000000.0 | -| SNXUSDT | 0.0004174 | 0.0004756 | 0.04116 | 0.01023 | 0.02212 | 0.02083 | 53.13 | 0.09982 | 0.05837 | 0.06853 | 0.1864 | 1181.7 | 276000000.0 | -| OGNUSDT | 0.0003543 | 0.0003725 | 0.02372 | 0.001611 | 0.01722 | 0.01758 | 40.37 | 0.09841 | 0.1239 | 0.03533 | 0.2005 | 951.71 | 276000000.0 | -| BNBUSDT | 0.0003352 | 0.0004774 | 0.05618 | 0.01959 | 0.008059 | 0.01074 | 52.37 | 0.07183 | 0.01981 | 0.07915 | 0.2353 | 1367.66 | 276000000.0 | -| ADAUSDT | 0.0002589 | 0.0006554 | 0.0312 | 0.0107 | 0.01092 | 0.01101 | 62.8 | 0.061 | 0.1329 | 0.06301 | 0.2277 | 1377.66 | 276000000.0 | -| GRTUSDT | 0.0002507 | 0.0004224 | 0.02507 | 0.00372 | 0.01665 | 0.0148 | 47.02 | 0.07125 | 0.06242 | 0.04188 | 0.2498 | 1054.71 | 276000000.0 | -| APTUSDT | 0.0004782 | 0.0005298 | 0.0382 | 0.00288 | 0.0155 | 0.0166 | 37.85 | 0.09147 | 0.07364 | 0.05397 | 0.09471 | 385.92 | 276000000.0 | -| DENTUSDT | 0.0003787 | 0.0006873 | 0.03639 | 0.009235 | 0.01516 | 0.01391 | 58.2 | 0.08816 | 0.05174 | 0.09743 | 0.246 | 959.83 | 276000000.0 | -| BALUSDT | 0.0004841 | 0.0006859 | 0.06314 | 0.01631 | 0.01787 | 0.01529 | 43.52 | 0.07658 | 0.06122 | 0.07296 | 0.1378 | 1163.71 | 276000000.0 | -| YFIUSDT | 0.0004214 | 0.0007541 | 0.02855 | 0.006627 | 0.00923 | 0.00941 | 99.93 | 0.0532 | 0.007373 | 0.0476 | 0.2381 | 1164.71 | 276000000.0 | -| STGUSDT | 0.0001672 | 0.0002682 | 0.0126 | 0.001768 | 0.009435 | 0.008466 | 111.0 | 0.0399 | 0.07273 | 0.01946 | 0.1444 | 440.5 | 276000000.0 | -| DOGEUSDT | 0.0004451 | 0.0009091 | 0.02373 | 0.002914 | 0.006843 | 0.007988 | 55.58 | 0.04279 | 0.008875 | 0.02286 | 0.2225 | 1216.62 | 276000000.0 | -| XLMUSDT | 0.0004387 | 0.0006481 | 0.05174 | 0.02129 | 0.01597 | 0.01478 | 97.75 | 0.08747 | 0.06993 | 0.09788 | 0.2335 | 1388.66 | 276000000.0 | -| BLUEBIRDUSDT | 0.0003429 | 0.0003555 | 0.04858 | 0.01139 | 0.004121 | 0.004477 | 33.35 | 0.02652 | 0.01488 | 0.02592 | 0.04874 | 371.5 | 276000000.0 | -| CFXUSDT | 0.000344 | 0.0003891 | 0.03 | 0.01096 | 0.0139 | 0.01407 | 94.47 | 0.07777 | 0.07863 | 0.07673 | 0.1232 | 261.39 | 276000000.0 | -| RVNUSDT | 0.0003822 | 0.0005 | 0.03596 | 0.004866 | 0.0181 | 0.01913 | 77.22 | 0.09977 | 0.06206 | 0.05525 | 0.225 | 988.71 | 276000000.0 | -| RNDRUSDT | 0.0002848 | 0.0003654 | 0.02989 | 0.004433 | 0.01517 | 0.01302 | 51.15 | 0.06324 | 0.07585 | 0.0318 | 0.06284 | 278.89 | 276000000.0 | -| XMRUSDT | 0.0004486 | 0.001273 | 0.1108 | 0.05811 | 0.01218 | 0.01245 | 62.65 | 0.08372 | 0.07091 | 0.09785 | 0.1429 | 1374.66 | 276000000.0 | -| SOLUSDT | 0.0002547 | 0.0003514 | 0.02807 | 0.002096 | 0.02046 | 0.01758 | 37.18 | 0.07883 | 0.142 | 0.03679 | 0.248 | 1150.71 | 276000000.0 | -| STXUSDT | 0.0003606 | 0.000402 | 0.0355 | 0.01241 | 0.01448 | 0.01542 | 65.55 | 0.09058 | 0.04376 | 0.08313 | 0.1716 | 260.39 | 276000000.0 | -| DYDXUSDT | 0.0003842 | 0.0005144 | 0.04456 | 0.007572 | 0.01991 | 0.01913 | 49.42 | 0.09397 | 0.08978 | 0.08819 | 0.1485 | 789.85 | 276000000.0 | -| FOOTBALLUSDT | 0.0004432 | 0.0006637 | 0.05802 | 0.01371 | 0.006007 | 0.006838 | 33.82 | 0.0615 | 0.03287 | 0.06658 | 0.1125 | 433.87 | 276000000.0 | -| LTCUSDT | 0.0004855 | 0.0008489 | 0.07215 | 0.02666 | 0.01426 | 0.01363 | 117.9 | 0.08596 | 0.1065 | 0.09772 | 0.225 | 1399.66 | 276000000.0 | -| LINKUSDT | 0.0004386 | 0.0004793 | 0.05013 | 0.005912 | 0.01953 | 0.01871 | 50.0 | 0.0933 | 0.06007 | 0.06085 | 0.1563 | 1391.66 | 276000000.0 | -| IOTXUSDT | 0.0004211 | 0.0006346 | 0.03869 | 0.01209 | 0.01507 | 0.01405 | 61.52 | 0.07843 | 0.07172 | 0.08082 | 0.1676 | 818.85 | 276000000.0 | -| STORJUSDT | 0.0003192 | 0.0003769 | 0.0271 | 0.003612 | 0.01564 | 0.01497 | 46.93 | 0.08378 | 0.05378 | 0.05072 | 0.2367 | 1148.7 | 276000000.0 | -| XRPUSDT | 0.0004696 | 0.0008297 | 0.0323 | 0.01221 | 0.00711 | 0.01041 | 40.4 | 0.06726 | 0.02936 | 0.07409 | 0.2219 | 1402.65 | 276000000.0 | -| PEOPLEUSDT | 0.0001623 | 0.0002635 | 0.01514 | 0.0003345 | 0.01778 | 0.01847 | 61.1 | 0.1023 | 0.125 | 0.02198 | 0.2159 | 684.83 | 276002269.316 | -| WAVESUSDT | 0.0002002 | 0.0002685 | 0.01892 | 0.0009221 | 0.01918 | 0.0201 | 65.73 | 0.1036 | 0.1331 | 0.03369 | 0.2279 | 1183.71 | 276003604.902 | -| IOTAUSDT | 0.0003151 | 0.000369 | 0.04283 | 0.003163 | 0.02163 | 0.01998 | 46.67 | 0.1078 | 0.1482 | 0.06214 | 0.2449 | 1365.66 | 276007757.918 | -| SFPUSDT | 0.0002361 | 0.0003167 | 0.01775 | 0.0006284 | 0.01698 | 0.01976 | 85.47 | 0.1081 | 0.08908 | 0.02202 | 0.2258 | 987.71 | 276008060.735 | -| ZILUSDT | 0.0001239 | 0.0001741 | 0.01915 | 0.001352 | 0.02021 | 0.02134 | 81.82 | 0.1188 | 0.08221 | 0.03437 | 0.2071 | 1238.62 | 276018832.868 | -| MASKUSDT | 0.0003519 | 0.0004445 | 0.03611 | 0.004026 | 0.02475 | 0.02376 | 50.88 | 0.1196 | 0.1158 | 0.07081 | 0.2295 | 803.85 | 276019611.807 | -| FILUSDT | 0.000276 | 0.00035 | 0.03174 | 0.00598 | 0.01697 | 0.02245 | 58.62 | 0.1217 | 0.08885 | 0.07848 | 0.22 | 1118.75 | 276021674.988 | -| BLZUSDT | 0.0005457 | 0.0003757 | 0.01457 | 0.0003231 | 0.02532 | 0.02385 | 86.02 | 0.1171 | 0.1549 | 0.03558 | 0.2478 | 1147.7 | 276066067.853 | -| OPUSDT | 9.521e-05 | 0.0003404 | 0.01645 | 0.0002616 | 0.01461 | 0.01292 | 42.2 | 0.05692 | 0.1783 | 0.01796 | 0.06314 | 525.41 | 276283207.444 | -| BTCUSDT | 0.0001056 | 0.0002091 | 0.02562 | 0.002642 | 0.0113 | 0.009068 | 117.8 | 0.0392 | 0.1841 | 0.02565 | 0.08037 | 1408.0 | 276341340.974 | -| ANTUSDT | 0.0003237 | 0.0004244 | 0.051 | 0.01578 | 0.02083 | 0.01852 | 55.97 | 0.09466 | 0.189 | 0.08974 | 0.1466 | 681.83 | 276390207.181 | -| ARUSDT | 0.0001448 | 0.0002637 | 0.01364 | 0.001516 | 0.01461 | 0.01329 | 87.22 | 0.06056 | 0.2106 | 0.02557 | 0.2099 | 771.85 | 276606476.198 | -| ARPAUSDT | 0.0005484 | 0.0005233 | 0.06481 | 0.002357 | 0.02952 | 0.03698 | 22.85 | 0.2866 | 0.2348 | 0.1007 | 0.1841 | 750.85 | 277103923.454 | -| BTCDOMUSDT | 0.0001727 | 0.000188 | 0.09444 | 0.02184 | 0.01233 | 0.01127 | 106.8 | 0.0892 | 0.1968 | 0.1067 | 0.1636 | 870.85 | 277140108.195 | -| RSRUSDT | 8.442e-05 | 0.0002606 | 0.01982 | 0.002136 | 0.02589 | 0.02361 | 88.27 | 0.1101 | 0.2651 | 0.04418 | 0.1467 | 1115.7 | 277160858.443 | -| BELUSDT | 0.0002991 | 0.0003744 | 0.04082 | 0.00384 | 0.02727 | 0.03192 | 61.33 | 0.1925 | 0.2641 | 0.09198 | 0.2298 | 1085.71 | 277233902.884 | -| UNFIUSDT | 0.0005449 | 0.0005082 | 0.04846 | 7.554e-05 | 0.03735 | 0.04391 | 30.97 | 0.3255 | 0.2695 | 0.09955 | 0.2434 | 992.71 | 277420204.452 | -| VETUSDT | 3.911e-06 | 7.627e-05 | 0.01942 | 0.0 | 0.02173 | 0.02206 | 47.67 | 0.1254 | 0.8116 | 0.02822 | 0.1274 | 1363.66 | 282641713.858 | -| RUNEUSDT | -0.0001698 | 7.74e-05 | 0.03592 | 0.0037 | 0.0307 | 0.02973 | 39.7 | 0.1484 | 0.8837 | 0.1076 | 0.1883 | 1160.7 | 284141479.014 | -| GALAUSDT | 5.827e-07 | -1.746e-05 | 0.01154 | 0.0 | 0.01899 | 0.02724 | 29.03 | 0.2004 | 0.9548 | 0.03848 | 0.04992 | 781.85 | 284148811.418 | -| FTMUSDT | -9.941e-06 | -1.113e-05 | 0.01171 | 0.0 | 0.02688 | 0.03233 | 35.08 | 0.1956 | 0.9708 | 0.04053 | 0.2376 | 1140.71 | 284303659.969 | -| GMTUSDT | -3.664e-05 | -0.0001179 | 0.01199 | 0.0 | 0.01913 | 0.02696 | 33.68 | 0.2236 | 1.119 | 0.07859 | 0.1069 | 603.83 | 285812157.009 | -| USDCUSDT | -1.526e-05 | -1.807e-05 | 0.01142 | 0.0 | 0.0001806 | 0.0007681 | 17.52 | 0.01533 | 1.911 | 0.004258 | 0.004275 | 241.29 | 293609121.081 | -| COCOSUSDT | 4.315e-05 | 0.0004315 | 0.008787 | 0.0003517 | 50.0 | 0.5042 | 4023.0 | 0.03167 | 0.504 | 0.008173 | 0.02798 | 260.38 | 667438335.796 | -| HNTUSDT | 8.882e-05 | 0.0003907 | 0.0237 | 0.001059 | 10.02 | 0.1191 | 5608.0 | 0.1008 | 0.1365 | 0.03426 | 0.2072 | 1136.71 | 822367451.148 | -| CVCUSDT | -6.868e-07 | -5.498e-06 | 0.009171 | 0.0 | 20.02 | 0.2197 | 8279.0 | 0.1684 | 0.9662 | 0.02936 | 0.07548 | 1092.71 | 1097696883.69 | -| SRMUSDT | 5.099e-05 | 0.0003165 | 0.04807 | 0.001347 | 20.03 | 0.2222 | 8612.0 | 0.1053 | 0.242 | 0.03799 | 0.1017 | 1159.91 | 1123713630.24 | -| RAYUSDT | 2.694e-05 | 0.0002233 | 0.01783 | 0.001587 | 30.01 | 0.305 | 8613.0 | 0.03781 | 0.3026 | 0.02148 | 0.09736 | 810.85 | 1124410682.1 | -| FTTUSDT | 1.931e-05 | 0.0001931 | 0.01134 | 0.0004072 | 50.0 | 0.5032 | 8636.0 | 0.022 | 0.5017 | 0.006977 | 0.04405 | 572.85 | 1128715780.24 | -| BTSUSDT | 5.192e-05 | 0.000431 | 0.02351 | 0.00251 | 30.01 | 0.3074 | 10740.0 | 0.05379 | 0.308 | 0.02503 | 0.111 | 1010.71 | 1337642901.54 | -| SCUSDT | 4.099e-05 | 0.0004099 | 0.01728 | 0.001638 | 40.01 | 0.404 | 12230.0 | 0.03271 | 0.4006 | 0.0137 | 0.1598 | 940.71 | 1487252342.37 | -| BTCSTUSDT | 3.112e-06 | 3.112e-05 | 0.003789 | 2.551e-05 | 80.0 | 0.8002 | 23330.0 | 0.00577 | 0.8 | 0.0001658 | 0.008986 | 979.71 | 2600701666.67 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000FLOKIUSDT.json deleted file mode 100644 index 7e6fc847f..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000FLOKIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.9061277277842, - "auto_unstuck_ema_dist": -0.05509587541388286, - "auto_unstuck_qty_pct": 0.04614884064028366, - "auto_unstuck_wallet_exposure_threshold": 0.46863516278925094, - "backwards_tp": true, - "ema_span_0": 839.2060753662297, - "ema_span_1": 353.2123188484158, - "enabled": true, - "eprice_exp_base": 1.1405633050308002, - "eqty_exp_base": 1.4146469967046582, - "grid_span": 0.1984017107809955, - "initial_eprice_ema_dist": 0.0007194017798747517, - "initial_qty_pct": 0.011638530486312363, - "markup_range": 0.0012986613134998541, - "max_n_entry_orders": 9, - "min_markup": 0.007655768612028226, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.024956187873325486, - "auto_unstuck_qty_pct": 0.025331561929904593, - "auto_unstuck_wallet_exposure_threshold": 0.8190738579260033, - "backwards_tp": true, - "ema_span_0": 1319.491611923442, - "ema_span_1": 631.2541202301663, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.924938541206917, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.038361414732497656, - "initial_qty_pct": 0.01, - "markup_range": 0.007839481909906635, - "max_n_entry_orders": 7, - "min_markup": 0.007377404605166538, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000LUNCUSDT.json deleted file mode 100644 index 4d4503558..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000LUNCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 155.94365352081996, - "auto_unstuck_ema_dist": -0.031330482695477675, - "auto_unstuck_qty_pct": 0.011037485750127569, - "auto_unstuck_wallet_exposure_threshold": 0.16443170038577976, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.1727247100550446, - "eqty_exp_base": 1, - "grid_span": 0.18183233414625083, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.025220122290467033, - "markup_range": 0.0, - "max_n_entry_orders": 12, - "min_markup": 0.007132025701123874, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000PEPEUSDT.json deleted file mode 100644 index 843c08111..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000PEPEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.4092512849797, - "auto_unstuck_ema_dist": -0.007804317744943648, - "auto_unstuck_qty_pct": 0.012827505738499128, - "auto_unstuck_wallet_exposure_threshold": 0.23114110655160536, - "backwards_tp": true, - "ema_span_0": 471.51598421925127, - "ema_span_1": 690.0351092432278, - "enabled": true, - "eprice_exp_base": 1.1562934653212311, - "eqty_exp_base": 2.0699935345270997, - "grid_span": 0.15929253434258953, - "initial_eprice_ema_dist": -0.00866265020952416, - "initial_qty_pct": 0.011026991701794699, - "markup_range": 0.005901207434692439, - "max_n_entry_orders": 7, - "min_markup": 0.005892201524839872, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1010.4036632825504, - "auto_unstuck_ema_dist": -0.0314204231300205, - "auto_unstuck_qty_pct": 0.04471332961600069, - "auto_unstuck_wallet_exposure_threshold": 0.6164807778024183, - "backwards_tp": true, - "ema_span_0": 916.9930407816282, - "ema_span_1": 1432.4096245232226, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.6622768486732851, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.01653390255568551, - "max_n_entry_orders": 12, - "min_markup": 0.001, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000SHIBUSDT.json deleted file mode 100644 index 5cea3690d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000SHIBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.7794886183383, - "auto_unstuck_ema_dist": -0.005581941244785879, - "auto_unstuck_qty_pct": 0.010170091330110483, - "auto_unstuck_wallet_exposure_threshold": 0.3806590313382323, - "backwards_tp": true, - "ema_span_0": 956.2302813651238, - "ema_span_1": 1265.2351101148524, - "enabled": true, - "eprice_exp_base": 1.051767207536531, - "eqty_exp_base": 1.7035756385736616, - "grid_span": 0.17037951780238555, - "initial_eprice_ema_dist": -0.003123429996222736, - "initial_qty_pct": 0.012441166898920027, - "markup_range": 0.0008494533549618005, - "max_n_entry_orders": 7, - "min_markup": 0.009134769067758976, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 559.260531604697, - "auto_unstuck_ema_dist": -0.00842752530128673, - "auto_unstuck_qty_pct": 0.013399550071574607, - "auto_unstuck_wallet_exposure_threshold": 0.33695330170844806, - "backwards_tp": true, - "ema_span_0": 1383.3551930257856, - "ema_span_1": 68.06040929635022, - "enabled": true, - "eprice_exp_base": 1.105849123094091, - "eqty_exp_base": 1.22087120679925, - "grid_span": 0.30594108207171933, - "initial_eprice_ema_dist": 0.0024083581567065086, - "initial_qty_pct": 0.01, - "markup_range": 0.004365852785813848, - "max_n_entry_orders": 8, - "min_markup": 0.0064414420212760256, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000XECUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000XECUSDT.json deleted file mode 100644 index ca3837b21..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1000XECUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1237.4999373069681, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.1989590660571885, - "grid_span": 0.33892290410490394, - "initial_eprice_ema_dist": -0.018790813290638135, - "initial_qty_pct": 0.01, - "markup_range": 0.0071795431272730845, - "max_n_entry_orders": 15, - "min_markup": 0.001, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1INCHUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1INCHUSDT.json deleted file mode 100644 index 878434c39..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/1INCHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1240.2565851661307, - "auto_unstuck_ema_dist": -0.04019038393165331, - "auto_unstuck_qty_pct": 0.021040444008926396, - "auto_unstuck_wallet_exposure_threshold": 0.30527300469357793, - "backwards_tp": true, - "ema_span_0": 1031.6178053435272, - "ema_span_1": 358.10397487215164, - "enabled": true, - "eprice_exp_base": 1.0494443936743298, - "eqty_exp_base": 3.256590726383303, - "grid_span": 0.16643856649520014, - "initial_eprice_ema_dist": 0.0027804189287776717, - "initial_qty_pct": 0.010518974411386302, - "markup_range": 0.006586886397756721, - "max_n_entry_orders": 9, - "min_markup": 0.009999783817915974, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1251.9747362132496, - "auto_unstuck_ema_dist": 6.130872874427002e-05, - "auto_unstuck_qty_pct": 0.01007623557186774, - "auto_unstuck_wallet_exposure_threshold": 0.17920278205820986, - "backwards_tp": true, - "ema_span_0": 1329.6833394653656, - "ema_span_1": 239.16571463221084, - "enabled": true, - "eprice_exp_base": 1.3255222347218985, - "eqty_exp_base": 1.6379034685824383, - "grid_span": 0.291665193952853, - "initial_eprice_ema_dist": -0.0007222051139423557, - "initial_qty_pct": 0.014226879071078774, - "markup_range": 0.009100900539187523, - "max_n_entry_orders": 11, - "min_markup": 0.009800929165894225, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AAVEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AAVEUSDT.json deleted file mode 100644 index 8abefe36c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AAVEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1217.4645956446466, - "auto_unstuck_ema_dist": -0.02234474636795647, - "auto_unstuck_qty_pct": 0.011029097544772097, - "auto_unstuck_wallet_exposure_threshold": 0.23737587149305286, - "backwards_tp": true, - "ema_span_0": 1434.6681574606664, - "ema_span_1": 1326.815690779633, - "enabled": true, - "eprice_exp_base": 1.0004780250713692, - "eqty_exp_base": 1.8674947097108647, - "grid_span": 0.1694056675992081, - "initial_eprice_ema_dist": 0.0012865855307700002, - "initial_qty_pct": 0.010966697520597809, - "markup_range": 0.004929786728331037, - "max_n_entry_orders": 7, - "min_markup": 0.008382382093118045, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.4411702489633, - "auto_unstuck_ema_dist": -0.004617109849520608, - "auto_unstuck_qty_pct": 0.01648366731345862, - "auto_unstuck_wallet_exposure_threshold": 0.7094846767314997, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1438.151047326744, - "enabled": true, - "eprice_exp_base": 1.2439694930330072, - "eqty_exp_base": 1.231452107109689, - "grid_span": 0.4365969496517578, - "initial_eprice_ema_dist": -0.0019017444320947494, - "initial_qty_pct": 0.01, - "markup_range": 0.003842107206680762, - "max_n_entry_orders": 9, - "min_markup": 0.001638247139852082, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ACHUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ACHUSDT.json deleted file mode 100644 index 155afb3f0..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ACHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1312.3497217836286, - "auto_unstuck_ema_dist": -0.031246757663110407, - "auto_unstuck_qty_pct": 0.010847358243222999, - "auto_unstuck_wallet_exposure_threshold": 0.4280809710123283, - "backwards_tp": true, - "ema_span_0": 905.275802239915, - "ema_span_1": 17.12640696902039, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.444814769058541, - "grid_span": 0.21620371108947897, - "initial_eprice_ema_dist": 0.0022365676265164425, - "initial_qty_pct": 0.013024735250668391, - "markup_range": 0.008442345102329359, - "max_n_entry_orders": 9, - "min_markup": 0.007724275004453045, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1420.9651479537285, - "auto_unstuck_ema_dist": -0.033631641830101304, - "auto_unstuck_qty_pct": 0.020401806530856124, - "auto_unstuck_wallet_exposure_threshold": 0.2938345281297234, - "backwards_tp": true, - "ema_span_0": 1011.4518973719919, - "ema_span_1": 798.0567764621785, - "enabled": true, - "eprice_exp_base": 1.0680920722213172, - "eqty_exp_base": 2.2829103749222863, - "grid_span": 0.14874815958874757, - "initial_eprice_ema_dist": -0.011196204261857148, - "initial_qty_pct": 0.017998783074008304, - "markup_range": 0.0074045251026196865, - "max_n_entry_orders": 9, - "min_markup": 0.005606728427408416, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ADAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ADAUSDT.json deleted file mode 100644 index b5262342d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ADAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 926.4110640006594, - "auto_unstuck_ema_dist": -0.056569691889343375, - "auto_unstuck_qty_pct": 0.015210523208416713, - "auto_unstuck_wallet_exposure_threshold": 0.830126546921842, - "backwards_tp": true, - "ema_span_0": 1002.8576912286601, - "ema_span_1": 1349.784339385952, - "enabled": true, - "eprice_exp_base": 1.0020458997575203, - "eqty_exp_base": 1.1188580772292835, - "grid_span": 0.2821366721318097, - "initial_eprice_ema_dist": 0.002977818733472275, - "initial_qty_pct": 0.010520830060116474, - "markup_range": 0.005154167419553341, - "max_n_entry_orders": 12, - "min_markup": 0.007856719284601401, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AGIXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AGIXUSDT.json deleted file mode 100644 index 22efd54a0..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AGIXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 598.2677947514356, - "auto_unstuck_ema_dist": -0.04609893110399657, - "auto_unstuck_qty_pct": 0.010123567719253442, - "auto_unstuck_wallet_exposure_threshold": 0.1024154079615063, - "backwards_tp": true, - "ema_span_0": 402.55872805583687, - "ema_span_1": 416.43411767122376, - "enabled": true, - "eprice_exp_base": 1.1161528887519947, - "eqty_exp_base": 1.5905756340469075, - "grid_span": 0.18153523109118677, - "initial_eprice_ema_dist": -0.016680959698188717, - "initial_qty_pct": 0.015209747553002216, - "markup_range": 0.004610308754286902, - "max_n_entry_orders": 13, - "min_markup": 0.001645743561515607, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AGLDUSDT.json deleted file mode 100644 index 60ccb2c10..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AGLDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALGOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALGOUSDT.json deleted file mode 100644 index e44edbdd5..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALGOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1070.1815373548548, - "auto_unstuck_ema_dist": -0.04178854659910562, - "auto_unstuck_qty_pct": 0.020535411615993555, - "auto_unstuck_wallet_exposure_threshold": 0.4884374577783266, - "backwards_tp": true, - "ema_span_0": 1202.878426022801, - "ema_span_1": 840.6685855759885, - "enabled": true, - "eprice_exp_base": 1.0989056760375406, - "eqty_exp_base": 3.1116572856071993, - "grid_span": 0.13595562563868033, - "initial_eprice_ema_dist": 0.0006935681256839439, - "initial_qty_pct": 0.012578916533481085, - "markup_range": 0.00988153066900415, - "max_n_entry_orders": 9, - "min_markup": 0.0072194691850736336, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.5304010329335, - "auto_unstuck_ema_dist": -0.005371837408460239, - "auto_unstuck_qty_pct": 0.03625186747470076, - "auto_unstuck_wallet_exposure_threshold": 0.172467872274705, - "backwards_tp": true, - "ema_span_0": 568.7664237784585, - "ema_span_1": 1015.5465732987756, - "enabled": true, - "eprice_exp_base": 1.0027847482406218, - "eqty_exp_base": 1.6554852220749905, - "grid_span": 0.17063996467610135, - "initial_eprice_ema_dist": -0.0035891586908563485, - "initial_qty_pct": 0.011402515290221417, - "markup_range": 0.013831527977217432, - "max_n_entry_orders": 14, - "min_markup": 0.009514514600822775, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALICEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALICEUSDT.json deleted file mode 100644 index 7a4d03323..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALICEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.9061277277842, - "auto_unstuck_ema_dist": -0.05509587541388286, - "auto_unstuck_qty_pct": 0.04614884064028366, - "auto_unstuck_wallet_exposure_threshold": 0.46863516278925094, - "backwards_tp": true, - "ema_span_0": 839.2060753662297, - "ema_span_1": 353.2123188484158, - "enabled": true, - "eprice_exp_base": 1.1405633050308002, - "eqty_exp_base": 1.4146469967046582, - "grid_span": 0.1984017107809955, - "initial_eprice_ema_dist": 0.0007194017798747517, - "initial_qty_pct": 0.011638530486312363, - "markup_range": 0.0012986613134998541, - "max_n_entry_orders": 9, - "min_markup": 0.007655768612028226, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 188.30476928548, - "auto_unstuck_ema_dist": -0.029584475631393985, - "auto_unstuck_qty_pct": 0.010793980563945956, - "auto_unstuck_wallet_exposure_threshold": 0.2265308307389096, - "backwards_tp": true, - "ema_span_0": 1170.1250862952297, - "ema_span_1": 962.2433265050587, - "enabled": true, - "eprice_exp_base": 1.066827138646016, - "eqty_exp_base": 1, - "grid_span": 0.34487619019486976, - "initial_eprice_ema_dist": -0.011243657449645585, - "initial_qty_pct": 0.015525004554364367, - "markup_range": 0.00824507607420847, - "max_n_entry_orders": 9, - "min_markup": 0.008926285237499705, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALPHAUSDT.json deleted file mode 100644 index cb7243c73..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ALPHAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 781.1069973944801, - "auto_unstuck_ema_dist": -0.04041194891053113, - "auto_unstuck_qty_pct": 0.013039336957362266, - "auto_unstuck_wallet_exposure_threshold": 0.21005762329714173, - "backwards_tp": true, - "ema_span_0": 1089.3533422202247, - "ema_span_1": 645.6438460818256, - "enabled": true, - "eprice_exp_base": 1.432400111323191, - "eqty_exp_base": 2.6182858260856072, - "grid_span": 0.1564882409441415, - "initial_eprice_ema_dist": 0.002991926780557061, - "initial_qty_pct": 0.01136107219949211, - "markup_range": 0.005102629400112615, - "max_n_entry_orders": 7, - "min_markup": 0.007082499507288377, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1359.4689326610724, - "auto_unstuck_ema_dist": -0.051663487918414464, - "auto_unstuck_qty_pct": 0.023890178075515717, - "auto_unstuck_wallet_exposure_threshold": 0.31982471830433074, - "backwards_tp": true, - "ema_span_0": 603.9681152694282, - "ema_span_1": 652.061371013621, - "enabled": true, - "eprice_exp_base": 1.1901842714517454, - "eqty_exp_base": 2.043075923187924, - "grid_span": 0.3213746699018658, - "initial_eprice_ema_dist": 0.0025192013399443778, - "initial_qty_pct": 0.012239306507351184, - "markup_range": 0.01467108329388343, - "max_n_entry_orders": 9, - "min_markup": 0.005722437728137075, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AMBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AMBUSDT.json deleted file mode 100644 index 06e53d1fb..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AMBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.0434034935572, - "auto_unstuck_ema_dist": -0.07336392221453619, - "auto_unstuck_qty_pct": 0.041647237096289036, - "auto_unstuck_wallet_exposure_threshold": 0.2567189717660962, - "backwards_tp": true, - "ema_span_0": 698.9439556665241, - "ema_span_1": 1420.4838396465016, - "enabled": true, - "eprice_exp_base": 1.0674267479608834, - "eqty_exp_base": 1.7934484576941174, - "grid_span": 0.12653934155635077, - "initial_eprice_ema_dist": -0.0030766630450440135, - "initial_qty_pct": 0.014586123518883684, - "markup_range": 0.002806837580842318, - "max_n_entry_orders": 13, - "min_markup": 0.0035574376635588885, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ANKRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ANKRUSDT.json deleted file mode 100644 index 228586721..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ANKRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 943.60209581509, - "auto_unstuck_ema_dist": -0.01263026083130537, - "auto_unstuck_qty_pct": 0.039372718038203386, - "auto_unstuck_wallet_exposure_threshold": 0.6815375874327977, - "backwards_tp": true, - "ema_span_0": 321.69754508505173, - "ema_span_1": 498.1474333283621, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.4632073698606816, - "grid_span": 0.14643215943134671, - "initial_eprice_ema_dist": -0.004652328568934448, - "initial_qty_pct": 0.011784602775104874, - "markup_range": 0.0024085386532988005, - "max_n_entry_orders": 7, - "min_markup": 0.004997300530726923, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 333.7677665929856, - "auto_unstuck_ema_dist": -0.034072364725076534, - "auto_unstuck_qty_pct": 0.014338966443840764, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1182.567880880961, - "ema_span_1": 1363.9291802341522, - "enabled": true, - "eprice_exp_base": 1.0952776938803748, - "eqty_exp_base": 1.2146749890020476, - "grid_span": 0.18468912919149277, - "initial_eprice_ema_dist": 0.0024429343458894867, - "initial_qty_pct": 0.011304033697976485, - "markup_range": 0.014904471381139853, - "max_n_entry_orders": 11, - "min_markup": 0.0021991312484550803, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ANTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ANTUSDT.json deleted file mode 100644 index 118bbb743..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ANTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1174.4957493303018, - "auto_unstuck_ema_dist": -0.03256348980375066, - "auto_unstuck_qty_pct": 0.017510348425941624, - "auto_unstuck_wallet_exposure_threshold": 0.7761913402202594, - "backwards_tp": true, - "ema_span_0": 934.7386114305474, - "ema_span_1": 1357.07877191991, - "enabled": true, - "eprice_exp_base": 1.0120865382439177, - "eqty_exp_base": 1.320710372420871, - "grid_span": 0.30224181950552237, - "initial_eprice_ema_dist": 0.00294606034102475, - "initial_qty_pct": 0.010089718048227872, - "markup_range": 0.005864151461505409, - "max_n_entry_orders": 7, - "min_markup": 0.009613517511271272, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/APEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/APEUSDT.json deleted file mode 100644 index 2136b6733..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/APEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.2186661925077, - "auto_unstuck_ema_dist": -0.0934750257166494, - "auto_unstuck_qty_pct": 0.03224513039791049, - "auto_unstuck_wallet_exposure_threshold": 0.15770154600814495, - "backwards_tp": true, - "ema_span_0": 1349.2901787249195, - "ema_span_1": 1070.06420992335, - "enabled": true, - "eprice_exp_base": 1.296171087672084, - "eqty_exp_base": 3.9822375184209213, - "grid_span": 0.10851564083207263, - "initial_eprice_ema_dist": 0.00044471489783528395, - "initial_qty_pct": 0.012984863540821682, - "markup_range": 0.003038702058401756, - "max_n_entry_orders": 7, - "min_markup": 0.0039073711030456265, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/API3USDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/API3USDT.json deleted file mode 100644 index d0cf8a2fc..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/API3USDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1121.9715986864321, - "auto_unstuck_ema_dist": -0.0017489403356026865, - "auto_unstuck_qty_pct": 0.06007674825845512, - "auto_unstuck_wallet_exposure_threshold": 0.8623820562773659, - "backwards_tp": true, - "ema_span_0": 973.6632787113003, - "ema_span_1": 1363.5306741727518, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.1894520330866076, - "grid_span": 0.2521910391570215, - "initial_eprice_ema_dist": 0.0029999889024638357, - "initial_qty_pct": 0.01106606068884545, - "markup_range": 0.007130633295116195, - "max_n_entry_orders": 8, - "min_markup": 0.008461526030130253, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 734.9719818066914, - "auto_unstuck_ema_dist": -0.005700200867316928, - "auto_unstuck_qty_pct": 0.010665068203659252, - "auto_unstuck_wallet_exposure_threshold": 0.1188655867113104, - "backwards_tp": true, - "ema_span_0": 801.2396258279347, - "ema_span_1": 931.1226508526872, - "enabled": true, - "eprice_exp_base": 1.2058742350073306, - "eqty_exp_base": 1.0185098252025484, - "grid_span": 0.39223065231950954, - "initial_eprice_ema_dist": -0.0018566757036934493, - "initial_qty_pct": 0.012261107756313288, - "markup_range": 0.0020256734711034535, - "max_n_entry_orders": 11, - "min_markup": 0.004613261969487121, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/APTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/APTUSDT.json deleted file mode 100644 index 17280ca91..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/APTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.8286138645863, - "auto_unstuck_ema_dist": -0.03167917107753195, - "auto_unstuck_qty_pct": 0.010031098663233208, - "auto_unstuck_wallet_exposure_threshold": 0.4355973655881478, - "backwards_tp": true, - "ema_span_0": 295.5056321285007, - "ema_span_1": 1298.5688726391509, - "enabled": true, - "eprice_exp_base": 1.0000045340969284, - "eqty_exp_base": 1.0000283574401247, - "grid_span": 0.3435530056156494, - "initial_eprice_ema_dist": -0.007940117997979262, - "initial_qty_pct": 0.011227407190278635, - "markup_range": 0.0028450303486692715, - "max_n_entry_orders": 13, - "min_markup": 0.0038002017811459947, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1420.2686337975451, - "auto_unstuck_ema_dist": -0.043146588175927224, - "auto_unstuck_qty_pct": 0.02243215031936683, - "auto_unstuck_wallet_exposure_threshold": 0.6672527036939512, - "backwards_tp": true, - "ema_span_0": 334.78666055771856, - "ema_span_1": 1101.7537666893622, - "enabled": true, - "eprice_exp_base": 2.278498282252591, - "eqty_exp_base": 3.007770052144587, - "grid_span": 0.4450454943806181, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 7, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARBUSDT.json deleted file mode 100644 index b3b37ab8c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1410.2617536223438, - "auto_unstuck_ema_dist": -0.07382972647481471, - "auto_unstuck_qty_pct": 0.013585576994096567, - "auto_unstuck_wallet_exposure_threshold": 0.5347406980723225, - "backwards_tp": true, - "ema_span_0": 1273.9259663849127, - "ema_span_1": 976.1240373461767, - "enabled": true, - "eprice_exp_base": 1.1304824300805365, - "eqty_exp_base": 2.048053538220396, - "grid_span": 0.17431757247031854, - "initial_eprice_ema_dist": -0.0008322492678262902, - "initial_qty_pct": 0.014659795275296102, - "markup_range": 0.0068827123745316375, - "max_n_entry_orders": 9, - "min_markup": 0.009457337723553772, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.336455858615, - "auto_unstuck_ema_dist": -0.09420340704641568, - "auto_unstuck_qty_pct": 0.03727852876925451, - "auto_unstuck_wallet_exposure_threshold": 0.264002908997623, - "backwards_tp": true, - "ema_span_0": 1281.230049366816, - "ema_span_1": 1278.553940164715, - "enabled": true, - "eprice_exp_base": 1.0486886922883731, - "eqty_exp_base": 2.9727407510302357, - "grid_span": 0.3446674736354055, - "initial_eprice_ema_dist": -0.006685159124024106, - "initial_qty_pct": 0.014888999115593918, - "markup_range": 0.006611724146697535, - "max_n_entry_orders": 22, - "min_markup": 0.005586593437728122, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARKMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARKMUSDT.json deleted file mode 100644 index e218b5def..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARKMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 339.5994790758884, - "auto_unstuck_ema_dist": 0.0028645899693683047, - "auto_unstuck_qty_pct": 0.03132265768095036, - "auto_unstuck_wallet_exposure_threshold": 0.5165572182325465, - "backwards_tp": true, - "ema_span_0": 947.0451699075273, - "ema_span_1": 1248.1815407884644, - "enabled": true, - "eprice_exp_base": 1.000017561978332, - "eqty_exp_base": 1.3417570761590465, - "grid_span": 0.11678506903035124, - "initial_eprice_ema_dist": -0.003104386303793998, - "initial_qty_pct": 0.014727651883826838, - "markup_range": 0.0027997015874740134, - "max_n_entry_orders": 7, - "min_markup": 0.005332057497285101, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.024956187873325486, - "auto_unstuck_qty_pct": 0.025331561929904593, - "auto_unstuck_wallet_exposure_threshold": 0.8190738579260033, - "backwards_tp": true, - "ema_span_0": 1319.491611923442, - "ema_span_1": 631.2541202301663, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.924938541206917, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.038361414732497656, - "initial_qty_pct": 0.01, - "markup_range": 0.007839481909906635, - "max_n_entry_orders": 7, - "min_markup": 0.007377404605166538, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARPAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARPAUSDT.json deleted file mode 100644 index ed60c11ee..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARPAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1318.4104516749699, - "auto_unstuck_ema_dist": -0.058460092111090795, - "auto_unstuck_qty_pct": 0.05060642147387394, - "auto_unstuck_wallet_exposure_threshold": 0.4810293299944333, - "backwards_tp": true, - "ema_span_0": 193.7350833651077, - "ema_span_1": 1420.5056364308696, - "enabled": true, - "eprice_exp_base": 1.0680518200636575, - "eqty_exp_base": 1.5232525875138057, - "grid_span": 0.1353572630706144, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010311415469551343, - "markup_range": 0.00011398986805161363, - "max_n_entry_orders": 10, - "min_markup": 0.0018696417860710735, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARUSDT.json deleted file mode 100644 index 26dc4b802..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1232.8988841979901, - "auto_unstuck_ema_dist": -0.016748364003455786, - "auto_unstuck_qty_pct": 0.011155559136564472, - "auto_unstuck_wallet_exposure_threshold": 0.680732371421344, - "backwards_tp": true, - "ema_span_0": 748.4978236668502, - "ema_span_1": 524.1979616418802, - "enabled": true, - "eprice_exp_base": 1.0000088753984597, - "eqty_exp_base": 2.1280622372741735, - "grid_span": 0.17889505470021103, - "initial_eprice_ema_dist": 0.0029999672120743057, - "initial_qty_pct": 0.01591926851963001, - "markup_range": 0.0014520739419980643, - "max_n_entry_orders": 9, - "min_markup": 0.0028487964278350653, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ASTRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ASTRUSDT.json deleted file mode 100644 index e44edbdd5..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ASTRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1070.1815373548548, - "auto_unstuck_ema_dist": -0.04178854659910562, - "auto_unstuck_qty_pct": 0.020535411615993555, - "auto_unstuck_wallet_exposure_threshold": 0.4884374577783266, - "backwards_tp": true, - "ema_span_0": 1202.878426022801, - "ema_span_1": 840.6685855759885, - "enabled": true, - "eprice_exp_base": 1.0989056760375406, - "eqty_exp_base": 3.1116572856071993, - "grid_span": 0.13595562563868033, - "initial_eprice_ema_dist": 0.0006935681256839439, - "initial_qty_pct": 0.012578916533481085, - "markup_range": 0.00988153066900415, - "max_n_entry_orders": 9, - "min_markup": 0.0072194691850736336, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.5304010329335, - "auto_unstuck_ema_dist": -0.005371837408460239, - "auto_unstuck_qty_pct": 0.03625186747470076, - "auto_unstuck_wallet_exposure_threshold": 0.172467872274705, - "backwards_tp": true, - "ema_span_0": 568.7664237784585, - "ema_span_1": 1015.5465732987756, - "enabled": true, - "eprice_exp_base": 1.0027847482406218, - "eqty_exp_base": 1.6554852220749905, - "grid_span": 0.17063996467610135, - "initial_eprice_ema_dist": -0.0035891586908563485, - "initial_qty_pct": 0.011402515290221417, - "markup_range": 0.013831527977217432, - "max_n_entry_orders": 14, - "min_markup": 0.009514514600822775, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ATAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ATAUSDT.json deleted file mode 100644 index 0ed46a322..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ATAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 512.954485856899, - "auto_unstuck_ema_dist": -0.08738533939626417, - "auto_unstuck_qty_pct": 0.01331698727142276, - "auto_unstuck_wallet_exposure_threshold": 0.5814864212751013, - "backwards_tp": true, - "ema_span_0": 1285.8326819362887, - "ema_span_1": 808.0766027268156, - "enabled": true, - "eprice_exp_base": 1.1379840578411964, - "eqty_exp_base": 2.9356354906253888, - "grid_span": 0.18091340932610026, - "initial_eprice_ema_dist": -0.012270926754001607, - "initial_qty_pct": 0.010370313894364628, - "markup_range": 0.002659678503765652, - "max_n_entry_orders": 7, - "min_markup": 0.0018911284968429482, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ATOMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ATOMUSDT.json deleted file mode 100644 index ecfb7a285..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ATOMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 339.5994790758884, - "auto_unstuck_ema_dist": 0.0028645899693683047, - "auto_unstuck_qty_pct": 0.03132265768095036, - "auto_unstuck_wallet_exposure_threshold": 0.5165572182325465, - "backwards_tp": true, - "ema_span_0": 947.0451699075273, - "ema_span_1": 1248.1815407884644, - "enabled": true, - "eprice_exp_base": 1.000017561978332, - "eqty_exp_base": 1.3417570761590465, - "grid_span": 0.11678506903035124, - "initial_eprice_ema_dist": -0.003104386303793998, - "initial_qty_pct": 0.014727651883826838, - "markup_range": 0.0027997015874740134, - "max_n_entry_orders": 7, - "min_markup": 0.005332057497285101, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1045.2223878600516, - "auto_unstuck_ema_dist": -0.016983026957580055, - "auto_unstuck_qty_pct": 0.024148208283841528, - "auto_unstuck_wallet_exposure_threshold": 0.24006580640445715, - "backwards_tp": true, - "ema_span_0": 1350.9493403857823, - "ema_span_1": 340.6390300857008, - "enabled": true, - "eprice_exp_base": 1.1234393014040378, - "eqty_exp_base": 1.0751630761054183, - "grid_span": 0.2490562513113308, - "initial_eprice_ema_dist": 0.0017677669683755432, - "initial_qty_pct": 0.028104357828053206, - "markup_range": 0.0013200009906924105, - "max_n_entry_orders": 10, - "min_markup": 0.003998932575209124, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AUDIOUSDT.json deleted file mode 100644 index e0f128efd..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AUDIOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.08845451160886725, - "auto_unstuck_wallet_exposure_threshold": 0.13130853078290408, - "backwards_tp": true, - "ema_span_0": 937.1304708106309, - "ema_span_1": 1334.7360945648852, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.7, - "initial_eprice_ema_dist": -0.007847899764953224, - "initial_qty_pct": 0.013301806022247857, - "markup_range": 0.0, - "max_n_entry_orders": 19, - "min_markup": 0.001, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AVAXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AVAXUSDT.json deleted file mode 100644 index 954c31b6f..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AVAXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.3699947528382, - "auto_unstuck_ema_dist": -0.07044616473225777, - "auto_unstuck_qty_pct": 0.014138674595555215, - "auto_unstuck_wallet_exposure_threshold": 0.3582822546886966, - "backwards_tp": true, - "ema_span_0": 1357.8879697613952, - "ema_span_1": 1208.1677908379454, - "enabled": true, - "eprice_exp_base": 1.0292116781885243, - "eqty_exp_base": 1.0457803499101623, - "grid_span": 0.21224632585700248, - "initial_eprice_ema_dist": 0.002977611590072709, - "initial_qty_pct": 0.011868191457964613, - "markup_range": 0.005979515810240324, - "max_n_entry_orders": 7, - "min_markup": 0.009737673233377476, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AXSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AXSUSDT.json deleted file mode 100644 index 77c532d00..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/AXSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1197.9910760203686, - "auto_unstuck_ema_dist": -0.0012398357671569125, - "auto_unstuck_qty_pct": 0.012990079713509163, - "auto_unstuck_wallet_exposure_threshold": 0.3172385155144959, - "backwards_tp": true, - "ema_span_0": 1087.7243890998673, - "ema_span_1": 1098.18247770603, - "enabled": true, - "eprice_exp_base": 1.0605899963350598, - "eqty_exp_base": 1.1432569672966097, - "grid_span": 0.17272925136178968, - "initial_eprice_ema_dist": 0.0029983493240514068, - "initial_qty_pct": 0.010722549344646544, - "markup_range": 0.004049768985813013, - "max_n_entry_orders": 8, - "min_markup": 0.004812444402524031, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1423.921294748867, - "auto_unstuck_ema_dist": -0.01054633715749864, - "auto_unstuck_qty_pct": 0.025231824190068527, - "auto_unstuck_wallet_exposure_threshold": 0.5562738224879781, - "backwards_tp": true, - "ema_span_0": 1134.3083842624956, - "ema_span_1": 1417.6032201330115, - "enabled": true, - "eprice_exp_base": 1.49326815245357, - "eqty_exp_base": 2.430999243247185, - "grid_span": 0.6161292264371845, - "initial_eprice_ema_dist": -0.0017873366115620456, - "initial_qty_pct": 0.01, - "markup_range": 0.0022510161783562328, - "max_n_entry_orders": 7, - "min_markup": 0.0016546885919722174, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BAKEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BAKEUSDT.json deleted file mode 100644 index e1cae0d89..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BAKEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 662.0328807482778, - "auto_unstuck_ema_dist": -0.03388835151083124, - "auto_unstuck_qty_pct": 0.02677403800493677, - "auto_unstuck_wallet_exposure_threshold": 0.4475004713668104, - "backwards_tp": true, - "ema_span_0": 1270.7261560421712, - "ema_span_1": 1161.190969744062, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3913394067679532, - "grid_span": 0.2612877525914638, - "initial_eprice_ema_dist": 0.0016097517798800234, - "initial_qty_pct": 0.011654600089727057, - "markup_range": 0.01808686260285191, - "max_n_entry_orders": 9, - "min_markup": 0.005755808458607143, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BALUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BALUSDT.json deleted file mode 100644 index 23f97373f..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BALUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.2098689886839, - "auto_unstuck_ema_dist": -0.029938464971292558, - "auto_unstuck_qty_pct": 0.01322957213435129, - "auto_unstuck_wallet_exposure_threshold": 0.44124299054739075, - "backwards_tp": true, - "ema_span_0": 1022.2174206769037, - "ema_span_1": 1202.5749343987134, - "enabled": true, - "eprice_exp_base": 1.0557824156015634, - "eqty_exp_base": 1.2686235112800972, - "grid_span": 0.2873494680415634, - "initial_eprice_ema_dist": -0.08719536914198235, - "initial_qty_pct": 0.010089167863931646, - "markup_range": 0.0026829860287574977, - "max_n_entry_orders": 12, - "min_markup": 0.003194751705619432, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 880.3912737859615, - "auto_unstuck_ema_dist": -0.012315581263481628, - "auto_unstuck_qty_pct": 0.08635657205429148, - "auto_unstuck_wallet_exposure_threshold": 0.18806038654285967, - "backwards_tp": true, - "ema_span_0": 1430.0633516172375, - "ema_span_1": 821.0138192797996, - "enabled": true, - "eprice_exp_base": 1.1080470361142847, - "eqty_exp_base": 1.579557090740059, - "grid_span": 0.3635607882812889, - "initial_eprice_ema_dist": -0.0005202696973975036, - "initial_qty_pct": 0.012335556133711512, - "markup_range": 0.012237109989187134, - "max_n_entry_orders": 12, - "min_markup": 0.009759041851101926, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BANDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BANDUSDT.json deleted file mode 100644 index 23b666072..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BANDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1121.9715986864321, - "auto_unstuck_ema_dist": -0.0017489403356026865, - "auto_unstuck_qty_pct": 0.06007674825845512, - "auto_unstuck_wallet_exposure_threshold": 0.8623820562773659, - "backwards_tp": true, - "ema_span_0": 973.6632787113003, - "ema_span_1": 1363.5306741727518, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.1894520330866076, - "grid_span": 0.2521910391570215, - "initial_eprice_ema_dist": 0.0029999889024638357, - "initial_qty_pct": 0.01106606068884545, - "markup_range": 0.007130633295116195, - "max_n_entry_orders": 8, - "min_markup": 0.008461526030130253, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 831.6168268061238, - "auto_unstuck_ema_dist": -0.034844460612906275, - "auto_unstuck_qty_pct": 0.043536320765597346, - "auto_unstuck_wallet_exposure_threshold": 0.6928853433538196, - "backwards_tp": true, - "ema_span_0": 1395.1139139848885, - "ema_span_1": 904.0127022319762, - "enabled": true, - "eprice_exp_base": 1.051714084978681, - "eqty_exp_base": 2.2330269073990845, - "grid_span": 0.3706598794902383, - "initial_eprice_ema_dist": -0.004119371354244461, - "initial_qty_pct": 0.01192080261923647, - "markup_range": 0.001959166357056209, - "max_n_entry_orders": 15, - "min_markup": 0.002573110213104516, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BATUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BATUSDT.json deleted file mode 100644 index 6e9c539d1..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BATUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1194.5468367977514, - "auto_unstuck_ema_dist": 0.0015442360434542873, - "auto_unstuck_qty_pct": 0.010508241553814046, - "auto_unstuck_wallet_exposure_threshold": 0.7067653970987103, - "backwards_tp": true, - "ema_span_0": 346.24439698712536, - "ema_span_1": 410.02540315728857, - "enabled": true, - "eprice_exp_base": 1.0057675059683195, - "eqty_exp_base": 1.2119691089145548, - "grid_span": 0.32915898107844216, - "initial_eprice_ema_dist": -0.0011320110324060664, - "initial_qty_pct": 0.015498195499082029, - "markup_range": 0.009120734708312457, - "max_n_entry_orders": 12, - "min_markup": 0.008137096732895536, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 901.4628205529368, - "auto_unstuck_ema_dist": -0.09522971301620199, - "auto_unstuck_qty_pct": 0.09802347609466765, - "auto_unstuck_wallet_exposure_threshold": 0.2173148086485413, - "backwards_tp": true, - "ema_span_0": 1017.0745544177877, - "ema_span_1": 1384.6565632089707, - "enabled": true, - "eprice_exp_base": 1.3457060073819271, - "eqty_exp_base": 1.7570600615140244, - "grid_span": 0.3670729585845791, - "initial_eprice_ema_dist": 0.00296960849411455, - "initial_qty_pct": 0.01845454710912966, - "markup_range": 0.005628610947054199, - "max_n_entry_orders": 10, - "min_markup": 0.0054591177423433, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BCHUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BCHUSDT.json deleted file mode 100644 index 872b946a6..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BCHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 793.2545239738062, - "auto_unstuck_ema_dist": -0.03896660901176437, - "auto_unstuck_qty_pct": 0.012361265284135729, - "auto_unstuck_wallet_exposure_threshold": 0.30548267749905744, - "backwards_tp": true, - "ema_span_0": 48.17216740380098, - "ema_span_1": 100.19106007147514, - "enabled": true, - "eprice_exp_base": 1.016964250898853, - "eqty_exp_base": 1.194015840439302, - "grid_span": 0.18696681323417724, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010004776049590054, - "markup_range": 0.001662490677103238, - "max_n_entry_orders": 9, - "min_markup": 0.0024005439540925057, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1305.9811457523685, - "auto_unstuck_ema_dist": -0.005861165299878759, - "auto_unstuck_qty_pct": 0.012015542867868455, - "auto_unstuck_wallet_exposure_threshold": 0.44586889725404605, - "backwards_tp": true, - "ema_span_0": 991.4568366209204, - "ema_span_1": 1309.0497677663054, - "enabled": true, - "eprice_exp_base": 1.1651164724458916, - "eqty_exp_base": 1.1535807603256603, - "grid_span": 0.3526192529617525, - "initial_eprice_ema_dist": 0.00296888048248019, - "initial_qty_pct": 0.016646987190141842, - "markup_range": 0.003491034485625458, - "max_n_entry_orders": 7, - "min_markup": 0.006820783791583923, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BELUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BELUSDT.json deleted file mode 100644 index 609cfe235..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BELUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1032.399942639176, - "auto_unstuck_ema_dist": -0.017195498797047265, - "auto_unstuck_qty_pct": 0.034458755457195595, - "auto_unstuck_wallet_exposure_threshold": 0.40949424829507347, - "backwards_tp": true, - "ema_span_0": 170.38970954039374, - "ema_span_1": 238.45090654777638, - "enabled": true, - "eprice_exp_base": 1.1258066010291534, - "eqty_exp_base": 1.9202161210547297, - "grid_span": 0.17093734427651444, - "initial_eprice_ema_dist": 0.002970712674591086, - "initial_qty_pct": 0.010001890600374617, - "markup_range": 0.005366461327996013, - "max_n_entry_orders": 8, - "min_markup": 0.005110310500275173, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 427.43314967119693, - "auto_unstuck_ema_dist": -0.015069235149086207, - "auto_unstuck_qty_pct": 0.03269801913949281, - "auto_unstuck_wallet_exposure_threshold": 0.48309471306667423, - "backwards_tp": true, - "ema_span_0": 548.3361412766191, - "ema_span_1": 1439.9448369670429, - "enabled": true, - "eprice_exp_base": 1.2816451454175464, - "eqty_exp_base": 1.0420821403237326, - "grid_span": 0.24160033233829353, - "initial_eprice_ema_dist": 0.00015688382484887794, - "initial_qty_pct": 0.01, - "markup_range": 0.0005254866320474633, - "max_n_entry_orders": 9, - "min_markup": 0.0036087658651600615, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLUEBIRDUSDT.json deleted file mode 100644 index 7e1fb6fba..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLUEBIRDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1317.833530108166, - "auto_unstuck_ema_dist": 0.0022253383604573726, - "auto_unstuck_qty_pct": 0.022864698347810117, - "auto_unstuck_wallet_exposure_threshold": 0.44791952710155053, - "backwards_tp": true, - "ema_span_0": 613.4352069848085, - "ema_span_1": 7.135352966522534, - "enabled": true, - "eprice_exp_base": 1.096660309408078, - "eqty_exp_base": 1.0177297882573575, - "grid_span": 0.3215981331692564, - "initial_eprice_ema_dist": 0.0029991325622652698, - "initial_qty_pct": 0.01718150714828029, - "markup_range": 0.002693698828219243, - "max_n_entry_orders": 10, - "min_markup": 0.0044000032450212095, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLURUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLURUSDT.json deleted file mode 100644 index f8d23dba1..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLURUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 943.60209581509, - "auto_unstuck_ema_dist": -0.01263026083130537, - "auto_unstuck_qty_pct": 0.039372718038203386, - "auto_unstuck_wallet_exposure_threshold": 0.6815375874327977, - "backwards_tp": true, - "ema_span_0": 321.69754508505173, - "ema_span_1": 498.1474333283621, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.4632073698606816, - "grid_span": 0.14643215943134671, - "initial_eprice_ema_dist": -0.004652328568934448, - "initial_qty_pct": 0.011784602775104874, - "markup_range": 0.0024085386532988005, - "max_n_entry_orders": 7, - "min_markup": 0.004997300530726923, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLZUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLZUSDT.json deleted file mode 100644 index e248c627d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BLZUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1336.7573258048772, - "auto_unstuck_ema_dist": -0.014550216868585193, - "auto_unstuck_qty_pct": 0.01262055538167958, - "auto_unstuck_wallet_exposure_threshold": 0.6566527773619127, - "backwards_tp": true, - "ema_span_0": 1129.8787463090673, - "ema_span_1": 1436.0225720093367, - "enabled": true, - "eprice_exp_base": 1.0683988051320632, - "eqty_exp_base": 1.5167267263064024, - "grid_span": 0.3139622716948075, - "initial_eprice_ema_dist": 0.002995109017244704, - "initial_qty_pct": 0.011416419921925604, - "markup_range": 0.010135576363240492, - "max_n_entry_orders": 8, - "min_markup": 0.006870955611556277, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 499.03080240035354, - "auto_unstuck_ema_dist": -0.012937470138787493, - "auto_unstuck_qty_pct": 0.08184399474128605, - "auto_unstuck_wallet_exposure_threshold": 0.31955219894094267, - "backwards_tp": true, - "ema_span_0": 1393.1943456501938, - "ema_span_1": 1213.4786702019649, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9364141783750206, - "grid_span": 0.23776868983487773, - "initial_eprice_ema_dist": 0.0019516399682863506, - "initial_qty_pct": 0.01141009878899957, - "markup_range": 0.014146927149232493, - "max_n_entry_orders": 10, - "min_markup": 0.004404602431267672, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BNBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BNBUSDT.json deleted file mode 100644 index 8c99a13da..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BNBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 442.46687285602206, - "auto_unstuck_ema_dist": -0.08077606809273262, - "auto_unstuck_qty_pct": 0.02135984268112154, - "auto_unstuck_wallet_exposure_threshold": 0.22291505983961543, - "backwards_tp": true, - "ema_span_0": 5.376882305727688, - "ema_span_1": 563.029473395207, - "enabled": true, - "eprice_exp_base": 1.1646593744266864, - "eqty_exp_base": 1.7488171024151953, - "grid_span": 0.2907603580822223, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013751174807238642, - "markup_range": 0.004967034855015677, - "max_n_entry_orders": 17, - "min_markup": 0.0021283720144967167, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.07721604836555436, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 855.3014672663251, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9325675741271633, - "grid_span": 0.40426618724098035, - "initial_eprice_ema_dist": -0.09990624975888267, - "initial_qty_pct": 0.01081428466330554, - "markup_range": 0.03846813248387199, - "max_n_entry_orders": 7, - "min_markup": 0.008983832397255243, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BNXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BNXUSDT.json deleted file mode 100644 index 05d4a8aa7..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BNXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1215.8674491480372, - "auto_unstuck_ema_dist": -0.0006139669812987997, - "auto_unstuck_qty_pct": 0.010590603991377324, - "auto_unstuck_wallet_exposure_threshold": 0.6099607562719934, - "backwards_tp": true, - "ema_span_0": 824.8894632930865, - "ema_span_1": 1053.8338125773316, - "enabled": true, - "eprice_exp_base": 1.2434732066066212, - "eqty_exp_base": 1.655098138343607, - "grid_span": 0.3355546536326009, - "initial_eprice_ema_dist": 0.000748779441651774, - "initial_qty_pct": 0.010246135371272787, - "markup_range": 0.007839754342224422, - "max_n_entry_orders": 7, - "min_markup": 0.004654051822706137, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCDOMUSDT.json deleted file mode 100644 index ed60c11ee..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCDOMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1318.4104516749699, - "auto_unstuck_ema_dist": -0.058460092111090795, - "auto_unstuck_qty_pct": 0.05060642147387394, - "auto_unstuck_wallet_exposure_threshold": 0.4810293299944333, - "backwards_tp": true, - "ema_span_0": 193.7350833651077, - "ema_span_1": 1420.5056364308696, - "enabled": true, - "eprice_exp_base": 1.0680518200636575, - "eqty_exp_base": 1.5232525875138057, - "grid_span": 0.1353572630706144, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010311415469551343, - "markup_range": 0.00011398986805161363, - "max_n_entry_orders": 10, - "min_markup": 0.0018696417860710735, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCSTUSDT.json deleted file mode 100644 index 41834de28..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCSTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 481.33617143618267, - "auto_unstuck_ema_dist": -0.02295645486848954, - "auto_unstuck_qty_pct": 0.1, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1153.1277657912685, - "ema_span_1": 1063.2580321837377, - "enabled": true, - "eprice_exp_base": 3.589340929477798, - "eqty_exp_base": 2.1822994067159325, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.07647189648423881, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 13, - "min_markup": 0.00271604128139237, - "n_close_orders": 9, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCUSDT.json deleted file mode 100644 index 92377bc5d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1024.028826440764, - "auto_unstuck_ema_dist": -0.09400114651372406, - "auto_unstuck_qty_pct": 0.02633379607046622, - "auto_unstuck_wallet_exposure_threshold": 0.45431274064467747, - "backwards_tp": true, - "ema_span_0": 922.2997974028557, - "ema_span_1": 833.4589977536242, - "enabled": true, - "eprice_exp_base": 1.000069302736537, - "eqty_exp_base": 1.0803878380091425, - "grid_span": 0.1567636896615192, - "initial_eprice_ema_dist": 0.000633872996784148, - "initial_qty_pct": 0.024908747212993406, - "markup_range": 0.0026900588113128888, - "max_n_entry_orders": 10, - "min_markup": 0.0028845049965784157, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1418.6562462352065, - "auto_unstuck_ema_dist": -0.010470212167376786, - "auto_unstuck_qty_pct": 0.01415059629736314, - "auto_unstuck_wallet_exposure_threshold": 0.11782315379780525, - "backwards_tp": true, - "ema_span_0": 1164.6212365288327, - "ema_span_1": 105.65666924479203, - "enabled": true, - "eprice_exp_base": 1.0109543575180266, - "eqty_exp_base": 1.0364562994716724, - "grid_span": 0.14634275259638022, - "initial_eprice_ema_dist": 0.002998965557466333, - "initial_qty_pct": 0.014359937543700914, - "markup_range": 0.0004219128490180443, - "max_n_entry_orders": 7, - "min_markup": 0.0014767028993130347, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTSUSDT.json deleted file mode 100644 index 4f57dfdb1..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/BTSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/C98USDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/C98USDT.json deleted file mode 100644 index 02bb9dc18..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/C98USDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 588.4046506251598, - "auto_unstuck_ema_dist": -0.04929267586320539, - "auto_unstuck_qty_pct": 0.02862607293805084, - "auto_unstuck_wallet_exposure_threshold": 0.2796812591951138, - "backwards_tp": true, - "ema_span_0": 983.3912263591697, - "ema_span_1": 1291.369846357907, - "enabled": true, - "eprice_exp_base": 1.0623121946221181, - "eqty_exp_base": 1.1639082421634233, - "grid_span": 0.5127404697753712, - "initial_eprice_ema_dist": 0.0016943324124452292, - "initial_qty_pct": 0.014164359772480019, - "markup_range": 0.0056096624613933155, - "max_n_entry_orders": 17, - "min_markup": 0.009538893707668243, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CELOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CELOUSDT.json deleted file mode 100644 index 010a3533e..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CELOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.4092512849797, - "auto_unstuck_ema_dist": -0.007804317744943648, - "auto_unstuck_qty_pct": 0.012827505738499128, - "auto_unstuck_wallet_exposure_threshold": 0.23114110655160536, - "backwards_tp": true, - "ema_span_0": 471.51598421925127, - "ema_span_1": 690.0351092432278, - "enabled": true, - "eprice_exp_base": 1.1562934653212311, - "eqty_exp_base": 2.0699935345270997, - "grid_span": 0.15929253434258953, - "initial_eprice_ema_dist": -0.00866265020952416, - "initial_qty_pct": 0.011026991701794699, - "markup_range": 0.005901207434692439, - "max_n_entry_orders": 7, - "min_markup": 0.005892201524839872, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CELRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CELRUSDT.json deleted file mode 100644 index fcfbb080d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CELRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1417.5595161289157, - "auto_unstuck_ema_dist": -0.034328822169178735, - "auto_unstuck_qty_pct": 0.04196890107888902, - "auto_unstuck_wallet_exposure_threshold": 0.15702577867185727, - "backwards_tp": true, - "ema_span_0": 699.9315721565192, - "ema_span_1": 97.24843819473062, - "enabled": true, - "eprice_exp_base": 1.000000113879665, - "eqty_exp_base": 1.4543933682296195, - "grid_span": 0.18293760608303983, - "initial_eprice_ema_dist": 0.0017019501975442835, - "initial_qty_pct": 0.017471325290169197, - "markup_range": 0.007100615368681533, - "max_n_entry_orders": 9, - "min_markup": 0.009480804499218239, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.0434034935572, - "auto_unstuck_ema_dist": -0.07336392221453619, - "auto_unstuck_qty_pct": 0.041647237096289036, - "auto_unstuck_wallet_exposure_threshold": 0.2567189717660962, - "backwards_tp": true, - "ema_span_0": 698.9439556665241, - "ema_span_1": 1420.4838396465016, - "enabled": true, - "eprice_exp_base": 1.0674267479608834, - "eqty_exp_base": 1.7934484576941174, - "grid_span": 0.12653934155635077, - "initial_eprice_ema_dist": -0.0030766630450440135, - "initial_qty_pct": 0.014586123518883684, - "markup_range": 0.002806837580842318, - "max_n_entry_orders": 13, - "min_markup": 0.0035574376635588885, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CFXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CFXUSDT.json deleted file mode 100644 index 10d7ed7e9..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CFXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1174.4957493303018, - "auto_unstuck_ema_dist": -0.03256348980375066, - "auto_unstuck_qty_pct": 0.017510348425941624, - "auto_unstuck_wallet_exposure_threshold": 0.7761913402202594, - "backwards_tp": true, - "ema_span_0": 934.7386114305474, - "ema_span_1": 1357.07877191991, - "enabled": true, - "eprice_exp_base": 1.0120865382439177, - "eqty_exp_base": 1.320710372420871, - "grid_span": 0.30224181950552237, - "initial_eprice_ema_dist": 0.00294606034102475, - "initial_qty_pct": 0.010089718048227872, - "markup_range": 0.005864151461505409, - "max_n_entry_orders": 7, - "min_markup": 0.009613517511271272, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.05710761176778564, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.6992146886012615, - "backwards_tp": true, - "ema_span_0": 1127.6865426361305, - "ema_span_1": 35.87560614031918, - "enabled": true, - "eprice_exp_base": 1.4491264014055243, - "eqty_exp_base": 2.8505990988397607, - "grid_span": 0.45421682700153465, - "initial_eprice_ema_dist": -0.010156975933813053, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 9, - "min_markup": 0.01, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CHRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CHRUSDT.json deleted file mode 100644 index 916a32901..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CHRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1356.0976122855272, - "auto_unstuck_ema_dist": -0.04096486330558547, - "auto_unstuck_qty_pct": 0.01157079205008633, - "auto_unstuck_wallet_exposure_threshold": 0.6585588232903201, - "backwards_tp": true, - "ema_span_0": 754.9650547886384, - "ema_span_1": 32.02355625334798, - "enabled": true, - "eprice_exp_base": 1.0003232146185104, - "eqty_exp_base": 2.0086046719051853, - "grid_span": 0.19016357148075247, - "initial_eprice_ema_dist": -0.056805610105461174, - "initial_qty_pct": 0.013498406480045204, - "markup_range": 0.0060398974172039925, - "max_n_entry_orders": 9, - "min_markup": 0.006212424819249478, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.3656695593141, - "auto_unstuck_ema_dist": -0.015398197791529941, - "auto_unstuck_qty_pct": 0.04431219279027263, - "auto_unstuck_wallet_exposure_threshold": 0.14474877521135127, - "backwards_tp": true, - "ema_span_0": 1345.8018944144364, - "ema_span_1": 114.25356926090353, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.228892022834553, - "grid_span": 0.19509075249107113, - "initial_eprice_ema_dist": 0.0028304685343249194, - "initial_qty_pct": 0.014539530455688529, - "markup_range": 0.019110397358009217, - "max_n_entry_orders": 13, - "min_markup": 0.009932421283043847, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CHZUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CHZUSDT.json deleted file mode 100644 index 8cf3f20f1..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CHZUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1253.4046838701397, - "auto_unstuck_ema_dist": -0.038304871892965775, - "auto_unstuck_qty_pct": 0.011009382613533916, - "auto_unstuck_wallet_exposure_threshold": 0.7565350300248895, - "backwards_tp": true, - "ema_span_0": 535.751315950031, - "ema_span_1": 436.03558382513296, - "enabled": true, - "eprice_exp_base": 1.1783337963433893, - "eqty_exp_base": 1.0000124766419358, - "grid_span": 0.32119215268552676, - "initial_eprice_ema_dist": 0.002997427280291333, - "initial_qty_pct": 0.014236466472424011, - "markup_range": 0.0038804863508184796, - "max_n_entry_orders": 7, - "min_markup": 0.004239300939060961, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1087.7476999109492, - "auto_unstuck_ema_dist": -0.0034658854376765497, - "auto_unstuck_qty_pct": 0.05187352535060557, - "auto_unstuck_wallet_exposure_threshold": 0.14798692619223092, - "backwards_tp": true, - "ema_span_0": 638.9806474895937, - "ema_span_1": 603.075615225178, - "enabled": true, - "eprice_exp_base": 1.2098530047923792, - "eqty_exp_base": 2.581343663099173, - "grid_span": 0.2958953726316062, - "initial_eprice_ema_dist": -0.0016116329600583104, - "initial_qty_pct": 0.02004914461143985, - "markup_range": 0.0005562750621565159, - "max_n_entry_orders": 11, - "min_markup": 0.007760528893120093, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CKBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CKBUSDT.json deleted file mode 100644 index eff7cc82c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CKBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 781.1069973944801, - "auto_unstuck_ema_dist": -0.04041194891053113, - "auto_unstuck_qty_pct": 0.013039336957362266, - "auto_unstuck_wallet_exposure_threshold": 0.21005762329714173, - "backwards_tp": true, - "ema_span_0": 1089.3533422202247, - "ema_span_1": 645.6438460818256, - "enabled": true, - "eprice_exp_base": 1.432400111323191, - "eqty_exp_base": 2.6182858260856072, - "grid_span": 0.1564882409441415, - "initial_eprice_ema_dist": 0.002991926780557061, - "initial_qty_pct": 0.01136107219949211, - "markup_range": 0.005102629400112615, - "max_n_entry_orders": 7, - "min_markup": 0.007082499507288377, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COCOSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COCOSUSDT.json deleted file mode 100644 index b211a6d87..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COCOSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.6873097451435, - "auto_unstuck_ema_dist": -0.008960377763974401, - "auto_unstuck_qty_pct": 0.018710940226582512, - "auto_unstuck_wallet_exposure_threshold": 0.18971281109312993, - "backwards_tp": true, - "ema_span_0": 60.03772161351416, - "ema_span_1": 1190.4675258476373, - "enabled": true, - "eprice_exp_base": 1.2008545071500585, - "eqty_exp_base": 2.0366095527917594, - "grid_span": 0.2406939573172345, - "initial_eprice_ema_dist": 0.002815561363705389, - "initial_qty_pct": 0.012504443843115734, - "markup_range": 0.004268329742834503, - "max_n_entry_orders": 9, - "min_markup": 0.009816126119305007, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 853.872837912171, - "auto_unstuck_ema_dist": -0.08571722772879244, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8346181381557768, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.3132614235836164, - "initial_eprice_ema_dist": -0.03569088172243363, - "initial_qty_pct": 0.04890885068969343, - "markup_range": 0.06, - "max_n_entry_orders": 8, - "min_markup": 0.004945749887456755, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COMBOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COMBOUSDT.json deleted file mode 100644 index 0a49918de..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COMBOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1196.2251260134847, - "auto_unstuck_ema_dist": -0.02233595261660813, - "auto_unstuck_qty_pct": 0.010203513346407093, - "auto_unstuck_wallet_exposure_threshold": 0.6033438116771447, - "backwards_tp": true, - "ema_span_0": 43.15021004348335, - "ema_span_1": 165.4137955730145, - "enabled": true, - "eprice_exp_base": 1.000017606485477, - "eqty_exp_base": 1.9076799393723978, - "grid_span": 0.10018369782933174, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013573373371142968, - "markup_range": 9.279685691963764e-05, - "max_n_entry_orders": 8, - "min_markup": 0.005365995149080274, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COMPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COMPUSDT.json deleted file mode 100644 index 41def5395..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COMPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 838.3120242747932, - "auto_unstuck_ema_dist": -0.07370643297762158, - "auto_unstuck_qty_pct": 0.016713622363954586, - "auto_unstuck_wallet_exposure_threshold": 0.548354015436665, - "backwards_tp": true, - "ema_span_0": 1140.5737703739335, - "ema_span_1": 895.7602885997176, - "enabled": true, - "eprice_exp_base": 1.0825102452087612, - "eqty_exp_base": 1.3591965770022436, - "grid_span": 0.282476359401912, - "initial_eprice_ema_dist": 0.0001353624846836309, - "initial_qty_pct": 0.021731306239346666, - "markup_range": 0.003711966693670785, - "max_n_entry_orders": 7, - "min_markup": 0.009850256638459343, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 678.162975373363, - "auto_unstuck_ema_dist": -0.04953831021073149, - "auto_unstuck_qty_pct": 0.021075774309723447, - "auto_unstuck_wallet_exposure_threshold": 0.3824837309941427, - "backwards_tp": true, - "ema_span_0": 1135.8915209008524, - "ema_span_1": 647.4759274692988, - "enabled": true, - "eprice_exp_base": 1.2640396733745156, - "eqty_exp_base": 1.4213196987563914, - "grid_span": 0.4049268199885872, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012557802861449786, - "markup_range": 0.005928020922128725, - "max_n_entry_orders": 9, - "min_markup": 0.007055199966333963, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COTIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COTIUSDT.json deleted file mode 100644 index 3d6ebea51..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/COTIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1164.367105207233, - "auto_unstuck_ema_dist": 0.0022907218188258, - "auto_unstuck_qty_pct": 0.027460747214832215, - "auto_unstuck_wallet_exposure_threshold": 0.23691563946940694, - "backwards_tp": true, - "ema_span_0": 281.6410886581773, - "ema_span_1": 470.2248647508127, - "enabled": true, - "eprice_exp_base": 1.052812334609832, - "eqty_exp_base": 1.8618712239404998, - "grid_span": 0.14701900906761717, - "initial_eprice_ema_dist": 0.0017507444397568501, - "initial_qty_pct": 0.011083307892104348, - "markup_range": 0.00605671350196698, - "max_n_entry_orders": 8, - "min_markup": 0.008461394426644139, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1001.7030082245074, - "auto_unstuck_ema_dist": 0.0028531406753069194, - "auto_unstuck_qty_pct": 0.01001281808926318, - "auto_unstuck_wallet_exposure_threshold": 0.2547324941646131, - "backwards_tp": true, - "ema_span_0": 521.5320708307191, - "ema_span_1": 816.2784461391484, - "enabled": true, - "eprice_exp_base": 1.0700039340495753, - "eqty_exp_base": 2.76745883879376, - "grid_span": 0.14137276698452633, - "initial_eprice_ema_dist": -0.005176577977884642, - "initial_qty_pct": 0.011323622492658574, - "markup_range": 0.005212070894250841, - "max_n_entry_orders": 9, - "min_markup": 0.007306767380411044, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CRVUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CRVUSDT.json deleted file mode 100644 index a1a4349f7..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CRVUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 828.3389966305593, - "auto_unstuck_ema_dist": -0.0748963339146766, - "auto_unstuck_qty_pct": 0.019373557221505328, - "auto_unstuck_wallet_exposure_threshold": 0.40071449528436187, - "backwards_tp": true, - "ema_span_0": 1325.222665605102, - "ema_span_1": 330.15655219966743, - "enabled": true, - "eprice_exp_base": 1.1116718536817174, - "eqty_exp_base": 1.6170948371146854, - "grid_span": 0.22455765423915544, - "initial_eprice_ema_dist": 0.0017658434051677455, - "initial_qty_pct": 0.014897601682688473, - "markup_range": 0.01051335829168496, - "max_n_entry_orders": 12, - "min_markup": 0.0028632509612613677, - "n_close_orders": 9, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CTKUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CTKUSDT.json deleted file mode 100644 index 540d85b93..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CTKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1410.2617536223438, - "auto_unstuck_ema_dist": -0.07382972647481471, - "auto_unstuck_qty_pct": 0.013585576994096567, - "auto_unstuck_wallet_exposure_threshold": 0.5347406980723225, - "backwards_tp": true, - "ema_span_0": 1273.9259663849127, - "ema_span_1": 976.1240373461767, - "enabled": true, - "eprice_exp_base": 1.1304824300805365, - "eqty_exp_base": 2.048053538220396, - "grid_span": 0.17431757247031854, - "initial_eprice_ema_dist": -0.0008322492678262902, - "initial_qty_pct": 0.014659795275296102, - "markup_range": 0.0068827123745316375, - "max_n_entry_orders": 9, - "min_markup": 0.009457337723553772, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CTSIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CTSIUSDT.json deleted file mode 100644 index 9fd580c89..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CTSIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1253.4046838701397, - "auto_unstuck_ema_dist": -0.038304871892965775, - "auto_unstuck_qty_pct": 0.011009382613533916, - "auto_unstuck_wallet_exposure_threshold": 0.7565350300248895, - "backwards_tp": true, - "ema_span_0": 535.751315950031, - "ema_span_1": 436.03558382513296, - "enabled": true, - "eprice_exp_base": 1.1783337963433893, - "eqty_exp_base": 1.0000124766419358, - "grid_span": 0.32119215268552676, - "initial_eprice_ema_dist": 0.002997427280291333, - "initial_qty_pct": 0.014236466472424011, - "markup_range": 0.0038804863508184796, - "max_n_entry_orders": 7, - "min_markup": 0.004239300939060961, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1363.1256062159623, - "auto_unstuck_ema_dist": -0.0062457110276821284, - "auto_unstuck_qty_pct": 0.022309067051932994, - "auto_unstuck_wallet_exposure_threshold": 0.7915770920029535, - "backwards_tp": true, - "ema_span_0": 163.98869270457698, - "ema_span_1": 555.5142559278546, - "enabled": true, - "eprice_exp_base": 1.1211887337116984, - "eqty_exp_base": 3.612510369922904, - "grid_span": 0.15402442098786912, - "initial_eprice_ema_dist": 0.0025458854211192167, - "initial_qty_pct": 0.01, - "markup_range": 0.0014841702678626398, - "max_n_entry_orders": 19, - "min_markup": 0.003510232273971882, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CVCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CVCUSDT.json deleted file mode 100644 index 577eb0f2a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CVCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CVXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CVXUSDT.json deleted file mode 100644 index 88f22eeeb..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/CVXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1240.2565851661307, - "auto_unstuck_ema_dist": -0.04019038393165331, - "auto_unstuck_qty_pct": 0.021040444008926396, - "auto_unstuck_wallet_exposure_threshold": 0.30527300469357793, - "backwards_tp": true, - "ema_span_0": 1031.6178053435272, - "ema_span_1": 358.10397487215164, - "enabled": true, - "eprice_exp_base": 1.0494443936743298, - "eqty_exp_base": 3.256590726383303, - "grid_span": 0.16643856649520014, - "initial_eprice_ema_dist": 0.0027804189287776717, - "initial_qty_pct": 0.010518974411386302, - "markup_range": 0.006586886397756721, - "max_n_entry_orders": 9, - "min_markup": 0.009999783817915974, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 831.6168268061238, - "auto_unstuck_ema_dist": -0.034844460612906275, - "auto_unstuck_qty_pct": 0.043536320765597346, - "auto_unstuck_wallet_exposure_threshold": 0.6928853433538196, - "backwards_tp": true, - "ema_span_0": 1395.1139139848885, - "ema_span_1": 904.0127022319762, - "enabled": true, - "eprice_exp_base": 1.051714084978681, - "eqty_exp_base": 2.2330269073990845, - "grid_span": 0.3706598794902383, - "initial_eprice_ema_dist": -0.004119371354244461, - "initial_qty_pct": 0.01192080261923647, - "markup_range": 0.001959166357056209, - "max_n_entry_orders": 15, - "min_markup": 0.002573110213104516, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DARUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DARUSDT.json deleted file mode 100644 index 51195574c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1317.833530108166, - "auto_unstuck_ema_dist": 0.0022253383604573726, - "auto_unstuck_qty_pct": 0.022864698347810117, - "auto_unstuck_wallet_exposure_threshold": 0.44791952710155053, - "backwards_tp": true, - "ema_span_0": 613.4352069848085, - "ema_span_1": 7.135352966522534, - "enabled": true, - "eprice_exp_base": 1.096660309408078, - "eqty_exp_base": 1.0177297882573575, - "grid_span": 0.3215981331692564, - "initial_eprice_ema_dist": 0.0029991325622652698, - "initial_qty_pct": 0.01718150714828029, - "markup_range": 0.002693698828219243, - "max_n_entry_orders": 10, - "min_markup": 0.0044000032450212095, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 790.5670594679974, - "auto_unstuck_ema_dist": -0.03544949333135166, - "auto_unstuck_qty_pct": 0.010684507938142714, - "auto_unstuck_wallet_exposure_threshold": 0.34068900370921995, - "backwards_tp": true, - "ema_span_0": 619.3318657423213, - "ema_span_1": 229.32712027080743, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.448115232441877, - "grid_span": 0.15536111949553266, - "initial_eprice_ema_dist": -0.047104956145325526, - "initial_qty_pct": 0.012762885047948057, - "markup_range": 0.0010440091119608922, - "max_n_entry_orders": 19, - "min_markup": 0.004446391943853703, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DASHUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DASHUSDT.json deleted file mode 100644 index ddab6522f..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DASHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1418.009241043872, - "auto_unstuck_ema_dist": -0.004993538135800457, - "auto_unstuck_qty_pct": 0.01009656907607459, - "auto_unstuck_wallet_exposure_threshold": 0.569275149511458, - "backwards_tp": true, - "ema_span_0": 485.71648821946144, - "ema_span_1": 744.8665892294066, - "enabled": true, - "eprice_exp_base": 1.0000031993709957, - "eqty_exp_base": 1.1698898337941797, - "grid_span": 0.303493725776266, - "initial_eprice_ema_dist": -0.001774131470705545, - "initial_qty_pct": 0.010133152572590261, - "markup_range": 0.008566322536539817, - "max_n_entry_orders": 15, - "min_markup": 0.005003643386410385, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 790.5670594679974, - "auto_unstuck_ema_dist": -0.03544949333135166, - "auto_unstuck_qty_pct": 0.010684507938142714, - "auto_unstuck_wallet_exposure_threshold": 0.34068900370921995, - "backwards_tp": true, - "ema_span_0": 619.3318657423213, - "ema_span_1": 229.32712027080743, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.448115232441877, - "grid_span": 0.15536111949553266, - "initial_eprice_ema_dist": -0.047104956145325526, - "initial_qty_pct": 0.012762885047948057, - "markup_range": 0.0010440091119608922, - "max_n_entry_orders": 19, - "min_markup": 0.004446391943853703, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DEFIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DEFIUSDT.json deleted file mode 100644 index 2c3eb560c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DEFIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 608.1372240805482, - "auto_unstuck_ema_dist": -0.02955737732520703, - "auto_unstuck_qty_pct": 0.018854721778466487, - "auto_unstuck_wallet_exposure_threshold": 0.2899519257671118, - "backwards_tp": true, - "ema_span_0": 735.8831938621486, - "ema_span_1": 1054.88750975569, - "enabled": true, - "eprice_exp_base": 1.1040506680834845, - "eqty_exp_base": 1.6382081742463226, - "grid_span": 0.18737207114959717, - "initial_eprice_ema_dist": -0.004155312490637599, - "initial_qty_pct": 0.013412153304446192, - "markup_range": 0.005389260452694425, - "max_n_entry_orders": 7, - "min_markup": 0.007638346187856128, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1034.5591778608916, - "auto_unstuck_ema_dist": 0.002632971785857589, - "auto_unstuck_qty_pct": 0.010288601427811163, - "auto_unstuck_wallet_exposure_threshold": 0.3646283137875909, - "backwards_tp": true, - "ema_span_0": 1429.7196272807514, - "ema_span_1": 1012.6362684123183, - "enabled": true, - "eprice_exp_base": 1.0813619357542266, - "eqty_exp_base": 3.8613910841788557, - "grid_span": 0.13278949373095877, - "initial_eprice_ema_dist": -0.00014197257902766626, - "initial_qty_pct": 0.013472704427205835, - "markup_range": 0.002532548146178754, - "max_n_entry_orders": 20, - "min_markup": 0.005542276301552574, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DENTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DENTUSDT.json deleted file mode 100644 index 1df71b205..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DENTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 448.6172174521932, - "auto_unstuck_ema_dist": -0.007561885143775889, - "auto_unstuck_qty_pct": 0.04264556639810065, - "auto_unstuck_wallet_exposure_threshold": 0.12718774020885557, - "backwards_tp": true, - "ema_span_0": 555.5332802101452, - "ema_span_1": 470.09400474759855, - "enabled": true, - "eprice_exp_base": 1.0966927491393668, - "eqty_exp_base": 1.7220816742812664, - "grid_span": 0.23780570861735031, - "initial_eprice_ema_dist": 0.0029999428079923573, - "initial_qty_pct": 0.015036412720793995, - "markup_range": 0.004595273253180742, - "max_n_entry_orders": 11, - "min_markup": 0.008825418568201715, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.336455858615, - "auto_unstuck_ema_dist": -0.09420340704641568, - "auto_unstuck_qty_pct": 0.03727852876925451, - "auto_unstuck_wallet_exposure_threshold": 0.264002908997623, - "backwards_tp": true, - "ema_span_0": 1281.230049366816, - "ema_span_1": 1278.553940164715, - "enabled": true, - "eprice_exp_base": 1.0486886922883731, - "eqty_exp_base": 2.9727407510302357, - "grid_span": 0.3446674736354055, - "initial_eprice_ema_dist": -0.006685159124024106, - "initial_qty_pct": 0.014888999115593918, - "markup_range": 0.006611724146697535, - "max_n_entry_orders": 22, - "min_markup": 0.005586593437728122, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DGBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DGBUSDT.json deleted file mode 100644 index 5929963d9..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DGBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 619.7282175730941, - "auto_unstuck_ema_dist": -0.041954183396949195, - "auto_unstuck_qty_pct": 0.047208897000557394, - "auto_unstuck_wallet_exposure_threshold": 0.29305367767147916, - "backwards_tp": true, - "ema_span_0": 1396.1765237038815, - "ema_span_1": 429.37227822213225, - "enabled": true, - "eprice_exp_base": 1.325703772461556, - "eqty_exp_base": 1.448366220671142, - "grid_span": 0.23112188498397643, - "initial_eprice_ema_dist": -0.0021993162275345812, - "initial_qty_pct": 0.015264805418319803, - "markup_range": 0.009261663941753153, - "max_n_entry_orders": 7, - "min_markup": 0.007253321967519354, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 940.7086792703731, - "auto_unstuck_ema_dist": -0.012553165246576976, - "auto_unstuck_qty_pct": 0.010606737881831715, - "auto_unstuck_wallet_exposure_threshold": 0.5847722602633316, - "backwards_tp": true, - "ema_span_0": 1032.9566457789674, - "ema_span_1": 674.492002347481, - "enabled": true, - "eprice_exp_base": 1.2532029517002135, - "eqty_exp_base": 1.861661092822006, - "grid_span": 0.14547769704201155, - "initial_eprice_ema_dist": 0.0016977577963831925, - "initial_qty_pct": 0.012861450076037595, - "markup_range": 0.009143037000504861, - "max_n_entry_orders": 10, - "min_markup": 0.0046727910491455756, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DOGEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DOGEUSDT.json deleted file mode 100644 index a8910fe35..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DOGEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 398.82361184535074, - "auto_unstuck_ema_dist": -0.0018062727097298815, - "auto_unstuck_qty_pct": 0.06035714231382467, - "auto_unstuck_wallet_exposure_threshold": 0.18489938277491794, - "backwards_tp": true, - "ema_span_0": 942.5494609680151, - "ema_span_1": 957.4417034642877, - "enabled": true, - "eprice_exp_base": 1.1931781533327768, - "eqty_exp_base": 1.0964573436703675, - "grid_span": 0.12559083611289854, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.020902081014903626, - "markup_range": 0.001371605517100114, - "max_n_entry_orders": 9, - "min_markup": 0.003971431275240029, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1423.921294748867, - "auto_unstuck_ema_dist": -0.01054633715749864, - "auto_unstuck_qty_pct": 0.025231824190068527, - "auto_unstuck_wallet_exposure_threshold": 0.5562738224879781, - "backwards_tp": true, - "ema_span_0": 1134.3083842624956, - "ema_span_1": 1417.6032201330115, - "enabled": true, - "eprice_exp_base": 1.49326815245357, - "eqty_exp_base": 2.430999243247185, - "grid_span": 0.6161292264371845, - "initial_eprice_ema_dist": -0.0017873366115620456, - "initial_qty_pct": 0.01, - "markup_range": 0.0022510161783562328, - "max_n_entry_orders": 7, - "min_markup": 0.0016546885919722174, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DOTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DOTUSDT.json deleted file mode 100644 index abc2956ce..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DOTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1153.4089193874636, - "auto_unstuck_ema_dist": -0.035875033846794975, - "auto_unstuck_qty_pct": 0.010263757064094459, - "auto_unstuck_wallet_exposure_threshold": 0.46729587961200386, - "backwards_tp": true, - "ema_span_0": 316.9357839604266, - "ema_span_1": 970.9396473961013, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3362876166533324, - "grid_span": 0.10102462899372266, - "initial_eprice_ema_dist": -0.005758191324436425, - "initial_qty_pct": 0.011082668241455002, - "markup_range": 0.0057278377986356415, - "max_n_entry_orders": 15, - "min_markup": 0.0030046892767935027, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1150.3511144922481, - "auto_unstuck_ema_dist": -0.041906902847726184, - "auto_unstuck_qty_pct": 0.032170310270600376, - "auto_unstuck_wallet_exposure_threshold": 0.43846263782105394, - "backwards_tp": true, - "ema_span_0": 692.1612919901778, - "ema_span_1": 742.3943677119056, - "enabled": true, - "eprice_exp_base": 1.1199019380966861, - "eqty_exp_base": 2.954505148655551, - "grid_span": 0.17345283274055326, - "initial_eprice_ema_dist": -0.0022492226271184244, - "initial_qty_pct": 0.01793282602537548, - "markup_range": 0.0035845531827502124, - "max_n_entry_orders": 8, - "min_markup": 0.006051740296178144, - "n_close_orders": 9, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DUSKUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DUSKUSDT.json deleted file mode 100644 index 6f6c22a7b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DUSKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0500150211110256, - "auto_unstuck_qty_pct": 0.011934357993227224, - "auto_unstuck_wallet_exposure_threshold": 0.5456342074520889, - "backwards_tp": true, - "ema_span_0": 1340.9912942813796, - "ema_span_1": 1325.815993595614, - "enabled": true, - "eprice_exp_base": 1.010201287616513, - "eqty_exp_base": 2.8993618137479764, - "grid_span": 0.1605333319858612, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 20, - "min_markup": 0.008824619416875382, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DYDXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DYDXUSDT.json deleted file mode 100644 index 9d3df2024..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/DYDXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1336.7573258048772, - "auto_unstuck_ema_dist": -0.014550216868585193, - "auto_unstuck_qty_pct": 0.01262055538167958, - "auto_unstuck_wallet_exposure_threshold": 0.6566527773619127, - "backwards_tp": true, - "ema_span_0": 1129.8787463090673, - "ema_span_1": 1436.0225720093367, - "enabled": true, - "eprice_exp_base": 1.0683988051320632, - "eqty_exp_base": 1.5167267263064024, - "grid_span": 0.3139622716948075, - "initial_eprice_ema_dist": 0.002995109017244704, - "initial_qty_pct": 0.011416419921925604, - "markup_range": 0.010135576363240492, - "max_n_entry_orders": 8, - "min_markup": 0.006870955611556277, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EDUUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EDUUSDT.json deleted file mode 100644 index 981220a5c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EDUUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 744.3161590927804, - "auto_unstuck_ema_dist": -0.000832856043586223, - "auto_unstuck_qty_pct": 0.019838123633531574, - "auto_unstuck_wallet_exposure_threshold": 0.41716875965941924, - "backwards_tp": true, - "ema_span_0": 7.808799208124387, - "ema_span_1": 1109.859386607598, - "enabled": true, - "eprice_exp_base": 1.0007124828485983, - "eqty_exp_base": 2.134319566846371, - "grid_span": 0.22689293427171217, - "initial_eprice_ema_dist": -0.0007614403447673986, - "initial_qty_pct": 0.010641439103372646, - "markup_range": 0.006215298659219062, - "max_n_entry_orders": 7, - "min_markup": 0.005790448305888321, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EGLDUSDT.json deleted file mode 100644 index d04b26b18..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EGLDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ENJUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ENJUSDT.json deleted file mode 100644 index 441287f68..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ENJUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 685.7518969658252, - "auto_unstuck_ema_dist": -0.09446425969026072, - "auto_unstuck_qty_pct": 0.010469342486375809, - "auto_unstuck_wallet_exposure_threshold": 0.6431729566933375, - "backwards_tp": true, - "ema_span_0": 1014.3162152474173, - "ema_span_1": 1372.949956726125, - "enabled": true, - "eprice_exp_base": 1.2019265879766374, - "eqty_exp_base": 1.7212873336727055, - "grid_span": 0.30484844200710765, - "initial_eprice_ema_dist": -0.008252672153222083, - "initial_qty_pct": 0.011089263583602915, - "markup_range": 0.005110629674684569, - "max_n_entry_orders": 12, - "min_markup": 0.004372439443132463, - "n_close_orders": 15, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 706.7662352515895, - "auto_unstuck_ema_dist": -0.036498000326193804, - "auto_unstuck_qty_pct": 0.01981831571758794, - "auto_unstuck_wallet_exposure_threshold": 0.40851177642177217, - "backwards_tp": true, - "ema_span_0": 74.879394743108, - "ema_span_1": 1405.847238241598, - "enabled": true, - "eprice_exp_base": 1.2019323897947605, - "eqty_exp_base": 1.3378286681862148, - "grid_span": 0.2578523736206859, - "initial_eprice_ema_dist": -0.005558847327716189, - "initial_qty_pct": 0.01, - "markup_range": 0.0027227851621016313, - "max_n_entry_orders": 17, - "min_markup": 0.00280973155653425, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ENSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ENSUSDT.json deleted file mode 100644 index 1c57d7b68..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ENSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.9569792006992, - "auto_unstuck_ema_dist": -0.018597537646096538, - "auto_unstuck_qty_pct": 0.055220276487529585, - "auto_unstuck_wallet_exposure_threshold": 0.19955577235205618, - "backwards_tp": true, - "ema_span_0": 1008.0914015796933, - "ema_span_1": 1083.336836507491, - "enabled": true, - "eprice_exp_base": 1.143424545343761, - "eqty_exp_base": 1.5799199348833062, - "grid_span": 0.17527323178873047, - "initial_eprice_ema_dist": -0.0058279511456999075, - "initial_qty_pct": 0.017128542485555447, - "markup_range": 0.010000873003413202, - "max_n_entry_orders": 10, - "min_markup": 0.005966950872680734, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EOSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EOSUSDT.json deleted file mode 100644 index bd3b6ad51..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/EOSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1100.2544867173774, - "auto_unstuck_ema_dist": -0.07738798072694454, - "auto_unstuck_qty_pct": 0.04625307986861594, - "auto_unstuck_wallet_exposure_threshold": 0.5032881652242883, - "backwards_tp": true, - "ema_span_0": 967.4908523197893, - "ema_span_1": 900.9819839426407, - "enabled": true, - "eprice_exp_base": 1.0811479700918802, - "eqty_exp_base": 1.0110307331018882, - "grid_span": 0.33357240436832875, - "initial_eprice_ema_dist": 0.0029664910335944835, - "initial_qty_pct": 0.014488610093013306, - "markup_range": 0.005950923561543919, - "max_n_entry_orders": 7, - "min_markup": 0.0031910780148571255, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1420.9651479537285, - "auto_unstuck_ema_dist": -0.033631641830101304, - "auto_unstuck_qty_pct": 0.020401806530856124, - "auto_unstuck_wallet_exposure_threshold": 0.2938345281297234, - "backwards_tp": true, - "ema_span_0": 1011.4518973719919, - "ema_span_1": 798.0567764621785, - "enabled": true, - "eprice_exp_base": 1.0680920722213172, - "eqty_exp_base": 2.2829103749222863, - "grid_span": 0.14874815958874757, - "initial_eprice_ema_dist": -0.011196204261857148, - "initial_qty_pct": 0.017998783074008304, - "markup_range": 0.0074045251026196865, - "max_n_entry_orders": 9, - "min_markup": 0.005606728427408416, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ETCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ETCUSDT.json deleted file mode 100644 index f371f519b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ETCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 967.8704613384448, - "auto_unstuck_ema_dist": -0.00430860988089121, - "auto_unstuck_qty_pct": 0.03110114936351113, - "auto_unstuck_wallet_exposure_threshold": 0.3211902353219198, - "backwards_tp": true, - "ema_span_0": 1092.5619013698165, - "ema_span_1": 657.0811302336189, - "enabled": true, - "eprice_exp_base": 1.0929579684999111, - "eqty_exp_base": 1.1250604087209037, - "grid_span": 0.17813497022131788, - "initial_eprice_ema_dist": 0.002949091134383945, - "initial_qty_pct": 0.01675904385574124, - "markup_range": 0.003909823304475158, - "max_n_entry_orders": 8, - "min_markup": 0.004112467060262994, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 138.47510543401285, - "auto_unstuck_ema_dist": -0.026104083052092178, - "auto_unstuck_qty_pct": 0.09220308028194235, - "auto_unstuck_wallet_exposure_threshold": 0.8353909309746814, - "backwards_tp": true, - "ema_span_0": 1287.2764975454397, - "ema_span_1": 713.763901421996, - "enabled": true, - "eprice_exp_base": 1.0001961910938257, - "eqty_exp_base": 3.701393428040084, - "grid_span": 0.4597819350546342, - "initial_eprice_ema_dist": 0.0013891750965880102, - "initial_qty_pct": 0.010094487280677668, - "markup_range": 0.0009843307459434908, - "max_n_entry_orders": 15, - "min_markup": 0.009367326571610046, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ETHUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ETHUSDT.json deleted file mode 100644 index 9785f0d1f..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ETHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 782.9791769401899, - "auto_unstuck_ema_dist": -0.01631829754406139, - "auto_unstuck_qty_pct": 0.08578110917163687, - "auto_unstuck_wallet_exposure_threshold": 0.16017942058068646, - "backwards_tp": true, - "ema_span_0": 1383.5130472620283, - "ema_span_1": 1038.22061006456, - "enabled": true, - "eprice_exp_base": 1.1345376733987542, - "eqty_exp_base": 1.5761281915845626, - "grid_span": 0.20247241158592272, - "initial_eprice_ema_dist": 0.002145347483241353, - "initial_qty_pct": 0.029902442882305078, - "markup_range": 0.0015650957045315397, - "max_n_entry_orders": 8, - "min_markup": 0.004998401747637265, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FETUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FETUSDT.json deleted file mode 100644 index acb4bd0c5..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FETUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1355.2875103248457, - "auto_unstuck_ema_dist": -0.008303015950734117, - "auto_unstuck_qty_pct": 0.05681413200321959, - "auto_unstuck_wallet_exposure_threshold": 0.1499286208734416, - "backwards_tp": true, - "ema_span_0": 1382.1261218183522, - "ema_span_1": 1158.5376547521412, - "enabled": true, - "eprice_exp_base": 1.1318126502418175, - "eqty_exp_base": 1.6311457239187566, - "grid_span": 0.24259839158613666, - "initial_eprice_ema_dist": 0.0014199350053528952, - "initial_qty_pct": 0.022166956606350985, - "markup_range": 0.017489771113543367, - "max_n_entry_orders": 7, - "min_markup": 0.009872260411006953, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FILUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FILUSDT.json deleted file mode 100644 index 80bb9d258..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FILUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1002.9658285016852, - "auto_unstuck_ema_dist": -0.05935359505906345, - "auto_unstuck_qty_pct": 0.03380672181744747, - "auto_unstuck_wallet_exposure_threshold": 0.16495131918859002, - "backwards_tp": true, - "ema_span_0": 1147.7241193778289, - "ema_span_1": 1023.217884269015, - "enabled": true, - "eprice_exp_base": 1.1249618211145576, - "eqty_exp_base": 1.3664115469678304, - "grid_span": 0.31517738180169125, - "initial_eprice_ema_dist": 0.0006085875750619068, - "initial_qty_pct": 0.013738734898642255, - "markup_range": 0.007223720692487243, - "max_n_entry_orders": 8, - "min_markup": 0.008913557301915448, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1089.9424070062462, - "auto_unstuck_ema_dist": -0.0546171488383923, - "auto_unstuck_qty_pct": 0.015679270204671483, - "auto_unstuck_wallet_exposure_threshold": 0.34682621556395415, - "backwards_tp": true, - "ema_span_0": 800.962167599979, - "ema_span_1": 420.21515408590716, - "enabled": true, - "eprice_exp_base": 1.324275347204381, - "eqty_exp_base": 3.98726128341878, - "grid_span": 0.6149735254804691, - "initial_eprice_ema_dist": -0.05129865712512581, - "initial_qty_pct": 0.010800171728136727, - "markup_range": 0.004002323093867223, - "max_n_entry_orders": 7, - "min_markup": 0.0026934224119707167, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FLMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FLMUSDT.json deleted file mode 100644 index 7c4f50564..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FLMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1174.4957493303018, - "auto_unstuck_ema_dist": -0.03256348980375066, - "auto_unstuck_qty_pct": 0.017510348425941624, - "auto_unstuck_wallet_exposure_threshold": 0.7761913402202594, - "backwards_tp": true, - "ema_span_0": 934.7386114305474, - "ema_span_1": 1357.07877191991, - "enabled": true, - "eprice_exp_base": 1.0120865382439177, - "eqty_exp_base": 1.320710372420871, - "grid_span": 0.30224181950552237, - "initial_eprice_ema_dist": 0.00294606034102475, - "initial_qty_pct": 0.010089718048227872, - "markup_range": 0.005864151461505409, - "max_n_entry_orders": 7, - "min_markup": 0.009613517511271272, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 264.26201934921556, - "auto_unstuck_ema_dist": -0.045419403290970134, - "auto_unstuck_qty_pct": 0.027829888149491097, - "auto_unstuck_wallet_exposure_threshold": 0.561224270139381, - "backwards_tp": true, - "ema_span_0": 293.41660738618714, - "ema_span_1": 1113.5750210053407, - "enabled": true, - "eprice_exp_base": 1.1412186740157675, - "eqty_exp_base": 2.661130017127388, - "grid_span": 0.26119870785217125, - "initial_eprice_ema_dist": 0.00014754564789934709, - "initial_qty_pct": 0.010217450158926451, - "markup_range": 0.0038064673200988034, - "max_n_entry_orders": 9, - "min_markup": 0.005209972585646701, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FLOWUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FLOWUSDT.json deleted file mode 100644 index ed8b0f7de..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FLOWUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1264.832731300227, - "auto_unstuck_ema_dist": -0.08083792347406027, - "auto_unstuck_qty_pct": 0.012853547037121455, - "auto_unstuck_wallet_exposure_threshold": 0.5582109765618942, - "backwards_tp": true, - "ema_span_0": 541.567614510742, - "ema_span_1": 1078.5296328393224, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.0005819440698485, - "grid_span": 0.2711056474770498, - "initial_eprice_ema_dist": 0.002985660919622032, - "initial_qty_pct": 0.013813961403116136, - "markup_range": 0.0033777601558035272, - "max_n_entry_orders": 10, - "min_markup": 0.005815912498007505, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FOOTBALLUSDT.json deleted file mode 100644 index 5400b36f3..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FOOTBALLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 951.6955086786951, - "auto_unstuck_ema_dist": -0.07137516448869817, - "auto_unstuck_qty_pct": 0.020326564749976135, - "auto_unstuck_wallet_exposure_threshold": 0.2701196467410427, - "backwards_tp": true, - "ema_span_0": 1105.8818721298312, - "ema_span_1": 85.99574669401991, - "enabled": true, - "eprice_exp_base": 1.0875408007300245, - "eqty_exp_base": 1.5971164074390949, - "grid_span": 0.19837291249277844, - "initial_eprice_ema_dist": -0.003314071435444695, - "initial_qty_pct": 0.016860203452174927, - "markup_range": 0.007041195496302395, - "max_n_entry_orders": 12, - "min_markup": 0.0085676266259844, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FTMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FTMUSDT.json deleted file mode 100644 index c146cbb3b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FTMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1191.9376805124298, - "auto_unstuck_ema_dist": -0.04666759023120064, - "auto_unstuck_qty_pct": 0.025604195680093797, - "auto_unstuck_wallet_exposure_threshold": 0.11427989469841636, - "backwards_tp": true, - "ema_span_0": 1106.8853485441716, - "ema_span_1": 1282.3413453669114, - "enabled": true, - "eprice_exp_base": 1.1188993832540337, - "eqty_exp_base": 1.6403284940502747, - "grid_span": 0.20524786867276543, - "initial_eprice_ema_dist": -0.0001872882233756971, - "initial_qty_pct": 0.01041148150653652, - "markup_range": 0.004733650270081737, - "max_n_entry_orders": 9, - "min_markup": 0.00424140334471996, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.07721604836555436, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 855.3014672663251, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9325675741271633, - "grid_span": 0.40426618724098035, - "initial_eprice_ema_dist": -0.09990624975888267, - "initial_qty_pct": 0.01081428466330554, - "markup_range": 0.03846813248387199, - "max_n_entry_orders": 7, - "min_markup": 0.008983832397255243, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FTTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FTTUSDT.json deleted file mode 100644 index 95d7c0378..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FTTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.02286091412173781, - "auto_unstuck_qty_pct": 0.05294613268031142, - "auto_unstuck_wallet_exposure_threshold": 0.5981527780011692, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 446.689194968007, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.1342398129456943, - "grid_span": 0.3161911176055848, - "initial_eprice_ema_dist": -0.08437788549815588, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 7, - "min_markup": 0.004022617783718476, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FXSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FXSUSDT.json deleted file mode 100644 index 8f2a3f7b7..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/FXSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 793.2545239738062, - "auto_unstuck_ema_dist": -0.03896660901176437, - "auto_unstuck_qty_pct": 0.012361265284135729, - "auto_unstuck_wallet_exposure_threshold": 0.30548267749905744, - "backwards_tp": true, - "ema_span_0": 48.17216740380098, - "ema_span_1": 100.19106007147514, - "enabled": true, - "eprice_exp_base": 1.016964250898853, - "eqty_exp_base": 1.194015840439302, - "grid_span": 0.18696681323417724, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010004776049590054, - "markup_range": 0.001662490677103238, - "max_n_entry_orders": 9, - "min_markup": 0.0024005439540925057, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1171.8660327078721, - "auto_unstuck_ema_dist": 0.0010404359098154367, - "auto_unstuck_qty_pct": 0.03744987471117407, - "auto_unstuck_wallet_exposure_threshold": 0.28900607896078573, - "backwards_tp": true, - "ema_span_0": 1439.9879454262705, - "ema_span_1": 1219.8504923696867, - "enabled": true, - "eprice_exp_base": 1.1366278697386527, - "eqty_exp_base": 3.776143260983698, - "grid_span": 0.14105408675979655, - "initial_eprice_ema_dist": -0.0035661931599020873, - "initial_qty_pct": 0.012631971453531747, - "markup_range": 0.010597028703543954, - "max_n_entry_orders": 9, - "min_markup": 0.003366953304513386, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GALAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GALAUSDT.json deleted file mode 100644 index 17ec7bdbf..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GALAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1135.46454192025, - "auto_unstuck_ema_dist": -0.06587824392838008, - "auto_unstuck_qty_pct": 0.01356353263633491, - "auto_unstuck_wallet_exposure_threshold": 0.3545489547873088, - "backwards_tp": true, - "ema_span_0": 1225.2479453609458, - "ema_span_1": 1349.5254073759738, - "enabled": true, - "eprice_exp_base": 1.0975612623974529, - "eqty_exp_base": 1.5437821851581397, - "grid_span": 0.12545373380459213, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01154767555541769, - "markup_range": 0.00217431853280921, - "max_n_entry_orders": 7, - "min_markup": 0.00356435706764924, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120.05151685289162, - "auto_unstuck_ema_dist": -0.024302861255972738, - "auto_unstuck_qty_pct": 0.09996020642807883, - "auto_unstuck_wallet_exposure_threshold": 0.6614399788822214, - "backwards_tp": true, - "ema_span_0": 672.0510454369827, - "ema_span_1": 581.0490056625814, - "enabled": true, - "eprice_exp_base": 3.9189537291466325, - "eqty_exp_base": 3.5607240998697454, - "grid_span": 0.2187355683152664, - "initial_eprice_ema_dist": -0.03333413749636294, - "initial_qty_pct": 0.049794685322143, - "markup_range": 0.00015668206388190647, - "max_n_entry_orders": 22, - "min_markup": 0.00980532666312382, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GALUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GALUSDT.json deleted file mode 100644 index edc032c6d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GALUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 940.7086792703731, - "auto_unstuck_ema_dist": -0.012553165246576976, - "auto_unstuck_qty_pct": 0.010606737881831715, - "auto_unstuck_wallet_exposure_threshold": 0.5847722602633316, - "backwards_tp": true, - "ema_span_0": 1032.9566457789674, - "ema_span_1": 674.492002347481, - "enabled": true, - "eprice_exp_base": 1.2532029517002135, - "eqty_exp_base": 1.861661092822006, - "grid_span": 0.14547769704201155, - "initial_eprice_ema_dist": 0.0016977577963831925, - "initial_qty_pct": 0.012861450076037595, - "markup_range": 0.009143037000504861, - "max_n_entry_orders": 10, - "min_markup": 0.0046727910491455756, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GMTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GMTUSDT.json deleted file mode 100644 index 6239598ac..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GMTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 917.5005388053205, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.1, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 753.085436080835, - "ema_span_1": 410.2261700007641, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.2686391099221507, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0035955035591588164, - "max_n_entry_orders": 12, - "min_markup": 0.01, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 275.28027185718696, - "auto_unstuck_ema_dist": -0.02770252622093565, - "auto_unstuck_qty_pct": 0.03149305948105737, - "auto_unstuck_wallet_exposure_threshold": 0.7416458147025765, - "backwards_tp": true, - "ema_span_0": 621.7548270700279, - "ema_span_1": 376.44762008741236, - "enabled": true, - "eprice_exp_base": 1.247889274832765, - "eqty_exp_base": 2.5447160506996163, - "grid_span": 0.3660551041696586, - "initial_eprice_ema_dist": -0.05567451772828595, - "initial_qty_pct": 0.036289003556131356, - "markup_range": 0.034537591927797484, - "max_n_entry_orders": 11, - "min_markup": 0.009021577101001613, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GMXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GMXUSDT.json deleted file mode 100644 index d1298e9d9..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GMXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1131.0015267851397, - "auto_unstuck_ema_dist": -0.01859596413323666, - "auto_unstuck_qty_pct": 0.02595210471203942, - "auto_unstuck_wallet_exposure_threshold": 0.2623799879648312, - "backwards_tp": true, - "ema_span_0": 899.0026815371901, - "ema_span_1": 1125.307982244615, - "enabled": true, - "eprice_exp_base": 1.0541779740942405, - "eqty_exp_base": 2.5720941056223525, - "grid_span": 0.174508531856097, - "initial_eprice_ema_dist": -0.0015518626326071123, - "initial_qty_pct": 0.011270553964198814, - "markup_range": 0.01243371291639932, - "max_n_entry_orders": 8, - "min_markup": 0.009263338040545684, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1001.7030082245074, - "auto_unstuck_ema_dist": 0.0028531406753069194, - "auto_unstuck_qty_pct": 0.01001281808926318, - "auto_unstuck_wallet_exposure_threshold": 0.2547324941646131, - "backwards_tp": true, - "ema_span_0": 521.5320708307191, - "ema_span_1": 816.2784461391484, - "enabled": true, - "eprice_exp_base": 1.0700039340495753, - "eqty_exp_base": 2.76745883879376, - "grid_span": 0.14137276698452633, - "initial_eprice_ema_dist": -0.005176577977884642, - "initial_qty_pct": 0.011323622492658574, - "markup_range": 0.005212070894250841, - "max_n_entry_orders": 9, - "min_markup": 0.007306767380411044, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GRTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GRTUSDT.json deleted file mode 100644 index 7b266ee9b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GRTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 993.7814307498402, - "auto_unstuck_ema_dist": -0.007734310682095207, - "auto_unstuck_qty_pct": 0.02536329029066099, - "auto_unstuck_wallet_exposure_threshold": 0.7035050857482972, - "backwards_tp": true, - "ema_span_0": 1108.2301634741325, - "ema_span_1": 719.7077806417232, - "enabled": true, - "eprice_exp_base": 1.2088101381396004, - "eqty_exp_base": 1, - "grid_span": 0.34931722625222184, - "initial_eprice_ema_dist": -0.001910275836387482, - "initial_qty_pct": 0.020813780098028922, - "markup_range": 0.007043133330542731, - "max_n_entry_orders": 7, - "min_markup": 0.005247763058916779, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1199.575986513761, - "auto_unstuck_ema_dist": -0.0276807668538851, - "auto_unstuck_qty_pct": 0.014194895762101853, - "auto_unstuck_wallet_exposure_threshold": 0.23779680841281398, - "backwards_tp": true, - "ema_span_0": 1435.7339050305416, - "ema_span_1": 1001.660962550113, - "enabled": true, - "eprice_exp_base": 1.0935525759003504, - "eqty_exp_base": 2.194831874580071, - "grid_span": 0.22341365787785836, - "initial_eprice_ema_dist": -0.00564141388955288, - "initial_qty_pct": 0.029417261203643512, - "markup_range": 0.00505651513183205, - "max_n_entry_orders": 11, - "min_markup": 0.004408394558572047, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GTCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GTCUSDT.json deleted file mode 100644 index 6699fade4..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/GTCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HBARUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HBARUSDT.json deleted file mode 100644 index 951700b4a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HBARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 520.3285904559001, - "auto_unstuck_ema_dist": -0.017174109942522626, - "auto_unstuck_qty_pct": 0.07810375032195041, - "auto_unstuck_wallet_exposure_threshold": 0.3240180166266071, - "backwards_tp": true, - "ema_span_0": 968.8584219537111, - "ema_span_1": 972.4746626778939, - "enabled": true, - "eprice_exp_base": 1.1731663758816118, - "eqty_exp_base": 2.2763816726503254, - "grid_span": 0.11871965205016287, - "initial_eprice_ema_dist": -0.0002491323917988226, - "initial_qty_pct": 0.011407671746307885, - "markup_range": 0.007093503414663383, - "max_n_entry_orders": 8, - "min_markup": 0.00675592571088514, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1398.1525462310153, - "auto_unstuck_ema_dist": -0.029975974725643426, - "auto_unstuck_qty_pct": 0.011312341289538945, - "auto_unstuck_wallet_exposure_threshold": 0.24742620321144482, - "backwards_tp": true, - "ema_span_0": 1142.2176615574115, - "ema_span_1": 753.5256060724964, - "enabled": true, - "eprice_exp_base": 1.000596610216215, - "eqty_exp_base": 3.9532798031157883, - "grid_span": 0.2249462824965027, - "initial_eprice_ema_dist": -0.0018513129277423425, - "initial_qty_pct": 0.024901484513101063, - "markup_range": 0.0063956741841867445, - "max_n_entry_orders": 16, - "min_markup": 0.00949384168492085, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HFTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HFTUSDT.json deleted file mode 100644 index 8db11410b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HFTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 724.9952620857599, - "auto_unstuck_ema_dist": -0.009412852770201562, - "auto_unstuck_qty_pct": 0.013710698282969577, - "auto_unstuck_wallet_exposure_threshold": 0.19993580440002118, - "backwards_tp": true, - "ema_span_0": 1021.063058531578, - "ema_span_1": 1427.5059348230843, - "enabled": true, - "eprice_exp_base": 1.1709333618683002, - "eqty_exp_base": 1.2727312289052846, - "grid_span": 0.16615323718905609, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01819571321711823, - "markup_range": 0.004992543479838617, - "max_n_entry_orders": 7, - "min_markup": 0.0038858885051931296, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HIGHUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HIGHUSDT.json deleted file mode 100644 index 77d6eca88..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HIGHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1131.0015267851397, - "auto_unstuck_ema_dist": -0.01859596413323666, - "auto_unstuck_qty_pct": 0.02595210471203942, - "auto_unstuck_wallet_exposure_threshold": 0.2623799879648312, - "backwards_tp": true, - "ema_span_0": 899.0026815371901, - "ema_span_1": 1125.307982244615, - "enabled": true, - "eprice_exp_base": 1.0541779740942405, - "eqty_exp_base": 2.5720941056223525, - "grid_span": 0.174508531856097, - "initial_eprice_ema_dist": -0.0015518626326071123, - "initial_qty_pct": 0.011270553964198814, - "markup_range": 0.01243371291639932, - "max_n_entry_orders": 8, - "min_markup": 0.009263338040545684, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1204.4388668800677, - "auto_unstuck_ema_dist": -0.07312660865417604, - "auto_unstuck_qty_pct": 0.09093957209613962, - "auto_unstuck_wallet_exposure_threshold": 0.2712652223013797, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.24351707826763674, - "initial_eprice_ema_dist": -0.008745084054168847, - "initial_qty_pct": 0.03173495679723363, - "markup_range": 0.011681196671586201, - "max_n_entry_orders": 19, - "min_markup": 0.002538621370916175, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HNTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HNTUSDT.json deleted file mode 100644 index 5d9e0023e..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HNTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1418.6562462352065, - "auto_unstuck_ema_dist": -0.010470212167376786, - "auto_unstuck_qty_pct": 0.01415059629736314, - "auto_unstuck_wallet_exposure_threshold": 0.11782315379780525, - "backwards_tp": true, - "ema_span_0": 1164.6212365288327, - "ema_span_1": 105.65666924479203, - "enabled": true, - "eprice_exp_base": 1.0109543575180266, - "eqty_exp_base": 1.0364562994716724, - "grid_span": 0.14634275259638022, - "initial_eprice_ema_dist": 0.002998965557466333, - "initial_qty_pct": 0.014359937543700914, - "markup_range": 0.0004219128490180443, - "max_n_entry_orders": 7, - "min_markup": 0.0014767028993130347, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HOOKUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HOOKUSDT.json deleted file mode 100644 index de9d8f8a9..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HOOKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 943.60209581509, - "auto_unstuck_ema_dist": -0.01263026083130537, - "auto_unstuck_qty_pct": 0.039372718038203386, - "auto_unstuck_wallet_exposure_threshold": 0.6815375874327977, - "backwards_tp": true, - "ema_span_0": 321.69754508505173, - "ema_span_1": 498.1474333283621, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.4632073698606816, - "grid_span": 0.14643215943134671, - "initial_eprice_ema_dist": -0.004652328568934448, - "initial_qty_pct": 0.011784602775104874, - "markup_range": 0.0024085386532988005, - "max_n_entry_orders": 7, - "min_markup": 0.004997300530726923, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 555.2890801754734, - "auto_unstuck_ema_dist": -0.07293895802371184, - "auto_unstuck_qty_pct": 0.01977198337138484, - "auto_unstuck_wallet_exposure_threshold": 0.22252193349806754, - "backwards_tp": true, - "ema_span_0": 1395.4537934484572, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.07416768238390478, - "initial_qty_pct": 0.020330420387724427, - "markup_range": 0.0, - "max_n_entry_orders": 7, - "min_markup": 0.007165392989951001, - "n_close_orders": 14, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HOTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HOTUSDT.json deleted file mode 100644 index 3e1110ab6..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/HOTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 724.9952620857599, - "auto_unstuck_ema_dist": -0.009412852770201562, - "auto_unstuck_qty_pct": 0.013710698282969577, - "auto_unstuck_wallet_exposure_threshold": 0.19993580440002118, - "backwards_tp": true, - "ema_span_0": 1021.063058531578, - "ema_span_1": 1427.5059348230843, - "enabled": true, - "eprice_exp_base": 1.1709333618683002, - "eqty_exp_base": 1.2727312289052846, - "grid_span": 0.16615323718905609, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01819571321711823, - "markup_range": 0.004992543479838617, - "max_n_entry_orders": 7, - "min_markup": 0.0038858885051931296, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 779.4937631903803, - "auto_unstuck_ema_dist": -0.09059141530018994, - "auto_unstuck_qty_pct": 0.030190248656495958, - "auto_unstuck_wallet_exposure_threshold": 0.16656753914639674, - "backwards_tp": true, - "ema_span_0": 560.5725837372815, - "ema_span_1": 682.643601180339, - "enabled": true, - "eprice_exp_base": 1.2343150273880885, - "eqty_exp_base": 3.7828761721681, - "grid_span": 0.1824047658902641, - "initial_eprice_ema_dist": 0.002946770070514348, - "initial_qty_pct": 0.021382527309153382, - "markup_range": 0.0032343642961400864, - "max_n_entry_orders": 15, - "min_markup": 0.004032169043735039, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ICPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ICPUSDT.json deleted file mode 100644 index 48f619dc8..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ICPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 520.3285904559001, - "auto_unstuck_ema_dist": -0.017174109942522626, - "auto_unstuck_qty_pct": 0.07810375032195041, - "auto_unstuck_wallet_exposure_threshold": 0.3240180166266071, - "backwards_tp": true, - "ema_span_0": 968.8584219537111, - "ema_span_1": 972.4746626778939, - "enabled": true, - "eprice_exp_base": 1.1731663758816118, - "eqty_exp_base": 2.2763816726503254, - "grid_span": 0.11871965205016287, - "initial_eprice_ema_dist": -0.0002491323917988226, - "initial_qty_pct": 0.011407671746307885, - "markup_range": 0.007093503414663383, - "max_n_entry_orders": 8, - "min_markup": 0.00675592571088514, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1034.5591778608916, - "auto_unstuck_ema_dist": 0.002632971785857589, - "auto_unstuck_qty_pct": 0.010288601427811163, - "auto_unstuck_wallet_exposure_threshold": 0.3646283137875909, - "backwards_tp": true, - "ema_span_0": 1429.7196272807514, - "ema_span_1": 1012.6362684123183, - "enabled": true, - "eprice_exp_base": 1.0813619357542266, - "eqty_exp_base": 3.8613910841788557, - "grid_span": 0.13278949373095877, - "initial_eprice_ema_dist": -0.00014197257902766626, - "initial_qty_pct": 0.013472704427205835, - "markup_range": 0.002532548146178754, - "max_n_entry_orders": 20, - "min_markup": 0.005542276301552574, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ICXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ICXUSDT.json deleted file mode 100644 index ebdc071a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ICXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 932.6936614762748, - "auto_unstuck_ema_dist": -0.0022068367641807003, - "auto_unstuck_qty_pct": 0.031561909779797725, - "auto_unstuck_wallet_exposure_threshold": 0.21088880117665507, - "backwards_tp": true, - "ema_span_0": 1160.0756170937466, - "ema_span_1": 499.7704731950717, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.7143635124360037, - "grid_span": 0.1801840651757321, - "initial_eprice_ema_dist": -0.09035058698903646, - "initial_qty_pct": 0.014004352067500675, - "markup_range": 0.004422848962103539, - "max_n_entry_orders": 7, - "min_markup": 0.003728281951521848, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1296.9660916655898, - "auto_unstuck_ema_dist": -0.042664004869814434, - "auto_unstuck_qty_pct": 0.012717437621565159, - "auto_unstuck_wallet_exposure_threshold": 0.3561914480916979, - "backwards_tp": true, - "ema_span_0": 1418.135517832663, - "ema_span_1": 687.2274439912106, - "enabled": true, - "eprice_exp_base": 1.2685537118987047, - "eqty_exp_base": 2.1869685432452752, - "grid_span": 0.3794829787187984, - "initial_eprice_ema_dist": 0.0028217730392271507, - "initial_qty_pct": 0.012710689140986189, - "markup_range": 0.011973077754570887, - "max_n_entry_orders": 8, - "min_markup": 0.00493091028059845, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IDEXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IDEXUSDT.json deleted file mode 100644 index e6e28f666..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IDEXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IDUSDT.json deleted file mode 100644 index 0220cf2b0..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1203.8669731206446, - "auto_unstuck_ema_dist": -0.016592549800585298, - "auto_unstuck_qty_pct": 0.011263975044920344, - "auto_unstuck_wallet_exposure_threshold": 0.6828830369034644, - "backwards_tp": true, - "ema_span_0": 727.1286002388728, - "ema_span_1": 540.536808070503, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.17668403722596, - "grid_span": 0.17708368499205168, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015593617823153142, - "markup_range": 0.0012786222171817733, - "max_n_entry_orders": 9, - "min_markup": 0.0027267389757224285, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.6807818207787, - "auto_unstuck_ema_dist": -0.006778335727737885, - "auto_unstuck_qty_pct": 0.014087701589334754, - "auto_unstuck_wallet_exposure_threshold": 0.13123791548024152, - "backwards_tp": true, - "ema_span_0": 1227.3728686012935, - "ema_span_1": 1129.9829631455764, - "enabled": true, - "eprice_exp_base": 1.0788617301729184, - "eqty_exp_base": 2.8442772777773904, - "grid_span": 0.17214574961987536, - "initial_eprice_ema_dist": -0.0008494689085988029, - "initial_qty_pct": 0.010347078653780381, - "markup_range": 0.002123747989666032, - "max_n_entry_orders": 8, - "min_markup": 0.008717136677346285, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IMXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IMXUSDT.json deleted file mode 100644 index 68641fb83..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IMXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1135.46454192025, - "auto_unstuck_ema_dist": -0.06587824392838008, - "auto_unstuck_qty_pct": 0.01356353263633491, - "auto_unstuck_wallet_exposure_threshold": 0.3545489547873088, - "backwards_tp": true, - "ema_span_0": 1225.2479453609458, - "ema_span_1": 1349.5254073759738, - "enabled": true, - "eprice_exp_base": 1.0975612623974529, - "eqty_exp_base": 1.5437821851581397, - "grid_span": 0.12545373380459213, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01154767555541769, - "markup_range": 0.00217431853280921, - "max_n_entry_orders": 7, - "min_markup": 0.00356435706764924, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1305.9811457523685, - "auto_unstuck_ema_dist": -0.005861165299878759, - "auto_unstuck_qty_pct": 0.012015542867868455, - "auto_unstuck_wallet_exposure_threshold": 0.44586889725404605, - "backwards_tp": true, - "ema_span_0": 991.4568366209204, - "ema_span_1": 1309.0497677663054, - "enabled": true, - "eprice_exp_base": 1.1651164724458916, - "eqty_exp_base": 1.1535807603256603, - "grid_span": 0.3526192529617525, - "initial_eprice_ema_dist": 0.00296888048248019, - "initial_qty_pct": 0.016646987190141842, - "markup_range": 0.003491034485625458, - "max_n_entry_orders": 7, - "min_markup": 0.006820783791583923, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/INJUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/INJUSDT.json deleted file mode 100644 index 4d26903a2..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/INJUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1417.5595161289157, - "auto_unstuck_ema_dist": -0.034328822169178735, - "auto_unstuck_qty_pct": 0.04196890107888902, - "auto_unstuck_wallet_exposure_threshold": 0.15702577867185727, - "backwards_tp": true, - "ema_span_0": 699.9315721565192, - "ema_span_1": 97.24843819473062, - "enabled": true, - "eprice_exp_base": 1.000000113879665, - "eqty_exp_base": 1.4543933682296195, - "grid_span": 0.18293760608303983, - "initial_eprice_ema_dist": 0.0017019501975442835, - "initial_qty_pct": 0.017471325290169197, - "markup_range": 0.007100615368681533, - "max_n_entry_orders": 9, - "min_markup": 0.009480804499218239, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0500150211110256, - "auto_unstuck_qty_pct": 0.011934357993227224, - "auto_unstuck_wallet_exposure_threshold": 0.5456342074520889, - "backwards_tp": true, - "ema_span_0": 1340.9912942813796, - "ema_span_1": 1325.815993595614, - "enabled": true, - "eprice_exp_base": 1.010201287616513, - "eqty_exp_base": 2.8993618137479764, - "grid_span": 0.1605333319858612, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 20, - "min_markup": 0.008824619416875382, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOSTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOSTUSDT.json deleted file mode 100644 index 0dd450ecc..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOSTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1378.7780069655125, - "auto_unstuck_ema_dist": -0.0010437234686020854, - "auto_unstuck_qty_pct": 0.018251685020392195, - "auto_unstuck_wallet_exposure_threshold": 0.41206295679037963, - "backwards_tp": true, - "ema_span_0": 291.7228473884728, - "ema_span_1": 1013.4048788329329, - "enabled": true, - "eprice_exp_base": 1.0024463023686172, - "eqty_exp_base": 2.1375804205399946, - "grid_span": 0.1889016438886915, - "initial_eprice_ema_dist": -0.005319902898512875, - "initial_qty_pct": 0.011472895466656714, - "markup_range": 0.007540656271550558, - "max_n_entry_orders": 9, - "min_markup": 0.007965667917701006, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1363.1484006800329, - "auto_unstuck_ema_dist": -0.0519833636630822, - "auto_unstuck_qty_pct": 0.024727198133860276, - "auto_unstuck_wallet_exposure_threshold": 0.10486588866338392, - "backwards_tp": true, - "ema_span_0": 104.77950224569675, - "ema_span_1": 799.4052154797295, - "enabled": true, - "eprice_exp_base": 1.0271631877746854, - "eqty_exp_base": 2.310501608272923, - "grid_span": 0.20915577782013944, - "initial_eprice_ema_dist": -0.004087835487450017, - "initial_qty_pct": 0.016086983449732032, - "markup_range": 0.0053146317369995345, - "max_n_entry_orders": 13, - "min_markup": 0.0036103243038598373, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOTAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOTAUSDT.json deleted file mode 100644 index 7caa344ee..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOTAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1429.9960687787907, - "auto_unstuck_ema_dist": -0.010876893610750043, - "auto_unstuck_qty_pct": 0.03006173740529355, - "auto_unstuck_wallet_exposure_threshold": 0.4688702152609151, - "backwards_tp": true, - "ema_span_0": 859.2104555917342, - "ema_span_1": 1121.9949004432735, - "enabled": true, - "eprice_exp_base": 1.1855931871173997, - "eqty_exp_base": 1.2886118101427118, - "grid_span": 0.31075278524573635, - "initial_eprice_ema_dist": -0.0016236947865644338, - "initial_qty_pct": 0.010088745870886508, - "markup_range": 0.008856749392229633, - "max_n_entry_orders": 9, - "min_markup": 0.0017905221055597282, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.2186661925077, - "auto_unstuck_ema_dist": -0.0934750257166494, - "auto_unstuck_qty_pct": 0.03224513039791049, - "auto_unstuck_wallet_exposure_threshold": 0.15770154600814495, - "backwards_tp": true, - "ema_span_0": 1349.2901787249195, - "ema_span_1": 1070.06420992335, - "enabled": true, - "eprice_exp_base": 1.296171087672084, - "eqty_exp_base": 3.9822375184209213, - "grid_span": 0.10851564083207263, - "initial_eprice_ema_dist": 0.00044471489783528395, - "initial_qty_pct": 0.012984863540821682, - "markup_range": 0.003038702058401756, - "max_n_entry_orders": 7, - "min_markup": 0.0039073711030456265, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOTXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOTXUSDT.json deleted file mode 100644 index b00ccf390..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/IOTXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1220.1693190259343, - "auto_unstuck_ema_dist": -0.055848604265624165, - "auto_unstuck_qty_pct": 0.01663793130176452, - "auto_unstuck_wallet_exposure_threshold": 0.22320529412018741, - "backwards_tp": true, - "ema_span_0": 1034.768989555157, - "ema_span_1": 645.9178238852667, - "enabled": true, - "eprice_exp_base": 1.0264132632197753, - "eqty_exp_base": 1.5947127337419398, - "grid_span": 0.3243406544149025, - "initial_eprice_ema_dist": -0.0008614015973919106, - "initial_qty_pct": 0.01345951019188534, - "markup_range": 0.0060631363436918564, - "max_n_entry_orders": 9, - "min_markup": 0.00693012419765506, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.4411702489633, - "auto_unstuck_ema_dist": -0.004617109849520608, - "auto_unstuck_qty_pct": 0.01648366731345862, - "auto_unstuck_wallet_exposure_threshold": 0.7094846767314997, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1438.151047326744, - "enabled": true, - "eprice_exp_base": 1.2439694930330072, - "eqty_exp_base": 1.231452107109689, - "grid_span": 0.4365969496517578, - "initial_eprice_ema_dist": -0.0019017444320947494, - "initial_qty_pct": 0.01, - "markup_range": 0.003842107206680762, - "max_n_entry_orders": 9, - "min_markup": 0.001638247139852082, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/JASMYUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/JASMYUSDT.json deleted file mode 100644 index 2575ace3c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/JASMYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 777.1446894871469, - "auto_unstuck_ema_dist": -0.07634652922708725, - "auto_unstuck_qty_pct": 0.05015558321629691, - "auto_unstuck_wallet_exposure_threshold": 0.3916111139946495, - "backwards_tp": true, - "ema_span_0": 1181.3441795167764, - "ema_span_1": 941.512749685682, - "enabled": true, - "eprice_exp_base": 1.1088473775036012, - "eqty_exp_base": 1.6297775418124265, - "grid_span": 0.25460237376135436, - "initial_eprice_ema_dist": 0.002950809528467142, - "initial_qty_pct": 0.011109927320126365, - "markup_range": 0.006998691376285849, - "max_n_entry_orders": 8, - "min_markup": 0.008615916545048294, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 779.4937631903803, - "auto_unstuck_ema_dist": -0.09059141530018994, - "auto_unstuck_qty_pct": 0.030190248656495958, - "auto_unstuck_wallet_exposure_threshold": 0.16656753914639674, - "backwards_tp": true, - "ema_span_0": 560.5725837372815, - "ema_span_1": 682.643601180339, - "enabled": true, - "eprice_exp_base": 1.2343150273880885, - "eqty_exp_base": 3.7828761721681, - "grid_span": 0.1824047658902641, - "initial_eprice_ema_dist": 0.002946770070514348, - "initial_qty_pct": 0.021382527309153382, - "markup_range": 0.0032343642961400864, - "max_n_entry_orders": 15, - "min_markup": 0.004032169043735039, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/JOEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/JOEUSDT.json deleted file mode 100644 index eea71511b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/JOEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1154.1234213866198, - "auto_unstuck_ema_dist": -0.09890884061065909, - "auto_unstuck_qty_pct": 0.018277489664642724, - "auto_unstuck_wallet_exposure_threshold": 0.6500138558074183, - "backwards_tp": true, - "ema_span_0": 13.535331207723727, - "ema_span_1": 112.52103206000228, - "enabled": true, - "eprice_exp_base": 1.0208462694847291, - "eqty_exp_base": 1.6589580057392717, - "grid_span": 0.22744709686663722, - "initial_eprice_ema_dist": -0.09418562138219089, - "initial_qty_pct": 0.010583088683055748, - "markup_range": 0.0012264937554110399, - "max_n_entry_orders": 10, - "min_markup": 0.0047886653841788, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1045.2223878600516, - "auto_unstuck_ema_dist": -0.016983026957580055, - "auto_unstuck_qty_pct": 0.024148208283841528, - "auto_unstuck_wallet_exposure_threshold": 0.24006580640445715, - "backwards_tp": true, - "ema_span_0": 1350.9493403857823, - "ema_span_1": 340.6390300857008, - "enabled": true, - "eprice_exp_base": 1.1234393014040378, - "eqty_exp_base": 1.0751630761054183, - "grid_span": 0.2490562513113308, - "initial_eprice_ema_dist": 0.0017677669683755432, - "initial_qty_pct": 0.028104357828053206, - "markup_range": 0.0013200009906924105, - "max_n_entry_orders": 10, - "min_markup": 0.003998932575209124, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KAVAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KAVAUSDT.json deleted file mode 100644 index 1a06c80e3..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KAVAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 512.954485856899, - "auto_unstuck_ema_dist": -0.08738533939626417, - "auto_unstuck_qty_pct": 0.01331698727142276, - "auto_unstuck_wallet_exposure_threshold": 0.5814864212751013, - "backwards_tp": true, - "ema_span_0": 1285.8326819362887, - "ema_span_1": 808.0766027268156, - "enabled": true, - "eprice_exp_base": 1.1379840578411964, - "eqty_exp_base": 2.9356354906253888, - "grid_span": 0.18091340932610026, - "initial_eprice_ema_dist": -0.012270926754001607, - "initial_qty_pct": 0.010370313894364628, - "markup_range": 0.002659678503765652, - "max_n_entry_orders": 7, - "min_markup": 0.0018911284968429482, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1087.918278405081, - "auto_unstuck_ema_dist": -0.027043888648334, - "auto_unstuck_qty_pct": 0.03375515986910375, - "auto_unstuck_wallet_exposure_threshold": 0.6042762388386761, - "backwards_tp": true, - "ema_span_0": 794.4188659226062, - "ema_span_1": 1426.1383128230468, - "enabled": true, - "eprice_exp_base": 1.0791309388271877, - "eqty_exp_base": 2.078539222948288, - "grid_span": 0.1776285664620104, - "initial_eprice_ema_dist": 0.002858737747834197, - "initial_qty_pct": 0.011566253203613751, - "markup_range": 0.0027631650111260534, - "max_n_entry_orders": 18, - "min_markup": 0.005760956522588204, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KEYUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KEYUSDT.json deleted file mode 100644 index dbf8175f1..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KEYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1148.7575947594983, - "auto_unstuck_ema_dist": -0.06610522537199073, - "auto_unstuck_qty_pct": 0.010165215395132595, - "auto_unstuck_wallet_exposure_threshold": 0.3873247866501045, - "backwards_tp": true, - "ema_span_0": 1227.9019518904095, - "ema_span_1": 1349.2435607355044, - "enabled": true, - "eprice_exp_base": 1.0961280971510308, - "eqty_exp_base": 1.5404861920168187, - "grid_span": 0.1246561754214835, - "initial_eprice_ema_dist": 0.002999804308312542, - "initial_qty_pct": 0.012390499644160674, - "markup_range": 0.0022193519972044684, - "max_n_entry_orders": 7, - "min_markup": 0.003874867616229977, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KLAYUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KLAYUSDT.json deleted file mode 100644 index fb1f3affe..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KLAYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.2905479141502476, - "backwards_tp": true, - "ema_span_0": 931.4041694219899, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.3761847176671513, - "eqty_exp_base": 2.132502028354876, - "grid_span": 0.6622044553047347, - "initial_eprice_ema_dist": 0.0024248782540984186, - "initial_qty_pct": 0.01615306040988704, - "markup_range": 0.003463220972520802, - "max_n_entry_orders": 7, - "min_markup": 0.003055473934642894, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KNCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KNCUSDT.json deleted file mode 100644 index b41ebdd43..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KNCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1069.392559125375, - "auto_unstuck_ema_dist": -0.02369886906616583, - "auto_unstuck_qty_pct": 0.019329840462568804, - "auto_unstuck_wallet_exposure_threshold": 0.6162101433864365, - "backwards_tp": true, - "ema_span_0": 207.17453893256098, - "ema_span_1": 621.0453123325007, - "enabled": true, - "eprice_exp_base": 1.00451208810696, - "eqty_exp_base": 1.1035163604742755, - "grid_span": 0.3608650895607671, - "initial_eprice_ema_dist": -0.013066511667789046, - "initial_qty_pct": 0.01799802931681483, - "markup_range": 0.005598321514583823, - "max_n_entry_orders": 10, - "min_markup": 0.0021920001637890625, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1334.0696887181232, - "auto_unstuck_ema_dist": -0.07603938102661957, - "auto_unstuck_qty_pct": 0.010451892814636345, - "auto_unstuck_wallet_exposure_threshold": 0.30435168099502685, - "backwards_tp": true, - "ema_span_0": 232.7977815638877, - "ema_span_1": 1359.0008275759155, - "enabled": true, - "eprice_exp_base": 1.121395758687441, - "eqty_exp_base": 3.2139626296609913, - "grid_span": 0.2556186548084009, - "initial_eprice_ema_dist": -0.029730899198141116, - "initial_qty_pct": 0.011665182678648023, - "markup_range": 0.005926084601293969, - "max_n_entry_orders": 8, - "min_markup": 0.0070433485346675, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KSMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KSMUSDT.json deleted file mode 100644 index 002820b54..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/KSMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 982.7793591491029, - "auto_unstuck_ema_dist": -0.0030660710714153546, - "auto_unstuck_qty_pct": 0.029568132996320277, - "auto_unstuck_wallet_exposure_threshold": 0.42052320736224147, - "backwards_tp": true, - "ema_span_0": 1256.7413865043804, - "ema_span_1": 1265.8176168616012, - "enabled": true, - "eprice_exp_base": 1.01303934718743, - "eqty_exp_base": 1.2060824182396326, - "grid_span": 0.2831628318492642, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.016412578877153586, - "markup_range": 0.006494568460497011, - "max_n_entry_orders": 8, - "min_markup": 0.004996722435555396, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 734.9719818066914, - "auto_unstuck_ema_dist": -0.005700200867316928, - "auto_unstuck_qty_pct": 0.010665068203659252, - "auto_unstuck_wallet_exposure_threshold": 0.1188655867113104, - "backwards_tp": true, - "ema_span_0": 801.2396258279347, - "ema_span_1": 931.1226508526872, - "enabled": true, - "eprice_exp_base": 1.2058742350073306, - "eqty_exp_base": 1.0185098252025484, - "grid_span": 0.39223065231950954, - "initial_eprice_ema_dist": -0.0018566757036934493, - "initial_qty_pct": 0.012261107756313288, - "markup_range": 0.0020256734711034535, - "max_n_entry_orders": 11, - "min_markup": 0.004613261969487121, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LDOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LDOUSDT.json deleted file mode 100644 index 858ccab64..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LDOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.31238137175, - "auto_unstuck_ema_dist": -0.015119024911923571, - "auto_unstuck_qty_pct": 0.08039112000641081, - "auto_unstuck_wallet_exposure_threshold": 0.5758136613539955, - "backwards_tp": true, - "ema_span_0": 375.78327414326486, - "ema_span_1": 193.60052305861757, - "enabled": true, - "eprice_exp_base": 1.214587112175182, - "eqty_exp_base": 1.3985953899599415, - "grid_span": 0.1921348326406074, - "initial_eprice_ema_dist": 0.0026409555733552356, - "initial_qty_pct": 0.011831419575377413, - "markup_range": 0.005971093436837054, - "max_n_entry_orders": 7, - "min_markup": 0.0030271572687066363, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": 0.0027918371751723455, - "auto_unstuck_qty_pct": 0.010008155005446263, - "auto_unstuck_wallet_exposure_threshold": 0.39755507702124293, - "backwards_tp": true, - "ema_span_0": 1317.472949332417, - "ema_span_1": 1200.8633102910494, - "enabled": true, - "eprice_exp_base": 1.082025308539617, - "eqty_exp_base": 3.610682845300553, - "grid_span": 0.1704280416138739, - "initial_eprice_ema_dist": -0.014545118540521401, - "initial_qty_pct": 0.010529563634420244, - "markup_range": 0.005292800676210645, - "max_n_entry_orders": 11, - "min_markup": 0.00999971269019128, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LEVERUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LEVERUSDT.json deleted file mode 100644 index 7db19412d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LEVERUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 812.1405300432821, - "auto_unstuck_ema_dist": -0.07316289199411792, - "auto_unstuck_qty_pct": 0.01351695688979675, - "auto_unstuck_wallet_exposure_threshold": 0.6839145754479681, - "backwards_tp": true, - "ema_span_0": 287.44273241602025, - "ema_span_1": 372.5358604554202, - "enabled": true, - "eprice_exp_base": 1.1092755889643573, - "eqty_exp_base": 1.689255839667313, - "grid_span": 0.2786094660494714, - "initial_eprice_ema_dist": -0.03593013325795827, - "initial_qty_pct": 0.013742862620661567, - "markup_range": 0.004518112930359438, - "max_n_entry_orders": 10, - "min_markup": 0.008188346756994458, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.5304010329335, - "auto_unstuck_ema_dist": -0.005371837408460239, - "auto_unstuck_qty_pct": 0.03625186747470076, - "auto_unstuck_wallet_exposure_threshold": 0.172467872274705, - "backwards_tp": true, - "ema_span_0": 568.7664237784585, - "ema_span_1": 1015.5465732987756, - "enabled": true, - "eprice_exp_base": 1.0027847482406218, - "eqty_exp_base": 1.6554852220749905, - "grid_span": 0.17063996467610135, - "initial_eprice_ema_dist": -0.0035891586908563485, - "initial_qty_pct": 0.011402515290221417, - "markup_range": 0.013831527977217432, - "max_n_entry_orders": 14, - "min_markup": 0.009514514600822775, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LINAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LINAUSDT.json deleted file mode 100644 index 93fc84079..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LINAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1156.0638286626172, - "auto_unstuck_ema_dist": -0.05651236066344278, - "auto_unstuck_qty_pct": 0.022574758370488602, - "auto_unstuck_wallet_exposure_threshold": 0.415083564354649, - "backwards_tp": true, - "ema_span_0": 588.8833333039297, - "ema_span_1": 641.8317915126986, - "enabled": true, - "eprice_exp_base": 1.1278563642563135, - "eqty_exp_base": 2.4887104509571993, - "grid_span": 0.2484374175475679, - "initial_eprice_ema_dist": -0.0005419315393682505, - "initial_qty_pct": 0.011225980429886666, - "markup_range": 0.007959625433141423, - "max_n_entry_orders": 7, - "min_markup": 0.006657987325592483, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1030.4646278611497, - "auto_unstuck_ema_dist": -0.019927372271882522, - "auto_unstuck_qty_pct": 0.016327172952138265, - "auto_unstuck_wallet_exposure_threshold": 0.10281409354664052, - "backwards_tp": true, - "ema_span_0": 1034.1085517786862, - "ema_span_1": 1268.6189003888871, - "enabled": true, - "eprice_exp_base": 1.17573627705497, - "eqty_exp_base": 2.1192151145887594, - "grid_span": 0.32299262066988577, - "initial_eprice_ema_dist": 3.6622486782147735e-05, - "initial_qty_pct": 0.010224569860575988, - "markup_range": 0.00669895354684023, - "max_n_entry_orders": 9, - "min_markup": 0.009672679795175559, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LINKUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LINKUSDT.json deleted file mode 100644 index 55a67d3f8..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LINKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1206.9360034658287, - "auto_unstuck_ema_dist": -0.08430861975643979, - "auto_unstuck_qty_pct": 0.023091958916313302, - "auto_unstuck_wallet_exposure_threshold": 0.2979783673556894, - "backwards_tp": true, - "ema_span_0": 637.1821707054264, - "ema_span_1": 419.351732678293, - "enabled": true, - "eprice_exp_base": 1.0653488300058507, - "eqty_exp_base": 1.951303976809032, - "grid_span": 0.14174977928413496, - "initial_eprice_ema_dist": -0.05978992335927225, - "initial_qty_pct": 0.01002139977666724, - "markup_range": 0.006223742839777372, - "max_n_entry_orders": 10, - "min_markup": 0.0025100563675091283, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1430.878429698071, - "auto_unstuck_ema_dist": -0.03666765695020211, - "auto_unstuck_qty_pct": 0.0413103823802006, - "auto_unstuck_wallet_exposure_threshold": 0.17648214846453245, - "backwards_tp": true, - "ema_span_0": 79.57238140238307, - "ema_span_1": 1042.140619551511, - "enabled": true, - "eprice_exp_base": 1.0738836439666615, - "eqty_exp_base": 3.6156536127198056, - "grid_span": 0.21439396963300858, - "initial_eprice_ema_dist": -0.004060847798552251, - "initial_qty_pct": 0.014046296332949395, - "markup_range": 0.009695023535563235, - "max_n_entry_orders": 13, - "min_markup": 0.009294830713520854, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LITUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LITUSDT.json deleted file mode 100644 index f1bcb0f17..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LITUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 744.3161590927804, - "auto_unstuck_ema_dist": -0.000832856043586223, - "auto_unstuck_qty_pct": 0.019838123633531574, - "auto_unstuck_wallet_exposure_threshold": 0.41716875965941924, - "backwards_tp": true, - "ema_span_0": 7.808799208124387, - "ema_span_1": 1109.859386607598, - "enabled": true, - "eprice_exp_base": 1.0007124828485983, - "eqty_exp_base": 2.134319566846371, - "grid_span": 0.22689293427171217, - "initial_eprice_ema_dist": -0.0007614403447673986, - "initial_qty_pct": 0.010641439103372646, - "markup_range": 0.006215298659219062, - "max_n_entry_orders": 7, - "min_markup": 0.005790448305888321, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1355.2875103248457, - "auto_unstuck_ema_dist": -0.008303015950734117, - "auto_unstuck_qty_pct": 0.05681413200321959, - "auto_unstuck_wallet_exposure_threshold": 0.1499286208734416, - "backwards_tp": true, - "ema_span_0": 1382.1261218183522, - "ema_span_1": 1158.5376547521412, - "enabled": true, - "eprice_exp_base": 1.1318126502418175, - "eqty_exp_base": 1.6311457239187566, - "grid_span": 0.24259839158613666, - "initial_eprice_ema_dist": 0.0014199350053528952, - "initial_qty_pct": 0.022166956606350985, - "markup_range": 0.017489771113543367, - "max_n_entry_orders": 7, - "min_markup": 0.009872260411006953, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LPTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LPTUSDT.json deleted file mode 100644 index a47514114..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LPTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 395.57631566206055, - "auto_unstuck_ema_dist": -0.00015444126579093956, - "auto_unstuck_qty_pct": 0.015633923963389945, - "auto_unstuck_wallet_exposure_threshold": 0.8305852604193255, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 504.810545607284, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.9726296243289334, - "grid_span": 0.3713792714756141, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 17, - "min_markup": 0.008951591942272753, - "n_close_orders": 15, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1296.9660916655898, - "auto_unstuck_ema_dist": -0.042664004869814434, - "auto_unstuck_qty_pct": 0.012717437621565159, - "auto_unstuck_wallet_exposure_threshold": 0.3561914480916979, - "backwards_tp": true, - "ema_span_0": 1418.135517832663, - "ema_span_1": 687.2274439912106, - "enabled": true, - "eprice_exp_base": 1.2685537118987047, - "eqty_exp_base": 2.1869685432452752, - "grid_span": 0.3794829787187984, - "initial_eprice_ema_dist": 0.0028217730392271507, - "initial_qty_pct": 0.012710689140986189, - "markup_range": 0.011973077754570887, - "max_n_entry_orders": 8, - "min_markup": 0.00493091028059845, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LQTYUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LQTYUSDT.json deleted file mode 100644 index b28aee6b8..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LQTYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.2098689886839, - "auto_unstuck_ema_dist": -0.029938464971292558, - "auto_unstuck_qty_pct": 0.01322957213435129, - "auto_unstuck_wallet_exposure_threshold": 0.44124299054739075, - "backwards_tp": true, - "ema_span_0": 1022.2174206769037, - "ema_span_1": 1202.5749343987134, - "enabled": true, - "eprice_exp_base": 1.0557824156015634, - "eqty_exp_base": 1.2686235112800972, - "grid_span": 0.2873494680415634, - "initial_eprice_ema_dist": -0.08719536914198235, - "initial_qty_pct": 0.010089167863931646, - "markup_range": 0.0026829860287574977, - "max_n_entry_orders": 12, - "min_markup": 0.003194751705619432, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LRCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LRCUSDT.json deleted file mode 100644 index c9e5a9420..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LRCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1390.595235283437, - "auto_unstuck_ema_dist": -0.01514134294845544, - "auto_unstuck_qty_pct": 0.010665366560617114, - "auto_unstuck_wallet_exposure_threshold": 0.6205612202100563, - "backwards_tp": true, - "ema_span_0": 1174.9934620766958, - "ema_span_1": 1121.7994195688743, - "enabled": true, - "eprice_exp_base": 1.0712729432182215, - "eqty_exp_base": 1.853903288341679, - "grid_span": 0.13891906232585272, - "initial_eprice_ema_dist": -0.0006290335606072674, - "initial_qty_pct": 0.012316845415467337, - "markup_range": 0.0032963725874129686, - "max_n_entry_orders": 9, - "min_markup": 0.008139762803669787, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 881.3342205816584, - "auto_unstuck_ema_dist": -0.06285848587604896, - "auto_unstuck_qty_pct": 0.0317192059965618, - "auto_unstuck_wallet_exposure_threshold": 0.2624263191149784, - "backwards_tp": true, - "ema_span_0": 255.50751655100154, - "ema_span_1": 290.49557535759095, - "enabled": true, - "eprice_exp_base": 1.2136852144300496, - "eqty_exp_base": 1.5406721356788449, - "grid_span": 0.650835034705818, - "initial_eprice_ema_dist": -6.455716188957976e-05, - "initial_qty_pct": 0.011321850459695679, - "markup_range": 0.0022447872055825413, - "max_n_entry_orders": 11, - "min_markup": 0.007987803877392933, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LTCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LTCUSDT.json deleted file mode 100644 index 25c553842..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LTCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 740.0184218517647, - "auto_unstuck_ema_dist": 0.0029766917451857977, - "auto_unstuck_qty_pct": 0.010123668349159533, - "auto_unstuck_wallet_exposure_threshold": 0.1527279931044989, - "backwards_tp": true, - "ema_span_0": 1268.5006641467548, - "ema_span_1": 1356.3795616152556, - "enabled": true, - "eprice_exp_base": 1.0892634932428413, - "eqty_exp_base": 1.6837745481665294, - "grid_span": 0.26160902452411716, - "initial_eprice_ema_dist": -0.006515467825257201, - "initial_qty_pct": 0.01723314692378033, - "markup_range": 0.005048302095099893, - "max_n_entry_orders": 10, - "min_markup": 0.00851579864663394, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": 0.0027918371751723455, - "auto_unstuck_qty_pct": 0.010008155005446263, - "auto_unstuck_wallet_exposure_threshold": 0.39755507702124293, - "backwards_tp": true, - "ema_span_0": 1317.472949332417, - "ema_span_1": 1200.8633102910494, - "enabled": true, - "eprice_exp_base": 1.082025308539617, - "eqty_exp_base": 3.610682845300553, - "grid_span": 0.1704280416138739, - "initial_eprice_ema_dist": -0.014545118540521401, - "initial_qty_pct": 0.010529563634420244, - "markup_range": 0.005292800676210645, - "max_n_entry_orders": 11, - "min_markup": 0.00999971269019128, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LUNA2USDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LUNA2USDT.json deleted file mode 100644 index 15be3e4ba..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/LUNA2USDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MAGICUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MAGICUSDT.json deleted file mode 100644 index 8f75791f2..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MAGICUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.4254065822352, - "auto_unstuck_ema_dist": -0.029627972916044323, - "auto_unstuck_qty_pct": 0.010149460102845714, - "auto_unstuck_wallet_exposure_threshold": 0.49261238267423857, - "backwards_tp": true, - "ema_span_0": 1172.7828815354887, - "ema_span_1": 1306.9040552780662, - "enabled": true, - "eprice_exp_base": 1.002455041325814, - "eqty_exp_base": 1.996555354220001, - "grid_span": 0.12616534691015155, - "initial_eprice_ema_dist": -0.06382614152119226, - "initial_qty_pct": 0.010031129570869544, - "markup_range": 0.0029718165961309345, - "max_n_entry_orders": 10, - "min_markup": 0.002658068109447345, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.6807818207787, - "auto_unstuck_ema_dist": -0.006778335727737885, - "auto_unstuck_qty_pct": 0.014087701589334754, - "auto_unstuck_wallet_exposure_threshold": 0.13123791548024152, - "backwards_tp": true, - "ema_span_0": 1227.3728686012935, - "ema_span_1": 1129.9829631455764, - "enabled": true, - "eprice_exp_base": 1.0788617301729184, - "eqty_exp_base": 2.8442772777773904, - "grid_span": 0.17214574961987536, - "initial_eprice_ema_dist": -0.0008494689085988029, - "initial_qty_pct": 0.010347078653780381, - "markup_range": 0.002123747989666032, - "max_n_entry_orders": 8, - "min_markup": 0.008717136677346285, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MANAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MANAUSDT.json deleted file mode 100644 index 634ccc608..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MANAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1324.6270592339595, - "auto_unstuck_ema_dist": -0.025779479392994912, - "auto_unstuck_qty_pct": 0.010009286530486914, - "auto_unstuck_wallet_exposure_threshold": 0.38060086753670347, - "backwards_tp": true, - "ema_span_0": 312.8396794375856, - "ema_span_1": 688.2694252914063, - "enabled": true, - "eprice_exp_base": 1.114720060694354, - "eqty_exp_base": 1.6975759240105652, - "grid_span": 0.10560099667352332, - "initial_eprice_ema_dist": 0.0029991156478442567, - "initial_qty_pct": 0.010561002277241976, - "markup_range": 0.0030849742069951865, - "max_n_entry_orders": 7, - "min_markup": 0.006111449695768695, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1197.0084432470494, - "auto_unstuck_ema_dist": -0.01977702103604026, - "auto_unstuck_qty_pct": 0.02213996812425767, - "auto_unstuck_wallet_exposure_threshold": 0.4117735089414276, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1166.7984565468903, - "enabled": true, - "eprice_exp_base": 1.0355349511711107, - "eqty_exp_base": 3.2494571228404556, - "grid_span": 0.14464679065612565, - "initial_eprice_ema_dist": -0.0006171833028433106, - "initial_qty_pct": 0.011144270788398733, - "markup_range": 0.009702953567933012, - "max_n_entry_orders": 8, - "min_markup": 0.00572257576984019, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MASKUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MASKUSDT.json deleted file mode 100644 index 4b5148089..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MASKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1232.8988841979901, - "auto_unstuck_ema_dist": -0.016748364003455786, - "auto_unstuck_qty_pct": 0.011155559136564472, - "auto_unstuck_wallet_exposure_threshold": 0.680732371421344, - "backwards_tp": true, - "ema_span_0": 748.4978236668502, - "ema_span_1": 524.1979616418802, - "enabled": true, - "eprice_exp_base": 1.0000088753984597, - "eqty_exp_base": 2.1280622372741735, - "grid_span": 0.17889505470021103, - "initial_eprice_ema_dist": 0.0029999672120743057, - "initial_qty_pct": 0.01591926851963001, - "markup_range": 0.0014520739419980643, - "max_n_entry_orders": 9, - "min_markup": 0.0028487964278350653, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 907.707604617173, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.16835780430465794, - "backwards_tp": true, - "ema_span_0": 551.0004511359443, - "ema_span_1": 1169.924177613991, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.6132937962607756, - "grid_span": 0.4400963034537022, - "initial_eprice_ema_dist": -0.04428189478784108, - "initial_qty_pct": 0.01, - "markup_range": 0.007037437329408645, - "max_n_entry_orders": 10, - "min_markup": 0.0014599476135195243, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MATICUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MATICUSDT.json deleted file mode 100644 index 92d1877be..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MATICUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1330.6399332942376, - "auto_unstuck_ema_dist": -0.010407993144474614, - "auto_unstuck_qty_pct": 0.012504004598565615, - "auto_unstuck_wallet_exposure_threshold": 0.30918922176702673, - "backwards_tp": true, - "ema_span_0": 1275.1712361923996, - "ema_span_1": 678.0959734310069, - "enabled": true, - "eprice_exp_base": 1.1342419566715043, - "eqty_exp_base": 1.6438056004554018, - "grid_span": 0.17922016404000038, - "initial_eprice_ema_dist": 0.0008341464857513167, - "initial_qty_pct": 0.010661940843284827, - "markup_range": 0.004353017422056995, - "max_n_entry_orders": 9, - "min_markup": 0.006217866162055133, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1257.1765046178355, - "auto_unstuck_ema_dist": -0.01676368517587099, - "auto_unstuck_qty_pct": 0.016701313705417328, - "auto_unstuck_wallet_exposure_threshold": 0.48997292025155054, - "backwards_tp": true, - "ema_span_0": 422.80125313954346, - "ema_span_1": 841.9842704749742, - "enabled": true, - "eprice_exp_base": 1.061558899700857, - "eqty_exp_base": 2.190258626443725, - "grid_span": 0.18100171146859348, - "initial_eprice_ema_dist": -0.014535608404014261, - "initial_qty_pct": 0.012351656356850487, - "markup_range": 0.005251271441953926, - "max_n_entry_orders": 8, - "min_markup": 0.0035885067060970016, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MAVUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MAVUSDT.json deleted file mode 100644 index 608084357..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MAVUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 781.1069973944801, - "auto_unstuck_ema_dist": -0.04041194891053113, - "auto_unstuck_qty_pct": 0.013039336957362266, - "auto_unstuck_wallet_exposure_threshold": 0.21005762329714173, - "backwards_tp": true, - "ema_span_0": 1089.3533422202247, - "ema_span_1": 645.6438460818256, - "enabled": true, - "eprice_exp_base": 1.432400111323191, - "eqty_exp_base": 2.6182858260856072, - "grid_span": 0.1564882409441415, - "initial_eprice_ema_dist": 0.002991926780557061, - "initial_qty_pct": 0.01136107219949211, - "markup_range": 0.005102629400112615, - "max_n_entry_orders": 7, - "min_markup": 0.007082499507288377, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MDTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MDTUSDT.json deleted file mode 100644 index 1968eb573..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MDTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 155.94365352081996, - "auto_unstuck_ema_dist": -0.031330482695477675, - "auto_unstuck_qty_pct": 0.011037485750127569, - "auto_unstuck_wallet_exposure_threshold": 0.16443170038577976, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.1727247100550446, - "eqty_exp_base": 1, - "grid_span": 0.18183233414625083, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.025220122290467033, - "markup_range": 0.0, - "max_n_entry_orders": 12, - "min_markup": 0.007132025701123874, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 779.4937631903803, - "auto_unstuck_ema_dist": -0.09059141530018994, - "auto_unstuck_qty_pct": 0.030190248656495958, - "auto_unstuck_wallet_exposure_threshold": 0.16656753914639674, - "backwards_tp": true, - "ema_span_0": 560.5725837372815, - "ema_span_1": 682.643601180339, - "enabled": true, - "eprice_exp_base": 1.2343150273880885, - "eqty_exp_base": 3.7828761721681, - "grid_span": 0.1824047658902641, - "initial_eprice_ema_dist": 0.002946770070514348, - "initial_qty_pct": 0.021382527309153382, - "markup_range": 0.0032343642961400864, - "max_n_entry_orders": 15, - "min_markup": 0.004032169043735039, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MINAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MINAUSDT.json deleted file mode 100644 index 25024d2fb..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MINAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 890.2375035458963, - "auto_unstuck_ema_dist": -0.09007265557396357, - "auto_unstuck_qty_pct": 0.1, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 554.8232587335082, - "ema_span_1": 1267.4151741290289, - "enabled": true, - "eprice_exp_base": 1.0894017253690684, - "eqty_exp_base": 3.173350604560703, - "grid_span": 0.1459771041058295, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.03158156295475719, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.005851372512486347, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MKRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MKRUSDT.json deleted file mode 100644 index 9eb47e96b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MKRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 637.4334725193053, - "auto_unstuck_ema_dist": 0.0029206150728870797, - "auto_unstuck_qty_pct": 0.04471387746939395, - "auto_unstuck_wallet_exposure_threshold": 0.368480685246695, - "backwards_tp": true, - "ema_span_0": 331.25759167079394, - "ema_span_1": 225.46879900833596, - "enabled": true, - "eprice_exp_base": 1.0611887524199195, - "eqty_exp_base": 1.1659600867893172, - "grid_span": 0.15568157472849578, - "initial_eprice_ema_dist": -0.07767221057817625, - "initial_qty_pct": 0.01, - "markup_range": 0.003646386009442566, - "max_n_entry_orders": 9, - "min_markup": 0.0024609264687381915, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 559.260531604697, - "auto_unstuck_ema_dist": -0.00842752530128673, - "auto_unstuck_qty_pct": 0.013399550071574607, - "auto_unstuck_wallet_exposure_threshold": 0.33695330170844806, - "backwards_tp": true, - "ema_span_0": 1383.3551930257856, - "ema_span_1": 68.06040929635022, - "enabled": true, - "eprice_exp_base": 1.105849123094091, - "eqty_exp_base": 1.22087120679925, - "grid_span": 0.30594108207171933, - "initial_eprice_ema_dist": 0.0024083581567065086, - "initial_qty_pct": 0.01, - "markup_range": 0.004365852785813848, - "max_n_entry_orders": 8, - "min_markup": 0.0064414420212760256, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MTLUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MTLUSDT.json deleted file mode 100644 index a35fec92d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/MTLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1312.9236090872914, - "auto_unstuck_ema_dist": -0.05364601981103215, - "auto_unstuck_qty_pct": 0.01841319241552632, - "auto_unstuck_wallet_exposure_threshold": 0.7629305551536341, - "backwards_tp": true, - "ema_span_0": 817.6765950526462, - "ema_span_1": 739.8764895895879, - "enabled": true, - "eprice_exp_base": 1.0703003148629697, - "eqty_exp_base": 1.3106940841521368, - "grid_span": 0.33290426286021313, - "initial_eprice_ema_dist": -0.005719966234491855, - "initial_qty_pct": 0.0265410127263459, - "markup_range": 0.0017384690727468763, - "max_n_entry_orders": 8, - "min_markup": 0.004439483179768639, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1400.6900593576077, - "auto_unstuck_ema_dist": -0.06435512785338308, - "auto_unstuck_qty_pct": 0.010143924542001982, - "auto_unstuck_wallet_exposure_threshold": 0.6328201381858855, - "backwards_tp": true, - "ema_span_0": 1143.4233809386437, - "ema_span_1": 1415.7036255054181, - "enabled": true, - "eprice_exp_base": 1.0545235691054802, - "eqty_exp_base": 1.3932137933386775, - "grid_span": 0.549288828005579, - "initial_eprice_ema_dist": 0.002950447910776513, - "initial_qty_pct": 0.01625984787620682, - "markup_range": 0.0033917464927030734, - "max_n_entry_orders": 22, - "min_markup": 0.004038401461269915, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NEARUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NEARUSDT.json deleted file mode 100644 index b09542c3e..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NEARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1148.7575947594983, - "auto_unstuck_ema_dist": -0.06610522537199073, - "auto_unstuck_qty_pct": 0.010165215395132595, - "auto_unstuck_wallet_exposure_threshold": 0.3873247866501045, - "backwards_tp": true, - "ema_span_0": 1227.9019518904095, - "ema_span_1": 1349.2435607355044, - "enabled": true, - "eprice_exp_base": 1.0961280971510308, - "eqty_exp_base": 1.5404861920168187, - "grid_span": 0.1246561754214835, - "initial_eprice_ema_dist": 0.002999804308312542, - "initial_qty_pct": 0.012390499644160674, - "markup_range": 0.0022193519972044684, - "max_n_entry_orders": 7, - "min_markup": 0.003874867616229977, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1242.1822487508389, - "auto_unstuck_ema_dist": -0.05217017433779884, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.558855339094606, - "backwards_tp": true, - "ema_span_0": 54.74479757019285, - "ema_span_1": 1310.9789029573235, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.9706716271051392, - "grid_span": 0.3222915763925853, - "initial_eprice_ema_dist": -0.010546074128439924, - "initial_qty_pct": 0.017338958962911367, - "markup_range": 0.0011912160687322848, - "max_n_entry_orders": 20, - "min_markup": 0.007591070080575359, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NEOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NEOUSDT.json deleted file mode 100644 index cf14d95b5..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NEOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1178.864914744815, - "auto_unstuck_ema_dist": -0.09366403693429062, - "auto_unstuck_qty_pct": 0.01346809944182025, - "auto_unstuck_wallet_exposure_threshold": 0.7790790903429815, - "backwards_tp": true, - "ema_span_0": 883.3406828944145, - "ema_span_1": 422.519629540615, - "enabled": true, - "eprice_exp_base": 1.2697939105088614, - "eqty_exp_base": 2.2046793957345505, - "grid_span": 0.2834976304280092, - "initial_eprice_ema_dist": 0.002994426644819609, - "initial_qty_pct": 0.011648078888927308, - "markup_range": 0.008336844046428342, - "max_n_entry_orders": 7, - "min_markup": 0.0043058686997747165, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 985.9342694636125, - "auto_unstuck_ema_dist": -0.0165075907113428, - "auto_unstuck_qty_pct": 0.013184063447006945, - "auto_unstuck_wallet_exposure_threshold": 0.1913487457434161, - "backwards_tp": true, - "ema_span_0": 1227.917246956021, - "ema_span_1": 584.4472988824474, - "enabled": true, - "eprice_exp_base": 1.3781266136534174, - "eqty_exp_base": 1.251153931037694, - "grid_span": 0.23778616253835247, - "initial_eprice_ema_dist": -0.004454992589175792, - "initial_qty_pct": 0.010965863309892031, - "markup_range": 0.0045180557475988405, - "max_n_entry_orders": 8, - "min_markup": 0.004239992204731155, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NKNUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NKNUSDT.json deleted file mode 100644 index 24f45e58c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NKNUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 951.6955086786951, - "auto_unstuck_ema_dist": -0.07137516448869817, - "auto_unstuck_qty_pct": 0.020326564749976135, - "auto_unstuck_wallet_exposure_threshold": 0.2701196467410427, - "backwards_tp": true, - "ema_span_0": 1105.8818721298312, - "ema_span_1": 85.99574669401991, - "enabled": true, - "eprice_exp_base": 1.0875408007300245, - "eqty_exp_base": 1.5971164074390949, - "grid_span": 0.19837291249277844, - "initial_eprice_ema_dist": -0.003314071435444695, - "initial_qty_pct": 0.016860203452174927, - "markup_range": 0.007041195496302395, - "max_n_entry_orders": 12, - "min_markup": 0.0085676266259844, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 874.0424906847115, - "auto_unstuck_ema_dist": -0.02261011773125531, - "auto_unstuck_qty_pct": 0.023208488128661213, - "auto_unstuck_wallet_exposure_threshold": 0.4469168528067507, - "backwards_tp": true, - "ema_span_0": 483.85502579933905, - "ema_span_1": 1399.8631337597437, - "enabled": true, - "eprice_exp_base": 1.2830264221145415, - "eqty_exp_base": 1.2208248345808002, - "grid_span": 0.35541682845597217, - "initial_eprice_ema_dist": -0.0013488393752513447, - "initial_qty_pct": 0.011724489906266556, - "markup_range": 0.011143655740834948, - "max_n_entry_orders": 11, - "min_markup": 0.009560997015779307, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NMRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NMRUSDT.json deleted file mode 100644 index 59eed1761..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/NMRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1413.664236410988, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.071339656663934, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 197.3664988460256, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.0334129505581067, - "markup_range": 0.0, - "max_n_entry_orders": 11, - "min_markup": 0.00924454929972874, - "n_close_orders": 2, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 1420.9651479537285, - "auto_unstuck_ema_dist": -0.033631641830101304, - "auto_unstuck_qty_pct": 0.020401806530856124, - "auto_unstuck_wallet_exposure_threshold": 0.2938345281297234, - "backwards_tp": true, - "ema_span_0": 1011.4518973719919, - "ema_span_1": 798.0567764621785, - "enabled": true, - "eprice_exp_base": 1.0680920722213172, - "eqty_exp_base": 2.2829103749222863, - "grid_span": 0.14874815958874757, - "initial_eprice_ema_dist": -0.011196204261857148, - "initial_qty_pct": 0.017998783074008304, - "markup_range": 0.0074045251026196865, - "max_n_entry_orders": 9, - "min_markup": 0.005606728427408416, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OCEANUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OCEANUSDT.json deleted file mode 100644 index cb684d601..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OCEANUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 789.4036403665885, - "auto_unstuck_ema_dist": -0.017920246952074653, - "auto_unstuck_qty_pct": 0.010609723269670879, - "auto_unstuck_wallet_exposure_threshold": 0.624501380132872, - "backwards_tp": true, - "ema_span_0": 1056.857164811717, - "ema_span_1": 968.396596975907, - "enabled": true, - "eprice_exp_base": 1.002323247082522, - "eqty_exp_base": 1.0000638779372917, - "grid_span": 0.2626838278068721, - "initial_eprice_ema_dist": 7.58199503762149e-05, - "initial_qty_pct": 0.028187959554310894, - "markup_range": 0.002214787445918708, - "max_n_entry_orders": 7, - "min_markup": 0.009642666354328271, - "n_close_orders": 15, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 521.9621885409512, - "auto_unstuck_ema_dist": -0.012762902179782869, - "auto_unstuck_qty_pct": 0.062469935581463375, - "auto_unstuck_wallet_exposure_threshold": 0.19147582805785182, - "backwards_tp": true, - "ema_span_0": 1397.9529576373322, - "ema_span_1": 1203.8900840595732, - "enabled": true, - "eprice_exp_base": 1.2012536052127025, - "eqty_exp_base": 1.0620027140110555, - "grid_span": 0.23590512152196455, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011891493870233449, - "markup_range": 0.007532704419919807, - "max_n_entry_orders": 9, - "min_markup": 0.009294324396481382, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OGNUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OGNUSDT.json deleted file mode 100644 index c72141733..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OGNUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 464.5243137292278, - "auto_unstuck_ema_dist": -0.016257807912191485, - "auto_unstuck_qty_pct": 0.028753279466435785, - "auto_unstuck_wallet_exposure_threshold": 0.25809686194350934, - "backwards_tp": true, - "ema_span_0": 262.52173269010757, - "ema_span_1": 302.10196885329646, - "enabled": true, - "eprice_exp_base": 1.013827024021197, - "eqty_exp_base": 1.000178541762229, - "grid_span": 0.31467353739847387, - "initial_eprice_ema_dist": 0.0029988704176538775, - "initial_qty_pct": 0.013103703457016357, - "markup_range": 0.0069240678725558625, - "max_n_entry_orders": 7, - "min_markup": 0.007480120415776099, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 588.4046506251598, - "auto_unstuck_ema_dist": -0.04929267586320539, - "auto_unstuck_qty_pct": 0.02862607293805084, - "auto_unstuck_wallet_exposure_threshold": 0.2796812591951138, - "backwards_tp": true, - "ema_span_0": 983.3912263591697, - "ema_span_1": 1291.369846357907, - "enabled": true, - "eprice_exp_base": 1.0623121946221181, - "eqty_exp_base": 1.1639082421634233, - "grid_span": 0.5127404697753712, - "initial_eprice_ema_dist": 0.0016943324124452292, - "initial_qty_pct": 0.014164359772480019, - "markup_range": 0.0056096624613933155, - "max_n_entry_orders": 17, - "min_markup": 0.009538893707668243, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OMGUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OMGUSDT.json deleted file mode 100644 index cce36b0cb..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OMGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.4092512849797, - "auto_unstuck_ema_dist": -0.007804317744943648, - "auto_unstuck_qty_pct": 0.012827505738499128, - "auto_unstuck_wallet_exposure_threshold": 0.23114110655160536, - "backwards_tp": true, - "ema_span_0": 471.51598421925127, - "ema_span_1": 690.0351092432278, - "enabled": true, - "eprice_exp_base": 1.1562934653212311, - "eqty_exp_base": 2.0699935345270997, - "grid_span": 0.15929253434258953, - "initial_eprice_ema_dist": -0.00866265020952416, - "initial_qty_pct": 0.011026991701794699, - "markup_range": 0.005901207434692439, - "max_n_entry_orders": 7, - "min_markup": 0.005892201524839872, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1113.477951066357, - "auto_unstuck_ema_dist": -0.06733026558274793, - "auto_unstuck_qty_pct": 0.0905230648535008, - "auto_unstuck_wallet_exposure_threshold": 0.5049681744337804, - "backwards_tp": true, - "ema_span_0": 411.30714535148826, - "ema_span_1": 46.45524076789364, - "enabled": true, - "eprice_exp_base": 1.0922490408476915, - "eqty_exp_base": 3.1262211559071, - "grid_span": 0.32325991327162235, - "initial_eprice_ema_dist": -0.008180053257656942, - "initial_qty_pct": 0.01000109725779698, - "markup_range": 0.004731383227217477, - "max_n_entry_orders": 8, - "min_markup": 0.0024902460883624634, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ONEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ONEUSDT.json deleted file mode 100644 index 71dec667d..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ONEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1309.3015002105221, - "auto_unstuck_ema_dist": -0.06619867664384063, - "auto_unstuck_qty_pct": 0.02710782071876213, - "auto_unstuck_wallet_exposure_threshold": 0.21854421529034437, - "backwards_tp": true, - "ema_span_0": 1119.2115034185858, - "ema_span_1": 627.3732417578091, - "enabled": true, - "eprice_exp_base": 1.0679558973352758, - "eqty_exp_base": 1.5144757584490733, - "grid_span": 0.18276121412378385, - "initial_eprice_ema_dist": 3.959913333134626e-05, - "initial_qty_pct": 0.011966447227676235, - "markup_range": 0.0017663009437338785, - "max_n_entry_orders": 10, - "min_markup": 0.004009025076899484, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 384.28622591761825, - "auto_unstuck_ema_dist": -0.04348221402154566, - "auto_unstuck_qty_pct": 0.05435150262934193, - "auto_unstuck_wallet_exposure_threshold": 0.4374812410848293, - "backwards_tp": true, - "ema_span_0": 119.26242531406712, - "ema_span_1": 676.0489747052981, - "enabled": true, - "eprice_exp_base": 1.2049330520847439, - "eqty_exp_base": 2.4383466766993616, - "grid_span": 0.19537954199076812, - "initial_eprice_ema_dist": 0.002974912462724406, - "initial_qty_pct": 0.020121128649868734, - "markup_range": 0.0054102602540279125, - "max_n_entry_orders": 7, - "min_markup": 0.007775922714986463, - "n_close_orders": 9, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ONTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ONTUSDT.json deleted file mode 100644 index 278466d83..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ONTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1220.1693190259343, - "auto_unstuck_ema_dist": -0.055848604265624165, - "auto_unstuck_qty_pct": 0.01663793130176452, - "auto_unstuck_wallet_exposure_threshold": 0.22320529412018741, - "backwards_tp": true, - "ema_span_0": 1034.768989555157, - "ema_span_1": 645.9178238852667, - "enabled": true, - "eprice_exp_base": 1.0264132632197753, - "eqty_exp_base": 1.5947127337419398, - "grid_span": 0.3243406544149025, - "initial_eprice_ema_dist": -0.0008614015973919106, - "initial_qty_pct": 0.01345951019188534, - "markup_range": 0.0060631363436918564, - "max_n_entry_orders": 9, - "min_markup": 0.00693012419765506, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OPUSDT.json deleted file mode 100644 index 5463f8791..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/OPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.9061277277842, - "auto_unstuck_ema_dist": -0.05509587541388286, - "auto_unstuck_qty_pct": 0.04614884064028366, - "auto_unstuck_wallet_exposure_threshold": 0.46863516278925094, - "backwards_tp": true, - "ema_span_0": 839.2060753662297, - "ema_span_1": 353.2123188484158, - "enabled": true, - "eprice_exp_base": 1.1405633050308002, - "eqty_exp_base": 1.4146469967046582, - "grid_span": 0.1984017107809955, - "initial_eprice_ema_dist": 0.0007194017798747517, - "initial_qty_pct": 0.011638530486312363, - "markup_range": 0.0012986613134998541, - "max_n_entry_orders": 9, - "min_markup": 0.007655768612028226, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 907.707604617173, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.16835780430465794, - "backwards_tp": true, - "ema_span_0": 551.0004511359443, - "ema_span_1": 1169.924177613991, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.6132937962607756, - "grid_span": 0.4400963034537022, - "initial_eprice_ema_dist": -0.04428189478784108, - "initial_qty_pct": 0.01, - "markup_range": 0.007037437329408645, - "max_n_entry_orders": 10, - "min_markup": 0.0014599476135195243, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PENDLEUSDT.json deleted file mode 100644 index 916a32901..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PENDLEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1356.0976122855272, - "auto_unstuck_ema_dist": -0.04096486330558547, - "auto_unstuck_qty_pct": 0.01157079205008633, - "auto_unstuck_wallet_exposure_threshold": 0.6585588232903201, - "backwards_tp": true, - "ema_span_0": 754.9650547886384, - "ema_span_1": 32.02355625334798, - "enabled": true, - "eprice_exp_base": 1.0003232146185104, - "eqty_exp_base": 2.0086046719051853, - "grid_span": 0.19016357148075247, - "initial_eprice_ema_dist": -0.056805610105461174, - "initial_qty_pct": 0.013498406480045204, - "markup_range": 0.0060398974172039925, - "max_n_entry_orders": 9, - "min_markup": 0.006212424819249478, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.3656695593141, - "auto_unstuck_ema_dist": -0.015398197791529941, - "auto_unstuck_qty_pct": 0.04431219279027263, - "auto_unstuck_wallet_exposure_threshold": 0.14474877521135127, - "backwards_tp": true, - "ema_span_0": 1345.8018944144364, - "ema_span_1": 114.25356926090353, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.228892022834553, - "grid_span": 0.19509075249107113, - "initial_eprice_ema_dist": 0.0028304685343249194, - "initial_qty_pct": 0.014539530455688529, - "markup_range": 0.019110397358009217, - "max_n_entry_orders": 13, - "min_markup": 0.009932421283043847, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PEOPLEUSDT.json deleted file mode 100644 index ff5ecfafc..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PEOPLEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 744.3161590927804, - "auto_unstuck_ema_dist": -0.000832856043586223, - "auto_unstuck_qty_pct": 0.019838123633531574, - "auto_unstuck_wallet_exposure_threshold": 0.41716875965941924, - "backwards_tp": true, - "ema_span_0": 7.808799208124387, - "ema_span_1": 1109.859386607598, - "enabled": true, - "eprice_exp_base": 1.0007124828485983, - "eqty_exp_base": 2.134319566846371, - "grid_span": 0.22689293427171217, - "initial_eprice_ema_dist": -0.0007614403447673986, - "initial_qty_pct": 0.010641439103372646, - "markup_range": 0.006215298659219062, - "max_n_entry_orders": 7, - "min_markup": 0.005790448305888321, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.9447745660573, - "auto_unstuck_ema_dist": -0.014614502702101335, - "auto_unstuck_qty_pct": 0.01661511462751747, - "auto_unstuck_wallet_exposure_threshold": 0.4367564656424801, - "backwards_tp": true, - "ema_span_0": 1377.1724191049236, - "ema_span_1": 904.7743747036709, - "enabled": true, - "eprice_exp_base": 1.2844196746243386, - "eqty_exp_base": 1.6525884050686455, - "grid_span": 0.4425860447472405, - "initial_eprice_ema_dist": 0.0009022720849045805, - "initial_qty_pct": 0.010001758155469056, - "markup_range": 0.008902967231539416, - "max_n_entry_orders": 9, - "min_markup": 0.0074502696582370315, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PERPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PERPUSDT.json deleted file mode 100644 index ea7722403..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PERPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0004950792010939079, - "auto_unstuck_qty_pct": 0.026304514229678777, - "auto_unstuck_wallet_exposure_threshold": 0.17391268983721583, - "backwards_tp": true, - "ema_span_0": 1035.4850398673357, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3622370182757666, - "grid_span": 0.2609115690021448, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0005030013361354603, - "max_n_entry_orders": 13, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 884.8447776570468, - "auto_unstuck_ema_dist": -0.07900209417896203, - "auto_unstuck_qty_pct": 0.06186831955773328, - "auto_unstuck_wallet_exposure_threshold": 0.508315606255378, - "backwards_tp": true, - "ema_span_0": 71.62350200600264, - "ema_span_1": 25.15174163865426, - "enabled": true, - "eprice_exp_base": 1.0142594569754666, - "eqty_exp_base": 3.649565085146125, - "grid_span": 0.13334919204060128, - "initial_eprice_ema_dist": -0.08488892931109529, - "initial_qty_pct": 0.010451719365528203, - "markup_range": 0.0032805974896529242, - "max_n_entry_orders": 9, - "min_markup": 0.0022761781494163853, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PHBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PHBUSDT.json deleted file mode 100644 index 5f42e7ecb..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/PHBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.4254065822352, - "auto_unstuck_ema_dist": -0.029627972916044323, - "auto_unstuck_qty_pct": 0.010149460102845714, - "auto_unstuck_wallet_exposure_threshold": 0.49261238267423857, - "backwards_tp": true, - "ema_span_0": 1172.7828815354887, - "ema_span_1": 1306.9040552780662, - "enabled": true, - "eprice_exp_base": 1.002455041325814, - "eqty_exp_base": 1.996555354220001, - "grid_span": 0.12616534691015155, - "initial_eprice_ema_dist": -0.06382614152119226, - "initial_qty_pct": 0.010031129570869544, - "markup_range": 0.0029718165961309345, - "max_n_entry_orders": 10, - "min_markup": 0.002658068109447345, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 985.9342694636125, - "auto_unstuck_ema_dist": -0.0165075907113428, - "auto_unstuck_qty_pct": 0.013184063447006945, - "auto_unstuck_wallet_exposure_threshold": 0.1913487457434161, - "backwards_tp": true, - "ema_span_0": 1227.917246956021, - "ema_span_1": 584.4472988824474, - "enabled": true, - "eprice_exp_base": 1.3781266136534174, - "eqty_exp_base": 1.251153931037694, - "grid_span": 0.23778616253835247, - "initial_eprice_ema_dist": -0.004454992589175792, - "initial_qty_pct": 0.010965863309892031, - "markup_range": 0.0045180557475988405, - "max_n_entry_orders": 8, - "min_markup": 0.004239992204731155, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/QNTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/QNTUSDT.json deleted file mode 100644 index 9c59d47a0..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/QNTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1153.4089193874636, - "auto_unstuck_ema_dist": -0.035875033846794975, - "auto_unstuck_qty_pct": 0.010263757064094459, - "auto_unstuck_wallet_exposure_threshold": 0.46729587961200386, - "backwards_tp": true, - "ema_span_0": 316.9357839604266, - "ema_span_1": 970.9396473961013, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3362876166533324, - "grid_span": 0.10102462899372266, - "initial_eprice_ema_dist": -0.005758191324436425, - "initial_qty_pct": 0.011082668241455002, - "markup_range": 0.0057278377986356415, - "max_n_entry_orders": 15, - "min_markup": 0.0030046892767935027, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/QTUMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/QTUMUSDT.json deleted file mode 100644 index 577d72a53..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/QTUMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1312.3497217836286, - "auto_unstuck_ema_dist": -0.031246757663110407, - "auto_unstuck_qty_pct": 0.010847358243222999, - "auto_unstuck_wallet_exposure_threshold": 0.4280809710123283, - "backwards_tp": true, - "ema_span_0": 905.275802239915, - "ema_span_1": 17.12640696902039, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.444814769058541, - "grid_span": 0.21620371108947897, - "initial_eprice_ema_dist": 0.0022365676265164425, - "initial_qty_pct": 0.013024735250668391, - "markup_range": 0.008442345102329359, - "max_n_entry_orders": 9, - "min_markup": 0.007724275004453045, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.6807818207787, - "auto_unstuck_ema_dist": -0.006778335727737885, - "auto_unstuck_qty_pct": 0.014087701589334754, - "auto_unstuck_wallet_exposure_threshold": 0.13123791548024152, - "backwards_tp": true, - "ema_span_0": 1227.3728686012935, - "ema_span_1": 1129.9829631455764, - "enabled": true, - "eprice_exp_base": 1.0788617301729184, - "eqty_exp_base": 2.8442772777773904, - "grid_span": 0.17214574961987536, - "initial_eprice_ema_dist": -0.0008494689085988029, - "initial_qty_pct": 0.010347078653780381, - "markup_range": 0.002123747989666032, - "max_n_entry_orders": 8, - "min_markup": 0.008717136677346285, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RADUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RADUSDT.json deleted file mode 100644 index 6cb5748db..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RADUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 398.82361184535074, - "auto_unstuck_ema_dist": -0.0018062727097298815, - "auto_unstuck_qty_pct": 0.06035714231382467, - "auto_unstuck_wallet_exposure_threshold": 0.18489938277491794, - "backwards_tp": true, - "ema_span_0": 942.5494609680151, - "ema_span_1": 957.4417034642877, - "enabled": true, - "eprice_exp_base": 1.1931781533327768, - "eqty_exp_base": 1.0964573436703675, - "grid_span": 0.12559083611289854, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.020902081014903626, - "markup_range": 0.001371605517100114, - "max_n_entry_orders": 9, - "min_markup": 0.003971431275240029, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RAYUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RAYUSDT.json deleted file mode 100644 index d219dbf60..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RAYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RDNTUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RDNTUSDT.json deleted file mode 100644 index 7588cd523..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RDNTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1324.6270592339595, - "auto_unstuck_ema_dist": -0.025779479392994912, - "auto_unstuck_qty_pct": 0.010009286530486914, - "auto_unstuck_wallet_exposure_threshold": 0.38060086753670347, - "backwards_tp": true, - "ema_span_0": 312.8396794375856, - "ema_span_1": 688.2694252914063, - "enabled": true, - "eprice_exp_base": 1.114720060694354, - "eqty_exp_base": 1.6975759240105652, - "grid_span": 0.10560099667352332, - "initial_eprice_ema_dist": 0.0029991156478442567, - "initial_qty_pct": 0.010561002277241976, - "markup_range": 0.0030849742069951865, - "max_n_entry_orders": 7, - "min_markup": 0.006111449695768695, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/REEFUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/REEFUSDT.json deleted file mode 100644 index 8370ad74a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/REEFUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1319.5334467681841, - "auto_unstuck_ema_dist": -0.03962978897027502, - "auto_unstuck_qty_pct": 0.014304096053519982, - "auto_unstuck_wallet_exposure_threshold": 0.8060863175421003, - "backwards_tp": true, - "ema_span_0": 1310.3036036326434, - "ema_span_1": 1048.301378276395, - "enabled": true, - "eprice_exp_base": 1.2015984811282348, - "eqty_exp_base": 1.6270726549779497, - "grid_span": 0.25742975024377085, - "initial_eprice_ema_dist": -0.0020815060164468425, - "initial_qty_pct": 0.010219888813938467, - "markup_range": 0.011345722573192685, - "max_n_entry_orders": 9, - "min_markup": 0.009540359804499406, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.9569792006992, - "auto_unstuck_ema_dist": -0.018597537646096538, - "auto_unstuck_qty_pct": 0.055220276487529585, - "auto_unstuck_wallet_exposure_threshold": 0.19955577235205618, - "backwards_tp": true, - "ema_span_0": 1008.0914015796933, - "ema_span_1": 1083.336836507491, - "enabled": true, - "eprice_exp_base": 1.143424545343761, - "eqty_exp_base": 1.5799199348833062, - "grid_span": 0.17527323178873047, - "initial_eprice_ema_dist": -0.0058279511456999075, - "initial_qty_pct": 0.017128542485555447, - "markup_range": 0.010000873003413202, - "max_n_entry_orders": 10, - "min_markup": 0.005966950872680734, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RENUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RENUSDT.json deleted file mode 100644 index 708c8ad01..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RENUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1215.8674491480372, - "auto_unstuck_ema_dist": -0.0006139669812987997, - "auto_unstuck_qty_pct": 0.010590603991377324, - "auto_unstuck_wallet_exposure_threshold": 0.6099607562719934, - "backwards_tp": true, - "ema_span_0": 824.8894632930865, - "ema_span_1": 1053.8338125773316, - "enabled": true, - "eprice_exp_base": 1.2434732066066212, - "eqty_exp_base": 1.655098138343607, - "grid_span": 0.3355546536326009, - "initial_eprice_ema_dist": 0.000748779441651774, - "initial_qty_pct": 0.010246135371272787, - "markup_range": 0.007839754342224422, - "max_n_entry_orders": 7, - "min_markup": 0.004654051822706137, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1199.9080616387016, - "auto_unstuck_ema_dist": -0.03507509777516482, - "auto_unstuck_qty_pct": 0.022324389759606104, - "auto_unstuck_wallet_exposure_threshold": 0.29961807344140684, - "backwards_tp": true, - "ema_span_0": 1388.2391966489122, - "ema_span_1": 315.00390266705153, - "enabled": true, - "eprice_exp_base": 1.0171814612107146, - "eqty_exp_base": 1.1353243788110425, - "grid_span": 0.36985212169674553, - "initial_eprice_ema_dist": -0.0147381990475575, - "initial_qty_pct": 0.011715126451239505, - "markup_range": 0.020188909007844397, - "max_n_entry_orders": 14, - "min_markup": 0.009386114628477011, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RLCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RLCUSDT.json deleted file mode 100644 index ef5fdb41a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RLCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1359.865111746556, - "auto_unstuck_ema_dist": -0.024432363676496135, - "auto_unstuck_qty_pct": 0.03818398249066142, - "auto_unstuck_wallet_exposure_threshold": 0.38328172570622776, - "backwards_tp": true, - "ema_span_0": 1203.9786749852396, - "ema_span_1": 346.3897291875812, - "enabled": true, - "eprice_exp_base": 1.187237633146482, - "eqty_exp_base": 1.77607062388131, - "grid_span": 0.2627357334664271, - "initial_eprice_ema_dist": -0.00480409368475211, - "initial_qty_pct": 0.01393058762031163, - "markup_range": 0.006500765059064155, - "max_n_entry_orders": 8, - "min_markup": 0.009969209388037796, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1295.2692215160118, - "auto_unstuck_ema_dist": -0.051344408040020814, - "auto_unstuck_qty_pct": 0.012291889435639577, - "auto_unstuck_wallet_exposure_threshold": 0.21325152271974743, - "backwards_tp": true, - "ema_span_0": 203.82529602249483, - "ema_span_1": 336.15413796617264, - "enabled": true, - "eprice_exp_base": 1.2060065332372203, - "eqty_exp_base": 1.3818974114628182, - "grid_span": 0.3240929742509973, - "initial_eprice_ema_dist": 0.0022540385213522494, - "initial_qty_pct": 0.010046256601711908, - "markup_range": 0.010895039801416035, - "max_n_entry_orders": 10, - "min_markup": 0.0031595093254374964, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RNDRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RNDRUSDT.json deleted file mode 100644 index d04b26b18..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RNDRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ROSEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ROSEUSDT.json deleted file mode 100644 index bbf9fe2d2..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ROSEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1215.8674491480372, - "auto_unstuck_ema_dist": -0.0006139669812987997, - "auto_unstuck_qty_pct": 0.010590603991377324, - "auto_unstuck_wallet_exposure_threshold": 0.6099607562719934, - "backwards_tp": true, - "ema_span_0": 824.8894632930865, - "ema_span_1": 1053.8338125773316, - "enabled": true, - "eprice_exp_base": 1.2434732066066212, - "eqty_exp_base": 1.655098138343607, - "grid_span": 0.3355546536326009, - "initial_eprice_ema_dist": 0.000748779441651774, - "initial_qty_pct": 0.010246135371272787, - "markup_range": 0.007839754342224422, - "max_n_entry_orders": 7, - "min_markup": 0.004654051822706137, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.2186661925077, - "auto_unstuck_ema_dist": -0.0934750257166494, - "auto_unstuck_qty_pct": 0.03224513039791049, - "auto_unstuck_wallet_exposure_threshold": 0.15770154600814495, - "backwards_tp": true, - "ema_span_0": 1349.2901787249195, - "ema_span_1": 1070.06420992335, - "enabled": true, - "eprice_exp_base": 1.296171087672084, - "eqty_exp_base": 3.9822375184209213, - "grid_span": 0.10851564083207263, - "initial_eprice_ema_dist": 0.00044471489783528395, - "initial_qty_pct": 0.012984863540821682, - "markup_range": 0.003038702058401756, - "max_n_entry_orders": 7, - "min_markup": 0.0039073711030456265, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RSRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RSRUSDT.json deleted file mode 100644 index 2ee812f43..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RSRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1171.8660327078721, - "auto_unstuck_ema_dist": 0.0010404359098154367, - "auto_unstuck_qty_pct": 0.03744987471117407, - "auto_unstuck_wallet_exposure_threshold": 0.28900607896078573, - "backwards_tp": true, - "ema_span_0": 1439.9879454262705, - "ema_span_1": 1219.8504923696867, - "enabled": true, - "eprice_exp_base": 1.1366278697386527, - "eqty_exp_base": 3.776143260983698, - "grid_span": 0.14105408675979655, - "initial_eprice_ema_dist": -0.0035661931599020873, - "initial_qty_pct": 0.012631971453531747, - "markup_range": 0.010597028703543954, - "max_n_entry_orders": 9, - "min_markup": 0.003366953304513386, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RUNEUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RUNEUSDT.json deleted file mode 100644 index ca100d441..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RUNEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1265.7838754296538, - "auto_unstuck_ema_dist": -0.06471473431395526, - "auto_unstuck_qty_pct": 0.010464331949163241, - "auto_unstuck_wallet_exposure_threshold": 0.17464091478002294, - "backwards_tp": true, - "ema_span_0": 943.2448356148792, - "ema_span_1": 820.8819738892381, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.0087265176135896, - "grid_span": 0.1940170791808782, - "initial_eprice_ema_dist": -0.00015488096602346368, - "initial_qty_pct": 0.012758286055725376, - "markup_range": 0.010366993385046798, - "max_n_entry_orders": 10, - "min_markup": 0.0098001174850661, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.9585492362228, - "auto_unstuck_ema_dist": 0.0003589026186420672, - "auto_unstuck_qty_pct": 0.01065341279786918, - "auto_unstuck_wallet_exposure_threshold": 0.4485184935411343, - "backwards_tp": true, - "ema_span_0": 1404.741127860066, - "ema_span_1": 433.3044015504771, - "enabled": true, - "eprice_exp_base": 1.0494553587184254, - "eqty_exp_base": 2.776739073463017, - "grid_span": 0.23922085689837175, - "initial_eprice_ema_dist": 0.0021016467250918234, - "initial_qty_pct": 0.010724779268518572, - "markup_range": 0.003095913404981876, - "max_n_entry_orders": 7, - "min_markup": 0.008272653452198245, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RVNUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RVNUSDT.json deleted file mode 100644 index 1c32202d9..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/RVNUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 795.0419619583977, - "auto_unstuck_ema_dist": -0.012185073699571601, - "auto_unstuck_qty_pct": 0.07793865642594063, - "auto_unstuck_wallet_exposure_threshold": 0.47055444845513483, - "backwards_tp": true, - "ema_span_0": 1176.5013188268395, - "ema_span_1": 196.5069012418368, - "enabled": true, - "eprice_exp_base": 1.2378952091651447, - "eqty_exp_base": 2.69033856398592, - "grid_span": 0.13414227534151912, - "initial_eprice_ema_dist": 0.0016733799696385745, - "initial_qty_pct": 0.012069046921024227, - "markup_range": 0.007024380224601529, - "max_n_entry_orders": 10, - "min_markup": 0.008028859213314568, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.6195178448218, - "auto_unstuck_ema_dist": -0.05329308834922489, - "auto_unstuck_qty_pct": 0.01028687095982004, - "auto_unstuck_wallet_exposure_threshold": 0.1612968628983515, - "backwards_tp": true, - "ema_span_0": 1105.9794454104913, - "ema_span_1": 1178.7846977186944, - "enabled": true, - "eprice_exp_base": 1.446324711038944, - "eqty_exp_base": 1.2549518596080058, - "grid_span": 0.6741365849008261, - "initial_eprice_ema_dist": -0.002295370513127635, - "initial_qty_pct": 0.010251643347550453, - "markup_range": 0.0020838086317695377, - "max_n_entry_orders": 8, - "min_markup": 0.008795100719743768, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SANDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SANDUSDT.json deleted file mode 100644 index 27990900b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SANDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1264.832731300227, - "auto_unstuck_ema_dist": -0.08083792347406027, - "auto_unstuck_qty_pct": 0.012853547037121455, - "auto_unstuck_wallet_exposure_threshold": 0.5582109765618942, - "backwards_tp": true, - "ema_span_0": 541.567614510742, - "ema_span_1": 1078.5296328393224, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.0005819440698485, - "grid_span": 0.2711056474770498, - "initial_eprice_ema_dist": 0.002985660919622032, - "initial_qty_pct": 0.013813961403116136, - "markup_range": 0.0033777601558035272, - "max_n_entry_orders": 10, - "min_markup": 0.005815912498007505, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 603.1261327795357, - "auto_unstuck_ema_dist": -0.057317463828889366, - "auto_unstuck_qty_pct": 0.030776800618082897, - "auto_unstuck_wallet_exposure_threshold": 0.19047105659230218, - "backwards_tp": true, - "ema_span_0": 206.14370830995782, - "ema_span_1": 1293.9825053636023, - "enabled": true, - "eprice_exp_base": 1.1431363046283236, - "eqty_exp_base": 2.6972021556306, - "grid_span": 0.30806669890302874, - "initial_eprice_ema_dist": 0.0008569057795887365, - "initial_qty_pct": 0.01699016554809015, - "markup_range": 0.004984061516137819, - "max_n_entry_orders": 13, - "min_markup": 0.007671250609814428, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SCUSDT.json deleted file mode 100644 index d63c54b1a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 333.7677665929856, - "auto_unstuck_ema_dist": -0.034072364725076534, - "auto_unstuck_qty_pct": 0.014338966443840764, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1182.567880880961, - "ema_span_1": 1363.9291802341522, - "enabled": true, - "eprice_exp_base": 1.0952776938803748, - "eqty_exp_base": 1.2146749890020476, - "grid_span": 0.18468912919149277, - "initial_eprice_ema_dist": 0.0024429343458894867, - "initial_qty_pct": 0.011304033697976485, - "markup_range": 0.014904471381139853, - "max_n_entry_orders": 11, - "min_markup": 0.0021991312484550803, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SFPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SFPUSDT.json deleted file mode 100644 index c8457e46a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SFPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1180.4143008587052, - "auto_unstuck_ema_dist": -0.0072829188030556, - "auto_unstuck_qty_pct": 0.035388540685019704, - "auto_unstuck_wallet_exposure_threshold": 0.4827186386113767, - "backwards_tp": true, - "ema_span_0": 1351.7128061570616, - "ema_span_1": 1320.3575534468598, - "enabled": true, - "eprice_exp_base": 1.0971974421561008, - "eqty_exp_base": 1.2590542827807982, - "grid_span": 0.3746593691122134, - "initial_eprice_ema_dist": -0.004576176826046393, - "initial_qty_pct": 0.01399400518333405, - "markup_range": 0.009667579948755854, - "max_n_entry_orders": 9, - "min_markup": 0.002089181920334615, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 884.8447776570468, - "auto_unstuck_ema_dist": -0.07900209417896203, - "auto_unstuck_qty_pct": 0.06186831955773328, - "auto_unstuck_wallet_exposure_threshold": 0.508315606255378, - "backwards_tp": true, - "ema_span_0": 71.62350200600264, - "ema_span_1": 25.15174163865426, - "enabled": true, - "eprice_exp_base": 1.0142594569754666, - "eqty_exp_base": 3.649565085146125, - "grid_span": 0.13334919204060128, - "initial_eprice_ema_dist": -0.08488892931109529, - "initial_qty_pct": 0.010451719365528203, - "markup_range": 0.0032805974896529242, - "max_n_entry_orders": 9, - "min_markup": 0.0022761781494163853, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SKLUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SKLUSDT.json deleted file mode 100644 index 114a5d221..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SKLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1131.0015267851397, - "auto_unstuck_ema_dist": -0.01859596413323666, - "auto_unstuck_qty_pct": 0.02595210471203942, - "auto_unstuck_wallet_exposure_threshold": 0.2623799879648312, - "backwards_tp": true, - "ema_span_0": 899.0026815371901, - "ema_span_1": 1125.307982244615, - "enabled": true, - "eprice_exp_base": 1.0541779740942405, - "eqty_exp_base": 2.5720941056223525, - "grid_span": 0.174508531856097, - "initial_eprice_ema_dist": -0.0015518626326071123, - "initial_qty_pct": 0.011270553964198814, - "markup_range": 0.01243371291639932, - "max_n_entry_orders": 8, - "min_markup": 0.009263338040545684, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1404.8080506041126, - "auto_unstuck_ema_dist": 0.0024021651085153637, - "auto_unstuck_qty_pct": 0.0655475504893073, - "auto_unstuck_wallet_exposure_threshold": 0.6938169675657705, - "backwards_tp": true, - "ema_span_0": 621.114505794897, - "ema_span_1": 597.537488178896, - "enabled": true, - "eprice_exp_base": 1.0324705725421244, - "eqty_exp_base": 3.857195030482052, - "grid_span": 0.249506183259775, - "initial_eprice_ema_dist": 0.0029839591267611884, - "initial_qty_pct": 0.032495308699055, - "markup_range": 0.0007741565912191382, - "max_n_entry_orders": 9, - "min_markup": 0.007918943438885348, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SNXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SNXUSDT.json deleted file mode 100644 index ec60663f3..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SNXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1172.076881059696, - "auto_unstuck_ema_dist": -0.030649119106413502, - "auto_unstuck_qty_pct": 0.010476690975528039, - "auto_unstuck_wallet_exposure_threshold": 0.39786129304483797, - "backwards_tp": true, - "ema_span_0": 399.0713694743538, - "ema_span_1": 401.81939037800004, - "enabled": true, - "eprice_exp_base": 1.1193394360064075, - "eqty_exp_base": 1.3999177144726729, - "grid_span": 0.26333910388927434, - "initial_eprice_ema_dist": -0.008522957329779665, - "initial_qty_pct": 0.013039812107477552, - "markup_range": 0.008402166816178527, - "max_n_entry_orders": 7, - "min_markup": 0.004114684444119201, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 588.7421095814785, - "auto_unstuck_ema_dist": -0.025370088603363913, - "auto_unstuck_qty_pct": 0.02967467661795904, - "auto_unstuck_wallet_exposure_threshold": 0.1286684245685954, - "backwards_tp": true, - "ema_span_0": 16.492111569470666, - "ema_span_1": 1161.2555541952477, - "enabled": true, - "eprice_exp_base": 1.139474579381085, - "eqty_exp_base": 1.6709866630057106, - "grid_span": 0.4005802186055973, - "initial_eprice_ema_dist": 0.0009348669026815328, - "initial_qty_pct": 0.0138647650719264, - "markup_range": 0.011957096314795305, - "max_n_entry_orders": 8, - "min_markup": 0.00894632431408863, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SOLUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SOLUSDT.json deleted file mode 100644 index ce1c0b036..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SOLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 876.3654619128816, - "auto_unstuck_ema_dist": -0.040509714258552265, - "auto_unstuck_qty_pct": 0.07112239617753563, - "auto_unstuck_wallet_exposure_threshold": 0.45237549886773865, - "backwards_tp": true, - "ema_span_0": 1148.4614406861356, - "ema_span_1": 1341.529216066698, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.6141386932344757, - "grid_span": 0.10922007013232837, - "initial_eprice_ema_dist": -0.0019916528871238765, - "initial_qty_pct": 0.014712426127604265, - "markup_range": 0.0039634053692942355, - "max_n_entry_orders": 8, - "min_markup": 0.004904881511914777, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1418.6562462352065, - "auto_unstuck_ema_dist": -0.010470212167376786, - "auto_unstuck_qty_pct": 0.01415059629736314, - "auto_unstuck_wallet_exposure_threshold": 0.11782315379780525, - "backwards_tp": true, - "ema_span_0": 1164.6212365288327, - "ema_span_1": 105.65666924479203, - "enabled": true, - "eprice_exp_base": 1.0109543575180266, - "eqty_exp_base": 1.0364562994716724, - "grid_span": 0.14634275259638022, - "initial_eprice_ema_dist": 0.002998965557466333, - "initial_qty_pct": 0.014359937543700914, - "markup_range": 0.0004219128490180443, - "max_n_entry_orders": 7, - "min_markup": 0.0014767028993130347, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SPELLUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SPELLUSDT.json deleted file mode 100644 index 1214c53e9..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SPELLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 724.9952620857599, - "auto_unstuck_ema_dist": -0.009412852770201562, - "auto_unstuck_qty_pct": 0.013710698282969577, - "auto_unstuck_wallet_exposure_threshold": 0.19993580440002118, - "backwards_tp": true, - "ema_span_0": 1021.063058531578, - "ema_span_1": 1427.5059348230843, - "enabled": true, - "eprice_exp_base": 1.1709333618683002, - "eqty_exp_base": 1.2727312289052846, - "grid_span": 0.16615323718905609, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01819571321711823, - "markup_range": 0.004992543479838617, - "max_n_entry_orders": 7, - "min_markup": 0.0038858885051931296, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SRMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SRMUSDT.json deleted file mode 100644 index b77d8afef..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SRMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.9447745660573, - "auto_unstuck_ema_dist": -0.014614502702101335, - "auto_unstuck_qty_pct": 0.01661511462751747, - "auto_unstuck_wallet_exposure_threshold": 0.4367564656424801, - "backwards_tp": true, - "ema_span_0": 1377.1724191049236, - "ema_span_1": 904.7743747036709, - "enabled": true, - "eprice_exp_base": 1.2844196746243386, - "eqty_exp_base": 1.6525884050686455, - "grid_span": 0.4425860447472405, - "initial_eprice_ema_dist": 0.0009022720849045805, - "initial_qty_pct": 0.010001758155469056, - "markup_range": 0.008902967231539416, - "max_n_entry_orders": 9, - "min_markup": 0.0074502696582370315, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SSVUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SSVUSDT.json deleted file mode 100644 index 97f800cb2..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SSVUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 740.0184218517647, - "auto_unstuck_ema_dist": 0.0029766917451857977, - "auto_unstuck_qty_pct": 0.010123668349159533, - "auto_unstuck_wallet_exposure_threshold": 0.1527279931044989, - "backwards_tp": true, - "ema_span_0": 1268.5006641467548, - "ema_span_1": 1356.3795616152556, - "enabled": true, - "eprice_exp_base": 1.0892634932428413, - "eqty_exp_base": 1.6837745481665294, - "grid_span": 0.26160902452411716, - "initial_eprice_ema_dist": -0.006515467825257201, - "initial_qty_pct": 0.01723314692378033, - "markup_range": 0.005048302095099893, - "max_n_entry_orders": 10, - "min_markup": 0.00851579864663394, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STGUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STGUSDT.json deleted file mode 100644 index 77b835059..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.307031833748, - "auto_unstuck_ema_dist": -0.012435443488528533, - "auto_unstuck_qty_pct": 0.012511551338462903, - "auto_unstuck_wallet_exposure_threshold": 0.6200303452867397, - "backwards_tp": true, - "ema_span_0": 1223.7491034942766, - "ema_span_1": 1185.0332221577303, - "enabled": true, - "eprice_exp_base": 1.0033366336805396, - "eqty_exp_base": 3.291597029505056, - "grid_span": 0.14745071175982866, - "initial_eprice_ema_dist": 0.002837042259130256, - "initial_qty_pct": 0.010025837313728908, - "markup_range": 0.002507629438487384, - "max_n_entry_orders": 19, - "min_markup": 0.008565624894416276, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.4411702489633, - "auto_unstuck_ema_dist": -0.004617109849520608, - "auto_unstuck_qty_pct": 0.01648366731345862, - "auto_unstuck_wallet_exposure_threshold": 0.7094846767314997, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1438.151047326744, - "enabled": true, - "eprice_exp_base": 1.2439694930330072, - "eqty_exp_base": 1.231452107109689, - "grid_span": 0.4365969496517578, - "initial_eprice_ema_dist": -0.0019017444320947494, - "initial_qty_pct": 0.01, - "markup_range": 0.003842107206680762, - "max_n_entry_orders": 9, - "min_markup": 0.001638247139852082, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STMXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STMXUSDT.json deleted file mode 100644 index 21f4b6093..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STMXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.6873097451435, - "auto_unstuck_ema_dist": -0.008960377763974401, - "auto_unstuck_qty_pct": 0.018710940226582512, - "auto_unstuck_wallet_exposure_threshold": 0.18971281109312993, - "backwards_tp": true, - "ema_span_0": 60.03772161351416, - "ema_span_1": 1190.4675258476373, - "enabled": true, - "eprice_exp_base": 1.2008545071500585, - "eqty_exp_base": 2.0366095527917594, - "grid_span": 0.2406939573172345, - "initial_eprice_ema_dist": 0.002815561363705389, - "initial_qty_pct": 0.012504443843115734, - "markup_range": 0.004268329742834503, - "max_n_entry_orders": 9, - "min_markup": 0.009816126119305007, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 662.0328807482778, - "auto_unstuck_ema_dist": -0.03388835151083124, - "auto_unstuck_qty_pct": 0.02677403800493677, - "auto_unstuck_wallet_exposure_threshold": 0.4475004713668104, - "backwards_tp": true, - "ema_span_0": 1270.7261560421712, - "ema_span_1": 1161.190969744062, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3913394067679532, - "grid_span": 0.2612877525914638, - "initial_eprice_ema_dist": 0.0016097517798800234, - "initial_qty_pct": 0.011654600089727057, - "markup_range": 0.01808686260285191, - "max_n_entry_orders": 9, - "min_markup": 0.005755808458607143, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STORJUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STORJUSDT.json deleted file mode 100644 index e53765877..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STORJUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.8286138645863, - "auto_unstuck_ema_dist": -0.03167917107753195, - "auto_unstuck_qty_pct": 0.010031098663233208, - "auto_unstuck_wallet_exposure_threshold": 0.4355973655881478, - "backwards_tp": true, - "ema_span_0": 295.5056321285007, - "ema_span_1": 1298.5688726391509, - "enabled": true, - "eprice_exp_base": 1.0000045340969284, - "eqty_exp_base": 1.0000283574401247, - "grid_span": 0.3435530056156494, - "initial_eprice_ema_dist": -0.007940117997979262, - "initial_qty_pct": 0.011227407190278635, - "markup_range": 0.0028450303486692715, - "max_n_entry_orders": 13, - "min_markup": 0.0038002017811459947, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 724.141259930333, - "auto_unstuck_ema_dist": -0.011247593359025991, - "auto_unstuck_qty_pct": 0.042123033832560566, - "auto_unstuck_wallet_exposure_threshold": 0.21470106417199034, - "backwards_tp": true, - "ema_span_0": 505.51653264246767, - "ema_span_1": 1367.4519418730144, - "enabled": true, - "eprice_exp_base": 1.3568936087695085, - "eqty_exp_base": 1.6486698350314177, - "grid_span": 0.5859566932371087, - "initial_eprice_ema_dist": 0.0017689793678773778, - "initial_qty_pct": 0.01, - "markup_range": 0.0030694029895302287, - "max_n_entry_orders": 11, - "min_markup": 0.00903584822619388, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STXUSDT.json deleted file mode 100644 index c4399e110..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/STXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1164.367105207233, - "auto_unstuck_ema_dist": 0.0022907218188258, - "auto_unstuck_qty_pct": 0.027460747214832215, - "auto_unstuck_wallet_exposure_threshold": 0.23691563946940694, - "backwards_tp": true, - "ema_span_0": 281.6410886581773, - "ema_span_1": 470.2248647508127, - "enabled": true, - "eprice_exp_base": 1.052812334609832, - "eqty_exp_base": 1.8618712239404998, - "grid_span": 0.14701900906761717, - "initial_eprice_ema_dist": 0.0017507444397568501, - "initial_qty_pct": 0.011083307892104348, - "markup_range": 0.00605671350196698, - "max_n_entry_orders": 8, - "min_markup": 0.008461394426644139, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1030.4646278611497, - "auto_unstuck_ema_dist": -0.019927372271882522, - "auto_unstuck_qty_pct": 0.016327172952138265, - "auto_unstuck_wallet_exposure_threshold": 0.10281409354664052, - "backwards_tp": true, - "ema_span_0": 1034.1085517786862, - "ema_span_1": 1268.6189003888871, - "enabled": true, - "eprice_exp_base": 1.17573627705497, - "eqty_exp_base": 2.1192151145887594, - "grid_span": 0.32299262066988577, - "initial_eprice_ema_dist": 3.6622486782147735e-05, - "initial_qty_pct": 0.010224569860575988, - "markup_range": 0.00669895354684023, - "max_n_entry_orders": 9, - "min_markup": 0.009672679795175559, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SUIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SUIUSDT.json deleted file mode 100644 index b665a6d0f..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SUIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1206.9360034658287, - "auto_unstuck_ema_dist": -0.08430861975643979, - "auto_unstuck_qty_pct": 0.023091958916313302, - "auto_unstuck_wallet_exposure_threshold": 0.2979783673556894, - "backwards_tp": true, - "ema_span_0": 637.1821707054264, - "ema_span_1": 419.351732678293, - "enabled": true, - "eprice_exp_base": 1.0653488300058507, - "eqty_exp_base": 1.951303976809032, - "grid_span": 0.14174977928413496, - "initial_eprice_ema_dist": -0.05978992335927225, - "initial_qty_pct": 0.01002139977666724, - "markup_range": 0.006223742839777372, - "max_n_entry_orders": 10, - "min_markup": 0.0025100563675091283, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1021.5072719725573, - "ema_span_1": 1096.9590731906615, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.069852463936631, - "grid_span": 0.2115052283616764, - "initial_eprice_ema_dist": -0.020538009352712695, - "initial_qty_pct": 0.03148989214039618, - "markup_range": 0.019311101253377226, - "max_n_entry_orders": 7, - "min_markup": 0.008213328044494116, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SUSHIUSDT.json deleted file mode 100644 index 492acf0d0..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SUSHIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.4254065822352, - "auto_unstuck_ema_dist": -0.029627972916044323, - "auto_unstuck_qty_pct": 0.010149460102845714, - "auto_unstuck_wallet_exposure_threshold": 0.49261238267423857, - "backwards_tp": true, - "ema_span_0": 1172.7828815354887, - "ema_span_1": 1306.9040552780662, - "enabled": true, - "eprice_exp_base": 1.002455041325814, - "eqty_exp_base": 1.996555354220001, - "grid_span": 0.12616534691015155, - "initial_eprice_ema_dist": -0.06382614152119226, - "initial_qty_pct": 0.010031129570869544, - "markup_range": 0.0029718165961309345, - "max_n_entry_orders": 10, - "min_markup": 0.002658068109447345, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1049.0922671577769, - "auto_unstuck_ema_dist": -0.03257477098789277, - "auto_unstuck_qty_pct": 0.04014405192929402, - "auto_unstuck_wallet_exposure_threshold": 0.1604101562159976, - "backwards_tp": true, - "ema_span_0": 263.80359871772464, - "ema_span_1": 1433.1591008592359, - "enabled": true, - "eprice_exp_base": 1.0680487724471739, - "eqty_exp_base": 2.242312492554522, - "grid_span": 0.15222346409125245, - "initial_eprice_ema_dist": -0.017033955310563453, - "initial_qty_pct": 0.015212036373271355, - "markup_range": 0.010060677835710834, - "max_n_entry_orders": 7, - "min_markup": 0.0012649708097019741, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SXPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SXPUSDT.json deleted file mode 100644 index 669aa1f2c..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/SXPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1192.7243746175718, - "auto_unstuck_ema_dist": -0.07262059299258809, - "auto_unstuck_qty_pct": 0.010596595093316962, - "auto_unstuck_wallet_exposure_threshold": 0.6548607649693498, - "backwards_tp": true, - "ema_span_0": 717.6055816404652, - "ema_span_1": 656.2221527950707, - "enabled": true, - "eprice_exp_base": 1.1878378941486958, - "eqty_exp_base": 1.0000642436906961, - "grid_span": 0.4074859147286703, - "initial_eprice_ema_dist": 0.0029993394248965842, - "initial_qty_pct": 0.010409935564324934, - "markup_range": 0.0064068879091546665, - "max_n_entry_orders": 7, - "min_markup": 0.004572919657386478, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1363.1256062159623, - "auto_unstuck_ema_dist": -0.0062457110276821284, - "auto_unstuck_qty_pct": 0.022309067051932994, - "auto_unstuck_wallet_exposure_threshold": 0.7915770920029535, - "backwards_tp": true, - "ema_span_0": 163.98869270457698, - "ema_span_1": 555.5142559278546, - "enabled": true, - "eprice_exp_base": 1.1211887337116984, - "eqty_exp_base": 3.612510369922904, - "grid_span": 0.15402442098786912, - "initial_eprice_ema_dist": 0.0025458854211192167, - "initial_qty_pct": 0.01, - "markup_range": 0.0014841702678626398, - "max_n_entry_orders": 19, - "min_markup": 0.003510232273971882, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/THETAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/THETAUSDT.json deleted file mode 100644 index a9b0cd340..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/THETAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1158.9224472495498, - "auto_unstuck_ema_dist": -0.013233990245451228, - "auto_unstuck_qty_pct": 0.02179034666382995, - "auto_unstuck_wallet_exposure_threshold": 0.5756052275534863, - "backwards_tp": true, - "ema_span_0": 945.5398898833615, - "ema_span_1": 425.2121143624482, - "enabled": true, - "eprice_exp_base": 1.1173259258426886, - "eqty_exp_base": 1.4668930527840705, - "grid_span": 0.1997149240009991, - "initial_eprice_ema_dist": 0.0003609734427470928, - "initial_qty_pct": 0.012953554006660034, - "markup_range": 0.0005896797771401274, - "max_n_entry_orders": 8, - "min_markup": 0.007293801249275061, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TLMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TLMUSDT.json deleted file mode 100644 index b3a853552..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TLMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.3699947528382, - "auto_unstuck_ema_dist": -0.07044616473225777, - "auto_unstuck_qty_pct": 0.014138674595555215, - "auto_unstuck_wallet_exposure_threshold": 0.3582822546886966, - "backwards_tp": true, - "ema_span_0": 1357.8879697613952, - "ema_span_1": 1208.1677908379454, - "enabled": true, - "eprice_exp_base": 1.0292116781885243, - "eqty_exp_base": 1.0457803499101623, - "grid_span": 0.21224632585700248, - "initial_eprice_ema_dist": 0.002977611590072709, - "initial_qty_pct": 0.011868191457964613, - "markup_range": 0.005979515810240324, - "max_n_entry_orders": 7, - "min_markup": 0.009737673233377476, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TOMOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TOMOUSDT.json deleted file mode 100644 index f522a352e..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TOMOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1154.1234213866198, - "auto_unstuck_ema_dist": -0.09890884061065909, - "auto_unstuck_qty_pct": 0.018277489664642724, - "auto_unstuck_wallet_exposure_threshold": 0.6500138558074183, - "backwards_tp": true, - "ema_span_0": 13.535331207723727, - "ema_span_1": 112.52103206000228, - "enabled": true, - "eprice_exp_base": 1.0208462694847291, - "eqty_exp_base": 1.6589580057392717, - "grid_span": 0.22744709686663722, - "initial_eprice_ema_dist": -0.09418562138219089, - "initial_qty_pct": 0.010583088683055748, - "markup_range": 0.0012264937554110399, - "max_n_entry_orders": 10, - "min_markup": 0.0047886653841788, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.7769362760766, - "auto_unstuck_ema_dist": -0.02647169848132419, - "auto_unstuck_qty_pct": 0.04280351838613228, - "auto_unstuck_wallet_exposure_threshold": 0.6604276928720831, - "backwards_tp": true, - "ema_span_0": 138.87724341096947, - "ema_span_1": 1293.4642744360017, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.937037445042302, - "grid_span": 0.2513283005289732, - "initial_eprice_ema_dist": -0.0031264711361729497, - "initial_qty_pct": 0.010710800807726132, - "markup_range": 0.00664010498276407, - "max_n_entry_orders": 22, - "min_markup": 0.009135529138888768, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRBUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRBUSDT.json deleted file mode 100644 index 8b5471449..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1330.6876153407488, - "auto_unstuck_ema_dist": -0.01633708480899889, - "auto_unstuck_qty_pct": 0.08154322045616419, - "auto_unstuck_wallet_exposure_threshold": 0.44262599020726673, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1.4157595779917975, - "eqty_exp_base": 1.2593813182684066, - "grid_span": 0.5635023983932289, - "initial_eprice_ema_dist": -6.852170606786584e-05, - "initial_qty_pct": 0.01019571347307408, - "markup_range": 0.0058789932450676674, - "max_n_entry_orders": 9, - "min_markup": 0.003996332585736536, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRUUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRUUSDT.json deleted file mode 100644 index 2fa85335a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRUUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1418.009241043872, - "auto_unstuck_ema_dist": -0.004993538135800457, - "auto_unstuck_qty_pct": 0.01009656907607459, - "auto_unstuck_wallet_exposure_threshold": 0.569275149511458, - "backwards_tp": true, - "ema_span_0": 485.71648821946144, - "ema_span_1": 744.8665892294066, - "enabled": true, - "eprice_exp_base": 1.0000031993709957, - "eqty_exp_base": 1.1698898337941797, - "grid_span": 0.303493725776266, - "initial_eprice_ema_dist": -0.001774131470705545, - "initial_qty_pct": 0.010133152572590261, - "markup_range": 0.008566322536539817, - "max_n_entry_orders": 15, - "min_markup": 0.005003643386410385, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1021.5072719725573, - "ema_span_1": 1096.9590731906615, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.069852463936631, - "grid_span": 0.2115052283616764, - "initial_eprice_ema_dist": -0.020538009352712695, - "initial_qty_pct": 0.03148989214039618, - "markup_range": 0.019311101253377226, - "max_n_entry_orders": 7, - "min_markup": 0.008213328044494116, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRXUSDT.json deleted file mode 100644 index 90ab201b8..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TRXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1317.833530108166, - "auto_unstuck_ema_dist": 0.0022253383604573726, - "auto_unstuck_qty_pct": 0.022864698347810117, - "auto_unstuck_wallet_exposure_threshold": 0.44791952710155053, - "backwards_tp": true, - "ema_span_0": 613.4352069848085, - "ema_span_1": 7.135352966522534, - "enabled": true, - "eprice_exp_base": 1.096660309408078, - "eqty_exp_base": 1.0177297882573575, - "grid_span": 0.3215981331692564, - "initial_eprice_ema_dist": 0.0029991325622652698, - "initial_qty_pct": 0.01718150714828029, - "markup_range": 0.002693698828219243, - "max_n_entry_orders": 10, - "min_markup": 0.0044000032450212095, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1163.7692318321024, - "auto_unstuck_ema_dist": -0.03506228644656895, - "auto_unstuck_qty_pct": 0.046311162223676296, - "auto_unstuck_wallet_exposure_threshold": 0.20393044771326868, - "backwards_tp": true, - "ema_span_0": 794.85241064797, - "ema_span_1": 1432.8563083110164, - "enabled": true, - "eprice_exp_base": 1.0391376646346402, - "eqty_exp_base": 1, - "grid_span": 0.3695961232156646, - "initial_eprice_ema_dist": 0.0002074751794565316, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 20, - "min_markup": 0.001, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TUSDT.json deleted file mode 100644 index 34801943a..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/TUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.7794886183383, - "auto_unstuck_ema_dist": -0.005581941244785879, - "auto_unstuck_qty_pct": 0.010170091330110483, - "auto_unstuck_wallet_exposure_threshold": 0.3806590313382323, - "backwards_tp": true, - "ema_span_0": 956.2302813651238, - "ema_span_1": 1265.2351101148524, - "enabled": true, - "eprice_exp_base": 1.051767207536531, - "eqty_exp_base": 1.7035756385736616, - "grid_span": 0.17037951780238555, - "initial_eprice_ema_dist": -0.003123429996222736, - "initial_qty_pct": 0.012441166898920027, - "markup_range": 0.0008494533549618005, - "max_n_entry_orders": 7, - "min_markup": 0.009134769067758976, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UMAUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UMAUSDT.json deleted file mode 100644 index f9c2edd6e..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UMAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 432.3714737296346, - "auto_unstuck_ema_dist": -0.010973641330839945, - "auto_unstuck_qty_pct": 0.046875994728552084, - "auto_unstuck_wallet_exposure_threshold": 0.1090054529547557, - "backwards_tp": true, - "ema_span_0": 382.0197772166958, - "ema_span_1": 208.60803891638918, - "enabled": true, - "eprice_exp_base": 1.1985954200794395, - "eqty_exp_base": 1.559468109720761, - "grid_span": 0.15764067634889126, - "initial_eprice_ema_dist": -0.034290037972096454, - "initial_qty_pct": 0.011696276461254086, - "markup_range": 0.004060581216423169, - "max_n_entry_orders": 9, - "min_markup": 0.003230267489048043, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UNFIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UNFIUSDT.json deleted file mode 100644 index 53206ac22..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UNFIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 812.1405300432821, - "auto_unstuck_ema_dist": -0.07316289199411792, - "auto_unstuck_qty_pct": 0.01351695688979675, - "auto_unstuck_wallet_exposure_threshold": 0.6839145754479681, - "backwards_tp": true, - "ema_span_0": 287.44273241602025, - "ema_span_1": 372.5358604554202, - "enabled": true, - "eprice_exp_base": 1.1092755889643573, - "eqty_exp_base": 1.689255839667313, - "grid_span": 0.2786094660494714, - "initial_eprice_ema_dist": -0.03593013325795827, - "initial_qty_pct": 0.013742862620661567, - "markup_range": 0.004518112930359438, - "max_n_entry_orders": 10, - "min_markup": 0.008188346756994458, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 574.1522734089299, - "auto_unstuck_ema_dist": -0.036297892152263096, - "auto_unstuck_qty_pct": 0.029704324331273922, - "auto_unstuck_wallet_exposure_threshold": 0.5521570942462279, - "backwards_tp": true, - "ema_span_0": 1316.278054721469, - "ema_span_1": 1343.6067142714628, - "enabled": true, - "eprice_exp_base": 1.0668769989643625, - "eqty_exp_base": 3.618822283278979, - "grid_span": 0.24471720326727442, - "initial_eprice_ema_dist": -0.020904449505339234, - "initial_qty_pct": 0.020692004944460343, - "markup_range": 0.04379121601984923, - "max_n_entry_orders": 13, - "min_markup": 0.00790857090612433, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UNIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UNIUSDT.json deleted file mode 100644 index c3714275b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/UNIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 678.8326372499528, - "auto_unstuck_ema_dist": -0.013869686049700933, - "auto_unstuck_qty_pct": 0.07926303810819564, - "auto_unstuck_wallet_exposure_threshold": 0.21801406607677348, - "backwards_tp": true, - "ema_span_0": 1351.7301810365768, - "ema_span_1": 1402.3226818336648, - "enabled": true, - "eprice_exp_base": 1.0473439664283335, - "eqty_exp_base": 2.540264306756613, - "grid_span": 0.14961277443779714, - "initial_eprice_ema_dist": 0.0015202791631221235, - "initial_qty_pct": 0.012036139742881627, - "markup_range": 0.005789921617306945, - "max_n_entry_orders": 8, - "min_markup": 0.009206686868343621, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1197.0084432470494, - "auto_unstuck_ema_dist": -0.01977702103604026, - "auto_unstuck_qty_pct": 0.02213996812425767, - "auto_unstuck_wallet_exposure_threshold": 0.4117735089414276, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1166.7984565468903, - "enabled": true, - "eprice_exp_base": 1.0355349511711107, - "eqty_exp_base": 3.2494571228404556, - "grid_span": 0.14464679065612565, - "initial_eprice_ema_dist": -0.0006171833028433106, - "initial_qty_pct": 0.011144270788398733, - "markup_range": 0.009702953567933012, - "max_n_entry_orders": 8, - "min_markup": 0.00572257576984019, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/USDCUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/USDCUSDT.json deleted file mode 100644 index 6ed18acca..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/USDCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 405.24146898117715, - "auto_unstuck_ema_dist": -0.03885698302425642, - "auto_unstuck_qty_pct": 0.03476111629371799, - "auto_unstuck_wallet_exposure_threshold": 0.8526861756891532, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 131.29014773750748, - "enabled": true, - "eprice_exp_base": 1.367806009208528, - "eqty_exp_base": 2.7218335748962565, - "grid_span": 0.1478827475632273, - "initial_eprice_ema_dist": -0.07911455948944206, - "initial_qty_pct": 0.034924917518855236, - "markup_range": 0.04165581518122997, - "max_n_entry_orders": 12, - "min_markup": 0.001, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 930.2434764891894, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.06035040116241251, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 671.0177112498625, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.3717625649798975, - "eqty_exp_base": 3.344488665295607, - "grid_span": 0.12479961039908576, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.05, - "markup_range": 0.0026779029034888196, - "max_n_entry_orders": 10, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/VETUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/VETUSDT.json deleted file mode 100644 index f332b75f3..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/VETUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1232.8988841979901, - "auto_unstuck_ema_dist": -0.016748364003455786, - "auto_unstuck_qty_pct": 0.011155559136564472, - "auto_unstuck_wallet_exposure_threshold": 0.680732371421344, - "backwards_tp": true, - "ema_span_0": 748.4978236668502, - "ema_span_1": 524.1979616418802, - "enabled": true, - "eprice_exp_base": 1.0000088753984597, - "eqty_exp_base": 2.1280622372741735, - "grid_span": 0.17889505470021103, - "initial_eprice_ema_dist": 0.0029999672120743057, - "initial_qty_pct": 0.01591926851963001, - "markup_range": 0.0014520739419980643, - "max_n_entry_orders": 9, - "min_markup": 0.0028487964278350653, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 844.6735140222436, - "auto_unstuck_ema_dist": -0.050682365536735524, - "auto_unstuck_qty_pct": 0.011256864773887237, - "auto_unstuck_wallet_exposure_threshold": 0.5631969606218243, - "backwards_tp": true, - "ema_span_0": 474.0006872263979, - "ema_span_1": 525.6845101410929, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9829112789352865, - "grid_span": 0.1470607905358417, - "initial_eprice_ema_dist": -0.0006675440366171993, - "initial_qty_pct": 0.018429023287435033, - "markup_range": 0.0017750102541910708, - "max_n_entry_orders": 22, - "min_markup": 0.0018067754350627292, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WAVESUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WAVESUSDT.json deleted file mode 100644 index b523ed955..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WAVESUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1196.2251260134847, - "auto_unstuck_ema_dist": -0.02233595261660813, - "auto_unstuck_qty_pct": 0.010203513346407093, - "auto_unstuck_wallet_exposure_threshold": 0.6033438116771447, - "backwards_tp": true, - "ema_span_0": 43.15021004348335, - "ema_span_1": 165.4137955730145, - "enabled": true, - "eprice_exp_base": 1.000017606485477, - "eqty_exp_base": 1.9076799393723978, - "grid_span": 0.10018369782933174, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013573373371142968, - "markup_range": 9.279685691963764e-05, - "max_n_entry_orders": 8, - "min_markup": 0.005365995149080274, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1197.1887042498545, - "auto_unstuck_ema_dist": -0.00622851304293964, - "auto_unstuck_qty_pct": 0.012245719963185313, - "auto_unstuck_wallet_exposure_threshold": 0.815090431482032, - "backwards_tp": true, - "ema_span_0": 536.4895670469635, - "ema_span_1": 1109.4635283135494, - "enabled": true, - "eprice_exp_base": 1.2886711680672585, - "eqty_exp_base": 3.9915672532287307, - "grid_span": 0.6225645604437261, - "initial_eprice_ema_dist": -0.032459960755709345, - "initial_qty_pct": 0.010005307705275858, - "markup_range": 0.013859015965524376, - "max_n_entry_orders": 7, - "min_markup": 0.005227390267095897, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WLDUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WLDUSDT.json deleted file mode 100644 index b7ca3be57..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WLDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 637.4334725193053, - "auto_unstuck_ema_dist": 0.0029206150728870797, - "auto_unstuck_qty_pct": 0.04471387746939395, - "auto_unstuck_wallet_exposure_threshold": 0.368480685246695, - "backwards_tp": true, - "ema_span_0": 331.25759167079394, - "ema_span_1": 225.46879900833596, - "enabled": true, - "eprice_exp_base": 1.0611887524199195, - "eqty_exp_base": 1.1659600867893172, - "grid_span": 0.15568157472849578, - "initial_eprice_ema_dist": -0.07767221057817625, - "initial_qty_pct": 0.01, - "markup_range": 0.003646386009442566, - "max_n_entry_orders": 9, - "min_markup": 0.0024609264687381915, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WOOUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WOOUSDT.json deleted file mode 100644 index a0d9990e6..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/WOOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.8286138645863, - "auto_unstuck_ema_dist": -0.03167917107753195, - "auto_unstuck_qty_pct": 0.010031098663233208, - "auto_unstuck_wallet_exposure_threshold": 0.4355973655881478, - "backwards_tp": true, - "ema_span_0": 295.5056321285007, - "ema_span_1": 1298.5688726391509, - "enabled": true, - "eprice_exp_base": 1.0000045340969284, - "eqty_exp_base": 1.0000283574401247, - "grid_span": 0.3435530056156494, - "initial_eprice_ema_dist": -0.007940117997979262, - "initial_qty_pct": 0.011227407190278635, - "markup_range": 0.0028450303486692715, - "max_n_entry_orders": 13, - "min_markup": 0.0038002017811459947, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 678.162975373363, - "auto_unstuck_ema_dist": -0.04953831021073149, - "auto_unstuck_qty_pct": 0.021075774309723447, - "auto_unstuck_wallet_exposure_threshold": 0.3824837309941427, - "backwards_tp": true, - "ema_span_0": 1135.8915209008524, - "ema_span_1": 647.4759274692988, - "enabled": true, - "eprice_exp_base": 1.2640396733745156, - "eqty_exp_base": 1.4213196987563914, - "grid_span": 0.4049268199885872, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012557802861449786, - "markup_range": 0.005928020922128725, - "max_n_entry_orders": 9, - "min_markup": 0.007055199966333963, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XEMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XEMUSDT.json deleted file mode 100644 index a92fa3454..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XEMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.1006028740028, - "auto_unstuck_ema_dist": -0.03790953875163592, - "auto_unstuck_qty_pct": 0.021887820956178604, - "auto_unstuck_wallet_exposure_threshold": 0.17901363219758956, - "backwards_tp": true, - "ema_span_0": 1417.9508858907911, - "ema_span_1": 1253.7990369983238, - "enabled": true, - "eprice_exp_base": 1.258979057552427, - "eqty_exp_base": 1.9096623443214118, - "grid_span": 0.3812166447487835, - "initial_eprice_ema_dist": -0.0006890461314798554, - "initial_qty_pct": 0.012416096812518072, - "markup_range": 0.0035113261782222663, - "max_n_entry_orders": 8, - "min_markup": 0.008096346928210154, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XLMUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XLMUSDT.json deleted file mode 100644 index e635d7ca1..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XLMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.31238137175, - "auto_unstuck_ema_dist": -0.015119024911923571, - "auto_unstuck_qty_pct": 0.08039112000641081, - "auto_unstuck_wallet_exposure_threshold": 0.5758136613539955, - "backwards_tp": true, - "ema_span_0": 375.78327414326486, - "ema_span_1": 193.60052305861757, - "enabled": true, - "eprice_exp_base": 1.214587112175182, - "eqty_exp_base": 1.3985953899599415, - "grid_span": 0.1921348326406074, - "initial_eprice_ema_dist": 0.0026409555733552356, - "initial_qty_pct": 0.011831419575377413, - "markup_range": 0.005971093436837054, - "max_n_entry_orders": 7, - "min_markup": 0.0030271572687066363, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.9447745660573, - "auto_unstuck_ema_dist": -0.014614502702101335, - "auto_unstuck_qty_pct": 0.01661511462751747, - "auto_unstuck_wallet_exposure_threshold": 0.4367564656424801, - "backwards_tp": true, - "ema_span_0": 1377.1724191049236, - "ema_span_1": 904.7743747036709, - "enabled": true, - "eprice_exp_base": 1.2844196746243386, - "eqty_exp_base": 1.6525884050686455, - "grid_span": 0.4425860447472405, - "initial_eprice_ema_dist": 0.0009022720849045805, - "initial_qty_pct": 0.010001758155469056, - "markup_range": 0.008902967231539416, - "max_n_entry_orders": 9, - "min_markup": 0.0074502696582370315, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XMRUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XMRUSDT.json deleted file mode 100644 index aa7724272..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XMRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 598.2677947514356, - "auto_unstuck_ema_dist": -0.04609893110399657, - "auto_unstuck_qty_pct": 0.010123567719253442, - "auto_unstuck_wallet_exposure_threshold": 0.1024154079615063, - "backwards_tp": true, - "ema_span_0": 402.55872805583687, - "ema_span_1": 416.43411767122376, - "enabled": true, - "eprice_exp_base": 1.1161528887519947, - "eqty_exp_base": 1.5905756340469075, - "grid_span": 0.18153523109118677, - "initial_eprice_ema_dist": -0.016680959698188717, - "initial_qty_pct": 0.015209747553002216, - "markup_range": 0.004610308754286902, - "max_n_entry_orders": 13, - "min_markup": 0.001645743561515607, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1410.940593670589, - "auto_unstuck_ema_dist": -0.07281608439778194, - "auto_unstuck_qty_pct": 0.023258970877219003, - "auto_unstuck_wallet_exposure_threshold": 0.1367812697667717, - "backwards_tp": true, - "ema_span_0": 1231.4464720480123, - "ema_span_1": 1313.1322586860886, - "enabled": true, - "eprice_exp_base": 1.2035171545378207, - "eqty_exp_base": 3.153807577849342, - "grid_span": 0.10938390474490967, - "initial_eprice_ema_dist": -0.0004210038383766818, - "initial_qty_pct": 0.015536851964612568, - "markup_range": 0.0020031224138641677, - "max_n_entry_orders": 10, - "min_markup": 0.006649259780135027, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XRPUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XRPUSDT.json deleted file mode 100644 index 9f4378160..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XRPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 432.3714737296346, - "auto_unstuck_ema_dist": -0.010973641330839945, - "auto_unstuck_qty_pct": 0.046875994728552084, - "auto_unstuck_wallet_exposure_threshold": 0.1090054529547557, - "backwards_tp": true, - "ema_span_0": 382.0197772166958, - "ema_span_1": 208.60803891638918, - "enabled": true, - "eprice_exp_base": 1.1985954200794395, - "eqty_exp_base": 1.559468109720761, - "grid_span": 0.15764067634889126, - "initial_eprice_ema_dist": -0.034290037972096454, - "initial_qty_pct": 0.011696276461254086, - "markup_range": 0.004060581216423169, - "max_n_entry_orders": 9, - "min_markup": 0.003230267489048043, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 321.5906863260928, - "auto_unstuck_ema_dist": -0.08835859747943298, - "auto_unstuck_qty_pct": 0.09149746804898364, - "auto_unstuck_wallet_exposure_threshold": 0.3473457410646616, - "backwards_tp": true, - "ema_span_0": 1131.0468497140118, - "ema_span_1": 1402.1140584434766, - "enabled": true, - "eprice_exp_base": 1.1639507304281498, - "eqty_exp_base": 1.1252912825043264, - "grid_span": 0.5622968308155437, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014068338273811336, - "markup_range": 0.0027933373009862436, - "max_n_entry_orders": 9, - "min_markup": 0.005669362964977332, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XTZUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XTZUSDT.json deleted file mode 100644 index 93e1f0695..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XTZUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.7794886183383, - "auto_unstuck_ema_dist": -0.005581941244785879, - "auto_unstuck_qty_pct": 0.010170091330110483, - "auto_unstuck_wallet_exposure_threshold": 0.3806590313382323, - "backwards_tp": true, - "ema_span_0": 956.2302813651238, - "ema_span_1": 1265.2351101148524, - "enabled": true, - "eprice_exp_base": 1.051767207536531, - "eqty_exp_base": 1.7035756385736616, - "grid_span": 0.17037951780238555, - "initial_eprice_ema_dist": -0.003123429996222736, - "initial_qty_pct": 0.012441166898920027, - "markup_range": 0.0008494533549618005, - "max_n_entry_orders": 7, - "min_markup": 0.009134769067758976, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1366.7111509488582, - "auto_unstuck_ema_dist": -0.03889387628187589, - "auto_unstuck_qty_pct": 0.033318103776090915, - "auto_unstuck_wallet_exposure_threshold": 0.5617409724650149, - "backwards_tp": true, - "ema_span_0": 1434.230346305967, - "ema_span_1": 1415.6198154555825, - "enabled": true, - "eprice_exp_base": 1.03902578446112, - "eqty_exp_base": 3.0200874334452035, - "grid_span": 0.20892599684241026, - "initial_eprice_ema_dist": -0.0031620299428871835, - "initial_qty_pct": 0.01420151405657421, - "markup_range": 0.0012068521329553369, - "max_n_entry_orders": 21, - "min_markup": 0.009912203050077612, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XVGUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XVGUSDT.json deleted file mode 100644 index c5ff94c6e..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XVGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 930.2434764891894, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.06035040116241251, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 671.0177112498625, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.3717625649798975, - "eqty_exp_base": 3.344488665295607, - "grid_span": 0.12479961039908576, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.05, - "markup_range": 0.0026779029034888196, - "max_n_entry_orders": 10, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XVSUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XVSUSDT.json deleted file mode 100644 index c697a1158..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/XVSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1319.5334467681841, - "auto_unstuck_ema_dist": -0.03962978897027502, - "auto_unstuck_qty_pct": 0.014304096053519982, - "auto_unstuck_wallet_exposure_threshold": 0.8060863175421003, - "backwards_tp": true, - "ema_span_0": 1310.3036036326434, - "ema_span_1": 1048.301378276395, - "enabled": true, - "eprice_exp_base": 1.2015984811282348, - "eqty_exp_base": 1.6270726549779497, - "grid_span": 0.25742975024377085, - "initial_eprice_ema_dist": -0.0020815060164468425, - "initial_qty_pct": 0.010219888813938467, - "markup_range": 0.011345722573192685, - "max_n_entry_orders": 9, - "min_markup": 0.009540359804499406, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/YFIUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/YFIUSDT.json deleted file mode 100644 index 2c192dbf4..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/YFIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1117.497986304894, - "auto_unstuck_ema_dist": -0.032107775535593325, - "auto_unstuck_qty_pct": 0.019177989584190615, - "auto_unstuck_wallet_exposure_threshold": 0.7081251926313712, - "backwards_tp": true, - "ema_span_0": 353.8290449665118, - "ema_span_1": 755.7879283149027, - "enabled": true, - "eprice_exp_base": 1.0175067852777455, - "eqty_exp_base": 2.132931349068966, - "grid_span": 0.16486515050589465, - "initial_eprice_ema_dist": 0.00029180652291504176, - "initial_qty_pct": 0.011978200287457405, - "markup_range": 0.006976981772472699, - "max_n_entry_orders": 8, - "min_markup": 0.006115259321793539, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1300.1586029806986, - "auto_unstuck_ema_dist": -0.07286128256051891, - "auto_unstuck_qty_pct": 0.013800603480314918, - "auto_unstuck_wallet_exposure_threshold": 0.23923476636590502, - "backwards_tp": true, - "ema_span_0": 798.2052046432716, - "ema_span_1": 220.05416517816295, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.4265218774980526, - "grid_span": 0.15942211235891907, - "initial_eprice_ema_dist": -0.009019073153360507, - "initial_qty_pct": 0.013550926744891391, - "markup_range": 0.00767240129699415, - "max_n_entry_orders": 16, - "min_markup": 0.006681041853807109, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/YGGUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/YGGUSDT.json deleted file mode 100644 index 69386683b..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/YGGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1070.1815373548548, - "auto_unstuck_ema_dist": -0.04178854659910562, - "auto_unstuck_qty_pct": 0.020535411615993555, - "auto_unstuck_wallet_exposure_threshold": 0.4884374577783266, - "backwards_tp": true, - "ema_span_0": 1202.878426022801, - "ema_span_1": 840.6685855759885, - "enabled": true, - "eprice_exp_base": 1.0989056760375406, - "eqty_exp_base": 3.1116572856071993, - "grid_span": 0.13595562563868033, - "initial_eprice_ema_dist": 0.0006935681256839439, - "initial_qty_pct": 0.012578916533481085, - "markup_range": 0.00988153066900415, - "max_n_entry_orders": 9, - "min_markup": 0.0072194691850736336, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.024956187873325486, - "auto_unstuck_qty_pct": 0.025331561929904593, - "auto_unstuck_wallet_exposure_threshold": 0.8190738579260033, - "backwards_tp": true, - "ema_span_0": 1319.491611923442, - "ema_span_1": 631.2541202301663, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.924938541206917, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.038361414732497656, - "initial_qty_pct": 0.01, - "markup_range": 0.007839481909906635, - "max_n_entry_orders": 7, - "min_markup": 0.007377404605166538, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZECUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZECUSDT.json deleted file mode 100644 index 06862a472..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZECUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 777.1446894871469, - "auto_unstuck_ema_dist": -0.07634652922708725, - "auto_unstuck_qty_pct": 0.05015558321629691, - "auto_unstuck_wallet_exposure_threshold": 0.3916111139946495, - "backwards_tp": true, - "ema_span_0": 1181.3441795167764, - "ema_span_1": 941.512749685682, - "enabled": true, - "eprice_exp_base": 1.1088473775036012, - "eqty_exp_base": 1.6297775418124265, - "grid_span": 0.25460237376135436, - "initial_eprice_ema_dist": 0.002950809528467142, - "initial_qty_pct": 0.011109927320126365, - "markup_range": 0.006998691376285849, - "max_n_entry_orders": 8, - "min_markup": 0.008615916545048294, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZENUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZENUSDT.json deleted file mode 100644 index 9a4e18d73..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZENUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 930.5575174143333, - "auto_unstuck_ema_dist": -0.08231294194024905, - "auto_unstuck_qty_pct": 0.04130802360722703, - "auto_unstuck_wallet_exposure_threshold": 0.12194843724233172, - "backwards_tp": true, - "ema_span_0": 1037.9983566336327, - "ema_span_1": 1432.3653929149093, - "enabled": true, - "eprice_exp_base": 1.0826457719746292, - "eqty_exp_base": 1.0831811921315475, - "grid_span": 0.2392488058512856, - "initial_eprice_ema_dist": 0.0026696399239173594, - "initial_qty_pct": 0.011168342738573818, - "markup_range": 0.00530938500304333, - "max_n_entry_orders": 8, - "min_markup": 0.007649289314141062, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZILUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZILUSDT.json deleted file mode 100644 index dd8b3b540..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZILUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.307031833748, - "auto_unstuck_ema_dist": -0.012435443488528533, - "auto_unstuck_qty_pct": 0.012511551338462903, - "auto_unstuck_wallet_exposure_threshold": 0.6200303452867397, - "backwards_tp": true, - "ema_span_0": 1223.7491034942766, - "ema_span_1": 1185.0332221577303, - "enabled": true, - "eprice_exp_base": 1.0033366336805396, - "eqty_exp_base": 3.291597029505056, - "grid_span": 0.14745071175982866, - "initial_eprice_ema_dist": 0.002837042259130256, - "initial_qty_pct": 0.010025837313728908, - "markup_range": 0.002507629438487384, - "max_n_entry_orders": 19, - "min_markup": 0.008565624894416276, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120.35043556944744, - "auto_unstuck_ema_dist": -0.040102994948356764, - "auto_unstuck_qty_pct": 0.0987888359181125, - "auto_unstuck_wallet_exposure_threshold": 0.7699636593846292, - "backwards_tp": true, - "ema_span_0": 1259.9649198051002, - "ema_span_1": 1322.0945299245902, - "enabled": true, - "eprice_exp_base": 1.8279294349240733, - "eqty_exp_base": 3.334416831352558, - "grid_span": 0.17093614940717916, - "initial_eprice_ema_dist": -0.033214170086040655, - "initial_qty_pct": 0.02483472877517778, - "markup_range": 0.011561010175176644, - "max_n_entry_orders": 12, - "min_markup": 0.0037688472626767667, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZRXUSDT.json b/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZRXUSDT.json deleted file mode 100644 index 422807820..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/2023-10-01/ZRXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 902.0830060591142, - "auto_unstuck_ema_dist": -0.08274593520236008, - "auto_unstuck_qty_pct": 0.010735171882544085, - "auto_unstuck_wallet_exposure_threshold": 0.5700119949769838, - "backwards_tp": true, - "ema_span_0": 1426.150940077225, - "ema_span_1": 1311.253065694952, - "enabled": true, - "eprice_exp_base": 1.0227397316206543, - "eqty_exp_base": 2.1388229447019085, - "grid_span": 0.2404864657190035, - "initial_eprice_ema_dist": -0.006346482826220628, - "initial_qty_pct": 0.014177952311970745, - "markup_range": 0.0017615924240126607, - "max_n_entry_orders": 8, - "min_markup": 0.007977749119633011, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1124.593201250694, - "auto_unstuck_ema_dist": 0.00014047260700473222, - "auto_unstuck_qty_pct": 0.011063334200202864, - "auto_unstuck_wallet_exposure_threshold": 0.8239674107195015, - "backwards_tp": true, - "ema_span_0": 261.163510178779, - "ema_span_1": 1123.0086027323707, - "enabled": true, - "eprice_exp_base": 1.1051247943392182, - "eqty_exp_base": 2.3802753905863554, - "grid_span": 0.14032039905703045, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015352787504427352, - "markup_range": 0.008709953325914437, - "max_n_entry_orders": 9, - "min_markup": 0.006147722716885833, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/neat_grid/metrics_neat_grid_2023-10-01.txt b/configs/live/single_symbol_optimizations/archived/neat_grid/metrics_neat_grid_2023-10-01.txt deleted file mode 100644 index 4f08b8bf5..000000000 --- a/configs/live/single_symbol_optimizations/archived/neat_grid/metrics_neat_grid_2023-10-01.txt +++ /dev/null @@ -1,439 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-10-01 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| WLDUSDT | 0.003705 | 0.003361 | 0.1428 | 0.01295 | 24.98 | 0.01141 | 0.01198 | 0.07412 | 0.05258 | 67.5 | 1297211.49629 | -| NMRUSDT | 0.001938 | 0.002557 | 0.1178 | 0.03056 | 58.4 | 0.008457 | 0.01532 | 0.1091 | 0.02348 | 99.5 | 1297211.49806 | -| LEVERUSDT | 0.001894 | 0.001387 | 0.0958 | 0.000681 | 87.33 | 0.01785 | 0.01679 | 0.08328 | 0.03711 | 183.5 | 1297211.49811 | -| 1000PEPEUSDT | 0.001679 | 0.002991 | 0.0942 | 0.05372 | 49.88 | 0.01274 | 0.02367 | 0.1453 | 0.0236 | 147.33 | 1297211.49832 | -| UNFIUSDT | 0.001674 | 0.002452 | 0.1156 | 0.01957 | 89.38 | 0.01981 | 0.02167 | 0.1318 | 0.05355 | 951.71 | 1297211.49833 | -| AMBUSDT | 0.001609 | 0.001354 | 0.1229 | 0.02316 | 97.78 | 0.0193 | 0.02248 | 0.1231 | 0.04881 | 183.5 | 1297211.49839 | -| MDTUSDT | 0.001596 | 0.001918 | 0.06413 | 0.0009103 | 57.6 | 0.007644 | 0.01038 | 0.05356 | 0.0 | 91.5 | 1297211.4984 | -| DOGEUSDT | 0.001549 | 0.003899 | 0.1083 | 0.03109 | 138.4 | 0.009475 | 0.01892 | 0.1081 | 0.08317 | 1176.62 | 1297211.49845 | -| ARKMUSDT | 0.001528 | 0.002067 | 0.1095 | 0.0241 | 34.57 | 0.008762 | 0.00876 | 0.05233 | 0.01695 | 63.92 | 1297211.49847 | -| MKRUSDT | 0.001519 | 0.002113 | 0.1345 | 0.04657 | 79.22 | 0.01104 | 0.01665 | 0.122 | 0.09374 | 1141.71 | 1297211.49848 | -| 1000LUNCUSDT | 0.001497 | 0.002655 | 0.09379 | 0.02075 | 59.63 | 0.01129 | 0.02215 | 0.1178 | 0.04578 | 385.46 | 1297211.4985 | -| WAVESUSDT | 0.001486 | 0.002231 | 0.06172 | 0.03427 | 45.88 | 0.008682 | 0.01599 | 0.1042 | 0.01125 | 1142.71 | 1297211.49851 | -| ALPHAUSDT | 0.001463 | 0.00303 | 0.0942 | 0.04104 | 100.5 | 0.01449 | 0.02377 | 0.1395 | 0.02529 | 1039.71 | 1297211.49854 | -| HBARUSDT | 0.001431 | 0.00272 | 0.08726 | 0.02967 | 138.3 | 0.009624 | 0.01314 | 0.08896 | 0.08143 | 926.71 | 1297211.49857 | -| ASTRUSDT | 0.001428 | 0.001242 | 0.1149 | 0.07202 | 108.9 | 0.01487 | 0.01545 | 0.08045 | 0.06966 | 227.92 | 1297211.49857 | -| SOLUSDT | 0.001421 | 0.00245 | 0.05714 | 0.02527 | 71.65 | 0.01068 | 0.01942 | 0.1315 | 0.04837 | 1109.71 | 1297211.49858 | -| NKNUSDT | 0.001369 | 0.002536 | 0.1137 | 0.02997 | 86.22 | 0.01589 | 0.02214 | 0.1494 | 0.03054 | 903.71 | 1297211.49863 | -| FETUSDT | 0.001294 | 0.00223 | 0.09821 | 0.04998 | 77.98 | 0.01242 | 0.02174 | 0.1229 | 0.03047 | 255.92 | 1297211.49871 | -| XRPUSDT | 0.001276 | 0.002576 | 0.1207 | 0.02495 | 134.0 | 0.009886 | 0.01753 | 0.1432 | 0.08258 | 1362.67 | 1297211.49872 | -| CELRUSDT | 0.001267 | 0.002622 | 0.101 | 0.03434 | 107.1 | 0.01421 | 0.01943 | 0.1255 | 0.03808 | 914.71 | 1297211.49873 | -| OMGUSDT | 0.001254 | 0.002328 | 0.1166 | 0.06025 | 70.35 | 0.01388 | 0.02137 | 0.1482 | 0.04157 | 1184.62 | 1297211.49875 | -| YGGUSDT | 0.001254 | 0.003197 | 0.1046 | 0.0462 | 45.88 | 0.01292 | 0.01508 | 0.09838 | 0.0149 | 55.88 | 1297211.49875 | -| COTIUSDT | 0.001213 | 0.002614 | 0.1149 | 0.0689 | 81.87 | 0.01524 | 0.02391 | 0.1498 | 0.07805 | 933.71 | 1297211.49879 | -| XVSUSDT | 0.001155 | 0.00096 | 0.1017 | 0.01618 | 78.57 | 0.01462 | 0.01973 | 0.119 | 0.07705 | 169.92 | 1297211.49884 | -| RVNUSDT | 0.001161 | 0.002456 | 0.09262 | 0.03781 | 138.2 | 0.01213 | 0.01727 | 0.1042 | 0.06275 | 947.71 | 1297211.49884 | -| ALGOUSDT | 0.001149 | 0.002386 | 0.09496 | 0.0491 | 132.4 | 0.01469 | 0.02095 | 0.1385 | 0.06743 | 1200.62 | 1297211.49885 | -| MANAUSDT | 0.00114 | 0.002941 | 0.09041 | 0.04841 | 49.88 | 0.01118 | 0.02386 | 0.1441 | 0.02368 | 928.71 | 1297211.49886 | -| OCEANUSDT | 0.001136 | 0.001969 | 0.08931 | 0.02634 | 132.3 | 0.01968 | 0.02378 | 0.138 | 0.03549 | 1059.71 | 1297211.49886 | -| SKLUSDT | 0.001135 | 0.002554 | 0.0905 | 0.04965 | 96.1 | 0.01664 | 0.02236 | 0.1493 | 0.06127 | 1024.71 | 1297211.49886 | -| SNXUSDT | 0.001127 | 0.001984 | 0.09703 | 0.0175 | 123.9 | 0.0184 | 0.02114 | 0.1307 | 0.02768 | 1140.71 | 1297211.49887 | -| ATOMUSDT | 0.001135 | 0.002744 | 0.07643 | 0.0284 | 102.5 | 0.009744 | 0.02801 | 0.1408 | 0.01747 | 1330.5 | 1297211.49887 | -| AGLDUSDT | 0.001124 | 0.0008322 | 0.05568 | 0.02316 | 80.03 | 0.01845 | 0.01491 | 0.06243 | 0.0233 | 62.92 | 1297211.49888 | -| 1INCHUSDT | 0.001112 | 0.001725 | 0.06916 | 0.03891 | 120.0 | 0.01625 | 0.02081 | 0.1342 | 0.04274 | 1007.58 | 1297211.49889 | -| DOTUSDT | 0.001097 | 0.002884 | 0.1456 | 0.08692 | 98.27 | 0.01172 | 0.02152 | 0.1296 | 0.03718 | 1132.71 | 1297211.4989 | -| LRCUSDT | 0.001079 | 0.002658 | 0.09144 | 0.04858 | 71.2 | 0.01265 | 0.02118 | 0.14 | 0.02198 | 1074.71 | 1297211.49892 | -| GRTUSDT | 0.001078 | 0.00204 | 0.09705 | 0.004644 | 142.6 | 0.01938 | 0.02476 | 0.1473 | 0.08125 | 1013.71 | 1297211.49892 | -| BELUSDT | 0.00108 | 0.001961 | 0.07562 | 0.02772 | 65.62 | 0.01299 | 0.02098 | 0.1449 | 0.04693 | 1044.71 | 1297211.49892 | -| DGBUSDT | 0.001082 | 0.001916 | 0.1337 | 0.02616 | 120.9 | 0.01743 | 0.0257 | 0.1483 | 0.08977 | 891.88 | 1297211.49892 | -| PHBUSDT | 0.001068 | 0.00127 | 0.1297 | 0.08852 | 38.12 | 0.01392 | 0.01954 | 0.1355 | 0.04064 | 225.42 | 1297211.49893 | -| ICPUSDT | 0.001075 | 0.001456 | 0.08636 | 0.02729 | 110.3 | 0.007273 | 0.007366 | 0.04362 | 0.06567 | 367.92 | 1297211.49893 | -| MAVUSDT | 0.001062 | 0.001752 | 0.1079 | 0.04052 | 74.1 | 0.01378 | 0.01535 | 0.07441 | 0.01952 | 92.5 | 1297211.49894 | -| COMBOUSDT | 0.001063 | 0.001578 | 0.06252 | 0.03346 | 35.95 | 0.008767 | 0.01747 | 0.1304 | 0.02478 | 119.5 | 1297211.49894 | -| RLCUSDT | 0.00105 | 0.0019 | 0.0809 | 0.0163 | 112.0 | 0.01767 | 0.023 | 0.1486 | 0.02769 | 1155.71 | 1297211.49895 | -| RNDRUSDT | 0.001054 | 0.002348 | 0.07291 | 0.01412 | 55.1 | 0.009262 | 0.01277 | 0.08138 | 0.01487 | 238.92 | 1297211.49895 | -| SUSHIUSDT | 0.001037 | 0.002772 | 0.07855 | 0.03595 | 67.6 | 0.01141 | 0.01731 | 0.1433 | 0.01989 | 1119.71 | 1297211.49896 | -| RDNTUSDT | 0.00103 | 0.001614 | 0.1045 | 0.06172 | 68.68 | 0.01091 | 0.01953 | 0.1073 | 0.02433 | 177.5 | 1297211.49897 | -| STMXUSDT | 0.001033 | 0.001275 | 0.08399 | 0.02563 | 139.5 | 0.01942 | 0.02559 | 0.1491 | 0.0314 | 921.71 | 1297211.49897 | -| INJUSDT | 0.001014 | 0.001613 | 0.1128 | 0.04534 | 114.7 | 0.01531 | 0.01653 | 0.08818 | 0.06771 | 408.92 | 1297211.49899 | -| COMPUSDT | 0.0009967 | 0.001476 | 0.08497 | 0.01492 | 138.7 | 0.01975 | 0.02116 | 0.1163 | 0.03413 | 1186.62 | 1297211.499 | -| SPELLUSDT | 0.0009939 | 0.001154 | 0.07456 | 0.01587 | 83.05 | 0.008178 | 0.009507 | 0.05399 | 0.01035 | 388.5 | 1297211.49901 | -| CTKUSDT | 0.0009934 | 0.002414 | 0.1115 | 0.04822 | 133.9 | 0.01553 | 0.02155 | 0.1471 | 0.03338 | 1043.71 | 1297211.49901 | -| TOMOUSDT | 0.0009833 | 0.001351 | 0.06966 | 0.01795 | 134.9 | 0.01628 | 0.01946 | 0.1447 | 0.07789 | 1081.71 | 1297211.49902 | -| EGLDUSDT | 0.0009792 | 0.002432 | 0.1101 | 0.05823 | 85.27 | 0.01442 | 0.02573 | 0.1475 | 0.04586 | 1109.71 | 1297211.49902 | -| CHRUSDT | 0.0009779 | 0.002401 | 0.108 | 0.04682 | 118.8 | 0.01628 | 0.01538 | 0.09532 | 0.02139 | 931.71 | 1297211.49902 | -| HOOKUSDT | 0.0009781 | 0.001566 | 0.06401 | 0.01684 | 57.4 | 0.01025 | 0.01161 | 0.08043 | 0.06803 | 249.88 | 1297211.49902 | -| XVGUSDT | 0.0009685 | 0.002189 | 0.1428 | 0.07126 | 40.32 | 0.0134 | 0.01619 | 0.08854 | 0.02867 | 86.5 | 1297211.49903 | -| STXUSDT | 0.0009698 | 0.001733 | 0.09047 | 0.03024 | 91.22 | 0.01232 | 0.01717 | 0.1269 | 0.03193 | 220.42 | 1297211.49903 | -| RADUSDT | 0.0009618 | 0.001284 | 0.09755 | 0.02894 | 46.68 | 0.008503 | 0.01546 | 0.09053 | 0.09279 | 142.5 | 1297211.49904 | -| OPUSDT | 0.0009462 | 0.001729 | 0.07751 | 0.02068 | 72.12 | 0.01159 | 0.01722 | 0.1041 | 0.06443 | 485.42 | 1297211.49905 | -| HOTUSDT | 0.0009382 | 0.002346 | 0.09404 | 0.03867 | 119.0 | 0.01376 | 0.02561 | 0.1492 | 0.04749 | 913.71 | 1297211.49906 | -| ANKRUSDT | 0.0009433 | 0.00182 | 0.06444 | 0.02246 | 124.8 | 0.01038 | 0.01845 | 0.1397 | 0.06955 | 975.71 | 1297211.49906 | -| REEFUSDT | 0.0009405 | 0.001925 | 0.1261 | 0.04286 | 132.0 | 0.01885 | 0.02462 | 0.1379 | 0.07878 | 948.71 | 1297211.49906 | -| AVAXUSDT | 0.0009309 | 0.002353 | 0.09378 | 0.03236 | 116.2 | 0.01551 | 0.02128 | 0.134 | 0.03346 | 1100.71 | 1297211.49907 | -| LINKUSDT | 0.0009282 | 0.002525 | 0.1052 | 0.04867 | 103.0 | 0.01172 | 0.01601 | 0.1217 | 0.07376 | 1351.67 | 1297211.49907 | -| OGNUSDT | 0.0009166 | 0.00172 | 0.07463 | 0.008409 | 143.2 | 0.01861 | 0.0197 | 0.1149 | 0.05649 | 911.71 | 1297211.49908 | -| HFTUSDT | 0.0009085 | 0.001168 | 0.07826 | 0.01841 | 127.0 | 0.01065 | 0.01504 | 0.09426 | 0.01339 | 176.5 | 1297211.49909 | -| MAGICUSDT | 0.0009105 | 0.001773 | 0.0908 | 0.04756 | 49.85 | 0.01385 | 0.02082 | 0.1471 | 0.02477 | 247.88 | 1297211.49909 | -| RUNEUSDT | 0.0009063 | 0.002622 | 0.08324 | 0.03074 | 143.2 | 0.01806 | 0.02098 | 0.1438 | 0.01522 | 1119.71 | 1297211.49909 | -| THETAUSDT | 0.0009108 | 0.002347 | 0.07903 | 0.01649 | 130.3 | 0.0144 | 0.02175 | 0.1394 | 0.03872 | 1220.67 | 1297211.49909 | -| ZENUSDT | 0.0009044 | 0.001894 | 0.09277 | 0.01689 | 120.8 | 0.01608 | 0.02389 | 0.1481 | 0.06383 | 1038.71 | 1297211.4991 | -| NEARUSDT | 0.0008983 | 0.002252 | 0.09412 | 0.05809 | 89.23 | 0.01396 | 0.02498 | 0.1379 | 0.04111 | 1078.67 | 1297211.4991 | -| ICXUSDT | 0.0008972 | 0.001905 | 0.1195 | 0.05216 | 141.7 | 0.01556 | 0.01879 | 0.1463 | 0.07471 | 1108.71 | 1297211.4991 | -| ARBUSDT | 0.0008985 | 0.001193 | 0.07661 | 0.02079 | 126.6 | 0.01045 | 0.009793 | 0.05449 | 0.01741 | 190.38 | 1297211.4991 | -| RSRUSDT | 0.0008933 | 0.001501 | 0.05778 | 0.02024 | 122.1 | 0.01824 | 0.02107 | 0.1233 | 0.02743 | 1074.71 | 1297211.49911 | -| ALICEUSDT | 0.0008868 | 0.00232 | 0.08109 | 0.03013 | 72.07 | 0.01287 | 0.02143 | 0.1289 | 0.08279 | 927.88 | 1297211.49911 | -| GALUSDT | 0.0008753 | 0.002048 | 0.1293 | 0.04008 | 128.2 | 0.01968 | 0.02571 | 0.146 | 0.09088 | 512.42 | 1297211.49912 | -| AGIXUSDT | 0.0008763 | 0.001759 | 0.14 | 0.03899 | 74.98 | 0.01584 | 0.01945 | 0.128 | 0.0461 | 225.42 | 1297211.49912 | -| YFIUSDT | 0.0008796 | 0.003419 | 0.05377 | 0.01876 | 135.4 | 0.01244 | 0.01618 | 0.1129 | 0.029 | 1123.71 | 1297211.49912 | -| BLZUSDT | 0.0008818 | 0.001302 | 0.06139 | 0.01291 | 115.4 | 0.01936 | 0.02252 | 0.1248 | 0.02285 | 1106.71 | 1297211.49912 | -| GMXUSDT | 0.0008806 | 0.001008 | 0.09882 | 0.031 | 90.75 | 0.01471 | 0.01263 | 0.05666 | 0.02025 | 224.42 | 1297211.49912 | -| SUIUSDT | 0.0008774 | 0.001542 | 0.1237 | 0.04184 | 63.45 | 0.01276 | 0.01395 | 0.1036 | 0.04151 | 149.33 | 1297211.49912 | -| AXSUSDT | 0.0008748 | 0.002582 | 0.1061 | 0.04847 | 108.7 | 0.0155 | 0.02569 | 0.1465 | 0.03791 | 1042.71 | 1297211.49913 | -| CELOUSDT | 0.0008634 | 0.001614 | 0.1491 | 0.07857 | 122.1 | 0.01613 | 0.02213 | 0.1386 | 0.06361 | 732.88 | 1297211.49914 | -| HIGHUSDT | 0.0008533 | 0.001897 | 0.1041 | 0.06012 | 85.93 | 0.01854 | 0.02423 | 0.1425 | 0.07253 | 234.92 | 1297211.49915 | -| GALAUSDT | 0.0008535 | 0.00195 | 0.07721 | 0.04476 | 53.25 | 0.01061 | 0.02074 | 0.1332 | 0.03872 | 741.88 | 1297211.49915 | -| IMXUSDT | 0.0008375 | 0.001708 | 0.06863 | 0.03314 | 47.0 | 0.009569 | 0.01429 | 0.08915 | 0.01981 | 595.88 | 1297211.49916 | -| ETCUSDT | 0.0008314 | 0.001693 | 0.0723 | 0.02908 | 140.7 | 0.01112 | 0.02264 | 0.1412 | 0.05624 | 1352.67 | 1297211.49917 | -| MATICUSDT | 0.000833 | 0.002377 | 0.07708 | 0.02924 | 134.0 | 0.01329 | 0.0213 | 0.133 | 0.01482 | 1071.71 | 1297211.49917 | -| LINAUSDT | 0.000822 | 0.001325 | 0.06079 | 0.01942 | 113.2 | 0.01951 | 0.0227 | 0.1467 | 0.03682 | 924.71 | 1297211.49918 | -| UNIUSDT | 0.0008189 | 0.001803 | 0.05296 | 0.01684 | 141.2 | 0.01185 | 0.0146 | 0.08672 | 0.05095 | 1105.71 | 1297211.49918 | -| AAVEUSDT | 0.0008025 | 0.001932 | 0.07029 | 0.03445 | 118.4 | 0.01462 | 0.02123 | 0.1418 | 0.01869 | 1077.71 | 1297211.4992 | -| FTMUSDT | 0.0007997 | 0.002 | 0.05902 | 0.01705 | 92.87 | 0.01275 | 0.01838 | 0.1111 | 0.01852 | 1099.71 | 1297211.4992 | -| BLURUSDT | 0.0007933 | 0.001327 | 0.05998 | 0.02076 | 83.98 | 0.008753 | 0.008765 | 0.05596 | 0.04583 | 154.5 | 1297211.49921 | -| UMAUSDT | 0.0007791 | 0.001065 | 0.1206 | 0.0076 | 83.92 | 0.009925 | 0.01057 | 0.06984 | 0.05259 | 142.5 | 1297211.49922 | -| 1000SHIBUSDT | 0.0007727 | 0.002166 | 0.03517 | 0.004251 | 121.0 | 0.008234 | 0.009306 | 0.05351 | 0.0005003 | 872.29 | 1297211.49923 | -| DENTUSDT | 0.0007661 | 0.002027 | 0.06816 | 0.009422 | 130.5 | 0.01475 | 0.01851 | 0.1087 | 0.06035 | 919.83 | 1297211.49923 | -| ZILUSDT | 0.0007715 | 0.001816 | 0.09631 | 0.06236 | 114.8 | 0.01744 | 0.02494 | 0.1496 | 0.03257 | 1198.62 | 1297211.49923 | -| LDOUSDT | 0.0007572 | 0.001366 | 0.07547 | 0.003691 | 137.6 | 0.01206 | 0.01556 | 0.08944 | 0.0739 | 372.5 | 1297211.49924 | -| FILUSDT | 0.0007623 | 0.001289 | 0.07998 | 0.01512 | 142.4 | 0.01665 | 0.02286 | 0.1432 | 0.06037 | 1077.75 | 1297211.49924 | -| MINAUSDT | 0.0007538 | 0.001637 | 0.1043 | 0.05595 | 57.95 | 0.01188 | 0.02141 | 0.1274 | 0.04207 | 234.54 | 1297211.49925 | -| KEYUSDT | 0.0007471 | 0.001101 | 0.04324 | 0.01815 | 72.57 | 0.00748 | 0.01132 | 0.06502 | 0.009982 | 128.5 | 1297211.49925 | -| DEFIUSDT | 0.0007401 | 0.001651 | 0.1046 | 0.04793 | 120.9 | 0.01461 | 0.02232 | 0.1482 | 0.09327 | 1126.71 | 1297211.49926 | -| API3USDT | 0.0007355 | 0.001018 | 0.05093 | 0.004702 | 112.0 | 0.01348 | 0.01339 | 0.06987 | 0.09858 | 584.88 | 1297211.49926 | -| PENDLEUSDT | 0.0007307 | 0.0009783 | 0.06343 | 0.0006515 | 97.37 | 0.01492 | 0.01173 | 0.0545 | 0.0019 | 63.92 | 1297211.49927 | -| FLMUSDT | 0.0007177 | 0.001201 | 0.05521 | 0.02265 | 127.3 | 0.01903 | 0.02433 | 0.1493 | 0.06797 | 1094.71 | 1297211.49928 | -| SXPUSDT | 0.000715 | 0.002121 | 0.05136 | 0.0008579 | 124.5 | 0.01719 | 0.02133 | 0.1283 | 0.03525 | 1165.62 | 1297211.49928 | -| TLMUSDT | 0.0007237 | 0.0007701 | 0.1344 | 0.07809 | 109.7 | 0.01424 | 0.01726 | 0.09372 | 0.09395 | 183.5 | 1297211.49928 | -| RENUSDT | 0.0007025 | 0.001254 | 0.05991 | 0.0064 | 115.6 | 0.01952 | 0.02575 | 0.1487 | 0.02138 | 1080.71 | 1297211.4993 | -| QTUMUSDT | 0.0006882 | 0.001327 | 0.07637 | 0.02365 | 129.6 | 0.01421 | 0.01845 | 0.1173 | 0.02484 | 1317.67 | 1297211.49931 | -| BANDUSDT | 0.000691 | 0.001596 | 0.05213 | 0.009321 | 129.1 | 0.01422 | 0.01748 | 0.1042 | 0.07054 | 1157.71 | 1297211.49931 | -| SSVUSDT | 0.0006878 | 0.001051 | 0.08729 | 0.02088 | 140.3 | 0.01958 | 0.01972 | 0.1077 | 0.01981 | 217.5 | 1297211.49931 | -| LUNA2USDT | 0.0006757 | 0.0009424 | 0.07021 | 0.06192 | 46.7 | 0.01384 | 0.02732 | 0.1169 | 0.0749 | 384.88 | 1297211.49932 | -| CHZUSDT | 0.0006766 | 0.001518 | 0.0589 | 0.01483 | 137.7 | 0.01502 | 0.02325 | 0.1444 | 0.03502 | 980.71 | 1297211.49932 | -| XTZUSDT | 0.0006791 | 0.001623 | 0.06531 | 0.02728 | 135.8 | 0.0121 | 0.0187 | 0.1235 | 0.0173 | 1331.67 | 1297211.49932 | -| MTLUSDT | 0.0006733 | 0.001185 | 0.06892 | 0.003743 | 87.62 | 0.01961 | 0.02078 | 0.1187 | 0.06637 | 912.71 | 1297211.49933 | -| CTSIUSDT | 0.000653 | 0.001076 | 0.06508 | 0.006748 | 116.7 | 0.01542 | 0.01859 | 0.1109 | 0.03781 | 703.88 | 1297211.49935 | -| BATUSDT | 0.0006386 | 0.001351 | 0.08865 | 0.006888 | 134.9 | 0.01936 | 0.02126 | 0.1152 | 0.05723 | 1324.67 | 1297211.49936 | -| LTCUSDT | 0.000635 | 0.001339 | 0.08773 | 0.02749 | 136.1 | 0.01613 | 0.02056 | 0.1266 | 0.02915 | 1359.67 | 1297211.49937 | -| ARPAUSDT | 0.0006321 | 0.0008433 | 0.03937 | 0.02239 | 75.52 | 0.007331 | 0.01113 | 0.06274 | 0.01629 | 710.88 | 1297211.49937 | -| IOSTUSDT | 0.0006155 | 0.001381 | 0.05124 | 0.01623 | 133.8 | 0.01326 | 0.018 | 0.1302 | 0.0191 | 1316.67 | 1297211.49938 | -| JASMYUSDT | 0.0006158 | 0.0009695 | 0.06067 | 0.0004736 | 105.6 | 0.01316 | 0.01361 | 0.07107 | 0.09867 | 527.88 | 1297211.49938 | -| XMRUSDT | 0.0006248 | 0.00143 | 0.1177 | 0.03197 | 142.5 | 0.01231 | 0.01808 | 0.1283 | 0.03748 | 1334.67 | 1297211.49938 | -| CKBUSDT | 0.0006228 | 0.001079 | 0.08678 | 0.02459 | 72.4 | 0.01288 | 0.0183 | 0.1166 | 0.03451 | 213.5 | 1297211.49938 | -| ZECUSDT | 0.0006184 | 0.001078 | 0.04762 | 0.007847 | 141.3 | 0.01392 | 0.02122 | 0.1325 | 0.0561 | 1332.67 | 1297211.49938 | -| KNCUSDT | 0.0006101 | 0.001073 | 0.06954 | 0.007429 | 130.6 | 0.01995 | 0.02269 | 0.1492 | 0.04838 | 1194.67 | 1297211.49939 | -| ACHUSDT | 0.00061 | 0.001119 | 0.08584 | 0.04272 | 102.5 | 0.01609 | 0.0186 | 0.1168 | 0.02819 | 219.42 | 1297211.49939 | -| ENJUSDT | 0.0006062 | 0.001244 | 0.07868 | 0.01161 | 127.2 | 0.01864 | 0.02447 | 0.1467 | 0.05737 | 1094.71 | 1297211.49939 | -| SFPUSDT | 0.0006115 | 0.001055 | 0.06131 | 0.004973 | 141.9 | 0.01823 | 0.02357 | 0.1389 | 0.0568 | 946.71 | 1297211.49939 | -| LQTYUSDT | 0.0006094 | 0.001011 | 0.1026 | 0.05056 | 67.23 | 0.01799 | 0.0229 | 0.1426 | 0.06426 | 203.5 | 1297211.49939 | -| TRUUSDT | 0.0006052 | 0.0008628 | 0.087 | 0.02986 | 128.2 | 0.01868 | 0.02101 | 0.1209 | 0.02765 | 206.5 | 1297211.49939 | -| DUSKUSDT | 0.0005977 | 0.0009464 | 0.05147 | 0.01195 | 111.7 | 0.01685 | 0.01642 | 0.07651 | 0.01752 | 630.88 | 1297211.4994 | -| IDEXUSDT | 0.0006023 | 0.0009559 | 0.07889 | 0.009473 | 116.2 | 0.01351 | 0.01461 | 0.07581 | 0.01253 | 149.5 | 1297211.4994 | -| CVXUSDT | 0.0006044 | 0.0006386 | 0.08094 | 0.04116 | 141.1 | 0.01627 | 0.01595 | 0.08658 | 0.06171 | 372.5 | 1297211.4994 | -| QNTUSDT | 0.0005815 | 0.001234 | 0.149 | 0.06245 | 133.4 | 0.009975 | 0.01551 | 0.09334 | 0.04373 | 344.92 | 1297211.49942 | -| 1000FLOKIUSDT | 0.0005834 | 0.000864 | 0.0713 | 0.02163 | 122.3 | 0.01081 | 0.01509 | 0.09472 | 0.08284 | 146.33 | 1297211.49942 | -| LITUSDT | 0.000582 | 0.001097 | 0.03987 | 0.008038 | 127.5 | 0.01525 | 0.0144 | 0.0714 | 0.007351 | 953.71 | 1297211.49942 | -| CRVUSDT | 0.0005723 | 0.00138 | 0.05022 | 0.03077 | 74.35 | 0.01043 | 0.01924 | 0.1065 | 0.03189 | 1122.71 | 1297211.49943 | -| SANDUSDT | 0.0005701 | 0.001433 | 0.0661 | 0.01702 | 130.3 | 0.01596 | 0.02378 | 0.1498 | 0.04379 | 976.71 | 1297211.49943 | -| IOTAUSDT | 0.0005714 | 0.001482 | 0.07481 | 0.006286 | 105.4 | 0.01488 | 0.02158 | 0.1223 | 0.0671 | 1325.67 | 1297211.49943 | -| STGUSDT | 0.0005643 | 0.001182 | 0.05699 | 0.01467 | 143.3 | 0.01341 | 0.0131 | 0.05772 | 0.002427 | 400.5 | 1297211.49944 | -| ONEUSDT | 0.0005525 | 0.001343 | 0.07527 | 0.0352 | 123.1 | 0.01468 | 0.02389 | 0.1484 | 0.07841 | 925.71 | 1297211.49945 | -| JOEUSDT | 0.0005465 | 0.0008076 | 0.0733 | 0.02213 | 91.22 | 0.01848 | 0.01496 | 0.0772 | 0.06221 | 184.5 | 1297211.49945 | -| ZRXUSDT | 0.0005483 | 0.0009299 | 0.05855 | 0.02002 | 129.2 | 0.01909 | 0.02183 | 0.1394 | 0.04929 | 1192.62 | 1297211.49945 | -| TUSDT | 0.0005326 | 0.0007115 | 0.1065 | 0.06601 | 119.8 | 0.01591 | 0.02341 | 0.1438 | 0.06545 | 240.46 | 1297211.49947 | -| DASHUSDT | 0.0005193 | 0.001084 | 0.06795 | 0.01559 | 143.6 | 0.01538 | 0.02102 | 0.1342 | 0.02828 | 1333.67 | 1297211.49948 | -| FOOTBALLUSDT | 0.0005179 | 0.001071 | 0.06705 | 0.001587 | 134.1 | 0.01009 | 0.009645 | 0.0483 | 0.001371 | 393.88 | 1297211.49948 | -| KSMUSDT | 0.0005032 | 0.001123 | 0.07465 | 0.02022 | 114.0 | 0.01962 | 0.02264 | 0.129 | 0.06429 | 1079.71 | 1297211.4995 | -| EOSUSDT | 0.0004719 | 0.0008539 | 0.03982 | 0.0004287 | 144.0 | 0.01395 | 0.01467 | 0.07849 | 0.06893 | 1360.67 | 1297211.49953 | -| APEUSDT | 0.0004714 | 0.0008658 | 0.03849 | 0.01996 | 86.02 | 0.007564 | 0.01365 | 0.07979 | 0.01809 | 561.38 | 1297211.49953 | -| BCHUSDT | 0.0004731 | 0.001347 | 0.04036 | 0.01596 | 94.65 | 0.009788 | 0.01663 | 0.1181 | 0.04313 | 1368.0 | 1297211.49953 | -| WOOUSDT | 0.0004555 | 0.0006889 | 0.07608 | 0.01883 | 89.42 | 0.01839 | 0.02455 | 0.1422 | 0.05433 | 539.88 | 1297211.49954 | -| BALUSDT | 0.0004593 | 0.001065 | 0.1147 | 0.03963 | 119.9 | 0.01862 | 0.0245 | 0.1494 | 0.06138 | 1122.71 | 1297211.49954 | -| STORJUSDT | 0.0004577 | 0.000866 | 0.08354 | 0.01298 | 127.8 | 0.01936 | 0.02514 | 0.1408 | 0.05193 | 1107.71 | 1297211.49954 | -| ETHUSDT | 0.0004382 | 0.0009869 | 0.06647 | 0.008193 | 140.8 | 0.01247 | 0.01835 | 0.09458 | 0.08231 | 1368.0 | 1297211.49956 | -| AUDIOUSDT | 0.0004431 | 0.0008378 | 0.06739 | 0.05058 | 72.22 | 0.01001 | 0.01581 | 0.08267 | 0.04658 | 771.88 | 1297211.49956 | -| BNXUSDT | 0.0004363 | 0.0007179 | 0.062 | 0.0009493 | 100.6 | 0.01741 | 0.02016 | 0.1154 | 0.02881 | 219.42 | 1297211.49956 | -| ADAUSDT | 0.0004259 | 0.00115 | 0.04075 | 0.002025 | 105.5 | 0.01176 | 0.01286 | 0.07041 | 0.05688 | 1337.67 | 1297211.49957 | -| ENSUSDT | 0.0004334 | 0.0009835 | 0.04563 | 0.009904 | 139.9 | 0.0149 | 0.01409 | 0.06648 | 0.009592 | 668.88 | 1297211.49957 | -| FLOWUSDT | 0.0004314 | 0.0007487 | 0.08992 | 0.0171 | 111.4 | 0.01722 | 0.02254 | 0.1335 | 0.08102 | 596.88 | 1297211.49957 | -| NEOUSDT | 0.0004258 | 0.0007319 | 0.05494 | 0.0106 | 133.2 | 0.01677 | 0.022 | 0.1287 | 0.0899 | 1320.67 | 1297211.49957 | -| ONTUSDT | 0.0004166 | 0.0008403 | 0.05764 | 0.01247 | 138.8 | 0.01967 | 0.02151 | 0.1206 | 0.02736 | 1326.67 | 1297211.49958 | -| KAVAUSDT | 0.0004086 | 0.0009207 | 0.03968 | 0.01348 | 98.37 | 0.0133 | 0.01406 | 0.08102 | 0.03153 | 1158.71 | 1297211.49959 | -| TRBUSDT | 0.0003915 | 0.000607 | 0.02737 | 0.004424 | 120.0 | 0.01997 | 0.01976 | 0.1067 | 0.05765 | 1120.71 | 1297211.49961 | -| EDUUSDT | 0.0003924 | 0.0008536 | 0.04809 | 0.006829 | 66.63 | 0.01405 | 0.01246 | 0.05998 | 0.004275 | 152.5 | 1297211.49961 | -| BTCUSDT | 0.0003746 | 0.000831 | 0.089 | 0.02269 | 108.1 | 0.009393 | 0.01188 | 0.064 | 0.09267 | 1368.0 | 1297211.49963 | -| CFXUSDT | 0.0003701 | 0.0008684 | 0.04281 | 0.00508 | 111.5 | 0.01677 | 0.0158 | 0.08511 | 0.04725 | 221.42 | 1297211.49963 | -| ARUSDT | 0.0003709 | 0.0007219 | 0.04198 | 0.01218 | 132.0 | 0.01417 | 0.01252 | 0.05776 | 0.01181 | 731.88 | 1297211.49963 | -| ATAUSDT | 0.0003622 | 0.0007079 | 0.04081 | 0.0113 | 121.1 | 0.01301 | 0.01209 | 0.06316 | 0.03213 | 759.88 | 1297211.49964 | -| VETUSDT | 0.0003613 | 0.001204 | 0.02455 | 0.002455 | 133.5 | 0.01204 | 0.01069 | 0.04729 | 0.00159 | 1323.67 | 1297211.49964 | -| PEOPLEUSDT | 0.0003631 | 0.0009344 | 0.04276 | 0.01816 | 129.3 | 0.01485 | 0.01822 | 0.1234 | 0.06121 | 644.83 | 1297211.49964 | -| XEMUSDT | 0.0003481 | 0.0007586 | 0.0486 | 0.006688 | 138.2 | 0.0181 | 0.02272 | 0.1362 | 0.02145 | 940.71 | 1297211.49965 | -| BNBUSDT | 0.000339 | 0.000865 | 0.05534 | 0.002668 | 134.6 | 0.01579 | 0.02063 | 0.1007 | 0.03182 | 1327.67 | 1297211.49966 | -| APTUSDT | 0.0003282 | 0.0006202 | 0.0716 | 0.01457 | 132.1 | 0.01661 | 0.02247 | 0.1379 | 0.02702 | 345.92 | 1297211.49967 | -| IDUSDT | 0.0003225 | 0.000518 | 0.05978 | 0.0361 | 51.37 | 0.01568 | 0.01732 | 0.1025 | 0.04004 | 190.42 | 1297211.49968 | -| ANTUSDT | 0.0003116 | 0.0006468 | 0.04598 | 0.004609 | 138.7 | 0.01872 | 0.02247 | 0.1383 | 0.08489 | 641.83 | 1297211.49969 | -| FXSUSDT | 0.0002953 | 0.0005666 | 0.05884 | 0.02636 | 49.67 | 0.01199 | 0.01579 | 0.1018 | 0.06619 | 252.88 | 1297211.4997 | -| TRXUSDT | 0.0002413 | 0.0007051 | 0.05018 | 0.001878 | 143.5 | 0.01221 | 0.01644 | 0.09329 | 0.02553 | 1353.67 | 1297211.49976 | -| PERPUSDT | 0.0002414 | 0.0001618 | 0.01256 | 0.0 | 64.82 | 0.01125 | 0.009754 | 0.04685 | 0.0 | 207.5 | 1297211.49976 | -| HNTUSDT | 0.0002217 | 0.0008999 | 0.04116 | 0.02031 | 65.38 | 0.007846 | 0.02281 | 0.1483 | 0.02474 | 1095.71 | 1297211.49978 | -| BLUEBIRDUSDT | 0.0001889 | 0.0003525 | 0.03513 | 0.0 | 120.7 | 0.008561 | 0.008485 | 0.04273 | 0.0 | 331.5 | 1297211.49981 | -| CVCUSDT | 5.933e-05 | 0.0003912 | 0.01786 | 0.001664 | 73.35 | 0.01925 | 0.01913 | 0.09238 | 0.0218 | 1051.71 | 1297211.49994 | -| COCOSUSDT | 5.781e-05 | 0.0005781 | 0.09858 | 0.004914 | 86.42 | 0.01395 | 0.01326 | 0.09186 | 0.01332 | 220.42 | 1297211.49994 | -| BTCDOMUSDT | 2.89e-05 | 6.11e-05 | 0.02326 | 0.0002507 | 117.5 | 0.006525 | 0.005756 | 0.02669 | 0.00595 | 830.88 | 1297211.49997 | -| BTCSTUSDT | 9.084e-06 | 9.084e-05 | 0.002878 | 0.000399 | 19.35 | 0.01885 | 0.02105 | 0.01885 | 0.08202 | 939.71 | 1297211.49999 | -| USDCUSDT | 1.446e-06 | 1.446e-05 | 0.06874 | 0.0 | 121.8 | 0.003596 | 0.004119 | 0.03948 | 0.0 | 201.29 | 1297211.5 | -| FTTUSDT | 3.875e-05 | 0.0003875 | 0.01613 | 0.001095 | 112.8 | 0.02105 | 0.02825 | 0.09872 | 0.0567 | 532.88 | 1297221.98222 | -| DYDXUSDT | 0.0005495 | 0.001052 | 0.09671 | 0.04012 | 90.83 | 0.02226 | 0.02535 | 0.1382 | 0.05436 | 749.88 | 1297234.13796 | -| SCUSDT | 3.255e-05 | 0.0003255 | 0.02165 | 0.006661 | 114.2 | 0.02626 | 0.025 | 0.1068 | 0.04396 | 900.71 | 1297274.08783 | -| ROSEUSDT | 0.0003908 | 0.0007881 | 0.08165 | 0.01914 | 144.1 | 0.01974 | 0.02602 | 0.1445 | 0.04738 | 637.88 | 1297311.49961 | -| BTSUSDT | 3.694e-05 | 0.0003278 | 0.125 | 0.0001717 | 106.4 | 0.03295 | 0.0173 | 0.08768 | 0.02983 | 970.71 | 1297341.01679 | -| DARUSDT | 0.0005585 | 0.001014 | 0.07951 | 0.0 | 148.1 | 0.0185 | 0.02361 | 0.1088 | 0.04794 | 518.88 | 1301278.16611 | -| C98USDT | 0.0004076 | 0.0008357 | 0.04252 | 0.02391 | 60.17 | 0.01126 | 0.02815 | 0.164 | 0.05047 | 766.88 | 1311195.85546 | -| XLMUSDT | 0.0007159 | 0.001587 | 0.06462 | 0.01242 | 158.8 | 0.01056 | 0.0182 | 0.1126 | 0.0819 | 1348.67 | 1311994.83262 | -| MASKUSDT | 0.0004518 | 0.0008158 | 0.09157 | 0.06474 | 67.92 | 0.0233 | 0.0332 | 0.1732 | 0.07994 | 763.88 | 1320717.6512 | -| 1000XECUSDT | 0.0004221 | 0.0006318 | 0.07523 | 0.02737 | 198.3 | 0.01838 | 0.02291 | 0.1435 | 0.07326 | 742.88 | 1351494.83291 | -| SRMUSDT | 7.177e-05 | 0.000405 | 0.04062 | 0.01627 | 209.1 | 0.02922 | 0.02773 | 0.1414 | 0.095 | 1118.92 | 1362403.74087 | -| GMTUSDT | 0.0003877 | 0.0006827 | 0.04152 | 0.006059 | 218.3 | 0.0269 | 0.02616 | 0.1082 | 0.07298 | 563.83 | 1371547.18751 | -| GTCUSDT | 0.0002572 | 0.0004403 | 0.05849 | 0.002973 | 250.8 | 0.02516 | 0.02424 | 0.1207 | 0.08477 | 840.88 | 1404096.38637 | -| IOTXUSDT | 0.0003457 | 0.0006171 | 0.08323 | 0.02284 | 261.4 | 0.02387 | 0.02792 | 0.1772 | 0.07507 | 778.88 | 1441940.53998 | -| LPTUSDT | 0.0002542 | 0.0003561 | 0.04774 | 0.01054 | 297.9 | 0.03778 | 0.03669 | 0.1422 | 0.0998 | 687.88 | 1451957.91576 | -| BAKEUSDT | 0.0003081 | 0.000427 | 0.0601 | 0.02894 | 165.5 | 0.02926 | 0.03129 | 0.2029 | 0.1461 | 863.71 | 1832488.35482 | -| RAYUSDT | 3.185e-05 | 0.000217 | 0.05285 | 0.02638 | 294.4 | 0.0193 | 0.02736 | 0.1311 | 0.1641 | 770.88 | 2088559.91008 | -| KLAYUSDT | 0.0001312 | 0.0002008 | 0.1109 | 0.01259 | 1098.0 | 0.05804 | 0.07593 | 0.3673 | 0.09049 | 717.88 | 2473192.09895 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| WLDUSDT | 0.006774 | 0.005385 | 0.1073 | 0.06107 | 24.03 | 0.008493 | 0.01682 | 0.1335 | 0.00795 | 67.5 | 1297211.49323 | -| AGLDUSDT | 0.005155 | 0.003911 | 0.1144 | 0.05692 | 25.6 | 0.007889 | 0.01259 | 0.0959 | 0.01118 | 62.92 | 1297211.49485 | -| MAVUSDT | 0.004986 | 0.003857 | 0.1038 | 0.05898 | 55.43 | 0.01077 | 0.01421 | 0.08877 | 0.0111 | 92.5 | 1297211.49501 | -| ARKMUSDT | 0.004418 | 0.005339 | 0.08541 | 0.03583 | 25.63 | 0.006576 | 0.006225 | 0.04328 | 0.005201 | 63.92 | 1297211.49558 | -| PERPUSDT | 0.004217 | 0.001532 | 0.03828 | 0.004618 | 78.68 | 0.01147 | 0.008804 | 0.03858 | 0.03422 | 207.5 | 1297211.49578 | -| LEVERUSDT | 0.003971 | 0.002208 | 0.06135 | 0.01407 | 83.5 | 0.01113 | 0.01025 | 0.05592 | 0.006923 | 183.5 | 1297211.49603 | -| COMBOUSDT | 0.003566 | 0.003251 | 0.1223 | 0.04984 | 70.48 | 0.007452 | 0.01212 | 0.07695 | 0.006142 | 119.5 | 1297211.49643 | -| XVSUSDT | 0.003493 | 0.00229 | 0.1372 | 0.005393 | 108.8 | 0.01513 | 0.02564 | 0.1391 | 0.03769 | 169.92 | 1297211.49651 | -| YGGUSDT | 0.003321 | 0.00565 | 0.1305 | 0.08122 | 27.07 | 0.009766 | 0.01545 | 0.1094 | 0.01436 | 55.88 | 1297211.49668 | -| EDUUSDT | 0.003054 | 0.003761 | 0.1379 | 0.05873 | 52.03 | 0.009198 | 0.01752 | 0.1133 | 0.005816 | 152.5 | 1297211.49695 | -| BLURUSDT | 0.003035 | 0.003958 | 0.1293 | 0.0461 | 123.4 | 0.008191 | 0.009817 | 0.06975 | 0.002669 | 154.5 | 1297211.49696 | -| IDEXUSDT | 0.002743 | 0.002757 | 0.1329 | 0.0443 | 43.13 | 0.007503 | 0.01061 | 0.0656 | 0.006864 | 149.5 | 1297211.49726 | -| SPELLUSDT | 0.002542 | 0.002789 | 0.1256 | 0.05201 | 89.73 | 0.008372 | 0.01711 | 0.1166 | 0.01507 | 388.5 | 1297211.49746 | -| KEYUSDT | 0.002445 | 0.003136 | 0.1024 | 0.05122 | 69.13 | 0.01065 | 0.01291 | 0.07515 | 0.01219 | 128.5 | 1297211.49755 | -| TRUUSDT | 0.002399 | 0.003193 | 0.1405 | 0.02966 | 110.7 | 0.01474 | 0.01244 | 0.06243 | 0.005784 | 206.5 | 1297211.4976 | -| PENDLEUSDT | 0.002352 | 0.001955 | 0.04709 | 0.003257 | 85.5 | 0.01252 | 0.01018 | 0.04682 | 0.0 | 63.92 | 1297211.49765 | -| RADUSDT | 0.002314 | 0.003291 | 0.1214 | 0.03215 | 80.2 | 0.007953 | 0.0108 | 0.083 | 0.003268 | 142.5 | 1297211.49769 | -| AMBUSDT | 0.002302 | 0.002034 | 0.04865 | 0.01203 | 71.85 | 0.008394 | 0.01321 | 0.06933 | 0.01943 | 183.5 | 1297211.4977 | -| XVGUSDT | 0.002282 | 0.003803 | 0.06663 | 0.02407 | 72.07 | 0.01296 | 0.01788 | 0.07156 | 0.02484 | 86.5 | 1297211.49772 | -| LQTYUSDT | 0.002244 | 0.003662 | 0.0793 | 0.01904 | 50.98 | 0.009702 | 0.01501 | 0.0978 | 0.004614 | 203.5 | 1297211.49776 | -| HOOKUSDT | 0.002215 | 0.00339 | 0.1299 | 0.07736 | 53.87 | 0.01262 | 0.01648 | 0.1078 | 0.06535 | 249.88 | 1297211.49779 | -| BNXUSDT | 0.002197 | 0.002691 | 0.09484 | 0.03399 | 56.52 | 0.01022 | 0.01198 | 0.07581 | 0.008145 | 219.42 | 1297211.4978 | -| SSVUSDT | 0.002126 | 0.003258 | 0.1432 | 0.08964 | 39.93 | 0.01001 | 0.01604 | 0.1135 | 0.01684 | 217.5 | 1297211.49787 | -| UMAUSDT | 0.001956 | 0.002576 | 0.1138 | 0.01345 | 79.52 | 0.007602 | 0.006251 | 0.03796 | 0.002047 | 142.5 | 1297211.49804 | -| NMRUSDT | 0.001888 | 0.002636 | 0.04256 | 0.002512 | 87.25 | 0.008201 | 0.007878 | 0.04417 | 0.001024 | 99.5 | 1297211.49811 | -| TLMUSDT | 0.00188 | 0.001748 | 0.0892 | 0.02474 | 77.03 | 0.008484 | 0.007898 | 0.03919 | 0.004924 | 183.5 | 1297211.49812 | -| LUNA2USDT | 0.001787 | 0.002989 | 0.08438 | 0.01061 | 61.92 | 0.0091 | 0.01815 | 0.09915 | 0.04664 | 384.88 | 1297211.49821 | -| BLZUSDT | 0.001779 | 0.001557 | 0.04153 | 0.01449 | 103.8 | 0.01902 | 0.02048 | 0.1099 | 0.06059 | 1106.71 | 1297211.49822 | -| MDTUSDT | 0.001784 | 0.002189 | 0.08579 | 0.004096 | 95.92 | 0.01355 | 0.01509 | 0.07171 | 0.02051 | 91.5 | 1297211.49822 | -| FLMUSDT | 0.001775 | 0.0009785 | 0.02802 | 0.004339 | 122.6 | 0.01629 | 0.01569 | 0.07435 | 0.0273 | 1094.71 | 1297211.49823 | -| 1000FLOKIUSDT | 0.001743 | 0.002263 | 0.1138 | 0.06376 | 62.42 | 0.01152 | 0.02409 | 0.1458 | 0.06116 | 146.33 | 1297211.49826 | -| STMXUSDT | 0.0017 | 0.001613 | 0.05783 | 0.02012 | 118.0 | 0.01497 | 0.01641 | 0.104 | 0.05336 | 921.71 | 1297211.4983 | -| TOMOUSDT | 0.001662 | 0.001477 | 0.07051 | 0.02392 | 117.2 | 0.01982 | 0.02139 | 0.1133 | 0.04908 | 1081.71 | 1297211.49834 | -| HFTUSDT | 0.00162 | 0.001618 | 0.1291 | 0.007553 | 66.35 | 0.01244 | 0.01737 | 0.08875 | 0.09843 | 176.5 | 1297211.49838 | -| HIGHUSDT | 0.001621 | 0.002628 | 0.1166 | 0.01525 | 78.53 | 0.01449 | 0.0152 | 0.07421 | 0.04232 | 234.92 | 1297211.49838 | -| GALUSDT | 0.001611 | 0.003207 | 0.1111 | 0.05732 | 61.97 | 0.01327 | 0.0207 | 0.1142 | 0.01827 | 512.42 | 1297211.49839 | -| 1000LUNCUSDT | 0.001606 | 0.002801 | 0.09171 | 0.008431 | 62.92 | 0.009338 | 0.01793 | 0.1063 | 0.04232 | 385.46 | 1297211.49839 | -| ASTRUSDT | 0.001597 | 0.001508 | 0.1026 | 0.0541 | 93.92 | 0.01432 | 0.0156 | 0.08374 | 0.07415 | 227.92 | 1297211.4984 | -| LITUSDT | 0.001584 | 0.002698 | 0.1249 | 0.05522 | 124.0 | 0.01983 | 0.02409 | 0.1498 | 0.05559 | 953.71 | 1297211.49842 | -| CTKUSDT | 0.001568 | 0.003701 | 0.1496 | 0.01936 | 111.0 | 0.0169 | 0.0266 | 0.1445 | 0.04744 | 1043.71 | 1297211.49843 | -| REEFUSDT | 0.001548 | 0.002648 | 0.117 | 0.03663 | 133.6 | 0.01327 | 0.02083 | 0.1494 | 0.09024 | 948.71 | 1297211.49845 | -| OCEANUSDT | 0.001521 | 0.002291 | 0.1437 | 0.04026 | 82.03 | 0.01772 | 0.02238 | 0.118 | 0.09558 | 1059.71 | 1297211.49848 | -| ANKRUSDT | 0.001524 | 0.003364 | 0.07456 | 0.01951 | 94.32 | 0.01029 | 0.01526 | 0.0965 | 0.01171 | 975.71 | 1297211.49848 | -| XEMUSDT | 0.001486 | 0.002512 | 0.1491 | 0.08575 | 110.4 | 0.01682 | 0.02622 | 0.1478 | 0.03426 | 940.71 | 1297211.49851 | -| ATAUSDT | 0.001472 | 0.002947 | 0.1392 | 0.0602 | 63.55 | 0.01484 | 0.02508 | 0.1484 | 0.0254 | 759.88 | 1297211.49853 | -| NKNUSDT | 0.001421 | 0.002501 | 0.1252 | 0.0367 | 140.4 | 0.01992 | 0.02707 | 0.15 | 0.05409 | 903.71 | 1297211.49858 | -| ACHUSDT | 0.001413 | 0.002326 | 0.06835 | 0.01272 | 71.98 | 0.009154 | 0.008413 | 0.03973 | 0.006053 | 219.42 | 1297211.49859 | -| SUIUSDT | 0.001396 | 0.002464 | 0.1208 | 0.01534 | 141.7 | 0.01175 | 0.01029 | 0.05374 | 0.005713 | 149.33 | 1297211.4986 | -| JASMYUSDT | 0.00134 | 0.002309 | 0.1181 | 0.0251 | 95.63 | 0.01674 | 0.02007 | 0.1032 | 0.04649 | 527.88 | 1297211.49866 | -| FETUSDT | 0.001327 | 0.002083 | 0.08882 | 0.0267 | 120.8 | 0.01458 | 0.01456 | 0.0815 | 0.03656 | 255.92 | 1297211.49867 | -| ONTUSDT | 0.001332 | 0.002234 | 0.1489 | 0.05163 | 103.0 | 0.01421 | 0.02167 | 0.1335 | 0.02026 | 1326.67 | 1297211.49867 | -| PHBUSDT | 0.001313 | 0.001636 | 0.1086 | 0.02273 | 116.7 | 0.01373 | 0.02153 | 0.1307 | 0.01401 | 225.42 | 1297211.49869 | -| BELUSDT | 0.001239 | 0.001737 | 0.07095 | 0.02285 | 66.72 | 0.01344 | 0.02487 | 0.1383 | 0.09356 | 1044.71 | 1297211.49876 | -| RSRUSDT | 0.001186 | 0.002631 | 0.07914 | 0.04117 | 78.0 | 0.01526 | 0.02227 | 0.146 | 0.02535 | 1074.71 | 1297211.49881 | -| ZRXUSDT | 0.00119 | 0.002209 | 0.109 | 0.06673 | 77.0 | 0.01588 | 0.02292 | 0.1327 | 0.01831 | 1192.62 | 1297211.49881 | -| CHRUSDT | 0.001165 | 0.002631 | 0.1053 | 0.05572 | 129.1 | 0.01967 | 0.02377 | 0.1494 | 0.08262 | 931.71 | 1297211.49884 | -| BAKEUSDT | 0.001162 | 0.001288 | 0.0625 | 0.02094 | 108.6 | 0.01612 | 0.02136 | 0.1405 | 0.07623 | 863.71 | 1297211.49884 | -| SFPUSDT | 0.001155 | 0.002192 | 0.06461 | 0.02773 | 87.48 | 0.01389 | 0.01628 | 0.1221 | 0.09215 | 946.71 | 1297211.49885 | -| AGIXUSDT | 0.001137 | 0.002354 | 0.09698 | 0.02569 | 40.82 | 0.00911 | 0.01474 | 0.09209 | 0.007954 | 225.42 | 1297211.49886 | -| GRTUSDT | 0.001134 | 0.00239 | 0.1072 | 0.03411 | 74.6 | 0.01797 | 0.02348 | 0.1436 | 0.01787 | 1013.71 | 1297211.49887 | -| ZENUSDT | 0.001118 | 0.00198 | 0.0908 | 0.04356 | 102.7 | 0.01702 | 0.02145 | 0.1412 | 0.01782 | 1038.71 | 1297211.49888 | -| RENUSDT | 0.00112 | 0.001926 | 0.1034 | 0.03084 | 116.3 | 0.01996 | 0.0227 | 0.149 | 0.03625 | 1080.71 | 1297211.49888 | -| HBARUSDT | 0.001105 | 0.0018 | 0.1166 | 0.03853 | 95.32 | 0.01741 | 0.01856 | 0.097 | 0.01507 | 926.71 | 1297211.49889 | -| RDNTUSDT | 0.001111 | 0.001534 | 0.04182 | 0.007745 | 58.57 | 0.007649 | 0.007533 | 0.03305 | 0.0004912 | 177.5 | 1297211.49889 | -| DGBUSDT | 0.001086 | 0.002034 | 0.1383 | 0.06928 | 91.83 | 0.01576 | 0.02285 | 0.135 | 0.03784 | 891.88 | 1297211.49891 | -| SUSHIUSDT | 0.001077 | 0.002553 | 0.09019 | 0.04216 | 96.47 | 0.01312 | 0.0175 | 0.12 | 0.05162 | 1119.71 | 1297211.49892 | -| ALGOUSDT | 0.001051 | 0.002311 | 0.1109 | 0.05448 | 95.58 | 0.01505 | 0.02153 | 0.1461 | 0.03924 | 1200.62 | 1297211.49895 | -| LINAUSDT | 0.001028 | 0.001168 | 0.05977 | 0.02442 | 112.9 | 0.01978 | 0.02401 | 0.1467 | 0.03711 | 924.71 | 1297211.49897 | -| NEOUSDT | 0.001017 | 0.001606 | 0.1252 | 0.03552 | 118.5 | 0.01504 | 0.02089 | 0.1136 | 0.03406 | 1320.67 | 1297211.49898 | -| 1INCHUSDT | 0.00101 | 0.002096 | 0.1286 | 0.04061 | 122.7 | 0.01992 | 0.02329 | 0.1257 | 0.01425 | 1007.58 | 1297211.49899 | -| CELRUSDT | 0.001001 | 0.002386 | 0.08768 | 0.044 | 74.98 | 0.01268 | 0.02281 | 0.1487 | 0.06469 | 914.71 | 1297211.499 | -| HOTUSDT | 0.0009893 | 0.002268 | 0.1334 | 0.04669 | 133.4 | 0.01962 | 0.0244 | 0.1234 | 0.07775 | 913.71 | 1297211.49901 | -| YFIUSDT | 0.0009905 | 0.002449 | 0.09527 | 0.04175 | 112.5 | 0.01456 | 0.0199 | 0.1405 | 0.02192 | 1123.71 | 1297211.49901 | -| API3USDT | 0.0009833 | 0.001219 | 0.07099 | 0.01859 | 84.7 | 0.01296 | 0.02003 | 0.1109 | 0.01925 | 584.88 | 1297211.49902 | -| TRBUSDT | 0.0009673 | 0.00127 | 0.0595 | 0.009034 | 113.9 | 0.01969 | 0.02717 | 0.1481 | 0.07761 | 1120.71 | 1297211.49903 | -| ENSUSDT | 0.0009735 | 0.002459 | 0.1239 | 0.0418 | 87.33 | 0.01258 | 0.01585 | 0.1035 | 0.06874 | 668.88 | 1297211.49903 | -| MINAUSDT | 0.0009583 | 0.002033 | 0.06328 | 0.00302 | 78.3 | 0.008351 | 0.01026 | 0.04746 | 0.02019 | 234.54 | 1297211.49904 | -| DARUSDT | 0.0009576 | 0.001749 | 0.1221 | 0.0603 | 94.62 | 0.01545 | 0.01961 | 0.1197 | 0.041 | 518.88 | 1297211.49904 | -| ENJUSDT | 0.0009382 | 0.001925 | 0.09898 | 0.02493 | 81.15 | 0.01563 | 0.02345 | 0.1372 | 0.04695 | 1094.71 | 1297211.49906 | -| KAVAUSDT | 0.0009393 | 0.001592 | 0.07035 | 0.02812 | 124.9 | 0.01609 | 0.02327 | 0.1398 | 0.03903 | 1158.71 | 1297211.49906 | -| COTIUSDT | 0.0009406 | 0.002122 | 0.09107 | 0.05524 | 94.97 | 0.01466 | 0.02213 | 0.143 | 0.01915 | 933.71 | 1297211.49906 | -| EOSUSDT | 0.0009313 | 0.001577 | 0.1191 | 0.05359 | 142.0 | 0.0141 | 0.01877 | 0.1314 | 0.04547 | 1360.67 | 1297211.49907 | -| SXPUSDT | 0.0009339 | 0.001708 | 0.06993 | 0.02531 | 92.05 | 0.01601 | 0.02227 | 0.1294 | 0.04644 | 1165.62 | 1297211.49907 | -| OGNUSDT | 0.0009172 | 0.001144 | 0.05856 | 0.00978 | 142.7 | 0.01962 | 0.02566 | 0.1492 | 0.06331 | 911.71 | 1297211.49908 | -| RLCUSDT | 0.0009248 | 0.001839 | 0.08419 | 0.01842 | 84.98 | 0.01674 | 0.0216 | 0.1322 | 0.01812 | 1155.71 | 1297211.49908 | -| ZECUSDT | 0.0008991 | 0.001859 | 0.09891 | 0.06372 | 104.5 | 0.01415 | 0.02431 | 0.1435 | 0.02933 | 1332.67 | 1297211.4991 | -| DUSKUSDT | 0.0008879 | 0.001581 | 0.0489 | 0.01486 | 81.68 | 0.01188 | 0.01211 | 0.05427 | 0.006545 | 630.88 | 1297211.49911 | -| SNXUSDT | 0.0008898 | 0.001154 | 0.04899 | 0.007415 | 121.9 | 0.01954 | 0.01969 | 0.1046 | 0.02192 | 1140.71 | 1297211.49911 | -| KNCUSDT | 0.000867 | 0.001184 | 0.062 | 0.02256 | 123.3 | 0.01959 | 0.02056 | 0.1423 | 0.01925 | 1194.67 | 1297211.49913 | -| RUNEUSDT | 0.0008624 | 0.0009293 | 0.03874 | 0.01794 | 132.7 | 0.01916 | 0.0216 | 0.1201 | 0.01431 | 1119.71 | 1297211.49914 | -| DASHUSDT | 0.0008486 | 0.00158 | 0.1262 | 0.04886 | 114.3 | 0.01629 | 0.01751 | 0.1195 | 0.02883 | 1333.67 | 1297211.49915 | -| CRVUSDT | 0.0008449 | 0.001802 | 0.09109 | 0.03722 | 99.17 | 0.01838 | 0.02518 | 0.1493 | 0.0611 | 1122.71 | 1297211.49916 | -| ONEUSDT | 0.0008388 | 0.001888 | 0.06703 | 0.01872 | 84.35 | 0.0136 | 0.01376 | 0.07255 | 0.09195 | 925.71 | 1297211.49916 | -| LTCUSDT | 0.0008374 | 0.001331 | 0.1103 | 0.0604 | 128.7 | 0.01639 | 0.01894 | 0.1331 | 0.02145 | 1359.67 | 1297211.49916 | -| CKBUSDT | 0.0008371 | 0.001519 | 0.09053 | 0.005854 | 63.4 | 0.008521 | 0.009776 | 0.05564 | 0.003599 | 213.5 | 1297211.49916 | -| CELOUSDT | 0.000833 | 0.001243 | 0.07383 | 0.0303 | 130.1 | 0.0142 | 0.01496 | 0.08941 | 0.01631 | 732.88 | 1297211.49917 | -| DEFIUSDT | 0.0008222 | 0.001533 | 0.1398 | 0.06335 | 78.6 | 0.01936 | 0.02197 | 0.1261 | 0.0234 | 1126.71 | 1297211.49918 | -| APEUSDT | 0.000817 | 0.001592 | 0.0688 | 0.04557 | 85.97 | 0.01234 | 0.02493 | 0.1492 | 0.06616 | 561.38 | 1297211.49918 | -| CTSIUSDT | 0.0008045 | 0.001424 | 0.06047 | 0.02107 | 82.15 | 0.01352 | 0.01773 | 0.09303 | 0.03198 | 703.88 | 1297211.4992 | -| LPTUSDT | 0.0007904 | 0.0006857 | 0.05277 | 0.01866 | 118.2 | 0.01919 | 0.02226 | 0.1211 | 0.03225 | 687.88 | 1297211.49921 | -| ALICEUSDT | 0.0007793 | 0.001822 | 0.09269 | 0.02717 | 133.8 | 0.01833 | 0.02259 | 0.1478 | 0.0853 | 927.88 | 1297211.49922 | -| AVAXUSDT | 0.0007677 | 0.002139 | 0.09078 | 0.04652 | 97.53 | 0.01565 | 0.02001 | 0.1314 | 0.01846 | 1100.71 | 1297211.49923 | -| COMPUSDT | 0.0007701 | 0.0009337 | 0.05837 | 0.01243 | 108.2 | 0.01768 | 0.02163 | 0.1152 | 0.05627 | 1186.62 | 1297211.49923 | -| ALPHAUSDT | 0.0007548 | 0.001518 | 0.06841 | 0.01972 | 131.1 | 0.01971 | 0.02283 | 0.1442 | 0.03382 | 1039.71 | 1297211.49925 | -| FOOTBALLUSDT | 0.0007501 | 0.00166 | 0.1142 | 0.05955 | 94.82 | 0.0097 | 0.01712 | 0.1256 | 0.0234 | 393.88 | 1297211.49925 | -| GMXUSDT | 0.0007449 | 0.0008501 | 0.06815 | 0.02599 | 64.7 | 0.01046 | 0.009385 | 0.03951 | 0.005888 | 224.42 | 1297211.49926 | -| SKLUSDT | 0.0007443 | 0.00181 | 0.06614 | 0.01269 | 123.4 | 0.019 | 0.01933 | 0.09544 | 0.04504 | 1024.71 | 1297211.49926 | -| JOEUSDT | 0.0007285 | 0.0007828 | 0.08947 | 0.04154 | 94.57 | 0.01603 | 0.022 | 0.1044 | 0.0999 | 184.5 | 1297211.49927 | -| LINKUSDT | 0.0007265 | 0.001576 | 0.1075 | 0.04337 | 138.6 | 0.01978 | 0.01878 | 0.0898 | 0.0618 | 1351.67 | 1297211.49927 | -| TUSDT | 0.0007232 | 0.001284 | 0.05005 | 0.02322 | 75.9 | 0.007469 | 0.01205 | 0.07005 | 0.006548 | 240.46 | 1297211.49928 | -| INJUSDT | 0.0007079 | 0.001615 | 0.05889 | 0.03016 | 67.67 | 0.01294 | 0.02154 | 0.1409 | 0.01599 | 408.92 | 1297211.49929 | -| FXSUSDT | 0.0006862 | 0.001151 | 0.123 | 0.08254 | 59.42 | 0.01529 | 0.01735 | 0.1031 | 0.0867 | 252.88 | 1297211.49931 | -| MTLUSDT | 0.0006858 | 0.0009516 | 0.05392 | 0.01785 | 107.6 | 0.01891 | 0.02787 | 0.1494 | 0.02845 | 912.71 | 1297211.49931 | -| DENTUSDT | 0.00067 | 0.001405 | 0.09067 | 0.02759 | 136.6 | 0.01982 | 0.02494 | 0.1367 | 0.05918 | 919.83 | 1297211.49933 | -| VETUSDT | 0.00067 | 0.00149 | 0.1205 | 0.05625 | 101.6 | 0.01654 | 0.0248 | 0.1451 | 0.06063 | 1323.67 | 1297211.49933 | -| ICPUSDT | 0.0006744 | 0.00115 | 0.08868 | 0.02163 | 68.43 | 0.0131 | 0.01658 | 0.0939 | 0.009525 | 367.92 | 1297211.49933 | -| UNIUSDT | 0.0006702 | 0.001573 | 0.06924 | 0.03919 | 110.8 | 0.01453 | 0.02095 | 0.1409 | 0.03707 | 1105.71 | 1297211.49933 | -| XTZUSDT | 0.0006588 | 0.001444 | 0.1133 | 0.04568 | 94.78 | 0.01948 | 0.02473 | 0.146 | 0.08334 | 1331.67 | 1297211.49934 | -| QNTUSDT | 0.0006374 | 0.001718 | 0.1413 | 0.08431 | 86.95 | 0.01067 | 0.0168 | 0.1083 | 0.0326 | 344.92 | 1297211.49936 | -| MATICUSDT | 0.0006363 | 0.001708 | 0.0732 | 0.0327 | 127.0 | 0.01384 | 0.01777 | 0.1301 | 0.03018 | 1071.71 | 1297211.49936 | -| LDOUSDT | 0.0006362 | 0.001861 | 0.08959 | 0.04642 | 69.62 | 0.01314 | 0.01613 | 0.1056 | 0.008291 | 372.5 | 1297211.49936 | -| QTUMUSDT | 0.0006308 | 0.001095 | 0.04763 | 0.02267 | 117.3 | 0.01378 | 0.02136 | 0.148 | 0.01745 | 1317.67 | 1297211.49937 | -| CHZUSDT | 0.0006341 | 0.001671 | 0.08135 | 0.01814 | 94.27 | 0.01801 | 0.02277 | 0.1256 | 0.04646 | 980.71 | 1297211.49937 | -| MAGICUSDT | 0.0006298 | 0.001117 | 0.06021 | 0.04 | 86.47 | 0.01342 | 0.01808 | 0.1144 | 0.02102 | 247.88 | 1297211.49937 | -| GTCUSDT | 0.0006188 | 0.001146 | 0.05096 | 0.01764 | 73.43 | 0.01663 | 0.02093 | 0.1156 | 0.02362 | 840.88 | 1297211.49938 | -| BCHUSDT | 0.0006177 | 0.0006112 | 0.05995 | 0.007097 | 140.7 | 0.01707 | 0.01907 | 0.1036 | 0.03624 | 1368.0 | 1297211.49938 | -| XMRUSDT | 0.0006213 | 0.001488 | 0.1003 | 0.04302 | 124.8 | 0.0119 | 0.01544 | 0.1029 | 0.04172 | 1334.67 | 1297211.49938 | -| SANDUSDT | 0.0006125 | 0.001693 | 0.06949 | 0.02291 | 103.0 | 0.01932 | 0.0244 | 0.1276 | 0.05677 | 976.71 | 1297211.49939 | -| IDUSDT | 0.0006142 | 0.001112 | 0.01782 | 0.001313 | 54.07 | 0.009159 | 0.008089 | 0.03624 | 0.0 | 190.42 | 1297211.49939 | -| ARPAUSDT | 0.0006005 | 0.0008087 | 0.01349 | 0.004865 | 95.47 | 0.005808 | 0.007837 | 0.03425 | 0.01017 | 710.88 | 1297211.4994 | -| STORJUSDT | 0.0006029 | 0.0009682 | 0.04668 | 0.00568 | 129.6 | 0.01993 | 0.02507 | 0.1243 | 0.02398 | 1107.71 | 1297211.4994 | -| IOTAUSDT | 0.0005869 | 0.001314 | 0.06556 | 0.03413 | 89.73 | 0.01273 | 0.02256 | 0.146 | 0.0759 | 1325.67 | 1297211.49941 | -| NEARUSDT | 0.0005833 | 0.001352 | 0.08476 | 0.02399 | 119.4 | 0.01953 | 0.02083 | 0.09888 | 0.02297 | 1078.67 | 1297211.49942 | -| BATUSDT | 0.0005797 | 0.001008 | 0.07404 | 0.006322 | 126.8 | 0.01953 | 0.02279 | 0.1118 | 0.08616 | 1324.67 | 1297211.49942 | -| THETAUSDT | 0.0005821 | 0.001309 | 0.05815 | 0.02075 | 77.53 | 0.01153 | 0.01348 | 0.07596 | 0.03059 | 1220.67 | 1297211.49942 | -| ATOMUSDT | 0.0005749 | 0.001378 | 0.09782 | 0.02656 | 93.52 | 0.01736 | 0.02327 | 0.1273 | 0.05004 | 1330.5 | 1297211.49943 | -| ROSEUSDT | 0.0005475 | 0.00135 | 0.05963 | 0.03116 | 69.28 | 0.01048 | 0.01717 | 0.1128 | 0.05363 | 637.88 | 1297211.49945 | -| MKRUSDT | 0.0005476 | 0.0006831 | 0.05527 | 0.01587 | 136.1 | 0.01578 | 0.01885 | 0.1041 | 0.03996 | 1141.71 | 1297211.49945 | -| C98USDT | 0.0005357 | 0.0008921 | 0.05474 | 0.001956 | 108.4 | 0.01822 | 0.02043 | 0.1004 | 0.02278 | 766.88 | 1297211.49946 | -| IOSTUSDT | 0.0005269 | 0.001142 | 0.07319 | 0.02794 | 102.5 | 0.01631 | 0.02178 | 0.1458 | 0.0561 | 1316.67 | 1297211.49947 | -| ARBUSDT | 0.0005211 | 0.0007633 | 0.06296 | 0.003063 | 109.3 | 0.01485 | 0.01951 | 0.1012 | 0.009619 | 190.38 | 1297211.49948 | -| IMXUSDT | 0.0004955 | 0.00102 | 0.04543 | 0.006503 | 123.6 | 0.01562 | 0.01608 | 0.07959 | 0.008299 | 595.88 | 1297211.4995 | -| KSMUSDT | 0.0004858 | 0.001244 | 0.1035 | 0.02219 | 122.2 | 0.01953 | 0.02734 | 0.1466 | 0.03806 | 1079.71 | 1297211.49951 | -| DOTUSDT | 0.0004792 | 0.001279 | 0.07286 | 0.02685 | 133.3 | 0.01367 | 0.01394 | 0.07814 | 0.044 | 1132.71 | 1297211.49952 | -| ICXUSDT | 0.0004801 | 0.000839 | 0.04629 | 0.01075 | 129.8 | 0.01951 | 0.02006 | 0.09637 | 0.01238 | 1108.71 | 1297211.49952 | -| DYDXUSDT | 0.0004746 | 0.0009777 | 0.0452 | 0.02084 | 90.85 | 0.01512 | 0.02168 | 0.1288 | 0.04522 | 749.88 | 1297211.49953 | -| WOOUSDT | 0.0004631 | 0.0008546 | 0.06196 | 0.01767 | 107.2 | 0.0184 | 0.02385 | 0.1499 | 0.09277 | 539.88 | 1297211.49954 | -| BALUSDT | 0.000435 | 0.000953 | 0.07195 | 0.01162 | 117.1 | 0.01971 | 0.01912 | 0.08764 | 0.07265 | 1122.71 | 1297211.49956 | -| SOLUSDT | 0.0004424 | 0.0007919 | 0.02986 | 0.0128 | 71.07 | 0.01198 | 0.02388 | 0.1165 | 0.01298 | 1109.71 | 1297211.49956 | -| CFXUSDT | 0.0004181 | 0.0008374 | 0.04923 | 0.01505 | 108.2 | 0.01589 | 0.01995 | 0.09862 | 0.02667 | 221.42 | 1297211.49958 | -| XLMUSDT | 0.0004111 | 0.000675 | 0.04682 | 0.001545 | 134.7 | 0.01702 | 0.01873 | 0.0933 | 0.01936 | 1348.67 | 1297211.49959 | -| PEOPLEUSDT | 0.000406 | 0.001063 | 0.03584 | 0.008206 | 102.9 | 0.01467 | 0.02342 | 0.1466 | 0.01583 | 644.83 | 1297211.49959 | -| OMGUSDT | 0.0003739 | 0.0005171 | 0.02536 | 0.001864 | 131.3 | 0.01994 | 0.01726 | 0.08261 | 0.05078 | 1184.62 | 1297211.49963 | -| 1000SHIBUSDT | 0.0003702 | 0.0009131 | 0.0183 | 0.004203 | 114.7 | 0.00879 | 0.01004 | 0.05454 | 0.003257 | 872.29 | 1297211.49963 | -| LRCUSDT | 0.0003598 | 0.0008071 | 0.04103 | 0.002985 | 131.8 | 0.01947 | 0.02299 | 0.1235 | 0.02191 | 1074.71 | 1297211.49964 | -| 1000XECUSDT | 0.0003642 | 0.0004286 | 0.0249 | 0.0006169 | 128.0 | 0.01507 | 0.01434 | 0.07527 | 0.01178 | 742.88 | 1297211.49964 | -| ADAUSDT | 0.0003612 | 0.0007211 | 0.05013 | 0.01318 | 141.2 | 0.01571 | 0.01755 | 0.08377 | 0.02077 | 1337.67 | 1297211.49964 | -| RVNUSDT | 0.0003576 | 0.0007674 | 0.06532 | 0.02937 | 124.3 | 0.01857 | 0.02625 | 0.1397 | 0.03876 | 947.71 | 1297211.49964 | -| AAVEUSDT | 0.0003285 | 0.0006249 | 0.05918 | 0.01052 | 103.9 | 0.01856 | 0.02374 | 0.1291 | 0.08677 | 1077.71 | 1297211.49967 | -| FLOWUSDT | 0.0003295 | 0.0006209 | 0.03734 | 0.01682 | 95.27 | 0.01135 | 0.01245 | 0.06074 | 0.03376 | 596.88 | 1297211.49967 | -| XRPUSDT | 0.0003211 | 0.0005003 | 0.02341 | 0.000214 | 133.1 | 0.01471 | 0.01509 | 0.07798 | 0.01391 | 1362.67 | 1297211.49968 | -| STXUSDT | 0.0003127 | 0.0007476 | 0.05993 | 0.03326 | 105.8 | 0.01517 | 0.02045 | 0.1291 | 0.06203 | 220.42 | 1297211.49969 | -| BANDUSDT | 0.0003022 | 0.0005602 | 0.03125 | 0.005326 | 139.0 | 0.01888 | 0.02321 | 0.1256 | 0.08785 | 1157.71 | 1297211.4997 | -| RNDRUSDT | 0.000272 | 0.0007026 | 0.02845 | 0.003487 | 95.35 | 0.014 | 0.01249 | 0.05799 | 0.005185 | 238.92 | 1297211.49973 | -| ARUSDT | 0.0002524 | 0.0006143 | 0.02631 | 0.007515 | 91.32 | 0.01607 | 0.02168 | 0.1319 | 0.03333 | 731.88 | 1297211.49975 | -| IOTXUSDT | 0.0002417 | 0.0006105 | 0.03725 | 0.006098 | 110.4 | 0.01374 | 0.01992 | 0.1128 | 0.02788 | 778.88 | 1297211.49976 | -| EGLDUSDT | 0.0002283 | 0.0005915 | 0.03175 | 0.003004 | 143.3 | 0.01637 | 0.01486 | 0.07302 | 0.0214 | 1109.71 | 1297211.49977 | -| STGUSDT | 0.000218 | 0.0003981 | 0.04815 | 0.01966 | 85.83 | 0.01479 | 0.02319 | 0.1492 | 0.09885 | 400.5 | 1297211.49978 | -| COCOSUSDT | 0.0002191 | 0.002191 | 0.1366 | 0.0378 | 111.4 | 0.01341 | 0.01939 | 0.1098 | 0.05524 | 220.42 | 1297211.49978 | -| ETHUSDT | 0.0002024 | 0.0004201 | 0.0708 | 0.0303 | 127.8 | 0.01642 | 0.01515 | 0.07721 | 0.08249 | 1368.0 | 1297211.4998 | -| 1000PEPEUSDT | 0.0001964 | 0.0003807 | 0.01106 | 0.0008482 | 70.75 | 0.01951 | 0.02272 | 0.1075 | 0.0 | 147.33 | 1297211.4998 | -| AXSUSDT | 0.0001842 | 0.0004385 | 0.02305 | 0.002797 | 126.0 | 0.01966 | 0.02227 | 0.1138 | 0.003181 | 1042.71 | 1297211.49982 | -| RAYUSDT | 0.0001555 | 0.001187 | 0.05198 | 0.02778 | 91.77 | 0.009409 | 0.008486 | 0.0618 | 0.00751 | 770.88 | 1297211.49984 | -| HNTUSDT | 0.0001548 | 0.0007362 | 0.03238 | 0.02156 | 78.63 | 0.01225 | 0.01841 | 0.088 | 0.01942 | 1095.71 | 1297211.49985 | -| BTSUSDT | 0.0001485 | 0.001233 | 0.06704 | 0.02515 | 111.1 | 0.009822 | 0.01874 | 0.1353 | 0.03298 | 970.71 | 1297211.49985 | -| FTTUSDT | 0.000144 | 0.00144 | 0.115 | 0.07991 | 49.72 | 0.01232 | 0.01602 | 0.1062 | 0.02802 | 532.88 | 1297211.49986 | -| DOGEUSDT | 0.0001369 | 0.0004106 | 0.02116 | 0.007967 | 138.3 | 0.01632 | 0.02146 | 0.1313 | 0.05483 | 1176.62 | 1297211.49986 | -| KLAYUSDT | 0.0001306 | 0.0002801 | 0.0378 | 0.01793 | 115.9 | 0.01627 | 0.01951 | 0.1172 | 0.09384 | 717.88 | 1297211.49987 | -| BLUEBIRDUSDT | 0.0001268 | 0.0002316 | 0.04319 | 0.01483 | 101.5 | 0.01117 | 0.01408 | 0.07403 | 0.05618 | 331.5 | 1297211.49987 | -| SCUSDT | 0.0001243 | 0.001243 | 0.1112 | 0.0272 | 60.58 | 0.006192 | 0.01472 | 0.1 | 0.05812 | 900.71 | 1297211.49988 | -| AUDIOUSDT | 0.0001208 | 0.0002222 | 0.02362 | 0.0008097 | 114.0 | 0.01848 | 0.01821 | 0.1067 | 0.01386 | 771.88 | 1297211.49988 | -| CVCUSDT | 0.0001202 | 0.000872 | 0.04465 | 0.02123 | 60.82 | 0.01395 | 0.02099 | 0.1496 | 0.05494 | 1051.71 | 1297211.49988 | -| BTCUSDT | 0.0001093 | 0.0002071 | 0.03331 | 0.01026 | 117.2 | 0.009358 | 0.009307 | 0.04406 | 0.0243 | 1368.0 | 1297211.49989 | -| BTCSTUSDT | 1.085e-05 | 0.0001085 | 0.07884 | 0.0003104 | 17.65 | 0.002394 | 0.0006701 | 0.005688 | 0.0 | 939.71 | 1297211.49999 | -| USDCUSDT | 8.161e-08 | 8.161e-07 | 0.0005174 | 0.0 | 50.25 | 0.002936 | 0.0006279 | 0.003025 | 0.0 | 201.29 | 1297211.5 | -| ETCUSDT | 0.0001783 | 0.0003891 | 0.02028 | 0.001663 | 142.2 | 0.02023 | 0.02246 | 0.1045 | 0.06783 | 1352.67 | 1297213.83692 | -| ANTUSDT | 0.0002578 | 0.0007464 | 0.08234 | 0.03888 | 87.12 | 0.02092 | 0.02521 | 0.1484 | 0.09869 | 641.83 | 1297220.74876 | -| SRMUSDT | 0.0001185 | 0.0007616 | 0.1468 | 0.01746 | 98.15 | 0.02094 | 0.0203 | 0.1274 | 0.05073 | 1118.92 | 1297220.92961 | -| CVXUSDT | 3.725e-05 | 0.0003693 | 0.03816 | 0.0002237 | 124.5 | 0.02237 | 0.02261 | 0.0872 | 0.07841 | 372.5 | 1297235.17807 | -| APTUSDT | 0.0001458 | 0.0002467 | 0.0395 | 0.01349 | 138.8 | 0.0239 | 0.03388 | 0.1496 | 0.07454 | 345.92 | 1297638.70307 | -| FILUSDT | 0.0001606 | 0.0003268 | 0.03894 | 0.01237 | 161.9 | 0.02921 | 0.02515 | 0.1455 | 0.07268 | 1077.75 | 1315253.57766 | -| WAVESUSDT | 0.0003024 | 0.0005368 | 0.03707 | 0.01025 | 227.0 | 0.03001 | 0.02795 | 0.1359 | 0.02451 | 1142.71 | 1380311.64432 | -| OPUSDT | 0.0002273 | 0.0005363 | 0.03055 | 0.004635 | 231.8 | 0.02672 | 0.02172 | 0.102 | 0.001797 | 485.42 | 1385112.03106 | -| TRXUSDT | 6.404e-05 | 0.0001646 | 0.03046 | 0.003601 | 234.6 | 0.01062 | 0.01506 | 0.08513 | 0.08674 | 1353.67 | 1387794.83327 | -| MASKUSDT | 0.0002171 | 0.0004851 | 0.03934 | 0.01598 | 155.6 | 0.03035 | 0.03618 | 0.2923 | 0.07894 | 763.88 | 1451753.49104 | -| BTCDOMUSDT | 3.048e-05 | 6.297e-05 | 0.02236 | 0.001053 | 353.7 | 0.006742 | 0.005949 | 0.02496 | 0.02629 | 830.88 | 1506878.16664 | -| MANAUSDT | 0.0003944 | 0.001317 | 0.1249 | 0.101 | 127.2 | 0.03466 | 0.07035 | 0.3225 | 0.3462 | 928.71 | 3936396.1141 | -| FTMUSDT | 8.24e-05 | 0.0004748 | 0.0305 | 0.001175 | 401.6 | 0.03152 | 0.0236 | 0.1043 | 0.6145 | 1099.71 | 6700373.44011 | -| BNBUSDT | 4.99e-05 | 4.414e-05 | 0.03366 | 9.415e-05 | 1071.0 | 0.0366 | 0.02573 | 0.1046 | 0.8564 | 1327.67 | 9787934.53705 | -| UNFIUSDT | -0.001441 | -0.01441 | 0.1008 | 0.04325 | 94.3 | 0.03175 | 0.04011 | 0.2322 | 0.991 | 951.71 | 10290134.4178 | -| GMTUSDT | -0.002421 | -0.02421 | 0.002062 | 0.001626 | 11.25 | 0.2113 | 0.1268 | 0.2113 | 1.0 | 563.83 | 10370135.4311 | -| ZILUSDT | -0.003529 | -0.01146 | 0.1107 | 0.01116 | 37.25 | 0.01357 | 0.02086 | 0.1122 | 1.041 | 1198.62 | 10704589.1336 | -| GALAUSDT | -0.001845 | -0.01845 | 0.0727 | 0.06897 | 12.35 | 0.03856 | 0.0529 | 0.15 | 1.251 | 741.88 | 12807778.7932 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000FLOKIUSDT.json deleted file mode 100644 index 38a63b754..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 981.6514396570116, - "auto_unstuck_ema_dist": -0.07018350355481316, - "auto_unstuck_qty_pct": 0.014425809486348811, - "auto_unstuck_wallet_exposure_threshold": 0.26172772560656116, - "backwards_tp": true, - "ddown_factor": 0.9165856129359444, - "ema_span_0": 501.52203688838944, - "ema_span_1": 1290.8074650600395, - "enabled": true, - "initial_eprice_ema_dist": -0.08614914076934589, - "initial_qty_pct": 0.012486507274976593, - "markup_range": 0.0016733866080111447, - "min_markup": 0.009287182337365646, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03431430362243162, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5018352803710577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.2714698202462, - "auto_unstuck_ema_dist": 0.0013200273166717384, - "auto_unstuck_qty_pct": 0.013635012018200646, - "auto_unstuck_wallet_exposure_threshold": 0.5895246874364509, - "backwards_tp": true, - "ddown_factor": 2.698777215106034, - "ema_span_0": 562.4659497418509, - "ema_span_1": 1082.6632777060822, - "enabled": true, - "initial_eprice_ema_dist": 0.002619553444545556, - "initial_qty_pct": 0.021807398493813763, - "markup_range": 0.0053504596154854145, - "min_markup": 0.008241652500442504, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03863216249326461, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4885245164214947e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000LUNCUSDT.json deleted file mode 100644 index 4ecb7d06d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1097.1942814234271, - "auto_unstuck_ema_dist": -0.05946211172777736, - "auto_unstuck_qty_pct": 0.040927910615587836, - "auto_unstuck_wallet_exposure_threshold": 0.13848921369694134, - "backwards_tp": true, - "ddown_factor": 0.4895461003465067, - "ema_span_0": 995.1592222792989, - "ema_span_1": 148.67796657676706, - "enabled": true, - "initial_eprice_ema_dist": 0.0025907430812148837, - "initial_qty_pct": 0.027555693768254935, - "markup_range": 0.013771043478286404, - "min_markup": 0.009959700624035533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030863489767254032, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5420054288696603, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1245.734893700967, - "auto_unstuck_ema_dist": -0.036628475907984855, - "auto_unstuck_qty_pct": 0.051219617512150865, - "auto_unstuck_wallet_exposure_threshold": 0.3210560460285019, - "backwards_tp": true, - "ddown_factor": 0.9305626870119749, - "ema_span_0": 510.0454983758897, - "ema_span_1": 295.4459061417075, - "enabled": true, - "initial_eprice_ema_dist": -0.09531641777131623, - "initial_qty_pct": 0.015812462150276048, - "markup_range": 0.0014451870736427, - "min_markup": 0.00371743483267496, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04523865674951875, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2373533763330583e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000PEPEUSDT.json deleted file mode 100644 index 7648b05df..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1413.4517860157314, - "auto_unstuck_ema_dist": -0.08163853773380811, - "auto_unstuck_qty_pct": 0.010628897189508765, - "auto_unstuck_wallet_exposure_threshold": 0.512830178227829, - "backwards_tp": true, - "ddown_factor": 1.1290813047442747, - "ema_span_0": 807.0578447745643, - "ema_span_1": 887.272237862334, - "enabled": true, - "initial_eprice_ema_dist": 0.0029828309594787587, - "initial_qty_pct": 0.01997892217377579, - "markup_range": 0.00836529819565242, - "min_markup": 0.009998314935044132, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04234957183909329, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0154823192334643, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1132.1096124195237, - "auto_unstuck_ema_dist": -0.008374161359472818, - "auto_unstuck_qty_pct": 0.010742873425228549, - "auto_unstuck_wallet_exposure_threshold": 0.11425233652812053, - "backwards_tp": true, - "ddown_factor": 1.8126257897560152, - "ema_span_0": 54.83925050891028, - "ema_span_1": 73.4409190495824, - "enabled": true, - "initial_eprice_ema_dist": 0.0024439843960384617, - "initial_qty_pct": 0.016462517330693375, - "markup_range": 0.0027529146892932635, - "min_markup": 0.009920486679402622, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049127011282977466, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5925197032446106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000SHIBUSDT.json deleted file mode 100644 index 50ed7b31e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.5780116781566, - "auto_unstuck_ema_dist": -0.010533630915170723, - "auto_unstuck_qty_pct": 0.02501217133656904, - "auto_unstuck_wallet_exposure_threshold": 0.7487289036179982, - "backwards_tp": true, - "ddown_factor": 1.605453390144733, - "ema_span_0": 595.5254272296077, - "ema_span_1": 22.15894968181761, - "enabled": true, - "initial_eprice_ema_dist": -0.07656154588902128, - "initial_qty_pct": 0.010049153736021913, - "markup_range": 0.0011940584557397973, - "min_markup": 0.00416616360591481, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02212516964130459, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2324477374846932, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1439.1103830443853, - "auto_unstuck_ema_dist": -0.012186869449521864, - "auto_unstuck_qty_pct": 0.010263059927198417, - "auto_unstuck_wallet_exposure_threshold": 0.11113162677810223, - "backwards_tp": true, - "ddown_factor": 2.3678294978474606, - "ema_span_0": 175.84637076087722, - "ema_span_1": 1096.1616259206737, - "enabled": true, - "initial_eprice_ema_dist": -0.004579206061317028, - "initial_qty_pct": 0.010743421915198064, - "markup_range": 0.003105217426646186, - "min_markup": 0.0022880067090024787, - "n_close_orders": 10, - "rentry_pprice_dist": 0.046421397531376446, - "rentry_pprice_dist_wallet_exposure_weighting": 10.606085020833945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000XECUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000XECUSDT.json deleted file mode 100644 index 15964fd0b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1100.0766974686742, - "auto_unstuck_ema_dist": -0.08514628223981162, - "auto_unstuck_qty_pct": 0.014754655707221693, - "auto_unstuck_wallet_exposure_threshold": 0.5590674894077008, - "backwards_tp": true, - "ddown_factor": 2.384812053735167, - "ema_span_0": 1098.6132497794993, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011799827841045437, - "markup_range": 0.004116742277219143, - "min_markup": 0.007502084320029683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047706307783281277, - "rentry_pprice_dist_wallet_exposure_weighting": 4.36567006885887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1136.5639902572202, - "auto_unstuck_ema_dist": -0.03249431179808732, - "auto_unstuck_qty_pct": 0.010024693852036394, - "auto_unstuck_wallet_exposure_threshold": 0.4699506453067689, - "backwards_tp": true, - "ddown_factor": 2.529874825638356, - "ema_span_0": 40.37118344267121, - "ema_span_1": 172.14766479298305, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.02486026228576442, - "markup_range": 0.0006655785085890444, - "min_markup": 0.0020956238458942783, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030224319455928468, - "rentry_pprice_dist_wallet_exposure_weighting": 3.043221774162653, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1INCHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1INCHUSDT.json deleted file mode 100644 index 9b695fd0a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1052.5741701219606, - "auto_unstuck_ema_dist": -0.003920847299713015, - "auto_unstuck_qty_pct": 0.01007162584317069, - "auto_unstuck_wallet_exposure_threshold": 0.25039934646309026, - "backwards_tp": true, - "ddown_factor": 2.252008167660829, - "ema_span_0": 1305.7793335310762, - "ema_span_1": 1339.9745955301835, - "enabled": true, - "initial_eprice_ema_dist": -0.004741343084621099, - "initial_qty_pct": 0.01168569454282777, - "markup_range": 0.007025950093798064, - "min_markup": 0.006926547608866835, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04599814009331318, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4132239431731345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1435.6212509574864, - "auto_unstuck_ema_dist": -0.02510013549296421, - "auto_unstuck_qty_pct": 0.010561316199080555, - "auto_unstuck_wallet_exposure_threshold": 0.6914900613763959, - "backwards_tp": true, - "ddown_factor": 0.7148297240876768, - "ema_span_0": 806.817483260335, - "ema_span_1": 668.0962529929567, - "enabled": true, - "initial_eprice_ema_dist": -0.0034432416696724985, - "initial_qty_pct": 0.02683981829657858, - "markup_range": 0.008772367039441148, - "min_markup": 0.009079014494137078, - "n_close_orders": 3, - "rentry_pprice_dist": 0.016708378857278574, - "rentry_pprice_dist_wallet_exposure_weighting": 17.180108929415532, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AAVEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AAVEUSDT.json deleted file mode 100644 index 937976c03..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.104644866757, - "auto_unstuck_ema_dist": -0.0038321372694463452, - "auto_unstuck_qty_pct": 0.04388725615150827, - "auto_unstuck_wallet_exposure_threshold": 0.12611653382759694, - "backwards_tp": true, - "ddown_factor": 2.5285004438558074, - "ema_span_0": 116.68088600182612, - "ema_span_1": 567.6319865684702, - "enabled": true, - "initial_eprice_ema_dist": 0.00248450563840998, - "initial_qty_pct": 0.011413452841634109, - "markup_range": 0.012526572947638431, - "min_markup": 0.0027733140836693304, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03777837438570808, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3600865966053712, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1012.7632767918128, - "auto_unstuck_ema_dist": -0.0973547105359452, - "auto_unstuck_qty_pct": 0.022172358914450355, - "auto_unstuck_wallet_exposure_threshold": 0.11278498435670077, - "backwards_tp": true, - "ddown_factor": 1.7217812990562118, - "ema_span_0": 1009.8163494750469, - "ema_span_1": 1182.9588728369936, - "enabled": true, - "initial_eprice_ema_dist": -0.01482289849973252, - "initial_qty_pct": 0.01247500121142739, - "markup_range": 0.0036720374878811846, - "min_markup": 0.0035612363625727806, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0452852537561959, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6163824026808635, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ACHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ACHUSDT.json deleted file mode 100644 index 624e1f9c7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1291.345557999812, - "auto_unstuck_ema_dist": -0.00540478684178871, - "auto_unstuck_qty_pct": 0.015289894451198502, - "auto_unstuck_wallet_exposure_threshold": 0.20698079334339, - "backwards_tp": true, - "ddown_factor": 1.1954101388166567, - "ema_span_0": 896.4638329930463, - "ema_span_1": 784.8593068841126, - "enabled": true, - "initial_eprice_ema_dist": -0.0870997008866209, - "initial_qty_pct": 0.012310198013628162, - "markup_range": 0.0032333112637278525, - "min_markup": 0.00895162760919457, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04248353037113406, - "rentry_pprice_dist_wallet_exposure_weighting": 3.109541854359619, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.2714698202462, - "auto_unstuck_ema_dist": 0.0013200273166717384, - "auto_unstuck_qty_pct": 0.013635012018200646, - "auto_unstuck_wallet_exposure_threshold": 0.5895246874364509, - "backwards_tp": true, - "ddown_factor": 2.698777215106034, - "ema_span_0": 562.4659497418509, - "ema_span_1": 1082.6632777060822, - "enabled": true, - "initial_eprice_ema_dist": 0.002619553444545556, - "initial_qty_pct": 0.021807398493813763, - "markup_range": 0.0053504596154854145, - "min_markup": 0.008241652500442504, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03863216249326461, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4885245164214947e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ADAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ADAUSDT.json deleted file mode 100644 index 4ebe116ff..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 959.3933621132613, - "auto_unstuck_ema_dist": -0.03739002270588952, - "auto_unstuck_qty_pct": 0.019443258238830766, - "auto_unstuck_wallet_exposure_threshold": 0.6704584441710191, - "backwards_tp": true, - "ddown_factor": 2.045279670830235, - "ema_span_0": 282.2744831006996, - "ema_span_1": 1360.8419350294173, - "enabled": true, - "initial_eprice_ema_dist": -0.002213574653587452, - "initial_qty_pct": 0.010089198717637898, - "markup_range": 7.44385703419553e-05, - "min_markup": 0.0020412525153861005, - "n_close_orders": 11, - "rentry_pprice_dist": 0.01659986404565183, - "rentry_pprice_dist_wallet_exposure_weighting": 0.24146001070661147, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1066.2595873334237, - "auto_unstuck_ema_dist": -0.015090502372218921, - "auto_unstuck_qty_pct": 0.03260301507555985, - "auto_unstuck_wallet_exposure_threshold": 0.7681442055997482, - "backwards_tp": true, - "ddown_factor": 2.3725892964402804, - "ema_span_0": 1071.8679377026435, - "ema_span_1": 1016.0825715931339, - "enabled": true, - "initial_eprice_ema_dist": 0.002942559478912205, - "initial_qty_pct": 0.017000131542512315, - "markup_range": 0.0017476955511264416, - "min_markup": 0.0029577699393889666, - "n_close_orders": 14, - "rentry_pprice_dist": 0.023234104444286405, - "rentry_pprice_dist_wallet_exposure_weighting": 4.8565222730924935, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AGIXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AGIXUSDT.json deleted file mode 100644 index a21068991..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1175.7488875333333, - "auto_unstuck_ema_dist": -0.06773019924460438, - "auto_unstuck_qty_pct": 0.01781714116311864, - "auto_unstuck_wallet_exposure_threshold": 0.6493195428077282, - "backwards_tp": true, - "ddown_factor": 0.33573022137094516, - "ema_span_0": 287.3861125957884, - "ema_span_1": 928.775575738627, - "enabled": true, - "initial_eprice_ema_dist": -0.029576057113978576, - "initial_qty_pct": 0.01149130596549378, - "markup_range": 0.0037557470639028013, - "min_markup": 0.00883496068712517, - "n_close_orders": 13, - "rentry_pprice_dist": 0.027523509427529368, - "rentry_pprice_dist_wallet_exposure_weighting": 0.996650969727125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1140.7178138382837, - "auto_unstuck_ema_dist": -0.0007501592435774812, - "auto_unstuck_qty_pct": 0.017814566954545166, - "auto_unstuck_wallet_exposure_threshold": 0.4236354833048852, - "backwards_tp": true, - "ddown_factor": 2.180523028362061, - "ema_span_0": 1020.11748837132, - "ema_span_1": 1024.1403015076385, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.04379136301057834, - "markup_range": 0.010731543339000263, - "min_markup": 0.007894643223954218, - "n_close_orders": 12, - "rentry_pprice_dist": 0.033202180286167136, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84553413226079, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALGOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALGOUSDT.json deleted file mode 100644 index 7a092b8fc..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 880.7911891013566, - "auto_unstuck_ema_dist": -0.08337198620957337, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.10937687484700666, - "backwards_tp": true, - "ddown_factor": 0.7495375573053057, - "ema_span_0": 526.7945939438425, - "ema_span_1": 1154.9467434509893, - "enabled": true, - "initial_eprice_ema_dist": -0.00966382968077766, - "initial_qty_pct": 0.014609791763791246, - "markup_range": 0.013522389431807443, - "min_markup": 0.007781442532229525, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04101548293351519, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1350.2003342142991, - "auto_unstuck_ema_dist": 0.0029992952631757884, - "auto_unstuck_qty_pct": 0.015327058159562848, - "auto_unstuck_wallet_exposure_threshold": 0.659944090351001, - "backwards_tp": true, - "ddown_factor": 2.590130886731121, - "ema_span_0": 1059.7285498987653, - "ema_span_1": 651.1814216088172, - "enabled": true, - "initial_eprice_ema_dist": -0.004458515770233061, - "initial_qty_pct": 0.021663646399503425, - "markup_range": 0.013151187668541078, - "min_markup": 0.005401582924874767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.037256365934699706, - "rentry_pprice_dist_wallet_exposure_weighting": 4.60259667230565, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALICEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALICEUSDT.json deleted file mode 100644 index ac97ca965..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 981.6514396570116, - "auto_unstuck_ema_dist": -0.07018350355481316, - "auto_unstuck_qty_pct": 0.014425809486348811, - "auto_unstuck_wallet_exposure_threshold": 0.26172772560656116, - "backwards_tp": true, - "ddown_factor": 0.9165856129359444, - "ema_span_0": 501.52203688838944, - "ema_span_1": 1290.8074650600395, - "enabled": true, - "initial_eprice_ema_dist": -0.08614914076934589, - "initial_qty_pct": 0.012486507274976593, - "markup_range": 0.0016733866080111447, - "min_markup": 0.009287182337365646, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03431430362243162, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5018352803710577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 893.3109021669862, - "auto_unstuck_ema_dist": -0.05443386783225951, - "auto_unstuck_qty_pct": 0.02895092645188903, - "auto_unstuck_wallet_exposure_threshold": 0.31804818066957113, - "backwards_tp": true, - "ddown_factor": 0.10796942709710268, - "ema_span_0": 466.9061826890199, - "ema_span_1": 70.67728795347611, - "enabled": true, - "initial_eprice_ema_dist": -4.23109954022019e-05, - "initial_qty_pct": 0.020912774159705848, - "markup_range": 0.0103311529600202, - "min_markup": 0.008939380011395456, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03695967161400262, - "rentry_pprice_dist_wallet_exposure_weighting": 3.358729997370971, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALPHAUSDT.json deleted file mode 100644 index c97f63306..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 976.1241959670339, - "auto_unstuck_ema_dist": -0.006520856833877502, - "auto_unstuck_qty_pct": 0.03141852642466559, - "auto_unstuck_wallet_exposure_threshold": 0.18455013218148056, - "backwards_tp": true, - "ddown_factor": 1.9974346865242991, - "ema_span_0": 1296.9662225857348, - "ema_span_1": 357.0107660929787, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017094006441248796, - "markup_range": 0.006766714139571341, - "min_markup": 0.00924309771757737, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03980847511721127, - "rentry_pprice_dist_wallet_exposure_weighting": 1.85289834095499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.6606525304717, - "auto_unstuck_ema_dist": -0.04006738399251589, - "auto_unstuck_qty_pct": 0.03437610365875845, - "auto_unstuck_wallet_exposure_threshold": 0.41540993479210847, - "backwards_tp": true, - "ddown_factor": 1.5028284245190666, - "ema_span_0": 1377.149654555075, - "ema_span_1": 982.9217376711995, - "enabled": true, - "initial_eprice_ema_dist": -0.0031143780224897983, - "initial_qty_pct": 0.01257204772161073, - "markup_range": 0.004246117887489931, - "min_markup": 0.009225673897714318, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03627238755229393, - "rentry_pprice_dist_wallet_exposure_weighting": 11.826437054158822, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AMBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AMBUSDT.json deleted file mode 100644 index b57d5a35a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1292.934309247031, - "auto_unstuck_ema_dist": -0.00962163731243714, - "auto_unstuck_qty_pct": 0.012261965707772897, - "auto_unstuck_wallet_exposure_threshold": 0.3700806393177845, - "backwards_tp": true, - "ddown_factor": 1.517439906709118, - "ema_span_0": 891.7461798412527, - "ema_span_1": 606.6464218205607, - "enabled": true, - "initial_eprice_ema_dist": -0.0885664827545473, - "initial_qty_pct": 0.01346235492261708, - "markup_range": 0.0108995900498312, - "min_markup": 0.0027837168731792024, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03246674777952367, - "rentry_pprice_dist_wallet_exposure_weighting": 5.60090432317446, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1190.8699588505247, - "auto_unstuck_ema_dist": -0.050420754055908956, - "auto_unstuck_qty_pct": 0.03260301507555985, - "auto_unstuck_wallet_exposure_threshold": 0.18166949649508227, - "backwards_tp": true, - "ddown_factor": 2.3725892964402804, - "ema_span_0": 525.5351873911567, - "ema_span_1": 732.55725889992, - "enabled": true, - "initial_eprice_ema_dist": -0.009924317058402576, - "initial_qty_pct": 0.01647389815972939, - "markup_range": 0.0038288187641374143, - "min_markup": 0.007828847582140832, - "n_close_orders": 16, - "rentry_pprice_dist": 0.026667948842584437, - "rentry_pprice_dist_wallet_exposure_weighting": 3.008102361560021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ANKRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ANKRUSDT.json deleted file mode 100644 index 6b99f2b1e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1240.1029238854726, - "auto_unstuck_ema_dist": -0.02785640866526088, - "auto_unstuck_qty_pct": 0.013371039490146687, - "auto_unstuck_wallet_exposure_threshold": 0.1540662006973258, - "backwards_tp": true, - "ddown_factor": 1.5387310930488378, - "ema_span_0": 794.193908748042, - "ema_span_1": 841.8297319678825, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010194027627661901, - "markup_range": 0.0029910419334257792, - "min_markup": 0.004692396851895912, - "n_close_orders": 11, - "rentry_pprice_dist": 0.021145997753208128, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3072231751502215, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1401.750725951102, - "auto_unstuck_ema_dist": 0.00143971259114687, - "auto_unstuck_qty_pct": 0.010183289384148439, - "auto_unstuck_wallet_exposure_threshold": 0.7082673079471072, - "backwards_tp": true, - "ddown_factor": 0.3598153093246285, - "ema_span_0": 1293.8154014108206, - "ema_span_1": 500.86813291019183, - "enabled": true, - "initial_eprice_ema_dist": -0.0095802073638984, - "initial_qty_pct": 0.013453969553887696, - "markup_range": 0.008339174676791756, - "min_markup": 0.009962513289988649, - "n_close_orders": 3, - "rentry_pprice_dist": 0.018466961411321762, - "rentry_pprice_dist_wallet_exposure_weighting": 15.069772196273696, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ANTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ANTUSDT.json deleted file mode 100644 index 03f999d10..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 452.8383148519595, - "auto_unstuck_ema_dist": -0.015369003312624195, - "auto_unstuck_qty_pct": 0.010171141837166399, - "auto_unstuck_wallet_exposure_threshold": 0.1091678525927996, - "backwards_tp": true, - "ddown_factor": 0.8316033738578285, - "ema_span_0": 1275.723153859215, - "ema_span_1": 351.35466806696525, - "enabled": true, - "initial_eprice_ema_dist": -0.003160931566549799, - "initial_qty_pct": 0.01166280881433603, - "markup_range": 0.004432830216164361, - "min_markup": 0.006847493753716176, - "n_close_orders": 16, - "rentry_pprice_dist": 0.02508725057478151, - "rentry_pprice_dist_wallet_exposure_weighting": 10.867689432141612, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1192.4354738079974, - "auto_unstuck_ema_dist": -0.0032528570916697665, - "auto_unstuck_qty_pct": 0.014150210275410819, - "auto_unstuck_wallet_exposure_threshold": 0.6964641882686589, - "backwards_tp": true, - "ddown_factor": 1.7339044979965423, - "ema_span_0": 1440, - "ema_span_1": 1364.1662092608958, - "enabled": true, - "initial_eprice_ema_dist": 0.0016320184070571402, - "initial_qty_pct": 0.015401959441056405, - "markup_range": 0.0038288187641374143, - "min_markup": 0.00775165987525619, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042399992183816494, - "rentry_pprice_dist_wallet_exposure_weighting": 7.225948136326449, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/APEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/APEUSDT.json deleted file mode 100644 index 0226649f7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1326.6824594067612, - "auto_unstuck_ema_dist": -0.04123898835843348, - "auto_unstuck_qty_pct": 0.015652849693422424, - "auto_unstuck_wallet_exposure_threshold": 0.6557735993238923, - "backwards_tp": true, - "ddown_factor": 2.8258428332034904, - "ema_span_0": 1297.8576890377162, - "ema_span_1": 1408.7367229897266, - "enabled": true, - "initial_eprice_ema_dist": 0.002372596272655519, - "initial_qty_pct": 0.01829313189456477, - "markup_range": 0.001966269584924063, - "min_markup": 0.00654436692475975, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04239548258648859, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9010689882788017, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1383.5460213320812, - "auto_unstuck_ema_dist": -0.01530300035975927, - "auto_unstuck_qty_pct": 0.011121360242413204, - "auto_unstuck_wallet_exposure_threshold": 0.5101214298612292, - "backwards_tp": true, - "ddown_factor": 2.6267885091021514, - "ema_span_0": 376.2450293728551, - "ema_span_1": 648.2386688571398, - "enabled": true, - "initial_eprice_ema_dist": -0.002572647151640155, - "initial_qty_pct": 0.022649883740129016, - "markup_range": 0.0014629773606196423, - "min_markup": 0.0043239815749193545, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037140118967160074, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4833542849061831, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/API3USDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/API3USDT.json deleted file mode 100644 index af534ab7b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1130.4258390416232, - "auto_unstuck_ema_dist": -0.001177420451322489, - "auto_unstuck_qty_pct": 0.014538264740531534, - "auto_unstuck_wallet_exposure_threshold": 0.540542775511676, - "backwards_tp": true, - "ddown_factor": 2.3129147398488588, - "ema_span_0": 838.1891618239406, - "ema_span_1": 1287.2881988165607, - "enabled": true, - "initial_eprice_ema_dist": -0.005210595108129266, - "initial_qty_pct": 0.011315474958555283, - "markup_range": 0.004742886981873786, - "min_markup": 0.004835825498409354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049909561111052006, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6289051346089495, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1221.3975272270118, - "auto_unstuck_ema_dist": -0.02252243199499573, - "auto_unstuck_qty_pct": 0.015439176563821008, - "auto_unstuck_wallet_exposure_threshold": 0.3132570100257259, - "backwards_tp": true, - "ddown_factor": 0.11877278352292303, - "ema_span_0": 1029.992790387766, - "ema_span_1": 683.5079032839815, - "enabled": true, - "initial_eprice_ema_dist": -0.00574234043906684, - "initial_qty_pct": 0.01335345164390577, - "markup_range": 0.010731543339000263, - "min_markup": 0.009496234856972863, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03243630699321057, - "rentry_pprice_dist_wallet_exposure_weighting": 8.8899456670894, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/APTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/APTUSDT.json deleted file mode 100644 index d3ec78af5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1425.0759274643879, - "auto_unstuck_ema_dist": -0.03092668328276308, - "auto_unstuck_qty_pct": 0.012057677251555241, - "auto_unstuck_wallet_exposure_threshold": 0.4691699788964982, - "backwards_tp": true, - "ddown_factor": 1.3664735826044883, - "ema_span_0": 500.4097395114556, - "ema_span_1": 481.2778919040329, - "enabled": true, - "initial_eprice_ema_dist": 0.002950424607624244, - "initial_qty_pct": 0.01281340574111698, - "markup_range": 0.006231870987400575, - "min_markup": 0.004514594069757063, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04900709833647481, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9233148759458772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 632.1240158344632, - "auto_unstuck_ema_dist": -0.018827968178889376, - "auto_unstuck_qty_pct": 0.09383092048972241, - "auto_unstuck_wallet_exposure_threshold": 0.45117347164579463, - "backwards_tp": true, - "ddown_factor": 2.383256384319745, - "ema_span_0": 1196.245483232301, - "ema_span_1": 1198.2037083687096, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011890233225453002, - "markup_range": 0.00043272352119213604, - "min_markup": 0.0017267028860183224, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03721477551118811, - "rentry_pprice_dist_wallet_exposure_weighting": 6.841003673193187, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARBUSDT.json deleted file mode 100644 index f9ed4e32a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1364.832385970726, - "auto_unstuck_ema_dist": -0.07090594186584338, - "auto_unstuck_qty_pct": 0.013865143626541796, - "auto_unstuck_wallet_exposure_threshold": 0.48832153862635935, - "backwards_tp": true, - "ddown_factor": 1.1458379745667282, - "ema_span_0": 476.08537305967684, - "ema_span_1": 1248.0581353579219, - "enabled": true, - "initial_eprice_ema_dist": -0.0003131329820948757, - "initial_qty_pct": 0.01374872772365408, - "markup_range": 0.007604202618718997, - "min_markup": 0.009633843596778826, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03390165326594296, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7236930651876274, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1401.750725951102, - "auto_unstuck_ema_dist": 0.00143971259114687, - "auto_unstuck_qty_pct": 0.010183289384148439, - "auto_unstuck_wallet_exposure_threshold": 0.7082673079471072, - "backwards_tp": true, - "ddown_factor": 0.3598153093246285, - "ema_span_0": 1293.8154014108206, - "ema_span_1": 500.86813291019183, - "enabled": true, - "initial_eprice_ema_dist": -0.0095802073638984, - "initial_qty_pct": 0.013453969553887696, - "markup_range": 0.008339174676791756, - "min_markup": 0.009962513289988649, - "n_close_orders": 3, - "rentry_pprice_dist": 0.018466961411321762, - "rentry_pprice_dist_wallet_exposure_weighting": 15.069772196273696, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARPAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARPAUSDT.json deleted file mode 100644 index 5320a4026..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 987.7883613823617, - "auto_unstuck_ema_dist": -0.009472339756062868, - "auto_unstuck_qty_pct": 0.034817746925184224, - "auto_unstuck_wallet_exposure_threshold": 0.49316912310812155, - "backwards_tp": true, - "ddown_factor": 1.2456905627076964, - "ema_span_0": 15.297329132909539, - "ema_span_1": 1181.8530517849615, - "enabled": true, - "initial_eprice_ema_dist": 0.00011205444845055594, - "initial_qty_pct": 0.01063705984579044, - "markup_range": 0.004370765419137955, - "min_markup": 0.004214352180486906, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027867890840128737, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARUSDT.json deleted file mode 100644 index b43c103bb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1439.1103830443853, - "auto_unstuck_ema_dist": -0.012186869449521864, - "auto_unstuck_qty_pct": 0.010263059927198417, - "auto_unstuck_wallet_exposure_threshold": 0.11113162677810223, - "backwards_tp": true, - "ddown_factor": 2.3678294978474606, - "ema_span_0": 175.84637076087722, - "ema_span_1": 1096.1616259206737, - "enabled": true, - "initial_eprice_ema_dist": -0.004579206061317028, - "initial_qty_pct": 0.010743421915198064, - "markup_range": 0.003105217426646186, - "min_markup": 0.0022880067090024787, - "n_close_orders": 10, - "rentry_pprice_dist": 0.046421397531376446, - "rentry_pprice_dist_wallet_exposure_weighting": 10.606085020833945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ASTRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ASTRUSDT.json deleted file mode 100644 index c745b726a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 933.5545649415141, - "auto_unstuck_ema_dist": -0.020916694921813597, - "auto_unstuck_qty_pct": 0.010402250527463207, - "auto_unstuck_wallet_exposure_threshold": 0.10818819844689886, - "backwards_tp": true, - "ddown_factor": 0.7725183750348136, - "ema_span_0": 904.0667177141111, - "ema_span_1": 835.0872345033705, - "enabled": true, - "initial_eprice_ema_dist": -0.09500750313373799, - "initial_qty_pct": 0.012139930921967928, - "markup_range": 0.004893935309566844, - "min_markup": 0.0049365164293177916, - "n_close_orders": 13, - "rentry_pprice_dist": 0.029283212468838724, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8099500717531118, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.055229211736, - "auto_unstuck_ema_dist": -0.03383240561699953, - "auto_unstuck_qty_pct": 0.020929986722580424, - "auto_unstuck_wallet_exposure_threshold": 0.4507773451589427, - "backwards_tp": true, - "ddown_factor": 2.251404841380241, - "ema_span_0": 332.1323424914465, - "ema_span_1": 611.3988437739725, - "enabled": true, - "initial_eprice_ema_dist": -0.0034363991468286514, - "initial_qty_pct": 0.015177195886619683, - "markup_range": 0.0030337325581531794, - "min_markup": 0.002751517117800208, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019453320055873184, - "rentry_pprice_dist_wallet_exposure_weighting": 3.888733212449491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ATAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ATAUSDT.json deleted file mode 100644 index 54d9eca0e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 797.0347847268555, - "auto_unstuck_ema_dist": -0.00305653374017019, - "auto_unstuck_qty_pct": 0.023449935983428333, - "auto_unstuck_wallet_exposure_threshold": 0.6602385992955259, - "backwards_tp": true, - "ddown_factor": 0.5331102866411135, - "ema_span_0": 1367.253382237758, - "ema_span_1": 624.7931570803265, - "enabled": true, - "initial_eprice_ema_dist": -0.008627186422771155, - "initial_qty_pct": 0.014854210381528047, - "markup_range": 0.004209787989222997, - "min_markup": 0.004040674109366223, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01559591043789603, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2487971852856212, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ATOMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ATOMUSDT.json deleted file mode 100644 index d73ac31e5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 730.3312186368985, - "auto_unstuck_ema_dist": 0.0022383320584140045, - "auto_unstuck_qty_pct": 0.02284785160997343, - "auto_unstuck_wallet_exposure_threshold": 0.6993046320092303, - "backwards_tp": true, - "ddown_factor": 1.3706317384714013, - "ema_span_0": 910.92182139162, - "ema_span_1": 445.39025158429376, - "enabled": true, - "initial_eprice_ema_dist": -0.02342585771336536, - "initial_qty_pct": 0.012912925438952264, - "markup_range": 0.0010252134174917747, - "min_markup": 0.00582271675896672, - "n_close_orders": 9, - "rentry_pprice_dist": 0.01951170191144171, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4355029441536544, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1207.5880933221017, - "auto_unstuck_ema_dist": 0.0026397394336455837, - "auto_unstuck_qty_pct": 0.042658108594644153, - "auto_unstuck_wallet_exposure_threshold": 0.32521584619725424, - "backwards_tp": true, - "ddown_factor": 0.9271430073809548, - "ema_span_0": 1060.6087477697195, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": -0.004460639211257628, - "initial_qty_pct": 0.014984561806980722, - "markup_range": 0.003761840090902962, - "min_markup": 0.005347642715216169, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01716612420162902, - "rentry_pprice_dist_wallet_exposure_weighting": 4.609061996889854, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AUDIOUSDT.json deleted file mode 100644 index d1a2d3a32..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1425.0759274643879, - "auto_unstuck_ema_dist": -0.03092668328276308, - "auto_unstuck_qty_pct": 0.012057677251555241, - "auto_unstuck_wallet_exposure_threshold": 0.4691699788964982, - "backwards_tp": true, - "ddown_factor": 1.3664735826044883, - "ema_span_0": 500.4097395114556, - "ema_span_1": 481.2778919040329, - "enabled": true, - "initial_eprice_ema_dist": 0.002950424607624244, - "initial_qty_pct": 0.01281340574111698, - "markup_range": 0.006231870987400575, - "min_markup": 0.004514594069757063, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04900709833647481, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9233148759458772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1384.3603393337523, - "auto_unstuck_ema_dist": 0.0024853636647473713, - "auto_unstuck_qty_pct": 0.06558568990335342, - "auto_unstuck_wallet_exposure_threshold": 0.5760045344127737, - "backwards_tp": true, - "ddown_factor": 2.027712494059968, - "ema_span_0": 1148.9580006997223, - "ema_span_1": 804.2632673694641, - "enabled": true, - "initial_eprice_ema_dist": 0.001997853862534355, - "initial_qty_pct": 0.010884095096774585, - "markup_range": 0.001760745822400736, - "min_markup": 0.002887650471616504, - "n_close_orders": 11, - "rentry_pprice_dist": 0.032530208495394716, - "rentry_pprice_dist_wallet_exposure_weighting": 18.518026084279576, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AVAXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AVAXUSDT.json deleted file mode 100644 index f6bf7a1e2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.0269735094156, - "auto_unstuck_ema_dist": -0.02592392619816825, - "auto_unstuck_qty_pct": 0.010937140701386516, - "auto_unstuck_wallet_exposure_threshold": 0.35020790961311576, - "backwards_tp": true, - "ddown_factor": 2.0302778810863837, - "ema_span_0": 1399.2964472826893, - "ema_span_1": 957.728426225106, - "enabled": true, - "initial_eprice_ema_dist": -0.010544098395606999, - "initial_qty_pct": 0.011216838386519951, - "markup_range": 0.0, - "min_markup": 0.005483537902914839, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02510119060007329, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4240727359656593, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1104.1202923067376, - "auto_unstuck_ema_dist": -0.08593950364087602, - "auto_unstuck_qty_pct": 0.015890241272546953, - "auto_unstuck_wallet_exposure_threshold": 0.22622978530138002, - "backwards_tp": true, - "ddown_factor": 0.42538451861349036, - "ema_span_0": 1146.616593395262, - "ema_span_1": 1373.0910254714056, - "enabled": true, - "initial_eprice_ema_dist": -0.0032728703426088946, - "initial_qty_pct": 0.018819974387289475, - "markup_range": 0.010836430126865323, - "min_markup": 0.008212191881961045, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04433379021369813, - "rentry_pprice_dist_wallet_exposure_weighting": 0.25889612527769196, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AXSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AXSUSDT.json deleted file mode 100644 index 8a01e408a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1398.0851098213836, - "auto_unstuck_ema_dist": -0.04992677099735747, - "auto_unstuck_qty_pct": 0.01869106223852016, - "auto_unstuck_wallet_exposure_threshold": 0.38225339279544124, - "backwards_tp": true, - "ddown_factor": 1.070232759575914, - "ema_span_0": 320.0567537999044, - "ema_span_1": 92.33148796917652, - "enabled": true, - "initial_eprice_ema_dist": -0.07921940684921264, - "initial_qty_pct": 0.014528548637542828, - "markup_range": 0.0069029042289928295, - "min_markup": 0.0039168906022618985, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0398358187784611, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49448924522765547, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1112.7252265618881, - "auto_unstuck_ema_dist": -0.018508799050601103, - "auto_unstuck_qty_pct": 0.055969254401320064, - "auto_unstuck_wallet_exposure_threshold": 0.12328883190495712, - "backwards_tp": true, - "ddown_factor": 2.1271045253717453, - "ema_span_0": 420.36285700348526, - "ema_span_1": 134.58976343846453, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0036772219902083954, - "min_markup": 0.004967890146614809, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04758094846252682, - "rentry_pprice_dist_wallet_exposure_weighting": 6.479792532192432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BAKEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BAKEUSDT.json deleted file mode 100644 index ac115413a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1253.7616616959517, - "auto_unstuck_ema_dist": -0.06227627071006005, - "auto_unstuck_qty_pct": 0.012021500999824011, - "auto_unstuck_wallet_exposure_threshold": 0.2102599286771714, - "backwards_tp": true, - "ddown_factor": 0.6892194118338997, - "ema_span_0": 830.4870791040873, - "ema_span_1": 894.6758804565019, - "enabled": true, - "initial_eprice_ema_dist": -0.023363098108013288, - "initial_qty_pct": 0.011585691152438977, - "markup_range": 0.0059134827268446915, - "min_markup": 0.009787652123394592, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04357782174332145, - "rentry_pprice_dist_wallet_exposure_weighting": 4.977199390456865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.6606525304717, - "auto_unstuck_ema_dist": -0.04006738399251589, - "auto_unstuck_qty_pct": 0.03437610365875845, - "auto_unstuck_wallet_exposure_threshold": 0.41540993479210847, - "backwards_tp": true, - "ddown_factor": 1.5028284245190666, - "ema_span_0": 1377.149654555075, - "ema_span_1": 982.9217376711995, - "enabled": true, - "initial_eprice_ema_dist": -0.0031143780224897983, - "initial_qty_pct": 0.01257204772161073, - "markup_range": 0.004246117887489931, - "min_markup": 0.009225673897714318, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03627238755229393, - "rentry_pprice_dist_wallet_exposure_weighting": 11.826437054158822, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BALUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BALUSDT.json deleted file mode 100644 index c820e2ce2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 611.5506255455906, - "auto_unstuck_ema_dist": -0.017587832398252717, - "auto_unstuck_qty_pct": 0.047226254984243446, - "auto_unstuck_wallet_exposure_threshold": 0.33049960246604704, - "backwards_tp": true, - "ddown_factor": 2.3743834751818995, - "ema_span_0": 162.5556250066476, - "ema_span_1": 650.3064722776295, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998213276721374, - "initial_qty_pct": 0.01583205186781149, - "markup_range": 0.001986720543663317, - "min_markup": 0.003646489380621451, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042081767416105066, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7709045556511114, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1238.9053045807152, - "auto_unstuck_ema_dist": -0.07364870732347352, - "auto_unstuck_qty_pct": 0.02040093742443689, - "auto_unstuck_wallet_exposure_threshold": 0.14873210404820475, - "backwards_tp": true, - "ddown_factor": 2.7969332372704967, - "ema_span_0": 1048.1192855174938, - "ema_span_1": 934.8012216592704, - "enabled": true, - "initial_eprice_ema_dist": 0.002970355629548636, - "initial_qty_pct": 0.02936570386742721, - "markup_range": 0.005325643570559893, - "min_markup": 0.0027572350976055055, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04091661157705124, - "rentry_pprice_dist_wallet_exposure_weighting": 5.039995300861286, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BANDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BANDUSDT.json deleted file mode 100644 index 5796eb10d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1281.7273305342342, - "auto_unstuck_ema_dist": -0.017742864046926567, - "auto_unstuck_qty_pct": 0.01021284562832472, - "auto_unstuck_wallet_exposure_threshold": 0.4014512475386008, - "backwards_tp": true, - "ddown_factor": 0.4200306299813098, - "ema_span_0": 580.9868844969941, - "ema_span_1": 563.0060658876628, - "enabled": true, - "initial_eprice_ema_dist": -0.07744842086413276, - "initial_qty_pct": 0.01, - "markup_range": 0.012945597681200044, - "min_markup": 0.006950946045861591, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04636637275027759, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10032687556162916, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1135.2496761839336, - "auto_unstuck_ema_dist": -0.03864983824667042, - "auto_unstuck_qty_pct": 0.03519039447115108, - "auto_unstuck_wallet_exposure_threshold": 0.18166949649508227, - "backwards_tp": true, - "ddown_factor": 2.792308392000087, - "ema_span_0": 615.7739298203456, - "ema_span_1": 1297.0916592147078, - "enabled": true, - "initial_eprice_ema_dist": -0.008494182330344468, - "initial_qty_pct": 0.014550968639651394, - "markup_range": 0.0026100116495867336, - "min_markup": 0.0022819983606354797, - "n_close_orders": 8, - "rentry_pprice_dist": 0.037719250371598824, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3323670261749943, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BATUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BATUSDT.json deleted file mode 100644 index d24d4c457..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1341.652690729624, - "auto_unstuck_ema_dist": -0.012122320587590987, - "auto_unstuck_qty_pct": 0.011805457754041371, - "auto_unstuck_wallet_exposure_threshold": 0.7135772788746352, - "backwards_tp": true, - "ddown_factor": 0.14522157025190696, - "ema_span_0": 577.3989474210588, - "ema_span_1": 706.8918568872228, - "enabled": true, - "initial_eprice_ema_dist": -0.03444557477663512, - "initial_qty_pct": 0.012821762379057904, - "markup_range": 0.015239332008854746, - "min_markup": 0.007879672552309367, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03201285016260425, - "rentry_pprice_dist_wallet_exposure_weighting": 4.681782711996706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 837.3691762870682, - "auto_unstuck_ema_dist": -0.06012477441340558, - "auto_unstuck_qty_pct": 0.05413683314534192, - "auto_unstuck_wallet_exposure_threshold": 0.7108870182041485, - "backwards_tp": true, - "ddown_factor": 2.3986503819598393, - "ema_span_0": 459.1904429649878, - "ema_span_1": 851.549260759708, - "enabled": true, - "initial_eprice_ema_dist": -0.005712222059609257, - "initial_qty_pct": 0.012407525100343316, - "markup_range": 0.0020022772425098987, - "min_markup": 0.0055729600154561885, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03505425118539509, - "rentry_pprice_dist_wallet_exposure_weighting": 0.26895502448650166, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BCHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BCHUSDT.json deleted file mode 100644 index 3ec2d9907..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1137.2951826016608, - "auto_unstuck_ema_dist": -0.003722525232899658, - "auto_unstuck_qty_pct": 0.03704952489736203, - "auto_unstuck_wallet_exposure_threshold": 0.44194841486727393, - "backwards_tp": true, - "ddown_factor": 1.7935017412141183, - "ema_span_0": 32.707426728837405, - "ema_span_1": 5.071285127442501, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011783946761883258, - "markup_range": 0.0017607217854249929, - "min_markup": 0.0018379964135605354, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015036784333307329, - "rentry_pprice_dist_wallet_exposure_weighting": 6.190282798412457, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1192.4354738079974, - "auto_unstuck_ema_dist": -0.0032528570916697665, - "auto_unstuck_qty_pct": 0.014150210275410819, - "auto_unstuck_wallet_exposure_threshold": 0.6964641882686589, - "backwards_tp": true, - "ddown_factor": 1.7339044979965423, - "ema_span_0": 1440, - "ema_span_1": 1364.1662092608958, - "enabled": true, - "initial_eprice_ema_dist": 0.0016320184070571402, - "initial_qty_pct": 0.015401959441056405, - "markup_range": 0.0038288187641374143, - "min_markup": 0.00775165987525619, - "n_close_orders": 15, - "rentry_pprice_dist": 0.042399992183816494, - "rentry_pprice_dist_wallet_exposure_weighting": 7.225948136326449, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BELUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BELUSDT.json deleted file mode 100644 index 20292acb4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1241.6883340142906, - "auto_unstuck_ema_dist": -0.029162131069201864, - "auto_unstuck_qty_pct": 0.014844796151663828, - "auto_unstuck_wallet_exposure_threshold": 0.13704322918017484, - "backwards_tp": true, - "ddown_factor": 1.0844248507681071, - "ema_span_0": 804.3149137591532, - "ema_span_1": 12.730301137844258, - "enabled": true, - "initial_eprice_ema_dist": -0.08072082991181724, - "initial_qty_pct": 0.014084954540594538, - "markup_range": 0.004144321988807125, - "min_markup": 0.0050928196206276545, - "n_close_orders": 7, - "rentry_pprice_dist": 0.0421269349258775, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2192515413189275, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1419.2743428176746, - "auto_unstuck_ema_dist": -0.026016150127073936, - "auto_unstuck_qty_pct": 0.014747834431445271, - "auto_unstuck_wallet_exposure_threshold": 0.7404483323023281, - "backwards_tp": true, - "ddown_factor": 0.59192627379883, - "ema_span_0": 779.810372947579, - "ema_span_1": 1383.509832959775, - "enabled": true, - "initial_eprice_ema_dist": -0.007129405388187172, - "initial_qty_pct": 0.011532396668115348, - "markup_range": 0.001636439109984244, - "min_markup": 0.006789856287403269, - "n_close_orders": 9, - "rentry_pprice_dist": 0.01929730849038635, - "rentry_pprice_dist_wallet_exposure_weighting": 9.438311813980327, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLUEBIRDUSDT.json deleted file mode 100644 index 9b2a29012..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 878.8439316189509, - "auto_unstuck_ema_dist": -0.027074135092344097, - "auto_unstuck_qty_pct": 0.015107463684303813, - "auto_unstuck_wallet_exposure_threshold": 0.5827549057117383, - "backwards_tp": true, - "ddown_factor": 0.17853722080286868, - "ema_span_0": 1134.9830174549247, - "ema_span_1": 1021.239871317313, - "enabled": true, - "initial_eprice_ema_dist": 0.0029913840835538944, - "initial_qty_pct": 0.010053681481523467, - "markup_range": 0.0018181234226242122, - "min_markup": 0.0020651824582331277, - "n_close_orders": 9, - "rentry_pprice_dist": 0.008663494829004833, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4581395171454616, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1163.0635560777955, - "auto_unstuck_ema_dist": -0.011697155221786918, - "auto_unstuck_qty_pct": 0.011534911057107928, - "auto_unstuck_wallet_exposure_threshold": 0.47249217653477454, - "backwards_tp": true, - "ddown_factor": 2.10593009028873, - "ema_span_0": 92.42399086701167, - "ema_span_1": 923.3943208214632, - "enabled": true, - "initial_eprice_ema_dist": 0.0018399711131591424, - "initial_qty_pct": 0.013190315878645276, - "markup_range": 0.0008522084968640203, - "min_markup": 0.00256164598040883, - "n_close_orders": 10, - "rentry_pprice_dist": 0.017769936014241053, - "rentry_pprice_dist_wallet_exposure_weighting": 1.130896229672453, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLURUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLURUSDT.json deleted file mode 100644 index 95b546660..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1091.9249122302017, - "auto_unstuck_ema_dist": -0.08514350453347158, - "auto_unstuck_qty_pct": 0.010358255142866238, - "auto_unstuck_wallet_exposure_threshold": 0.5807792212712123, - "backwards_tp": true, - "ddown_factor": 2.208932570232063, - "ema_span_0": 775.5641240096238, - "ema_span_1": 588.0992743341152, - "enabled": true, - "initial_eprice_ema_dist": 0.0011088603456135102, - "initial_qty_pct": 0.010855596003675212, - "markup_range": 0.004565117890083648, - "min_markup": 0.0070493794542243375, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0246999068091038, - "rentry_pprice_dist_wallet_exposure_weighting": 4.048541794732258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1165.144403053036, - "auto_unstuck_ema_dist": -0.024841444640052432, - "auto_unstuck_qty_pct": 0.020212349973700815, - "auto_unstuck_wallet_exposure_threshold": 0.5499048313948989, - "backwards_tp": true, - "ddown_factor": 2.16620530870608, - "ema_span_0": 1148.9580006997223, - "ema_span_1": 16.409585456161686, - "enabled": true, - "initial_eprice_ema_dist": -0.006989692375814235, - "initial_qty_pct": 0.01722992975565277, - "markup_range": 0.010731543339000263, - "min_markup": 0.007902039558060259, - "n_close_orders": 2, - "rentry_pprice_dist": 0.017769936014241053, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2487971852856212, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLZUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLZUSDT.json deleted file mode 100644 index d6188ddeb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 678.9591587756631, - "auto_unstuck_ema_dist": -0.06945164073991687, - "auto_unstuck_qty_pct": 0.03421857722915016, - "auto_unstuck_wallet_exposure_threshold": 0.43540086321169563, - "backwards_tp": true, - "ddown_factor": 0.24954323011962568, - "ema_span_0": 1314.7304800007666, - "ema_span_1": 1261.6554678183506, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999316551907193, - "initial_qty_pct": 0.010141940828469585, - "markup_range": 0.014725745346666892, - "min_markup": 0.007304032241895862, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04194786745397676, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3363644816632454, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 192.67907078044448, - "auto_unstuck_ema_dist": -0.012333436142812676, - "auto_unstuck_qty_pct": 0.09237523186492864, - "auto_unstuck_wallet_exposure_threshold": 0.2864445424666659, - "backwards_tp": true, - "ddown_factor": 2.350273712364545, - "ema_span_0": 939.4546775433826, - "ema_span_1": 834.2930548818896, - "enabled": true, - "initial_eprice_ema_dist": 0.0025014089224235404, - "initial_qty_pct": 0.013784534471806291, - "markup_range": 0.0040469099789362, - "min_markup": 0.004041920294146579, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04707822830353501, - "rentry_pprice_dist_wallet_exposure_weighting": 0.348570108463367, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BNBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BNBUSDT.json deleted file mode 100644 index 4a0e8ee4c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 827.202471355724, - "auto_unstuck_ema_dist": -0.0375922669201304, - "auto_unstuck_qty_pct": 0.023776905802935667, - "auto_unstuck_wallet_exposure_threshold": 0.5189881514875958, - "backwards_tp": true, - "ddown_factor": 1.1309489151187235, - "ema_span_0": 635.1280631733061, - "ema_span_1": 583.1989441011461, - "enabled": true, - "initial_eprice_ema_dist": -0.08668068249460394, - "initial_qty_pct": 0.011170650577892235, - "markup_range": 0.001656252914261926, - "min_markup": 0.001994520306322353, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02026663408731323, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3319582688865554, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1302.9622602969205, - "auto_unstuck_ema_dist": -0.009790478051886362, - "auto_unstuck_qty_pct": 0.010160647602187432, - "auto_unstuck_wallet_exposure_threshold": 0.6451895370758047, - "backwards_tp": true, - "ddown_factor": 1.920468386542543, - "ema_span_0": 11.379338818164452, - "ema_span_1": 8.954540549950563, - "enabled": true, - "initial_eprice_ema_dist": -0.09951272600741466, - "initial_qty_pct": 0.013176849249050184, - "markup_range": 0.0, - "min_markup": 0.002307822281199439, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03322325467189492, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003190094921757007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BNXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BNXUSDT.json deleted file mode 100644 index ec519b675..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCDOMUSDT.json deleted file mode 100644 index f47b19a9c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1241.6815220008489, - "auto_unstuck_ema_dist": -0.02376976141604809, - "auto_unstuck_qty_pct": 0.010100461731487462, - "auto_unstuck_wallet_exposure_threshold": 0.29418031881816764, - "backwards_tp": true, - "ddown_factor": 1.3693858643857795, - "ema_span_0": 862.7600943888548, - "ema_span_1": 1198.4225018913592, - "enabled": true, - "initial_eprice_ema_dist": -0.0021686862799339054, - "initial_qty_pct": 0.014040301197421301, - "markup_range": 0.0024085468748786553, - "min_markup": 0.0015046592390348095, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02270171112131856, - "rentry_pprice_dist_wallet_exposure_weighting": 0.876542348502689, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1302.9622602969205, - "auto_unstuck_ema_dist": -0.009790478051886362, - "auto_unstuck_qty_pct": 0.010160647602187432, - "auto_unstuck_wallet_exposure_threshold": 0.6451895370758047, - "backwards_tp": true, - "ddown_factor": 1.920468386542543, - "ema_span_0": 11.379338818164452, - "ema_span_1": 8.954540549950563, - "enabled": true, - "initial_eprice_ema_dist": -0.09951272600741466, - "initial_qty_pct": 0.013176849249050184, - "markup_range": 0.0, - "min_markup": 0.002307822281199439, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03322325467189492, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003190094921757007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCSTUSDT.json deleted file mode 100644 index 775be1b30..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.5780116781566, - "auto_unstuck_ema_dist": -0.010533630915170723, - "auto_unstuck_qty_pct": 0.02501217133656904, - "auto_unstuck_wallet_exposure_threshold": 0.7487289036179982, - "backwards_tp": true, - "ddown_factor": 1.605453390144733, - "ema_span_0": 595.5254272296077, - "ema_span_1": 22.15894968181761, - "enabled": true, - "initial_eprice_ema_dist": -0.07656154588902128, - "initial_qty_pct": 0.010049153736021913, - "markup_range": 0.0011940584557397973, - "min_markup": 0.00416616360591481, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02212516964130459, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2324477374846932, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCUSDT.json deleted file mode 100644 index b5444924e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1187.4759710287567, - "auto_unstuck_ema_dist": -0.01332028010430003, - "auto_unstuck_qty_pct": 0.027963038600993497, - "auto_unstuck_wallet_exposure_threshold": 0.153345227446699, - "backwards_tp": true, - "ddown_factor": 0.12611709030716134, - "ema_span_0": 1217.6936120440641, - "ema_span_1": 845.4226803924264, - "enabled": true, - "initial_eprice_ema_dist": -0.05117554897994481, - "initial_qty_pct": 0.016006704925442674, - "markup_range": 0.002224987918758052, - "min_markup": 0.0026684214797655786, - "n_close_orders": 3, - "rentry_pprice_dist": 0.021186234270255285, - "rentry_pprice_dist_wallet_exposure_weighting": 2.267571151709458, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 632.1240158344632, - "auto_unstuck_ema_dist": -0.018827968178889376, - "auto_unstuck_qty_pct": 0.09383092048972241, - "auto_unstuck_wallet_exposure_threshold": 0.45117347164579463, - "backwards_tp": true, - "ddown_factor": 2.383256384319745, - "ema_span_0": 1196.245483232301, - "ema_span_1": 1198.2037083687096, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011890233225453002, - "markup_range": 0.00043272352119213604, - "min_markup": 0.0017267028860183224, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03721477551118811, - "rentry_pprice_dist_wallet_exposure_weighting": 6.841003673193187, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTSUSDT.json deleted file mode 100644 index a8a00ec71..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 452.8383148519595, - "auto_unstuck_ema_dist": -0.015369003312624195, - "auto_unstuck_qty_pct": 0.010171141837166399, - "auto_unstuck_wallet_exposure_threshold": 0.1091678525927996, - "backwards_tp": true, - "ddown_factor": 0.8316033738578285, - "ema_span_0": 1275.723153859215, - "ema_span_1": 351.35466806696525, - "enabled": true, - "initial_eprice_ema_dist": -0.003160931566549799, - "initial_qty_pct": 0.01166280881433603, - "markup_range": 0.004432830216164361, - "min_markup": 0.006847493753716176, - "n_close_orders": 16, - "rentry_pprice_dist": 0.02508725057478151, - "rentry_pprice_dist_wallet_exposure_weighting": 10.867689432141612, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1401.750725951102, - "auto_unstuck_ema_dist": 0.00143971259114687, - "auto_unstuck_qty_pct": 0.010183289384148439, - "auto_unstuck_wallet_exposure_threshold": 0.7082673079471072, - "backwards_tp": true, - "ddown_factor": 0.3598153093246285, - "ema_span_0": 1293.8154014108206, - "ema_span_1": 500.86813291019183, - "enabled": true, - "initial_eprice_ema_dist": -0.0095802073638984, - "initial_qty_pct": 0.013453969553887696, - "markup_range": 0.008339174676791756, - "min_markup": 0.009962513289988649, - "n_close_orders": 3, - "rentry_pprice_dist": 0.018466961411321762, - "rentry_pprice_dist_wallet_exposure_weighting": 15.069772196273696, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/C98USDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/C98USDT.json deleted file mode 100644 index ba225011c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1100.0766974686742, - "auto_unstuck_ema_dist": -0.08514628223981162, - "auto_unstuck_qty_pct": 0.014754655707221693, - "auto_unstuck_wallet_exposure_threshold": 0.5590674894077008, - "backwards_tp": true, - "ddown_factor": 2.384812053735167, - "ema_span_0": 1098.6132497794993, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011799827841045437, - "markup_range": 0.004116742277219143, - "min_markup": 0.007502084320029683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047706307783281277, - "rentry_pprice_dist_wallet_exposure_weighting": 4.36567006885887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 893.3109021669862, - "auto_unstuck_ema_dist": -0.05443386783225951, - "auto_unstuck_qty_pct": 0.02895092645188903, - "auto_unstuck_wallet_exposure_threshold": 0.31804818066957113, - "backwards_tp": true, - "ddown_factor": 0.10796942709710268, - "ema_span_0": 466.9061826890199, - "ema_span_1": 70.67728795347611, - "enabled": true, - "initial_eprice_ema_dist": -4.23109954022019e-05, - "initial_qty_pct": 0.020912774159705848, - "markup_range": 0.0103311529600202, - "min_markup": 0.008939380011395456, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03695967161400262, - "rentry_pprice_dist_wallet_exposure_weighting": 3.358729997370971, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CELOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CELOUSDT.json deleted file mode 100644 index ba772874f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.5114034150372, - "auto_unstuck_ema_dist": -0.03222522212750945, - "auto_unstuck_qty_pct": 0.013647750762214667, - "auto_unstuck_wallet_exposure_threshold": 0.7023358069938557, - "backwards_tp": true, - "ddown_factor": 0.904544834706519, - "ema_span_0": 528.0193581884716, - "ema_span_1": 1245.9509866944518, - "enabled": true, - "initial_eprice_ema_dist": 0.00022939197337816836, - "initial_qty_pct": 0.011730730515976074, - "markup_range": 0.007230331375112278, - "min_markup": 0.00604372209409567, - "n_close_orders": 15, - "rentry_pprice_dist": 0.025709171895251157, - "rentry_pprice_dist_wallet_exposure_weighting": 2.361371101883322, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.2430534207629, - "auto_unstuck_ema_dist": 0.00226259105386, - "auto_unstuck_qty_pct": 0.0808186044883725, - "auto_unstuck_wallet_exposure_threshold": 0.5392899700728492, - "backwards_tp": true, - "ddown_factor": 2.051348839315548, - "ema_span_0": 1147.602926862563, - "ema_span_1": 650.3606833385481, - "enabled": true, - "initial_eprice_ema_dist": -0.0006452161446937385, - "initial_qty_pct": 0.012303788577717708, - "markup_range": 0.0003106966757488745, - "min_markup": 0.003150918246592498, - "n_close_orders": 13, - "rentry_pprice_dist": 0.026268299967256773, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CELRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CELRUSDT.json deleted file mode 100644 index ce817ab80..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 480.8805004073469, - "auto_unstuck_ema_dist": -0.01413872000413531, - "auto_unstuck_qty_pct": 0.010084326206448061, - "auto_unstuck_wallet_exposure_threshold": 0.14449730610025655, - "backwards_tp": true, - "ddown_factor": 0.545663275421547, - "ema_span_0": 584.8562996665187, - "ema_span_1": 279.02360297820366, - "enabled": true, - "initial_eprice_ema_dist": -0.05113043451437206, - "initial_qty_pct": 0.018668709938263986, - "markup_range": 0.0031864656436877536, - "min_markup": 0.009308477207281602, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03759798610466962, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8445263356825699, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1087.0922437352226, - "auto_unstuck_ema_dist": -0.07466373815119792, - "auto_unstuck_qty_pct": 0.017142351796970053, - "auto_unstuck_wallet_exposure_threshold": 0.40499526116159673, - "backwards_tp": true, - "ddown_factor": 0.9995052573060559, - "ema_span_0": 1284.3243314498504, - "ema_span_1": 1017.2434952248901, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014681912052365726, - "markup_range": 0.007566918502711494, - "min_markup": 0.003842592955207204, - "n_close_orders": 13, - "rentry_pprice_dist": 0.028867874998042962, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7659319536690007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CFXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CFXUSDT.json deleted file mode 100644 index f66ba8860..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1368.3799518962082, - "auto_unstuck_ema_dist": -0.033727459406720256, - "auto_unstuck_qty_pct": 0.010309552691897882, - "auto_unstuck_wallet_exposure_threshold": 0.6148474326887754, - "backwards_tp": true, - "ddown_factor": 1.2302316461464946, - "ema_span_0": 1394.7416011264659, - "ema_span_1": 1400.2272145992763, - "enabled": true, - "initial_eprice_ema_dist": -0.0011006675262684792, - "initial_qty_pct": 0.010205995910114419, - "markup_range": 0.018181003938671114, - "min_markup": 0.00986965447971635, - "n_close_orders": 4, - "rentry_pprice_dist": 0.048234051305973594, - "rentry_pprice_dist_wallet_exposure_weighting": 10.008443462744069, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CHRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CHRUSDT.json deleted file mode 100644 index 8a1fc65a1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1227.4275431252406, - "auto_unstuck_ema_dist": -0.06754187419621197, - "auto_unstuck_qty_pct": 0.021078227604887766, - "auto_unstuck_wallet_exposure_threshold": 0.8021253398785809, - "backwards_tp": true, - "ddown_factor": 1.1871582819980657, - "ema_span_0": 99.00002394116625, - "ema_span_1": 209.230529310165, - "enabled": true, - "initial_eprice_ema_dist": 0.00039378788697041946, - "initial_qty_pct": 0.011490745870501392, - "markup_range": 0.011010603382466051, - "min_markup": 0.006810068002505036, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03409556515507944, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8306570861565317, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1138.240502349259, - "auto_unstuck_ema_dist": -0.003475275034476836, - "auto_unstuck_qty_pct": 0.04452188497184538, - "auto_unstuck_wallet_exposure_threshold": 0.3758683876090612, - "backwards_tp": true, - "ddown_factor": 0.7175764034761115, - "ema_span_0": 1231.2549655151972, - "ema_span_1": 122.59926967700858, - "enabled": true, - "initial_eprice_ema_dist": -0.006989692375814235, - "initial_qty_pct": 0.014839541388839984, - "markup_range": 0.017731844508463334, - "min_markup": 0.0019546071070687, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03237210347375739, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2855428403246933, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CHZUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CHZUSDT.json deleted file mode 100644 index 9f122a1e8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 732.7686184891085, - "auto_unstuck_ema_dist": -0.006657340033211711, - "auto_unstuck_qty_pct": 0.07682928370784717, - "auto_unstuck_wallet_exposure_threshold": 0.6125578243524623, - "backwards_tp": true, - "ddown_factor": 1.904079027728059, - "ema_span_0": 1220.5815966434714, - "ema_span_1": 1015.895581170476, - "enabled": true, - "initial_eprice_ema_dist": -0.0014359310106724496, - "initial_qty_pct": 0.010969479927716562, - "markup_range": 0.0017172536366672367, - "min_markup": 0.006373584482299822, - "n_close_orders": 12, - "rentry_pprice_dist": 0.029168761669657896, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7205584019066883, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1009.6753820967954, - "auto_unstuck_ema_dist": -0.07816917545100273, - "auto_unstuck_qty_pct": 0.05013860336591601, - "auto_unstuck_wallet_exposure_threshold": 0.11822720433405498, - "backwards_tp": true, - "ddown_factor": 2.8039257314001715, - "ema_span_0": 390.64874703640373, - "ema_span_1": 18.186533411524646, - "enabled": true, - "initial_eprice_ema_dist": 0.0022048153602927368, - "initial_qty_pct": 0.02126638244632184, - "markup_range": 0.0026283081578392666, - "min_markup": 0.005662571039090008, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03607299936416167, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84553413226079, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CKBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CKBUSDT.json deleted file mode 100644 index e73e0c3ee..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.7059976497655, - "auto_unstuck_ema_dist": -0.07399947128052548, - "auto_unstuck_qty_pct": 0.05059252155325421, - "auto_unstuck_wallet_exposure_threshold": 0.2732696440835609, - "backwards_tp": true, - "ddown_factor": 0.683780398927342, - "ema_span_0": 1212.9906761003215, - "ema_span_1": 1267.9960410731865, - "enabled": true, - "initial_eprice_ema_dist": -0.007267945259014757, - "initial_qty_pct": 0.012551282713576414, - "markup_range": 0.010237727708622787, - "min_markup": 0.007996434943505023, - "n_close_orders": 14, - "rentry_pprice_dist": 0.024526687662561455, - "rentry_pprice_dist_wallet_exposure_weighting": 4.129907495670678, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1416.0808980953811, - "auto_unstuck_ema_dist": -0.015090502372218921, - "auto_unstuck_qty_pct": 0.011705759989045187, - "auto_unstuck_wallet_exposure_threshold": 0.4827527111233326, - "backwards_tp": true, - "ddown_factor": 2.375293121946399, - "ema_span_0": 909.8369570829402, - "ema_span_1": 1401.3869679963714, - "enabled": true, - "initial_eprice_ema_dist": -0.0032755875574368813, - "initial_qty_pct": 0.014096466087233915, - "markup_range": 0.0012061049900079577, - "min_markup": 0.009460422243755904, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02830474904038458, - "rentry_pprice_dist_wallet_exposure_weighting": 1.004968448825124, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COCOSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COCOSUSDT.json deleted file mode 100644 index e015c92a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1388.56469563749, - "auto_unstuck_ema_dist": -0.025813117273958294, - "auto_unstuck_qty_pct": 0.010711851577528417, - "auto_unstuck_wallet_exposure_threshold": 0.527344573089231, - "backwards_tp": true, - "ddown_factor": 2.2937696588915606, - "ema_span_0": 523.6638312932257, - "ema_span_1": 595.6070374548526, - "enabled": true, - "initial_eprice_ema_dist": 0.002991279072088627, - "initial_qty_pct": 0.024579948114671547, - "markup_range": 0.001854747063710065, - "min_markup": 0.003944685040745156, - "n_close_orders": 14, - "rentry_pprice_dist": 0.02169771176424046, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2331712570287463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1258.533836286675, - "auto_unstuck_ema_dist": -0.050420754055908956, - "auto_unstuck_qty_pct": 0.010367956295016667, - "auto_unstuck_wallet_exposure_threshold": 0.3825483432482047, - "backwards_tp": true, - "ddown_factor": 0.7826514669796336, - "ema_span_0": 873.4999919550202, - "ema_span_1": 895.3805464298258, - "enabled": true, - "initial_eprice_ema_dist": -0.005344396137593555, - "initial_qty_pct": 0.01704379426180813, - "markup_range": 0.002486910202571434, - "min_markup": 0.006991449653507262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.020094491749181168, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1561814982508762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COMPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COMPUSDT.json deleted file mode 100644 index 856b2079e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1032.0393966402398, - "auto_unstuck_ema_dist": -0.08505911207810105, - "auto_unstuck_qty_pct": 0.010001829496032363, - "auto_unstuck_wallet_exposure_threshold": 0.10885195524160618, - "backwards_tp": true, - "ddown_factor": 1.0542163214659888, - "ema_span_0": 531.0301368914947, - "ema_span_1": 868.7737416729324, - "enabled": true, - "initial_eprice_ema_dist": -0.006550938584244639, - "initial_qty_pct": 0.01340357130930704, - "markup_range": 0.005412431623530812, - "min_markup": 0.006470645158068606, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027662992309506817, - "rentry_pprice_dist_wallet_exposure_weighting": 3.42765913284477, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1434.95470349684, - "auto_unstuck_ema_dist": -0.024841444640052432, - "auto_unstuck_qty_pct": 0.011022405296024728, - "auto_unstuck_wallet_exposure_threshold": 0.40318430603784033, - "backwards_tp": true, - "ddown_factor": 1.2793862249664472, - "ema_span_0": 1210.6140618086008, - "ema_span_1": 985.2117908170292, - "enabled": true, - "initial_eprice_ema_dist": 0.002776635438437912, - "initial_qty_pct": 0.014124971780341325, - "markup_range": 0.008582705328753508, - "min_markup": 0.009991701653494632, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03596962137999582, - "rentry_pprice_dist_wallet_exposure_weighting": 11.572090940900708, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COTIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COTIUSDT.json deleted file mode 100644 index ce9bb4bb9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.2651804644984, - "auto_unstuck_ema_dist": -0.04857494207191806, - "auto_unstuck_qty_pct": 0.010000458168777652, - "auto_unstuck_wallet_exposure_threshold": 0.22855161900314716, - "backwards_tp": true, - "ddown_factor": 2.101393365183695, - "ema_span_0": 5.006646368285773, - "ema_span_1": 69.59304573133588, - "enabled": true, - "initial_eprice_ema_dist": -0.01818259738182865, - "initial_qty_pct": 0.011816031438280599, - "markup_range": 0.007033476230570391, - "min_markup": 0.009469531852431406, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04344431664863304, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9763652353005972, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 873.637864518467, - "auto_unstuck_ema_dist": 0.0027167152392486723, - "auto_unstuck_qty_pct": 0.010134702768904899, - "auto_unstuck_wallet_exposure_threshold": 0.5296341721374691, - "backwards_tp": true, - "ddown_factor": 1.6236808849180924, - "ema_span_0": 247.2121823883306, - "ema_span_1": 671.2149798710092, - "enabled": true, - "initial_eprice_ema_dist": -0.012795967500921657, - "initial_qty_pct": 0.0177802026529527, - "markup_range": 0.006572159849110811, - "min_markup": 0.004144988577012047, - "n_close_orders": 4, - "rentry_pprice_dist": 0.025973328443623333, - "rentry_pprice_dist_wallet_exposure_weighting": 6.648668042661048, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CRVUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CRVUSDT.json deleted file mode 100644 index 0b9805962..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 936.4064387261278, - "auto_unstuck_ema_dist": -0.018229377300871062, - "auto_unstuck_qty_pct": 0.055955438445577155, - "auto_unstuck_wallet_exposure_threshold": 0.7100433507548621, - "backwards_tp": true, - "ddown_factor": 2.2745669544412723, - "ema_span_0": 1342.9364832417575, - "ema_span_1": 1314.4941071752935, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013417868744729592, - "markup_range": 0.005882568873354081, - "min_markup": 0.0050343034246751, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04766119361204793, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5017721640367305, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 889.5040146579689, - "auto_unstuck_ema_dist": 0.0020380493865577334, - "auto_unstuck_qty_pct": 0.028446289233495552, - "auto_unstuck_wallet_exposure_threshold": 0.2772610735313388, - "backwards_tp": true, - "ddown_factor": 0.6968005638312483, - "ema_span_0": 177.00277355311428, - "ema_span_1": 332.52633605770666, - "enabled": true, - "initial_eprice_ema_dist": -0.009608625286553658, - "initial_qty_pct": 0.016293246901005864, - "markup_range": 0.006698876837526697, - "min_markup": 0.009758543989554771, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03842075783938509, - "rentry_pprice_dist_wallet_exposure_weighting": 3.020269671528331, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CTKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CTKUSDT.json deleted file mode 100644 index 71bdc64cd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1247.4857003692375, - "auto_unstuck_ema_dist": -0.06568276353142971, - "auto_unstuck_qty_pct": 0.01716277308000626, - "auto_unstuck_wallet_exposure_threshold": 0.1556498253042952, - "backwards_tp": true, - "ddown_factor": 0.49373306781911264, - "ema_span_0": 439.25341874521416, - "ema_span_1": 402.0112434981203, - "enabled": true, - "initial_eprice_ema_dist": -0.0025193405816358954, - "initial_qty_pct": 0.014912708413663291, - "markup_range": 0.005725208957539647, - "min_markup": 0.008883375027758853, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029521983421805145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5296275592314408, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.753394749615, - "auto_unstuck_ema_dist": -0.031020876610605527, - "auto_unstuck_qty_pct": 0.028650337546252787, - "auto_unstuck_wallet_exposure_threshold": 0.788704240550669, - "backwards_tp": true, - "ddown_factor": 2.2564813632265865, - "ema_span_0": 277.32162494037095, - "ema_span_1": 620.7254146785971, - "enabled": true, - "initial_eprice_ema_dist": -0.02651195238020243, - "initial_qty_pct": 0.011724874201595245, - "markup_range": 0.0025928691174552394, - "min_markup": 0.009907654046726342, - "n_close_orders": 9, - "rentry_pprice_dist": 0.02113097915817273, - "rentry_pprice_dist_wallet_exposure_weighting": 18.229078511433308, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CTSIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CTSIUSDT.json deleted file mode 100644 index 2f000daa7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 452.8383148519595, - "auto_unstuck_ema_dist": -0.015369003312624195, - "auto_unstuck_qty_pct": 0.010171141837166399, - "auto_unstuck_wallet_exposure_threshold": 0.1091678525927996, - "backwards_tp": true, - "ddown_factor": 0.8316033738578285, - "ema_span_0": 1275.723153859215, - "ema_span_1": 351.35466806696525, - "enabled": true, - "initial_eprice_ema_dist": -0.003160931566549799, - "initial_qty_pct": 0.01166280881433603, - "markup_range": 0.004432830216164361, - "min_markup": 0.006847493753716176, - "n_close_orders": 16, - "rentry_pprice_dist": 0.02508725057478151, - "rentry_pprice_dist_wallet_exposure_weighting": 10.867689432141612, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1132.1096124195237, - "auto_unstuck_ema_dist": -0.008374161359472818, - "auto_unstuck_qty_pct": 0.010742873425228549, - "auto_unstuck_wallet_exposure_threshold": 0.11425233652812053, - "backwards_tp": true, - "ddown_factor": 1.8126257897560152, - "ema_span_0": 54.83925050891028, - "ema_span_1": 73.4409190495824, - "enabled": true, - "initial_eprice_ema_dist": 0.0024439843960384617, - "initial_qty_pct": 0.016462517330693375, - "markup_range": 0.0027529146892932635, - "min_markup": 0.009920486679402622, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049127011282977466, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5925197032446106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CVCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CVCUSDT.json deleted file mode 100644 index c421c4fea..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 611.5506255455906, - "auto_unstuck_ema_dist": -0.017587832398252717, - "auto_unstuck_qty_pct": 0.047226254984243446, - "auto_unstuck_wallet_exposure_threshold": 0.33049960246604704, - "backwards_tp": true, - "ddown_factor": 2.3743834751818995, - "ema_span_0": 162.5556250066476, - "ema_span_1": 650.3064722776295, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998213276721374, - "initial_qty_pct": 0.01583205186781149, - "markup_range": 0.001986720543663317, - "min_markup": 0.003646489380621451, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042081767416105066, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7709045556511114, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1439.1103830443853, - "auto_unstuck_ema_dist": -0.012186869449521864, - "auto_unstuck_qty_pct": 0.010263059927198417, - "auto_unstuck_wallet_exposure_threshold": 0.11113162677810223, - "backwards_tp": true, - "ddown_factor": 2.3678294978474606, - "ema_span_0": 175.84637076087722, - "ema_span_1": 1096.1616259206737, - "enabled": true, - "initial_eprice_ema_dist": -0.004579206061317028, - "initial_qty_pct": 0.010743421915198064, - "markup_range": 0.003105217426646186, - "min_markup": 0.0022880067090024787, - "n_close_orders": 10, - "rentry_pprice_dist": 0.046421397531376446, - "rentry_pprice_dist_wallet_exposure_weighting": 10.606085020833945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CVXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CVXUSDT.json deleted file mode 100644 index a2492a01f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1052.5741701219606, - "auto_unstuck_ema_dist": -0.003920847299713015, - "auto_unstuck_qty_pct": 0.01007162584317069, - "auto_unstuck_wallet_exposure_threshold": 0.25039934646309026, - "backwards_tp": true, - "ddown_factor": 2.252008167660829, - "ema_span_0": 1305.7793335310762, - "ema_span_1": 1339.9745955301835, - "enabled": true, - "initial_eprice_ema_dist": -0.004741343084621099, - "initial_qty_pct": 0.01168569454282777, - "markup_range": 0.007025950093798064, - "min_markup": 0.006926547608866835, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04599814009331318, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4132239431731345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 927.5130044330807, - "auto_unstuck_ema_dist": -0.007464576553170371, - "auto_unstuck_qty_pct": 0.010284838388516168, - "auto_unstuck_wallet_exposure_threshold": 0.32625544210811896, - "backwards_tp": true, - "ddown_factor": 2.8214869919468186, - "ema_span_0": 577.6715931946267, - "ema_span_1": 5.117325556913231, - "enabled": true, - "initial_eprice_ema_dist": -0.008112104945327653, - "initial_qty_pct": 0.013072529157739826, - "markup_range": 0.0, - "min_markup": 0.0019828730791326995, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01792890937176877, - "rentry_pprice_dist_wallet_exposure_weighting": 5.573245451847114, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DARUSDT.json deleted file mode 100644 index 81ebcc443..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1100.0766974686742, - "auto_unstuck_ema_dist": -0.08514628223981162, - "auto_unstuck_qty_pct": 0.014754655707221693, - "auto_unstuck_wallet_exposure_threshold": 0.5590674894077008, - "backwards_tp": true, - "ddown_factor": 2.384812053735167, - "ema_span_0": 1098.6132497794993, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011799827841045437, - "markup_range": 0.004116742277219143, - "min_markup": 0.007502084320029683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047706307783281277, - "rentry_pprice_dist_wallet_exposure_weighting": 4.36567006885887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1245.734893700967, - "auto_unstuck_ema_dist": -0.036628475907984855, - "auto_unstuck_qty_pct": 0.051219617512150865, - "auto_unstuck_wallet_exposure_threshold": 0.3210560460285019, - "backwards_tp": true, - "ddown_factor": 0.9305626870119749, - "ema_span_0": 510.0454983758897, - "ema_span_1": 295.4459061417075, - "enabled": true, - "initial_eprice_ema_dist": -0.09531641777131623, - "initial_qty_pct": 0.015812462150276048, - "markup_range": 0.0014451870736427, - "min_markup": 0.00371743483267496, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04523865674951875, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2373533763330583e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DASHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DASHUSDT.json deleted file mode 100644 index 300558264..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.055229211736, - "auto_unstuck_ema_dist": -0.03383240561699953, - "auto_unstuck_qty_pct": 0.020929986722580424, - "auto_unstuck_wallet_exposure_threshold": 0.4507773451589427, - "backwards_tp": true, - "ddown_factor": 2.251404841380241, - "ema_span_0": 332.1323424914465, - "ema_span_1": 611.3988437739725, - "enabled": true, - "initial_eprice_ema_dist": -0.0034363991468286514, - "initial_qty_pct": 0.015177195886619683, - "markup_range": 0.0030337325581531794, - "min_markup": 0.002751517117800208, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019453320055873184, - "rentry_pprice_dist_wallet_exposure_weighting": 3.888733212449491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DEFIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DEFIUSDT.json deleted file mode 100644 index d52be986d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1186.66815236254, - "auto_unstuck_ema_dist": -0.028514116133529693, - "auto_unstuck_qty_pct": 0.019652947306750237, - "auto_unstuck_wallet_exposure_threshold": 0.865249740544604, - "backwards_tp": true, - "ddown_factor": 1.689373541671018, - "ema_span_0": 636.6177330233982, - "ema_span_1": 618.5301142517727, - "enabled": true, - "initial_eprice_ema_dist": -0.06061375330279619, - "initial_qty_pct": 0.01134900890303829, - "markup_range": 0.010440204702372191, - "min_markup": 0.005086072205860171, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03203753030408284, - "rentry_pprice_dist_wallet_exposure_weighting": 5.953133649148345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1310.6545383409416, - "auto_unstuck_ema_dist": -0.08443986013634777, - "auto_unstuck_qty_pct": 0.010006301564272103, - "auto_unstuck_wallet_exposure_threshold": 0.20424238658555713, - "backwards_tp": true, - "ddown_factor": 2.0481881821416263, - "ema_span_0": 760.9107180914353, - "ema_span_1": 777.0631710058001, - "enabled": true, - "initial_eprice_ema_dist": -0.00031091581030473313, - "initial_qty_pct": 0.014579915507288821, - "markup_range": 0.003689240959080322, - "min_markup": 0.007902039558060259, - "n_close_orders": 10, - "rentry_pprice_dist": 0.026707183027526813, - "rentry_pprice_dist_wallet_exposure_weighting": 7.1416148000397115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DENTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DENTUSDT.json deleted file mode 100644 index d3e041cb9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1292.3135877854932, - "auto_unstuck_ema_dist": 0.0016337044149924793, - "auto_unstuck_qty_pct": 0.019022704810199815, - "auto_unstuck_wallet_exposure_threshold": 0.3045209148062834, - "backwards_tp": true, - "ddown_factor": 1.1941898331192893, - "ema_span_0": 190.60557197191426, - "ema_span_1": 940.5400845021753, - "enabled": true, - "initial_eprice_ema_dist": 0.0010085695826447365, - "initial_qty_pct": 0.012188309968400193, - "markup_range": 0.004335604301090328, - "min_markup": 0.009951937890872528, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030209549036833126, - "rentry_pprice_dist_wallet_exposure_weighting": 2.908537123165273, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1221.3975272270118, - "auto_unstuck_ema_dist": -0.02252243199499573, - "auto_unstuck_qty_pct": 0.015439176563821008, - "auto_unstuck_wallet_exposure_threshold": 0.3132570100257259, - "backwards_tp": true, - "ddown_factor": 0.11877278352292303, - "ema_span_0": 1029.992790387766, - "ema_span_1": 683.5079032839815, - "enabled": true, - "initial_eprice_ema_dist": -0.00574234043906684, - "initial_qty_pct": 0.01335345164390577, - "markup_range": 0.010731543339000263, - "min_markup": 0.009496234856972863, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03243630699321057, - "rentry_pprice_dist_wallet_exposure_weighting": 8.8899456670894, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DGBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DGBUSDT.json deleted file mode 100644 index f459d3309..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.7059976497655, - "auto_unstuck_ema_dist": -0.07399947128052548, - "auto_unstuck_qty_pct": 0.05059252155325421, - "auto_unstuck_wallet_exposure_threshold": 0.2732696440835609, - "backwards_tp": true, - "ddown_factor": 0.683780398927342, - "ema_span_0": 1212.9906761003215, - "ema_span_1": 1267.9960410731865, - "enabled": true, - "initial_eprice_ema_dist": -0.007267945259014757, - "initial_qty_pct": 0.012551282713576414, - "markup_range": 0.010237727708622787, - "min_markup": 0.007996434943505023, - "n_close_orders": 14, - "rentry_pprice_dist": 0.024526687662561455, - "rentry_pprice_dist_wallet_exposure_weighting": 4.129907495670678, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1129.2955171542465, - "auto_unstuck_ema_dist": -0.03950898578871404, - "auto_unstuck_qty_pct": 0.03795250552410517, - "auto_unstuck_wallet_exposure_threshold": 0.2155401719670245, - "backwards_tp": true, - "ddown_factor": 1.920706088711893, - "ema_span_0": 1092.4619906796183, - "ema_span_1": 1082.2896383241623, - "enabled": true, - "initial_eprice_ema_dist": -0.0014985872139409622, - "initial_qty_pct": 0.02663730578095126, - "markup_range": 0.002293685021679321, - "min_markup": 0.006738443883950546, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02781227627598016, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9826124066213908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DOGEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DOGEUSDT.json deleted file mode 100644 index acce9bd10..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 279.8867523745087, - "auto_unstuck_ema_dist": 0.002932347038833477, - "auto_unstuck_qty_pct": 0.07401866949531803, - "auto_unstuck_wallet_exposure_threshold": 0.1691479656083539, - "backwards_tp": true, - "ddown_factor": 0.8699571582996677, - "ema_span_0": 788.6052801430903, - "ema_span_1": 682.3179282496717, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011197477087553817, - "markup_range": 0.004890418792461392, - "min_markup": 0.006393283547672276, - "n_close_orders": 8, - "rentry_pprice_dist": 0.015983046232921357, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8071902873064656, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1377.1519699877722, - "auto_unstuck_ema_dist": -0.029640293535384565, - "auto_unstuck_qty_pct": 0.01358695151176679, - "auto_unstuck_wallet_exposure_threshold": 0.8144571236420198, - "backwards_tp": true, - "ddown_factor": 1.7976462695272, - "ema_span_0": 390.17817755367633, - "ema_span_1": 1200.43696047037, - "enabled": true, - "initial_eprice_ema_dist": -0.00444319554923519, - "initial_qty_pct": 0.010675647793337533, - "markup_range": 0.00014241414979329007, - "min_markup": 0.0035134463807143385, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04013927675712447, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9945346124595819, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DOTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DOTUSDT.json deleted file mode 100644 index 1814fd378..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 883.2260425590517, - "auto_unstuck_ema_dist": 0.002089416653420185, - "auto_unstuck_qty_pct": 0.02269006508138876, - "auto_unstuck_wallet_exposure_threshold": 0.4463085556672714, - "backwards_tp": true, - "ddown_factor": 1.0911131169941526, - "ema_span_0": 1146.4282337493853, - "ema_span_1": 172.79884736920792, - "enabled": true, - "initial_eprice_ema_dist": -0.01835407346112807, - "initial_qty_pct": 0.015139997819618294, - "markup_range": 0.0069543315851069735, - "min_markup": 0.004917433011217315, - "n_close_orders": 8, - "rentry_pprice_dist": 0.022468885452824026, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7424900617791341, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1273.3493026412777, - "auto_unstuck_ema_dist": -0.007165216498145906, - "auto_unstuck_qty_pct": 0.02107218193482794, - "auto_unstuck_wallet_exposure_threshold": 0.4256415166873583, - "backwards_tp": true, - "ddown_factor": 1.4809465800241086, - "ema_span_0": 613.1950736600007, - "ema_span_1": 931.5716656752222, - "enabled": true, - "initial_eprice_ema_dist": -0.009924317058402576, - "initial_qty_pct": 0.02860406885207739, - "markup_range": 0.002023633510078988, - "min_markup": 0.002512095167575749, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02919878252507198, - "rentry_pprice_dist_wallet_exposure_weighting": 2.365511665969585, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DUSKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DUSKUSDT.json deleted file mode 100644 index 27191c392..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1311.5399832936957, - "auto_unstuck_ema_dist": -0.03907802931119537, - "auto_unstuck_qty_pct": 0.014721051191023219, - "auto_unstuck_wallet_exposure_threshold": 0.592422601347004, - "backwards_tp": true, - "ddown_factor": 2.885375571754744, - "ema_span_0": 1300.8604075507383, - "ema_span_1": 1179.5666776700646, - "enabled": true, - "initial_eprice_ema_dist": -0.0007626660083684643, - "initial_qty_pct": 0.011148279008915556, - "markup_range": 0.004280177753869444, - "min_markup": 0.008814171271139854, - "n_close_orders": 5, - "rentry_pprice_dist": 0.045902601921366463, - "rentry_pprice_dist_wallet_exposure_weighting": 7.5669162427047345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 909.1410729564229, - "auto_unstuck_ema_dist": -0.0255201975598679, - "auto_unstuck_qty_pct": 0.013693114893090238, - "auto_unstuck_wallet_exposure_threshold": 0.3060305341405119, - "backwards_tp": true, - "ddown_factor": 2.180523028362061, - "ema_span_0": 1412.2451345308982, - "ema_span_1": 1428.8244343762062, - "enabled": true, - "initial_eprice_ema_dist": -0.005456712624253962, - "initial_qty_pct": 0.014481063004963355, - "markup_range": 0.0040892598403161375, - "min_markup": 0.003160743765659779, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02830474904038458, - "rentry_pprice_dist_wallet_exposure_weighting": 15.08147889620597, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DYDXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DYDXUSDT.json deleted file mode 100644 index 67a452716..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1012.7632767918128, - "auto_unstuck_ema_dist": -0.0973547105359452, - "auto_unstuck_qty_pct": 0.022172358914450355, - "auto_unstuck_wallet_exposure_threshold": 0.11278498435670077, - "backwards_tp": true, - "ddown_factor": 1.7217812990562118, - "ema_span_0": 1009.8163494750469, - "ema_span_1": 1182.9588728369936, - "enabled": true, - "initial_eprice_ema_dist": -0.01482289849973252, - "initial_qty_pct": 0.01247500121142739, - "markup_range": 0.0036720374878811846, - "min_markup": 0.0035612363625727806, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0452852537561959, - "rentry_pprice_dist_wallet_exposure_weighting": 3.6163824026808635, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EDUUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EDUUSDT.json deleted file mode 100644 index 153cec5e7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1052.5741701219606, - "auto_unstuck_ema_dist": -0.003920847299713015, - "auto_unstuck_qty_pct": 0.01007162584317069, - "auto_unstuck_wallet_exposure_threshold": 0.25039934646309026, - "backwards_tp": true, - "ddown_factor": 2.252008167660829, - "ema_span_0": 1305.7793335310762, - "ema_span_1": 1339.9745955301835, - "enabled": true, - "initial_eprice_ema_dist": -0.004741343084621099, - "initial_qty_pct": 0.01168569454282777, - "markup_range": 0.007025950093798064, - "min_markup": 0.006926547608866835, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04599814009331318, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4132239431731345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EGLDUSDT.json deleted file mode 100644 index 0a46133a3..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1319.03989136658, - "auto_unstuck_ema_dist": 0.0025201951056419087, - "auto_unstuck_qty_pct": 0.010084111689066175, - "auto_unstuck_wallet_exposure_threshold": 0.39959861503942123, - "backwards_tp": true, - "ddown_factor": 1.8451174893237217, - "ema_span_0": 1416.367487027906, - "ema_span_1": 181.4918326445922, - "enabled": true, - "initial_eprice_ema_dist": -0.007910565419260858, - "initial_qty_pct": 0.015746328082757746, - "markup_range": 0.005922849064988991, - "min_markup": 0.008233794636271578, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03694005072955376, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6679833561628623, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1196.422864114799, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01295468179511376, - "auto_unstuck_wallet_exposure_threshold": 0.3771166018595638, - "backwards_tp": true, - "ddown_factor": 2.087967570746561, - "ema_span_0": 783.5871146860993, - "ema_span_1": 187.06618360069058, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.030801433761173082, - "markup_range": 0.003016199468385893, - "min_markup": 0.00448971703976209, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045745193977689544, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ENJUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ENJUSDT.json deleted file mode 100644 index 2d1fd0aab..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1091.9249122302017, - "auto_unstuck_ema_dist": -0.08514350453347158, - "auto_unstuck_qty_pct": 0.010358255142866238, - "auto_unstuck_wallet_exposure_threshold": 0.5807792212712123, - "backwards_tp": true, - "ddown_factor": 2.208932570232063, - "ema_span_0": 775.5641240096238, - "ema_span_1": 588.0992743341152, - "enabled": true, - "initial_eprice_ema_dist": 0.0011088603456135102, - "initial_qty_pct": 0.010855596003675212, - "markup_range": 0.004565117890083648, - "min_markup": 0.0070493794542243375, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0246999068091038, - "rentry_pprice_dist_wallet_exposure_weighting": 4.048541794732258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1127.3053395235543, - "auto_unstuck_ema_dist": -0.08951543432812178, - "auto_unstuck_qty_pct": 0.0469716914800046, - "auto_unstuck_wallet_exposure_threshold": 0.42863660991765623, - "backwards_tp": true, - "ddown_factor": 0.7706338302931464, - "ema_span_0": 235.67545241423448, - "ema_span_1": 259.79916833305566, - "enabled": true, - "initial_eprice_ema_dist": -0.014701052169419674, - "initial_qty_pct": 0.022435172350807737, - "markup_range": 0.0049902329557523035, - "min_markup": 0.004568053625888946, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030972137990625835, - "rentry_pprice_dist_wallet_exposure_weighting": 4.262392375213503, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ENSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ENSUSDT.json deleted file mode 100644 index bfb914fa1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.249021252608, - "auto_unstuck_ema_dist": -0.002600576888307725, - "auto_unstuck_qty_pct": 0.010432413005248893, - "auto_unstuck_wallet_exposure_threshold": 0.15506845826751264, - "backwards_tp": true, - "ddown_factor": 0.4733818995593758, - "ema_span_0": 770.5033138499789, - "ema_span_1": 733.8822261725988, - "enabled": true, - "initial_eprice_ema_dist": 0.002908227600931329, - "initial_qty_pct": 0.013110481863277613, - "markup_range": 0.0037062698420862895, - "min_markup": 0.008860305049431824, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02562924412872706, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6390306662146283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1127.3053395235543, - "auto_unstuck_ema_dist": -0.08951543432812178, - "auto_unstuck_qty_pct": 0.0469716914800046, - "auto_unstuck_wallet_exposure_threshold": 0.42863660991765623, - "backwards_tp": true, - "ddown_factor": 0.7706338302931464, - "ema_span_0": 235.67545241423448, - "ema_span_1": 259.79916833305566, - "enabled": true, - "initial_eprice_ema_dist": -0.014701052169419674, - "initial_qty_pct": 0.022435172350807737, - "markup_range": 0.0049902329557523035, - "min_markup": 0.004568053625888946, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030972137990625835, - "rentry_pprice_dist_wallet_exposure_weighting": 4.262392375213503, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EOSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EOSUSDT.json deleted file mode 100644 index 6429a56af..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1228.3719134542807, - "auto_unstuck_ema_dist": -0.05528699136081331, - "auto_unstuck_qty_pct": 0.023501348015464482, - "auto_unstuck_wallet_exposure_threshold": 0.7699563914647427, - "backwards_tp": true, - "ddown_factor": 1.576199096270606, - "ema_span_0": 837.2087540805963, - "ema_span_1": 548.8301243306219, - "enabled": true, - "initial_eprice_ema_dist": 0.0011939016528522358, - "initial_qty_pct": 0.011124872325085397, - "markup_range": 0.0012088856504370979, - "min_markup": 0.009459458171171147, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03276514075103134, - "rentry_pprice_dist_wallet_exposure_weighting": 9.43428446060838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.2714698202462, - "auto_unstuck_ema_dist": 0.0013200273166717384, - "auto_unstuck_qty_pct": 0.013635012018200646, - "auto_unstuck_wallet_exposure_threshold": 0.5895246874364509, - "backwards_tp": true, - "ddown_factor": 2.698777215106034, - "ema_span_0": 562.4659497418509, - "ema_span_1": 1082.6632777060822, - "enabled": true, - "initial_eprice_ema_dist": 0.002619553444545556, - "initial_qty_pct": 0.021807398493813763, - "markup_range": 0.0053504596154854145, - "min_markup": 0.008241652500442504, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03863216249326461, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4885245164214947e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ETCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ETCUSDT.json deleted file mode 100644 index a201a4ef5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1425.0759274643879, - "auto_unstuck_ema_dist": -0.03092668328276308, - "auto_unstuck_qty_pct": 0.012057677251555241, - "auto_unstuck_wallet_exposure_threshold": 0.4691699788964982, - "backwards_tp": true, - "ddown_factor": 1.3664735826044883, - "ema_span_0": 500.4097395114556, - "ema_span_1": 481.2778919040329, - "enabled": true, - "initial_eprice_ema_dist": 0.002950424607624244, - "initial_qty_pct": 0.01281340574111698, - "markup_range": 0.006231870987400575, - "min_markup": 0.004514594069757063, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04900709833647481, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9233148759458772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 832.63382674548, - "auto_unstuck_ema_dist": -0.05946831304409592, - "auto_unstuck_qty_pct": 0.017814566954545166, - "auto_unstuck_wallet_exposure_threshold": 0.11469455758204185, - "backwards_tp": true, - "ddown_factor": 2.92483127735093, - "ema_span_0": 574.8187494519742, - "ema_span_1": 57.57397496828237, - "enabled": true, - "initial_eprice_ema_dist": -0.09289472462788682, - "initial_qty_pct": 0.013373874215066132, - "markup_range": 0.0017494164911519595, - "min_markup": 0.0042648708233958945, - "n_close_orders": 8, - "rentry_pprice_dist": 0.045222014404374046, - "rentry_pprice_dist_wallet_exposure_weighting": 1.004968448825124, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ETHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ETHUSDT.json deleted file mode 100644 index 00d31c5c8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1388.56469563749, - "auto_unstuck_ema_dist": -0.025813117273958294, - "auto_unstuck_qty_pct": 0.010711851577528417, - "auto_unstuck_wallet_exposure_threshold": 0.527344573089231, - "backwards_tp": true, - "ddown_factor": 2.2937696588915606, - "ema_span_0": 523.6638312932257, - "ema_span_1": 595.6070374548526, - "enabled": true, - "initial_eprice_ema_dist": 0.002991279072088627, - "initial_qty_pct": 0.024579948114671547, - "markup_range": 0.001854747063710065, - "min_markup": 0.003944685040745156, - "n_close_orders": 14, - "rentry_pprice_dist": 0.02169771176424046, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2331712570287463, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1136.5639902572202, - "auto_unstuck_ema_dist": -0.03249431179808732, - "auto_unstuck_qty_pct": 0.010024693852036394, - "auto_unstuck_wallet_exposure_threshold": 0.4699506453067689, - "backwards_tp": true, - "ddown_factor": 2.529874825638356, - "ema_span_0": 40.37118344267121, - "ema_span_1": 172.14766479298305, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.02486026228576442, - "markup_range": 0.0006655785085890444, - "min_markup": 0.0020956238458942783, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030224319455928468, - "rentry_pprice_dist_wallet_exposure_weighting": 3.043221774162653, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FETUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FETUSDT.json deleted file mode 100644 index fcbbbe58f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1175.7488875333333, - "auto_unstuck_ema_dist": -0.06773019924460438, - "auto_unstuck_qty_pct": 0.01781714116311864, - "auto_unstuck_wallet_exposure_threshold": 0.6493195428077282, - "backwards_tp": true, - "ddown_factor": 0.33573022137094516, - "ema_span_0": 287.3861125957884, - "ema_span_1": 928.775575738627, - "enabled": true, - "initial_eprice_ema_dist": -0.029576057113978576, - "initial_qty_pct": 0.01149130596549378, - "markup_range": 0.0037557470639028013, - "min_markup": 0.00883496068712517, - "n_close_orders": 13, - "rentry_pprice_dist": 0.027523509427529368, - "rentry_pprice_dist_wallet_exposure_weighting": 0.996650969727125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 873.637864518467, - "auto_unstuck_ema_dist": 0.0027167152392486723, - "auto_unstuck_qty_pct": 0.010134702768904899, - "auto_unstuck_wallet_exposure_threshold": 0.5296341721374691, - "backwards_tp": true, - "ddown_factor": 1.6236808849180924, - "ema_span_0": 247.2121823883306, - "ema_span_1": 671.2149798710092, - "enabled": true, - "initial_eprice_ema_dist": -0.012795967500921657, - "initial_qty_pct": 0.0177802026529527, - "markup_range": 0.006572159849110811, - "min_markup": 0.004144988577012047, - "n_close_orders": 4, - "rentry_pprice_dist": 0.025973328443623333, - "rentry_pprice_dist_wallet_exposure_weighting": 6.648668042661048, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FILUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FILUSDT.json deleted file mode 100644 index efd75a157..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 748.6482004302878, - "auto_unstuck_ema_dist": -0.025717818172750987, - "auto_unstuck_qty_pct": 0.028503082126542054, - "auto_unstuck_wallet_exposure_threshold": 0.3252583769381152, - "backwards_tp": true, - "ddown_factor": 0.36961057822880317, - "ema_span_0": 839.4219407244376, - "ema_span_1": 1267.9569905335134, - "enabled": true, - "initial_eprice_ema_dist": 0.000351645929546241, - "initial_qty_pct": 0.01472394040784414, - "markup_range": 0.0033272848393384796, - "min_markup": 0.009285956072291818, - "n_close_orders": 10, - "rentry_pprice_dist": 0.01738637660184067, - "rentry_pprice_dist_wallet_exposure_weighting": 12.735198369958438, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1310.9833490751976, - "auto_unstuck_ema_dist": -0.026478976268679517, - "auto_unstuck_qty_pct": 0.019368279291942708, - "auto_unstuck_wallet_exposure_threshold": 0.13817038985813151, - "backwards_tp": true, - "ddown_factor": 1.8919482877412843, - "ema_span_0": 401.01288259110123, - "ema_span_1": 452.5519466377394, - "enabled": true, - "initial_eprice_ema_dist": -0.022215864416336516, - "initial_qty_pct": 0.013680544833266969, - "markup_range": 0.0029117347174345775, - "min_markup": 0.004650311359298793, - "n_close_orders": 16, - "rentry_pprice_dist": 0.044044999119070866, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8443842963195685, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FLMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FLMUSDT.json deleted file mode 100644 index ff9c138b3..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 762.4077982764305, - "auto_unstuck_ema_dist": -0.019395738689708186, - "auto_unstuck_qty_pct": 0.010057350880785168, - "auto_unstuck_wallet_exposure_threshold": 0.15587469949760283, - "backwards_tp": true, - "ddown_factor": 1.6319317365151604, - "ema_span_0": 304.0373985249093, - "ema_span_1": 1404.9165101370102, - "enabled": true, - "initial_eprice_ema_dist": 0.002926413179035794, - "initial_qty_pct": 0.012403026114408243, - "markup_range": 0.0073396305346346185, - "min_markup": 0.009925795333922797, - "n_close_orders": 5, - "rentry_pprice_dist": 0.05, - "rentry_pprice_dist_wallet_exposure_weighting": 5.143790104758445, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 629.18972466239, - "auto_unstuck_ema_dist": -0.004124638942622285, - "auto_unstuck_qty_pct": 0.01202023754606886, - "auto_unstuck_wallet_exposure_threshold": 0.7359180690864491, - "backwards_tp": true, - "ddown_factor": 2.7127091021037217, - "ema_span_0": 1075.8723377450815, - "ema_span_1": 320.5935500374523, - "enabled": true, - "initial_eprice_ema_dist": -0.009925492262627705, - "initial_qty_pct": 0.010480612452755677, - "markup_range": 0.007015633971665356, - "min_markup": 0.0057252660995080785, - "n_close_orders": 7, - "rentry_pprice_dist": 0.044927734207310256, - "rentry_pprice_dist_wallet_exposure_weighting": 9.83899552175169, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FLOWUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FLOWUSDT.json deleted file mode 100644 index c0ea05951..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 629.18972466239, - "auto_unstuck_ema_dist": -0.004124638942622285, - "auto_unstuck_qty_pct": 0.01202023754606886, - "auto_unstuck_wallet_exposure_threshold": 0.7359180690864491, - "backwards_tp": true, - "ddown_factor": 2.7127091021037217, - "ema_span_0": 1075.8723377450815, - "ema_span_1": 320.5935500374523, - "enabled": true, - "initial_eprice_ema_dist": -0.009925492262627705, - "initial_qty_pct": 0.010480612452755677, - "markup_range": 0.007015633971665356, - "min_markup": 0.0057252660995080785, - "n_close_orders": 7, - "rentry_pprice_dist": 0.044927734207310256, - "rentry_pprice_dist_wallet_exposure_weighting": 9.83899552175169, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FOOTBALLUSDT.json deleted file mode 100644 index f0fc4a220..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.249021252608, - "auto_unstuck_ema_dist": -0.002600576888307725, - "auto_unstuck_qty_pct": 0.010432413005248893, - "auto_unstuck_wallet_exposure_threshold": 0.15506845826751264, - "backwards_tp": true, - "ddown_factor": 0.4733818995593758, - "ema_span_0": 770.5033138499789, - "ema_span_1": 733.8822261725988, - "enabled": true, - "initial_eprice_ema_dist": 0.002908227600931329, - "initial_qty_pct": 0.013110481863277613, - "markup_range": 0.0037062698420862895, - "min_markup": 0.008860305049431824, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02562924412872706, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6390306662146283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FTMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FTMUSDT.json deleted file mode 100644 index 363230f32..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 798.293072219778, - "auto_unstuck_ema_dist": -0.08945685705252912, - "auto_unstuck_qty_pct": 0.04700096788067972, - "auto_unstuck_wallet_exposure_threshold": 0.18348881537766848, - "backwards_tp": true, - "ddown_factor": 1.1896073080670606, - "ema_span_0": 1110.8051857803714, - "ema_span_1": 268.5670252924452, - "enabled": true, - "initial_eprice_ema_dist": -0.007294868546777536, - "initial_qty_pct": 0.01347001952964191, - "markup_range": 0.006820996420448236, - "min_markup": 0.009843184203568174, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04549839107012104, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2200800658944786, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 122.0131270338739, - "auto_unstuck_ema_dist": -0.07376570829185788, - "auto_unstuck_qty_pct": 0.09634159762170533, - "auto_unstuck_wallet_exposure_threshold": 0.8827944219056425, - "backwards_tp": true, - "ddown_factor": 1.4402702519211987, - "ema_span_0": 525.5351873911567, - "ema_span_1": 46.27030179994244, - "enabled": true, - "initial_eprice_ema_dist": -0.09036713612938521, - "initial_qty_pct": 0.015259489620102163, - "markup_range": 0.0006660997213341473, - "min_markup": 0.0028562837199329763, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03176219598038088, - "rentry_pprice_dist_wallet_exposure_weighting": 6.863708151685646, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FTTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FTTUSDT.json deleted file mode 100644 index 92ba5088c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1302.9622602969205, - "auto_unstuck_ema_dist": -0.009790478051886362, - "auto_unstuck_qty_pct": 0.010160647602187432, - "auto_unstuck_wallet_exposure_threshold": 0.6451895370758047, - "backwards_tp": true, - "ddown_factor": 1.920468386542543, - "ema_span_0": 11.379338818164452, - "ema_span_1": 8.954540549950563, - "enabled": true, - "initial_eprice_ema_dist": -0.09951272600741466, - "initial_qty_pct": 0.013176849249050184, - "markup_range": 0.0, - "min_markup": 0.002307822281199439, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03322325467189492, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003190094921757007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FXSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FXSUSDT.json deleted file mode 100644 index 1dd2bf20b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 976.1241959670339, - "auto_unstuck_ema_dist": -0.006520856833877502, - "auto_unstuck_qty_pct": 0.03141852642466559, - "auto_unstuck_wallet_exposure_threshold": 0.18455013218148056, - "backwards_tp": true, - "ddown_factor": 1.9974346865242991, - "ema_span_0": 1296.9662225857348, - "ema_span_1": 357.0107660929787, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017094006441248796, - "markup_range": 0.006766714139571341, - "min_markup": 0.00924309771757737, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03980847511721127, - "rentry_pprice_dist_wallet_exposure_weighting": 1.85289834095499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1350.2003342142991, - "auto_unstuck_ema_dist": 0.0029992952631757884, - "auto_unstuck_qty_pct": 0.015327058159562848, - "auto_unstuck_wallet_exposure_threshold": 0.659944090351001, - "backwards_tp": true, - "ddown_factor": 2.590130886731121, - "ema_span_0": 1059.7285498987653, - "ema_span_1": 651.1814216088172, - "enabled": true, - "initial_eprice_ema_dist": -0.004458515770233061, - "initial_qty_pct": 0.021663646399503425, - "markup_range": 0.013151187668541078, - "min_markup": 0.005401582924874767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.037256365934699706, - "rentry_pprice_dist_wallet_exposure_weighting": 4.60259667230565, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GALAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GALAUSDT.json deleted file mode 100644 index c2a87a236..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 607.6488855824183, - "auto_unstuck_ema_dist": -0.05793607509658503, - "auto_unstuck_qty_pct": 0.03667562004165626, - "auto_unstuck_wallet_exposure_threshold": 0.3406070569793193, - "backwards_tp": true, - "ddown_factor": 1.568362473775179, - "ema_span_0": 843.0542872757511, - "ema_span_1": 194.41116555412682, - "enabled": true, - "initial_eprice_ema_dist": -3.372906168526384e-05, - "initial_qty_pct": 0.01097431142216795, - "markup_range": 0.003558867197325538, - "min_markup": 0.0038544489260008115, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02568287482074966, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0642944106289665, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1112.7252265618881, - "auto_unstuck_ema_dist": -0.018508799050601103, - "auto_unstuck_qty_pct": 0.055969254401320064, - "auto_unstuck_wallet_exposure_threshold": 0.12328883190495712, - "backwards_tp": true, - "ddown_factor": 2.1271045253717453, - "ema_span_0": 420.36285700348526, - "ema_span_1": 134.58976343846453, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0036772219902083954, - "min_markup": 0.004967890146614809, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04758094846252682, - "rentry_pprice_dist_wallet_exposure_weighting": 6.479792532192432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GALUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GALUSDT.json deleted file mode 100644 index 5f8cd3760..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 754.205632034632, - "auto_unstuck_ema_dist": -0.003526950303230414, - "auto_unstuck_qty_pct": 0.010026297043304766, - "auto_unstuck_wallet_exposure_threshold": 0.5499048313948989, - "backwards_tp": true, - "ddown_factor": 1.3146649036481972, - "ema_span_0": 643.8976532235419, - "ema_span_1": 681.5373896361046, - "enabled": true, - "initial_eprice_ema_dist": -0.0016257760804812232, - "initial_qty_pct": 0.013814663871023833, - "markup_range": 0.013331732415678414, - "min_markup": 0.009992373907778547, - "n_close_orders": 7, - "rentry_pprice_dist": 0.025953758568424915, - "rentry_pprice_dist_wallet_exposure_weighting": 4.780456169823601, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GMTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GMTUSDT.json deleted file mode 100644 index 7178bff65..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1228.3719134542807, - "auto_unstuck_ema_dist": -0.05528699136081331, - "auto_unstuck_qty_pct": 0.023501348015464482, - "auto_unstuck_wallet_exposure_threshold": 0.7699563914647427, - "backwards_tp": true, - "ddown_factor": 1.576199096270606, - "ema_span_0": 837.2087540805963, - "ema_span_1": 548.8301243306219, - "enabled": true, - "initial_eprice_ema_dist": 0.0011939016528522358, - "initial_qty_pct": 0.011124872325085397, - "markup_range": 0.0012088856504370979, - "min_markup": 0.009459458171171147, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03276514075103134, - "rentry_pprice_dist_wallet_exposure_weighting": 9.43428446060838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1228.3218645772902, - "auto_unstuck_ema_dist": -0.003532934466774453, - "auto_unstuck_qty_pct": 0.07634526599915069, - "auto_unstuck_wallet_exposure_threshold": 0.11963582864462291, - "backwards_tp": true, - "ddown_factor": 0.1000007666425598, - "ema_span_0": 1417.5421873229893, - "ema_span_1": 1152.7126636319847, - "enabled": true, - "initial_eprice_ema_dist": -0.002205058274678462, - "initial_qty_pct": 0.01000058040598402, - "markup_range": 0.026932816586900898, - "min_markup": 0.009751880481568649, - "n_close_orders": 3, - "rentry_pprice_dist": 0.015564915596347257, - "rentry_pprice_dist_wallet_exposure_weighting": 11.565359590636366, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GMXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GMXUSDT.json deleted file mode 100644 index 79a7585b1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1192.8255569142352, - "auto_unstuck_ema_dist": -0.06762488053177027, - "auto_unstuck_qty_pct": 0.01268864664301521, - "auto_unstuck_wallet_exposure_threshold": 0.46988826748629037, - "backwards_tp": true, - "ddown_factor": 2.04556832482214, - "ema_span_0": 764.9807862497414, - "ema_span_1": 1328.4471945329149, - "enabled": true, - "initial_eprice_ema_dist": 0.0011422095624032097, - "initial_qty_pct": 0.013499963203512752, - "markup_range": 0.004500651552707535, - "min_markup": 0.003955414200391104, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03170502875996665, - "rentry_pprice_dist_wallet_exposure_weighting": 2.620772523318416e-05, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1302.9622602969205, - "auto_unstuck_ema_dist": -0.009790478051886362, - "auto_unstuck_qty_pct": 0.010160647602187432, - "auto_unstuck_wallet_exposure_threshold": 0.6451895370758047, - "backwards_tp": true, - "ddown_factor": 1.920468386542543, - "ema_span_0": 11.379338818164452, - "ema_span_1": 8.954540549950563, - "enabled": true, - "initial_eprice_ema_dist": -0.09951272600741466, - "initial_qty_pct": 0.013176849249050184, - "markup_range": 0.0, - "min_markup": 0.002307822281199439, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03322325467189492, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003190094921757007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GRTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GRTUSDT.json deleted file mode 100644 index aeeb4553c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 658.2637661272584, - "auto_unstuck_ema_dist": -0.03382575510376344, - "auto_unstuck_qty_pct": 0.02186021011673162, - "auto_unstuck_wallet_exposure_threshold": 0.3119404484400947, - "backwards_tp": true, - "ddown_factor": 1.4259805740592075, - "ema_span_0": 717.8185134139716, - "ema_span_1": 872.034506196939, - "enabled": true, - "initial_eprice_ema_dist": 0.00010223048642443503, - "initial_qty_pct": 0.016331840145980464, - "markup_range": 0.00790937020181785, - "min_markup": 0.008180255945873493, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029865406409510672, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8671678873773727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 524.6216017266275, - "auto_unstuck_ema_dist": -0.029512086217573244, - "auto_unstuck_qty_pct": 0.016183725198595827, - "auto_unstuck_wallet_exposure_threshold": 0.23853188119127472, - "backwards_tp": true, - "ddown_factor": 0.4771223519370582, - "ema_span_0": 1281.093624750493, - "ema_span_1": 180.39345097683784, - "enabled": true, - "initial_eprice_ema_dist": -0.0032755875574368813, - "initial_qty_pct": 0.04845177930800149, - "markup_range": 0.01022835436753469, - "min_markup": 0.004476905630767778, - "n_close_orders": 3, - "rentry_pprice_dist": 0.046350501617846984, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0607877920279116, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GTCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GTCUSDT.json deleted file mode 100644 index 2b56eae3c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1401.750725951102, - "auto_unstuck_ema_dist": 0.00143971259114687, - "auto_unstuck_qty_pct": 0.010183289384148439, - "auto_unstuck_wallet_exposure_threshold": 0.7082673079471072, - "backwards_tp": true, - "ddown_factor": 0.3598153093246285, - "ema_span_0": 1293.8154014108206, - "ema_span_1": 500.86813291019183, - "enabled": true, - "initial_eprice_ema_dist": -0.0095802073638984, - "initial_qty_pct": 0.013453969553887696, - "markup_range": 0.008339174676791756, - "min_markup": 0.009962513289988649, - "n_close_orders": 3, - "rentry_pprice_dist": 0.018466961411321762, - "rentry_pprice_dist_wallet_exposure_weighting": 15.069772196273696, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HBARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HBARUSDT.json deleted file mode 100644 index 46ec8c9f9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 226.7664472621495, - "auto_unstuck_ema_dist": 0.0001489573638140499, - "auto_unstuck_qty_pct": 0.06485880726615328, - "auto_unstuck_wallet_exposure_threshold": 0.612349340184531, - "backwards_tp": true, - "ddown_factor": 1.635306935714526, - "ema_span_0": 1426.3646227967456, - "ema_span_1": 1359.3022887896502, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01784073394126457, - "markup_range": 0.006920500854390728, - "min_markup": 0.008071887692053612, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02603439761865445, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9712980608934212, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 833.8498285388596, - "auto_unstuck_ema_dist": -0.010751917265482356, - "auto_unstuck_qty_pct": 0.018489823705361893, - "auto_unstuck_wallet_exposure_threshold": 0.747114718389375, - "backwards_tp": true, - "ddown_factor": 2.16620530870608, - "ema_span_0": 1438.181537194028, - "ema_span_1": 1143.335708090903, - "enabled": true, - "initial_eprice_ema_dist": -0.02340275229824605, - "initial_qty_pct": 0.013372444850574903, - "markup_range": 0.0034540416021096166, - "min_markup": 0.004879059987441383, - "n_close_orders": 10, - "rentry_pprice_dist": 0.026667948842584437, - "rentry_pprice_dist_wallet_exposure_weighting": 2.279018699577038, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HFTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HFTUSDT.json deleted file mode 100644 index afd617d13..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 755.330530562327, - "auto_unstuck_ema_dist": -0.0561265621598862, - "auto_unstuck_qty_pct": 0.03175866223135546, - "auto_unstuck_wallet_exposure_threshold": 0.3567488580126656, - "backwards_tp": true, - "ddown_factor": 2.832627822612122, - "ema_span_0": 1214.3235903868142, - "ema_span_1": 989.9185151901853, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995106311747465, - "initial_qty_pct": 0.018084791276372983, - "markup_range": 0.003753700561421403, - "min_markup": 0.01, - "n_close_orders": 11, - "rentry_pprice_dist": 0.043816964917970325, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9017318634796494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HIGHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HIGHUSDT.json deleted file mode 100644 index ce36ca885..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1136.9300686322479, - "auto_unstuck_ema_dist": -0.0008040299529814578, - "auto_unstuck_qty_pct": 0.010000699359493282, - "auto_unstuck_wallet_exposure_threshold": 0.689625745455322, - "backwards_tp": true, - "ddown_factor": 0.76692488899037, - "ema_span_0": 1439.9233777818256, - "ema_span_1": 1287.9241250145592, - "enabled": true, - "initial_eprice_ema_dist": 0.002881001973696066, - "initial_qty_pct": 0.013883369679869239, - "markup_range": 0.019192010765014565, - "min_markup": 0.009905748541100441, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04011483518266019, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9663509613730503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1331.581739508667, - "auto_unstuck_ema_dist": -0.0895857921693148, - "auto_unstuck_qty_pct": 0.017055090155035296, - "auto_unstuck_wallet_exposure_threshold": 0.16718970868617195, - "backwards_tp": true, - "ddown_factor": 0.8636202976918781, - "ema_span_0": 1268.8193577152765, - "ema_span_1": 1406.7360802569547, - "enabled": true, - "initial_eprice_ema_dist": 0.002992266668504045, - "initial_qty_pct": 0.023186356354383163, - "markup_range": 0.02744240403264854, - "min_markup": 0.00807348272065401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03410951604872415, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2346987184076035, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HNTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HNTUSDT.json deleted file mode 100644 index 9a5d910c5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1056.2587647038638, - "auto_unstuck_ema_dist": -0.0007501592435774812, - "auto_unstuck_qty_pct": 0.010109801728390289, - "auto_unstuck_wallet_exposure_threshold": 0.41234566224284314, - "backwards_tp": true, - "ddown_factor": 0.7599990669174843, - "ema_span_0": 1292.3013674861013, - "ema_span_1": 1384.1890320478074, - "enabled": true, - "initial_eprice_ema_dist": 9.219443918608253e-05, - "initial_qty_pct": 0.013888340243403246, - "markup_range": 0.004617014233188679, - "min_markup": 0.008324883453463978, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030802607984440997, - "rentry_pprice_dist_wallet_exposure_weighting": 18.46365495810027, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HOOKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HOOKUSDT.json deleted file mode 100644 index cd3498504..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1163.5903380039083, - "auto_unstuck_ema_dist": -0.003008552312766755, - "auto_unstuck_qty_pct": 0.012172672229300026, - "auto_unstuck_wallet_exposure_threshold": 0.5966342346789191, - "backwards_tp": true, - "ddown_factor": 0.6782805027511134, - "ema_span_0": 791.7518787554675, - "ema_span_1": 1368.436035395489, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014053635371213775, - "markup_range": 0.007015657915724937, - "min_markup": 0.009999997559837635, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03533219492073477, - "rentry_pprice_dist_wallet_exposure_weighting": 1.933680538534216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 833.8498285388596, - "auto_unstuck_ema_dist": -0.010751917265482356, - "auto_unstuck_qty_pct": 0.018489823705361893, - "auto_unstuck_wallet_exposure_threshold": 0.747114718389375, - "backwards_tp": true, - "ddown_factor": 2.16620530870608, - "ema_span_0": 1438.181537194028, - "ema_span_1": 1143.335708090903, - "enabled": true, - "initial_eprice_ema_dist": -0.02340275229824605, - "initial_qty_pct": 0.013372444850574903, - "markup_range": 0.0034540416021096166, - "min_markup": 0.004879059987441383, - "n_close_orders": 10, - "rentry_pprice_dist": 0.026667948842584437, - "rentry_pprice_dist_wallet_exposure_weighting": 2.279018699577038, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HOTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HOTUSDT.json deleted file mode 100644 index 4c563a4d1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1042.9465386695038, - "auto_unstuck_ema_dist": -0.012739535558294653, - "auto_unstuck_qty_pct": 0.01054920619287729, - "auto_unstuck_wallet_exposure_threshold": 0.13763901997540193, - "backwards_tp": true, - "ddown_factor": 2.8982916169424264, - "ema_span_0": 1133.5172283678778, - "ema_span_1": 1181.0020025594736, - "enabled": true, - "initial_eprice_ema_dist": 0.0029985289734769964, - "initial_qty_pct": 0.02212235919306313, - "markup_range": 0.0041215968172634496, - "min_markup": 0.008727150134471149, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03262111826555454, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3566784656800706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1249.0344849668122, - "auto_unstuck_ema_dist": -0.08382852078295529, - "auto_unstuck_qty_pct": 0.01828851679952936, - "auto_unstuck_wallet_exposure_threshold": 0.3038594538484629, - "backwards_tp": true, - "ddown_factor": 0.7893037356855567, - "ema_span_0": 17.932777365670283, - "ema_span_1": 12.058267154382575, - "enabled": true, - "initial_eprice_ema_dist": -0.08939869959568195, - "initial_qty_pct": 0.014728160057521821, - "markup_range": 0.006585109719498326, - "min_markup": 0.005682577802739656, - "n_close_orders": 7, - "rentry_pprice_dist": 0.019642008368284183, - "rentry_pprice_dist_wallet_exposure_weighting": 11.776134014760085, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ICPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ICPUSDT.json deleted file mode 100644 index f24b8fb59..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1089.3345127863754, - "auto_unstuck_ema_dist": -0.024165615529870448, - "auto_unstuck_qty_pct": 0.08883836750187048, - "auto_unstuck_wallet_exposure_threshold": 0.1537913623573174, - "backwards_tp": true, - "ddown_factor": 0.11201990706186488, - "ema_span_0": 856.3035855950279, - "ema_span_1": 248.4520879466756, - "enabled": true, - "initial_eprice_ema_dist": 0.0019686942085299724, - "initial_qty_pct": 0.033918419840101584, - "markup_range": 0.008722211932848585, - "min_markup": 0.005301702799370751, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025064030255752184, - "rentry_pprice_dist_wallet_exposure_weighting": 2.051929253542976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1136.941273665956, - "auto_unstuck_ema_dist": 0.002985537055555447, - "auto_unstuck_qty_pct": 0.013158891381998565, - "auto_unstuck_wallet_exposure_threshold": 0.12260022091968173, - "backwards_tp": true, - "ddown_factor": 2.075977614731808, - "ema_span_0": 35.41420558957712, - "ema_span_1": 1084.7573265548303, - "enabled": true, - "initial_eprice_ema_dist": -0.003615214935392173, - "initial_qty_pct": 0.01647389815972939, - "markup_range": 0.0010117545281911077, - "min_markup": 0.004368503803812658, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018739182238275483, - "rentry_pprice_dist_wallet_exposure_weighting": 2.102901620921129, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ICXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ICXUSDT.json deleted file mode 100644 index ac4446cc8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 318.6504428029986, - "auto_unstuck_ema_dist": -0.004573449633017514, - "auto_unstuck_qty_pct": 0.019449363382120534, - "auto_unstuck_wallet_exposure_threshold": 0.11653246669903014, - "backwards_tp": true, - "ddown_factor": 1.3072045005703874, - "ema_span_0": 1291.0581911335094, - "ema_span_1": 1439.9868281797922, - "enabled": true, - "initial_eprice_ema_dist": 0.0029898498720762764, - "initial_qty_pct": 0.017162428128301273, - "markup_range": 0.00860917205273761, - "min_markup": 0.009307208756493811, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04589914649816938, - "rentry_pprice_dist_wallet_exposure_weighting": 0.552553551266521, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1286.125657364608, - "auto_unstuck_ema_dist": -0.02615930821166352, - "auto_unstuck_qty_pct": 0.01123158475757617, - "auto_unstuck_wallet_exposure_threshold": 0.27775337333495115, - "backwards_tp": true, - "ddown_factor": 2.3971531477287904, - "ema_span_0": 485.31241335348614, - "ema_span_1": 16.409585456161686, - "enabled": true, - "initial_eprice_ema_dist": 0.0029733540052085746, - "initial_qty_pct": 0.011491422600369366, - "markup_range": 0.0031170032955608567, - "min_markup": 0.006046484345413286, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03487427911670635, - "rentry_pprice_dist_wallet_exposure_weighting": 0.15765889510871114, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IDEXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IDEXUSDT.json deleted file mode 100644 index 5bc62e8bf..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.0269735094156, - "auto_unstuck_ema_dist": -0.02592392619816825, - "auto_unstuck_qty_pct": 0.010937140701386516, - "auto_unstuck_wallet_exposure_threshold": 0.35020790961311576, - "backwards_tp": true, - "ddown_factor": 2.0302778810863837, - "ema_span_0": 1399.2964472826893, - "ema_span_1": 957.728426225106, - "enabled": true, - "initial_eprice_ema_dist": -0.010544098395606999, - "initial_qty_pct": 0.011216838386519951, - "markup_range": 0.0, - "min_markup": 0.005483537902914839, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02510119060007329, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4240727359656593, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1129.2955171542465, - "auto_unstuck_ema_dist": -0.03950898578871404, - "auto_unstuck_qty_pct": 0.03795250552410517, - "auto_unstuck_wallet_exposure_threshold": 0.2155401719670245, - "backwards_tp": true, - "ddown_factor": 1.920706088711893, - "ema_span_0": 1092.4619906796183, - "ema_span_1": 1082.2896383241623, - "enabled": true, - "initial_eprice_ema_dist": -0.0014985872139409622, - "initial_qty_pct": 0.02663730578095126, - "markup_range": 0.002293685021679321, - "min_markup": 0.006738443883950546, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02781227627598016, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9826124066213908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IDUSDT.json deleted file mode 100644 index ac5c7de42..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 867.8836569649084, - "auto_unstuck_ema_dist": -0.011250318606378637, - "auto_unstuck_qty_pct": 0.012882113476072628, - "auto_unstuck_wallet_exposure_threshold": 0.5175519149455021, - "backwards_tp": true, - "ddown_factor": 1.6395697456345002, - "ema_span_0": 731.0039435915826, - "ema_span_1": 146.06675448404627, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01230854583420255, - "markup_range": 0.009154473557148383, - "min_markup": 0.005086642429973314, - "n_close_orders": 10, - "rentry_pprice_dist": 0.048445924030936484, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0032389847255945795, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1196.422864114799, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01295468179511376, - "auto_unstuck_wallet_exposure_threshold": 0.3771166018595638, - "backwards_tp": true, - "ddown_factor": 2.087967570746561, - "ema_span_0": 783.5871146860993, - "ema_span_1": 187.06618360069058, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.030801433761173082, - "markup_range": 0.003016199468385893, - "min_markup": 0.00448971703976209, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045745193977689544, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IMXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IMXUSDT.json deleted file mode 100644 index de5cd85fa..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 755.330530562327, - "auto_unstuck_ema_dist": -0.0561265621598862, - "auto_unstuck_qty_pct": 0.03175866223135546, - "auto_unstuck_wallet_exposure_threshold": 0.3567488580126656, - "backwards_tp": true, - "ddown_factor": 2.832627822612122, - "ema_span_0": 1214.3235903868142, - "ema_span_1": 989.9185151901853, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995106311747465, - "initial_qty_pct": 0.018084791276372983, - "markup_range": 0.003753700561421403, - "min_markup": 0.01, - "n_close_orders": 11, - "rentry_pprice_dist": 0.043816964917970325, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9017318634796494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 632.1240158344632, - "auto_unstuck_ema_dist": -0.018827968178889376, - "auto_unstuck_qty_pct": 0.09383092048972241, - "auto_unstuck_wallet_exposure_threshold": 0.45117347164579463, - "backwards_tp": true, - "ddown_factor": 2.383256384319745, - "ema_span_0": 1196.245483232301, - "ema_span_1": 1198.2037083687096, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011890233225453002, - "markup_range": 0.00043272352119213604, - "min_markup": 0.0017267028860183224, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03721477551118811, - "rentry_pprice_dist_wallet_exposure_weighting": 6.841003673193187, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/INJUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/INJUSDT.json deleted file mode 100644 index 15295c28b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1247.4857003692375, - "auto_unstuck_ema_dist": -0.06568276353142971, - "auto_unstuck_qty_pct": 0.01716277308000626, - "auto_unstuck_wallet_exposure_threshold": 0.1556498253042952, - "backwards_tp": true, - "ddown_factor": 0.49373306781911264, - "ema_span_0": 439.25341874521416, - "ema_span_1": 402.0112434981203, - "enabled": true, - "initial_eprice_ema_dist": -0.0025193405816358954, - "initial_qty_pct": 0.014912708413663291, - "markup_range": 0.005725208957539647, - "min_markup": 0.008883375027758853, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029521983421805145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5296275592314408, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1384.3603393337523, - "auto_unstuck_ema_dist": 0.0024853636647473713, - "auto_unstuck_qty_pct": 0.06558568990335342, - "auto_unstuck_wallet_exposure_threshold": 0.5760045344127737, - "backwards_tp": true, - "ddown_factor": 2.027712494059968, - "ema_span_0": 1148.9580006997223, - "ema_span_1": 804.2632673694641, - "enabled": true, - "initial_eprice_ema_dist": 0.001997853862534355, - "initial_qty_pct": 0.010884095096774585, - "markup_range": 0.001760745822400736, - "min_markup": 0.002887650471616504, - "n_close_orders": 11, - "rentry_pprice_dist": 0.032530208495394716, - "rentry_pprice_dist_wallet_exposure_weighting": 18.518026084279576, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOSTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOSTUSDT.json deleted file mode 100644 index 900587294..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1163.5903380039083, - "auto_unstuck_ema_dist": -0.003008552312766755, - "auto_unstuck_qty_pct": 0.012172672229300026, - "auto_unstuck_wallet_exposure_threshold": 0.5966342346789191, - "backwards_tp": true, - "ddown_factor": 0.6782805027511134, - "ema_span_0": 791.7518787554675, - "ema_span_1": 1368.436035395489, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014053635371213775, - "markup_range": 0.007015657915724937, - "min_markup": 0.009999997559837635, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03533219492073477, - "rentry_pprice_dist_wallet_exposure_weighting": 1.933680538534216, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 634.444197484578, - "auto_unstuck_ema_dist": -0.06313107040995934, - "auto_unstuck_qty_pct": 0.013018709685131755, - "auto_unstuck_wallet_exposure_threshold": 0.6240821029354836, - "backwards_tp": true, - "ddown_factor": 2.482848597761319, - "ema_span_0": 1332.616633441199, - "ema_span_1": 729.8205592982808, - "enabled": true, - "initial_eprice_ema_dist": 0.0010029537815913192, - "initial_qty_pct": 0.012927528169331362, - "markup_range": 0.004660675813756986, - "min_markup": 0.0023487655080847453, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02458273906990599, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7963117547414792, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOTAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOTAUSDT.json deleted file mode 100644 index d10e0c347..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1005.9764255117444, - "auto_unstuck_ema_dist": -0.02527871383434574, - "auto_unstuck_qty_pct": 0.016319595431852484, - "auto_unstuck_wallet_exposure_threshold": 0.7302389116575592, - "backwards_tp": true, - "ddown_factor": 0.11316946876798886, - "ema_span_0": 487.4689773538222, - "ema_span_1": 273.695426801299, - "enabled": true, - "initial_eprice_ema_dist": -0.06907314696250821, - "initial_qty_pct": 0.013992561351949234, - "markup_range": 0.005100744511658945, - "min_markup": 0.00674490457090242, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03114698956136648, - "rentry_pprice_dist_wallet_exposure_weighting": 3.908216177093718, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1313.280706346231, - "auto_unstuck_ema_dist": -0.009390067851713594, - "auto_unstuck_qty_pct": 0.013876466275643312, - "auto_unstuck_wallet_exposure_threshold": 0.568069916392998, - "backwards_tp": true, - "ddown_factor": 2.8760418086116264, - "ema_span_0": 1299.905234937302, - "ema_span_1": 1244.8268358319644, - "enabled": true, - "initial_eprice_ema_dist": -0.01172374417752559, - "initial_qty_pct": 0.018736313456172063, - "markup_range": 0.0018764944648489764, - "min_markup": 0.005171910073259376, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04325067040709819, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0038176782160157597, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOTXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOTXUSDT.json deleted file mode 100644 index 74b18ecab..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 909.1410729564229, - "auto_unstuck_ema_dist": -0.0255201975598679, - "auto_unstuck_qty_pct": 0.013693114893090238, - "auto_unstuck_wallet_exposure_threshold": 0.3060305341405119, - "backwards_tp": true, - "ddown_factor": 2.180523028362061, - "ema_span_0": 1412.2451345308982, - "ema_span_1": 1428.8244343762062, - "enabled": true, - "initial_eprice_ema_dist": -0.005456712624253962, - "initial_qty_pct": 0.014481063004963355, - "markup_range": 0.0040892598403161375, - "min_markup": 0.003160743765659779, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02830474904038458, - "rentry_pprice_dist_wallet_exposure_weighting": 15.08147889620597, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/JASMYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/JASMYUSDT.json deleted file mode 100644 index 056ef4f50..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1425.0759274643879, - "auto_unstuck_ema_dist": -0.03092668328276308, - "auto_unstuck_qty_pct": 0.012057677251555241, - "auto_unstuck_wallet_exposure_threshold": 0.4691699788964982, - "backwards_tp": true, - "ddown_factor": 1.3664735826044883, - "ema_span_0": 500.4097395114556, - "ema_span_1": 481.2778919040329, - "enabled": true, - "initial_eprice_ema_dist": 0.002950424607624244, - "initial_qty_pct": 0.01281340574111698, - "markup_range": 0.006231870987400575, - "min_markup": 0.004514594069757063, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04900709833647481, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9233148759458772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1241.5530283468208, - "auto_unstuck_ema_dist": -5.6780029235400174e-05, - "auto_unstuck_qty_pct": 0.038984506597774915, - "auto_unstuck_wallet_exposure_threshold": 0.1395931734797936, - "backwards_tp": true, - "ddown_factor": 1.7287521315851035, - "ema_span_0": 27.03249596736449, - "ema_span_1": 23.07359005289345, - "enabled": true, - "initial_eprice_ema_dist": -0.0958441339506463, - "initial_qty_pct": 0.013128358286410851, - "markup_range": 0.004252484780212604, - "min_markup": 0.0080454847540127, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0473451669224419, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1289140037012767, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/JOEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/JOEUSDT.json deleted file mode 100644 index e35539713..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1291.345557999812, - "auto_unstuck_ema_dist": -0.00540478684178871, - "auto_unstuck_qty_pct": 0.015289894451198502, - "auto_unstuck_wallet_exposure_threshold": 0.20698079334339, - "backwards_tp": true, - "ddown_factor": 1.1954101388166567, - "ema_span_0": 896.4638329930463, - "ema_span_1": 784.8593068841126, - "enabled": true, - "initial_eprice_ema_dist": -0.0870997008866209, - "initial_qty_pct": 0.012310198013628162, - "markup_range": 0.0032333112637278525, - "min_markup": 0.00895162760919457, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04248353037113406, - "rentry_pprice_dist_wallet_exposure_weighting": 3.109541854359619, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.055229211736, - "auto_unstuck_ema_dist": -0.03383240561699953, - "auto_unstuck_qty_pct": 0.020929986722580424, - "auto_unstuck_wallet_exposure_threshold": 0.4507773451589427, - "backwards_tp": true, - "ddown_factor": 2.251404841380241, - "ema_span_0": 332.1323424914465, - "ema_span_1": 611.3988437739725, - "enabled": true, - "initial_eprice_ema_dist": -0.0034363991468286514, - "initial_qty_pct": 0.015177195886619683, - "markup_range": 0.0030337325581531794, - "min_markup": 0.002751517117800208, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019453320055873184, - "rentry_pprice_dist_wallet_exposure_weighting": 3.888733212449491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KAVAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KAVAUSDT.json deleted file mode 100644 index e2e330d3d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1311.5399832936957, - "auto_unstuck_ema_dist": -0.03907802931119537, - "auto_unstuck_qty_pct": 0.014721051191023219, - "auto_unstuck_wallet_exposure_threshold": 0.592422601347004, - "backwards_tp": true, - "ddown_factor": 2.885375571754744, - "ema_span_0": 1300.8604075507383, - "ema_span_1": 1179.5666776700646, - "enabled": true, - "initial_eprice_ema_dist": -0.0007626660083684643, - "initial_qty_pct": 0.011148279008915556, - "markup_range": 0.004280177753869444, - "min_markup": 0.008814171271139854, - "n_close_orders": 5, - "rentry_pprice_dist": 0.045902601921366463, - "rentry_pprice_dist_wallet_exposure_weighting": 7.5669162427047345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 814.6619764300473, - "auto_unstuck_ema_dist": -0.04651366957561906, - "auto_unstuck_qty_pct": 0.010107004631120573, - "auto_unstuck_wallet_exposure_threshold": 0.38893478520083175, - "backwards_tp": true, - "ddown_factor": 1.9400258564079893, - "ema_span_0": 902.4466022230717, - "ema_span_1": 1439.7582786975413, - "enabled": true, - "initial_eprice_ema_dist": 0.002999947691950286, - "initial_qty_pct": 0.02358065332117593, - "markup_range": 0.006915776279049167, - "min_markup": 0.009460422243755904, - "n_close_orders": 7, - "rentry_pprice_dist": 0.027914100992912902, - "rentry_pprice_dist_wallet_exposure_weighting": 16.118361251615482, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KEYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KEYUSDT.json deleted file mode 100644 index 9b91247bf..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 878.8439316189509, - "auto_unstuck_ema_dist": -0.027074135092344097, - "auto_unstuck_qty_pct": 0.015107463684303813, - "auto_unstuck_wallet_exposure_threshold": 0.5827549057117383, - "backwards_tp": true, - "ddown_factor": 0.17853722080286868, - "ema_span_0": 1134.9830174549247, - "ema_span_1": 1021.239871317313, - "enabled": true, - "initial_eprice_ema_dist": 0.0029913840835538944, - "initial_qty_pct": 0.010053681481523467, - "markup_range": 0.0018181234226242122, - "min_markup": 0.0020651824582331277, - "n_close_orders": 9, - "rentry_pprice_dist": 0.008663494829004833, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4581395171454616, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1129.2955171542465, - "auto_unstuck_ema_dist": -0.03950898578871404, - "auto_unstuck_qty_pct": 0.03795250552410517, - "auto_unstuck_wallet_exposure_threshold": 0.2155401719670245, - "backwards_tp": true, - "ddown_factor": 1.920706088711893, - "ema_span_0": 1092.4619906796183, - "ema_span_1": 1082.2896383241623, - "enabled": true, - "initial_eprice_ema_dist": -0.0014985872139409622, - "initial_qty_pct": 0.02663730578095126, - "markup_range": 0.002293685021679321, - "min_markup": 0.006738443883950546, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02781227627598016, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9826124066213908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KLAYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KLAYUSDT.json deleted file mode 100644 index b3740abd7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1228.3719134542807, - "auto_unstuck_ema_dist": -0.05528699136081331, - "auto_unstuck_qty_pct": 0.023501348015464482, - "auto_unstuck_wallet_exposure_threshold": 0.7699563914647427, - "backwards_tp": true, - "ddown_factor": 1.576199096270606, - "ema_span_0": 837.2087540805963, - "ema_span_1": 548.8301243306219, - "enabled": true, - "initial_eprice_ema_dist": 0.0011939016528522358, - "initial_qty_pct": 0.011124872325085397, - "markup_range": 0.0012088856504370979, - "min_markup": 0.009459458171171147, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03276514075103134, - "rentry_pprice_dist_wallet_exposure_weighting": 9.43428446060838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 632.1240158344632, - "auto_unstuck_ema_dist": -0.018827968178889376, - "auto_unstuck_qty_pct": 0.09383092048972241, - "auto_unstuck_wallet_exposure_threshold": 0.45117347164579463, - "backwards_tp": true, - "ddown_factor": 2.383256384319745, - "ema_span_0": 1196.245483232301, - "ema_span_1": 1198.2037083687096, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011890233225453002, - "markup_range": 0.00043272352119213604, - "min_markup": 0.0017267028860183224, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03721477551118811, - "rentry_pprice_dist_wallet_exposure_weighting": 6.841003673193187, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KNCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KNCUSDT.json deleted file mode 100644 index 6bad7d77a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1253.7616616959517, - "auto_unstuck_ema_dist": -0.06227627071006005, - "auto_unstuck_qty_pct": 0.012021500999824011, - "auto_unstuck_wallet_exposure_threshold": 0.2102599286771714, - "backwards_tp": true, - "ddown_factor": 0.6892194118338997, - "ema_span_0": 830.4870791040873, - "ema_span_1": 894.6758804565019, - "enabled": true, - "initial_eprice_ema_dist": -0.023363098108013288, - "initial_qty_pct": 0.011585691152438977, - "markup_range": 0.0059134827268446915, - "min_markup": 0.009787652123394592, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04357782174332145, - "rentry_pprice_dist_wallet_exposure_weighting": 4.977199390456865, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1002.8047023114201, - "auto_unstuck_ema_dist": -0.049934560968250934, - "auto_unstuck_qty_pct": 0.018255764659387927, - "auto_unstuck_wallet_exposure_threshold": 0.23334370875763508, - "backwards_tp": true, - "ddown_factor": 2.508648303352193, - "ema_span_0": 993.941977382204, - "ema_span_1": 1337.2560293131512, - "enabled": true, - "initial_eprice_ema_dist": 0.0020360788707223963, - "initial_qty_pct": 0.02475088458329639, - "markup_range": 0.002654275155638942, - "min_markup": 0.0055585008696734895, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04708075384246406, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2692204000435738, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KSMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KSMUSDT.json deleted file mode 100644 index dc5a704b6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1138.1090826274194, - "auto_unstuck_ema_dist": -0.0006653001155725834, - "auto_unstuck_qty_pct": 0.023223367641171007, - "auto_unstuck_wallet_exposure_threshold": 0.35041220461469197, - "backwards_tp": true, - "ddown_factor": 2.2707835863491006, - "ema_span_0": 1411.6946223548812, - "ema_span_1": 1335.804208668769, - "enabled": true, - "initial_eprice_ema_dist": 0.0021943224226400214, - "initial_qty_pct": 0.012010579939249756, - "markup_range": 0.004833197526376136, - "min_markup": 0.004057114569691182, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03475191548679297, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5959782017975637, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1170.7067155398893, - "auto_unstuck_ema_dist": -0.03919153322862854, - "auto_unstuck_qty_pct": 0.016630256960656002, - "auto_unstuck_wallet_exposure_threshold": 0.7121212894766958, - "backwards_tp": true, - "ddown_factor": 1.2823544033135428, - "ema_span_0": 358.3793926713013, - "ema_span_1": 615.8388966207882, - "enabled": true, - "initial_eprice_ema_dist": -0.004688775888578197, - "initial_qty_pct": 0.014874035882029011, - "markup_range": 0.0025194506367942774, - "min_markup": 0.006268495992377401, - "n_close_orders": 4, - "rentry_pprice_dist": 0.030725661218599466, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5381689318565783, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LDOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LDOUSDT.json deleted file mode 100644 index 5a062fed7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1247.4857003692375, - "auto_unstuck_ema_dist": -0.06568276353142971, - "auto_unstuck_qty_pct": 0.01716277308000626, - "auto_unstuck_wallet_exposure_threshold": 0.1556498253042952, - "backwards_tp": true, - "ddown_factor": 0.49373306781911264, - "ema_span_0": 439.25341874521416, - "ema_span_1": 402.0112434981203, - "enabled": true, - "initial_eprice_ema_dist": -0.0025193405816358954, - "initial_qty_pct": 0.014912708413663291, - "markup_range": 0.005725208957539647, - "min_markup": 0.008883375027758853, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029521983421805145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5296275592314408, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.6606525304717, - "auto_unstuck_ema_dist": -0.04006738399251589, - "auto_unstuck_qty_pct": 0.03437610365875845, - "auto_unstuck_wallet_exposure_threshold": 0.41540993479210847, - "backwards_tp": true, - "ddown_factor": 1.5028284245190666, - "ema_span_0": 1377.149654555075, - "ema_span_1": 982.9217376711995, - "enabled": true, - "initial_eprice_ema_dist": -0.0031143780224897983, - "initial_qty_pct": 0.01257204772161073, - "markup_range": 0.004246117887489931, - "min_markup": 0.009225673897714318, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03627238755229393, - "rentry_pprice_dist_wallet_exposure_weighting": 11.826437054158822, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LEVERUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LEVERUSDT.json deleted file mode 100644 index d60b7fc41..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 658.2637661272584, - "auto_unstuck_ema_dist": -0.03382575510376344, - "auto_unstuck_qty_pct": 0.02186021011673162, - "auto_unstuck_wallet_exposure_threshold": 0.3119404484400947, - "backwards_tp": true, - "ddown_factor": 1.4259805740592075, - "ema_span_0": 717.8185134139716, - "ema_span_1": 872.034506196939, - "enabled": true, - "initial_eprice_ema_dist": 0.00010223048642443503, - "initial_qty_pct": 0.016331840145980464, - "markup_range": 0.00790937020181785, - "min_markup": 0.008180255945873493, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029865406409510672, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8671678873773727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.2714698202462, - "auto_unstuck_ema_dist": 0.0013200273166717384, - "auto_unstuck_qty_pct": 0.013635012018200646, - "auto_unstuck_wallet_exposure_threshold": 0.5895246874364509, - "backwards_tp": true, - "ddown_factor": 2.698777215106034, - "ema_span_0": 562.4659497418509, - "ema_span_1": 1082.6632777060822, - "enabled": true, - "initial_eprice_ema_dist": 0.002619553444545556, - "initial_qty_pct": 0.021807398493813763, - "markup_range": 0.0053504596154854145, - "min_markup": 0.008241652500442504, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03863216249326461, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4885245164214947e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LINAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LINAUSDT.json deleted file mode 100644 index 0da226257..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 867.8836569649084, - "auto_unstuck_ema_dist": -0.011250318606378637, - "auto_unstuck_qty_pct": 0.012882113476072628, - "auto_unstuck_wallet_exposure_threshold": 0.5175519149455021, - "backwards_tp": true, - "ddown_factor": 1.6395697456345002, - "ema_span_0": 731.0039435915826, - "ema_span_1": 146.06675448404627, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01230854583420255, - "markup_range": 0.009154473557148383, - "min_markup": 0.005086642429973314, - "n_close_orders": 10, - "rentry_pprice_dist": 0.048445924030936484, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0032389847255945795, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1002.8622790054129, - "auto_unstuck_ema_dist": -0.04612612870698362, - "auto_unstuck_qty_pct": 0.017144846651290457, - "auto_unstuck_wallet_exposure_threshold": 0.17793205249124272, - "backwards_tp": true, - "ddown_factor": 1.8443864928141156, - "ema_span_0": 66.0344183486325, - "ema_span_1": 570.1556857909368, - "enabled": true, - "initial_eprice_ema_dist": -0.012886059137339593, - "initial_qty_pct": 0.010506932092617372, - "markup_range": 0.006248270516568822, - "min_markup": 0.0023820161840333817, - "n_close_orders": 15, - "rentry_pprice_dist": 0.030350330258368193, - "rentry_pprice_dist_wallet_exposure_weighting": 17.995834221439893, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LINKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LINKUSDT.json deleted file mode 100644 index aff8f0146..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1242.7008360642997, - "auto_unstuck_ema_dist": -0.09715463063442274, - "auto_unstuck_qty_pct": 0.010001257662175383, - "auto_unstuck_wallet_exposure_threshold": 0.41953880032139573, - "backwards_tp": true, - "ddown_factor": 0.6365683207821625, - "ema_span_0": 504.8381076089311, - "ema_span_1": 51.839627822588845, - "enabled": true, - "initial_eprice_ema_dist": -0.029837663539680807, - "initial_qty_pct": 0.016205018331572098, - "markup_range": 0.0050088268803352475, - "min_markup": 0.006501012109988465, - "n_close_orders": 14, - "rentry_pprice_dist": 0.0352435378376806, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6952592621756111, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 885.4559495711408, - "auto_unstuck_ema_dist": -0.004223949743684749, - "auto_unstuck_qty_pct": 0.01160484815304665, - "auto_unstuck_wallet_exposure_threshold": 0.3531511209528394, - "backwards_tp": true, - "ddown_factor": 2.6713587561871646, - "ema_span_0": 616.2886189112709, - "ema_span_1": 1111.895448213266, - "enabled": true, - "initial_eprice_ema_dist": 0.0025151563317642647, - "initial_qty_pct": 0.02787248224085459, - "markup_range": 0.004603816551260978, - "min_markup": 0.004841763690358786, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04840308469312945, - "rentry_pprice_dist_wallet_exposure_weighting": 0.761278168452739, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LITUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LITUSDT.json deleted file mode 100644 index 5e27bbfcd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1130.4258390416232, - "auto_unstuck_ema_dist": -0.001177420451322489, - "auto_unstuck_qty_pct": 0.014538264740531534, - "auto_unstuck_wallet_exposure_threshold": 0.540542775511676, - "backwards_tp": true, - "ddown_factor": 2.3129147398488588, - "ema_span_0": 838.1891618239406, - "ema_span_1": 1287.2881988165607, - "enabled": true, - "initial_eprice_ema_dist": -0.005210595108129266, - "initial_qty_pct": 0.011315474958555283, - "markup_range": 0.004742886981873786, - "min_markup": 0.004835825498409354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049909561111052006, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6289051346089495, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1140.7178138382837, - "auto_unstuck_ema_dist": -0.004313477734068047, - "auto_unstuck_qty_pct": 0.023493147109279553, - "auto_unstuck_wallet_exposure_threshold": 0.38478177228541294, - "backwards_tp": true, - "ddown_factor": 1.2260503270832424, - "ema_span_0": 1022.7268820494864, - "ema_span_1": 1088.7578647923306, - "enabled": true, - "initial_eprice_ema_dist": 0.0020073970473526697, - "initial_qty_pct": 0.014452469118134345, - "markup_range": 0.020963471968745505, - "min_markup": 0.008778071464205135, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029416276174644547, - "rentry_pprice_dist_wallet_exposure_weighting": 8.191356033780574, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LPTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LPTUSDT.json deleted file mode 100644 index d16a2ae65..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1384.3603393337523, - "auto_unstuck_ema_dist": 0.0024853636647473713, - "auto_unstuck_qty_pct": 0.06558568990335342, - "auto_unstuck_wallet_exposure_threshold": 0.5760045344127737, - "backwards_tp": true, - "ddown_factor": 2.027712494059968, - "ema_span_0": 1148.9580006997223, - "ema_span_1": 804.2632673694641, - "enabled": true, - "initial_eprice_ema_dist": 0.001997853862534355, - "initial_qty_pct": 0.010884095096774585, - "markup_range": 0.001760745822400736, - "min_markup": 0.002887650471616504, - "n_close_orders": 11, - "rentry_pprice_dist": 0.032530208495394716, - "rentry_pprice_dist_wallet_exposure_weighting": 18.518026084279576, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LQTYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LQTYUSDT.json deleted file mode 100644 index 9725c075f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.2651804644984, - "auto_unstuck_ema_dist": -0.04857494207191806, - "auto_unstuck_qty_pct": 0.010000458168777652, - "auto_unstuck_wallet_exposure_threshold": 0.22855161900314716, - "backwards_tp": true, - "ddown_factor": 2.101393365183695, - "ema_span_0": 5.006646368285773, - "ema_span_1": 69.59304573133588, - "enabled": true, - "initial_eprice_ema_dist": -0.01818259738182865, - "initial_qty_pct": 0.011816031438280599, - "markup_range": 0.007033476230570391, - "min_markup": 0.009469531852431406, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04344431664863304, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9763652353005972, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1129.2955171542465, - "auto_unstuck_ema_dist": -0.03950898578871404, - "auto_unstuck_qty_pct": 0.03795250552410517, - "auto_unstuck_wallet_exposure_threshold": 0.2155401719670245, - "backwards_tp": true, - "ddown_factor": 1.920706088711893, - "ema_span_0": 1092.4619906796183, - "ema_span_1": 1082.2896383241623, - "enabled": true, - "initial_eprice_ema_dist": -0.0014985872139409622, - "initial_qty_pct": 0.02663730578095126, - "markup_range": 0.002293685021679321, - "min_markup": 0.006738443883950546, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02781227627598016, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9826124066213908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LRCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LRCUSDT.json deleted file mode 100644 index 0042bc359..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1175.7488875333333, - "auto_unstuck_ema_dist": -0.06773019924460438, - "auto_unstuck_qty_pct": 0.01781714116311864, - "auto_unstuck_wallet_exposure_threshold": 0.6493195428077282, - "backwards_tp": true, - "ddown_factor": 0.33573022137094516, - "ema_span_0": 287.3861125957884, - "ema_span_1": 928.775575738627, - "enabled": true, - "initial_eprice_ema_dist": -0.029576057113978576, - "initial_qty_pct": 0.01149130596549378, - "markup_range": 0.0037557470639028013, - "min_markup": 0.00883496068712517, - "n_close_orders": 13, - "rentry_pprice_dist": 0.027523509427529368, - "rentry_pprice_dist_wallet_exposure_weighting": 0.996650969727125, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1180.3881605932238, - "auto_unstuck_ema_dist": -0.05635130174367721, - "auto_unstuck_qty_pct": 0.021814151968489133, - "auto_unstuck_wallet_exposure_threshold": 0.7450467829837649, - "backwards_tp": true, - "ddown_factor": 2.9999331767418767, - "ema_span_0": 1429.247594999151, - "ema_span_1": 313.16130808005107, - "enabled": true, - "initial_eprice_ema_dist": -0.005351543422637129, - "initial_qty_pct": 0.017801682449479713, - "markup_range": 0.0009844278885171134, - "min_markup": 0.0072840403369102726, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04650424172713007, - "rentry_pprice_dist_wallet_exposure_weighting": 18.897483876824825, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LTCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LTCUSDT.json deleted file mode 100644 index 0539c11e2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1192.8255569142352, - "auto_unstuck_ema_dist": -0.06762488053177027, - "auto_unstuck_qty_pct": 0.01268864664301521, - "auto_unstuck_wallet_exposure_threshold": 0.46988826748629037, - "backwards_tp": true, - "ddown_factor": 2.04556832482214, - "ema_span_0": 764.9807862497414, - "ema_span_1": 1328.4471945329149, - "enabled": true, - "initial_eprice_ema_dist": 0.0011422095624032097, - "initial_qty_pct": 0.013499963203512752, - "markup_range": 0.004500651552707535, - "min_markup": 0.003955414200391104, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03170502875996665, - "rentry_pprice_dist_wallet_exposure_weighting": 2.620772523318416e-05, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1113.811098815208, - "auto_unstuck_ema_dist": -0.09724721214450179, - "auto_unstuck_qty_pct": 0.01155632430882212, - "auto_unstuck_wallet_exposure_threshold": 0.22086512687468596, - "backwards_tp": true, - "ddown_factor": 2.93468658399188, - "ema_span_0": 1432.6190303949681, - "ema_span_1": 1148.559675041859, - "enabled": true, - "initial_eprice_ema_dist": 0.002999829096116756, - "initial_qty_pct": 0.018150888349426634, - "markup_range": 0.005751866650489925, - "min_markup": 0.0034262816735101567, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03326672022274697, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43576075800800357, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LUNA2USDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LUNA2USDT.json deleted file mode 100644 index 3a38a893d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1228.3719134542807, - "auto_unstuck_ema_dist": -0.05528699136081331, - "auto_unstuck_qty_pct": 0.023501348015464482, - "auto_unstuck_wallet_exposure_threshold": 0.7699563914647427, - "backwards_tp": true, - "ddown_factor": 1.576199096270606, - "ema_span_0": 837.2087540805963, - "ema_span_1": 548.8301243306219, - "enabled": true, - "initial_eprice_ema_dist": 0.0011939016528522358, - "initial_qty_pct": 0.011124872325085397, - "markup_range": 0.0012088856504370979, - "min_markup": 0.009459458171171147, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03276514075103134, - "rentry_pprice_dist_wallet_exposure_weighting": 9.43428446060838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 992.7804413763521, - "auto_unstuck_ema_dist": -0.013748004524581156, - "auto_unstuck_qty_pct": 0.01095100858221805, - "auto_unstuck_wallet_exposure_threshold": 0.7867900567112988, - "backwards_tp": true, - "ddown_factor": 1.3442013518494849, - "ema_span_0": 161.5844003759451, - "ema_span_1": 221.81363323658383, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011250750158823998, - "markup_range": 0.0015823139269439315, - "min_markup": 0.006267457745345578, - "n_close_orders": 16, - "rentry_pprice_dist": 0.014637417341373039, - "rentry_pprice_dist_wallet_exposure_weighting": 3.008102361560021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MAGICUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MAGICUSDT.json deleted file mode 100644 index ccdf2293c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1221.3975272270118, - "auto_unstuck_ema_dist": -0.02252243199499573, - "auto_unstuck_qty_pct": 0.015439176563821008, - "auto_unstuck_wallet_exposure_threshold": 0.3132570100257259, - "backwards_tp": true, - "ddown_factor": 0.11877278352292303, - "ema_span_0": 1029.992790387766, - "ema_span_1": 683.5079032839815, - "enabled": true, - "initial_eprice_ema_dist": -0.00574234043906684, - "initial_qty_pct": 0.01335345164390577, - "markup_range": 0.010731543339000263, - "min_markup": 0.009496234856972863, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03243630699321057, - "rentry_pprice_dist_wallet_exposure_weighting": 8.8899456670894, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MANAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MANAUSDT.json deleted file mode 100644 index 7f43a922c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1076.5472894144002, - "auto_unstuck_ema_dist": -0.0006678838759678103, - "auto_unstuck_qty_pct": 0.012127291231317136, - "auto_unstuck_wallet_exposure_threshold": 0.44837983481107613, - "backwards_tp": true, - "ddown_factor": 1.8207967119274409, - "ema_span_0": 982.9817299975784, - "ema_span_1": 831.399231901919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029794089167961986, - "initial_qty_pct": 0.011318584637925436, - "markup_range": 0.0021015647629782867, - "min_markup": 0.009125915497118641, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02481885895616629, - "rentry_pprice_dist_wallet_exposure_weighting": 3.841221884380405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1383.5460213320812, - "auto_unstuck_ema_dist": -0.01530300035975927, - "auto_unstuck_qty_pct": 0.011121360242413204, - "auto_unstuck_wallet_exposure_threshold": 0.5101214298612292, - "backwards_tp": true, - "ddown_factor": 2.6267885091021514, - "ema_span_0": 376.2450293728551, - "ema_span_1": 648.2386688571398, - "enabled": true, - "initial_eprice_ema_dist": -0.002572647151640155, - "initial_qty_pct": 0.022649883740129016, - "markup_range": 0.0014629773606196423, - "min_markup": 0.0043239815749193545, - "n_close_orders": 4, - "rentry_pprice_dist": 0.037140118967160074, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4833542849061831, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MASKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MASKUSDT.json deleted file mode 100644 index febb7b654..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 412.52984172503324, - "auto_unstuck_ema_dist": -0.023934531345005675, - "auto_unstuck_qty_pct": 0.035769166001733674, - "auto_unstuck_wallet_exposure_threshold": 0.42887256488752173, - "backwards_tp": true, - "ddown_factor": 2.5533437036715987, - "ema_span_0": 1002.3802338936906, - "ema_span_1": 1378.5896143468967, - "enabled": true, - "initial_eprice_ema_dist": -0.0007090604073529968, - "initial_qty_pct": 0.04379136301057834, - "markup_range": 9.47153264298968e-08, - "min_markup": 0.0013203614122733944, - "n_close_orders": 7, - "rentry_pprice_dist": 0.017105688909238487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MATICUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MATICUSDT.json deleted file mode 100644 index 361a20747..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1398.1181079437133, - "auto_unstuck_ema_dist": -0.013115087818873395, - "auto_unstuck_qty_pct": 0.010000667748955186, - "auto_unstuck_wallet_exposure_threshold": 0.8032577491740576, - "backwards_tp": true, - "ddown_factor": 2.1744675323183857, - "ema_span_0": 809.5619076211942, - "ema_span_1": 737.4926518587565, - "enabled": true, - "initial_eprice_ema_dist": 0.001149486425892842, - "initial_qty_pct": 0.012084488052874341, - "markup_range": 0.0042637052765998025, - "min_markup": 0.004751676442621341, - "n_close_orders": 15, - "rentry_pprice_dist": 0.025684955830758825, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16531887293418637, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.011615973905896452, - "auto_unstuck_qty_pct": 0.02039382067182543, - "auto_unstuck_wallet_exposure_threshold": 0.20491821483672984, - "backwards_tp": true, - "ddown_factor": 0.9897776029281264, - "ema_span_0": 683.0419299338574, - "ema_span_1": 338.63601775786185, - "enabled": true, - "initial_eprice_ema_dist": -0.009990769587706316, - "initial_qty_pct": 0.01611898044191092, - "markup_range": 0.004301852689653033, - "min_markup": 0.004279484178107451, - "n_close_orders": 7, - "rentry_pprice_dist": 0.038751422975829154, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1282379249831684, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MINAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MINAUSDT.json deleted file mode 100644 index fc840c726..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1091.9249122302017, - "auto_unstuck_ema_dist": -0.08514350453347158, - "auto_unstuck_qty_pct": 0.010358255142866238, - "auto_unstuck_wallet_exposure_threshold": 0.5807792212712123, - "backwards_tp": true, - "ddown_factor": 2.208932570232063, - "ema_span_0": 775.5641240096238, - "ema_span_1": 588.0992743341152, - "enabled": true, - "initial_eprice_ema_dist": 0.0011088603456135102, - "initial_qty_pct": 0.010855596003675212, - "markup_range": 0.004565117890083648, - "min_markup": 0.0070493794542243375, - "n_close_orders": 11, - "rentry_pprice_dist": 0.0246999068091038, - "rentry_pprice_dist_wallet_exposure_weighting": 4.048541794732258, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1129.2955171542465, - "auto_unstuck_ema_dist": -0.03950898578871404, - "auto_unstuck_qty_pct": 0.03795250552410517, - "auto_unstuck_wallet_exposure_threshold": 0.2155401719670245, - "backwards_tp": true, - "ddown_factor": 1.920706088711893, - "ema_span_0": 1092.4619906796183, - "ema_span_1": 1082.2896383241623, - "enabled": true, - "initial_eprice_ema_dist": -0.0014985872139409622, - "initial_qty_pct": 0.02663730578095126, - "markup_range": 0.002293685021679321, - "min_markup": 0.006738443883950546, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02781227627598016, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9826124066213908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MKRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MKRUSDT.json deleted file mode 100644 index fa2b37529..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 857.8358156689582, - "auto_unstuck_ema_dist": -0.02833905417361909, - "auto_unstuck_qty_pct": 0.03919761625782286, - "auto_unstuck_wallet_exposure_threshold": 0.2748885151160188, - "backwards_tp": true, - "ddown_factor": 0.40674383781724993, - "ema_span_0": 891.488531341741, - "ema_span_1": 995.3234447214816, - "enabled": true, - "initial_eprice_ema_dist": -0.08841119070255744, - "initial_qty_pct": 0.013175195676453089, - "markup_range": 0.006795708202300384, - "min_markup": 0.0030231794368025438, - "n_close_orders": 10, - "rentry_pprice_dist": 0.021885830680328518, - "rentry_pprice_dist_wallet_exposure_weighting": 2.411557668847137, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 987.7883613823617, - "auto_unstuck_ema_dist": -0.009472339756062868, - "auto_unstuck_qty_pct": 0.034817746925184224, - "auto_unstuck_wallet_exposure_threshold": 0.49316912310812155, - "backwards_tp": true, - "ddown_factor": 1.2456905627076964, - "ema_span_0": 15.297329132909539, - "ema_span_1": 1181.8530517849615, - "enabled": true, - "initial_eprice_ema_dist": 0.00011205444845055594, - "initial_qty_pct": 0.01063705984579044, - "markup_range": 0.004370765419137955, - "min_markup": 0.004214352180486906, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027867890840128737, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MTLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MTLUSDT.json deleted file mode 100644 index 33d6a9294..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 755.330530562327, - "auto_unstuck_ema_dist": -0.0561265621598862, - "auto_unstuck_qty_pct": 0.03175866223135546, - "auto_unstuck_wallet_exposure_threshold": 0.3567488580126656, - "backwards_tp": true, - "ddown_factor": 2.832627822612122, - "ema_span_0": 1214.3235903868142, - "ema_span_1": 989.9185151901853, - "enabled": true, - "initial_eprice_ema_dist": 0.0029995106311747465, - "initial_qty_pct": 0.018084791276372983, - "markup_range": 0.003753700561421403, - "min_markup": 0.01, - "n_close_orders": 11, - "rentry_pprice_dist": 0.043816964917970325, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9017318634796494, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2741091340665, - "auto_unstuck_ema_dist": -0.025948589408398143, - "auto_unstuck_qty_pct": 0.010586053423421742, - "auto_unstuck_wallet_exposure_threshold": 0.4056426548402889, - "backwards_tp": true, - "ddown_factor": 0.5837121516550282, - "ema_span_0": 1340.961488384919, - "ema_span_1": 1418.3991278121314, - "enabled": true, - "initial_eprice_ema_dist": 0.002957865772159454, - "initial_qty_pct": 0.01805391585786448, - "markup_range": 0.0044127231061115045, - "min_markup": 0.005853032025017245, - "n_close_orders": 3, - "rentry_pprice_dist": 0.028913142818702525, - "rentry_pprice_dist_wallet_exposure_weighting": 12.602999114607288, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NEARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NEARUSDT.json deleted file mode 100644 index 24610e579..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1130.4258390416232, - "auto_unstuck_ema_dist": -0.001177420451322489, - "auto_unstuck_qty_pct": 0.014538264740531534, - "auto_unstuck_wallet_exposure_threshold": 0.540542775511676, - "backwards_tp": true, - "ddown_factor": 2.3129147398488588, - "ema_span_0": 838.1891618239406, - "ema_span_1": 1287.2881988165607, - "enabled": true, - "initial_eprice_ema_dist": -0.005210595108129266, - "initial_qty_pct": 0.011315474958555283, - "markup_range": 0.004742886981873786, - "min_markup": 0.004835825498409354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049909561111052006, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6289051346089495, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1021.7978585972808, - "auto_unstuck_ema_dist": -0.02413033603378886, - "auto_unstuck_qty_pct": 0.024788475807819565, - "auto_unstuck_wallet_exposure_threshold": 0.6780024661090599, - "backwards_tp": true, - "ddown_factor": 1.6858095396861303, - "ema_span_0": 1312.6448033459908, - "ema_span_1": 724.0806503527501, - "enabled": true, - "initial_eprice_ema_dist": -9.831951444451197e-05, - "initial_qty_pct": 0.01133517532794374, - "markup_range": 0.003346034873627468, - "min_markup": 0.0056033145876626025, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03221978157924821, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16612046311506867, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NEOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NEOUSDT.json deleted file mode 100644 index a2d27d793..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1100.0766974686742, - "auto_unstuck_ema_dist": -0.08514628223981162, - "auto_unstuck_qty_pct": 0.014754655707221693, - "auto_unstuck_wallet_exposure_threshold": 0.5590674894077008, - "backwards_tp": true, - "ddown_factor": 2.384812053735167, - "ema_span_0": 1098.6132497794993, - "ema_span_1": 5, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011799827841045437, - "markup_range": 0.004116742277219143, - "min_markup": 0.007502084320029683, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047706307783281277, - "rentry_pprice_dist_wallet_exposure_weighting": 4.36567006885887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1258.533836286675, - "auto_unstuck_ema_dist": -0.050420754055908956, - "auto_unstuck_qty_pct": 0.010367956295016667, - "auto_unstuck_wallet_exposure_threshold": 0.3825483432482047, - "backwards_tp": true, - "ddown_factor": 0.7826514669796336, - "ema_span_0": 873.4999919550202, - "ema_span_1": 895.3805464298258, - "enabled": true, - "initial_eprice_ema_dist": -0.005344396137593555, - "initial_qty_pct": 0.01704379426180813, - "markup_range": 0.002486910202571434, - "min_markup": 0.006991449653507262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.020094491749181168, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1561814982508762, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NKNUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NKNUSDT.json deleted file mode 100644 index 7e2b2698a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1097.1942814234271, - "auto_unstuck_ema_dist": -0.05946211172777736, - "auto_unstuck_qty_pct": 0.040927910615587836, - "auto_unstuck_wallet_exposure_threshold": 0.13848921369694134, - "backwards_tp": true, - "ddown_factor": 0.4895461003465067, - "ema_span_0": 995.1592222792989, - "ema_span_1": 148.67796657676706, - "enabled": true, - "initial_eprice_ema_dist": 0.0025907430812148837, - "initial_qty_pct": 0.027555693768254935, - "markup_range": 0.013771043478286404, - "min_markup": 0.009959700624035533, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030863489767254032, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5420054288696603, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1228.3218645772902, - "auto_unstuck_ema_dist": -0.003532934466774453, - "auto_unstuck_qty_pct": 0.07634526599915069, - "auto_unstuck_wallet_exposure_threshold": 0.11963582864462291, - "backwards_tp": true, - "ddown_factor": 0.1000007666425598, - "ema_span_0": 1417.5421873229893, - "ema_span_1": 1152.7126636319847, - "enabled": true, - "initial_eprice_ema_dist": -0.002205058274678462, - "initial_qty_pct": 0.01000058040598402, - "markup_range": 0.026932816586900898, - "min_markup": 0.009751880481568649, - "n_close_orders": 3, - "rentry_pprice_dist": 0.015564915596347257, - "rentry_pprice_dist_wallet_exposure_weighting": 11.565359590636366, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OCEANUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OCEANUSDT.json deleted file mode 100644 index 279463bc2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 714.4533936392255, - "auto_unstuck_ema_dist": -0.011828257417670011, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8396197697638468, - "backwards_tp": true, - "ddown_factor": 1.669113705169779, - "ema_span_0": 1057.954314167383, - "ema_span_1": 521.1756642172619, - "enabled": true, - "initial_eprice_ema_dist": -0.03516260505330338, - "initial_qty_pct": 0.018534706297965095, - "markup_range": 0.0065323557515550405, - "min_markup": 0.0043065555176057, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03306641642178427, - "rentry_pprice_dist_wallet_exposure_weighting": 9.270838197362451, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 673.2056201442259, - "auto_unstuck_ema_dist": -0.015860179710599342, - "auto_unstuck_qty_pct": 0.02370876211617969, - "auto_unstuck_wallet_exposure_threshold": 0.16032200172316444, - "backwards_tp": true, - "ddown_factor": 1.081078245696719, - "ema_span_0": 939.7553565427698, - "ema_span_1": 823.1073060541904, - "enabled": true, - "initial_eprice_ema_dist": 0.001496342571662609, - "initial_qty_pct": 0.020737636314270485, - "markup_range": 0.014137457564894904, - "min_markup": 0.009425699791415916, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02906193753753694, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9743248333808356, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OGNUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OGNUSDT.json deleted file mode 100644 index cd8d624d6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 607.6488855824183, - "auto_unstuck_ema_dist": -0.05793607509658503, - "auto_unstuck_qty_pct": 0.03667562004165626, - "auto_unstuck_wallet_exposure_threshold": 0.3406070569793193, - "backwards_tp": true, - "ddown_factor": 1.568362473775179, - "ema_span_0": 843.0542872757511, - "ema_span_1": 194.41116555412682, - "enabled": true, - "initial_eprice_ema_dist": -3.372906168526384e-05, - "initial_qty_pct": 0.01097431142216795, - "markup_range": 0.003558867197325538, - "min_markup": 0.0038544489260008115, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02568287482074966, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0642944106289665, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.2430534207629, - "auto_unstuck_ema_dist": 0.00226259105386, - "auto_unstuck_qty_pct": 0.0808186044883725, - "auto_unstuck_wallet_exposure_threshold": 0.5392899700728492, - "backwards_tp": true, - "ddown_factor": 2.051348839315548, - "ema_span_0": 1147.602926862563, - "ema_span_1": 650.3606833385481, - "enabled": true, - "initial_eprice_ema_dist": -0.0006452161446937385, - "initial_qty_pct": 0.012303788577717708, - "markup_range": 0.0003106966757488745, - "min_markup": 0.003150918246592498, - "n_close_orders": 13, - "rentry_pprice_dist": 0.026268299967256773, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OMGUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OMGUSDT.json deleted file mode 100644 index 63b279695..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1364.832385970726, - "auto_unstuck_ema_dist": -0.07090594186584338, - "auto_unstuck_qty_pct": 0.013865143626541796, - "auto_unstuck_wallet_exposure_threshold": 0.48832153862635935, - "backwards_tp": true, - "ddown_factor": 1.1458379745667282, - "ema_span_0": 476.08537305967684, - "ema_span_1": 1248.0581353579219, - "enabled": true, - "initial_eprice_ema_dist": -0.0003131329820948757, - "initial_qty_pct": 0.01374872772365408, - "markup_range": 0.007604202618718997, - "min_markup": 0.009633843596778826, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03390165326594296, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7236930651876274, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1132.1096124195237, - "auto_unstuck_ema_dist": -0.008374161359472818, - "auto_unstuck_qty_pct": 0.010742873425228549, - "auto_unstuck_wallet_exposure_threshold": 0.11425233652812053, - "backwards_tp": true, - "ddown_factor": 1.8126257897560152, - "ema_span_0": 54.83925050891028, - "ema_span_1": 73.4409190495824, - "enabled": true, - "initial_eprice_ema_dist": 0.0024439843960384617, - "initial_qty_pct": 0.016462517330693375, - "markup_range": 0.0027529146892932635, - "min_markup": 0.009920486679402622, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049127011282977466, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5925197032446106, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ONEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ONEUSDT.json deleted file mode 100644 index 1a3530335..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 532.635320724578, - "auto_unstuck_ema_dist": -0.011824595384824233, - "auto_unstuck_qty_pct": 0.014613310417130789, - "auto_unstuck_wallet_exposure_threshold": 0.23626315196060912, - "backwards_tp": true, - "ddown_factor": 0.8659676411765178, - "ema_span_0": 1045.8042150726967, - "ema_span_1": 412.8786024920001, - "enabled": true, - "initial_eprice_ema_dist": -0.07206216883151632, - "initial_qty_pct": 0.012918049576375533, - "markup_range": 0.0058104753322523826, - "min_markup": 0.005598085498584485, - "n_close_orders": 10, - "rentry_pprice_dist": 0.040393863329448956, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3537695236092857, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1406.1866428071903, - "auto_unstuck_ema_dist": -0.007002290232263678, - "auto_unstuck_qty_pct": 0.07118637850882599, - "auto_unstuck_wallet_exposure_threshold": 0.6011990845169198, - "backwards_tp": true, - "ddown_factor": 1.6641461702022642, - "ema_span_0": 1430.4097339202815, - "ema_span_1": 1000.6145495364105, - "enabled": true, - "initial_eprice_ema_dist": -0.03770048077985767, - "initial_qty_pct": 0.01483080810669822, - "markup_range": 0.007199586078586498, - "min_markup": 0.007679811661856725, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04779467566880332, - "rentry_pprice_dist_wallet_exposure_weighting": 2.962853566464591, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ONTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ONTUSDT.json deleted file mode 100644 index 9dcfba229..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 992.7804413763521, - "auto_unstuck_ema_dist": -0.013748004524581156, - "auto_unstuck_qty_pct": 0.01095100858221805, - "auto_unstuck_wallet_exposure_threshold": 0.7867900567112988, - "backwards_tp": true, - "ddown_factor": 1.3442013518494849, - "ema_span_0": 161.5844003759451, - "ema_span_1": 221.81363323658383, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011250750158823998, - "markup_range": 0.0015823139269439315, - "min_markup": 0.006267457745345578, - "n_close_orders": 16, - "rentry_pprice_dist": 0.014637417341373039, - "rentry_pprice_dist_wallet_exposure_weighting": 3.008102361560021, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OPUSDT.json deleted file mode 100644 index bc2b643c4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1247.4857003692375, - "auto_unstuck_ema_dist": -0.06568276353142971, - "auto_unstuck_qty_pct": 0.01716277308000626, - "auto_unstuck_wallet_exposure_threshold": 0.1556498253042952, - "backwards_tp": true, - "ddown_factor": 0.49373306781911264, - "ema_span_0": 439.25341874521416, - "ema_span_1": 402.0112434981203, - "enabled": true, - "initial_eprice_ema_dist": -0.0025193405816358954, - "initial_qty_pct": 0.014912708413663291, - "markup_range": 0.005725208957539647, - "min_markup": 0.008883375027758853, - "n_close_orders": 15, - "rentry_pprice_dist": 0.029521983421805145, - "rentry_pprice_dist_wallet_exposure_weighting": 1.5296275592314408, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1112.7252265618881, - "auto_unstuck_ema_dist": -0.018508799050601103, - "auto_unstuck_qty_pct": 0.055969254401320064, - "auto_unstuck_wallet_exposure_threshold": 0.12328883190495712, - "backwards_tp": true, - "ddown_factor": 2.1271045253717453, - "ema_span_0": 420.36285700348526, - "ema_span_1": 134.58976343846453, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0036772219902083954, - "min_markup": 0.004967890146614809, - "n_close_orders": 15, - "rentry_pprice_dist": 0.04758094846252682, - "rentry_pprice_dist_wallet_exposure_weighting": 6.479792532192432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PEOPLEUSDT.json deleted file mode 100644 index baee9c3f3..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1425.0759274643879, - "auto_unstuck_ema_dist": -0.03092668328276308, - "auto_unstuck_qty_pct": 0.012057677251555241, - "auto_unstuck_wallet_exposure_threshold": 0.4691699788964982, - "backwards_tp": true, - "ddown_factor": 1.3664735826044883, - "ema_span_0": 500.4097395114556, - "ema_span_1": 481.2778919040329, - "enabled": true, - "initial_eprice_ema_dist": 0.002950424607624244, - "initial_qty_pct": 0.01281340574111698, - "markup_range": 0.006231870987400575, - "min_markup": 0.004514594069757063, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04900709833647481, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9233148759458772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1439.1103830443853, - "auto_unstuck_ema_dist": -0.012186869449521864, - "auto_unstuck_qty_pct": 0.010263059927198417, - "auto_unstuck_wallet_exposure_threshold": 0.11113162677810223, - "backwards_tp": true, - "ddown_factor": 2.3678294978474606, - "ema_span_0": 175.84637076087722, - "ema_span_1": 1096.1616259206737, - "enabled": true, - "initial_eprice_ema_dist": -0.004579206061317028, - "initial_qty_pct": 0.010743421915198064, - "markup_range": 0.003105217426646186, - "min_markup": 0.0022880067090024787, - "n_close_orders": 10, - "rentry_pprice_dist": 0.046421397531376446, - "rentry_pprice_dist_wallet_exposure_weighting": 10.606085020833945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PERPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PERPUSDT.json deleted file mode 100644 index 9d3b0cee0..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1130.4258390416232, - "auto_unstuck_ema_dist": -0.001177420451322489, - "auto_unstuck_qty_pct": 0.014538264740531534, - "auto_unstuck_wallet_exposure_threshold": 0.540542775511676, - "backwards_tp": true, - "ddown_factor": 2.3129147398488588, - "ema_span_0": 838.1891618239406, - "ema_span_1": 1287.2881988165607, - "enabled": true, - "initial_eprice_ema_dist": -0.005210595108129266, - "initial_qty_pct": 0.011315474958555283, - "markup_range": 0.004742886981873786, - "min_markup": 0.004835825498409354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049909561111052006, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6289051346089495, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 885.4559495711408, - "auto_unstuck_ema_dist": -0.004223949743684749, - "auto_unstuck_qty_pct": 0.01160484815304665, - "auto_unstuck_wallet_exposure_threshold": 0.3531511209528394, - "backwards_tp": true, - "ddown_factor": 2.6713587561871646, - "ema_span_0": 616.2886189112709, - "ema_span_1": 1111.895448213266, - "enabled": true, - "initial_eprice_ema_dist": 0.0025151563317642647, - "initial_qty_pct": 0.02787248224085459, - "markup_range": 0.004603816551260978, - "min_markup": 0.004841763690358786, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04840308469312945, - "rentry_pprice_dist_wallet_exposure_weighting": 0.761278168452739, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PHBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PHBUSDT.json deleted file mode 100644 index 1dd2bf20b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 976.1241959670339, - "auto_unstuck_ema_dist": -0.006520856833877502, - "auto_unstuck_qty_pct": 0.03141852642466559, - "auto_unstuck_wallet_exposure_threshold": 0.18455013218148056, - "backwards_tp": true, - "ddown_factor": 1.9974346865242991, - "ema_span_0": 1296.9662225857348, - "ema_span_1": 357.0107660929787, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.017094006441248796, - "markup_range": 0.006766714139571341, - "min_markup": 0.00924309771757737, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03980847511721127, - "rentry_pprice_dist_wallet_exposure_weighting": 1.85289834095499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1350.2003342142991, - "auto_unstuck_ema_dist": 0.0029992952631757884, - "auto_unstuck_qty_pct": 0.015327058159562848, - "auto_unstuck_wallet_exposure_threshold": 0.659944090351001, - "backwards_tp": true, - "ddown_factor": 2.590130886731121, - "ema_span_0": 1059.7285498987653, - "ema_span_1": 651.1814216088172, - "enabled": true, - "initial_eprice_ema_dist": -0.004458515770233061, - "initial_qty_pct": 0.021663646399503425, - "markup_range": 0.013151187668541078, - "min_markup": 0.005401582924874767, - "n_close_orders": 7, - "rentry_pprice_dist": 0.037256365934699706, - "rentry_pprice_dist_wallet_exposure_weighting": 4.60259667230565, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/QNTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/QNTUSDT.json deleted file mode 100644 index aa4b3facb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1042.9465386695038, - "auto_unstuck_ema_dist": -0.012739535558294653, - "auto_unstuck_qty_pct": 0.01054920619287729, - "auto_unstuck_wallet_exposure_threshold": 0.13763901997540193, - "backwards_tp": true, - "ddown_factor": 2.8982916169424264, - "ema_span_0": 1133.5172283678778, - "ema_span_1": 1181.0020025594736, - "enabled": true, - "initial_eprice_ema_dist": 0.0029985289734769964, - "initial_qty_pct": 0.02212235919306313, - "markup_range": 0.0041215968172634496, - "min_markup": 0.008727150134471149, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03262111826555454, - "rentry_pprice_dist_wallet_exposure_weighting": 1.3566784656800706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1136.941273665956, - "auto_unstuck_ema_dist": 0.002985537055555447, - "auto_unstuck_qty_pct": 0.013158891381998565, - "auto_unstuck_wallet_exposure_threshold": 0.12260022091968173, - "backwards_tp": true, - "ddown_factor": 2.075977614731808, - "ema_span_0": 35.41420558957712, - "ema_span_1": 1084.7573265548303, - "enabled": true, - "initial_eprice_ema_dist": -0.003615214935392173, - "initial_qty_pct": 0.01647389815972939, - "markup_range": 0.0010117545281911077, - "min_markup": 0.004368503803812658, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018739182238275483, - "rentry_pprice_dist_wallet_exposure_weighting": 2.102901620921129, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/QTUMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/QTUMUSDT.json deleted file mode 100644 index deb344309..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.7649115351385, - "auto_unstuck_ema_dist": -0.07562504623737802, - "auto_unstuck_qty_pct": 0.01620444672330262, - "auto_unstuck_wallet_exposure_threshold": 0.5281571650067292, - "backwards_tp": true, - "ddown_factor": 0.11217762714657356, - "ema_span_0": 232.91038520822252, - "ema_span_1": 38.19025987520826, - "enabled": true, - "initial_eprice_ema_dist": 0.0029954395660885557, - "initial_qty_pct": 0.028523996992485014, - "markup_range": 0.0035053291780364993, - "min_markup": 0.008625277438433667, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039439543644986495, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2163625507416973, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1323.6812945915103, - "auto_unstuck_ema_dist": -0.019270512412061343, - "auto_unstuck_qty_pct": 0.019104521793339272, - "auto_unstuck_wallet_exposure_threshold": 0.2924735517753996, - "backwards_tp": true, - "ddown_factor": 2.856015568162063, - "ema_span_0": 560.2037510239018, - "ema_span_1": 103.600172990836, - "enabled": true, - "initial_eprice_ema_dist": -0.004598442608215815, - "initial_qty_pct": 0.010576998336265624, - "markup_range": 0.005153286667827369, - "min_markup": 0.0044147506836681605, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02784082253819061, - "rentry_pprice_dist_wallet_exposure_weighting": 7.405908163547055, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RADUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RADUSDT.json deleted file mode 100644 index 4e174ab47..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 857.8358156689582, - "auto_unstuck_ema_dist": -0.02833905417361909, - "auto_unstuck_qty_pct": 0.03919761625782286, - "auto_unstuck_wallet_exposure_threshold": 0.2748885151160188, - "backwards_tp": true, - "ddown_factor": 0.40674383781724993, - "ema_span_0": 891.488531341741, - "ema_span_1": 995.3234447214816, - "enabled": true, - "initial_eprice_ema_dist": -0.08841119070255744, - "initial_qty_pct": 0.013175195676453089, - "markup_range": 0.006795708202300384, - "min_markup": 0.0030231794368025438, - "n_close_orders": 10, - "rentry_pprice_dist": 0.021885830680328518, - "rentry_pprice_dist_wallet_exposure_weighting": 2.411557668847137, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 412.52984172503324, - "auto_unstuck_ema_dist": -0.023934531345005675, - "auto_unstuck_qty_pct": 0.035769166001733674, - "auto_unstuck_wallet_exposure_threshold": 0.42887256488752173, - "backwards_tp": true, - "ddown_factor": 2.5533437036715987, - "ema_span_0": 1002.3802338936906, - "ema_span_1": 1378.5896143468967, - "enabled": true, - "initial_eprice_ema_dist": -0.0007090604073529968, - "initial_qty_pct": 0.04379136301057834, - "markup_range": 9.47153264298968e-08, - "min_markup": 0.0013203614122733944, - "n_close_orders": 7, - "rentry_pprice_dist": 0.017105688909238487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RAYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RAYUSDT.json deleted file mode 100644 index 306878175..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1248.0863803645975, - "auto_unstuck_ema_dist": -0.012557415351156991, - "auto_unstuck_qty_pct": 0.015320605190041137, - "auto_unstuck_wallet_exposure_threshold": 0.7673618971503481, - "backwards_tp": true, - "ddown_factor": 2.4102798302990585, - "ema_span_0": 539.5222040777102, - "ema_span_1": 181.5993235880529, - "enabled": true, - "initial_eprice_ema_dist": -0.0022746898459031586, - "initial_qty_pct": 0.011971200021888832, - "markup_range": 0.004099720290731829, - "min_markup": 0.0032378021374773374, - "n_close_orders": 5, - "rentry_pprice_dist": 0.037890630322675686, - "rentry_pprice_dist_wallet_exposure_weighting": 1.515625145583001, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1113.811098815208, - "auto_unstuck_ema_dist": -0.09724721214450179, - "auto_unstuck_qty_pct": 0.01155632430882212, - "auto_unstuck_wallet_exposure_threshold": 0.22086512687468596, - "backwards_tp": true, - "ddown_factor": 2.93468658399188, - "ema_span_0": 1432.6190303949681, - "ema_span_1": 1148.559675041859, - "enabled": true, - "initial_eprice_ema_dist": 0.002999829096116756, - "initial_qty_pct": 0.018150888349426634, - "markup_range": 0.005751866650489925, - "min_markup": 0.0034262816735101567, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03326672022274697, - "rentry_pprice_dist_wallet_exposure_weighting": 0.43576075800800357, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RDNTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RDNTUSDT.json deleted file mode 100644 index 9f370f3b8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.093969550663, - "auto_unstuck_ema_dist": -0.0025428899313089215, - "auto_unstuck_qty_pct": 0.010104487892205685, - "auto_unstuck_wallet_exposure_threshold": 0.1945709997641796, - "backwards_tp": true, - "ddown_factor": 2.494574436848078, - "ema_span_0": 200.0448942819352, - "ema_span_1": 1399.916929545641, - "enabled": true, - "initial_eprice_ema_dist": 0.0007717882959243405, - "initial_qty_pct": 0.021932908268113595, - "markup_range": 0.003106333131450836, - "min_markup": 0.006462948657990403, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04658718932303478, - "rentry_pprice_dist_wallet_exposure_weighting": 0.11164577870792912, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 673.2056201442259, - "auto_unstuck_ema_dist": -0.015860179710599342, - "auto_unstuck_qty_pct": 0.02370876211617969, - "auto_unstuck_wallet_exposure_threshold": 0.16032200172316444, - "backwards_tp": true, - "ddown_factor": 1.081078245696719, - "ema_span_0": 939.7553565427698, - "ema_span_1": 823.1073060541904, - "enabled": true, - "initial_eprice_ema_dist": 0.001496342571662609, - "initial_qty_pct": 0.020737636314270485, - "markup_range": 0.014137457564894904, - "min_markup": 0.009425699791415916, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02906193753753694, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9743248333808356, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/REEFUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/REEFUSDT.json deleted file mode 100644 index d69dc09a4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1136.9300686322479, - "auto_unstuck_ema_dist": -0.0008040299529814578, - "auto_unstuck_qty_pct": 0.010000699359493282, - "auto_unstuck_wallet_exposure_threshold": 0.689625745455322, - "backwards_tp": true, - "ddown_factor": 0.76692488899037, - "ema_span_0": 1439.9233777818256, - "ema_span_1": 1287.9241250145592, - "enabled": true, - "initial_eprice_ema_dist": 0.002881001973696066, - "initial_qty_pct": 0.013883369679869239, - "markup_range": 0.019192010765014565, - "min_markup": 0.009905748541100441, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04011483518266019, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9663509613730503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 754.205632034632, - "auto_unstuck_ema_dist": -0.003526950303230414, - "auto_unstuck_qty_pct": 0.010026297043304766, - "auto_unstuck_wallet_exposure_threshold": 0.5499048313948989, - "backwards_tp": true, - "ddown_factor": 1.3146649036481972, - "ema_span_0": 643.8976532235419, - "ema_span_1": 681.5373896361046, - "enabled": true, - "initial_eprice_ema_dist": -0.0016257760804812232, - "initial_qty_pct": 0.013814663871023833, - "markup_range": 0.013331732415678414, - "min_markup": 0.009992373907778547, - "n_close_orders": 7, - "rentry_pprice_dist": 0.025953758568424915, - "rentry_pprice_dist_wallet_exposure_weighting": 4.780456169823601, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RENUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RENUSDT.json deleted file mode 100644 index 7f6437f95..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 452.8383148519595, - "auto_unstuck_ema_dist": -0.015369003312624195, - "auto_unstuck_qty_pct": 0.010171141837166399, - "auto_unstuck_wallet_exposure_threshold": 0.1091678525927996, - "backwards_tp": true, - "ddown_factor": 0.8316033738578285, - "ema_span_0": 1275.723153859215, - "ema_span_1": 351.35466806696525, - "enabled": true, - "initial_eprice_ema_dist": -0.003160931566549799, - "initial_qty_pct": 0.01166280881433603, - "markup_range": 0.004432830216164361, - "min_markup": 0.006847493753716176, - "n_close_orders": 16, - "rentry_pprice_dist": 0.02508725057478151, - "rentry_pprice_dist_wallet_exposure_weighting": 10.867689432141612, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 856.5481953024466, - "auto_unstuck_ema_dist": -0.09518733942156989, - "auto_unstuck_qty_pct": 0.021750774966528295, - "auto_unstuck_wallet_exposure_threshold": 0.39356103925995656, - "backwards_tp": true, - "ddown_factor": 1.119929568875716, - "ema_span_0": 1221.3141882462473, - "ema_span_1": 1024.1403015076385, - "enabled": true, - "initial_eprice_ema_dist": -0.0028156138821526537, - "initial_qty_pct": 0.0104252248108135, - "markup_range": 0.024563901654361717, - "min_markup": 0.0084473770766781, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03664996661242492, - "rentry_pprice_dist_wallet_exposure_weighting": 7.0066737115797615, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RLCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RLCUSDT.json deleted file mode 100644 index b00f70936..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1433.7697471320566, - "auto_unstuck_ema_dist": -0.01827822594562229, - "auto_unstuck_qty_pct": 0.01449476853039029, - "auto_unstuck_wallet_exposure_threshold": 0.12380184410065403, - "backwards_tp": true, - "ddown_factor": 1.647174238927783, - "ema_span_0": 393.71735239717617, - "ema_span_1": 90.30319448544071, - "enabled": true, - "initial_eprice_ema_dist": 0.0018176867817512822, - "initial_qty_pct": 0.015651960309827823, - "markup_range": 0.00740385446952138, - "min_markup": 0.0055677153471033235, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04223755005790013, - "rentry_pprice_dist_wallet_exposure_weighting": 0.007262432438397744, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1172.1446653305688, - "auto_unstuck_ema_dist": -0.04152491765429062, - "auto_unstuck_qty_pct": 0.013739424516083168, - "auto_unstuck_wallet_exposure_threshold": 0.17035071996250412, - "backwards_tp": true, - "ddown_factor": 1.028681500698495, - "ema_span_0": 646.0047455795236, - "ema_span_1": 894.9772318324017, - "enabled": true, - "initial_eprice_ema_dist": -0.022815792042906746, - "initial_qty_pct": 0.014096466087233915, - "markup_range": 0.008514841737862803, - "min_markup": 0.007894643223954218, - "n_close_orders": 12, - "rentry_pprice_dist": 0.035780586199451715, - "rentry_pprice_dist_wallet_exposure_weighting": 5.0001739769666385, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RNDRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RNDRUSDT.json deleted file mode 100644 index de928616e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.5780116781566, - "auto_unstuck_ema_dist": -0.010533630915170723, - "auto_unstuck_qty_pct": 0.02501217133656904, - "auto_unstuck_wallet_exposure_threshold": 0.7487289036179982, - "backwards_tp": true, - "ddown_factor": 1.605453390144733, - "ema_span_0": 595.5254272296077, - "ema_span_1": 22.15894968181761, - "enabled": true, - "initial_eprice_ema_dist": -0.07656154588902128, - "initial_qty_pct": 0.010049153736021913, - "markup_range": 0.0011940584557397973, - "min_markup": 0.00416616360591481, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02212516964130459, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2324477374846932, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 629.18972466239, - "auto_unstuck_ema_dist": -0.004124638942622285, - "auto_unstuck_qty_pct": 0.01202023754606886, - "auto_unstuck_wallet_exposure_threshold": 0.7359180690864491, - "backwards_tp": true, - "ddown_factor": 2.7127091021037217, - "ema_span_0": 1075.8723377450815, - "ema_span_1": 320.5935500374523, - "enabled": true, - "initial_eprice_ema_dist": -0.009925492262627705, - "initial_qty_pct": 0.010480612452755677, - "markup_range": 0.007015633971665356, - "min_markup": 0.0057252660995080785, - "n_close_orders": 7, - "rentry_pprice_dist": 0.044927734207310256, - "rentry_pprice_dist_wallet_exposure_weighting": 9.83899552175169, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ROSEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ROSEUSDT.json deleted file mode 100644 index d58e3fe5a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1130.4258390416232, - "auto_unstuck_ema_dist": -0.001177420451322489, - "auto_unstuck_qty_pct": 0.014538264740531534, - "auto_unstuck_wallet_exposure_threshold": 0.540542775511676, - "backwards_tp": true, - "ddown_factor": 2.3129147398488588, - "ema_span_0": 838.1891618239406, - "ema_span_1": 1287.2881988165607, - "enabled": true, - "initial_eprice_ema_dist": -0.005210595108129266, - "initial_qty_pct": 0.011315474958555283, - "markup_range": 0.004742886981873786, - "min_markup": 0.004835825498409354, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049909561111052006, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6289051346089495, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1087.0922437352226, - "auto_unstuck_ema_dist": -0.07466373815119792, - "auto_unstuck_qty_pct": 0.017142351796970053, - "auto_unstuck_wallet_exposure_threshold": 0.40499526116159673, - "backwards_tp": true, - "ddown_factor": 0.9995052573060559, - "ema_span_0": 1284.3243314498504, - "ema_span_1": 1017.2434952248901, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014681912052365726, - "markup_range": 0.007566918502711494, - "min_markup": 0.003842592955207204, - "n_close_orders": 13, - "rentry_pprice_dist": 0.028867874998042962, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7659319536690007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RSRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RSRUSDT.json deleted file mode 100644 index 9cd48ecdd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1236.1550272449676, - "auto_unstuck_ema_dist": -0.06531156476646174, - "auto_unstuck_qty_pct": 0.08948567964218761, - "auto_unstuck_wallet_exposure_threshold": 0.1294421806614859, - "backwards_tp": true, - "ddown_factor": 0.8808796201926017, - "ema_span_0": 1120.3512963004785, - "ema_span_1": 641.2274159627718, - "enabled": true, - "initial_eprice_ema_dist": -0.010729299903773594, - "initial_qty_pct": 0.011437256392779585, - "markup_range": 0.012198706859305214, - "min_markup": 0.009536292234855779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04966919787749375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2385183156100577, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1234.5598355756533, - "auto_unstuck_ema_dist": -0.005104415026991159, - "auto_unstuck_qty_pct": 0.06014207194120505, - "auto_unstuck_wallet_exposure_threshold": 0.784153921234558, - "backwards_tp": true, - "ddown_factor": 1.543868886142701, - "ema_span_0": 997.3516820438206, - "ema_span_1": 1146.9141353293303, - "enabled": true, - "initial_eprice_ema_dist": -0.004789401350963071, - "initial_qty_pct": 0.014648799499099818, - "markup_range": 0.01194973843401795, - "min_markup": 0.007218539327202187, - "n_close_orders": 6, - "rentry_pprice_dist": 0.046646812705224104, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3591002935837856, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RUNEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RUNEUSDT.json deleted file mode 100644 index 5239a6ab6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.5114034150372, - "auto_unstuck_ema_dist": -0.03222522212750945, - "auto_unstuck_qty_pct": 0.013647750762214667, - "auto_unstuck_wallet_exposure_threshold": 0.7023358069938557, - "backwards_tp": true, - "ddown_factor": 0.904544834706519, - "ema_span_0": 528.0193581884716, - "ema_span_1": 1245.9509866944518, - "enabled": true, - "initial_eprice_ema_dist": 0.00022939197337816836, - "initial_qty_pct": 0.011730730515976074, - "markup_range": 0.007230331375112278, - "min_markup": 0.00604372209409567, - "n_close_orders": 15, - "rentry_pprice_dist": 0.025709171895251157, - "rentry_pprice_dist_wallet_exposure_weighting": 2.361371101883322, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1439.1103830443853, - "auto_unstuck_ema_dist": -0.012186869449521864, - "auto_unstuck_qty_pct": 0.010263059927198417, - "auto_unstuck_wallet_exposure_threshold": 0.11113162677810223, - "backwards_tp": true, - "ddown_factor": 2.3678294978474606, - "ema_span_0": 175.84637076087722, - "ema_span_1": 1096.1616259206737, - "enabled": true, - "initial_eprice_ema_dist": -0.004579206061317028, - "initial_qty_pct": 0.010743421915198064, - "markup_range": 0.003105217426646186, - "min_markup": 0.0022880067090024787, - "n_close_orders": 10, - "rentry_pprice_dist": 0.046421397531376446, - "rentry_pprice_dist_wallet_exposure_weighting": 10.606085020833945, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RVNUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RVNUSDT.json deleted file mode 100644 index 224d9d822..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 468.70868772248906, - "auto_unstuck_ema_dist": -0.028554448994106394, - "auto_unstuck_qty_pct": 0.023824315416634562, - "auto_unstuck_wallet_exposure_threshold": 0.6721574248177288, - "backwards_tp": true, - "ddown_factor": 1.1876191397545075, - "ema_span_0": 189.56815537382778, - "ema_span_1": 289.347073823667, - "enabled": true, - "initial_eprice_ema_dist": -0.0045530452587324655, - "initial_qty_pct": 0.01760449273786535, - "markup_range": 0.00580176977477208, - "min_markup": 0.006206847362111233, - "n_close_orders": 2, - "rentry_pprice_dist": 0.018330466139362706, - "rentry_pprice_dist_wallet_exposure_weighting": 10.25709337081811, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1056.2587647038638, - "auto_unstuck_ema_dist": -0.0007501592435774812, - "auto_unstuck_qty_pct": 0.010109801728390289, - "auto_unstuck_wallet_exposure_threshold": 0.41234566224284314, - "backwards_tp": true, - "ddown_factor": 0.7599990669174843, - "ema_span_0": 1292.3013674861013, - "ema_span_1": 1384.1890320478074, - "enabled": true, - "initial_eprice_ema_dist": 9.219443918608253e-05, - "initial_qty_pct": 0.013888340243403246, - "markup_range": 0.004617014233188679, - "min_markup": 0.008324883453463978, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030802607984440997, - "rentry_pprice_dist_wallet_exposure_weighting": 18.46365495810027, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SANDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SANDUSDT.json deleted file mode 100644 index 4174ccfdb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 849.7010107651951, - "auto_unstuck_ema_dist": -0.013318262840860993, - "auto_unstuck_qty_pct": 0.017582661826280828, - "auto_unstuck_wallet_exposure_threshold": 0.1214101931798773, - "backwards_tp": true, - "ddown_factor": 2.316620255084283, - "ema_span_0": 1082.2584631514057, - "ema_span_1": 980.6622780822781, - "enabled": true, - "initial_eprice_ema_dist": -0.04709784416066655, - "initial_qty_pct": 0.01114860099009038, - "markup_range": 0.0043605070831453235, - "min_markup": 0.0016736190405732283, - "n_close_orders": 9, - "rentry_pprice_dist": 0.029213778995516363, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0082590322481004, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1165.144403053036, - "auto_unstuck_ema_dist": -0.014580241056721035, - "auto_unstuck_qty_pct": 0.010788093790699012, - "auto_unstuck_wallet_exposure_threshold": 0.6504518232291523, - "backwards_tp": true, - "ddown_factor": 1.8831048748717385, - "ema_span_0": 131.09496801544535, - "ema_span_1": 671.8164167866979, - "enabled": true, - "initial_eprice_ema_dist": 0.0012559462985013148, - "initial_qty_pct": 0.018156772022237647, - "markup_range": 0.005692939894639495, - "min_markup": 0.004485080343470257, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04309879722117426, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0166012586389037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SCUSDT.json deleted file mode 100644 index 9057d504c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 611.5506255455906, - "auto_unstuck_ema_dist": -0.017587832398252717, - "auto_unstuck_qty_pct": 0.047226254984243446, - "auto_unstuck_wallet_exposure_threshold": 0.33049960246604704, - "backwards_tp": true, - "ddown_factor": 2.3743834751818995, - "ema_span_0": 162.5556250066476, - "ema_span_1": 650.3064722776295, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998213276721374, - "initial_qty_pct": 0.01583205186781149, - "markup_range": 0.001986720543663317, - "min_markup": 0.003646489380621451, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042081767416105066, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7709045556511114, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 873.637864518467, - "auto_unstuck_ema_dist": 0.0027167152392486723, - "auto_unstuck_qty_pct": 0.010134702768904899, - "auto_unstuck_wallet_exposure_threshold": 0.5296341721374691, - "backwards_tp": true, - "ddown_factor": 1.6236808849180924, - "ema_span_0": 247.2121823883306, - "ema_span_1": 671.2149798710092, - "enabled": true, - "initial_eprice_ema_dist": -0.012795967500921657, - "initial_qty_pct": 0.0177802026529527, - "markup_range": 0.006572159849110811, - "min_markup": 0.004144988577012047, - "n_close_orders": 4, - "rentry_pprice_dist": 0.025973328443623333, - "rentry_pprice_dist_wallet_exposure_weighting": 6.648668042661048, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SFPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SFPUSDT.json deleted file mode 100644 index c85536b4a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1326.6824594067612, - "auto_unstuck_ema_dist": -0.04123898835843348, - "auto_unstuck_qty_pct": 0.015652849693422424, - "auto_unstuck_wallet_exposure_threshold": 0.6557735993238923, - "backwards_tp": true, - "ddown_factor": 2.8258428332034904, - "ema_span_0": 1297.8576890377162, - "ema_span_1": 1408.7367229897266, - "enabled": true, - "initial_eprice_ema_dist": 0.002372596272655519, - "initial_qty_pct": 0.01829313189456477, - "markup_range": 0.001966269584924063, - "min_markup": 0.00654436692475975, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04239548258648859, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9010689882788017, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1241.5530283468208, - "auto_unstuck_ema_dist": -5.6780029235400174e-05, - "auto_unstuck_qty_pct": 0.038984506597774915, - "auto_unstuck_wallet_exposure_threshold": 0.1395931734797936, - "backwards_tp": true, - "ddown_factor": 1.7287521315851035, - "ema_span_0": 27.03249596736449, - "ema_span_1": 23.07359005289345, - "enabled": true, - "initial_eprice_ema_dist": -0.0958441339506463, - "initial_qty_pct": 0.013128358286410851, - "markup_range": 0.004252484780212604, - "min_markup": 0.0080454847540127, - "n_close_orders": 13, - "rentry_pprice_dist": 0.0473451669224419, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1289140037012767, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SKLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SKLUSDT.json deleted file mode 100644 index 01a982f84..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1413.4517860157314, - "auto_unstuck_ema_dist": -0.08163853773380811, - "auto_unstuck_qty_pct": 0.010628897189508765, - "auto_unstuck_wallet_exposure_threshold": 0.512830178227829, - "backwards_tp": true, - "ddown_factor": 1.1290813047442747, - "ema_span_0": 807.0578447745643, - "ema_span_1": 887.272237862334, - "enabled": true, - "initial_eprice_ema_dist": 0.0029828309594787587, - "initial_qty_pct": 0.01997892217377579, - "markup_range": 0.00836529819565242, - "min_markup": 0.009998314935044132, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04234957183909329, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0154823192334643, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 454.81613545024913, - "auto_unstuck_ema_dist": -0.013375313933334734, - "auto_unstuck_qty_pct": 0.03427847689943461, - "auto_unstuck_wallet_exposure_threshold": 0.8521194329239793, - "backwards_tp": true, - "ddown_factor": 1.541854566336065, - "ema_span_0": 633.1659906002564, - "ema_span_1": 1227.8895126420005, - "enabled": true, - "initial_eprice_ema_dist": -0.008975401664506902, - "initial_qty_pct": 0.02137738933331136, - "markup_range": 0.00863041893615576, - "min_markup": 0.008498601998111744, - "n_close_orders": 9, - "rentry_pprice_dist": 0.0453716508883865, - "rentry_pprice_dist_wallet_exposure_weighting": 3.985473427657984, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SNXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SNXUSDT.json deleted file mode 100644 index 10aae8a40..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.249021252608, - "auto_unstuck_ema_dist": -0.002600576888307725, - "auto_unstuck_qty_pct": 0.010432413005248893, - "auto_unstuck_wallet_exposure_threshold": 0.15506845826751264, - "backwards_tp": true, - "ddown_factor": 0.4733818995593758, - "ema_span_0": 770.5033138499789, - "ema_span_1": 733.8822261725988, - "enabled": true, - "initial_eprice_ema_dist": 0.002908227600931329, - "initial_qty_pct": 0.013110481863277613, - "markup_range": 0.0037062698420862895, - "min_markup": 0.008860305049431824, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02562924412872706, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6390306662146283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1368.3799518962082, - "auto_unstuck_ema_dist": -0.033727459406720256, - "auto_unstuck_qty_pct": 0.010309552691897882, - "auto_unstuck_wallet_exposure_threshold": 0.6148474326887754, - "backwards_tp": true, - "ddown_factor": 1.2302316461464946, - "ema_span_0": 1394.7416011264659, - "ema_span_1": 1400.2272145992763, - "enabled": true, - "initial_eprice_ema_dist": -0.0011006675262684792, - "initial_qty_pct": 0.010205995910114419, - "markup_range": 0.018181003938671114, - "min_markup": 0.00986965447971635, - "n_close_orders": 4, - "rentry_pprice_dist": 0.048234051305973594, - "rentry_pprice_dist_wallet_exposure_weighting": 10.008443462744069, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SOLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SOLUSDT.json deleted file mode 100644 index 82b1d4735..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 708.7993847749706, - "auto_unstuck_ema_dist": -0.03492615226391918, - "auto_unstuck_qty_pct": 0.026455118290724795, - "auto_unstuck_wallet_exposure_threshold": 0.278002259283257, - "backwards_tp": true, - "ddown_factor": 2.8388446679798194, - "ema_span_0": 1138.4259474262597, - "ema_span_1": 148.9859201292907, - "enabled": true, - "initial_eprice_ema_dist": 0.002628310251767923, - "initial_qty_pct": 0.019807408608063477, - "markup_range": 0.0022836794369231407, - "min_markup": 0.007694350533403305, - "n_close_orders": 16, - "rentry_pprice_dist": 0.03347728268553789, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1377.1519699877722, - "auto_unstuck_ema_dist": -0.029640293535384565, - "auto_unstuck_qty_pct": 0.01358695151176679, - "auto_unstuck_wallet_exposure_threshold": 0.8144571236420198, - "backwards_tp": true, - "ddown_factor": 1.7976462695272, - "ema_span_0": 390.17817755367633, - "ema_span_1": 1200.43696047037, - "enabled": true, - "initial_eprice_ema_dist": -0.00444319554923519, - "initial_qty_pct": 0.010675647793337533, - "markup_range": 0.00014241414979329007, - "min_markup": 0.0035134463807143385, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04013927675712447, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9945346124595819, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SPELLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SPELLUSDT.json deleted file mode 100644 index c32b85e1b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1076.5472894144002, - "auto_unstuck_ema_dist": -0.0006678838759678103, - "auto_unstuck_qty_pct": 0.012127291231317136, - "auto_unstuck_wallet_exposure_threshold": 0.44837983481107613, - "backwards_tp": true, - "ddown_factor": 1.8207967119274409, - "ema_span_0": 982.9817299975784, - "ema_span_1": 831.399231901919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029794089167961986, - "initial_qty_pct": 0.011318584637925436, - "markup_range": 0.0021015647629782867, - "min_markup": 0.009125915497118641, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02481885895616629, - "rentry_pprice_dist_wallet_exposure_weighting": 3.841221884380405, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SRMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SRMUSDT.json deleted file mode 100644 index 6a2a89ecc..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1296.2194242380763, - "auto_unstuck_ema_dist": -0.03141021548305407, - "auto_unstuck_qty_pct": 0.012778057505246505, - "auto_unstuck_wallet_exposure_threshold": 0.15232669218225656, - "backwards_tp": true, - "ddown_factor": 0.2467896320510677, - "ema_span_0": 265.72299065346016, - "ema_span_1": 154.06429299707747, - "enabled": true, - "initial_eprice_ema_dist": 0.0010191160425469955, - "initial_qty_pct": 0.010647486232832095, - "markup_range": 0.006868974212190784, - "min_markup": 0.00980229659204074, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04653107526419948, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5583740827556887, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1377.1519699877722, - "auto_unstuck_ema_dist": -0.029640293535384565, - "auto_unstuck_qty_pct": 0.01358695151176679, - "auto_unstuck_wallet_exposure_threshold": 0.8144571236420198, - "backwards_tp": true, - "ddown_factor": 1.7976462695272, - "ema_span_0": 390.17817755367633, - "ema_span_1": 1200.43696047037, - "enabled": true, - "initial_eprice_ema_dist": -0.00444319554923519, - "initial_qty_pct": 0.010675647793337533, - "markup_range": 0.00014241414979329007, - "min_markup": 0.0035134463807143385, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04013927675712447, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9945346124595819, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SSVUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SSVUSDT.json deleted file mode 100644 index 3542233b8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.2714698202462, - "auto_unstuck_ema_dist": 0.0013200273166717384, - "auto_unstuck_qty_pct": 0.013635012018200646, - "auto_unstuck_wallet_exposure_threshold": 0.5895246874364509, - "backwards_tp": true, - "ddown_factor": 2.698777215106034, - "ema_span_0": 562.4659497418509, - "ema_span_1": 1082.6632777060822, - "enabled": true, - "initial_eprice_ema_dist": 0.002619553444545556, - "initial_qty_pct": 0.021807398493813763, - "markup_range": 0.0053504596154854145, - "min_markup": 0.008241652500442504, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03863216249326461, - "rentry_pprice_dist_wallet_exposure_weighting": 4.4885245164214947e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STGUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STGUSDT.json deleted file mode 100644 index f1b6b3ea1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1302.9622602969205, - "auto_unstuck_ema_dist": -0.009790478051886362, - "auto_unstuck_qty_pct": 0.010160647602187432, - "auto_unstuck_wallet_exposure_threshold": 0.6451895370758047, - "backwards_tp": true, - "ddown_factor": 1.920468386542543, - "ema_span_0": 11.379338818164452, - "ema_span_1": 8.954540549950563, - "enabled": true, - "initial_eprice_ema_dist": -0.09951272600741466, - "initial_qty_pct": 0.013176849249050184, - "markup_range": 0.0, - "min_markup": 0.002307822281199439, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03322325467189492, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003190094921757007, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STMXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STMXUSDT.json deleted file mode 100644 index 48f98cdd6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1126.137623454604, - "auto_unstuck_ema_dist": -0.04558224087362485, - "auto_unstuck_qty_pct": 0.023842946786540115, - "auto_unstuck_wallet_exposure_threshold": 0.11915834434069686, - "backwards_tp": true, - "ddown_factor": 1.0896064212649437, - "ema_span_0": 968.6218317514042, - "ema_span_1": 956.96077160756, - "enabled": true, - "initial_eprice_ema_dist": 0.002746892750159812, - "initial_qty_pct": 0.010860851171043696, - "markup_range": 0.004355317843527951, - "min_markup": 0.009412326991303054, - "n_close_orders": 9, - "rentry_pprice_dist": 0.030544003639191766, - "rentry_pprice_dist_wallet_exposure_weighting": 4.641958500885174, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 796.2671985747518, - "auto_unstuck_ema_dist": -0.030801145365585283, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.19263833769750122, - "backwards_tp": true, - "ddown_factor": 2.966819935470706, - "ema_span_0": 1152.0214193291188, - "ema_span_1": 1192.2680492422191, - "enabled": true, - "initial_eprice_ema_dist": 0.0001698208326533056, - "initial_qty_pct": 0.016834052820737758, - "markup_range": 0.0027146217923400503, - "min_markup": 0.009919588498828744, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03369003526688093, - "rentry_pprice_dist_wallet_exposure_weighting": 6.433729627585897, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STORJUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STORJUSDT.json deleted file mode 100644 index 8154d8413..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 610.5347318500433, - "auto_unstuck_ema_dist": -0.006179557915241279, - "auto_unstuck_qty_pct": 0.015286406160312531, - "auto_unstuck_wallet_exposure_threshold": 0.46928377148557626, - "backwards_tp": true, - "ddown_factor": 1.6735897587788375, - "ema_span_0": 1142.4593203429026, - "ema_span_1": 1094.3297694575379, - "enabled": true, - "initial_eprice_ema_dist": -0.006258121513310949, - "initial_qty_pct": 0.011549688532249398, - "markup_range": 0.0023621468193017327, - "min_markup": 0.004273335889112479, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04341589545434545, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3118681585926317, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 909.1410729564229, - "auto_unstuck_ema_dist": -0.0255201975598679, - "auto_unstuck_qty_pct": 0.013693114893090238, - "auto_unstuck_wallet_exposure_threshold": 0.3060305341405119, - "backwards_tp": true, - "ddown_factor": 2.180523028362061, - "ema_span_0": 1412.2451345308982, - "ema_span_1": 1428.8244343762062, - "enabled": true, - "initial_eprice_ema_dist": -0.005456712624253962, - "initial_qty_pct": 0.014481063004963355, - "markup_range": 0.0040892598403161375, - "min_markup": 0.003160743765659779, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02830474904038458, - "rentry_pprice_dist_wallet_exposure_weighting": 15.08147889620597, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STXUSDT.json deleted file mode 100644 index c542feb8e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1138.1090826274194, - "auto_unstuck_ema_dist": -0.0006653001155725834, - "auto_unstuck_qty_pct": 0.023223367641171007, - "auto_unstuck_wallet_exposure_threshold": 0.35041220461469197, - "backwards_tp": true, - "ddown_factor": 2.2707835863491006, - "ema_span_0": 1411.6946223548812, - "ema_span_1": 1335.804208668769, - "enabled": true, - "initial_eprice_ema_dist": 0.0021943224226400214, - "initial_qty_pct": 0.012010579939249756, - "markup_range": 0.004833197526376136, - "min_markup": 0.004057114569691182, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03475191548679297, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5959782017975637, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1056.2587647038638, - "auto_unstuck_ema_dist": -0.0007501592435774812, - "auto_unstuck_qty_pct": 0.010109801728390289, - "auto_unstuck_wallet_exposure_threshold": 0.41234566224284314, - "backwards_tp": true, - "ddown_factor": 0.7599990669174843, - "ema_span_0": 1292.3013674861013, - "ema_span_1": 1384.1890320478074, - "enabled": true, - "initial_eprice_ema_dist": 9.219443918608253e-05, - "initial_qty_pct": 0.013888340243403246, - "markup_range": 0.004617014233188679, - "min_markup": 0.008324883453463978, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030802607984440997, - "rentry_pprice_dist_wallet_exposure_weighting": 18.46365495810027, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SUIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SUIUSDT.json deleted file mode 100644 index 9cfdfdb62..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 827.202471355724, - "auto_unstuck_ema_dist": -0.0375922669201304, - "auto_unstuck_qty_pct": 0.023776905802935667, - "auto_unstuck_wallet_exposure_threshold": 0.5189881514875958, - "backwards_tp": true, - "ddown_factor": 1.1309489151187235, - "ema_span_0": 635.1280631733061, - "ema_span_1": 583.1989441011461, - "enabled": true, - "initial_eprice_ema_dist": -0.08668068249460394, - "initial_qty_pct": 0.011170650577892235, - "markup_range": 0.001656252914261926, - "min_markup": 0.001994520306322353, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02026663408731323, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3319582688865554, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1419.2743428176746, - "auto_unstuck_ema_dist": -0.010751917265482356, - "auto_unstuck_qty_pct": 0.014150210275410819, - "auto_unstuck_wallet_exposure_threshold": 0.16434407872717893, - "backwards_tp": true, - "ddown_factor": 2.119406959780456, - "ema_span_0": 577.6715931946267, - "ema_span_1": 170.58971366026384, - "enabled": true, - "initial_eprice_ema_dist": 0.002532193342430311, - "initial_qty_pct": 0.020689909922138292, - "markup_range": 0.0014629773606196423, - "min_markup": 0.009539853424279092, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018466961411321762, - "rentry_pprice_dist_wallet_exposure_weighting": 4.601847906734825, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SUSHIUSDT.json deleted file mode 100644 index ba65ae35b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.093969550663, - "auto_unstuck_ema_dist": -0.0025428899313089215, - "auto_unstuck_qty_pct": 0.010104487892205685, - "auto_unstuck_wallet_exposure_threshold": 0.1945709997641796, - "backwards_tp": true, - "ddown_factor": 2.494574436848078, - "ema_span_0": 200.0448942819352, - "ema_span_1": 1399.916929545641, - "enabled": true, - "initial_eprice_ema_dist": 0.0007717882959243405, - "initial_qty_pct": 0.021932908268113595, - "markup_range": 0.003106333131450836, - "min_markup": 0.006462948657990403, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04658718932303478, - "rentry_pprice_dist_wallet_exposure_weighting": 0.11164577870792912, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1090.3626847943638, - "auto_unstuck_ema_dist": -0.04039869244614019, - "auto_unstuck_qty_pct": 0.010216733029066446, - "auto_unstuck_wallet_exposure_threshold": 0.2601129807836539, - "backwards_tp": true, - "ddown_factor": 2.6478474118114437, - "ema_span_0": 886.8535941648428, - "ema_span_1": 1193.5266707977642, - "enabled": true, - "initial_eprice_ema_dist": 0.0008267368720492104, - "initial_qty_pct": 0.021286206447811293, - "markup_range": 0.010793276681727821, - "min_markup": 0.005997205936931843, - "n_close_orders": 6, - "rentry_pprice_dist": 0.047169638102813674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SXPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SXPUSDT.json deleted file mode 100644 index 2f8c8958e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1168.1958329575507, - "auto_unstuck_ema_dist": -0.012912001034555143, - "auto_unstuck_qty_pct": 0.012546693655526938, - "auto_unstuck_wallet_exposure_threshold": 0.20833894628040595, - "backwards_tp": true, - "ddown_factor": 1.615808193068187, - "ema_span_0": 686.2286818957755, - "ema_span_1": 123.87983410479042, - "enabled": true, - "initial_eprice_ema_dist": -0.0015859203938363487, - "initial_qty_pct": 0.01165365067917482, - "markup_range": 0.0034569431354466804, - "min_markup": 0.008071651348011766, - "n_close_orders": 11, - "rentry_pprice_dist": 0.049610566521138995, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8512369650667241, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1384.3603393337523, - "auto_unstuck_ema_dist": 0.0024853636647473713, - "auto_unstuck_qty_pct": 0.06558568990335342, - "auto_unstuck_wallet_exposure_threshold": 0.5760045344127737, - "backwards_tp": true, - "ddown_factor": 2.027712494059968, - "ema_span_0": 1148.9580006997223, - "ema_span_1": 804.2632673694641, - "enabled": true, - "initial_eprice_ema_dist": 0.001997853862534355, - "initial_qty_pct": 0.010884095096774585, - "markup_range": 0.001760745822400736, - "min_markup": 0.002887650471616504, - "n_close_orders": 11, - "rentry_pprice_dist": 0.032530208495394716, - "rentry_pprice_dist_wallet_exposure_weighting": 18.518026084279576, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/THETAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/THETAUSDT.json deleted file mode 100644 index 236f1923b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 933.5545649415141, - "auto_unstuck_ema_dist": -0.020916694921813597, - "auto_unstuck_qty_pct": 0.010402250527463207, - "auto_unstuck_wallet_exposure_threshold": 0.10818819844689886, - "backwards_tp": true, - "ddown_factor": 0.7725183750348136, - "ema_span_0": 904.0667177141111, - "ema_span_1": 835.0872345033705, - "enabled": true, - "initial_eprice_ema_dist": -0.09500750313373799, - "initial_qty_pct": 0.012139930921967928, - "markup_range": 0.004893935309566844, - "min_markup": 0.0049365164293177916, - "n_close_orders": 13, - "rentry_pprice_dist": 0.029283212468838724, - "rentry_pprice_dist_wallet_exposure_weighting": 0.8099500717531118, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1181.4860329336536, - "auto_unstuck_ema_dist": -0.014364585758926888, - "auto_unstuck_qty_pct": 0.01000949141522606, - "auto_unstuck_wallet_exposure_threshold": 0.1729383436815849, - "backwards_tp": true, - "ddown_factor": 1.4762623936003794, - "ema_span_0": 493.0034780813123, - "ema_span_1": 620.7740833337438, - "enabled": true, - "initial_eprice_ema_dist": 0.002745698852258753, - "initial_qty_pct": 0.02706910994940673, - "markup_range": 0.009959494569975328, - "min_markup": 0.005163687345675989, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04311074070333395, - "rentry_pprice_dist_wallet_exposure_weighting": 3.5085588177534506, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TLMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TLMUSDT.json deleted file mode 100644 index 501b8a0fa..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1311.5399832936957, - "auto_unstuck_ema_dist": -0.03907802931119537, - "auto_unstuck_qty_pct": 0.014721051191023219, - "auto_unstuck_wallet_exposure_threshold": 0.592422601347004, - "backwards_tp": true, - "ddown_factor": 2.885375571754744, - "ema_span_0": 1300.8604075507383, - "ema_span_1": 1179.5666776700646, - "enabled": true, - "initial_eprice_ema_dist": -0.0007626660083684643, - "initial_qty_pct": 0.011148279008915556, - "markup_range": 0.004280177753869444, - "min_markup": 0.008814171271139854, - "n_close_orders": 5, - "rentry_pprice_dist": 0.045902601921366463, - "rentry_pprice_dist_wallet_exposure_weighting": 7.5669162427047345, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TOMOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TOMOUSDT.json deleted file mode 100644 index a4a8662f6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1291.345557999812, - "auto_unstuck_ema_dist": -0.00540478684178871, - "auto_unstuck_qty_pct": 0.015289894451198502, - "auto_unstuck_wallet_exposure_threshold": 0.20698079334339, - "backwards_tp": true, - "ddown_factor": 1.1954101388166567, - "ema_span_0": 896.4638329930463, - "ema_span_1": 784.8593068841126, - "enabled": true, - "initial_eprice_ema_dist": -0.0870997008866209, - "initial_qty_pct": 0.012310198013628162, - "markup_range": 0.0032333112637278525, - "min_markup": 0.00895162760919457, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04248353037113406, - "rentry_pprice_dist_wallet_exposure_weighting": 3.109541854359619, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1108.0150303941693, - "auto_unstuck_ema_dist": -0.03251290285776913, - "auto_unstuck_qty_pct": 0.021323531103767456, - "auto_unstuck_wallet_exposure_threshold": 0.7908624676324887, - "backwards_tp": true, - "ddown_factor": 2.375293121946399, - "ema_span_0": 1161.8497480953176, - "ema_span_1": 756.3667942868354, - "enabled": true, - "initial_eprice_ema_dist": 0.0012778795510343807, - "initial_qty_pct": 0.010161114963107514, - "markup_range": 1.4824479067059589e-06, - "min_markup": 0.0023774394631266987, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02570987219018974, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRBUSDT.json deleted file mode 100644 index 607efd3d3..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1425.0759274643879, - "auto_unstuck_ema_dist": -0.03092668328276308, - "auto_unstuck_qty_pct": 0.012057677251555241, - "auto_unstuck_wallet_exposure_threshold": 0.4691699788964982, - "backwards_tp": true, - "ddown_factor": 1.3664735826044883, - "ema_span_0": 500.4097395114556, - "ema_span_1": 481.2778919040329, - "enabled": true, - "initial_eprice_ema_dist": 0.002950424607624244, - "initial_qty_pct": 0.01281340574111698, - "markup_range": 0.006231870987400575, - "min_markup": 0.004514594069757063, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04900709833647481, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9233148759458772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 856.718208405766, - "auto_unstuck_ema_dist": -0.006347775865735142, - "auto_unstuck_qty_pct": 0.0419722606965194, - "auto_unstuck_wallet_exposure_threshold": 0.7503744387496815, - "backwards_tp": true, - "ddown_factor": 2.669504115247495, - "ema_span_0": 634.556166579952, - "ema_span_1": 1231.8957215596135, - "enabled": true, - "initial_eprice_ema_dist": -0.0013168188362465444, - "initial_qty_pct": 0.018044035508828663, - "markup_range": 0.00801447149365451, - "min_markup": 0.00598489162747276, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04929131912162205, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1655372880863741, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRUUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRUUSDT.json deleted file mode 100644 index ec519b675..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.5102781417193, - "auto_unstuck_ema_dist": -0.06798896407214962, - "auto_unstuck_qty_pct": 0.010075066737701548, - "auto_unstuck_wallet_exposure_threshold": 0.46447479880507697, - "backwards_tp": true, - "ddown_factor": 0.490828308407505, - "ema_span_0": 682.7117333081351, - "ema_span_1": 670.9502834349606, - "enabled": true, - "initial_eprice_ema_dist": -0.01102202814963386, - "initial_qty_pct": 0.012363679080226214, - "markup_range": 0.00642496351392925, - "min_markup": 0.009101377503903562, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03346093241452048, - "rentry_pprice_dist_wallet_exposure_weighting": 4.928824480697781, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRXUSDT.json deleted file mode 100644 index 39493c7e4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1241.6815220008489, - "auto_unstuck_ema_dist": -0.02376976141604809, - "auto_unstuck_qty_pct": 0.010100461731487462, - "auto_unstuck_wallet_exposure_threshold": 0.29418031881816764, - "backwards_tp": true, - "ddown_factor": 1.3693858643857795, - "ema_span_0": 862.7600943888548, - "ema_span_1": 1198.4225018913592, - "enabled": true, - "initial_eprice_ema_dist": -0.0021686862799339054, - "initial_qty_pct": 0.014040301197421301, - "markup_range": 0.0024085468748786553, - "min_markup": 0.0015046592390348095, - "n_close_orders": 11, - "rentry_pprice_dist": 0.02270171112131856, - "rentry_pprice_dist_wallet_exposure_weighting": 0.876542348502689, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1163.0635560777955, - "auto_unstuck_ema_dist": -0.011697155221786918, - "auto_unstuck_qty_pct": 0.011534911057107928, - "auto_unstuck_wallet_exposure_threshold": 0.47249217653477454, - "backwards_tp": true, - "ddown_factor": 2.10593009028873, - "ema_span_0": 92.42399086701167, - "ema_span_1": 923.3943208214632, - "enabled": true, - "initial_eprice_ema_dist": 0.0018399711131591424, - "initial_qty_pct": 0.013190315878645276, - "markup_range": 0.0008522084968640203, - "min_markup": 0.00256164598040883, - "n_close_orders": 10, - "rentry_pprice_dist": 0.017769936014241053, - "rentry_pprice_dist_wallet_exposure_weighting": 1.130896229672453, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TUSDT.json deleted file mode 100644 index 898626141..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1228.3719134542807, - "auto_unstuck_ema_dist": -0.05528699136081331, - "auto_unstuck_qty_pct": 0.023501348015464482, - "auto_unstuck_wallet_exposure_threshold": 0.7699563914647427, - "backwards_tp": true, - "ddown_factor": 1.576199096270606, - "ema_span_0": 837.2087540805963, - "ema_span_1": 548.8301243306219, - "enabled": true, - "initial_eprice_ema_dist": 0.0011939016528522358, - "initial_qty_pct": 0.011124872325085397, - "markup_range": 0.0012088856504370979, - "min_markup": 0.009459458171171147, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03276514075103134, - "rentry_pprice_dist_wallet_exposure_weighting": 9.43428446060838, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.055229211736, - "auto_unstuck_ema_dist": -0.03383240561699953, - "auto_unstuck_qty_pct": 0.020929986722580424, - "auto_unstuck_wallet_exposure_threshold": 0.4507773451589427, - "backwards_tp": true, - "ddown_factor": 2.251404841380241, - "ema_span_0": 332.1323424914465, - "ema_span_1": 611.3988437739725, - "enabled": true, - "initial_eprice_ema_dist": -0.0034363991468286514, - "initial_qty_pct": 0.015177195886619683, - "markup_range": 0.0030337325581531794, - "min_markup": 0.002751517117800208, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019453320055873184, - "rentry_pprice_dist_wallet_exposure_weighting": 3.888733212449491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UMAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UMAUSDT.json deleted file mode 100644 index 39e0ae060..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1089.3345127863754, - "auto_unstuck_ema_dist": -0.024165615529870448, - "auto_unstuck_qty_pct": 0.08883836750187048, - "auto_unstuck_wallet_exposure_threshold": 0.1537913623573174, - "backwards_tp": true, - "ddown_factor": 0.11201990706186488, - "ema_span_0": 856.3035855950279, - "ema_span_1": 248.4520879466756, - "enabled": true, - "initial_eprice_ema_dist": 0.0019686942085299724, - "initial_qty_pct": 0.033918419840101584, - "markup_range": 0.008722211932848585, - "min_markup": 0.005301702799370751, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025064030255752184, - "rentry_pprice_dist_wallet_exposure_weighting": 2.051929253542976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1129.2955171542465, - "auto_unstuck_ema_dist": -0.03950898578871404, - "auto_unstuck_qty_pct": 0.03795250552410517, - "auto_unstuck_wallet_exposure_threshold": 0.2155401719670245, - "backwards_tp": true, - "ddown_factor": 1.920706088711893, - "ema_span_0": 1092.4619906796183, - "ema_span_1": 1082.2896383241623, - "enabled": true, - "initial_eprice_ema_dist": -0.0014985872139409622, - "initial_qty_pct": 0.02663730578095126, - "markup_range": 0.002293685021679321, - "min_markup": 0.006738443883950546, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02781227627598016, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9826124066213908, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UNFIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UNFIUSDT.json deleted file mode 100644 index 0a14d7017..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 840.4343960440021, - "auto_unstuck_ema_dist": -0.005673270625546578, - "auto_unstuck_qty_pct": 0.012954003127330074, - "auto_unstuck_wallet_exposure_threshold": 0.29086407453643526, - "backwards_tp": true, - "ddown_factor": 0.5339742515457244, - "ema_span_0": 774.7715685036623, - "ema_span_1": 108.8184198861984, - "enabled": true, - "initial_eprice_ema_dist": -0.06784427216615875, - "initial_qty_pct": 0.014221254965470838, - "markup_range": 0.009219770408101471, - "min_markup": 0.009724070262237483, - "n_close_orders": 3, - "rentry_pprice_dist": 0.042125780334064514, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8624009083263084, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 412.52984172503324, - "auto_unstuck_ema_dist": -0.023934531345005675, - "auto_unstuck_qty_pct": 0.035769166001733674, - "auto_unstuck_wallet_exposure_threshold": 0.42887256488752173, - "backwards_tp": true, - "ddown_factor": 2.5533437036715987, - "ema_span_0": 1002.3802338936906, - "ema_span_1": 1378.5896143468967, - "enabled": true, - "initial_eprice_ema_dist": -0.0007090604073529968, - "initial_qty_pct": 0.04379136301057834, - "markup_range": 9.47153264298968e-08, - "min_markup": 0.0013203614122733944, - "n_close_orders": 7, - "rentry_pprice_dist": 0.017105688909238487, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UNIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UNIUSDT.json deleted file mode 100644 index 5ec389183..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1124.4169363293518, - "auto_unstuck_ema_dist": -0.013231892249533308, - "auto_unstuck_qty_pct": 0.011410294461557245, - "auto_unstuck_wallet_exposure_threshold": 0.24914188011989963, - "backwards_tp": true, - "ddown_factor": 1.9484444804446945, - "ema_span_0": 810.0642331565832, - "ema_span_1": 955.3098328738778, - "enabled": true, - "initial_eprice_ema_dist": -0.04058615604855944, - "initial_qty_pct": 0.01228133237314172, - "markup_range": 0.0012727271335181227, - "min_markup": 0.00951985597737361, - "n_close_orders": 10, - "rentry_pprice_dist": 0.037662895329446125, - "rentry_pprice_dist_wallet_exposure_weighting": 4.125453907250017, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1312.8954957919416, - "auto_unstuck_ema_dist": -0.01109306391544553, - "auto_unstuck_qty_pct": 0.056331377347544814, - "auto_unstuck_wallet_exposure_threshold": 0.5706835631096828, - "backwards_tp": true, - "ddown_factor": 1.6110824106318637, - "ema_span_0": 469.3673587996388, - "ema_span_1": 1430.5965766279087, - "enabled": true, - "initial_eprice_ema_dist": -0.007986705893367415, - "initial_qty_pct": 0.010476021990854005, - "markup_range": 0.008405590414758121, - "min_markup": 0.009993585957131143, - "n_close_orders": 16, - "rentry_pprice_dist": 0.04122883304422054, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2472076089912318, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/USDCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/USDCUSDT.json deleted file mode 100644 index 6eac3792f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 714.4533936392255, - "auto_unstuck_ema_dist": -0.011828257417670011, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8396197697638468, - "backwards_tp": true, - "ddown_factor": 1.669113705169779, - "ema_span_0": 1057.954314167383, - "ema_span_1": 521.1756642172619, - "enabled": true, - "initial_eprice_ema_dist": -0.03516260505330338, - "initial_qty_pct": 0.018534706297965095, - "markup_range": 0.0065323557515550405, - "min_markup": 0.0043065555176057, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03306641642178427, - "rentry_pprice_dist_wallet_exposure_weighting": 9.270838197362451, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.055229211736, - "auto_unstuck_ema_dist": -0.03383240561699953, - "auto_unstuck_qty_pct": 0.020929986722580424, - "auto_unstuck_wallet_exposure_threshold": 0.4507773451589427, - "backwards_tp": true, - "ddown_factor": 2.251404841380241, - "ema_span_0": 332.1323424914465, - "ema_span_1": 611.3988437739725, - "enabled": true, - "initial_eprice_ema_dist": -0.0034363991468286514, - "initial_qty_pct": 0.015177195886619683, - "markup_range": 0.0030337325581531794, - "min_markup": 0.002751517117800208, - "n_close_orders": 8, - "rentry_pprice_dist": 0.019453320055873184, - "rentry_pprice_dist_wallet_exposure_weighting": 3.888733212449491, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/VETUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/VETUSDT.json deleted file mode 100644 index 7218f9edc..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 956.8198234244884, - "auto_unstuck_ema_dist": -0.021642950054863008, - "auto_unstuck_qty_pct": 0.010104987796422913, - "auto_unstuck_wallet_exposure_threshold": 0.7124493689546159, - "backwards_tp": true, - "ddown_factor": 2.957797475000641, - "ema_span_0": 926.3852512814625, - "ema_span_1": 725.7927512168585, - "enabled": true, - "initial_eprice_ema_dist": -0.02132019865854527, - "initial_qty_pct": 0.018650942543656877, - "markup_range": 0.002981943413449591, - "min_markup": 0.001779544783736224, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03412535440172993, - "rentry_pprice_dist_wallet_exposure_weighting": 5.77408928833069, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 716.1934540142364, - "auto_unstuck_ema_dist": -0.006220709366664253, - "auto_unstuck_qty_pct": 0.02192813843914405, - "auto_unstuck_wallet_exposure_threshold": 0.6673650434630152, - "backwards_tp": true, - "ddown_factor": 1.956277735294926, - "ema_span_0": 213.99430040888603, - "ema_span_1": 227.58638007063354, - "enabled": true, - "initial_eprice_ema_dist": 0.002532193342430311, - "initial_qty_pct": 0.011426377254480192, - "markup_range": 0.002817064692348116, - "min_markup": 0.007950902266049836, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03004139279071143, - "rentry_pprice_dist_wallet_exposure_weighting": 3.745258900375952, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/WAVESUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/WAVESUSDT.json deleted file mode 100644 index 1b0db7ca8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1248.0863803645975, - "auto_unstuck_ema_dist": -0.012557415351156991, - "auto_unstuck_qty_pct": 0.015320605190041137, - "auto_unstuck_wallet_exposure_threshold": 0.7673618971503481, - "backwards_tp": true, - "ddown_factor": 2.4102798302990585, - "ema_span_0": 539.5222040777102, - "ema_span_1": 181.5993235880529, - "enabled": true, - "initial_eprice_ema_dist": -0.0022746898459031586, - "initial_qty_pct": 0.011971200021888832, - "markup_range": 0.004099720290731829, - "min_markup": 0.0032378021374773374, - "n_close_orders": 5, - "rentry_pprice_dist": 0.037890630322675686, - "rentry_pprice_dist_wallet_exposure_weighting": 1.515625145583001, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 828.2787921103887, - "auto_unstuck_ema_dist": -0.03711099651155908, - "auto_unstuck_qty_pct": 0.054395253751476094, - "auto_unstuck_wallet_exposure_threshold": 0.26255606516534896, - "backwards_tp": true, - "ddown_factor": 0.5710858172562677, - "ema_span_0": 5.3977814553091426, - "ema_span_1": 7.343903530621607, - "enabled": true, - "initial_eprice_ema_dist": -0.05308471892354905, - "initial_qty_pct": 0.033499048810206516, - "markup_range": 0.055345824336836005, - "min_markup": 0.005004431556618844, - "n_close_orders": 9, - "rentry_pprice_dist": 0.013115935929387866, - "rentry_pprice_dist_wallet_exposure_weighting": 15.154654217739507, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/WOOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/WOOUSDT.json deleted file mode 100644 index 9a775a9fd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 610.5347318500433, - "auto_unstuck_ema_dist": -0.006179557915241279, - "auto_unstuck_qty_pct": 0.015286406160312531, - "auto_unstuck_wallet_exposure_threshold": 0.46928377148557626, - "backwards_tp": true, - "ddown_factor": 1.6735897587788375, - "ema_span_0": 1142.4593203429026, - "ema_span_1": 1094.3297694575379, - "enabled": true, - "initial_eprice_ema_dist": -0.006258121513310949, - "initial_qty_pct": 0.011549688532249398, - "markup_range": 0.0023621468193017327, - "min_markup": 0.004273335889112479, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04341589545434545, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3118681585926317, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1245.734893700967, - "auto_unstuck_ema_dist": -0.036628475907984855, - "auto_unstuck_qty_pct": 0.051219617512150865, - "auto_unstuck_wallet_exposure_threshold": 0.3210560460285019, - "backwards_tp": true, - "ddown_factor": 0.9305626870119749, - "ema_span_0": 510.0454983758897, - "ema_span_1": 295.4459061417075, - "enabled": true, - "initial_eprice_ema_dist": -0.09531641777131623, - "initial_qty_pct": 0.015812462150276048, - "markup_range": 0.0014451870736427, - "min_markup": 0.00371743483267496, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04523865674951875, - "rentry_pprice_dist_wallet_exposure_weighting": 2.2373533763330583e-05, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XEMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XEMUSDT.json deleted file mode 100644 index a8240607b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 876.7332086989662, - "auto_unstuck_ema_dist": 0.0025525250930138192, - "auto_unstuck_qty_pct": 0.010080858316768361, - "auto_unstuck_wallet_exposure_threshold": 0.17146685632352657, - "backwards_tp": true, - "ddown_factor": 2.9980488827561143, - "ema_span_0": 198.35173825167848, - "ema_span_1": 626.5126955723935, - "enabled": true, - "initial_eprice_ema_dist": 0.002998397089820979, - "initial_qty_pct": 0.01347060749414728, - "markup_range": 0.0032965706607342633, - "min_markup": 0.0065351363442529955, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03406191422078121, - "rentry_pprice_dist_wallet_exposure_weighting": 3.403322977526902, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1130.958835691042, - "auto_unstuck_ema_dist": -0.06545187903619279, - "auto_unstuck_qty_pct": 0.0162176148117012, - "auto_unstuck_wallet_exposure_threshold": 0.46790674855753145, - "backwards_tp": true, - "ddown_factor": 1.230633039977133, - "ema_span_0": 1086.1941501192775, - "ema_span_1": 306.66570353503636, - "enabled": true, - "initial_eprice_ema_dist": -0.00698790263377885, - "initial_qty_pct": 0.017784905525295602, - "markup_range": 0.006696134467265205, - "min_markup": 0.009806604851310555, - "n_close_orders": 15, - "rentry_pprice_dist": 0.021213796043163872, - "rentry_pprice_dist_wallet_exposure_weighting": 2.5343514407640697, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XLMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XLMUSDT.json deleted file mode 100644 index 2564b4b44..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 878.8439316189509, - "auto_unstuck_ema_dist": -0.027074135092344097, - "auto_unstuck_qty_pct": 0.015107463684303813, - "auto_unstuck_wallet_exposure_threshold": 0.5827549057117383, - "backwards_tp": true, - "ddown_factor": 0.17853722080286868, - "ema_span_0": 1134.9830174549247, - "ema_span_1": 1021.239871317313, - "enabled": true, - "initial_eprice_ema_dist": 0.0029913840835538944, - "initial_qty_pct": 0.010053681481523467, - "markup_range": 0.0018181234226242122, - "min_markup": 0.0020651824582331277, - "n_close_orders": 9, - "rentry_pprice_dist": 0.008663494829004833, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4581395171454616, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 927.5130044330807, - "auto_unstuck_ema_dist": -0.007464576553170371, - "auto_unstuck_qty_pct": 0.010284838388516168, - "auto_unstuck_wallet_exposure_threshold": 0.32625544210811896, - "backwards_tp": true, - "ddown_factor": 2.8214869919468186, - "ema_span_0": 577.6715931946267, - "ema_span_1": 5.117325556913231, - "enabled": true, - "initial_eprice_ema_dist": -0.008112104945327653, - "initial_qty_pct": 0.013072529157739826, - "markup_range": 0.0, - "min_markup": 0.0019828730791326995, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01792890937176877, - "rentry_pprice_dist_wallet_exposure_weighting": 5.573245451847114, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XMRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XMRUSDT.json deleted file mode 100644 index efe908ffd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 669.507448232969, - "auto_unstuck_ema_dist": -0.03876313584379187, - "auto_unstuck_qty_pct": 0.018229761837095373, - "auto_unstuck_wallet_exposure_threshold": 0.10592055692399735, - "backwards_tp": true, - "ddown_factor": 1.1420248672491837, - "ema_span_0": 747.6948312229156, - "ema_span_1": 218.1233167853832, - "enabled": true, - "initial_eprice_ema_dist": -0.05035240972295293, - "initial_qty_pct": 0.019075937291343038, - "markup_range": 0.001259421481073271, - "min_markup": 0.004314856470824829, - "n_close_orders": 6, - "rentry_pprice_dist": 0.025806206276937582, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9095527129623133, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1136.941273665956, - "auto_unstuck_ema_dist": 0.002985537055555447, - "auto_unstuck_qty_pct": 0.013158891381998565, - "auto_unstuck_wallet_exposure_threshold": 0.12260022091968173, - "backwards_tp": true, - "ddown_factor": 2.075977614731808, - "ema_span_0": 35.41420558957712, - "ema_span_1": 1084.7573265548303, - "enabled": true, - "initial_eprice_ema_dist": -0.003615214935392173, - "initial_qty_pct": 0.01647389815972939, - "markup_range": 0.0010117545281911077, - "min_markup": 0.004368503803812658, - "n_close_orders": 5, - "rentry_pprice_dist": 0.018739182238275483, - "rentry_pprice_dist_wallet_exposure_weighting": 2.102901620921129, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XRPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XRPUSDT.json deleted file mode 100644 index 8fba33e64..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1089.3345127863754, - "auto_unstuck_ema_dist": -0.024165615529870448, - "auto_unstuck_qty_pct": 0.08883836750187048, - "auto_unstuck_wallet_exposure_threshold": 0.1537913623573174, - "backwards_tp": true, - "ddown_factor": 0.11201990706186488, - "ema_span_0": 856.3035855950279, - "ema_span_1": 248.4520879466756, - "enabled": true, - "initial_eprice_ema_dist": 0.0019686942085299724, - "initial_qty_pct": 0.033918419840101584, - "markup_range": 0.008722211932848585, - "min_markup": 0.005301702799370751, - "n_close_orders": 9, - "rentry_pprice_dist": 0.025064030255752184, - "rentry_pprice_dist_wallet_exposure_weighting": 2.051929253542976, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 601.5461403344915, - "auto_unstuck_ema_dist": -0.093948583271769, - "auto_unstuck_qty_pct": 0.020141290270398318, - "auto_unstuck_wallet_exposure_threshold": 0.6285102062415104, - "backwards_tp": true, - "ddown_factor": 2.139539323220088, - "ema_span_0": 1118.7271303320147, - "ema_span_1": 1119.19298959555, - "enabled": true, - "initial_eprice_ema_dist": 0.002688202982078675, - "initial_qty_pct": 0.010478125595273812, - "markup_range": 0.005709309360470786, - "min_markup": 0.004915695415236354, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04495339051427049, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2992504709777802, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XTZUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XTZUSDT.json deleted file mode 100644 index 101258ad6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1230.0298617836065, - "auto_unstuck_ema_dist": -0.07631519469708485, - "auto_unstuck_qty_pct": 0.010101965799754439, - "auto_unstuck_wallet_exposure_threshold": 0.6305157372848166, - "backwards_tp": true, - "ddown_factor": 1.3845648670505364, - "ema_span_0": 1233.5356185517371, - "ema_span_1": 1288.578492295326, - "enabled": true, - "initial_eprice_ema_dist": -0.0004850696307421992, - "initial_qty_pct": 0.01371188919061523, - "markup_range": 0.004582307946495453, - "min_markup": 0.007809057586636195, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03571593665267086, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5501944292537257, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1032.4864133913316, - "auto_unstuck_ema_dist": -0.02516923323308295, - "auto_unstuck_qty_pct": 0.06107145297983496, - "auto_unstuck_wallet_exposure_threshold": 0.14820312052117576, - "backwards_tp": true, - "ddown_factor": 0.8290876274286235, - "ema_span_0": 1396.7851667943723, - "ema_span_1": 1325.4779938728543, - "enabled": true, - "initial_eprice_ema_dist": -0.009449266384309304, - "initial_qty_pct": 0.01839575214212803, - "markup_range": 0.005144827305287065, - "min_markup": 0.003379994098355331, - "n_close_orders": 3, - "rentry_pprice_dist": 0.023096469820123817, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6410528731368643, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XVSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XVSUSDT.json deleted file mode 100644 index bf5d4cd3f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1005.9764255117444, - "auto_unstuck_ema_dist": -0.02527871383434574, - "auto_unstuck_qty_pct": 0.016319595431852484, - "auto_unstuck_wallet_exposure_threshold": 0.7302389116575592, - "backwards_tp": true, - "ddown_factor": 0.11316946876798886, - "ema_span_0": 487.4689773538222, - "ema_span_1": 273.695426801299, - "enabled": true, - "initial_eprice_ema_dist": -0.06907314696250821, - "initial_qty_pct": 0.013992561351949234, - "markup_range": 0.005100744511658945, - "min_markup": 0.00674490457090242, - "n_close_orders": 15, - "rentry_pprice_dist": 0.03114698956136648, - "rentry_pprice_dist_wallet_exposure_weighting": 3.908216177093718, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1032.4864133913316, - "auto_unstuck_ema_dist": -0.02516923323308295, - "auto_unstuck_qty_pct": 0.06107145297983496, - "auto_unstuck_wallet_exposure_threshold": 0.14820312052117576, - "backwards_tp": true, - "ddown_factor": 0.8290876274286235, - "ema_span_0": 1396.7851667943723, - "ema_span_1": 1325.4779938728543, - "enabled": true, - "initial_eprice_ema_dist": -0.009449266384309304, - "initial_qty_pct": 0.01839575214212803, - "markup_range": 0.005144827305287065, - "min_markup": 0.003379994098355331, - "n_close_orders": 3, - "rentry_pprice_dist": 0.023096469820123817, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6410528731368643, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/YFIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/YFIUSDT.json deleted file mode 100644 index 3739df741..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.5780116781566, - "auto_unstuck_ema_dist": -0.010533630915170723, - "auto_unstuck_qty_pct": 0.02501217133656904, - "auto_unstuck_wallet_exposure_threshold": 0.7487289036179982, - "backwards_tp": true, - "ddown_factor": 1.605453390144733, - "ema_span_0": 595.5254272296077, - "ema_span_1": 22.15894968181761, - "enabled": true, - "initial_eprice_ema_dist": -0.07656154588902128, - "initial_qty_pct": 0.010049153736021913, - "markup_range": 0.0011940584557397973, - "min_markup": 0.00416616360591481, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02212516964130459, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2324477374846932, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1351.409112632209, - "auto_unstuck_ema_dist": -0.0701359042635428, - "auto_unstuck_qty_pct": 0.013408174481071533, - "auto_unstuck_wallet_exposure_threshold": 0.21969197827235915, - "backwards_tp": true, - "ddown_factor": 1.6802064160435088, - "ema_span_0": 169.31634910878358, - "ema_span_1": 133.2434267475734, - "enabled": true, - "initial_eprice_ema_dist": -0.09992789635011451, - "initial_qty_pct": 0.016904843802105853, - "markup_range": 0.003164242952791671, - "min_markup": 0.0021661158743195986, - "n_close_orders": 2, - "rentry_pprice_dist": 0.034595924185436285, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6355492818121722, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZECUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZECUSDT.json deleted file mode 100644 index b900fdf60..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 572.3076211958095, - "auto_unstuck_ema_dist": -0.017559139584635203, - "auto_unstuck_qty_pct": 0.06453193338994222, - "auto_unstuck_wallet_exposure_threshold": 0.11978842558021952, - "backwards_tp": true, - "ddown_factor": 0.33883483890299987, - "ema_span_0": 842.8973602500458, - "ema_span_1": 1269.275776532485, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999257804275443, - "initial_qty_pct": 0.014523003353831245, - "markup_range": 0.007300823310202564, - "min_markup": 0.008760316773959184, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03840674004834948, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4591721757635893, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 797.0347847268555, - "auto_unstuck_ema_dist": -0.00305653374017019, - "auto_unstuck_qty_pct": 0.023449935983428333, - "auto_unstuck_wallet_exposure_threshold": 0.6602385992955259, - "backwards_tp": true, - "ddown_factor": 0.5331102866411135, - "ema_span_0": 1367.253382237758, - "ema_span_1": 624.7931570803265, - "enabled": true, - "initial_eprice_ema_dist": -0.008627186422771155, - "initial_qty_pct": 0.014854210381528047, - "markup_range": 0.004209787989222997, - "min_markup": 0.004040674109366223, - "n_close_orders": 4, - "rentry_pprice_dist": 0.01559591043789603, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2487971852856212, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZENUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZENUSDT.json deleted file mode 100644 index 140320e2d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1176.7620267012887, - "auto_unstuck_ema_dist": -0.021587253347274727, - "auto_unstuck_qty_pct": 0.07557503308667675, - "auto_unstuck_wallet_exposure_threshold": 0.11342391555404374, - "backwards_tp": true, - "ddown_factor": 0.6664068439455119, - "ema_span_0": 435.81942308675184, - "ema_span_1": 751.5832397987314, - "enabled": true, - "initial_eprice_ema_dist": -0.0034814065832225304, - "initial_qty_pct": 0.012391170020065588, - "markup_range": 0.012509541729222313, - "min_markup": 0.009209109060756008, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03435999360930904, - "rentry_pprice_dist_wallet_exposure_weighting": 3.450320998982246, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1331.581739508667, - "auto_unstuck_ema_dist": -0.0895857921693148, - "auto_unstuck_qty_pct": 0.017055090155035296, - "auto_unstuck_wallet_exposure_threshold": 0.16718970868617195, - "backwards_tp": true, - "ddown_factor": 0.8636202976918781, - "ema_span_0": 1268.8193577152765, - "ema_span_1": 1406.7360802569547, - "enabled": true, - "initial_eprice_ema_dist": 0.002992266668504045, - "initial_qty_pct": 0.023186356354383163, - "markup_range": 0.02744240403264854, - "min_markup": 0.00807348272065401, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03410951604872415, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2346987184076035, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZILUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZILUSDT.json deleted file mode 100644 index e2a4c627c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.996979400655, - "auto_unstuck_ema_dist": -0.005095945747115762, - "auto_unstuck_qty_pct": 0.010437833694009597, - "auto_unstuck_wallet_exposure_threshold": 0.43353055026998355, - "backwards_tp": true, - "ddown_factor": 1.9836144046390243, - "ema_span_0": 1076.0545519374782, - "ema_span_1": 638.5290090706092, - "enabled": true, - "initial_eprice_ema_dist": 0.0014032922034565858, - "initial_qty_pct": 0.016290328963882807, - "markup_range": 0.002817224975068753, - "min_markup": 0.0036817614702290904, - "n_close_orders": 3, - "rentry_pprice_dist": 0.02371655061670369, - "rentry_pprice_dist_wallet_exposure_weighting": 2.823869714891594, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 759.7092354986778, - "auto_unstuck_ema_dist": 0.0016741419562353332, - "auto_unstuck_qty_pct": 0.056866036777620164, - "auto_unstuck_wallet_exposure_threshold": 0.6685459317083094, - "backwards_tp": true, - "ddown_factor": 0.8342487851458049, - "ema_span_0": 1033.5345838542275, - "ema_span_1": 503.02104388707306, - "enabled": true, - "initial_eprice_ema_dist": -0.06776634583419447, - "initial_qty_pct": 0.011870794577531872, - "markup_range": 2.727638256273112e-06, - "min_markup": 0.004941441902873034, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02761745664847703, - "rentry_pprice_dist_wallet_exposure_weighting": 0.011306626174140131, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZRXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZRXUSDT.json deleted file mode 100644 index c46457bf1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1024.635269677821, - "auto_unstuck_ema_dist": -0.01079673464404816, - "auto_unstuck_qty_pct": 0.0313270735466322, - "auto_unstuck_wallet_exposure_threshold": 0.3175653732577625, - "backwards_tp": true, - "ddown_factor": 1.9623948694973792, - "ema_span_0": 1402.6051930867197, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012486454595441595, - "markup_range": 0.002492330599722439, - "min_markup": 0.004568003581154552, - "n_close_orders": 2, - "rentry_pprice_dist": 0.02411006929798913, - "rentry_pprice_dist_wallet_exposure_weighting": 5.3877961963385115, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1100.0105253924887, - "auto_unstuck_ema_dist": 0.0029998061414655158, - "auto_unstuck_qty_pct": 0.014634156806039262, - "auto_unstuck_wallet_exposure_threshold": 0.10768322377404635, - "backwards_tp": true, - "ddown_factor": 1.1975596898858438, - "ema_span_0": 1308.6994057151126, - "ema_span_1": 1401.3869679963714, - "enabled": true, - "initial_eprice_ema_dist": -0.003645760813150341, - "initial_qty_pct": 0.01944901052347368, - "markup_range": 0.011664229110258, - "min_markup": 0.0066255213043039645, - "n_close_orders": 3, - "rentry_pprice_dist": 0.038543582685765326, - "rentry_pprice_dist_wallet_exposure_weighting": 4.479452037240159, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/metrics_recursive_grid_2023-09-11.txt b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/metrics_recursive_grid_2023-09-11.txt deleted file mode 100644 index 32e9b5587..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-09-11/metrics_recursive_grid_2023-09-11.txt +++ /dev/null @@ -1,419 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-09-11 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| SUIUSDT | 0.002447 | 0.002559 | 0.07995 | 0.05058 | 34.52 | 0.009124 | 0.01339 | 0.1221 | 0.03678 | 129.29 | 1297211.49755 | -| 1000PEPEUSDT | 0.002324 | 0.003604 | 0.1085 | 0.07101 | 57.63 | 0.01776 | 0.0239 | 0.1385 | 0.01585 | 127.29 | 1297211.49768 | -| SOLUSDT | 0.00227 | 0.003551 | 0.07365 | 0.04836 | 63.48 | 0.01257 | 0.01961 | 0.1255 | 0.01996 | 1091.67 | 1297211.49773 | -| LEVERUSDT | 0.002137 | 0.001471 | 0.1379 | 0.05454 | 81.62 | 0.01341 | 0.01376 | 0.08354 | 0.08309 | 163.46 | 1297211.49786 | -| STXUSDT | 0.002048 | 0.001783 | 0.03665 | 0.01206 | 92.6 | 0.01183 | 0.01165 | 0.07159 | 0.003386 | 200.38 | 1297211.49795 | -| HBARUSDT | 0.001971 | 0.003268 | 0.1013 | 0.05758 | 141.4 | 0.01148 | 0.01877 | 0.1266 | 0.06826 | 906.67 | 1297211.49803 | -| AMBUSDT | 0.001827 | 0.00168 | 0.1213 | 0.03823 | 86.85 | 0.01971 | 0.02234 | 0.1405 | 0.02491 | 163.46 | 1297211.49817 | -| MKRUSDT | 0.00166 | 0.002189 | 0.1091 | 0.03645 | 79.42 | 0.0116 | 0.01651 | 0.1309 | 0.07034 | 1123.67 | 1297211.49834 | -| NKNUSDT | 0.001661 | 0.002991 | 0.1175 | 0.03051 | 116.5 | 0.01554 | 0.02055 | 0.1392 | 0.03676 | 883.67 | 1297211.49834 | -| UNFIUSDT | 0.001648 | 0.002552 | 0.09486 | 0.01586 | 118.8 | 0.01889 | 0.01939 | 0.136 | 0.01701 | 932.67 | 1297211.49835 | -| 1000LUNCUSDT | 0.001573 | 0.002371 | 0.07969 | 0.007411 | 140.0 | 0.01063 | 0.01177 | 0.08233 | 0.02412 | 365.42 | 1297211.49843 | -| GRTUSDT | 0.00156 | 0.003402 | 0.09295 | 0.03519 | 120.6 | 0.01347 | 0.02044 | 0.1368 | 0.03722 | 994.67 | 1297211.49844 | -| WAVESUSDT | 0.001559 | 0.001838 | 0.04965 | 0.0313 | 81.62 | 0.01345 | 0.01934 | 0.1369 | 0.01697 | 1124.67 | 1297211.49844 | -| CHZUSDT | 0.001541 | 0.002381 | 0.04148 | 0.02734 | 143.9 | 0.01003 | 0.01837 | 0.1148 | 0.03664 | 961.67 | 1297211.49846 | -| TOMOUSDT | 0.001534 | 0.001873 | 0.07208 | 0.02049 | 129.2 | 0.018 | 0.01955 | 0.1486 | 0.02059 | 1063.67 | 1297211.49847 | -| ASTRUSDT | 0.001523 | 0.001518 | 0.06284 | 0.01363 | 58.17 | 0.01103 | 0.008043 | 0.0412 | 0.004006 | 207.88 | 1297211.49848 | -| GMXUSDT | 0.001505 | 0.001027 | 0.1118 | 0.08581 | 56.92 | 0.01198 | 0.01352 | 0.08105 | 0.04561 | 204.38 | 1297211.49849 | -| FETUSDT | 0.001499 | 0.002045 | 0.09583 | 0.04663 | 74.05 | 0.01262 | 0.01501 | 0.105 | 0.04391 | 235.88 | 1297211.4985 | -| MATICUSDT | 0.001497 | 0.004421 | 0.09947 | 0.07699 | 83.67 | 0.01286 | 0.02137 | 0.1264 | 0.02513 | 1053.67 | 1297211.4985 | -| DOGEUSDT | 0.001487 | 0.003708 | 0.06308 | 0.02865 | 83.82 | 0.00662 | 0.01266 | 0.08206 | 0.06119 | 1157.58 | 1297211.49851 | -| MTLUSDT | 0.001479 | 0.002016 | 0.08324 | 0.04387 | 128.6 | 0.01716 | 0.02283 | 0.1437 | 0.08929 | 892.67 | 1297211.49852 | -| OMGUSDT | 0.001463 | 0.002467 | 0.1224 | 0.08661 | 127.8 | 0.01631 | 0.0241 | 0.1492 | 0.05392 | 1165.58 | 1297211.49854 | -| HOTUSDT | 0.001456 | 0.003891 | 0.08837 | 0.05212 | 141.8 | 0.01128 | 0.01657 | 0.09839 | 0.01049 | 893.67 | 1297211.49854 | -| YFIUSDT | 0.001456 | 0.005509 | 0.1009 | 0.06945 | 72.0 | 0.01053 | 0.01709 | 0.1334 | 0.05885 | 1105.67 | 1297211.49854 | -| COTIUSDT | 0.001464 | 0.003063 | 0.1221 | 0.07137 | 116.0 | 0.01756 | 0.02015 | 0.1394 | 0.0319 | 913.67 | 1297211.49854 | -| ALPHAUSDT | 0.00145 | 0.002946 | 0.07821 | 0.04066 | 119.5 | 0.01566 | 0.02205 | 0.1407 | 0.03127 | 1020.67 | 1297211.49855 | -| SKLUSDT | 0.001452 | 0.002937 | 0.09002 | 0.04682 | 141.1 | 0.01698 | 0.02157 | 0.1428 | 0.02012 | 1005.67 | 1297211.49855 | -| LINAUSDT | 0.001434 | 0.002052 | 0.06327 | 0.04237 | 95.93 | 0.01721 | 0.02378 | 0.1491 | 0.03112 | 904.67 | 1297211.49857 | -| BLURUSDT | 0.001421 | 0.001753 | 0.1149 | 0.07869 | 123.3 | 0.01471 | 0.02411 | 0.1366 | 0.04812 | 134.46 | 1297211.49858 | -| ATOMUSDT | 0.001407 | 0.003049 | 0.1185 | 0.07075 | 86.97 | 0.01096 | 0.02157 | 0.1495 | 0.03655 | 1311.46 | 1297211.49859 | -| RLCUSDT | 0.001401 | 0.00327 | 0.06409 | 0.03519 | 112.0 | 0.01372 | 0.01503 | 0.09694 | 0.01355 | 1136.67 | 1297211.4986 | -| 1000SHIBUSDT | 0.001369 | 0.003413 | 0.05204 | 0.0244 | 65.68 | 0.008444 | 0.01547 | 0.131 | 0.01415 | 852.25 | 1297211.49863 | -| AAVEUSDT | 0.001351 | 0.003138 | 0.08175 | 0.04986 | 120.0 | 0.01427 | 0.02116 | 0.1465 | 0.08625 | 1059.67 | 1297211.49865 | -| BELUSDT | 0.001323 | 0.00236 | 0.09664 | 0.05395 | 120.3 | 0.01669 | 0.01846 | 0.1406 | 0.02069 | 1025.67 | 1297211.49868 | -| OPUSDT | 0.001325 | 0.002288 | 0.1382 | 0.08979 | 51.02 | 0.01701 | 0.02381 | 0.1326 | 0.06069 | 465.38 | 1297211.49868 | -| AGIXUSDT | 0.001309 | 0.001867 | 0.1186 | 0.06531 | 102.1 | 0.01503 | 0.02153 | 0.1476 | 0.07134 | 205.38 | 1297211.49869 | -| RNDRUSDT | 0.001305 | 0.003024 | 0.06359 | 0.03007 | 45.48 | 0.008561 | 0.007717 | 0.05313 | 0.006407 | 218.88 | 1297211.4987 | -| CELRUSDT | 0.001281 | 0.002734 | 0.1155 | 0.03544 | 135.9 | 0.01773 | 0.01944 | 0.1497 | 0.02616 | 894.67 | 1297211.49872 | -| DOTUSDT | 0.001273 | 0.003203 | 0.1438 | 0.08586 | 129.5 | 0.01156 | 0.01826 | 0.1233 | 0.04477 | 1114.67 | 1297211.49873 | -| PHBUSDT | 0.001256 | 0.001563 | 0.1227 | 0.06755 | 119.0 | 0.0193 | 0.02401 | 0.1387 | 0.0954 | 205.38 | 1297211.49874 | -| RDNTUSDT | 0.001259 | 0.001206 | 0.04789 | 0.02487 | 85.82 | 0.01388 | 0.01472 | 0.08978 | 0.007744 | 157.46 | 1297211.49874 | -| MANAUSDT | 0.001252 | 0.002595 | 0.06458 | 0.04026 | 143.2 | 0.01028 | 0.01783 | 0.1154 | 0.008115 | 908.67 | 1297211.49875 | -| COMPUSDT | 0.001253 | 0.001966 | 0.101 | 0.05888 | 81.88 | 0.01391 | 0.01825 | 0.1174 | 0.03462 | 1167.58 | 1297211.49875 | -| ANKRUSDT | 0.001239 | 0.00226 | 0.06744 | 0.04625 | 121.5 | 0.0105 | 0.01993 | 0.1262 | 0.01973 | 956.67 | 1297211.49876 | -| ALGOUSDT | 0.001243 | 0.002501 | 0.09262 | 0.05272 | 137.1 | 0.01557 | 0.0199 | 0.1468 | 0.04748 | 1181.58 | 1297211.49876 | -| INJUSDT | 0.001232 | 0.00172 | 0.1239 | 0.07382 | 115.3 | 0.01606 | 0.02111 | 0.1198 | 0.05589 | 388.88 | 1297211.49877 | -| RVNUSDT | 0.001231 | 0.002522 | 0.09826 | 0.02486 | 126.3 | 0.01149 | 0.01617 | 0.1104 | 0.07011 | 928.67 | 1297211.49877 | -| XRPUSDT | 0.001234 | 0.00247 | 0.09773 | 0.02298 | 98.75 | 0.01119 | 0.01931 | 0.1391 | 0.06801 | 1343.62 | 1297211.49877 | -| HIGHUSDT | 0.001189 | 0.001955 | 0.09893 | 0.03296 | 66.82 | 0.0179 | 0.01633 | 0.09751 | 0.01157 | 214.88 | 1297211.49881 | -| SNXUSDT | 0.001184 | 0.002153 | 0.0919 | 0.04465 | 88.57 | 0.01477 | 0.02083 | 0.1248 | 0.02173 | 1122.67 | 1297211.49882 | -| SUSHIUSDT | 0.001179 | 0.002895 | 0.06122 | 0.03759 | 127.9 | 0.01574 | 0.0213 | 0.1402 | 0.02167 | 1101.67 | 1297211.49882 | -| LRCUSDT | 0.001168 | 0.002741 | 0.1091 | 0.05816 | 97.2 | 0.01306 | 0.0189 | 0.1434 | 0.05753 | 1056.67 | 1297211.49883 | -| OCEANUSDT | 0.001165 | 0.001944 | 0.08433 | 0.02042 | 120.9 | 0.01784 | 0.01844 | 0.1145 | 0.02604 | 1040.67 | 1297211.49883 | -| ENJUSDT | 0.001141 | 0.002596 | 0.1043 | 0.06644 | 108.0 | 0.01435 | 0.02398 | 0.143 | 0.03677 | 1076.67 | 1297211.49886 | -| 1INCHUSDT | 0.00114 | 0.002006 | 0.06398 | 0.03195 | 141.7 | 0.015 | 0.02005 | 0.1399 | 0.01005 | 988.54 | 1297211.49886 | -| CHRUSDT | 0.00113 | 0.002473 | 0.08423 | 0.03003 | 100.4 | 0.01326 | 0.01547 | 0.1037 | 0.06011 | 911.67 | 1297211.49887 | -| FXSUSDT | 0.001123 | 0.001481 | 0.09467 | 0.05046 | 90.97 | 0.01788 | 0.02096 | 0.1296 | 0.07157 | 232.83 | 1297211.49888 | -| OGNUSDT | 0.001118 | 0.002 | 0.04669 | 0.0279 | 52.58 | 0.01033 | 0.02465 | 0.1478 | 0.06425 | 891.67 | 1297211.49888 | -| XVSUSDT | 0.001101 | 0.0007833 | 0.07014 | 0.01556 | 80.72 | 0.01635 | 0.01404 | 0.08823 | 0.06994 | 149.88 | 1297211.4989 | -| THETAUSDT | 0.001104 | 0.002687 | 0.08307 | 0.04154 | 81.68 | 0.01158 | 0.016 | 0.1296 | 0.01897 | 1201.62 | 1297211.4989 | -| BANDUSDT | 0.00108 | 0.002328 | 0.05958 | 0.01906 | 111.5 | 0.01684 | 0.01723 | 0.1235 | 0.009906 | 1138.67 | 1297211.49892 | -| SANDUSDT | 0.00108 | 0.002645 | 0.07099 | 0.03576 | 86.85 | 0.01215 | 0.01654 | 0.1264 | 0.02089 | 957.67 | 1297211.49892 | -| SFPUSDT | 0.001077 | 0.002516 | 0.05942 | 0.0375 | 135.4 | 0.01465 | 0.02037 | 0.1294 | 0.01964 | 927.67 | 1297211.49892 | -| RADUSDT | 0.001067 | 0.001285 | 0.07984 | 0.01531 | 58.88 | 0.01067 | 0.01133 | 0.09662 | 0.03895 | 122.46 | 1297211.49893 | -| HOOKUSDT | 0.001074 | 0.001369 | 0.1189 | 0.07577 | 104.1 | 0.01986 | 0.02607 | 0.1447 | 0.05733 | 229.83 | 1297211.49893 | -| ICPUSDT | 0.001071 | 0.001283 | 0.1256 | 0.02012 | 120.7 | 0.01167 | 0.01174 | 0.06673 | 0.07727 | 347.88 | 1297211.49893 | -| KSMUSDT | 0.001066 | 0.001644 | 0.05101 | 0.03218 | 88.43 | 0.01297 | 0.01646 | 0.105 | 0.01883 | 1061.67 | 1297211.49893 | -| GALAUSDT | 0.00106 | 0.001807 | 0.05402 | 0.03394 | 94.67 | 0.00866 | 0.01089 | 0.06724 | 0.07138 | 721.83 | 1297211.49894 | -| LQTYUSDT | 0.001058 | 0.002375 | 0.08519 | 0.03383 | 81.7 | 0.01603 | 0.01417 | 0.09871 | 0.008377 | 183.46 | 1297211.49894 | -| ZILUSDT | 0.001057 | 0.002293 | 0.05918 | 0.03257 | 76.0 | 0.009867 | 0.01642 | 0.1011 | 0.01078 | 1179.58 | 1297211.49894 | -| ZENUSDT | 0.001053 | 0.002102 | 0.08219 | 0.01765 | 133.4 | 0.01581 | 0.02017 | 0.147 | 0.08589 | 1019.67 | 1297211.49895 | -| RUNEUSDT | 0.001048 | 0.00264 | 0.07373 | 0.03343 | 133.6 | 0.01295 | 0.02343 | 0.1481 | 0.02501 | 1101.67 | 1297211.49895 | -| ALICEUSDT | 0.001037 | 0.002654 | 0.09238 | 0.03373 | 115.6 | 0.0148 | 0.01623 | 0.1172 | 0.02832 | 907.83 | 1297211.49896 | -| CTKUSDT | 0.001022 | 0.003253 | 0.08475 | 0.03033 | 127.0 | 0.01204 | 0.01653 | 0.1252 | 0.02188 | 1024.67 | 1297211.49898 | -| CRVUSDT | 0.001007 | 0.00209 | 0.04569 | 0.02493 | 126.3 | 0.01722 | 0.02241 | 0.1475 | 0.03297 | 1104.67 | 1297211.49899 | -| MINAUSDT | 0.001007 | 0.00163 | 0.08773 | 0.05302 | 81.05 | 0.01271 | 0.0223 | 0.1346 | 0.03738 | 214.5 | 1297211.49899 | -| IMXUSDT | 0.00101 | 0.001891 | 0.07807 | 0.03336 | 126.9 | 0.01575 | 0.01494 | 0.08236 | 0.05406 | 575.83 | 1297211.49899 | -| ICXUSDT | 0.00101 | 0.001849 | 0.07984 | 0.03977 | 143.2 | 0.0167 | 0.0208 | 0.1422 | 0.07056 | 1090.67 | 1297211.49899 | -| RSRUSDT | 0.0009867 | 0.001606 | 0.06555 | 0.01278 | 139.9 | 0.0184 | 0.017 | 0.1023 | 0.07327 | 1056.67 | 1297211.49901 | -| LDOUSDT | 0.0009884 | 0.001711 | 0.1103 | 0.0474 | 107.4 | 0.01542 | 0.02087 | 0.1471 | 0.04854 | 352.46 | 1297211.49901 | -| LINKUSDT | 0.0009762 | 0.002644 | 0.09461 | 0.04718 | 142.0 | 0.01433 | 0.018 | 0.1432 | 0.03279 | 1332.62 | 1297211.49902 | -| EGLDUSDT | 0.0009721 | 0.002173 | 0.08966 | 0.05122 | 126.8 | 0.01418 | 0.01955 | 0.1386 | 0.0143 | 1091.67 | 1297211.49903 | -| AXSUSDT | 0.0009745 | 0.003351 | 0.1144 | 0.06594 | 105.3 | 0.01758 | 0.02072 | 0.1496 | 0.06164 | 1023.67 | 1297211.49903 | -| BCHUSDT | 0.0009736 | 0.001384 | 0.03431 | 0.01773 | 73.33 | 0.006545 | 0.01071 | 0.06119 | 0.04 | 1348.96 | 1297211.49903 | -| CKBUSDT | 0.0009668 | 0.001382 | 0.07799 | 0.006891 | 124.7 | 0.012 | 0.0115 | 0.06567 | 0.02779 | 193.46 | 1297211.49903 | -| ARBUSDT | 0.0009589 | 0.001271 | 0.04816 | 0.01565 | 132.1 | 0.0106 | 0.01062 | 0.07958 | 0.01496 | 170.33 | 1297211.49904 | -| APEUSDT | 0.0009526 | 0.001601 | 0.06965 | 0.04148 | 129.3 | 0.01539 | 0.01973 | 0.1302 | 0.02499 | 541.33 | 1297211.49905 | -| ADAUSDT | 0.0009487 | 0.001665 | 0.04756 | 0.03852 | 63.27 | 0.008331 | 0.01532 | 0.08991 | 0.04845 | 1318.62 | 1297211.49905 | -| STMXUSDT | 0.0009504 | 0.001676 | 0.07075 | 0.03461 | 135.6 | 0.01507 | 0.02069 | 0.1367 | 0.04683 | 901.67 | 1297211.49905 | -| REEFUSDT | 0.0009465 | 0.001949 | 0.1004 | 0.04652 | 122.5 | 0.01927 | 0.02468 | 0.1483 | 0.0315 | 929.67 | 1297211.49905 | -| HFTUSDT | 0.0009308 | 0.001162 | 0.04646 | 0.01491 | 105.5 | 0.01404 | 0.01524 | 0.09755 | 0.06619 | 156.46 | 1297211.49907 | -| XLMUSDT | 0.0009171 | 0.001922 | 0.0663 | 0.04657 | 84.18 | 0.008464 | 0.02623 | 0.146 | 0.02281 | 1329.62 | 1297211.49908 | -| XEMUSDT | 0.0009109 | 0.001891 | 0.06643 | 0.04096 | 139.1 | 0.01466 | 0.02134 | 0.1427 | 0.01899 | 920.67 | 1297211.49909 | -| QNTUSDT | 0.0009059 | 0.001772 | 0.1213 | 0.08246 | 137.6 | 0.01389 | 0.01751 | 0.1001 | 0.03158 | 324.88 | 1297211.49909 | -| ZRXUSDT | 0.0009137 | 0.001469 | 0.05977 | 0.03163 | 68.27 | 0.01241 | 0.02092 | 0.1358 | 0.056 | 1173.58 | 1297211.49909 | -| AVAXUSDT | 0.0008996 | 0.002563 | 0.04933 | 0.02602 | 74.43 | 0.009887 | 0.01471 | 0.1139 | 0.0185 | 1082.67 | 1297211.4991 | -| SPELLUSDT | 0.000889 | 0.001189 | 0.06359 | 0.04172 | 85.9 | 0.009664 | 0.01375 | 0.08615 | 0.02576 | 368.46 | 1297211.49911 | -| DENTUSDT | 0.0008939 | 0.002118 | 0.0687 | 0.02764 | 113.1 | 0.01277 | 0.01938 | 0.1192 | 0.02754 | 899.79 | 1297211.49911 | -| ONEUSDT | 0.0008906 | 0.001955 | 0.08723 | 0.03423 | 110.8 | 0.01732 | 0.01955 | 0.1478 | 0.06651 | 905.67 | 1297211.49911 | -| IDEXUSDT | 0.0008798 | 0.001062 | 0.08166 | 0.05566 | 59.23 | 0.01089 | 0.01308 | 0.08735 | 0.02237 | 129.46 | 1297211.49912 | -| ETHUSDT | 0.000852 | 0.001975 | 0.07836 | 0.04889 | 95.68 | 0.009386 | 0.01816 | 0.09438 | 0.0161 | 1348.96 | 1297211.49915 | -| UMAUSDT | 0.0008455 | 0.001081 | 0.0762 | 0.009184 | 98.38 | 0.009639 | 0.008851 | 0.05437 | 0.0385 | 122.46 | 1297211.49915 | -| STORJUSDT | 0.0008483 | 0.001349 | 0.03441 | 0.01778 | 101.0 | 0.01435 | 0.02194 | 0.1355 | 0.01246 | 1089.67 | 1297211.49915 | -| QTUMUSDT | 0.0008435 | 0.001602 | 0.09772 | 0.02705 | 124.7 | 0.01671 | 0.01985 | 0.1385 | 0.05321 | 1298.62 | 1297211.49916 | -| EDUUSDT | 0.0008317 | 0.001464 | 0.04367 | 0.008805 | 73.33 | 0.01273 | 0.01041 | 0.04577 | 6.196e-05 | 132.46 | 1297211.49917 | -| FILUSDT | 0.0008341 | 0.001365 | 0.07286 | 0.006959 | 116.2 | 0.01383 | 0.0219 | 0.1416 | 0.0631 | 1059.71 | 1297211.49917 | -| UNIUSDT | 0.000831 | 0.001837 | 0.075 | 0.02988 | 116.7 | 0.01538 | 0.01656 | 0.1209 | 0.009667 | 1087.67 | 1297211.49917 | -| CELOUSDT | 0.000819 | 0.001491 | 0.08602 | 0.04331 | 65.53 | 0.0129 | 0.01908 | 0.1263 | 0.04611 | 712.83 | 1297211.49918 | -| TRUUSDT | 0.000821 | 0.001076 | 0.08268 | 0.01564 | 80.2 | 0.01755 | 0.01758 | 0.11 | 0.03188 | 186.46 | 1297211.49918 | -| XTZUSDT | 0.0007993 | 0.002243 | 0.05473 | 0.03073 | 136.3 | 0.01309 | 0.02072 | 0.139 | 0.02855 | 1312.62 | 1297211.4992 | -| DEFIUSDT | 0.0007819 | 0.001747 | 0.08738 | 0.02834 | 137.3 | 0.01418 | 0.01935 | 0.1435 | 0.08822 | 1108.67 | 1297211.49922 | -| MAGICUSDT | 0.0007781 | 0.001188 | 0.1219 | 0.06473 | 110.7 | 0.01901 | 0.02 | 0.1192 | 0.03928 | 227.83 | 1297211.49922 | -| LTCUSDT | 0.0007772 | 0.001381 | 0.05361 | 0.03658 | 104.5 | 0.01149 | 0.02148 | 0.1419 | 0.02849 | 1340.62 | 1297211.49922 | -| RENUSDT | 0.0007732 | 0.001238 | 0.05544 | 0.00592 | 115.6 | 0.0163 | 0.02333 | 0.1471 | 0.0118 | 1062.67 | 1297211.49923 | -| BLZUSDT | 0.0007747 | 0.001182 | 0.05813 | 0.01137 | 122.8 | 0.01808 | 0.0184 | 0.1107 | 0.09164 | 1088.67 | 1297211.49923 | -| KAVAUSDT | 0.0007572 | 0.001377 | 0.05307 | 0.02775 | 130.5 | 0.01872 | 0.02029 | 0.1142 | 0.0165 | 1139.67 | 1297211.49924 | -| LITUSDT | 0.0007612 | 0.00144 | 0.03633 | 0.01638 | 118.3 | 0.01477 | 0.01387 | 0.06994 | 0.003593 | 933.67 | 1297211.49924 | -| CVXUSDT | 0.0007553 | 0.0008081 | 0.04295 | 0.009929 | 136.6 | 0.01373 | 0.01091 | 0.04409 | 0.0006544 | 352.46 | 1297211.49924 | -| KEYUSDT | 0.0007306 | 0.001843 | 0.04899 | 0.02688 | 61.55 | 0.005256 | 0.01184 | 0.07321 | 0.01104 | 108.46 | 1297211.49927 | -| PERPUSDT | 0.0007282 | 0.0005174 | 0.08111 | 0.05778 | 85.3 | 0.01835 | 0.01852 | 0.1047 | 0.08589 | 187.46 | 1297211.49927 | -| ENSUSDT | 0.0007226 | 0.001616 | 0.1012 | 0.04675 | 93.75 | 0.01304 | 0.01743 | 0.1084 | 0.0266 | 648.83 | 1297211.49928 | -| ACHUSDT | 0.0007032 | 0.001201 | 0.08045 | 0.03468 | 105.2 | 0.01935 | 0.01701 | 0.112 | 0.03173 | 199.38 | 1297211.4993 | -| ZECUSDT | 0.0007004 | 0.001215 | 0.04132 | 0.01031 | 119.6 | 0.01334 | 0.02264 | 0.1371 | 0.05649 | 1313.62 | 1297211.4993 | -| TRBUSDT | 0.0006942 | 0.001497 | 0.0422 | 0.02048 | 143.2 | 0.0163 | 0.01865 | 0.1063 | 0.01203 | 1102.67 | 1297211.49931 | -| IOSTUSDT | 0.0006809 | 0.001519 | 0.06197 | 0.02826 | 138.2 | 0.01348 | 0.01919 | 0.1338 | 0.02269 | 1297.62 | 1297211.49932 | -| VETUSDT | 0.000682 | 0.002038 | 0.06677 | 0.0184 | 119.1 | 0.01498 | 0.01651 | 0.1145 | 0.006712 | 1304.62 | 1297211.49932 | -| FLMUSDT | 0.0006467 | 0.001176 | 0.03962 | 0.01227 | 138.8 | 0.01902 | 0.02333 | 0.1483 | 0.01907 | 1076.67 | 1297211.49935 | -| BALUSDT | 0.0006528 | 0.001166 | 0.02823 | 0.0103 | 142.8 | 0.01285 | 0.01168 | 0.05286 | 0.02077 | 1104.67 | 1297211.49935 | -| 1000FLOKIUSDT | 0.0006492 | 0.001075 | 0.07843 | 0.02507 | 122.3 | 0.01621 | 0.01446 | 0.1014 | 0.03405 | 126.29 | 1297211.49935 | -| IDUSDT | 0.0006532 | 0.001012 | 0.05764 | 0.03399 | 90.07 | 0.01672 | 0.02121 | 0.1484 | 0.04937 | 170.38 | 1297211.49935 | -| ATAUSDT | 0.0006322 | 0.001125 | 0.0376 | 0.009405 | 141.7 | 0.01481 | 0.01228 | 0.05369 | 0.00647 | 739.83 | 1297211.49937 | -| CFXUSDT | 0.0006271 | 0.0009736 | 0.09101 | 0.06785 | 92.63 | 0.01905 | 0.01841 | 0.09971 | 0.05947 | 201.38 | 1297211.49937 | -| TLMUSDT | 0.0006201 | 0.0005552 | 0.06888 | 0.03542 | 142.4 | 0.01761 | 0.01902 | 0.1117 | 0.08852 | 163.46 | 1297211.49938 | -| IOTAUSDT | 0.0005754 | 0.001727 | 0.07677 | 0.008386 | 135.3 | 0.01519 | 0.01548 | 0.1029 | 0.07472 | 1306.62 | 1297211.49942 | -| BNBUSDT | 0.00057 | 0.001833 | 0.04308 | 0.01703 | 119.6 | 0.00754 | 0.01465 | 0.09963 | 0.02907 | 1308.62 | 1297211.49943 | -| SSVUSDT | 0.0005698 | 0.000892 | 0.08753 | 0.02215 | 126.8 | 0.01872 | 0.01846 | 0.1049 | 0.03281 | 197.46 | 1297211.49943 | -| KNCUSDT | 0.0005569 | 0.001035 | 0.05764 | 0.009959 | 141.3 | 0.01967 | 0.02094 | 0.1486 | 0.01757 | 1175.62 | 1297211.49944 | -| API3USDT | 0.0005568 | 0.0009361 | 0.05002 | 0.02537 | 109.6 | 0.01581 | 0.01702 | 0.109 | 0.02731 | 564.83 | 1297211.49944 | -| NEOUSDT | 0.000558 | 0.0009469 | 0.05398 | 0.02561 | 124.3 | 0.01763 | 0.02231 | 0.141 | 0.05056 | 1301.62 | 1297211.49944 | -| XMRUSDT | 0.0005616 | 0.001545 | 0.09157 | 0.04494 | 115.4 | 0.01096 | 0.01722 | 0.1251 | 0.05204 | 1315.62 | 1297211.49944 | -| AUDIOUSDT | 0.0005193 | 0.0009809 | 0.03562 | 0.01003 | 113.5 | 0.01472 | 0.01222 | 0.05595 | 0.004843 | 751.83 | 1297211.49948 | -| WOOUSDT | 0.0005079 | 0.0009421 | 0.05169 | 0.03294 | 67.68 | 0.01627 | 0.01994 | 0.1398 | 0.06744 | 519.83 | 1297211.49949 | -| STGUSDT | 0.0004987 | 0.0008817 | 0.07264 | 0.003176 | 122.5 | 0.01653 | 0.01649 | 0.09931 | 0.008484 | 380.46 | 1297211.4995 | -| APTUSDT | 0.0004709 | 0.0007548 | 0.0495 | 0.02634 | 107.5 | 0.01698 | 0.02055 | 0.1403 | 0.04168 | 325.88 | 1297211.49953 | -| FOOTBALLUSDT | 0.0004736 | 0.0008282 | 0.03577 | 0.003009 | 120.4 | 0.009056 | 0.007648 | 0.04228 | 0.001019 | 373.83 | 1297211.49953 | -| ONTUSDT | 0.0004502 | 0.0008789 | 0.04919 | 0.006787 | 138.7 | 0.0171 | 0.01526 | 0.08384 | 0.009625 | 1307.62 | 1297211.49955 | -| ROSEUSDT | 0.0004253 | 0.0008328 | 0.05145 | 0.03122 | 132.1 | 0.01572 | 0.0147 | 0.08325 | 0.02631 | 617.83 | 1297211.49957 | -| BLUEBIRDUSDT | 0.0004143 | 0.00072 | 0.06779 | 0.05136 | 51.05 | 0.005694 | 0.01114 | 0.062 | 0.04535 | 311.46 | 1297211.49959 | -| TUSDT | 0.0003996 | 0.000519 | 0.03288 | 0.0 | 143.9 | 0.01294 | 0.01115 | 0.05757 | 0.01422 | 220.42 | 1297211.4996 | -| TRXUSDT | 0.0003621 | 0.001665 | 0.06043 | 0.04252 | 130.8 | 0.0102 | 0.01992 | 0.1303 | 0.02804 | 1334.62 | 1297211.49964 | -| DARUSDT | 0.0002215 | 0.0009397 | 0.07228 | 0.0309 | 143.3 | 0.01713 | 0.0173 | 0.08893 | 0.06611 | 498.83 | 1297211.49978 | -| CVCUSDT | 0.0001747 | 0.001111 | 0.02957 | 0.01804 | 62.37 | 0.01442 | 0.01976 | 0.09644 | 0.09373 | 1032.67 | 1297211.49983 | -| COCOSUSDT | 0.0001639 | 0.001639 | 0.06199 | 0.0474 | 24.7 | 0.01377 | 0.01855 | 0.08259 | 0.01412 | 200.38 | 1297211.49984 | -| SCUSDT | 8.94e-05 | 0.000894 | 0.01261 | 0.005346 | 47.85 | 0.01352 | 0.01718 | 0.05806 | 0.02491 | 880.67 | 1297211.49991 | -| FTTUSDT | 6.26e-05 | 0.000626 | 0.01676 | 0.0006499 | 123.0 | 0.01966 | 0.02382 | 0.08122 | 0.003715 | 512.83 | 1297211.49994 | -| USDCUSDT | 1.048e-07 | 1.048e-06 | 0.01847 | 0.0 | 53.58 | 0.002322 | 0.001027 | 0.009395 | 0.0 | 181.25 | 1297211.5 | -| BTCSTUSDT | 3.559e-06 | 3.559e-05 | 0.00945 | 0.0 | 6.733 | 0.001678 | 0.0006855 | 0.005876 | 0.0 | 919.67 | 1297211.5 | -| DYDXUSDT | 0.0005045 | 0.0009768 | 0.07341 | 0.01273 | 140.9 | 0.02032 | 0.02087 | 0.1315 | 0.02834 | 729.83 | 1297214.74158 | -| JOEUSDT | 0.0006848 | 0.0009989 | 0.1578 | 0.06003 | 129.6 | 0.02483 | 0.02269 | 0.1207 | 0.09468 | 164.46 | 1297259.91423 | -| BTSUSDT | 8.886e-05 | 0.0007855 | 0.2177 | 0.008152 | 111.1 | 0.04117 | 0.02843 | 0.1522 | 0.03717 | 950.67 | 1299629.57785 | -| LUNA2USDT | 0.0005035 | 0.0007444 | 0.03949 | 0.01222 | 108.8 | 0.01253 | 0.02103 | 0.1528 | 0.08704 | 364.83 | 1299964.27538 | -| BTCUSDT | 0.0003612 | 0.000786 | 0.08221 | 0.01717 | 147.3 | 0.009457 | 0.008804 | 0.06013 | 0.03221 | 1348.96 | 1300511.49964 | -| GALUSDT | 0.0004704 | 0.001245 | 0.09155 | 0.06389 | 148.9 | 0.02157 | 0.02723 | 0.1511 | 0.07619 | 492.38 | 1303239.33937 | -| DUSKUSDT | 0.0005138 | 0.0009174 | 0.07417 | 0.03847 | 115.9 | 0.02208 | 0.0272 | 0.1592 | 0.07722 | 610.83 | 1306416.5291 | -| FTMUSDT | 0.0009588 | 0.002012 | 0.05401 | 0.01487 | 154.1 | 0.01662 | 0.01981 | 0.1328 | 0.07773 | 1081.67 | 1307344.83237 | -| DASHUSDT | 0.0006321 | 0.001228 | 0.06963 | 0.01711 | 154.5 | 0.01497 | 0.01826 | 0.1288 | 0.02672 | 1314.62 | 1307678.16603 | -| ARPAUSDT | 0.0007479 | 0.0008697 | 0.03853 | 0.01453 | 134.7 | 0.01528 | 0.02218 | 0.1608 | 0.02135 | 690.83 | 1308020.38872 | -| ARUSDT | 0.0005027 | 0.0009631 | 0.04838 | 0.02411 | 156.1 | 0.01714 | 0.01805 | 0.1176 | 0.02221 | 711.83 | 1309294.83283 | -| JASMYUSDT | 0.0005488 | 0.000867 | 0.02532 | 0.002133 | 156.8 | 0.01436 | 0.01133 | 0.04805 | 0.001497 | 507.83 | 1309994.83278 | -| HNTUSDT | 0.0003146 | 0.001171 | 0.04843 | 0.02583 | 76.17 | 0.01529 | 0.02337 | 0.1694 | 0.02347 | 1077.67 | 1316655.01213 | -| NEARUSDT | 0.0005285 | 0.001217 | 0.05207 | 0.02978 | 164.5 | 0.01774 | 0.01969 | 0.1261 | 0.04016 | 1060.62 | 1317744.8328 | -| ANTUSDT | 0.0004851 | 0.0007997 | 0.06771 | 0.005495 | 150.1 | 0.018 | 0.0262 | 0.1661 | 0.01629 | 621.79 | 1319375.47139 | -| 1000XECUSDT | 0.0004388 | 0.0006616 | 0.05974 | 0.01718 | 167.9 | 0.01727 | 0.01706 | 0.09769 | 0.07148 | 722.83 | 1321128.16623 | -| SXPUSDT | 0.0008009 | 0.002971 | 0.03796 | 0.01523 | 169.0 | 0.01498 | 0.01269 | 0.06058 | 0.008174 | 1146.58 | 1322228.16587 | -| PEOPLEUSDT | 0.000432 | 0.001152 | 0.05618 | 0.03421 | 107.2 | 0.01844 | 0.02661 | 0.1831 | 0.05006 | 624.79 | 1330337.92324 | -| DGBUSDT | 0.0009765 | 0.001859 | 0.1053 | 0.02934 | 182.7 | 0.0128 | 0.01998 | 0.1402 | 0.07955 | 871.83 | 1335894.83236 | -| MASKUSDT | 0.0006944 | 0.001255 | 0.08519 | 0.06217 | 147.9 | 0.02135 | 0.03019 | 0.1878 | 0.0558 | 743.83 | 1338953.82315 | -| BATUSDT | 0.0007547 | 0.001542 | 0.1156 | 0.01519 | 203.1 | 0.01986 | 0.02199 | 0.131 | 0.0692 | 1305.62 | 1356344.83258 | -| IOTXUSDT | 0.0003525 | 0.0006641 | 0.07606 | 0.02465 | 173.1 | 0.02151 | 0.0258 | 0.1861 | 0.06668 | 758.83 | 1362349.14314 | -| BTCDOMUSDT | 6.605e-05 | 0.0001247 | 0.04989 | 0.01737 | 221.6 | 0.008155 | 0.006568 | 0.03542 | 0.04017 | 810.83 | 1374844.83327 | -| EOSUSDT | 0.000491 | 0.001026 | 0.03188 | 0.004689 | 227.4 | 0.01185 | 0.01346 | 0.0801 | 0.03565 | 1341.62 | 1380578.16618 | -| ETCUSDT | 0.0004309 | 0.0009752 | 0.03418 | 0.01328 | 227.4 | 0.01511 | 0.02163 | 0.1427 | 0.01075 | 1333.62 | 1380594.8329 | -| BNXUSDT | 0.000687 | 0.001034 | 0.1319 | 0.07501 | 111.6 | 0.02541 | 0.03953 | 0.2209 | 0.1064 | 199.38 | 1433447.73159 | -| CTSIUSDT | 0.0005696 | 0.0008729 | 0.06213 | 0.00591 | 297.4 | 0.01665 | 0.02288 | 0.1382 | 0.01493 | 683.83 | 1450628.1661 | -| C98USDT | 0.0007902 | 0.001055 | 0.07004 | 0.03208 | 151.1 | 0.02386 | 0.03792 | 0.2315 | 0.1136 | 746.83 | 1522240.12163 | -| FLOWUSDT | 0.0004015 | 0.0005344 | 0.09033 | 0.02499 | 257.4 | 0.02562 | 0.03506 | 0.2751 | 0.1028 | 576.83 | 1563899.01817 | -| LPTUSDT | 0.0007749 | 0.0009221 | 0.1292 | 0.05858 | 255.9 | 0.02553 | 0.04243 | 0.2928 | 0.1033 | 667.83 | 1585803.17192 | -| GTCUSDT | 0.0004945 | 0.0008793 | 0.1367 | 0.04949 | 433.4 | 0.02856 | 0.04067 | 0.2828 | 0.1194 | 820.83 | 1914816.05065 | -| BAKEUSDT | 0.0004722 | 0.000865 | 0.1449 | 0.04978 | 271.0 | 0.03282 | 0.04475 | 0.2502 | 0.1576 | 843.67 | 2101842.87603 | -| GMTUSDT | 0.0003051 | 0.0007622 | 0.09776 | 0.02444 | 159.0 | 0.02413 | 0.03529 | 0.2294 | 0.265 | 543.79 | 3042300.22342 | -| RAYUSDT | 3.64e-05 | 0.0005041 | 0.478 | 0.4632 | 81.28 | 0.4443 | 0.4284 | 1.007 | 0.3983 | 750.83 | 5180686.2216 | -| SRMUSDT | 3.688e-05 | 0.0004808 | 0.1389 | 0.08943 | 265.4 | 0.05575 | 0.1024 | 0.5296 | 0.4711 | 1100.88 | 5516647.34979 | -| KLAYUSDT | 0.0002547 | 0.0001729 | 0.08865 | 0.02448 | 184.3 | 0.02609 | 0.04583 | 0.2811 | 0.6219 | 697.83 | 6689112.34192 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| PERPUSDT | 0.01127 | 0.002862 | 0.03469 | 0.008667 | 97.43 | 0.01378 | 0.01078 | 0.04259 | 0.0001988 | 187.46 | 1297211.48873 | -| LEVERUSDT | 0.006379 | 0.003886 | 0.05186 | 0.02217 | 75.67 | 0.01022 | 0.009923 | 0.05087 | 0.001586 | 163.46 | 1297211.49362 | -| AMBUSDT | 0.004714 | 0.00393 | 0.06739 | 0.03109 | 66.03 | 0.009981 | 0.01804 | 0.1351 | 0.02659 | 163.46 | 1297211.49529 | -| IDEXUSDT | 0.003686 | 0.001965 | 0.06245 | 0.02992 | 49.33 | 0.008777 | 0.009608 | 0.06052 | 0.02887 | 129.46 | 1297211.49631 | -| STMXUSDT | 0.003587 | 0.002881 | 0.09926 | 0.06705 | 118.0 | 0.0168 | 0.02044 | 0.1198 | 0.02966 | 901.67 | 1297211.49641 | -| BLURUSDT | 0.003584 | 0.004139 | 0.1406 | 0.09232 | 123.6 | 0.008676 | 0.01142 | 0.07435 | 0.01571 | 134.46 | 1297211.49642 | -| TRUUSDT | 0.003288 | 0.003776 | 0.07212 | 0.02458 | 54.97 | 0.008828 | 0.01195 | 0.0832 | 0.005597 | 186.46 | 1297211.49671 | -| TOMOUSDT | 0.003253 | 0.001773 | 0.04889 | 0.04074 | 70.72 | 0.01202 | 0.01822 | 0.1119 | 0.02583 | 1063.67 | 1297211.49675 | -| RADUSDT | 0.003225 | 0.001897 | 0.05389 | 0.03095 | 50.18 | 0.006191 | 0.009446 | 0.05498 | 0.02411 | 122.46 | 1297211.49677 | -| EDUUSDT | 0.003166 | 0.003321 | 0.1046 | 0.04717 | 111.1 | 0.009568 | 0.01459 | 0.09875 | 0.01357 | 132.46 | 1297211.49683 | -| TLMUSDT | 0.003136 | 0.001765 | 0.106 | 0.05326 | 97.82 | 0.009269 | 0.01059 | 0.06607 | 0.02889 | 163.46 | 1297211.49686 | -| XVSUSDT | 0.002947 | 0.001775 | 0.04575 | 0.01251 | 64.9 | 0.007625 | 0.006907 | 0.03634 | 0.005984 | 149.88 | 1297211.49705 | -| JOEUSDT | 0.002843 | 0.002009 | 0.1123 | 0.08688 | 54.08 | 0.01441 | 0.02554 | 0.1325 | 0.07778 | 164.46 | 1297211.49716 | -| KEYUSDT | 0.002808 | 0.002911 | 0.05514 | 0.02419 | 81.6 | 0.00971 | 0.01668 | 0.121 | 0.02208 | 108.46 | 1297211.49719 | -| HFTUSDT | 0.002709 | 0.001974 | 0.1126 | 0.05831 | 55.48 | 0.01079 | 0.01523 | 0.09888 | 0.02827 | 156.46 | 1297211.49729 | -| BLZUSDT | 0.002463 | 0.001966 | 0.03289 | 0.01607 | 129.3 | 0.01444 | 0.01394 | 0.07408 | 0.05013 | 1088.67 | 1297211.49754 | -| BNXUSDT | 0.0024 | 0.003129 | 0.09361 | 0.03824 | 95.7 | 0.008589 | 0.01088 | 0.07665 | 0.01151 | 199.38 | 1297211.4976 | -| OGNUSDT | 0.002377 | 0.001855 | 0.02947 | 0.01715 | 65.92 | 0.009577 | 0.01392 | 0.0882 | 0.02909 | 891.67 | 1297211.49762 | -| AGIXUSDT | 0.002212 | 0.004297 | 0.08529 | 0.03185 | 130.2 | 0.01188 | 0.01298 | 0.07853 | 0.003622 | 205.38 | 1297211.49779 | -| HOOKUSDT | 0.002215 | 0.003057 | 0.1041 | 0.07305 | 42.92 | 0.01344 | 0.0215 | 0.124 | 0.04029 | 229.83 | 1297211.49779 | -| LQTYUSDT | 0.002162 | 0.003588 | 0.08601 | 0.05972 | 43.82 | 0.01125 | 0.01721 | 0.1051 | 0.04011 | 183.46 | 1297211.49784 | -| SSVUSDT | 0.002133 | 0.003161 | 0.05675 | 0.03228 | 78.6 | 0.009755 | 0.008848 | 0.04316 | 0.00218 | 197.46 | 1297211.49787 | -| SUIUSDT | 0.002115 | 0.002866 | 0.09691 | 0.0741 | 57.93 | 0.0113 | 0.0185 | 0.09176 | 0.0175 | 129.29 | 1297211.49788 | -| 1000FLOKIUSDT | 0.002114 | 0.002467 | 0.04657 | 0.02243 | 83.75 | 0.008757 | 0.007741 | 0.03605 | 0.0007005 | 126.29 | 1297211.49789 | -| SFPUSDT | 0.002085 | 0.003443 | 0.1074 | 0.07182 | 132.9 | 0.01889 | 0.01935 | 0.1424 | 0.06081 | 927.67 | 1297211.49792 | -| ACHUSDT | 0.002026 | 0.002778 | 0.09876 | 0.07668 | 100.2 | 0.0138 | 0.01641 | 0.08275 | 0.015 | 199.38 | 1297211.49797 | -| HIGHUSDT | 0.002008 | 0.002529 | 0.1347 | 0.07425 | 88.27 | 0.01857 | 0.02086 | 0.1292 | 0.03257 | 214.88 | 1297211.49799 | -| OCEANUSDT | 0.001973 | 0.00289 | 0.1434 | 0.07327 | 121.5 | 0.01865 | 0.02424 | 0.1428 | 0.03839 | 1040.67 | 1297211.49803 | -| ZENUSDT | 0.001946 | 0.003217 | 0.1401 | 0.05516 | 137.5 | 0.01863 | 0.02199 | 0.149 | 0.01953 | 1019.67 | 1297211.49805 | -| PHBUSDT | 0.001873 | 0.002024 | 0.09465 | 0.04726 | 101.8 | 0.01575 | 0.02074 | 0.1439 | 0.01775 | 205.38 | 1297211.49813 | -| HBARUSDT | 0.001863 | 0.002787 | 0.0951 | 0.0642 | 79.03 | 0.01137 | 0.01544 | 0.1163 | 0.02858 | 906.67 | 1297211.49814 | -| ASTRUSDT | 0.001836 | 0.001741 | 0.0794 | 0.05351 | 24.7 | 0.009104 | 0.01265 | 0.0766 | 0.0344 | 207.88 | 1297211.49816 | -| FETUSDT | 0.001757 | 0.002151 | 0.09708 | 0.04875 | 117.9 | 0.01361 | 0.02 | 0.1297 | 0.02494 | 235.88 | 1297211.49824 | -| ONTUSDT | 0.001741 | 0.002936 | 0.1083 | 0.07459 | 44.37 | 0.01059 | 0.02055 | 0.1256 | 0.03098 | 1307.62 | 1297211.49826 | -| LUNA2USDT | 0.001731 | 0.002891 | 0.0418 | 0.02444 | 71.28 | 0.005001 | 0.006871 | 0.04319 | 0.006189 | 364.83 | 1297211.49827 | -| FLMUSDT | 0.00171 | 0.001396 | 0.03825 | 0.008823 | 138.8 | 0.01845 | 0.01777 | 0.1045 | 0.01028 | 1076.67 | 1297211.49829 | -| LITUSDT | 0.001674 | 0.00266 | 0.108 | 0.03731 | 124.1 | 0.01902 | 0.02317 | 0.1453 | 0.01835 | 933.67 | 1297211.49833 | -| REEFUSDT | 0.001645 | 0.002887 | 0.1114 | 0.04863 | 118.9 | 0.0145 | 0.02132 | 0.1438 | 0.02031 | 929.67 | 1297211.49836 | -| TRBUSDT | 0.001633 | 0.002539 | 0.05705 | 0.02558 | 108.6 | 0.01671 | 0.02185 | 0.1412 | 0.03471 | 1102.67 | 1297211.49837 | -| UMAUSDT | 0.001567 | 0.001364 | 0.04472 | 0.01463 | 83.0 | 0.007147 | 0.00642 | 0.03266 | 0.012 | 122.46 | 1297211.49843 | -| XEMUSDT | 0.001547 | 0.002792 | 0.1371 | 0.07856 | 88.07 | 0.01276 | 0.02002 | 0.1406 | 0.02998 | 920.67 | 1297211.49845 | -| DGBUSDT | 0.001488 | 0.002596 | 0.1033 | 0.06667 | 100.2 | 0.01375 | 0.02271 | 0.1474 | 0.06149 | 871.83 | 1297211.49851 | -| NKNUSDT | 0.001481 | 0.002609 | 0.1226 | 0.02098 | 133.2 | 0.01979 | 0.02456 | 0.1464 | 0.06785 | 883.67 | 1297211.49852 | -| IDUSDT | 0.001398 | 0.001453 | 0.03374 | 0.008557 | 81.25 | 0.0116 | 0.01012 | 0.04583 | 0.0008847 | 170.38 | 1297211.4986 | -| GALUSDT | 0.001381 | 0.003499 | 0.1022 | 0.04849 | 82.17 | 0.01214 | 0.01422 | 0.09121 | 0.0137 | 492.38 | 1297211.49862 | -| CTKUSDT | 0.001375 | 0.003529 | 0.1105 | 0.06111 | 113.9 | 0.01434 | 0.01769 | 0.1219 | 0.04357 | 1024.67 | 1297211.49863 | -| ARPAUSDT | 0.001368 | 0.001678 | 0.04801 | 0.03516 | 69.07 | 0.01161 | 0.02076 | 0.1347 | 0.04839 | 690.83 | 1297211.49863 | -| EOSUSDT | 0.001335 | 0.002354 | 0.1069 | 0.07686 | 131.8 | 0.01507 | 0.02222 | 0.1372 | 0.0268 | 1341.62 | 1297211.49866 | -| CTSIUSDT | 0.001322 | 0.001986 | 0.06506 | 0.02925 | 132.6 | 0.01547 | 0.01459 | 0.09678 | 0.00992 | 683.83 | 1297211.49868 | -| LINAUSDT | 0.001322 | 0.001183 | 0.05108 | 0.01202 | 112.2 | 0.01785 | 0.02171 | 0.1383 | 0.02528 | 904.67 | 1297211.49868 | -| ATAUSDT | 0.001313 | 0.002669 | 0.102 | 0.05722 | 73.1 | 0.01083 | 0.0186 | 0.1177 | 0.04299 | 739.83 | 1297211.49869 | -| SUSHIUSDT | 0.001303 | 0.003539 | 0.1108 | 0.0753 | 104.4 | 0.01849 | 0.02462 | 0.1432 | 0.02497 | 1101.67 | 1297211.4987 | -| MKRUSDT | 0.0013 | 0.001456 | 0.05093 | 0.0353 | 69.63 | 0.01119 | 0.02088 | 0.1374 | 0.03085 | 1123.67 | 1297211.4987 | -| RENUSDT | 0.001266 | 0.002117 | 0.09015 | 0.03219 | 141.2 | 0.01941 | 0.02219 | 0.1394 | 0.04649 | 1062.67 | 1297211.49873 | -| RSRUSDT | 0.001257 | 0.002684 | 0.07602 | 0.04499 | 104.7 | 0.01722 | 0.0222 | 0.1497 | 0.0579 | 1056.67 | 1297211.49874 | -| GRTUSDT | 0.00126 | 0.002586 | 0.1049 | 0.03359 | 97.8 | 0.01898 | 0.02209 | 0.1469 | 0.04295 | 994.67 | 1297211.49874 | -| SPELLUSDT | 0.001227 | 0.002131 | 0.07123 | 0.02827 | 74.87 | 0.008223 | 0.01058 | 0.08085 | 0.01821 | 368.46 | 1297211.49877 | -| COTIUSDT | 0.001232 | 0.002471 | 0.1109 | 0.05568 | 76.2 | 0.01548 | 0.02061 | 0.1321 | 0.02005 | 913.67 | 1297211.49877 | -| NEOUSDT | 0.001225 | 0.001956 | 0.1285 | 0.06905 | 128.1 | 0.01346 | 0.02109 | 0.1306 | 0.0431 | 1301.62 | 1297211.49877 | -| DASHUSDT | 0.001167 | 0.001912 | 0.098 | 0.06602 | 94.65 | 0.01087 | 0.01873 | 0.1241 | 0.0434 | 1314.62 | 1297211.49883 | -| CELRUSDT | 0.001117 | 0.002524 | 0.05311 | 0.02599 | 117.0 | 0.01219 | 0.0216 | 0.1461 | 0.02189 | 894.67 | 1297211.49888 | -| ICXUSDT | 0.001113 | 0.001922 | 0.06571 | 0.05104 | 78.35 | 0.0143 | 0.02187 | 0.1402 | 0.02242 | 1090.67 | 1297211.49889 | -| BELUSDT | 0.001103 | 0.00163 | 0.06132 | 0.0206 | 82.75 | 0.01281 | 0.0192 | 0.1248 | 0.02017 | 1025.67 | 1297211.4989 | -| KAVAUSDT | 0.001095 | 0.001793 | 0.08284 | 0.04065 | 140.5 | 0.0199 | 0.02429 | 0.137 | 0.01911 | 1139.67 | 1297211.4989 | -| RLCUSDT | 0.001103 | 0.002396 | 0.07923 | 0.01595 | 123.5 | 0.01606 | 0.01545 | 0.09389 | 0.00813 | 1136.67 | 1297211.4989 | -| ZRXUSDT | 0.001096 | 0.00184 | 0.0841 | 0.02908 | 136.0 | 0.01744 | 0.01897 | 0.1157 | 0.01369 | 1173.58 | 1297211.4989 | -| APEUSDT | 0.001077 | 0.001967 | 0.06042 | 0.03563 | 102.9 | 0.01217 | 0.01702 | 0.1164 | 0.01254 | 541.33 | 1297211.49892 | -| KNCUSDT | 0.001074 | 0.001808 | 0.05929 | 0.03477 | 124.8 | 0.01761 | 0.02319 | 0.146 | 0.03836 | 1175.62 | 1297211.49893 | -| ZECUSDT | 0.001071 | 0.002068 | 0.1197 | 0.06382 | 63.18 | 0.0118 | 0.02215 | 0.1481 | 0.05791 | 1313.62 | 1297211.49893 | -| 1000PEPEUSDT | 0.001061 | 0.002987 | 0.03375 | 0.009162 | 60.35 | 0.01143 | 0.009649 | 0.04303 | 0.002667 | 127.29 | 1297211.49894 | -| HOTUSDT | 0.00102 | 0.004011 | 0.1286 | 0.03842 | 141.8 | 0.01705 | 0.02159 | 0.1307 | 0.04892 | 893.67 | 1297211.49898 | -| JASMYUSDT | 0.001024 | 0.002124 | 0.04235 | 0.009845 | 118.7 | 0.01458 | 0.01033 | 0.04551 | 0.01952 | 507.83 | 1297211.49898 | -| CHZUSDT | 0.00102 | 0.003057 | 0.05175 | 0.03085 | 119.2 | 0.01298 | 0.02035 | 0.1395 | 0.02989 | 961.67 | 1297211.49898 | -| ALGOUSDT | 0.001019 | 0.002379 | 0.1127 | 0.05088 | 140.2 | 0.01722 | 0.01973 | 0.1186 | 0.0175 | 1181.58 | 1297211.49898 | -| CHRUSDT | 0.001023 | 0.002395 | 0.08259 | 0.03505 | 143.1 | 0.01513 | 0.02036 | 0.1455 | 0.03119 | 911.67 | 1297211.49898 | -| CKBUSDT | 0.001022 | 0.00195 | 0.08289 | 0.05986 | 83.58 | 0.009935 | 0.009979 | 0.05706 | 0.009901 | 193.46 | 1297211.49898 | -| SNXUSDT | 0.001001 | 0.00117 | 0.04265 | 0.006346 | 133.3 | 0.01993 | 0.02031 | 0.1226 | 0.004176 | 1122.67 | 1297211.499 | -| ATOMUSDT | 0.001004 | 0.002621 | 0.1003 | 0.05566 | 75.18 | 0.01205 | 0.02274 | 0.148 | 0.03873 | 1311.46 | 1297211.499 | -| QTUMUSDT | 0.0009937 | 0.001735 | 0.06204 | 0.02971 | 125.8 | 0.01226 | 0.01923 | 0.1396 | 0.02036 | 1298.62 | 1297211.49901 | -| GTCUSDT | 0.0009443 | 0.001703 | 0.0914 | 0.01594 | 95.73 | 0.01917 | 0.02499 | 0.1476 | 0.02819 | 820.83 | 1297211.49906 | -| OMGUSDT | 0.0009274 | 0.002094 | 0.08147 | 0.04468 | 113.1 | 0.01657 | 0.01673 | 0.117 | 0.02184 | 1165.58 | 1297211.49907 | -| IOTAUSDT | 0.0009284 | 0.00176 | 0.07474 | 0.04678 | 124.6 | 0.01597 | 0.01945 | 0.1417 | 0.02091 | 1306.62 | 1297211.49907 | -| ZILUSDT | 0.0009269 | 0.001873 | 0.08791 | 0.05652 | 111.2 | 0.01316 | 0.01577 | 0.1199 | 0.08453 | 1179.58 | 1297211.49907 | -| YFIUSDT | 0.0009215 | 0.002874 | 0.08738 | 0.03994 | 97.45 | 0.01528 | 0.01763 | 0.1464 | 0.01489 | 1105.67 | 1297211.49908 | -| FOOTBALLUSDT | 0.0009248 | 0.001384 | 0.139 | 0.09261 | 121.5 | 0.01322 | 0.02268 | 0.1267 | 0.08709 | 373.83 | 1297211.49908 | -| MINAUSDT | 0.0009084 | 0.002418 | 0.08171 | 0.04816 | 70.58 | 0.009945 | 0.0114 | 0.07194 | 0.03732 | 214.5 | 1297211.49909 | -| SOLUSDT | 0.0009135 | 0.000962 | 0.03081 | 0.01737 | 99.17 | 0.01427 | 0.02054 | 0.1428 | 0.0185 | 1091.67 | 1297211.49909 | -| LINKUSDT | 0.0009086 | 0.001964 | 0.09006 | 0.05972 | 97.12 | 0.0174 | 0.01957 | 0.1167 | 0.02154 | 1332.62 | 1297211.49909 | -| UNIUSDT | 0.0009087 | 0.001816 | 0.08067 | 0.05225 | 122.8 | 0.01578 | 0.02169 | 0.1494 | 0.07454 | 1087.67 | 1297211.49909 | -| ENJUSDT | 0.0009041 | 0.002236 | 0.08972 | 0.02411 | 121.4 | 0.0161 | 0.01882 | 0.1486 | 0.06182 | 1076.67 | 1297211.4991 | -| 1INCHUSDT | 0.0009048 | 0.002147 | 0.1309 | 0.03764 | 123.2 | 0.01988 | 0.02405 | 0.1412 | 0.0363 | 988.54 | 1297211.4991 | -| XTZUSDT | 0.0009008 | 0.002069 | 0.08302 | 0.03793 | 83.17 | 0.0106 | 0.01354 | 0.09995 | 0.0551 | 1312.62 | 1297211.4991 | -| BANDUSDT | 0.0008869 | 0.001411 | 0.04369 | 0.02283 | 69.85 | 0.01352 | 0.01546 | 0.1012 | 0.03016 | 1138.67 | 1297211.49911 | -| FXSUSDT | 0.0008888 | 0.001649 | 0.1349 | 0.07855 | 106.2 | 0.01732 | 0.01966 | 0.117 | 0.02761 | 232.83 | 1297211.49911 | -| ICPUSDT | 0.0008883 | 0.001596 | 0.07747 | 0.05617 | 76.73 | 0.007569 | 0.01097 | 0.07113 | 0.009985 | 347.88 | 1297211.49911 | -| MANAUSDT | 0.0008712 | 0.00225 | 0.06863 | 0.04113 | 142.3 | 0.01331 | 0.0198 | 0.1392 | 0.01162 | 908.67 | 1297211.49913 | -| ANKRUSDT | 0.0008623 | 0.001866 | 0.08073 | 0.0199 | 128.0 | 0.01607 | 0.02284 | 0.1467 | 0.01863 | 956.67 | 1297211.49914 | -| DEFIUSDT | 0.0008545 | 0.001782 | 0.0954 | 0.05934 | 92.9 | 0.01494 | 0.01901 | 0.1263 | 0.02979 | 1108.67 | 1297211.49915 | -| TUSDT | 0.0008462 | 0.001751 | 0.02796 | 0.006426 | 63.62 | 0.005909 | 0.004918 | 0.02233 | 0.003149 | 220.42 | 1297211.49915 | -| SKLUSDT | 0.0008337 | 0.002185 | 0.06096 | 0.01396 | 134.0 | 0.01747 | 0.01891 | 0.1212 | 0.06816 | 1005.67 | 1297211.49917 | -| IOSTUSDT | 0.0008213 | 0.002146 | 0.06203 | 0.04425 | 75.73 | 0.0113 | 0.02305 | 0.1493 | 0.03386 | 1297.62 | 1297211.49918 | -| BATUSDT | 0.00082 | 0.001448 | 0.06185 | 0.04184 | 86.83 | 0.01304 | 0.0182 | 0.1301 | 0.08985 | 1305.62 | 1297211.49918 | -| LTCUSDT | 0.0008196 | 0.00139 | 0.07532 | 0.04749 | 125.3 | 0.01338 | 0.02263 | 0.1494 | 0.03457 | 1340.62 | 1297211.49918 | -| NEARUSDT | 0.0008129 | 0.002066 | 0.05449 | 0.0394 | 92.25 | 0.0136 | 0.02321 | 0.1474 | 0.02852 | 1060.62 | 1297211.49919 | -| XLMUSDT | 0.0007973 | 0.001182 | 0.06858 | 0.0444 | 69.12 | 0.009395 | 0.01387 | 0.09802 | 0.0178 | 1329.62 | 1297211.4992 | -| C98USDT | 0.0007976 | 0.001331 | 0.09597 | 0.02047 | 114.7 | 0.01833 | 0.01857 | 0.1116 | 0.08738 | 746.83 | 1297211.4992 | -| STORJUSDT | 0.0008032 | 0.00152 | 0.06087 | 0.02883 | 138.8 | 0.0172 | 0.02222 | 0.1379 | 0.03549 | 1089.67 | 1297211.4992 | -| RUNEUSDT | 0.0007805 | 0.000751 | 0.02791 | 0.01051 | 129.5 | 0.01888 | 0.01696 | 0.09055 | 0.006219 | 1101.67 | 1297211.49922 | -| THETAUSDT | 0.0007828 | 0.001844 | 0.09197 | 0.038 | 118.2 | 0.01888 | 0.02044 | 0.1293 | 0.01896 | 1201.62 | 1297211.49922 | -| SANDUSDT | 0.0007603 | 0.002247 | 0.05298 | 0.03132 | 126.9 | 0.01528 | 0.02249 | 0.1486 | 0.01559 | 957.67 | 1297211.49924 | -| AVAXUSDT | 0.0007607 | 0.002064 | 0.09126 | 0.04302 | 141.9 | 0.01642 | 0.02081 | 0.1488 | 0.02622 | 1082.67 | 1297211.49924 | -| ALICEUSDT | 0.0007613 | 0.001656 | 0.09588 | 0.02474 | 139.2 | 0.0199 | 0.02266 | 0.1484 | 0.08823 | 907.83 | 1297211.49924 | -| BAKEUSDT | 0.0007605 | 0.0009722 | 0.03894 | 0.01027 | 120.1 | 0.01587 | 0.0155 | 0.08818 | 0.02937 | 843.67 | 1297211.49924 | -| API3USDT | 0.0007462 | 0.0008892 | 0.05708 | 0.0003688 | 134.8 | 0.01888 | 0.02043 | 0.1161 | 0.00527 | 564.83 | 1297211.49925 | -| ALPHAUSDT | 0.0007407 | 0.00129 | 0.05199 | 0.02017 | 142.8 | 0.01859 | 0.02313 | 0.146 | 0.05871 | 1020.67 | 1297211.49926 | -| MTLUSDT | 0.0007403 | 0.0009665 | 0.04099 | 0.01386 | 139.8 | 0.01664 | 0.02213 | 0.1421 | 0.01467 | 892.67 | 1297211.49926 | -| XMRUSDT | 0.0007384 | 0.001825 | 0.1033 | 0.07651 | 86.63 | 0.01134 | 0.02001 | 0.1213 | 0.02208 | 1315.62 | 1297211.49926 | -| COMPUSDT | 0.0007394 | 0.0009746 | 0.05833 | 0.01317 | 117.7 | 0.01977 | 0.02195 | 0.1246 | 0.01236 | 1167.58 | 1297211.49926 | -| CELOUSDT | 0.0007293 | 0.000839 | 0.03769 | 0.02449 | 55.45 | 0.009528 | 0.0123 | 0.07711 | 0.07046 | 712.83 | 1297211.49927 | -| 1000XECUSDT | 0.0007198 | 0.000895 | 0.0419 | 0.01937 | 81.65 | 0.01112 | 0.01452 | 0.09356 | 0.02183 | 722.83 | 1297211.49928 | -| BALUSDT | 0.0007241 | 0.001455 | 0.0769 | 0.04002 | 143.1 | 0.01899 | 0.02179 | 0.1314 | 0.03644 | 1104.67 | 1297211.49928 | -| KSMUSDT | 0.0007184 | 0.001867 | 0.06827 | 0.03505 | 82.48 | 0.01213 | 0.01496 | 0.1072 | 0.03095 | 1061.67 | 1297211.49928 | -| MATICUSDT | 0.0007098 | 0.001697 | 0.07019 | 0.03278 | 122.5 | 0.01507 | 0.01877 | 0.1376 | 0.0304 | 1053.67 | 1297211.49929 | -| GMXUSDT | 0.000708 | 0.0007722 | 0.04449 | 0.01162 | 57.93 | 0.0112 | 0.007461 | 0.0315 | 0.006308 | 204.38 | 1297211.49929 | -| VETUSDT | 0.0007004 | 0.001737 | 0.07004 | 0.03293 | 143.1 | 0.01319 | 0.01881 | 0.1356 | 0.05767 | 1304.62 | 1297211.4993 | -| WOOUSDT | 0.0006801 | 0.001145 | 0.05528 | 0.01507 | 82.35 | 0.01643 | 0.01082 | 0.05645 | 0.04593 | 519.83 | 1297211.49932 | -| ETCUSDT | 0.0006694 | 0.001515 | 0.06403 | 0.03462 | 133.2 | 0.01667 | 0.0151 | 0.1145 | 0.0448 | 1333.62 | 1297211.49933 | -| ENSUSDT | 0.0006552 | 0.001673 | 0.09609 | 0.02967 | 121.1 | 0.01536 | 0.01627 | 0.1183 | 0.07974 | 648.83 | 1297211.49934 | -| DUSKUSDT | 0.000655 | 0.001291 | 0.0346 | 0.009686 | 66.03 | 0.01348 | 0.01286 | 0.0708 | 0.00315 | 610.83 | 1297211.49935 | -| RDNTUSDT | 0.0006454 | 0.00183 | 0.06236 | 0.006349 | 97.25 | 0.01072 | 0.00873 | 0.04648 | 0.00227 | 157.46 | 1297211.49935 | -| ADAUSDT | 0.0006408 | 0.00129 | 0.0502 | 0.02512 | 77.4 | 0.01008 | 0.01279 | 0.07704 | 0.02855 | 1318.62 | 1297211.49936 | -| FILUSDT | 0.0006362 | 0.001113 | 0.05332 | 0.02512 | 99.65 | 0.01567 | 0.01749 | 0.141 | 0.04189 | 1059.71 | 1297211.49936 | -| DARUSDT | 0.0006219 | 0.001076 | 0.03937 | 0.009271 | 104.1 | 0.01698 | 0.01133 | 0.06274 | 0.03586 | 498.83 | 1297211.49938 | -| DOTUSDT | 0.0006201 | 0.001543 | 0.1164 | 0.06515 | 117.6 | 0.01531 | 0.02102 | 0.1309 | 0.05993 | 1114.67 | 1297211.49938 | -| EGLDUSDT | 0.0006093 | 0.001616 | 0.07778 | 0.04908 | 143.3 | 0.01755 | 0.02377 | 0.1445 | 0.0272 | 1091.67 | 1297211.49939 | -| BCHUSDT | 0.000598 | 0.0005775 | 0.04314 | 0.01248 | 140.8 | 0.01665 | 0.01869 | 0.1156 | 0.03741 | 1348.96 | 1297211.4994 | -| LPTUSDT | 0.0005861 | 0.0004182 | 0.022 | 0.005802 | 76.27 | 0.01564 | 0.02009 | 0.1257 | 0.09711 | 667.83 | 1297211.49941 | -| XRPUSDT | 0.0005872 | 0.0009525 | 0.02295 | 0.008094 | 141.2 | 0.01157 | 0.01211 | 0.06564 | 0.03268 | 1343.62 | 1297211.49941 | -| LRCUSDT | 0.0005489 | 0.001511 | 0.03427 | 0.01664 | 124.8 | 0.01928 | 0.02037 | 0.1164 | 0.01995 | 1056.67 | 1297211.49945 | -| QNTUSDT | 0.0005375 | 0.001235 | 0.09945 | 0.07707 | 61.3 | 0.01158 | 0.02231 | 0.1243 | 0.04521 | 324.88 | 1297211.49946 | -| ROSEUSDT | 0.0005255 | 0.001308 | 0.06644 | 0.04316 | 96.57 | 0.01331 | 0.02121 | 0.1327 | 0.05905 | 617.83 | 1297211.49947 | -| DYDXUSDT | 0.0005338 | 0.0009561 | 0.04505 | 0.0161 | 141.8 | 0.01623 | 0.01709 | 0.1207 | 0.05811 | 729.83 | 1297211.49947 | -| DENTUSDT | 0.0004782 | 0.001063 | 0.06243 | 0.004677 | 137.2 | 0.01971 | 0.02305 | 0.1476 | 0.0226 | 899.79 | 1297211.49952 | -| STGUSDT | 0.0004802 | 0.0009976 | 0.07166 | 0.04621 | 68.4 | 0.01358 | 0.01533 | 0.1252 | 0.02999 | 380.46 | 1297211.49952 | -| FLOWUSDT | 0.0004651 | 0.000744 | 0.02613 | 0.004912 | 134.0 | 0.01401 | 0.01308 | 0.07054 | 0.005318 | 576.83 | 1297211.49953 | -| TRXUSDT | 0.0003976 | 0.001251 | 0.07133 | 0.05935 | 139.9 | 0.01136 | 0.02128 | 0.1216 | 0.0432 | 1334.62 | 1297211.4996 | -| ETHUSDT | 0.0003924 | 0.0008127 | 0.06744 | 0.03419 | 100.9 | 0.01262 | 0.01439 | 0.09066 | 0.01966 | 1348.96 | 1297211.49961 | -| LDOUSDT | 0.000387 | 0.0009345 | 0.05827 | 0.0104 | 118.0 | 0.01645 | 0.01749 | 0.09604 | 0.05592 | 352.46 | 1297211.49961 | -| RNDRUSDT | 0.0003943 | 0.000938 | 0.0494 | 0.02398 | 124.8 | 0.01767 | 0.02205 | 0.1388 | 0.06518 | 218.88 | 1297211.49961 | -| 1000LUNCUSDT | 0.0003846 | 0.001053 | 0.03073 | 0.005245 | 120.2 | 0.01596 | 0.009566 | 0.04493 | 0.01764 | 365.42 | 1297211.49962 | -| ARBUSDT | 0.0003764 | 0.0006432 | 0.08013 | 0.006603 | 109.2 | 0.01721 | 0.02699 | 0.1487 | 0.08224 | 170.33 | 1297211.49962 | -| BLUEBIRDUSDT | 0.0003658 | 0.000538 | 0.02783 | 0.01525 | 66.47 | 0.005228 | 0.005021 | 0.02435 | 0.00517 | 311.46 | 1297211.49963 | -| SXPUSDT | 0.0003686 | 0.0005903 | 0.02332 | 0.00447 | 104.0 | 0.01663 | 0.01683 | 0.09341 | 0.01861 | 1146.58 | 1297211.49963 | -| OPUSDT | 0.0003678 | 0.000764 | 0.02471 | 0.007073 | 109.3 | 0.01447 | 0.01337 | 0.06835 | 0.03905 | 465.38 | 1297211.49963 | -| MAGICUSDT | 0.0003631 | 0.000926 | 0.06478 | 0.0 | 107.6 | 0.01967 | 0.02458 | 0.1388 | 0.03486 | 227.83 | 1297211.49964 | -| CVXUSDT | 0.0003641 | 0.0008569 | 0.1013 | 0.07801 | 66.47 | 0.01181 | 0.02027 | 0.1347 | 0.0671 | 352.46 | 1297211.49964 | -| RVNUSDT | 0.0003289 | 0.000629 | 0.05178 | 0.01871 | 127.3 | 0.01984 | 0.02444 | 0.1375 | 0.03111 | 928.67 | 1297211.49967 | -| ANTUSDT | 0.0003292 | 0.0007401 | 0.06082 | 0.0272 | 119.3 | 0.01971 | 0.02179 | 0.1317 | 0.06192 | 621.79 | 1297211.49967 | -| INJUSDT | 0.0003212 | 0.0006008 | 0.01412 | 0.001714 | 60.88 | 0.01222 | 0.01108 | 0.05252 | 0.0 | 388.88 | 1297211.49968 | -| BNBUSDT | 0.0003073 | 0.001161 | 0.08102 | 0.05024 | 142.6 | 0.01476 | 0.01753 | 0.1434 | 0.04077 | 1308.62 | 1297211.49969 | -| PEOPLEUSDT | 0.0002687 | 0.0007412 | 0.01381 | 0.0016 | 133.9 | 0.01552 | 0.01351 | 0.06416 | 0.002015 | 624.79 | 1297211.49973 | -| IMXUSDT | 0.0002205 | 0.0004959 | 0.01228 | 0.003256 | 58.03 | 0.01254 | 0.009753 | 0.04244 | 0.01207 | 575.83 | 1297211.49978 | -| APTUSDT | 0.0002005 | 0.0007795 | 0.009758 | 0.0005114 | 93.1 | 0.01126 | 0.009241 | 0.03874 | 0.0 | 325.88 | 1297211.4998 | -| RAYUSDT | 0.0001791 | 0.001253 | 0.04344 | 0.02142 | 93.87 | 0.00979 | 0.008317 | 0.0595 | 0.01204 | 750.83 | 1297211.49982 | -| FTTUSDT | 0.0001749 | 0.001749 | 0.02126 | 0.007637 | 55.67 | 0.01212 | 0.01068 | 0.0461 | 0.004979 | 512.83 | 1297211.49983 | -| COCOSUSDT | 0.0001697 | 0.001697 | 0.03977 | 0.02412 | 26.18 | 0.0126 | 0.0264 | 0.1386 | 0.0154 | 200.38 | 1297211.49983 | -| KLAYUSDT | 0.0001465 | 0.0003148 | 0.0113 | 0.001791 | 96.83 | 0.01272 | 0.00981 | 0.04121 | 0.00865 | 697.83 | 1297211.49985 | -| BTSUSDT | 0.0001259 | 0.0009982 | 0.08567 | 0.0121 | 111.1 | 0.01627 | 0.02099 | 0.127 | 0.03687 | 950.67 | 1297211.49987 | -| SCUSDT | 0.0001193 | 0.001193 | 0.1385 | 0.04433 | 77.48 | 0.01405 | 0.01842 | 0.1428 | 0.04032 | 880.67 | 1297211.49988 | -| SRMUSDT | 0.0001239 | 0.0006905 | 0.02081 | 0.009121 | 57.67 | 0.01369 | 0.009581 | 0.05871 | 0.01116 | 1100.88 | 1297211.49988 | -| CVCUSDT | 7.257e-05 | 0.0005256 | 0.01808 | 0.005003 | 126.3 | 0.01759 | 0.01378 | 0.08854 | 0.009724 | 1032.67 | 1297211.49993 | -| BTCSTUSDT | 8.389e-06 | 8.389e-05 | 0.03831 | 0.0 | 18.38 | 0.003164 | 0.0004536 | 0.00533 | 0.0 | 919.67 | 1297211.49999 | -| USDCUSDT | 4.344e-08 | 4.344e-07 | 0.01513 | 0.0 | 7.633 | 0.01448 | 0.001087 | 0.01683 | 0.0 | 181.25 | 1297211.5 | -| ONEUSDT | 0.0008934 | 0.001771 | 0.08823 | 0.03519 | 151.3 | 0.01911 | 0.01994 | 0.1343 | 0.07658 | 905.67 | 1304511.49911 | -| AAVEUSDT | 0.0004667 | 0.0008767 | 0.05436 | 0.02591 | 156.4 | 0.01744 | 0.01744 | 0.1175 | 0.07748 | 1059.67 | 1309628.1662 | -| IOTXUSDT | 0.0004139 | 0.0009185 | 0.0622 | 0.0269 | 140.1 | 0.01751 | 0.02481 | 0.1657 | 0.05485 | 758.83 | 1312928.02625 | -| AXSUSDT | 0.0003414 | 0.000941 | 0.0351 | 0.01233 | 135.4 | 0.01697 | 0.02058 | 0.1336 | 0.1018 | 1023.67 | 1314989.07873 | -| CFXUSDT | 0.0003593 | 0.001073 | 0.05339 | 0.01841 | 164.9 | 0.01911 | 0.02244 | 0.1182 | 0.009349 | 201.38 | 1318111.49964 | -| HNTUSDT | 0.0001952 | 0.0007804 | 0.03714 | 0.004562 | 171.8 | 0.02085 | 0.02193 | 0.1106 | 0.003586 | 1077.67 | 1325036.6867 | -| ARUSDT | 0.000186 | 0.000441 | 0.03528 | 0.02019 | 105.1 | 0.01991 | 0.02611 | 0.1782 | 0.04688 | 711.83 | 1325401.45804 | -| STXUSDT | 0.0003375 | 0.0005856 | 0.0669 | 0.0368 | 113.1 | 0.02142 | 0.03204 | 0.1825 | 0.05881 | 200.38 | 1329948.50678 | -| BTCUSDT | 8.891e-05 | 0.0001395 | 0.01706 | 0.002378 | 177.8 | 0.01371 | 0.01097 | 0.05146 | 0.06027 | 1348.96 | 1331061.49991 | -| DOGEUSDT | 0.0003155 | 0.001178 | 0.02135 | 0.01087 | 146.3 | 0.01344 | 0.02692 | 0.2024 | 0.03627 | 1157.58 | 1351943.53736 | -| CRVUSDT | 0.001017 | 0.002348 | 0.09949 | 0.03621 | 201.6 | 0.01735 | 0.01985 | 0.1413 | 0.04824 | 1104.67 | 1354811.49898 | -| 1000SHIBUSDT | 0.0002471 | 0.0006145 | 0.03647 | 0.02498 | 142.0 | 0.01823 | 0.03099 | 0.2219 | 0.05444 | 852.25 | 1369257.20829 | -| BTCDOMUSDT | 7.802e-05 | 0.000133 | 0.03407 | 0.002878 | 490.9 | 0.01071 | 0.007293 | 0.02972 | 0.01006 | 810.83 | 1644111.49992 | -| AUDIOUSDT | 0.0003102 | 0.0004078 | 0.02922 | 0.006096 | 119.6 | 0.01743 | 0.02165 | 0.1263 | 0.1613 | 751.83 | 1909853.93591 | -| GALAUSDT | 0.0003394 | 0.0005444 | 0.0376 | 0.0183 | 138.9 | 0.02063 | 0.04028 | 0.2803 | 0.3221 | 721.83 | 3649671.09089 | -| FTMUSDT | 0.0001655 | 0.0005935 | 0.03804 | 0.002465 | 94.72 | 0.01389 | 0.009652 | 0.05105 | 0.6548 | 1081.67 | 6845595.53753 | -| UNFIUSDT | -0.004789 | -0.0147 | 0.09508 | 0.08425 | 67.88 | 0.02737 | 0.04388 | 0.1742 | 0.8057 | 932.67 | 8379726.47464 | -| MASKUSDT | -0.005763 | -0.0184 | 0.1157 | 0.1044 | 71.37 | 0.03214 | 0.05163 | 0.2123 | 0.9604 | 743.83 | 9966074.29781 | -| WAVESUSDT | -0.001221 | -0.01221 | 0.00156 | 0.001037 | 19.15 | 0.1663 | 0.1288 | 0.1663 | 1.0 | 1124.67 | 10324853.2041 | -| GMTUSDT | -0.002509 | -0.02509 | 0.003041 | 0.002835 | 35.08 | 0.2303 | 0.1222 | 0.2303 | 1.0 | 543.79 | 10388806.3812 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000FLOKIUSDT.json deleted file mode 100644 index adfb897d2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1337.5529707639332, - "auto_unstuck_ema_dist": -0.05020461680353659, - "auto_unstuck_qty_pct": 0.07828868072603543, - "auto_unstuck_wallet_exposure_threshold": 0.2787587408018727, - "backwards_tp": true, - "ddown_factor": 0.42304356579042734, - "ema_span_0": 558.696331326078, - "ema_span_1": 497.41826851902977, - "enabled": true, - "initial_eprice_ema_dist": -0.07868331010891629, - "initial_qty_pct": 0.013227954188797108, - "markup_range": 0.005307012362471756, - "min_markup": 0.005529113634834855, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04494425483032159, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18006314432965925, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 695.8708016749218, - "auto_unstuck_ema_dist": -0.026733797044542294, - "auto_unstuck_qty_pct": 0.010644607282947088, - "auto_unstuck_wallet_exposure_threshold": 0.8213584530690295, - "backwards_tp": true, - "ddown_factor": 2.5194749808159074, - "ema_span_0": 1019.9579803886394, - "ema_span_1": 1269.3177148261316, - "enabled": true, - "initial_eprice_ema_dist": 0.0021726276377854515, - "initial_qty_pct": 0.013135946449550934, - "markup_range": 0.004144729631045132, - "min_markup": 0.009322855185425492, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03384836518959056, - "rentry_pprice_dist_wallet_exposure_weighting": 13.260271090600716, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000LUNCUSDT.json deleted file mode 100644 index 25f8f7347..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1049.6000700624825, - "auto_unstuck_ema_dist": -0.07016168073678879, - "auto_unstuck_qty_pct": 0.03411226817446472, - "auto_unstuck_wallet_exposure_threshold": 0.41911496881061083, - "backwards_tp": true, - "ddown_factor": 1.4243544030080155, - "ema_span_0": 486.74816073199383, - "ema_span_1": 522.612364856291, - "enabled": true, - "initial_eprice_ema_dist": -0.02199351403309815, - "initial_qty_pct": 0.022715060199545344, - "markup_range": 0.0015981849693865685, - "min_markup": 0.00227441883012074, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03617149292037044, - "rentry_pprice_dist_wallet_exposure_weighting": 3.239183468007264, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000PEPEUSDT.json deleted file mode 100644 index 162a46f3f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 754.3817566760711, - "auto_unstuck_ema_dist": -0.03959689785706191, - "auto_unstuck_qty_pct": 0.05839186716205426, - "auto_unstuck_wallet_exposure_threshold": 0.4665243147969393, - "backwards_tp": true, - "ddown_factor": 0.3892918984394489, - "ema_span_0": 666.0593458341641, - "ema_span_1": 715.4736988281547, - "enabled": true, - "initial_eprice_ema_dist": -0.020047503474721045, - "initial_qty_pct": 0.011967997066845822, - "markup_range": 0.007434691303928223, - "min_markup": 0.007374421800799146, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03758745453753089, - "rentry_pprice_dist_wallet_exposure_weighting": 0.62612044775474, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 991.737273229216, - "auto_unstuck_ema_dist": -0.025931399380178, - "auto_unstuck_qty_pct": 0.036697628704257565, - "auto_unstuck_wallet_exposure_threshold": 0.2481689876647487, - "backwards_tp": true, - "ddown_factor": 0.6896885675918398, - "ema_span_0": 446.0813074281135, - "ema_span_1": 893.6527333000228, - "enabled": true, - "initial_eprice_ema_dist": -0.012390923904552665, - "initial_qty_pct": 0.012522397921741313, - "markup_range": 0.0022770223317218528, - "min_markup": 0.007256661421782616, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04066505177112183, - "rentry_pprice_dist_wallet_exposure_weighting": 3.583344944004282, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000SHIBUSDT.json deleted file mode 100644 index f64b0ba4b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 773.8833116684218, - "auto_unstuck_ema_dist": -0.04066419632910171, - "auto_unstuck_qty_pct": 0.03133836406362012, - "auto_unstuck_wallet_exposure_threshold": 0.16591083549683788, - "backwards_tp": true, - "ddown_factor": 0.2335859215846803, - "ema_span_0": 751.7198969571075, - "ema_span_1": 885.956846814527, - "enabled": true, - "initial_eprice_ema_dist": -0.07232146076080855, - "initial_qty_pct": 0.018601681811100484, - "markup_range": 0.0003019330862427853, - "min_markup": 0.005476374741607168, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028152697556863584, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4975740770791492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000XECUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000XECUSDT.json deleted file mode 100644 index 01b17104a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0623219599643, - "auto_unstuck_ema_dist": -0.06558042587730512, - "auto_unstuck_qty_pct": 0.03960929233720307, - "auto_unstuck_wallet_exposure_threshold": 0.1725086924500494, - "backwards_tp": true, - "ddown_factor": 1.50463062827136, - "ema_span_0": 1072.471874728127, - "ema_span_1": 655.4716154163949, - "enabled": true, - "initial_eprice_ema_dist": -0.011939529205335576, - "initial_qty_pct": 0.010653893560365259, - "markup_range": 0.0005271272328020045, - "min_markup": 0.0048450133339425, - "n_close_orders": 6, - "rentry_pprice_dist": 0.042426212439265, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1345034353903136, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1INCHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1INCHUSDT.json deleted file mode 100644 index 32a3f5d54..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.5014048895968, - "auto_unstuck_ema_dist": -0.05793007432114491, - "auto_unstuck_qty_pct": 0.034020023849035054, - "auto_unstuck_wallet_exposure_threshold": 0.21273151683759653, - "backwards_tp": true, - "ddown_factor": 1.2621889414343654, - "ema_span_0": 886.320063774315, - "ema_span_1": 529.0373722563329, - "enabled": true, - "initial_eprice_ema_dist": -0.0032858487921914245, - "initial_qty_pct": 0.011398093134326997, - "markup_range": 0.004305612733085813, - "min_markup": 0.005651608238257144, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037283764140798384, - "rentry_pprice_dist_wallet_exposure_weighting": 2.265028732253464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1052.7374738906133, - "auto_unstuck_ema_dist": -0.031505137125817845, - "auto_unstuck_qty_pct": 0.05160105018671314, - "auto_unstuck_wallet_exposure_threshold": 0.6155351341710021, - "backwards_tp": true, - "ddown_factor": 0.15087854649584473, - "ema_span_0": 1130.8026080393772, - "ema_span_1": 529.9791534916235, - "enabled": true, - "initial_eprice_ema_dist": -0.005576969821565916, - "initial_qty_pct": 0.01026401603862885, - "markup_range": 0.0006160178850496073, - "min_markup": 0.005070656649523753, - "n_close_orders": 16, - "rentry_pprice_dist": 0.026595456689010914, - "rentry_pprice_dist_wallet_exposure_weighting": 8.468819758742796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AAVEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AAVEUSDT.json deleted file mode 100644 index a4940cfdd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.0625161325308, - "auto_unstuck_ema_dist": -0.04102322130771438, - "auto_unstuck_qty_pct": 0.015754744591555958, - "auto_unstuck_wallet_exposure_threshold": 0.6001621741573359, - "backwards_tp": true, - "ddown_factor": 2.409974839588648, - "ema_span_0": 630.2223771424993, - "ema_span_1": 1144.090014263891, - "enabled": true, - "initial_eprice_ema_dist": -0.01886263158942947, - "initial_qty_pct": 0.01619658890391205, - "markup_range": 0.00582821181045555, - "min_markup": 0.001910784087426283, - "n_close_orders": 9, - "rentry_pprice_dist": 0.040478726157756294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6303091650719694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1435.8106994331308, - "auto_unstuck_ema_dist": -0.06188338511410521, - "auto_unstuck_qty_pct": 0.025730218028577678, - "auto_unstuck_wallet_exposure_threshold": 0.6105839341198179, - "backwards_tp": true, - "ddown_factor": 1.6647484017351666, - "ema_span_0": 967.9590888898915, - "ema_span_1": 1404.000231369019, - "enabled": true, - "initial_eprice_ema_dist": 0.0029896876467068612, - "initial_qty_pct": 0.010247097120273286, - "markup_range": 0.005406585417772003, - "min_markup": 0.0021616570131899474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04889560698967968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.08118259207353758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ACHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ACHUSDT.json deleted file mode 100644 index 5e3abaf25..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 412.76501089247114, - "auto_unstuck_ema_dist": -0.059439321560243945, - "auto_unstuck_qty_pct": 0.023367754137491693, - "auto_unstuck_wallet_exposure_threshold": 0.3045555354190747, - "backwards_tp": true, - "ddown_factor": 2.5342759684884353, - "ema_span_0": 771.2458507511448, - "ema_span_1": 986.9091563792869, - "enabled": true, - "initial_eprice_ema_dist": -0.04594610363561374, - "initial_qty_pct": 0.011119970001968283, - "markup_range": 0.0022155009490971477, - "min_markup": 0.0029076471167654027, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033601727314308175, - "rentry_pprice_dist_wallet_exposure_weighting": 8.480288378040697, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 695.8708016749218, - "auto_unstuck_ema_dist": -0.026733797044542294, - "auto_unstuck_qty_pct": 0.010644607282947088, - "auto_unstuck_wallet_exposure_threshold": 0.8213584530690295, - "backwards_tp": true, - "ddown_factor": 2.5194749808159074, - "ema_span_0": 1019.9579803886394, - "ema_span_1": 1269.3177148261316, - "enabled": true, - "initial_eprice_ema_dist": 0.0021726276377854515, - "initial_qty_pct": 0.013135946449550934, - "markup_range": 0.004144729631045132, - "min_markup": 0.009322855185425492, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03384836518959056, - "rentry_pprice_dist_wallet_exposure_weighting": 13.260271090600716, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ADAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ADAUSDT.json deleted file mode 100644 index 0a38e6a6c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 961.4338238324696, - "auto_unstuck_ema_dist": -0.03717285736652032, - "auto_unstuck_qty_pct": 0.01943313987748702, - "auto_unstuck_wallet_exposure_threshold": 0.6686199866305296, - "backwards_tp": true, - "ddown_factor": 2.051473377964616, - "ema_span_0": 281.03795629058385, - "ema_span_1": 1356.2629141196721, - "enabled": true, - "initial_eprice_ema_dist": -0.0021987636669199397, - "initial_qty_pct": 0.010101689328299345, - "markup_range": 8.102690004570353e-05, - "min_markup": 0.002048897530419204, - "n_close_orders": 11, - "rentry_pprice_dist": 0.016562862364551796, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23454328781302952, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 541.0698095831558, - "auto_unstuck_ema_dist": -0.013305864303072753, - "auto_unstuck_qty_pct": 0.01390306071685173, - "auto_unstuck_wallet_exposure_threshold": 0.5253164974633007, - "backwards_tp": true, - "ddown_factor": 2.4489692021093057, - "ema_span_0": 530.2747886976573, - "ema_span_1": 256.8255394119372, - "enabled": true, - "initial_eprice_ema_dist": -0.006014927404041342, - "initial_qty_pct": 0.012960728593511443, - "markup_range": 0.0029520319726383773, - "min_markup": 0.0021142994042955125, - "n_close_orders": 16, - "rentry_pprice_dist": 0.0283173755441322, - "rentry_pprice_dist_wallet_exposure_weighting": 5.073076194313362, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AGIXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AGIXUSDT.json deleted file mode 100644 index 153015a3d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 754.3817566760711, - "auto_unstuck_ema_dist": -0.03959689785706191, - "auto_unstuck_qty_pct": 0.05839186716205426, - "auto_unstuck_wallet_exposure_threshold": 0.4665243147969393, - "backwards_tp": true, - "ddown_factor": 0.3892918984394489, - "ema_span_0": 666.0593458341641, - "ema_span_1": 715.4736988281547, - "enabled": true, - "initial_eprice_ema_dist": -0.020047503474721045, - "initial_qty_pct": 0.011967997066845822, - "markup_range": 0.007434691303928223, - "min_markup": 0.007374421800799146, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03758745453753089, - "rentry_pprice_dist_wallet_exposure_weighting": 0.62612044775474, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.5698682070658, - "auto_unstuck_ema_dist": -0.014801442370167658, - "auto_unstuck_qty_pct": 0.02973409367529811, - "auto_unstuck_wallet_exposure_threshold": 0.3839097666381447, - "backwards_tp": true, - "ddown_factor": 0.8194972284980494, - "ema_span_0": 1068.2157281516772, - "ema_span_1": 969.3649512649674, - "enabled": true, - "initial_eprice_ema_dist": -0.014871183771151238, - "initial_qty_pct": 0.014914136754572399, - "markup_range": 0.004767313212952974, - "min_markup": 0.004861327976733535, - "n_close_orders": 15, - "rentry_pprice_dist": 0.031864142360379925, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5885794920557245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AGLDUSDT.json deleted file mode 100644 index 95b10827f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 968.9885554324641, - "auto_unstuck_ema_dist": -0.040466250595328816, - "auto_unstuck_qty_pct": 0.021646336338545482, - "auto_unstuck_wallet_exposure_threshold": 0.5648550848392668, - "backwards_tp": true, - "ddown_factor": 2.7865650777274107, - "ema_span_0": 694.1160959051064, - "ema_span_1": 1032.4776634516954, - "enabled": true, - "initial_eprice_ema_dist": 0.002927605010827487, - "initial_qty_pct": 0.010143296957502655, - "markup_range": 0.0038366878937663856, - "min_markup": 0.009405260789784488, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049615203593185817, - "rentry_pprice_dist_wallet_exposure_weighting": 11.58409946197559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1158.9325891988399, - "auto_unstuck_ema_dist": -0.010789940658414052, - "auto_unstuck_qty_pct": 0.02170994873799929, - "auto_unstuck_wallet_exposure_threshold": 0.5451983109460394, - "backwards_tp": true, - "ddown_factor": 2.6822609808195828, - "ema_span_0": 152.26969529097894, - "ema_span_1": 1265.869703051127, - "enabled": true, - "initial_eprice_ema_dist": -0.0017969115048086333, - "initial_qty_pct": 0.019134551290597584, - "markup_range": 0.0023521890733515394, - "min_markup": 0.004081655064817033, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03657314514293422, - "rentry_pprice_dist_wallet_exposure_weighting": 0.39108661477178497, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALGOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALGOUSDT.json deleted file mode 100644 index ba5c7f2a6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1307.3744884927644, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.012381962674340403, - "auto_unstuck_wallet_exposure_threshold": 0.4338048606700608, - "backwards_tp": true, - "ddown_factor": 1.9388390745618873, - "ema_span_0": 1090.63901760421, - "ema_span_1": 1054.4646517875299, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999769030254787, - "initial_qty_pct": 0.016497768300612094, - "markup_range": 0.004766773644893363, - "min_markup": 0.008559819938314419, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04159215761593811, - "rentry_pprice_dist_wallet_exposure_weighting": 0.682889825838283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 931.3817468020573, - "auto_unstuck_ema_dist": -0.0038524047582755355, - "auto_unstuck_qty_pct": 0.04535691945507572, - "auto_unstuck_wallet_exposure_threshold": 0.7614386560884693, - "backwards_tp": true, - "ddown_factor": 0.48212355454439887, - "ema_span_0": 793.4057769705952, - "ema_span_1": 207.87285322993708, - "enabled": true, - "initial_eprice_ema_dist": 0.001841857360558631, - "initial_qty_pct": 0.019432459284597227, - "markup_range": 0.016917499229926875, - "min_markup": 0.0034948947116818342, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03897740196858243, - "rentry_pprice_dist_wallet_exposure_weighting": 1.130767045572326, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALICEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALICEUSDT.json deleted file mode 100644 index 10a0294ea..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0018826826293365836, - "auto_unstuck_qty_pct": 0.02366037978822659, - "auto_unstuck_wallet_exposure_threshold": 0.35229050676623463, - "backwards_tp": true, - "ddown_factor": 0.6776349265443191, - "ema_span_0": 1035.4001418744208, - "ema_span_1": 1086.6008950961964, - "enabled": true, - "initial_eprice_ema_dist": -0.06668488985556624, - "initial_qty_pct": 0.010042287392517913, - "markup_range": 7.194844348872922e-07, - "min_markup": 0.004977539914492943, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03161346929705963, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3437775511492527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1065.85241012398, - "auto_unstuck_ema_dist": -0.042811656578468985, - "auto_unstuck_qty_pct": 0.029415949366314063, - "auto_unstuck_wallet_exposure_threshold": 0.5938414176243073, - "backwards_tp": true, - "ddown_factor": 0.6837274524393956, - "ema_span_0": 1213.9497326583946, - "ema_span_1": 558.9840530046024, - "enabled": true, - "initial_eprice_ema_dist": -0.0012086499974279079, - "initial_qty_pct": 0.017540149860911403, - "markup_range": 0.0048921026384613885, - "min_markup": 0.008046855822096683, - "n_close_orders": 6, - "rentry_pprice_dist": 0.031395651969440795, - "rentry_pprice_dist_wallet_exposure_weighting": 10.392174692278287, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALPHAUSDT.json deleted file mode 100644 index 56f611d54..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 518.0265326010709, - "auto_unstuck_ema_dist": -0.08388871599925407, - "auto_unstuck_qty_pct": 0.06752449575198048, - "auto_unstuck_wallet_exposure_threshold": 0.5168401512588173, - "backwards_tp": true, - "ddown_factor": 0.3927443827349259, - "ema_span_0": 950.0899753161561, - "ema_span_1": 983.2691607353765, - "enabled": true, - "initial_eprice_ema_dist": 0.0021549412363112306, - "initial_qty_pct": 0.018131366763790988, - "markup_range": 0.00016986761883675878, - "min_markup": 0.006055097728559371, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04004550092768956, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6723618831363485, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 180.0026494518495, - "auto_unstuck_ema_dist": -0.07336423302068806, - "auto_unstuck_qty_pct": 0.08627465065990286, - "auto_unstuck_wallet_exposure_threshold": 0.848358320804483, - "backwards_tp": true, - "ddown_factor": 0.19430869966361974, - "ema_span_0": 943.6782913161207, - "ema_span_1": 704.1832743875825, - "enabled": true, - "initial_eprice_ema_dist": -0.02535374750258631, - "initial_qty_pct": 0.010412039382659187, - "markup_range": 0.008037284803621569, - "min_markup": 0.00675215117047174, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0348493311332146, - "rentry_pprice_dist_wallet_exposure_weighting": 13.69427032059088, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AMBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AMBUSDT.json deleted file mode 100644 index b2a96d023..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1368.1756670538243, - "auto_unstuck_ema_dist": -0.07330997354703737, - "auto_unstuck_qty_pct": 0.011747650192491955, - "auto_unstuck_wallet_exposure_threshold": 0.4736214579573272, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 137.81914493525576, - "ema_span_1": 166.34020854290125, - "enabled": true, - "initial_eprice_ema_dist": -0.04653146127912276, - "initial_qty_pct": 0.01461088098227183, - "markup_range": 0.0011177056140842143, - "min_markup": 0.007515669102516649, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039236672231753575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7250832843519701, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.5698682070658, - "auto_unstuck_ema_dist": -0.014801442370167658, - "auto_unstuck_qty_pct": 0.02973409367529811, - "auto_unstuck_wallet_exposure_threshold": 0.3839097666381447, - "backwards_tp": true, - "ddown_factor": 0.8194972284980494, - "ema_span_0": 1068.2157281516772, - "ema_span_1": 969.3649512649674, - "enabled": true, - "initial_eprice_ema_dist": -0.014871183771151238, - "initial_qty_pct": 0.014914136754572399, - "markup_range": 0.004767313212952974, - "min_markup": 0.004861327976733535, - "n_close_orders": 15, - "rentry_pprice_dist": 0.031864142360379925, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5885794920557245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ANKRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ANKRUSDT.json deleted file mode 100644 index f6546aa71..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 495.4222436928258, - "auto_unstuck_ema_dist": -0.03366938661273936, - "auto_unstuck_qty_pct": 0.01673383184525977, - "auto_unstuck_wallet_exposure_threshold": 0.3510112328141472, - "backwards_tp": true, - "ddown_factor": 1.5806327160858866, - "ema_span_0": 484.3642784834503, - "ema_span_1": 605.7961084463778, - "enabled": true, - "initial_eprice_ema_dist": -0.007491668444314763, - "initial_qty_pct": 0.013280292633264815, - "markup_range": 0.0014002674896421781, - "min_markup": 0.0013169611829184312, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02936614450844377, - "rentry_pprice_dist_wallet_exposure_weighting": 1.260473617355105, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1178.6231685632652, - "auto_unstuck_ema_dist": -0.0040485392882242495, - "auto_unstuck_qty_pct": 0.011451125013548141, - "auto_unstuck_wallet_exposure_threshold": 0.1783387007401128, - "backwards_tp": true, - "ddown_factor": 0.4697478660620976, - "ema_span_0": 880.3673716086937, - "ema_span_1": 560.6134404119053, - "enabled": true, - "initial_eprice_ema_dist": 0.0016460685547010478, - "initial_qty_pct": 0.013771896510905402, - "markup_range": 0.004111928834126115, - "min_markup": 0.009126813880013566, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03381589560270764, - "rentry_pprice_dist_wallet_exposure_weighting": 11.130338948321194, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ANTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ANTUSDT.json deleted file mode 100644 index e1feb0d78..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1045.1101349643511, - "auto_unstuck_ema_dist": -0.01571585197546857, - "auto_unstuck_qty_pct": 0.029158649031222936, - "auto_unstuck_wallet_exposure_threshold": 0.46471032498092524, - "backwards_tp": true, - "ddown_factor": 1.3987351225344555, - "ema_span_0": 1439.9999945685292, - "ema_span_1": 1393.465716936036, - "enabled": true, - "initial_eprice_ema_dist": 0.002700537639421378, - "initial_qty_pct": 0.011376273692095484, - "markup_range": 0.000374350179583882, - "min_markup": 0.0021708143140020926, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04765180199403366, - "rentry_pprice_dist_wallet_exposure_weighting": 11.905707228545854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 479.9248920586266, - "auto_unstuck_ema_dist": -0.01905228639292863, - "auto_unstuck_qty_pct": 0.041483446137165494, - "auto_unstuck_wallet_exposure_threshold": 0.557655390842093, - "backwards_tp": true, - "ddown_factor": 2.147784021517439, - "ema_span_0": 183.7786310952956, - "ema_span_1": 835.8701919148339, - "enabled": true, - "initial_eprice_ema_dist": 0.0011027649608459148, - "initial_qty_pct": 0.012309299975517905, - "markup_range": 0.0006229521848645023, - "min_markup": 0.0033592464959339816, - "n_close_orders": 11, - "rentry_pprice_dist": 0.046556867491589674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16023503516747917, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/APEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/APEUSDT.json deleted file mode 100644 index 8e1778e1d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 857.9352163512979, - "auto_unstuck_ema_dist": 0.0014175579215003483, - "auto_unstuck_qty_pct": 0.010343324839004193, - "auto_unstuck_wallet_exposure_threshold": 0.14528765565874516, - "backwards_tp": true, - "ddown_factor": 2.9997053680425205, - "ema_span_0": 203.7858595156725, - "ema_span_1": 721.405235407679, - "enabled": true, - "initial_eprice_ema_dist": 0.002943705873177678, - "initial_qty_pct": 0.01356574411908951, - "markup_range": 0.002575633644852081, - "min_markup": 0.006489057687649006, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034405568823008166, - "rentry_pprice_dist_wallet_exposure_weighting": 2.883300831934505, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.7669604640046, - "auto_unstuck_ema_dist": 0.002786919034136599, - "auto_unstuck_qty_pct": 0.03140475838427743, - "auto_unstuck_wallet_exposure_threshold": 0.5574697807190042, - "backwards_tp": true, - "ddown_factor": 1.0498659445078125, - "ema_span_0": 768.3258268178528, - "ema_span_1": 986.7063133340359, - "enabled": true, - "initial_eprice_ema_dist": -0.0185462563652313, - "initial_qty_pct": 0.011031346865379632, - "markup_range": 0.006926949770685151, - "min_markup": 0.0015696813063142627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029295377220877463, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2531454393293293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/API3USDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/API3USDT.json deleted file mode 100644 index bd755a85c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 495.4222436928258, - "auto_unstuck_ema_dist": -0.03366938661273936, - "auto_unstuck_qty_pct": 0.01673383184525977, - "auto_unstuck_wallet_exposure_threshold": 0.3510112328141472, - "backwards_tp": true, - "ddown_factor": 1.5806327160858866, - "ema_span_0": 484.3642784834503, - "ema_span_1": 605.7961084463778, - "enabled": true, - "initial_eprice_ema_dist": -0.007491668444314763, - "initial_qty_pct": 0.013280292633264815, - "markup_range": 0.0014002674896421781, - "min_markup": 0.0013169611829184312, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02936614450844377, - "rentry_pprice_dist_wallet_exposure_weighting": 1.260473617355105, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/APTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/APTUSDT.json deleted file mode 100644 index f27511b5c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0018826826293365836, - "auto_unstuck_qty_pct": 0.02366037978822659, - "auto_unstuck_wallet_exposure_threshold": 0.35229050676623463, - "backwards_tp": true, - "ddown_factor": 0.6776349265443191, - "ema_span_0": 1035.4001418744208, - "ema_span_1": 1086.6008950961964, - "enabled": true, - "initial_eprice_ema_dist": -0.06668488985556624, - "initial_qty_pct": 0.010042287392517913, - "markup_range": 7.194844348872922e-07, - "min_markup": 0.004977539914492943, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03161346929705963, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3437775511492527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 452.15904809063693, - "auto_unstuck_ema_dist": -0.014285824690560984, - "auto_unstuck_qty_pct": 0.0521692196603833, - "auto_unstuck_wallet_exposure_threshold": 0.6877551473946163, - "backwards_tp": true, - "ddown_factor": 2.7141105620226256, - "ema_span_0": 508.2213600654218, - "ema_span_1": 946.0034787279218, - "enabled": true, - "initial_eprice_ema_dist": -0.007690320636594495, - "initial_qty_pct": 0.010485765823889966, - "markup_range": 0.002201599882509027, - "min_markup": 0.0020891237062544057, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04192950389909169, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6748235656956307, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARBUSDT.json deleted file mode 100644 index 10623eae7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.286331700472, - "auto_unstuck_ema_dist": -0.027972942878892803, - "auto_unstuck_qty_pct": 0.012904106128991134, - "auto_unstuck_wallet_exposure_threshold": 0.8521738600901125, - "backwards_tp": true, - "ddown_factor": 1.4721600382065791, - "ema_span_0": 631.788590274504, - "ema_span_1": 507.70507795283646, - "enabled": true, - "initial_eprice_ema_dist": -0.06780536466712907, - "initial_qty_pct": 0.01, - "markup_range": 0.0051530070515828546, - "min_markup": 0.0047356588218692595, - "n_close_orders": 9, - "rentry_pprice_dist": 0.031150624560227946, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2998671254163767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 700.5613696352202, - "auto_unstuck_ema_dist": -0.059072950149775684, - "auto_unstuck_qty_pct": 0.020869976675721807, - "auto_unstuck_wallet_exposure_threshold": 0.40676379197754603, - "backwards_tp": true, - "ddown_factor": 1.4263747857227196, - "ema_span_0": 978.1287120936939, - "ema_span_1": 738.2866828986187, - "enabled": true, - "initial_eprice_ema_dist": 0.0005025554938547656, - "initial_qty_pct": 0.012992525243584368, - "markup_range": 0.0040634477360418555, - "min_markup": 0.008103777563233005, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04734537740402093, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6915333308426989, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARKMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARKMUSDT.json deleted file mode 100644 index 117e10552..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARPAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARPAUSDT.json deleted file mode 100644 index db75ed5c4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.8905920976713, - "auto_unstuck_ema_dist": -0.016939380558704822, - "auto_unstuck_qty_pct": 0.013976248872787709, - "auto_unstuck_wallet_exposure_threshold": 0.12355339590595218, - "backwards_tp": true, - "ddown_factor": 1.6313938279448297, - "ema_span_0": 530.30246136685, - "ema_span_1": 78.12757254475127, - "enabled": true, - "initial_eprice_ema_dist": 0.0023977030968180646, - "initial_qty_pct": 0.016272006657252217, - "markup_range": 0.008797943762849326, - "min_markup": 0.005388076121193682, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04178642120507141, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003687915791838018, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 941.4323959245721, - "auto_unstuck_ema_dist": 0.0023329875617506602, - "auto_unstuck_qty_pct": 0.0126490136306326, - "auto_unstuck_wallet_exposure_threshold": 0.25259142081462765, - "backwards_tp": true, - "ddown_factor": 1.9679132344408845, - "ema_span_0": 383.4272934679048, - "ema_span_1": 1024.1897294780908, - "enabled": true, - "initial_eprice_ema_dist": 0.002885808542863266, - "initial_qty_pct": 0.016666237623390062, - "markup_range": 0.006212579109507224, - "min_markup": 0.00215945346470992, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987230688573202, - "rentry_pprice_dist_wallet_exposure_weighting": 8.31253150074425, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARUSDT.json deleted file mode 100644 index beedfbf14..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1304.051596984993, - "auto_unstuck_ema_dist": -0.0025837533429117726, - "auto_unstuck_qty_pct": 0.0643059017878674, - "auto_unstuck_wallet_exposure_threshold": 0.1949273064619864, - "backwards_tp": true, - "ddown_factor": 1.3236337713194344, - "ema_span_0": 1227.559449566079, - "ema_span_1": 1331.6824406397377, - "enabled": true, - "initial_eprice_ema_dist": 0.002999856240692003, - "initial_qty_pct": 0.014191288975018854, - "markup_range": 0.00878601822501439, - "min_markup": 0.008942494339951583, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04553774995786425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6687182101252788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ASTRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ASTRUSDT.json deleted file mode 100644 index 1e09a10e5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1171.3951761180147, - "auto_unstuck_ema_dist": -0.03289594671909857, - "auto_unstuck_qty_pct": 0.03790654480684425, - "auto_unstuck_wallet_exposure_threshold": 0.4662098668657322, - "backwards_tp": true, - "ddown_factor": 0.6431516620733384, - "ema_span_0": 662.8750231341215, - "ema_span_1": 224.01205655366653, - "enabled": true, - "initial_eprice_ema_dist": -0.03972123621558579, - "initial_qty_pct": 0.011879224131437638, - "markup_range": 0.0004001047540495883, - "min_markup": 0.003715370275767813, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024205606296240436, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5472308706945394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ATAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ATAUSDT.json deleted file mode 100644 index cbacb594d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.0133962652421, - "auto_unstuck_ema_dist": -0.03810156746565464, - "auto_unstuck_qty_pct": 0.010621091267100471, - "auto_unstuck_wallet_exposure_threshold": 0.8839614545124952, - "backwards_tp": true, - "ddown_factor": 0.13549831550056682, - "ema_span_0": 879.4449951953482, - "ema_span_1": 712.9824463030832, - "enabled": true, - "initial_eprice_ema_dist": -0.0038655887611113737, - "initial_qty_pct": 0.010060107146046528, - "markup_range": 0.0021902992197724487, - "min_markup": 0.009607437935161195, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026204737086433196, - "rentry_pprice_dist_wallet_exposure_weighting": 7.682898617350267, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1244.9359735169262, - "auto_unstuck_ema_dist": -0.01897344454943382, - "auto_unstuck_qty_pct": 0.05687419716122635, - "auto_unstuck_wallet_exposure_threshold": 0.3931758427274342, - "backwards_tp": true, - "ddown_factor": 0.3150842595034684, - "ema_span_0": 1077.3250045570653, - "ema_span_1": 1255.1196312319362, - "enabled": true, - "initial_eprice_ema_dist": 0.0022262841978470515, - "initial_qty_pct": 0.015417750770025268, - "markup_range": 0.008072400072075877, - "min_markup": 0.008045625129692213, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015278403347456532, - "rentry_pprice_dist_wallet_exposure_weighting": 10.885973069166619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ATOMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ATOMUSDT.json deleted file mode 100644 index 33f934f32..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 817.3839601148987, - "auto_unstuck_ema_dist": -0.056747177167555, - "auto_unstuck_qty_pct": 0.012467608336580227, - "auto_unstuck_wallet_exposure_threshold": 0.44505116465567496, - "backwards_tp": true, - "ddown_factor": 1.276389127776389, - "ema_span_0": 312.422966055438, - "ema_span_1": 747.3451446818881, - "enabled": true, - "initial_eprice_ema_dist": -0.006776686937736162, - "initial_qty_pct": 0.01, - "markup_range": 0.0044972982347013515, - "min_markup": 0.0012946220207993191, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02877369381592201, - "rentry_pprice_dist_wallet_exposure_weighting": 3.920681694766142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AUDIOUSDT.json deleted file mode 100644 index e3cbdea13..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 840.2253484700655, - "auto_unstuck_ema_dist": -0.023366736797704436, - "auto_unstuck_qty_pct": 0.025650539557371923, - "auto_unstuck_wallet_exposure_threshold": 0.8164346940880333, - "backwards_tp": true, - "ddown_factor": 2.1210336039706976, - "ema_span_0": 182.65054021194098, - "ema_span_1": 824.5436126292714, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999868387410884, - "initial_qty_pct": 0.012094147367994306, - "markup_range": 0.006698144904276781, - "min_markup": 0.003487712386149594, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04350474406167253, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1573575779480527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1052.7374738906133, - "auto_unstuck_ema_dist": -0.031505137125817845, - "auto_unstuck_qty_pct": 0.05160105018671314, - "auto_unstuck_wallet_exposure_threshold": 0.6155351341710021, - "backwards_tp": true, - "ddown_factor": 0.15087854649584473, - "ema_span_0": 1130.8026080393772, - "ema_span_1": 529.9791534916235, - "enabled": true, - "initial_eprice_ema_dist": -0.005576969821565916, - "initial_qty_pct": 0.01026401603862885, - "markup_range": 0.0006160178850496073, - "min_markup": 0.005070656649523753, - "n_close_orders": 16, - "rentry_pprice_dist": 0.026595456689010914, - "rentry_pprice_dist_wallet_exposure_weighting": 8.468819758742796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AVAXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AVAXUSDT.json deleted file mode 100644 index 84b466118..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1180.3282469709172, - "auto_unstuck_ema_dist": -0.034197507442325775, - "auto_unstuck_qty_pct": 0.013508122710235493, - "auto_unstuck_wallet_exposure_threshold": 0.7552067913740576, - "backwards_tp": true, - "ddown_factor": 0.6435954264447268, - "ema_span_0": 1172.8189135701862, - "ema_span_1": 1170.7556149939874, - "enabled": true, - "initial_eprice_ema_dist": 0.0021486050451476166, - "initial_qty_pct": 0.014799761399763151, - "markup_range": 0.004401069400994476, - "min_markup": 0.0072372265864400305, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03286442339201806, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7374068000441876, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 991.737273229216, - "auto_unstuck_ema_dist": -0.025931399380178, - "auto_unstuck_qty_pct": 0.036697628704257565, - "auto_unstuck_wallet_exposure_threshold": 0.2481689876647487, - "backwards_tp": true, - "ddown_factor": 0.6896885675918398, - "ema_span_0": 446.0813074281135, - "ema_span_1": 893.6527333000228, - "enabled": true, - "initial_eprice_ema_dist": -0.012390923904552665, - "initial_qty_pct": 0.012522397921741313, - "markup_range": 0.0022770223317218528, - "min_markup": 0.007256661421782616, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04066505177112183, - "rentry_pprice_dist_wallet_exposure_weighting": 3.583344944004282, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AXSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AXSUSDT.json deleted file mode 100644 index 373c9b5fb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 624.3089925081796, - "auto_unstuck_ema_dist": -0.0017944000823634481, - "auto_unstuck_qty_pct": 0.02446324280553036, - "auto_unstuck_wallet_exposure_threshold": 0.4269709171398361, - "backwards_tp": true, - "ddown_factor": 2.569052200097769, - "ema_span_0": 76.7157792911941, - "ema_span_1": 272.16118391542665, - "enabled": true, - "initial_eprice_ema_dist": -0.005833778322180691, - "initial_qty_pct": 0.01, - "markup_range": 0.0015830051811291088, - "min_markup": 0.00228714675573091, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04679073998919632, - "rentry_pprice_dist_wallet_exposure_weighting": 2.529935417331788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BAKEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BAKEUSDT.json deleted file mode 100644 index 3517e2f5e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BALUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BALUSDT.json deleted file mode 100644 index 4990b8535..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 609.4432295179275, - "auto_unstuck_ema_dist": -0.01761964243122426, - "auto_unstuck_qty_pct": 0.04728305432954066, - "auto_unstuck_wallet_exposure_threshold": 0.33105001776319165, - "backwards_tp": true, - "ddown_factor": 2.3753274156474884, - "ema_span_0": 164.5043268094741, - "ema_span_1": 649.9469384149091, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998184465358404, - "initial_qty_pct": 0.015907509641463684, - "markup_range": 0.001972808155754652, - "min_markup": 0.0036614253279494365, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04207745270351028, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7699467635678583, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1330.2415066696112, - "auto_unstuck_ema_dist": -0.061698419252593374, - "auto_unstuck_qty_pct": 0.01031715558195571, - "auto_unstuck_wallet_exposure_threshold": 0.8242779866682238, - "backwards_tp": true, - "ddown_factor": 2.89268129005806, - "ema_span_0": 1236.6524686998243, - "ema_span_1": 1395.0720821171149, - "enabled": true, - "initial_eprice_ema_dist": 0.0017503195992355023, - "initial_qty_pct": 0.015359562884602053, - "markup_range": 0.0022515983872850374, - "min_markup": 0.00999948834769537, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04355910762246303, - "rentry_pprice_dist_wallet_exposure_weighting": 5.155530709773846, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BANDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BANDUSDT.json deleted file mode 100644 index 7d269d1b9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1337.5529707639332, - "auto_unstuck_ema_dist": -0.05020461680353659, - "auto_unstuck_qty_pct": 0.07828868072603543, - "auto_unstuck_wallet_exposure_threshold": 0.2787587408018727, - "backwards_tp": true, - "ddown_factor": 0.42304356579042734, - "ema_span_0": 558.696331326078, - "ema_span_1": 497.41826851902977, - "enabled": true, - "initial_eprice_ema_dist": -0.07868331010891629, - "initial_qty_pct": 0.013227954188797108, - "markup_range": 0.005307012362471756, - "min_markup": 0.005529113634834855, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04494425483032159, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18006314432965925, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 941.4323959245721, - "auto_unstuck_ema_dist": 0.0023329875617506602, - "auto_unstuck_qty_pct": 0.0126490136306326, - "auto_unstuck_wallet_exposure_threshold": 0.25259142081462765, - "backwards_tp": true, - "ddown_factor": 1.9679132344408845, - "ema_span_0": 383.4272934679048, - "ema_span_1": 1024.1897294780908, - "enabled": true, - "initial_eprice_ema_dist": 0.002885808542863266, - "initial_qty_pct": 0.016666237623390062, - "markup_range": 0.006212579109507224, - "min_markup": 0.00215945346470992, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987230688573202, - "rentry_pprice_dist_wallet_exposure_weighting": 8.31253150074425, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BATUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BATUSDT.json deleted file mode 100644 index b908fc1c4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.0133962652421, - "auto_unstuck_ema_dist": -0.03810156746565464, - "auto_unstuck_qty_pct": 0.010621091267100471, - "auto_unstuck_wallet_exposure_threshold": 0.8839614545124952, - "backwards_tp": true, - "ddown_factor": 0.13549831550056682, - "ema_span_0": 879.4449951953482, - "ema_span_1": 712.9824463030832, - "enabled": true, - "initial_eprice_ema_dist": -0.0038655887611113737, - "initial_qty_pct": 0.010060107146046528, - "markup_range": 0.0021902992197724487, - "min_markup": 0.009607437935161195, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026204737086433196, - "rentry_pprice_dist_wallet_exposure_weighting": 7.682898617350267, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 604.3734067878169, - "auto_unstuck_ema_dist": -0.06446347978939816, - "auto_unstuck_qty_pct": 0.03669038167216459, - "auto_unstuck_wallet_exposure_threshold": 0.41824510740652787, - "backwards_tp": true, - "ddown_factor": 1.5620840854479796, - "ema_span_0": 804.6040657029997, - "ema_span_1": 1179.5326620805217, - "enabled": true, - "initial_eprice_ema_dist": -0.0015520705471813708, - "initial_qty_pct": 0.017769292909161603, - "markup_range": 0.0009876995703612084, - "min_markup": 0.0028894638890678004, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030682840736426662, - "rentry_pprice_dist_wallet_exposure_weighting": 3.250307551588876, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BCHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BCHUSDT.json deleted file mode 100644 index 2ba95507f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1133.5455396076816, - "auto_unstuck_ema_dist": -0.004710557764050445, - "auto_unstuck_qty_pct": 0.03964236728860161, - "auto_unstuck_wallet_exposure_threshold": 0.45621867392956356, - "backwards_tp": true, - "ddown_factor": 1.849160021904362, - "ema_span_0": 28.281272578153466, - "ema_span_1": 5.012448083591491, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011495775357664509, - "markup_range": 0.0017590601541578152, - "min_markup": 0.0019419930076712746, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015024781549036277, - "rentry_pprice_dist_wallet_exposure_weighting": 6.079346889259036, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1239.5398828537122, - "auto_unstuck_ema_dist": 0.0011002178656988298, - "auto_unstuck_qty_pct": 0.040879571278322355, - "auto_unstuck_wallet_exposure_threshold": 0.8965749947588251, - "backwards_tp": true, - "ddown_factor": 1.7047054543885927, - "ema_span_0": 379.214100284615, - "ema_span_1": 1421.6821458320787, - "enabled": true, - "initial_eprice_ema_dist": -0.0003425739829469274, - "initial_qty_pct": 0.014884243887259483, - "markup_range": 0.005591416742867247, - "min_markup": 0.004547267453440362, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04413645431110037, - "rentry_pprice_dist_wallet_exposure_weighting": 7.462635340608269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BELUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BELUSDT.json deleted file mode 100644 index 398a13209..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.1061968749314, - "auto_unstuck_ema_dist": -0.047799157059145704, - "auto_unstuck_qty_pct": 0.045836063938134164, - "auto_unstuck_wallet_exposure_threshold": 0.25061006079449666, - "backwards_tp": true, - "ddown_factor": 0.16790114470770964, - "ema_span_0": 917.0528472427542, - "ema_span_1": 768.3790918391155, - "enabled": true, - "initial_eprice_ema_dist": -0.04571168466061672, - "initial_qty_pct": 0.01185591467007671, - "markup_range": 0.004338403926901329, - "min_markup": 0.005242110555148903, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04071013208908112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3705348314980489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 778.4050444128148, - "auto_unstuck_ema_dist": -0.046234187700963436, - "auto_unstuck_qty_pct": 0.020587000340633592, - "auto_unstuck_wallet_exposure_threshold": 0.8440980780103854, - "backwards_tp": true, - "ddown_factor": 0.3597290201625506, - "ema_span_0": 1367.705665487707, - "ema_span_1": 1143.914988418785, - "enabled": true, - "initial_eprice_ema_dist": -0.006151138065125043, - "initial_qty_pct": 0.010201358534327661, - "markup_range": 0.0008282511433073973, - "min_markup": 0.007026727241610112, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03521502346438065, - "rentry_pprice_dist_wallet_exposure_weighting": 19.34284865877356, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLUEBIRDUSDT.json deleted file mode 100644 index d622fd88e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1080.689421277476, - "auto_unstuck_ema_dist": -0.0006892130223884805, - "auto_unstuck_qty_pct": 0.011243587633196769, - "auto_unstuck_wallet_exposure_threshold": 0.46025009243548076, - "backwards_tp": true, - "ddown_factor": 1.1093171300739098, - "ema_span_0": 972.2236838364724, - "ema_span_1": 963.8295577515664, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.016301641610812333, - "markup_range": 0.0010408932979570494, - "min_markup": 0.002477322800634059, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027091724833210765, - "rentry_pprice_dist_wallet_exposure_weighting": 11.531284875668135, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLURUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLURUSDT.json deleted file mode 100644 index c5a5aba8c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 858.9120509049447, - "auto_unstuck_ema_dist": -0.025186318663159925, - "auto_unstuck_qty_pct": 0.010765006854872246, - "auto_unstuck_wallet_exposure_threshold": 0.2617268582249943, - "backwards_tp": true, - "ddown_factor": 0.3191326770188785, - "ema_span_0": 1176.1146877147062, - "ema_span_1": 423.45577642854465, - "enabled": true, - "initial_eprice_ema_dist": -0.08005963311537093, - "initial_qty_pct": 0.012626582262506271, - "markup_range": 0.0032991495754256827, - "min_markup": 0.003375833907375293, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029879667152032163, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9238510481158029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1284.387743444144, - "auto_unstuck_ema_dist": -0.07766230205265005, - "auto_unstuck_qty_pct": 0.03107895927937002, - "auto_unstuck_wallet_exposure_threshold": 0.12640373451830655, - "backwards_tp": true, - "ddown_factor": 1.1882889985634295, - "ema_span_0": 460.46873887847516, - "ema_span_1": 354.7577339598585, - "enabled": true, - "initial_eprice_ema_dist": -0.00560566633404924, - "initial_qty_pct": 0.023365374120667547, - "markup_range": 0.004618467099590262, - "min_markup": 0.004519652996313929, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03402654405201672, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84952262791504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLZUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLZUSDT.json deleted file mode 100644 index 0d4156ae4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 452.15904809063693, - "auto_unstuck_ema_dist": -0.014285824690560984, - "auto_unstuck_qty_pct": 0.0521692196603833, - "auto_unstuck_wallet_exposure_threshold": 0.6877551473946163, - "backwards_tp": true, - "ddown_factor": 2.7141105620226256, - "ema_span_0": 508.2213600654218, - "ema_span_1": 946.0034787279218, - "enabled": true, - "initial_eprice_ema_dist": -0.007690320636594495, - "initial_qty_pct": 0.010485765823889966, - "markup_range": 0.002201599882509027, - "min_markup": 0.0020891237062544057, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04192950389909169, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6748235656956307, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BNBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BNBUSDT.json deleted file mode 100644 index 7195e913f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 649.324644096024, - "auto_unstuck_ema_dist": -0.04901849705010845, - "auto_unstuck_qty_pct": 0.014456115085733735, - "auto_unstuck_wallet_exposure_threshold": 0.6358522828853526, - "backwards_tp": true, - "ddown_factor": 1.641192561932807, - "ema_span_0": 223.35252049135775, - "ema_span_1": 420.81427522046374, - "enabled": true, - "initial_eprice_ema_dist": 0.0019384343121365824, - "initial_qty_pct": 0.010055985175192114, - "markup_range": 0.002123077193469862, - "min_markup": 0.003347542691462894, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02133096912438434, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6213245721933132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BNXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BNXUSDT.json deleted file mode 100644 index f0be3d32c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1326.11565083092, - "auto_unstuck_ema_dist": -0.035847091613266276, - "auto_unstuck_qty_pct": 0.010948146381464515, - "auto_unstuck_wallet_exposure_threshold": 0.582212526726604, - "backwards_tp": true, - "ddown_factor": 0.3516173493929475, - "ema_span_0": 643.3492643631461, - "ema_span_1": 26.309945213582424, - "enabled": true, - "initial_eprice_ema_dist": 0.002527736092960598, - "initial_qty_pct": 0.013295145242377033, - "markup_range": 0.008312405968088233, - "min_markup": 0.007847912113510522, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044200522902569, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3732636321146536, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCDOMUSDT.json deleted file mode 100644 index a329e618f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.9344991646772, - "auto_unstuck_ema_dist": -0.022067294005199984, - "auto_unstuck_qty_pct": 0.0633468265035235, - "auto_unstuck_wallet_exposure_threshold": 0.8677564655154589, - "backwards_tp": true, - "ddown_factor": 2.3477472399500536, - "ema_span_0": 639.9315543626221, - "ema_span_1": 264.7796363712572, - "enabled": true, - "initial_eprice_ema_dist": 0.002790338720872738, - "initial_qty_pct": 0.012023729081705743, - "markup_range": 0.0007762143878322973, - "min_markup": 0.002359920488952337, - "n_close_orders": 10, - "rentry_pprice_dist": 0.020252204272458, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1768721282568092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 497.5906534475687, - "auto_unstuck_ema_dist": -0.040869988463281735, - "auto_unstuck_qty_pct": 0.04035802313752252, - "auto_unstuck_wallet_exposure_threshold": 0.3525969403230897, - "backwards_tp": true, - "ddown_factor": 1.3249219853781622, - "ema_span_0": 1357.516125272833, - "ema_span_1": 882.6627710672166, - "enabled": true, - "initial_eprice_ema_dist": -0.002829104421338118, - "initial_qty_pct": 0.010004022601790714, - "markup_range": 0.0003739165593537279, - "min_markup": 0.003807757153799048, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027800515093534164, - "rentry_pprice_dist_wallet_exposure_weighting": 7.443746602756841, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCSTUSDT.json deleted file mode 100644 index b353c985c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCUSDT.json deleted file mode 100644 index a68452dca..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1406.8745656169467, - "auto_unstuck_ema_dist": -0.002415572848165019, - "auto_unstuck_qty_pct": 0.021897124071165935, - "auto_unstuck_wallet_exposure_threshold": 0.41119356496064, - "backwards_tp": true, - "ddown_factor": 2.213351435149487, - "ema_span_0": 1159.1201793595333, - "ema_span_1": 46.038307681490046, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012220313524271685, - "markup_range": 0.0008161976715174526, - "min_markup": 0.0016937394514188538, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04121531657985319, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4651980195192236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTSUSDT.json deleted file mode 100644 index fa2f3cf9d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1145.5888633181269, - "auto_unstuck_ema_dist": -0.03801667604833182, - "auto_unstuck_qty_pct": 0.020755018221725752, - "auto_unstuck_wallet_exposure_threshold": 0.8714155917042538, - "backwards_tp": true, - "ddown_factor": 1.093797502358637, - "ema_span_0": 813.9552274116804, - "ema_span_1": 1198.2705660247493, - "enabled": true, - "initial_eprice_ema_dist": -0.006895167794078618, - "initial_qty_pct": 0.013256818535263622, - "markup_range": 0.00026930762715377053, - "min_markup": 0.009325514000959701, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04483523457129244, - "rentry_pprice_dist_wallet_exposure_weighting": 8.42737001726882, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 801.9407580114595, - "auto_unstuck_ema_dist": -0.014190933471903595, - "auto_unstuck_qty_pct": 0.010313379205851117, - "auto_unstuck_wallet_exposure_threshold": 0.2511233758697617, - "backwards_tp": true, - "ddown_factor": 0.31574023368334203, - "ema_span_0": 857.135134451504, - "ema_span_1": 773.1264732553607, - "enabled": true, - "initial_eprice_ema_dist": -0.0001582595430693864, - "initial_qty_pct": 0.012724713270943724, - "markup_range": 0.0035660663450992, - "min_markup": 0.005328987333979542, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030530973334552264, - "rentry_pprice_dist_wallet_exposure_weighting": 6.417842653221031, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/C98USDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/C98USDT.json deleted file mode 100644 index 0fce4c37f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1065.85241012398, - "auto_unstuck_ema_dist": -0.042811656578468985, - "auto_unstuck_qty_pct": 0.029415949366314063, - "auto_unstuck_wallet_exposure_threshold": 0.5938414176243073, - "backwards_tp": true, - "ddown_factor": 0.6837274524393956, - "ema_span_0": 1213.9497326583946, - "ema_span_1": 558.9840530046024, - "enabled": true, - "initial_eprice_ema_dist": -0.0012086499974279079, - "initial_qty_pct": 0.017540149860911403, - "markup_range": 0.0048921026384613885, - "min_markup": 0.008046855822096683, - "n_close_orders": 6, - "rentry_pprice_dist": 0.031395651969440795, - "rentry_pprice_dist_wallet_exposure_weighting": 10.392174692278287, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CELOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CELOUSDT.json deleted file mode 100644 index f02aac7c2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.5014048895968, - "auto_unstuck_ema_dist": -0.05793007432114491, - "auto_unstuck_qty_pct": 0.034020023849035054, - "auto_unstuck_wallet_exposure_threshold": 0.21273151683759653, - "backwards_tp": true, - "ddown_factor": 1.2621889414343654, - "ema_span_0": 886.320063774315, - "ema_span_1": 529.0373722563329, - "enabled": true, - "initial_eprice_ema_dist": -0.0032858487921914245, - "initial_qty_pct": 0.011398093134326997, - "markup_range": 0.004305612733085813, - "min_markup": 0.005651608238257144, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037283764140798384, - "rentry_pprice_dist_wallet_exposure_weighting": 2.265028732253464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1330.2415066696112, - "auto_unstuck_ema_dist": -0.061698419252593374, - "auto_unstuck_qty_pct": 0.01031715558195571, - "auto_unstuck_wallet_exposure_threshold": 0.8242779866682238, - "backwards_tp": true, - "ddown_factor": 2.89268129005806, - "ema_span_0": 1236.6524686998243, - "ema_span_1": 1395.0720821171149, - "enabled": true, - "initial_eprice_ema_dist": 0.0017503195992355023, - "initial_qty_pct": 0.015359562884602053, - "markup_range": 0.0022515983872850374, - "min_markup": 0.00999948834769537, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04355910762246303, - "rentry_pprice_dist_wallet_exposure_weighting": 5.155530709773846, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CELRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CELRUSDT.json deleted file mode 100644 index cb979e259..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.5698682070658, - "auto_unstuck_ema_dist": -0.014801442370167658, - "auto_unstuck_qty_pct": 0.02973409367529811, - "auto_unstuck_wallet_exposure_threshold": 0.3839097666381447, - "backwards_tp": true, - "ddown_factor": 0.8194972284980494, - "ema_span_0": 1068.2157281516772, - "ema_span_1": 969.3649512649674, - "enabled": true, - "initial_eprice_ema_dist": -0.014871183771151238, - "initial_qty_pct": 0.014914136754572399, - "markup_range": 0.004767313212952974, - "min_markup": 0.004861327976733535, - "n_close_orders": 15, - "rentry_pprice_dist": 0.031864142360379925, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5885794920557245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CFXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CFXUSDT.json deleted file mode 100644 index 9484b3f7d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 736.2454867276975, - "auto_unstuck_ema_dist": -0.027524210060849316, - "auto_unstuck_qty_pct": 0.021182413237384255, - "auto_unstuck_wallet_exposure_threshold": 0.505919993088393, - "backwards_tp": true, - "ddown_factor": 0.7492514963293893, - "ema_span_0": 1017.1017345354385, - "ema_span_1": 833.768028465007, - "enabled": true, - "initial_eprice_ema_dist": -0.05654387178988762, - "initial_qty_pct": 0.01293569502512144, - "markup_range": 0.0004206944188103574, - "min_markup": 0.00633400246237213, - "n_close_orders": 12, - "rentry_pprice_dist": 0.041528393554751464, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7495419107434724, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1196.1165223580242, - "auto_unstuck_ema_dist": -0.05283200501030064, - "auto_unstuck_qty_pct": 0.04945216602205006, - "auto_unstuck_wallet_exposure_threshold": 0.38451833679428693, - "backwards_tp": true, - "ddown_factor": 0.7230957520217839, - "ema_span_0": 1112.2876634636616, - "ema_span_1": 1246.3866483073696, - "enabled": true, - "initial_eprice_ema_dist": 0.0029602392893604648, - "initial_qty_pct": 0.010151256212909776, - "markup_range": 0.009238668241605234, - "min_markup": 0.009998052020141653, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04323949687393191, - "rentry_pprice_dist_wallet_exposure_weighting": 7.36599302417086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CHRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CHRUSDT.json deleted file mode 100644 index c6d894c3d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CHZUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CHZUSDT.json deleted file mode 100644 index e6eea3d9b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 985.2017849579449, - "auto_unstuck_ema_dist": -0.023378153401603537, - "auto_unstuck_qty_pct": 0.022070244023777084, - "auto_unstuck_wallet_exposure_threshold": 0.27480787660526457, - "backwards_tp": true, - "ddown_factor": 1.179697567219471, - "ema_span_0": 823.0366469086534, - "ema_span_1": 976.3246152898656, - "enabled": true, - "initial_eprice_ema_dist": -0.0017140863429902474, - "initial_qty_pct": 0.014058525010545098, - "markup_range": 0.00018532931824882223, - "min_markup": 0.002280893908558229, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03205615816903649, - "rentry_pprice_dist_wallet_exposure_weighting": 8.015088960078147, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 945.743889955694, - "auto_unstuck_ema_dist": -0.023408985245180324, - "auto_unstuck_qty_pct": 0.07328452360829435, - "auto_unstuck_wallet_exposure_threshold": 0.6500826858595128, - "backwards_tp": true, - "ddown_factor": 0.44649079542371406, - "ema_span_0": 5.025049710055566, - "ema_span_1": 837.8383084278364, - "enabled": true, - "initial_eprice_ema_dist": -0.006136700258531128, - "initial_qty_pct": 0.015913919742814003, - "markup_range": 0.0042184362420993075, - "min_markup": 0.004326435927802897, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03594642134242793, - "rentry_pprice_dist_wallet_exposure_weighting": 7.620198800585904, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CKBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CKBUSDT.json deleted file mode 100644 index 35bc7e21f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 719.9872027686143, - "auto_unstuck_ema_dist": -0.022541606308323435, - "auto_unstuck_qty_pct": 0.06270207829324834, - "auto_unstuck_wallet_exposure_threshold": 0.49696955946950716, - "backwards_tp": true, - "ddown_factor": 0.4908205683212454, - "ema_span_0": 851.4823300946229, - "ema_span_1": 283.3880926531075, - "enabled": true, - "initial_eprice_ema_dist": -0.0011106649019491214, - "initial_qty_pct": 0.011064611774235726, - "markup_range": 0.00042112398364548844, - "min_markup": 0.004339088179395441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.010048653902822655, - "rentry_pprice_dist_wallet_exposure_weighting": 11.350702080438928, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COCOSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COCOSUSDT.json deleted file mode 100644 index 9edd206d6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COMBOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COMBOUSDT.json deleted file mode 100644 index eb681d844..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COMPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COMPUSDT.json deleted file mode 100644 index b375fbcb1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1259.2222594547807, - "auto_unstuck_ema_dist": -0.0017839632930156271, - "auto_unstuck_qty_pct": 0.02541223198632915, - "auto_unstuck_wallet_exposure_threshold": 0.22937451812506893, - "backwards_tp": true, - "ddown_factor": 1.528138260958659, - "ema_span_0": 705.4985529229147, - "ema_span_1": 595.2513468178071, - "enabled": true, - "initial_eprice_ema_dist": 0.002993727533351603, - "initial_qty_pct": 0.01148113343595019, - "markup_range": 0.004795730669560148, - "min_markup": 0.008722121698237694, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032535217802581604, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7634190288152283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0157232326517, - "auto_unstuck_ema_dist": 0.002584536889395626, - "auto_unstuck_qty_pct": 0.016067830025278666, - "auto_unstuck_wallet_exposure_threshold": 0.17865852417429198, - "backwards_tp": true, - "ddown_factor": 2.5315985008952455, - "ema_span_0": 859.8164633515628, - "ema_span_1": 778.88727913339, - "enabled": true, - "initial_eprice_ema_dist": 0.0029469027371997873, - "initial_qty_pct": 0.011229049152531517, - "markup_range": 0.004301705171347274, - "min_markup": 0.002964225037769906, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047375817041585104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.041978447464432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COTIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COTIUSDT.json deleted file mode 100644 index 82692d95e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 574.344169418713, - "auto_unstuck_ema_dist": -0.03481422027106388, - "auto_unstuck_qty_pct": 0.03022336328245923, - "auto_unstuck_wallet_exposure_threshold": 0.5323877254111089, - "backwards_tp": true, - "ddown_factor": 1.740088543123524, - "ema_span_0": 884.5670551739261, - "ema_span_1": 639.200551599003, - "enabled": true, - "initial_eprice_ema_dist": -0.06058077213034108, - "initial_qty_pct": 0.01135125357132539, - "markup_range": 0.0038659725400036916, - "min_markup": 0.006632519972629661, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04890431758270741, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4302483058240284, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1205.8576874212906, - "auto_unstuck_ema_dist": -0.0010280624754426477, - "auto_unstuck_qty_pct": 0.01527667510562908, - "auto_unstuck_wallet_exposure_threshold": 0.364379339136935, - "backwards_tp": true, - "ddown_factor": 1.5368027916383185, - "ema_span_0": 848.81336362016, - "ema_span_1": 1335.9007963537538, - "enabled": true, - "initial_eprice_ema_dist": 0.002573964246910236, - "initial_qty_pct": 0.01293312249768614, - "markup_range": 0.005820406918875949, - "min_markup": 0.008544253845760642, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049773570053834607, - "rentry_pprice_dist_wallet_exposure_weighting": 7.267870803124825, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CRVUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CRVUSDT.json deleted file mode 100644 index 49a04bfc9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 840.2253484700655, - "auto_unstuck_ema_dist": -0.023366736797704436, - "auto_unstuck_qty_pct": 0.025650539557371923, - "auto_unstuck_wallet_exposure_threshold": 0.8164346940880333, - "backwards_tp": true, - "ddown_factor": 2.1210336039706976, - "ema_span_0": 182.65054021194098, - "ema_span_1": 824.5436126292714, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999868387410884, - "initial_qty_pct": 0.012094147367994306, - "markup_range": 0.006698144904276781, - "min_markup": 0.003487712386149594, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04350474406167253, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1573575779480527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 711.2337066151758, - "auto_unstuck_ema_dist": -0.010404838650753841, - "auto_unstuck_qty_pct": 0.03779367645397644, - "auto_unstuck_wallet_exposure_threshold": 0.43922809015550485, - "backwards_tp": true, - "ddown_factor": 0.43307557065446145, - "ema_span_0": 927.3567638464951, - "ema_span_1": 930.8845117162875, - "enabled": true, - "initial_eprice_ema_dist": -0.004101479447598992, - "initial_qty_pct": 0.017824415647080507, - "markup_range": 0.0023435444053004077, - "min_markup": 0.0057700813985241415, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04324540175759041, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0777728172464607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CTKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CTKUSDT.json deleted file mode 100644 index d2c8a7688..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 700.4059086427156, - "auto_unstuck_ema_dist": -0.07845595812729256, - "auto_unstuck_qty_pct": 0.015540173980120902, - "auto_unstuck_wallet_exposure_threshold": 0.13678806113154424, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 571.7678101641162, - "ema_span_1": 510.73018023276023, - "enabled": true, - "initial_eprice_ema_dist": 0.001497053787941373, - "initial_qty_pct": 0.033801416538211074, - "markup_range": 0.0017783752531549898, - "min_markup": 0.008500353605879255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04997520271386973, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6438008415612816e-08, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 851.3786579639075, - "auto_unstuck_ema_dist": -0.05356076870047425, - "auto_unstuck_qty_pct": 0.09122179349519374, - "auto_unstuck_wallet_exposure_threshold": 0.16990946756240455, - "backwards_tp": true, - "ddown_factor": 0.13895769806822006, - "ema_span_0": 593.6994695970742, - "ema_span_1": 346.5178180246216, - "enabled": true, - "initial_eprice_ema_dist": -0.012317695889953148, - "initial_qty_pct": 0.010646978159658043, - "markup_range": 0.0035751412565706857, - "min_markup": 0.004524027198142064, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03097564697553242, - "rentry_pprice_dist_wallet_exposure_weighting": 12.927818997717173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CTSIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CTSIUSDT.json deleted file mode 100644 index 9a6b2107f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1434.4048532508102, - "auto_unstuck_ema_dist": -0.04119795370957996, - "auto_unstuck_qty_pct": 0.02658978204492856, - "auto_unstuck_wallet_exposure_threshold": 0.5329906952426845, - "backwards_tp": true, - "ddown_factor": 0.15814353144646867, - "ema_span_0": 641.8772357560645, - "ema_span_1": 925.8446610384227, - "enabled": true, - "initial_eprice_ema_dist": -0.00896323419756504, - "initial_qty_pct": 0.010310682731389692, - "markup_range": 0.00026599646512492193, - "min_markup": 0.007120382197899004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029088387526338844, - "rentry_pprice_dist_wallet_exposure_weighting": 6.059115398462092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CVCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CVCUSDT.json deleted file mode 100644 index 101b5b757..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1033.3587503162703, - "auto_unstuck_ema_dist": -0.039713763863901505, - "auto_unstuck_qty_pct": 0.014837076462468379, - "auto_unstuck_wallet_exposure_threshold": 0.4108600334286868, - "backwards_tp": true, - "ddown_factor": 0.9664681763521198, - "ema_span_0": 1000.484246728451, - "ema_span_1": 23.56752968494623, - "enabled": true, - "initial_eprice_ema_dist": 0.00016004260672259133, - "initial_qty_pct": 0.01079877076958448, - "markup_range": 0.0005517243667842997, - "min_markup": 0.009240136702262336, - "n_close_orders": 15, - "rentry_pprice_dist": 0.048272245968692555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CVXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CVXUSDT.json deleted file mode 100644 index d6c7fc6db..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1432.9054877991916, - "auto_unstuck_ema_dist": -0.056249317424465824, - "auto_unstuck_qty_pct": 0.010329159326857252, - "auto_unstuck_wallet_exposure_threshold": 0.40120993232564806, - "backwards_tp": true, - "ddown_factor": 0.5912278395641893, - "ema_span_0": 1278.158205997059, - "ema_span_1": 868.6484498245891, - "enabled": true, - "initial_eprice_ema_dist": 0.002918840677533508, - "initial_qty_pct": 0.011078568271797849, - "markup_range": 0.008774107991270793, - "min_markup": 0.0083130089286466, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04419898935777256, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 494.05603253061946, - "auto_unstuck_ema_dist": -0.023086856721043724, - "auto_unstuck_qty_pct": 0.010457519227864292, - "auto_unstuck_wallet_exposure_threshold": 0.3066546329339178, - "backwards_tp": true, - "ddown_factor": 1.7231671841906888, - "ema_span_0": 244.46429383843213, - "ema_span_1": 1243.6864537441083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029910277771705474, - "initial_qty_pct": 0.012424905322167275, - "markup_range": 0.0036873421405612793, - "min_markup": 0.002485408498844004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02011957028063695, - "rentry_pprice_dist_wallet_exposure_weighting": 5.759737984134167, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DARUSDT.json deleted file mode 100644 index c6e91de57..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 736.2454867276975, - "auto_unstuck_ema_dist": -0.027524210060849316, - "auto_unstuck_qty_pct": 0.021182413237384255, - "auto_unstuck_wallet_exposure_threshold": 0.505919993088393, - "backwards_tp": true, - "ddown_factor": 0.7492514963293893, - "ema_span_0": 1017.1017345354385, - "ema_span_1": 833.768028465007, - "enabled": true, - "initial_eprice_ema_dist": -0.05654387178988762, - "initial_qty_pct": 0.01293569502512144, - "markup_range": 0.0004206944188103574, - "min_markup": 0.00633400246237213, - "n_close_orders": 12, - "rentry_pprice_dist": 0.041528393554751464, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7495419107434724, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.6006770474733, - "auto_unstuck_ema_dist": -0.006854116150027488, - "auto_unstuck_qty_pct": 0.031644168490077784, - "auto_unstuck_wallet_exposure_threshold": 0.2557531129335714, - "backwards_tp": true, - "ddown_factor": 1.3832185824096965, - "ema_span_0": 1280.9824315832243, - "ema_span_1": 1197.5966306581568, - "enabled": true, - "initial_eprice_ema_dist": -0.04816000304172703, - "initial_qty_pct": 0.010950851120518782, - "markup_range": 0.0008022919858492278, - "min_markup": 0.008683689277631091, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04363476732084077, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4912416058069824, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DASHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DASHUSDT.json deleted file mode 100644 index aa6c2efff..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1284.387743444144, - "auto_unstuck_ema_dist": -0.07766230205265005, - "auto_unstuck_qty_pct": 0.03107895927937002, - "auto_unstuck_wallet_exposure_threshold": 0.12640373451830655, - "backwards_tp": true, - "ddown_factor": 1.1882889985634295, - "ema_span_0": 460.46873887847516, - "ema_span_1": 354.7577339598585, - "enabled": true, - "initial_eprice_ema_dist": -0.00560566633404924, - "initial_qty_pct": 0.023365374120667547, - "markup_range": 0.004618467099590262, - "min_markup": 0.004519652996313929, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03402654405201672, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84952262791504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DEFIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DEFIUSDT.json deleted file mode 100644 index a7b410113..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.286331700472, - "auto_unstuck_ema_dist": -0.027972942878892803, - "auto_unstuck_qty_pct": 0.012904106128991134, - "auto_unstuck_wallet_exposure_threshold": 0.8521738600901125, - "backwards_tp": true, - "ddown_factor": 1.4721600382065791, - "ema_span_0": 631.788590274504, - "ema_span_1": 507.70507795283646, - "enabled": true, - "initial_eprice_ema_dist": -0.06780536466712907, - "initial_qty_pct": 0.01, - "markup_range": 0.0051530070515828546, - "min_markup": 0.0047356588218692595, - "n_close_orders": 9, - "rentry_pprice_dist": 0.031150624560227946, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2998671254163767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DENTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DENTUSDT.json deleted file mode 100644 index 6742531c9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1145.5888633181269, - "auto_unstuck_ema_dist": -0.03801667604833182, - "auto_unstuck_qty_pct": 0.020755018221725752, - "auto_unstuck_wallet_exposure_threshold": 0.8714155917042538, - "backwards_tp": true, - "ddown_factor": 1.093797502358637, - "ema_span_0": 813.9552274116804, - "ema_span_1": 1198.2705660247493, - "enabled": true, - "initial_eprice_ema_dist": -0.006895167794078618, - "initial_qty_pct": 0.013256818535263622, - "markup_range": 0.00026930762715377053, - "min_markup": 0.009325514000959701, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04483523457129244, - "rentry_pprice_dist_wallet_exposure_weighting": 8.42737001726882, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DGBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DGBUSDT.json deleted file mode 100644 index 461512b56..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1045.1101349643511, - "auto_unstuck_ema_dist": -0.01571585197546857, - "auto_unstuck_qty_pct": 0.029158649031222936, - "auto_unstuck_wallet_exposure_threshold": 0.46471032498092524, - "backwards_tp": true, - "ddown_factor": 1.3987351225344555, - "ema_span_0": 1439.9999945685292, - "ema_span_1": 1393.465716936036, - "enabled": true, - "initial_eprice_ema_dist": 0.002700537639421378, - "initial_qty_pct": 0.011376273692095484, - "markup_range": 0.000374350179583882, - "min_markup": 0.0021708143140020926, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04765180199403366, - "rentry_pprice_dist_wallet_exposure_weighting": 11.905707228545854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DOGEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DOGEUSDT.json deleted file mode 100644 index dd3ff3390..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 552.3188758679288, - "auto_unstuck_ema_dist": -0.04591378200206638, - "auto_unstuck_qty_pct": 0.05626107116747149, - "auto_unstuck_wallet_exposure_threshold": 0.4602219946573663, - "backwards_tp": true, - "ddown_factor": 1.3951701518491564, - "ema_span_0": 440.97604187441436, - "ema_span_1": 110.73537403506484, - "enabled": true, - "initial_eprice_ema_dist": -0.04593957402768092, - "initial_qty_pct": 0.02672422218384816, - "markup_range": 0.000498386416717681, - "min_markup": 0.002238448149174809, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029083772205585893, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6158224076439239, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1139.7728995864557, - "auto_unstuck_ema_dist": -0.023081106839934314, - "auto_unstuck_qty_pct": 0.03748571846253171, - "auto_unstuck_wallet_exposure_threshold": 0.7875053927076942, - "backwards_tp": true, - "ddown_factor": 1.263073040551669, - "ema_span_0": 407.8882311368191, - "ema_span_1": 1049.8944842296105, - "enabled": true, - "initial_eprice_ema_dist": 0.00209315761028984, - "initial_qty_pct": 0.010010524281366558, - "markup_range": 0.0022203698473854923, - "min_markup": 0.004680246675885636, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03598159258333229, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0060424074557932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DOTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DOTUSDT.json deleted file mode 100644 index bc7e06c0e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.0876075499077, - "auto_unstuck_ema_dist": -0.025578597821771736, - "auto_unstuck_qty_pct": 0.010585562568991133, - "auto_unstuck_wallet_exposure_threshold": 0.7878922762152266, - "backwards_tp": true, - "ddown_factor": 1.6125197642627378, - "ema_span_0": 1141.7282366837135, - "ema_span_1": 1250.4833011784374, - "enabled": true, - "initial_eprice_ema_dist": 0.0024884006641289263, - "initial_qty_pct": 0.021413105497511464, - "markup_range": 0.00031004193484855674, - "min_markup": 0.004950758087091994, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027220199344188158, - "rentry_pprice_dist_wallet_exposure_weighting": 4.155505234417767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1049.6000700624825, - "auto_unstuck_ema_dist": -0.07016168073678879, - "auto_unstuck_qty_pct": 0.03411226817446472, - "auto_unstuck_wallet_exposure_threshold": 0.41911496881061083, - "backwards_tp": true, - "ddown_factor": 1.4243544030080155, - "ema_span_0": 486.74816073199383, - "ema_span_1": 522.612364856291, - "enabled": true, - "initial_eprice_ema_dist": -0.02199351403309815, - "initial_qty_pct": 0.022715060199545344, - "markup_range": 0.0015981849693865685, - "min_markup": 0.00227441883012074, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03617149292037044, - "rentry_pprice_dist_wallet_exposure_weighting": 3.239183468007264, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DUSKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DUSKUSDT.json deleted file mode 100644 index 4119c8238..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DYDXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DYDXUSDT.json deleted file mode 100644 index cae5af355..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1239.5398828537122, - "auto_unstuck_ema_dist": 0.0011002178656988298, - "auto_unstuck_qty_pct": 0.040879571278322355, - "auto_unstuck_wallet_exposure_threshold": 0.8965749947588251, - "backwards_tp": true, - "ddown_factor": 1.7047054543885927, - "ema_span_0": 379.214100284615, - "ema_span_1": 1421.6821458320787, - "enabled": true, - "initial_eprice_ema_dist": -0.0003425739829469274, - "initial_qty_pct": 0.014884243887259483, - "markup_range": 0.005591416742867247, - "min_markup": 0.004547267453440362, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04413645431110037, - "rentry_pprice_dist_wallet_exposure_weighting": 7.462635340608269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EDUUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EDUUSDT.json deleted file mode 100644 index 747defba8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1430.1668224390223, - "auto_unstuck_ema_dist": -0.05362713067279739, - "auto_unstuck_qty_pct": 0.020551497450486567, - "auto_unstuck_wallet_exposure_threshold": 0.5868761434410041, - "backwards_tp": true, - "ddown_factor": 2.49367560587514, - "ema_span_0": 700.7109127906153, - "ema_span_1": 72.05008311953658, - "enabled": true, - "initial_eprice_ema_dist": -0.06356600773835705, - "initial_qty_pct": 0.011831058904488633, - "markup_range": 0.0012650945306156493, - "min_markup": 0.0028671211460412627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04921412763943395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4515340185734575, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EGLDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EGLDUSDT.json deleted file mode 100644 index 6270ec9cb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 548.0018081711165, - "auto_unstuck_ema_dist": -0.09529681369980958, - "auto_unstuck_qty_pct": 0.013231854366587081, - "auto_unstuck_wallet_exposure_threshold": 0.6954976759037619, - "backwards_tp": true, - "ddown_factor": 0.47480984142740734, - "ema_span_0": 690.0761930646295, - "ema_span_1": 776.427386825719, - "enabled": true, - "initial_eprice_ema_dist": -0.028371232545843603, - "initial_qty_pct": 0.015716904584643306, - "markup_range": 0.001316874522812284, - "min_markup": 0.009930570650023946, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04643869172769503, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2795580038866161, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 811.8069696794367, - "auto_unstuck_ema_dist": -0.05633603566329742, - "auto_unstuck_qty_pct": 0.015906332321682638, - "auto_unstuck_wallet_exposure_threshold": 0.2664719686272888, - "backwards_tp": true, - "ddown_factor": 2.3830249187762216, - "ema_span_0": 521.4481332673926, - "ema_span_1": 310.47130513840716, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013551881854438869, - "markup_range": 0.0014466558665886867, - "min_markup": 0.0046778885964969, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04715683663859728, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0038102242201068777, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ENJUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ENJUSDT.json deleted file mode 100644 index ca134a11c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1287.110167823567, - "auto_unstuck_ema_dist": -0.02092415848880657, - "auto_unstuck_qty_pct": 0.01036977749035834, - "auto_unstuck_wallet_exposure_threshold": 0.5240628344572208, - "backwards_tp": true, - "ddown_factor": 2.207450473015773, - "ema_span_0": 1365.0726499142447, - "ema_span_1": 961.8654839651223, - "enabled": true, - "initial_eprice_ema_dist": 0.0029303512753157696, - "initial_qty_pct": 0.013025845734504818, - "markup_range": 0.007500660136338641, - "min_markup": 0.006319391022263179, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03664537942906481, - "rentry_pprice_dist_wallet_exposure_weighting": 2.83163396143051, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 986.5908726805565, - "auto_unstuck_ema_dist": -0.01823173171224137, - "auto_unstuck_qty_pct": 0.022466129648137705, - "auto_unstuck_wallet_exposure_threshold": 0.31170232385417007, - "backwards_tp": true, - "ddown_factor": 0.9871386911977406, - "ema_span_0": 84.9585407094777, - "ema_span_1": 487.9272576931248, - "enabled": true, - "initial_eprice_ema_dist": -0.0032342487590638807, - "initial_qty_pct": 0.015630480895998534, - "markup_range": 0.0032358892154203157, - "min_markup": 0.006017698894441818, - "n_close_orders": 5, - "rentry_pprice_dist": 0.024428342955028097, - "rentry_pprice_dist_wallet_exposure_weighting": 7.966015112590907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ENSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ENSUSDT.json deleted file mode 100644 index 0fc1ef68d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1019.7280570370905, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.04720451954781402, - "auto_unstuck_wallet_exposure_threshold": 0.541337782205087, - "backwards_tp": true, - "ddown_factor": 1.0984124597176057, - "ema_span_0": 1145.1131894215428, - "ema_span_1": 1166.8004174624189, - "enabled": true, - "initial_eprice_ema_dist": -0.00011677048610017664, - "initial_qty_pct": 0.01653909787573966, - "markup_range": 0.0069204364219696895, - "min_markup": 0.005262482253868771, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03354366422901962, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9223261375717757, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.6362129078252, - "auto_unstuck_ema_dist": -0.06924517801728552, - "auto_unstuck_qty_pct": 0.02462266924412914, - "auto_unstuck_wallet_exposure_threshold": 0.46664326026802394, - "backwards_tp": true, - "ddown_factor": 0.697030467982081, - "ema_span_0": 185.43593708053575, - "ema_span_1": 753.2896049053888, - "enabled": true, - "initial_eprice_ema_dist": -0.024429212687072155, - "initial_qty_pct": 0.015597461647230004, - "markup_range": 0.003133097075519459, - "min_markup": 0.009716022902753809, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03532954687445271, - "rentry_pprice_dist_wallet_exposure_weighting": 4.650179039739776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EOSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EOSUSDT.json deleted file mode 100644 index 14fb92fa9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 838.2146238990925, - "auto_unstuck_ema_dist": -0.019148270672980673, - "auto_unstuck_qty_pct": 0.024831448120799054, - "auto_unstuck_wallet_exposure_threshold": 0.4321698602106777, - "backwards_tp": true, - "ddown_factor": 2.3835056128593073, - "ema_span_0": 1259.7418872876985, - "ema_span_1": 1283.9376549341448, - "enabled": true, - "initial_eprice_ema_dist": -0.006353162151402346, - "initial_qty_pct": 0.017794644420293562, - "markup_range": 0.004237591339261168, - "min_markup": 0.003771987382509844, - "n_close_orders": 9, - "rentry_pprice_dist": 0.042022784002796965, - "rentry_pprice_dist_wallet_exposure_weighting": 3.574420557866411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ETCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ETCUSDT.json deleted file mode 100644 index da37f01a8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1302.9531491971718, - "auto_unstuck_ema_dist": -0.04269128350596152, - "auto_unstuck_qty_pct": 0.03701610852863834, - "auto_unstuck_wallet_exposure_threshold": 0.835821071949986, - "backwards_tp": true, - "ddown_factor": 1.8487626908147374, - "ema_span_0": 693.8661020103932, - "ema_span_1": 674.0136350698602, - "enabled": true, - "initial_eprice_ema_dist": -0.0016118273237717277, - "initial_qty_pct": 0.013285910916325555, - "markup_range": 1.2162363349742814e-07, - "min_markup": 0.0028094452663508253, - "n_close_orders": 15, - "rentry_pprice_dist": 0.022327075780436214, - "rentry_pprice_dist_wallet_exposure_weighting": 2.228088694397499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 550.6713097659875, - "auto_unstuck_ema_dist": -0.07602126198476951, - "auto_unstuck_qty_pct": 0.025549221618325818, - "auto_unstuck_wallet_exposure_threshold": 0.3491359091003833, - "backwards_tp": true, - "ddown_factor": 2.530767602741874, - "ema_span_0": 1358.7496983747205, - "ema_span_1": 751.5189824565573, - "enabled": true, - "initial_eprice_ema_dist": -0.002223418982664084, - "initial_qty_pct": 0.013033658859953034, - "markup_range": 0.004852500302082749, - "min_markup": 0.002356927586404052, - "n_close_orders": 13, - "rentry_pprice_dist": 0.047843413844569686, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0626143278654, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ETHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ETHUSDT.json deleted file mode 100644 index dafa50802..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 494.05603253061946, - "auto_unstuck_ema_dist": -0.023086856721043724, - "auto_unstuck_qty_pct": 0.010457519227864292, - "auto_unstuck_wallet_exposure_threshold": 0.3066546329339178, - "backwards_tp": true, - "ddown_factor": 1.7231671841906888, - "ema_span_0": 244.46429383843213, - "ema_span_1": 1243.6864537441083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029910277771705474, - "initial_qty_pct": 0.012424905322167275, - "markup_range": 0.0036873421405612793, - "min_markup": 0.002485408498844004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02011957028063695, - "rentry_pprice_dist_wallet_exposure_weighting": 5.759737984134167, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FETUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FETUSDT.json deleted file mode 100644 index 2c0fec8b7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 506.5224882796207, - "auto_unstuck_ema_dist": -0.08475240721685956, - "auto_unstuck_qty_pct": 0.012664869049920266, - "auto_unstuck_wallet_exposure_threshold": 0.6532524345340186, - "backwards_tp": true, - "ddown_factor": 2.430144161947593, - "ema_span_0": 528.5455412023842, - "ema_span_1": 367.38161794220684, - "enabled": true, - "initial_eprice_ema_dist": -0.013085618386841582, - "initial_qty_pct": 0.012478838833229434, - "markup_range": 0.0001686732350185735, - "min_markup": 0.0012139802755085118, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03320301387348368, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3745648206115497, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FILUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FILUSDT.json deleted file mode 100644 index d883f7f70..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1434.4048532508102, - "auto_unstuck_ema_dist": -0.04119795370957996, - "auto_unstuck_qty_pct": 0.02658978204492856, - "auto_unstuck_wallet_exposure_threshold": 0.5329906952426845, - "backwards_tp": true, - "ddown_factor": 0.15814353144646867, - "ema_span_0": 641.8772357560645, - "ema_span_1": 925.8446610384227, - "enabled": true, - "initial_eprice_ema_dist": -0.00896323419756504, - "initial_qty_pct": 0.010310682731389692, - "markup_range": 0.00026599646512492193, - "min_markup": 0.007120382197899004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029088387526338844, - "rentry_pprice_dist_wallet_exposure_weighting": 6.059115398462092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 346.30319525825286, - "auto_unstuck_ema_dist": -0.08441630627600388, - "auto_unstuck_qty_pct": 0.07206611101840134, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ddown_factor": 1.0846424243210377, - "ema_span_0": 152.31680260274277, - "ema_span_1": 247.7682295498298, - "enabled": true, - "initial_eprice_ema_dist": -0.03327846826801994, - "initial_qty_pct": 0.019848510587972486, - "markup_range": 0.0069919831199057245, - "min_markup": 0.0022269655280454624, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04268851951270453, - "rentry_pprice_dist_wallet_exposure_weighting": 9.09783142316145, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FLMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FLMUSDT.json deleted file mode 100644 index 67bf65bb6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.508001379091, - "auto_unstuck_ema_dist": -0.020345722654077445, - "auto_unstuck_qty_pct": 0.01150874756017553, - "auto_unstuck_wallet_exposure_threshold": 0.22260963059354943, - "backwards_tp": true, - "ddown_factor": 1.1338733262238185, - "ema_span_0": 535.805181963809, - "ema_span_1": 1115.5868970331305, - "enabled": true, - "initial_eprice_ema_dist": 0.0027281082321336425, - "initial_qty_pct": 0.010193533565066864, - "markup_range": 5.544594397782226e-05, - "min_markup": 0.006216729057299458, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04686081827468278, - "rentry_pprice_dist_wallet_exposure_weighting": 7.564399677643441, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1085.2469038243767, - "auto_unstuck_ema_dist": -0.0008522837364774945, - "auto_unstuck_qty_pct": 0.034925149793132756, - "auto_unstuck_wallet_exposure_threshold": 0.6490792787192579, - "backwards_tp": true, - "ddown_factor": 2.725559413895135, - "ema_span_0": 1246.4041396734856, - "ema_span_1": 721.0164473108881, - "enabled": true, - "initial_eprice_ema_dist": 0.0029069721404982292, - "initial_qty_pct": 0.010264127588465465, - "markup_range": 0.0033129506289670905, - "min_markup": 0.009888300085947158, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04884547885938332, - "rentry_pprice_dist_wallet_exposure_weighting": 12.919813536648693, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FLOWUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FLOWUSDT.json deleted file mode 100644 index ae8676440..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FOOTBALLUSDT.json deleted file mode 100644 index 5870f0311..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1339.1865422605786, - "auto_unstuck_ema_dist": -0.008820788740679682, - "auto_unstuck_qty_pct": 0.0426943188630646, - "auto_unstuck_wallet_exposure_threshold": 0.1635952804712599, - "backwards_tp": true, - "ddown_factor": 0.1681718444888247, - "ema_span_0": 653.6849192955965, - "ema_span_1": 227.5333807116893, - "enabled": true, - "initial_eprice_ema_dist": -0.0030739368686215746, - "initial_qty_pct": 0.02568019576967234, - "markup_range": 8.020159895770236e-18, - "min_markup": 0.005358167510947481, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028331976945844457, - "rentry_pprice_dist_wallet_exposure_weighting": 1.901734260763618, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FTMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FTMUSDT.json deleted file mode 100644 index 0e888ef8a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 219.24025587364116, - "auto_unstuck_ema_dist": -0.031110018685988606, - "auto_unstuck_qty_pct": 0.04574286333718071, - "auto_unstuck_wallet_exposure_threshold": 0.7938257327919622, - "backwards_tp": true, - "ddown_factor": 1.4729323670079542, - "ema_span_0": 705.9617065081634, - "ema_span_1": 343.84837638185144, - "enabled": true, - "initial_eprice_ema_dist": -0.07723899152469553, - "initial_qty_pct": 0.010208818031524187, - "markup_range": 0.0002731984932840805, - "min_markup": 0.0032915637261172713, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04518373796643903, - "rentry_pprice_dist_wallet_exposure_weighting": 7.047808190755242, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FTTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FTTUSDT.json deleted file mode 100644 index bc1cb0d58..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FXSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FXSUSDT.json deleted file mode 100644 index 7432a1a89..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GALAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GALAUSDT.json deleted file mode 100644 index 75a65013e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 495.4222436928258, - "auto_unstuck_ema_dist": -0.03366938661273936, - "auto_unstuck_qty_pct": 0.01673383184525977, - "auto_unstuck_wallet_exposure_threshold": 0.3510112328141472, - "backwards_tp": true, - "ddown_factor": 1.5806327160858866, - "ema_span_0": 484.3642784834503, - "ema_span_1": 605.7961084463778, - "enabled": true, - "initial_eprice_ema_dist": -0.007491668444314763, - "initial_qty_pct": 0.013280292633264815, - "markup_range": 0.0014002674896421781, - "min_markup": 0.0013169611829184312, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02936614450844377, - "rentry_pprice_dist_wallet_exposure_weighting": 1.260473617355105, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 180.0026494518495, - "auto_unstuck_ema_dist": -0.07336423302068806, - "auto_unstuck_qty_pct": 0.08627465065990286, - "auto_unstuck_wallet_exposure_threshold": 0.848358320804483, - "backwards_tp": true, - "ddown_factor": 0.19430869966361974, - "ema_span_0": 943.6782913161207, - "ema_span_1": 704.1832743875825, - "enabled": true, - "initial_eprice_ema_dist": -0.02535374750258631, - "initial_qty_pct": 0.010412039382659187, - "markup_range": 0.008037284803621569, - "min_markup": 0.00675215117047174, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0348493311332146, - "rentry_pprice_dist_wallet_exposure_weighting": 13.69427032059088, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GALUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GALUSDT.json deleted file mode 100644 index 1b2b81d70..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GMTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GMTUSDT.json deleted file mode 100644 index 574614ae5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1152.559527357442, - "auto_unstuck_ema_dist": -0.08512805070919303, - "auto_unstuck_qty_pct": 0.012152217082469208, - "auto_unstuck_wallet_exposure_threshold": 0.10500174205770166, - "backwards_tp": true, - "ddown_factor": 2.736882867458632, - "ema_span_0": 425.2396028163725, - "ema_span_1": 1227.6579283198496, - "enabled": true, - "initial_eprice_ema_dist": 0.0029314464349996902, - "initial_qty_pct": 0.012547339465654919, - "markup_range": 0.0020852667679600984, - "min_markup": 0.00535581163010827, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04344384582108559, - "rentry_pprice_dist_wallet_exposure_weighting": 1.545650266206948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GMXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GMXUSDT.json deleted file mode 100644 index 28a72d847..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.0625161325308, - "auto_unstuck_ema_dist": -0.04102322130771438, - "auto_unstuck_qty_pct": 0.015754744591555958, - "auto_unstuck_wallet_exposure_threshold": 0.6001621741573359, - "backwards_tp": true, - "ddown_factor": 2.409974839588648, - "ema_span_0": 630.2223771424993, - "ema_span_1": 1144.090014263891, - "enabled": true, - "initial_eprice_ema_dist": -0.01886263158942947, - "initial_qty_pct": 0.01619658890391205, - "markup_range": 0.00582821181045555, - "min_markup": 0.001910784087426283, - "n_close_orders": 9, - "rentry_pprice_dist": 0.040478726157756294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6303091650719694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GRTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GRTUSDT.json deleted file mode 100644 index c2124ab43..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 989.6979802865403, - "auto_unstuck_ema_dist": -0.06552328831481484, - "auto_unstuck_qty_pct": 0.059643997393661496, - "auto_unstuck_wallet_exposure_threshold": 0.22562548886806127, - "backwards_tp": true, - "ddown_factor": 0.29761744551568253, - "ema_span_0": 1166.5449730406783, - "ema_span_1": 445.18374580383767, - "enabled": true, - "initial_eprice_ema_dist": -0.03676924025217405, - "initial_qty_pct": 0.010000932612237386, - "markup_range": 0.006650721452244999, - "min_markup": 0.006623138326984291, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03521033289964859, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6574325726503396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 764.836589233481, - "auto_unstuck_ema_dist": -0.011447678780087962, - "auto_unstuck_qty_pct": 0.03089261126952821, - "auto_unstuck_wallet_exposure_threshold": 0.5308399296214803, - "backwards_tp": true, - "ddown_factor": 2.391378616065426, - "ema_span_0": 647.093259209936, - "ema_span_1": 782.8763956569277, - "enabled": true, - "initial_eprice_ema_dist": 9.484880174093183e-05, - "initial_qty_pct": 0.014122768771355385, - "markup_range": 0.0015575536885631706, - "min_markup": 0.005011680267130939, - "n_close_orders": 16, - "rentry_pprice_dist": 0.045054629184439296, - "rentry_pprice_dist_wallet_exposure_weighting": 5.275811116253228, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GTCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GTCUSDT.json deleted file mode 100644 index 433e1827f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1178.6231685632652, - "auto_unstuck_ema_dist": -0.0040485392882242495, - "auto_unstuck_qty_pct": 0.011451125013548141, - "auto_unstuck_wallet_exposure_threshold": 0.1783387007401128, - "backwards_tp": true, - "ddown_factor": 0.4697478660620976, - "ema_span_0": 880.3673716086937, - "ema_span_1": 560.6134404119053, - "enabled": true, - "initial_eprice_ema_dist": 0.0016460685547010478, - "initial_qty_pct": 0.013771896510905402, - "markup_range": 0.004111928834126115, - "min_markup": 0.009126813880013566, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03381589560270764, - "rentry_pprice_dist_wallet_exposure_weighting": 11.130338948321194, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HBARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HBARUSDT.json deleted file mode 100644 index baf975450..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.9344991646772, - "auto_unstuck_ema_dist": -0.022067294005199984, - "auto_unstuck_qty_pct": 0.0633468265035235, - "auto_unstuck_wallet_exposure_threshold": 0.8677564655154589, - "backwards_tp": true, - "ddown_factor": 2.3477472399500536, - "ema_span_0": 639.9315543626221, - "ema_span_1": 264.7796363712572, - "enabled": true, - "initial_eprice_ema_dist": 0.002790338720872738, - "initial_qty_pct": 0.012023729081705743, - "markup_range": 0.0007762143878322973, - "min_markup": 0.002359920488952337, - "n_close_orders": 10, - "rentry_pprice_dist": 0.020252204272458, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1768721282568092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 695.8708016749218, - "auto_unstuck_ema_dist": -0.026733797044542294, - "auto_unstuck_qty_pct": 0.010644607282947088, - "auto_unstuck_wallet_exposure_threshold": 0.8213584530690295, - "backwards_tp": true, - "ddown_factor": 2.5194749808159074, - "ema_span_0": 1019.9579803886394, - "ema_span_1": 1269.3177148261316, - "enabled": true, - "initial_eprice_ema_dist": 0.0021726276377854515, - "initial_qty_pct": 0.013135946449550934, - "markup_range": 0.004144729631045132, - "min_markup": 0.009322855185425492, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03384836518959056, - "rentry_pprice_dist_wallet_exposure_weighting": 13.260271090600716, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HFTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HFTUSDT.json deleted file mode 100644 index a19a405c6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1259.2222594547807, - "auto_unstuck_ema_dist": -0.0017839632930156271, - "auto_unstuck_qty_pct": 0.02541223198632915, - "auto_unstuck_wallet_exposure_threshold": 0.22937451812506893, - "backwards_tp": true, - "ddown_factor": 1.528138260958659, - "ema_span_0": 705.4985529229147, - "ema_span_1": 595.2513468178071, - "enabled": true, - "initial_eprice_ema_dist": 0.002993727533351603, - "initial_qty_pct": 0.01148113343595019, - "markup_range": 0.004795730669560148, - "min_markup": 0.008722121698237694, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032535217802581604, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7634190288152283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HIGHUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HIGHUSDT.json deleted file mode 100644 index fba72b68d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HNTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HNTUSDT.json deleted file mode 100644 index fa3d67843..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.508001379091, - "auto_unstuck_ema_dist": -0.020345722654077445, - "auto_unstuck_qty_pct": 0.01150874756017553, - "auto_unstuck_wallet_exposure_threshold": 0.22260963059354943, - "backwards_tp": true, - "ddown_factor": 1.1338733262238185, - "ema_span_0": 535.805181963809, - "ema_span_1": 1115.5868970331305, - "enabled": true, - "initial_eprice_ema_dist": 0.0027281082321336425, - "initial_qty_pct": 0.010193533565066864, - "markup_range": 5.544594397782226e-05, - "min_markup": 0.006216729057299458, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04686081827468278, - "rentry_pprice_dist_wallet_exposure_weighting": 7.564399677643441, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1285.4776524906954, - "auto_unstuck_ema_dist": -0.0077676671494917235, - "auto_unstuck_qty_pct": 0.023349898448819174, - "auto_unstuck_wallet_exposure_threshold": 0.538307746049205, - "backwards_tp": true, - "ddown_factor": 0.27851794358891974, - "ema_span_0": 1203.3827436384458, - "ema_span_1": 1046.2052272308379, - "enabled": true, - "initial_eprice_ema_dist": 0.0029248734605915047, - "initial_qty_pct": 0.01211897110842163, - "markup_range": 0.0052171750791820065, - "min_markup": 0.0033984141278568998, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03877057805635741, - "rentry_pprice_dist_wallet_exposure_weighting": 10.888312750736782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HOOKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HOOKUSDT.json deleted file mode 100644 index 511d266ce..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1364.8193198621389, - "auto_unstuck_ema_dist": 0.0017253847140640455, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.39474822355155864, - "backwards_tp": true, - "ddown_factor": 0.32627465006028866, - "ema_span_0": 354.90155594933924, - "ema_span_1": 72.25228338158776, - "enabled": true, - "initial_eprice_ema_dist": -0.08839078915513272, - "initial_qty_pct": 0.012763513528238702, - "markup_range": 0.0040825334505985075, - "min_markup": 0.0075644628067014765, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040219140015152234, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4891561976884797, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HOTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HOTUSDT.json deleted file mode 100644 index 8ba4ce5f5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ICPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ICPUSDT.json deleted file mode 100644 index bd63f0424..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 773.8833116684218, - "auto_unstuck_ema_dist": -0.04066419632910171, - "auto_unstuck_qty_pct": 0.03133836406362012, - "auto_unstuck_wallet_exposure_threshold": 0.16591083549683788, - "backwards_tp": true, - "ddown_factor": 0.2335859215846803, - "ema_span_0": 751.7198969571075, - "ema_span_1": 885.956846814527, - "enabled": true, - "initial_eprice_ema_dist": -0.07232146076080855, - "initial_qty_pct": 0.018601681811100484, - "markup_range": 0.0003019330862427853, - "min_markup": 0.005476374741607168, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028152697556863584, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4975740770791492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.0516729249457, - "auto_unstuck_ema_dist": -0.021338228250964944, - "auto_unstuck_qty_pct": 0.041959583333445974, - "auto_unstuck_wallet_exposure_threshold": 0.5843615907440661, - "backwards_tp": true, - "ddown_factor": 1.4381531180839886, - "ema_span_0": 428.0052531046105, - "ema_span_1": 415.3589160279952, - "enabled": true, - "initial_eprice_ema_dist": -0.0010521716521248341, - "initial_qty_pct": 0.010016393403745301, - "markup_range": 0.0005063092824123573, - "min_markup": 0.008346292875921573, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026758342331281937, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9808900950482229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ICXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ICXUSDT.json deleted file mode 100644 index 26cdcdb3c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1304.051596984993, - "auto_unstuck_ema_dist": -0.0025837533429117726, - "auto_unstuck_qty_pct": 0.0643059017878674, - "auto_unstuck_wallet_exposure_threshold": 0.1949273064619864, - "backwards_tp": true, - "ddown_factor": 1.3236337713194344, - "ema_span_0": 1227.559449566079, - "ema_span_1": 1331.6824406397377, - "enabled": true, - "initial_eprice_ema_dist": 0.002999856240692003, - "initial_qty_pct": 0.014191288975018854, - "markup_range": 0.00878601822501439, - "min_markup": 0.008942494339951583, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04553774995786425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6687182101252788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IDEXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IDEXUSDT.json deleted file mode 100644 index bc4776a86..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.3525176086591, - "auto_unstuck_ema_dist": -0.07656735428624055, - "auto_unstuck_qty_pct": 0.021838379032100265, - "auto_unstuck_wallet_exposure_threshold": 0.496023458437927, - "backwards_tp": true, - "ddown_factor": 1.226712512400181, - "ema_span_0": 863.4530586023168, - "ema_span_1": 792.582840379283, - "enabled": true, - "initial_eprice_ema_dist": 0.0006888268857179727, - "initial_qty_pct": 0.023185693706547786, - "markup_range": 0.006430363012928862, - "min_markup": 0.00478106121183931, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03867047507203283, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8814210004402447, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 316.45288220873886, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.06018920573826103, - "auto_unstuck_wallet_exposure_threshold": 0.3371082332674982, - "backwards_tp": true, - "ddown_factor": 1.320150782408342, - "ema_span_0": 959.656706466029, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "min_markup": 0.0020550098693266805, - "n_close_orders": 12, - "rentry_pprice_dist": 0.005, - "rentry_pprice_dist_wallet_exposure_weighting": 1.415868046896386, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IDUSDT.json deleted file mode 100644 index 1957d8fce..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1432.4030184941907, - "auto_unstuck_ema_dist": -0.07320861915973527, - "auto_unstuck_qty_pct": 0.01905034857328703, - "auto_unstuck_wallet_exposure_threshold": 0.11227541929160423, - "backwards_tp": true, - "ddown_factor": 0.5340798118427715, - "ema_span_0": 551.399155721459, - "ema_span_1": 153.20519427770577, - "enabled": true, - "initial_eprice_ema_dist": 0.002250154717145872, - "initial_qty_pct": 0.013131818889181211, - "markup_range": 0.0023789798193469057, - "min_markup": 0.004001037949340948, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018620497691417052, - "rentry_pprice_dist_wallet_exposure_weighting": 3.11100367112489, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IMXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IMXUSDT.json deleted file mode 100644 index a624ca242..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 719.9872027686143, - "auto_unstuck_ema_dist": -0.022541606308323435, - "auto_unstuck_qty_pct": 0.06270207829324834, - "auto_unstuck_wallet_exposure_threshold": 0.49696955946950716, - "backwards_tp": true, - "ddown_factor": 0.4908205683212454, - "ema_span_0": 851.4823300946229, - "ema_span_1": 283.3880926531075, - "enabled": true, - "initial_eprice_ema_dist": -0.0011106649019491214, - "initial_qty_pct": 0.011064611774235726, - "markup_range": 0.00042112398364548844, - "min_markup": 0.004339088179395441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.010048653902822655, - "rentry_pprice_dist_wallet_exposure_weighting": 11.350702080438928, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0157232326517, - "auto_unstuck_ema_dist": 0.002584536889395626, - "auto_unstuck_qty_pct": 0.016067830025278666, - "auto_unstuck_wallet_exposure_threshold": 0.17865852417429198, - "backwards_tp": true, - "ddown_factor": 2.5315985008952455, - "ema_span_0": 859.8164633515628, - "ema_span_1": 778.88727913339, - "enabled": true, - "initial_eprice_ema_dist": 0.0029469027371997873, - "initial_qty_pct": 0.011229049152531517, - "markup_range": 0.004301705171347274, - "min_markup": 0.002964225037769906, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047375817041585104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.041978447464432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/INJUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/INJUSDT.json deleted file mode 100644 index 08184201a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 552.3188758679288, - "auto_unstuck_ema_dist": -0.04591378200206638, - "auto_unstuck_qty_pct": 0.05626107116747149, - "auto_unstuck_wallet_exposure_threshold": 0.4602219946573663, - "backwards_tp": true, - "ddown_factor": 1.3951701518491564, - "ema_span_0": 440.97604187441436, - "ema_span_1": 110.73537403506484, - "enabled": true, - "initial_eprice_ema_dist": -0.04593957402768092, - "initial_qty_pct": 0.02672422218384816, - "markup_range": 0.000498386416717681, - "min_markup": 0.002238448149174809, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029083772205585893, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6158224076439239, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1203.1320483487457, - "auto_unstuck_ema_dist": -0.027663850573440434, - "auto_unstuck_qty_pct": 0.02271974676497333, - "auto_unstuck_wallet_exposure_threshold": 0.22145480992702216, - "backwards_tp": true, - "ddown_factor": 2.3236584555904574, - "ema_span_0": 518.8660941334352, - "ema_span_1": 1320.791938810288, - "enabled": true, - "initial_eprice_ema_dist": 0.0029454548395140947, - "initial_qty_pct": 0.013789878989884577, - "markup_range": 0.0036874538935215365, - "min_markup": 0.007421651102673007, - "n_close_orders": 6, - "rentry_pprice_dist": 0.029917285336943544, - "rentry_pprice_dist_wallet_exposure_weighting": 15.795353202691134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOSTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOSTUSDT.json deleted file mode 100644 index 840637dda..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.3525176086591, - "auto_unstuck_ema_dist": -0.07656735428624055, - "auto_unstuck_qty_pct": 0.021838379032100265, - "auto_unstuck_wallet_exposure_threshold": 0.496023458437927, - "backwards_tp": true, - "ddown_factor": 1.226712512400181, - "ema_span_0": 863.4530586023168, - "ema_span_1": 792.582840379283, - "enabled": true, - "initial_eprice_ema_dist": 0.0006888268857179727, - "initial_qty_pct": 0.023185693706547786, - "markup_range": 0.006430363012928862, - "min_markup": 0.00478106121183931, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03867047507203283, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8814210004402447, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1144.2442618306197, - "auto_unstuck_ema_dist": -0.02725688643504398, - "auto_unstuck_qty_pct": 0.033353360513050455, - "auto_unstuck_wallet_exposure_threshold": 0.5688327639004812, - "backwards_tp": true, - "ddown_factor": 1.357783056529547, - "ema_span_0": 1192.6437556200192, - "ema_span_1": 853.1915917278868, - "enabled": true, - "initial_eprice_ema_dist": 0.0024568217105203406, - "initial_qty_pct": 0.012154583407378707, - "markup_range": 0.002370937385035913, - "min_markup": 0.004916468349574035, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030064927058473707, - "rentry_pprice_dist_wallet_exposure_weighting": 14.404949451197037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOTAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOTAUSDT.json deleted file mode 100644 index dfe769ed9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 834.0029116188484, - "auto_unstuck_ema_dist": -0.010282948493069974, - "auto_unstuck_qty_pct": 0.011105479097275736, - "auto_unstuck_wallet_exposure_threshold": 0.4639566879620575, - "backwards_tp": true, - "ddown_factor": 0.10850232916038384, - "ema_span_0": 662.5417928976366, - "ema_span_1": 608.2768981016841, - "enabled": true, - "initial_eprice_ema_dist": -0.018005449912340064, - "initial_qty_pct": 0.011323924551638286, - "markup_range": 0.0022652370016546038, - "min_markup": 0.0059019876787960255, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026310844182199505, - "rentry_pprice_dist_wallet_exposure_weighting": 5.12498198491356, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 769.459340746383, - "auto_unstuck_ema_dist": -0.03224052499565988, - "auto_unstuck_qty_pct": 0.012873110007477661, - "auto_unstuck_wallet_exposure_threshold": 0.48076124226410805, - "backwards_tp": true, - "ddown_factor": 2.3800555924022166, - "ema_span_0": 198.99337656552214, - "ema_span_1": 1155.0533866885862, - "enabled": true, - "initial_eprice_ema_dist": 0.0018696213144642124, - "initial_qty_pct": 0.017869483657856806, - "markup_range": 0.004584279180937303, - "min_markup": 0.0026376937984660272, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0368530099628706, - "rentry_pprice_dist_wallet_exposure_weighting": 0.445664689188811, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOTXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOTXUSDT.json deleted file mode 100644 index 419742daa..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/JASMYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/JASMYUSDT.json deleted file mode 100644 index cae3ea1e6..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/JOEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/JOEUSDT.json deleted file mode 100644 index 137057073..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 986.5908726805565, - "auto_unstuck_ema_dist": -0.01823173171224137, - "auto_unstuck_qty_pct": 0.022466129648137705, - "auto_unstuck_wallet_exposure_threshold": 0.31170232385417007, - "backwards_tp": true, - "ddown_factor": 0.9871386911977406, - "ema_span_0": 84.9585407094777, - "ema_span_1": 487.9272576931248, - "enabled": true, - "initial_eprice_ema_dist": -0.0032342487590638807, - "initial_qty_pct": 0.015630480895998534, - "markup_range": 0.0032358892154203157, - "min_markup": 0.006017698894441818, - "n_close_orders": 5, - "rentry_pprice_dist": 0.024428342955028097, - "rentry_pprice_dist_wallet_exposure_weighting": 7.966015112590907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KAVAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KAVAUSDT.json deleted file mode 100644 index f23634c1f..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 742.1404818564154, - "auto_unstuck_ema_dist": -0.01521192993059986, - "auto_unstuck_qty_pct": 0.012476707192649691, - "auto_unstuck_wallet_exposure_threshold": 0.14091400283952607, - "backwards_tp": true, - "ddown_factor": 1.4734879768734976, - "ema_span_0": 131.37902439282507, - "ema_span_1": 1232.351302491125, - "enabled": true, - "initial_eprice_ema_dist": -0.087802601615617, - "initial_qty_pct": 0.01063099727645586, - "markup_range": 0.0016299283047896205, - "min_markup": 0.0014272788251111957, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04999771866938603, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2925297562824305, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1203.1320483487457, - "auto_unstuck_ema_dist": -0.027663850573440434, - "auto_unstuck_qty_pct": 0.02271974676497333, - "auto_unstuck_wallet_exposure_threshold": 0.22145480992702216, - "backwards_tp": true, - "ddown_factor": 2.3236584555904574, - "ema_span_0": 518.8660941334352, - "ema_span_1": 1320.791938810288, - "enabled": true, - "initial_eprice_ema_dist": 0.0029454548395140947, - "initial_qty_pct": 0.013789878989884577, - "markup_range": 0.0036874538935215365, - "min_markup": 0.007421651102673007, - "n_close_orders": 6, - "rentry_pprice_dist": 0.029917285336943544, - "rentry_pprice_dist_wallet_exposure_weighting": 15.795353202691134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KEYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KEYUSDT.json deleted file mode 100644 index c2b0a3871..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 412.76501089247114, - "auto_unstuck_ema_dist": -0.059439321560243945, - "auto_unstuck_qty_pct": 0.023367754137491693, - "auto_unstuck_wallet_exposure_threshold": 0.3045555354190747, - "backwards_tp": true, - "ddown_factor": 2.5342759684884353, - "ema_span_0": 771.2458507511448, - "ema_span_1": 986.9091563792869, - "enabled": true, - "initial_eprice_ema_dist": -0.04594610363561374, - "initial_qty_pct": 0.011119970001968283, - "markup_range": 0.0022155009490971477, - "min_markup": 0.0029076471167654027, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033601727314308175, - "rentry_pprice_dist_wallet_exposure_weighting": 8.480288378040697, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KLAYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KLAYUSDT.json deleted file mode 100644 index 324511893..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KNCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KNCUSDT.json deleted file mode 100644 index 3b5a1efdb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 897.8572075043796, - "auto_unstuck_ema_dist": -0.06979527193585025, - "auto_unstuck_qty_pct": 0.026632112678002997, - "auto_unstuck_wallet_exposure_threshold": 0.2371031733027507, - "backwards_tp": true, - "ddown_factor": 0.759596355893983, - "ema_span_0": 979.3595764022335, - "ema_span_1": 1179.4312282598091, - "enabled": true, - "initial_eprice_ema_dist": -0.0072672779678777544, - "initial_qty_pct": 0.01279591081471837, - "markup_range": 0.002388143162346788, - "min_markup": 0.007757315198118319, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04908134559582654, - "rentry_pprice_dist_wallet_exposure_weighting": 4.99466905096419, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 503.3343231300159, - "auto_unstuck_ema_dist": -0.034066425771051664, - "auto_unstuck_qty_pct": 0.02644721833043688, - "auto_unstuck_wallet_exposure_threshold": 0.5496311814218728, - "backwards_tp": true, - "ddown_factor": 1.583873442380138, - "ema_span_0": 723.2797223469373, - "ema_span_1": 869.7218849458369, - "enabled": true, - "initial_eprice_ema_dist": -0.00621468034069134, - "initial_qty_pct": 0.011094988570244607, - "markup_range": 0.007125337993884154, - "min_markup": 0.005512029614315782, - "n_close_orders": 6, - "rentry_pprice_dist": 0.040969189750454785, - "rentry_pprice_dist_wallet_exposure_weighting": 9.66648610809972, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KSMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KSMUSDT.json deleted file mode 100644 index 6623d5cbc..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 491.67370472213344, - "auto_unstuck_ema_dist": -0.03333520590151225, - "auto_unstuck_qty_pct": 0.01759574188657776, - "auto_unstuck_wallet_exposure_threshold": 0.3557653678513413, - "backwards_tp": true, - "ddown_factor": 1.5155713453381439, - "ema_span_0": 763.1274531087291, - "ema_span_1": 604.9571984938061, - "enabled": true, - "initial_eprice_ema_dist": -0.006842045901589304, - "initial_qty_pct": 0.012435039208681126, - "markup_range": 0.0020159207018097015, - "min_markup": 0.0062521750678027595, - "n_close_orders": 14, - "rentry_pprice_dist": 0.036994104867419754, - "rentry_pprice_dist_wallet_exposure_weighting": 1.222990397985032, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 801.9407580114595, - "auto_unstuck_ema_dist": -0.014190933471903595, - "auto_unstuck_qty_pct": 0.010313379205851117, - "auto_unstuck_wallet_exposure_threshold": 0.2511233758697617, - "backwards_tp": true, - "ddown_factor": 0.31574023368334203, - "ema_span_0": 857.135134451504, - "ema_span_1": 773.1264732553607, - "enabled": true, - "initial_eprice_ema_dist": -0.0001582595430693864, - "initial_qty_pct": 0.012724713270943724, - "markup_range": 0.0035660663450992, - "min_markup": 0.005328987333979542, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030530973334552264, - "rentry_pprice_dist_wallet_exposure_weighting": 6.417842653221031, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LDOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LDOUSDT.json deleted file mode 100644 index 99e55a250..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1259.2222594547807, - "auto_unstuck_ema_dist": -0.0017839632930156271, - "auto_unstuck_qty_pct": 0.02541223198632915, - "auto_unstuck_wallet_exposure_threshold": 0.22937451812506893, - "backwards_tp": true, - "ddown_factor": 1.528138260958659, - "ema_span_0": 705.4985529229147, - "ema_span_1": 595.2513468178071, - "enabled": true, - "initial_eprice_ema_dist": 0.002993727533351603, - "initial_qty_pct": 0.01148113343595019, - "markup_range": 0.004795730669560148, - "min_markup": 0.008722121698237694, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032535217802581604, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7634190288152283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LEVERUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LEVERUSDT.json deleted file mode 100644 index af91f5c16..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1198.737532352804, - "auto_unstuck_ema_dist": 0.0021918977925421664, - "auto_unstuck_qty_pct": 0.011737438010278886, - "auto_unstuck_wallet_exposure_threshold": 0.26103788036106523, - "backwards_tp": true, - "ddown_factor": 0.9912031563296594, - "ema_span_0": 1043.6852785172005, - "ema_span_1": 140.47129590575383, - "enabled": true, - "initial_eprice_ema_dist": 0.0010962564206719796, - "initial_qty_pct": 0.021125725836593622, - "markup_range": 0.0017367553867170978, - "min_markup": 0.002391490312542033, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032827292692171564, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10738069449979064, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.6006770474733, - "auto_unstuck_ema_dist": -0.006854116150027488, - "auto_unstuck_qty_pct": 0.031644168490077784, - "auto_unstuck_wallet_exposure_threshold": 0.2557531129335714, - "backwards_tp": true, - "ddown_factor": 1.3832185824096965, - "ema_span_0": 1280.9824315832243, - "ema_span_1": 1197.5966306581568, - "enabled": true, - "initial_eprice_ema_dist": -0.04816000304172703, - "initial_qty_pct": 0.010950851120518782, - "markup_range": 0.0008022919858492278, - "min_markup": 0.008683689277631091, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04363476732084077, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4912416058069824, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LINAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LINAUSDT.json deleted file mode 100644 index eb1ef5601..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1430.1668224390223, - "auto_unstuck_ema_dist": -0.05362713067279739, - "auto_unstuck_qty_pct": 0.020551497450486567, - "auto_unstuck_wallet_exposure_threshold": 0.5868761434410041, - "backwards_tp": true, - "ddown_factor": 2.49367560587514, - "ema_span_0": 700.7109127906153, - "ema_span_1": 72.05008311953658, - "enabled": true, - "initial_eprice_ema_dist": -0.06356600773835705, - "initial_qty_pct": 0.011831058904488633, - "markup_range": 0.0012650945306156493, - "min_markup": 0.0028671211460412627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04921412763943395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4515340185734575, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LINKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LINKUSDT.json deleted file mode 100644 index 17cf34143..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1231.6426410653428, - "auto_unstuck_ema_dist": -0.05748370761878396, - "auto_unstuck_qty_pct": 0.028789749824382857, - "auto_unstuck_wallet_exposure_threshold": 0.5079444259373056, - "backwards_tp": true, - "ddown_factor": 2.0637690064248755, - "ema_span_0": 109.69336505104252, - "ema_span_1": 856.6580528313107, - "enabled": true, - "initial_eprice_ema_dist": -0.008767349614441582, - "initial_qty_pct": 0.011176027939568284, - "markup_range": 0.005229384349149898, - "min_markup": 0.0032251654438817836, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027464918695270225, - "rentry_pprice_dist_wallet_exposure_weighting": 2.365643487175211, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1163.7666887890598, - "auto_unstuck_ema_dist": -0.000132176988752781, - "auto_unstuck_qty_pct": 0.014196431422344799, - "auto_unstuck_wallet_exposure_threshold": 0.6178833704992835, - "backwards_tp": true, - "ddown_factor": 2.4162363927264856, - "ema_span_0": 1301.4291548032984, - "ema_span_1": 1210.2408904102049, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.020196845570659296, - "markup_range": 0.0012401572544369862, - "min_markup": 0.00990852417256265, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044351366134989405, - "rentry_pprice_dist_wallet_exposure_weighting": 5.58825902541902, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LITUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LITUSDT.json deleted file mode 100644 index 1dccb9efc..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1128.3380616056659, - "auto_unstuck_ema_dist": -0.0007577399426855052, - "auto_unstuck_qty_pct": 0.013786578725646186, - "auto_unstuck_wallet_exposure_threshold": 0.4959329936266323, - "backwards_tp": true, - "ddown_factor": 2.31469636815924, - "ema_span_0": 841.1697243967782, - "ema_span_1": 1280.4967226310355, - "enabled": true, - "initial_eprice_ema_dist": -0.007051434231811719, - "initial_qty_pct": 0.011398627782633486, - "markup_range": 0.0046376549791754314, - "min_markup": 0.005048979662629166, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04992477110332881, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6627734940095277, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1271.531033271785, - "auto_unstuck_ema_dist": -0.038154228534943505, - "auto_unstuck_qty_pct": 0.047280184105547435, - "auto_unstuck_wallet_exposure_threshold": 0.5901720670315093, - "backwards_tp": true, - "ddown_factor": 1.3079216310170094, - "ema_span_0": 1381.5924818412232, - "ema_span_1": 1135.8954998708723, - "enabled": true, - "initial_eprice_ema_dist": 0.002890947685082422, - "initial_qty_pct": 0.014597448847657063, - "markup_range": 0.017680410805857423, - "min_markup": 0.004077411619346283, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045231223451802596, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1458776833685183, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LPTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LPTUSDT.json deleted file mode 100644 index 7e2603288..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 778.4050444128148, - "auto_unstuck_ema_dist": -0.046234187700963436, - "auto_unstuck_qty_pct": 0.020587000340633592, - "auto_unstuck_wallet_exposure_threshold": 0.8440980780103854, - "backwards_tp": true, - "ddown_factor": 0.3597290201625506, - "ema_span_0": 1367.705665487707, - "ema_span_1": 1143.914988418785, - "enabled": true, - "initial_eprice_ema_dist": -0.006151138065125043, - "initial_qty_pct": 0.010201358534327661, - "markup_range": 0.0008282511433073973, - "min_markup": 0.007026727241610112, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03521502346438065, - "rentry_pprice_dist_wallet_exposure_weighting": 19.34284865877356, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LQTYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LQTYUSDT.json deleted file mode 100644 index e04fc6087..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.286331700472, - "auto_unstuck_ema_dist": -0.027972942878892803, - "auto_unstuck_qty_pct": 0.012904106128991134, - "auto_unstuck_wallet_exposure_threshold": 0.8521738600901125, - "backwards_tp": true, - "ddown_factor": 1.4721600382065791, - "ema_span_0": 631.788590274504, - "ema_span_1": 507.70507795283646, - "enabled": true, - "initial_eprice_ema_dist": -0.06780536466712907, - "initial_qty_pct": 0.01, - "markup_range": 0.0051530070515828546, - "min_markup": 0.0047356588218692595, - "n_close_orders": 9, - "rentry_pprice_dist": 0.031150624560227946, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2998671254163767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1235.8840406812374, - "auto_unstuck_ema_dist": -0.037384765739436776, - "auto_unstuck_qty_pct": 0.026966614074800124, - "auto_unstuck_wallet_exposure_threshold": 0.5166328059906422, - "backwards_tp": true, - "ddown_factor": 0.7371953546002349, - "ema_span_0": 1216.4948135634734, - "ema_span_1": 1245.367835709616, - "enabled": true, - "initial_eprice_ema_dist": -0.017957856863499266, - "initial_qty_pct": 0.018890863420461514, - "markup_range": 0.0030102184005238713, - "min_markup": 0.0048451194858340225, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02562385483832836, - "rentry_pprice_dist_wallet_exposure_weighting": 4.409696708127533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LRCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LRCUSDT.json deleted file mode 100644 index 06dc05e90..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1245.3689807302771, - "auto_unstuck_ema_dist": -0.048893880159856386, - "auto_unstuck_qty_pct": 0.01263497952137548, - "auto_unstuck_wallet_exposure_threshold": 0.4269274676018477, - "backwards_tp": true, - "ddown_factor": 0.6640846821476986, - "ema_span_0": 802.8638169846369, - "ema_span_1": 1011.8946623545947, - "enabled": true, - "initial_eprice_ema_dist": -0.015963108509970812, - "initial_qty_pct": 0.010082685864607121, - "markup_range": 0.0, - "min_markup": 0.00948334096592729, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030262122979023472, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0255169093401957, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 770.6120414764214, - "auto_unstuck_ema_dist": -0.046254362080772084, - "auto_unstuck_qty_pct": 0.04938900293504193, - "auto_unstuck_wallet_exposure_threshold": 0.48072546981362774, - "backwards_tp": true, - "ddown_factor": 0.8487043465970008, - "ema_span_0": 752.6476023708293, - "ema_span_1": 81.09031365118554, - "enabled": true, - "initial_eprice_ema_dist": -0.0003026020361268323, - "initial_qty_pct": 0.010867225221595339, - "markup_range": 0.004024617376947219, - "min_markup": 0.005746977439217133, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04761675209745763, - "rentry_pprice_dist_wallet_exposure_weighting": 5.900241743791237, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LTCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LTCUSDT.json deleted file mode 100644 index b146f4e08..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 412.76501089247114, - "auto_unstuck_ema_dist": -0.059439321560243945, - "auto_unstuck_qty_pct": 0.023367754137491693, - "auto_unstuck_wallet_exposure_threshold": 0.3045555354190747, - "backwards_tp": true, - "ddown_factor": 2.5342759684884353, - "ema_span_0": 771.2458507511448, - "ema_span_1": 986.9091563792869, - "enabled": true, - "initial_eprice_ema_dist": -0.04594610363561374, - "initial_qty_pct": 0.011119970001968283, - "markup_range": 0.0022155009490971477, - "min_markup": 0.0029076471167654027, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033601727314308175, - "rentry_pprice_dist_wallet_exposure_weighting": 8.480288378040697, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0623219599643, - "auto_unstuck_ema_dist": -0.06558042587730512, - "auto_unstuck_qty_pct": 0.03960929233720307, - "auto_unstuck_wallet_exposure_threshold": 0.1725086924500494, - "backwards_tp": true, - "ddown_factor": 1.50463062827136, - "ema_span_0": 1072.471874728127, - "ema_span_1": 655.4716154163949, - "enabled": true, - "initial_eprice_ema_dist": -0.011939529205335576, - "initial_qty_pct": 0.010653893560365259, - "markup_range": 0.0005271272328020045, - "min_markup": 0.0048450133339425, - "n_close_orders": 6, - "rentry_pprice_dist": 0.042426212439265, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1345034353903136, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LUNA2USDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LUNA2USDT.json deleted file mode 100644 index 6d3059a48..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 518.0265326010709, - "auto_unstuck_ema_dist": -0.08388871599925407, - "auto_unstuck_qty_pct": 0.06752449575198048, - "auto_unstuck_wallet_exposure_threshold": 0.5168401512588173, - "backwards_tp": true, - "ddown_factor": 0.3927443827349259, - "ema_span_0": 950.0899753161561, - "ema_span_1": 983.2691607353765, - "enabled": true, - "initial_eprice_ema_dist": 0.0021549412363112306, - "initial_qty_pct": 0.018131366763790988, - "markup_range": 0.00016986761883675878, - "min_markup": 0.006055097728559371, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04004550092768956, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6723618831363485, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MAGICUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MAGICUSDT.json deleted file mode 100644 index 700ad9131..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 755.0872922251828, - "auto_unstuck_ema_dist": -0.02273079978693827, - "auto_unstuck_qty_pct": 0.015248235384753419, - "auto_unstuck_wallet_exposure_threshold": 0.4469573463517241, - "backwards_tp": true, - "ddown_factor": 2.6333243618868143, - "ema_span_0": 1045.0415269413502, - "ema_span_1": 1045.7137054121943, - "enabled": true, - "initial_eprice_ema_dist": -0.0006250004699011116, - "initial_qty_pct": 0.01038862613237722, - "markup_range": 0.003563432566419622, - "min_markup": 0.0029839402302166474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02813202655924393, - "rentry_pprice_dist_wallet_exposure_weighting": 16.696497401494558, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MANAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MANAUSDT.json deleted file mode 100644 index aafb62728..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 506.5224882796207, - "auto_unstuck_ema_dist": -0.08475240721685956, - "auto_unstuck_qty_pct": 0.012664869049920266, - "auto_unstuck_wallet_exposure_threshold": 0.6532524345340186, - "backwards_tp": true, - "ddown_factor": 2.430144161947593, - "ema_span_0": 528.5455412023842, - "ema_span_1": 367.38161794220684, - "enabled": true, - "initial_eprice_ema_dist": -0.013085618386841582, - "initial_qty_pct": 0.012478838833229434, - "markup_range": 0.0001686732350185735, - "min_markup": 0.0012139802755085118, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03320301387348368, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3745648206115497, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1158.9325891988399, - "auto_unstuck_ema_dist": -0.010789940658414052, - "auto_unstuck_qty_pct": 0.02170994873799929, - "auto_unstuck_wallet_exposure_threshold": 0.5451983109460394, - "backwards_tp": true, - "ddown_factor": 2.6822609808195828, - "ema_span_0": 152.26969529097894, - "ema_span_1": 1265.869703051127, - "enabled": true, - "initial_eprice_ema_dist": -0.0017969115048086333, - "initial_qty_pct": 0.019134551290597584, - "markup_range": 0.0023521890733515394, - "min_markup": 0.004081655064817033, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03657314514293422, - "rentry_pprice_dist_wallet_exposure_weighting": 0.39108661477178497, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MASKUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MASKUSDT.json deleted file mode 100644 index ce0af2dba..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1045.1101349643511, - "auto_unstuck_ema_dist": -0.01571585197546857, - "auto_unstuck_qty_pct": 0.029158649031222936, - "auto_unstuck_wallet_exposure_threshold": 0.46471032498092524, - "backwards_tp": true, - "ddown_factor": 1.3987351225344555, - "ema_span_0": 1439.9999945685292, - "ema_span_1": 1393.465716936036, - "enabled": true, - "initial_eprice_ema_dist": 0.002700537639421378, - "initial_qty_pct": 0.011376273692095484, - "markup_range": 0.000374350179583882, - "min_markup": 0.0021708143140020926, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04765180199403366, - "rentry_pprice_dist_wallet_exposure_weighting": 11.905707228545854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MATICUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MATICUSDT.json deleted file mode 100644 index ef5d96ee8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1229.7758528902937, - "auto_unstuck_ema_dist": -0.05914769539771581, - "auto_unstuck_qty_pct": 0.01511902340838162, - "auto_unstuck_wallet_exposure_threshold": 0.6846948705761557, - "backwards_tp": true, - "ddown_factor": 1.8857281633742855, - "ema_span_0": 80.49335874332347, - "ema_span_1": 345.5473243304256, - "enabled": true, - "initial_eprice_ema_dist": -0.005007496036276903, - "initial_qty_pct": 0.012383215418007059, - "markup_range": 0.006375884182639555, - "min_markup": 0.002414722488059609, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029334523491465887, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2189709089235532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.8314242486322, - "auto_unstuck_ema_dist": -0.014109132867766043, - "auto_unstuck_qty_pct": 0.011982754937679857, - "auto_unstuck_wallet_exposure_threshold": 0.5533712695560499, - "backwards_tp": true, - "ddown_factor": 0.8157110446402446, - "ema_span_0": 56.77083987848151, - "ema_span_1": 87.12787490128404, - "enabled": true, - "initial_eprice_ema_dist": -0.001303731885700587, - "initial_qty_pct": 0.010008649130437409, - "markup_range": 0.0018624459240663247, - "min_markup": 0.0041678492617304155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0388560339970892, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9206393347106683, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MAVUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MAVUSDT.json deleted file mode 100644 index d43b13d59..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 700.4059086427156, - "auto_unstuck_ema_dist": -0.07845595812729256, - "auto_unstuck_qty_pct": 0.015540173980120902, - "auto_unstuck_wallet_exposure_threshold": 0.13678806113154424, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 571.7678101641162, - "ema_span_1": 510.73018023276023, - "enabled": true, - "initial_eprice_ema_dist": 0.001497053787941373, - "initial_qty_pct": 0.033801416538211074, - "markup_range": 0.0017783752531549898, - "min_markup": 0.008500353605879255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04997520271386973, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6438008415612816e-08, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MDTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MDTUSDT.json deleted file mode 100644 index eafc74c79..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MINAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MINAUSDT.json deleted file mode 100644 index d5bd77528..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1239.5398828537122, - "auto_unstuck_ema_dist": 0.0011002178656988298, - "auto_unstuck_qty_pct": 0.040879571278322355, - "auto_unstuck_wallet_exposure_threshold": 0.8965749947588251, - "backwards_tp": true, - "ddown_factor": 1.7047054543885927, - "ema_span_0": 379.214100284615, - "ema_span_1": 1421.6821458320787, - "enabled": true, - "initial_eprice_ema_dist": -0.0003425739829469274, - "initial_qty_pct": 0.014884243887259483, - "markup_range": 0.005591416742867247, - "min_markup": 0.004547267453440362, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04413645431110037, - "rentry_pprice_dist_wallet_exposure_weighting": 7.462635340608269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MKRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MKRUSDT.json deleted file mode 100644 index 29df36773..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 773.8833116684218, - "auto_unstuck_ema_dist": -0.04066419632910171, - "auto_unstuck_qty_pct": 0.03133836406362012, - "auto_unstuck_wallet_exposure_threshold": 0.16591083549683788, - "backwards_tp": true, - "ddown_factor": 0.2335859215846803, - "ema_span_0": 751.7198969571075, - "ema_span_1": 885.956846814527, - "enabled": true, - "initial_eprice_ema_dist": -0.07232146076080855, - "initial_qty_pct": 0.018601681811100484, - "markup_range": 0.0003019330862427853, - "min_markup": 0.005476374741607168, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028152697556863584, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4975740770791492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1352.7617384601358, - "auto_unstuck_ema_dist": -0.040154443514631814, - "auto_unstuck_qty_pct": 0.02900908963136855, - "auto_unstuck_wallet_exposure_threshold": 0.2899041749430625, - "backwards_tp": true, - "ddown_factor": 1.5089685052190727, - "ema_span_0": 960.3471237494703, - "ema_span_1": 191.06072559415443, - "enabled": true, - "initial_eprice_ema_dist": -0.0005078808091562436, - "initial_qty_pct": 0.010863382372596432, - "markup_range": 0.0030134067012862567, - "min_markup": 0.0032142797659246297, - "n_close_orders": 16, - "rentry_pprice_dist": 0.030825226549506, - "rentry_pprice_dist_wallet_exposure_weighting": 0.05271144977332768, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MTLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MTLUSDT.json deleted file mode 100644 index 3d67c4b33..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1193.6206872889195, - "auto_unstuck_ema_dist": -0.05579511981364906, - "auto_unstuck_qty_pct": 0.03332696988109261, - "auto_unstuck_wallet_exposure_threshold": 0.4359019572823946, - "backwards_tp": true, - "ddown_factor": 1.8005918156790115, - "ema_span_0": 1413.067973265237, - "ema_span_1": 569.8289959626705, - "enabled": true, - "initial_eprice_ema_dist": 0.0020435183419306004, - "initial_qty_pct": 0.02259657232663932, - "markup_range": 0.002844450604400837, - "min_markup": 0.006232114368637599, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04351715709120132, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1576736117310706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1285.4776524906954, - "auto_unstuck_ema_dist": -0.0077676671494917235, - "auto_unstuck_qty_pct": 0.023349898448819174, - "auto_unstuck_wallet_exposure_threshold": 0.538307746049205, - "backwards_tp": true, - "ddown_factor": 0.27851794358891974, - "ema_span_0": 1203.3827436384458, - "ema_span_1": 1046.2052272308379, - "enabled": true, - "initial_eprice_ema_dist": 0.0029248734605915047, - "initial_qty_pct": 0.01211897110842163, - "markup_range": 0.0052171750791820065, - "min_markup": 0.0033984141278568998, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03877057805635741, - "rentry_pprice_dist_wallet_exposure_weighting": 10.888312750736782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NEARUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NEARUSDT.json deleted file mode 100644 index 6aad980a4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 951.0315852128227, - "auto_unstuck_ema_dist": -0.054365266677498955, - "auto_unstuck_qty_pct": 0.0421423594263849, - "auto_unstuck_wallet_exposure_threshold": 0.7632521372395258, - "backwards_tp": true, - "ddown_factor": 1.6362470821758004, - "ema_span_0": 640.9359730460003, - "ema_span_1": 1396.6224135051925, - "enabled": true, - "initial_eprice_ema_dist": 0.0029929210233953607, - "initial_qty_pct": 0.01132983391595697, - "markup_range": 0.0014870664309704945, - "min_markup": 0.0024172128228521737, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02032427535562934, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8719193316561682, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1.133590120987681, - "auto_unstuck_ema_dist": -0.0664767643547855, - "auto_unstuck_qty_pct": 0.018605667048078367, - "auto_unstuck_wallet_exposure_threshold": 0.7742578216478697, - "backwards_tp": true, - "ddown_factor": 0.20278360704213827, - "ema_span_0": 154.5599272358244, - "ema_span_1": 1231.0969620873752, - "enabled": true, - "initial_eprice_ema_dist": -0.046987987454892195, - "initial_qty_pct": 0.011116774912808925, - "markup_range": 4.864205520845488e-05, - "min_markup": 0.0022461444428992575, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03439328327538153, - "rentry_pprice_dist_wallet_exposure_weighting": 11.458435171750244, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NEOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NEOUSDT.json deleted file mode 100644 index 5088cb3fa..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1235.8840406812374, - "auto_unstuck_ema_dist": -0.037384765739436776, - "auto_unstuck_qty_pct": 0.026966614074800124, - "auto_unstuck_wallet_exposure_threshold": 0.5166328059906422, - "backwards_tp": true, - "ddown_factor": 0.7371953546002349, - "ema_span_0": 1216.4948135634734, - "ema_span_1": 1245.367835709616, - "enabled": true, - "initial_eprice_ema_dist": -0.017957856863499266, - "initial_qty_pct": 0.018890863420461514, - "markup_range": 0.0030102184005238713, - "min_markup": 0.0048451194858340225, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02562385483832836, - "rentry_pprice_dist_wallet_exposure_weighting": 4.409696708127533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NKNUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NKNUSDT.json deleted file mode 100644 index bce39f0e1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1426.8432725392668, - "auto_unstuck_ema_dist": -0.0537457052295863, - "auto_unstuck_qty_pct": 0.06845140103384849, - "auto_unstuck_wallet_exposure_threshold": 0.14000629596631145, - "backwards_tp": true, - "ddown_factor": 0.10296237162534044, - "ema_span_0": 1426.5816725177046, - "ema_span_1": 110.82412535626743, - "enabled": true, - "initial_eprice_ema_dist": 0.001676575955512243, - "initial_qty_pct": 0.040718197832064686, - "markup_range": 0.001653235585679397, - "min_markup": 0.008704813107931636, - "n_close_orders": 8, - "rentry_pprice_dist": 0.043154142723672996, - "rentry_pprice_dist_wallet_exposure_weighting": 0.476104660019888, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1082.6400892274617, - "auto_unstuck_ema_dist": -0.010585155761032911, - "auto_unstuck_qty_pct": 0.04915996998746088, - "auto_unstuck_wallet_exposure_threshold": 0.5982035371420024, - "backwards_tp": true, - "ddown_factor": 0.10179595288180976, - "ema_span_0": 1102.6261926650236, - "ema_span_1": 1124.0338321521367, - "enabled": true, - "initial_eprice_ema_dist": -0.0017944130985196077, - "initial_qty_pct": 0.013467836822571955, - "markup_range": 0.003728965471057704, - "min_markup": 0.009108977123561466, - "n_close_orders": 2, - "rentry_pprice_dist": 0.017788364037062722, - "rentry_pprice_dist_wallet_exposure_weighting": 16.965915308317037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NMRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NMRUSDT.json deleted file mode 100644 index 8ba4ce5f5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OCEANUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OCEANUSDT.json deleted file mode 100644 index 731da88f8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 13.31934697095056, - "auto_unstuck_ema_dist": -0.00448302250874141, - "auto_unstuck_qty_pct": 0.03363261684054123, - "auto_unstuck_wallet_exposure_threshold": 0.1656593498783332, - "backwards_tp": true, - "ddown_factor": 0.39380233674281934, - "ema_span_0": 374.4757279041412, - "ema_span_1": 1093.2235342195024, - "enabled": true, - "initial_eprice_ema_dist": -0.006236935629947386, - "initial_qty_pct": 0.03838950154285531, - "markup_range": 0.0001382444354598916, - "min_markup": 0.006322530966282984, - "n_close_orders": 4, - "rentry_pprice_dist": 0.047993947848387175, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14726328835842412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1244.9359735169262, - "auto_unstuck_ema_dist": -0.01897344454943382, - "auto_unstuck_qty_pct": 0.05687419716122635, - "auto_unstuck_wallet_exposure_threshold": 0.3931758427274342, - "backwards_tp": true, - "ddown_factor": 0.3150842595034684, - "ema_span_0": 1077.3250045570653, - "ema_span_1": 1255.1196312319362, - "enabled": true, - "initial_eprice_ema_dist": 0.0022262841978470515, - "initial_qty_pct": 0.015417750770025268, - "markup_range": 0.008072400072075877, - "min_markup": 0.008045625129692213, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015278403347456532, - "rentry_pprice_dist_wallet_exposure_weighting": 10.885973069166619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OGNUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OGNUSDT.json deleted file mode 100644 index b5b66e320..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 866.0555776178344, - "auto_unstuck_ema_dist": -0.08637813882718187, - "auto_unstuck_qty_pct": 0.022819162528536243, - "auto_unstuck_wallet_exposure_threshold": 0.5771834554129667, - "backwards_tp": true, - "ddown_factor": 1.9648614534752864, - "ema_span_0": 952.3875613538104, - "ema_span_1": 880.7173065557189, - "enabled": true, - "initial_eprice_ema_dist": 0.0007853457849786724, - "initial_qty_pct": 0.02362232978050586, - "markup_range": 0.003082286136945534, - "min_markup": 0.0021495606550390035, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03436088794986574, - "rentry_pprice_dist_wallet_exposure_weighting": 13.16850082449503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 611.9463152951042, - "auto_unstuck_ema_dist": -0.014471107561944073, - "auto_unstuck_qty_pct": 0.07603614782813505, - "auto_unstuck_wallet_exposure_threshold": 0.5002808743996622, - "backwards_tp": true, - "ddown_factor": 1.7215017490252502, - "ema_span_0": 1157.317720817149, - "ema_span_1": 729.7557170273177, - "enabled": true, - "initial_eprice_ema_dist": -0.00865507977218391, - "initial_qty_pct": 0.01209633509651921, - "markup_range": 0.0001272449740963948, - "min_markup": 0.0021935587696774, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03738384623209871, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14559704636166715, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OMGUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OMGUSDT.json deleted file mode 100644 index aec30f61d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 754.3817566760711, - "auto_unstuck_ema_dist": -0.03959689785706191, - "auto_unstuck_qty_pct": 0.05839186716205426, - "auto_unstuck_wallet_exposure_threshold": 0.4665243147969393, - "backwards_tp": true, - "ddown_factor": 0.3892918984394489, - "ema_span_0": 666.0593458341641, - "ema_span_1": 715.4736988281547, - "enabled": true, - "initial_eprice_ema_dist": -0.020047503474721045, - "initial_qty_pct": 0.011967997066845822, - "markup_range": 0.007434691303928223, - "min_markup": 0.007374421800799146, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03758745453753089, - "rentry_pprice_dist_wallet_exposure_weighting": 0.62612044775474, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 663.9082621683893, - "auto_unstuck_ema_dist": -0.029264604761396484, - "auto_unstuck_qty_pct": 0.01028820821909273, - "auto_unstuck_wallet_exposure_threshold": 0.1983137061076403, - "backwards_tp": true, - "ddown_factor": 1.9651840247105272, - "ema_span_0": 79.13725259724187, - "ema_span_1": 40.749166674343826, - "enabled": true, - "initial_eprice_ema_dist": 0.0025600695207464606, - "initial_qty_pct": 0.011047275123784223, - "markup_range": 0.0009398635335428235, - "min_markup": 0.009494696138601521, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04940376968104154, - "rentry_pprice_dist_wallet_exposure_weighting": 0.37247906219716315, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ONEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ONEUSDT.json deleted file mode 100644 index 23a758ab2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 736.2454867276975, - "auto_unstuck_ema_dist": -0.027524210060849316, - "auto_unstuck_qty_pct": 0.021182413237384255, - "auto_unstuck_wallet_exposure_threshold": 0.505919993088393, - "backwards_tp": true, - "ddown_factor": 0.7492514963293893, - "ema_span_0": 1017.1017345354385, - "ema_span_1": 833.768028465007, - "enabled": true, - "initial_eprice_ema_dist": -0.05654387178988762, - "initial_qty_pct": 0.01293569502512144, - "markup_range": 0.0004206944188103574, - "min_markup": 0.00633400246237213, - "n_close_orders": 12, - "rentry_pprice_dist": 0.041528393554751464, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7495419107434724, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1198.9607272481671, - "auto_unstuck_ema_dist": -0.02050804183184122, - "auto_unstuck_qty_pct": 0.052680472110456844, - "auto_unstuck_wallet_exposure_threshold": 0.493301369541931, - "backwards_tp": true, - "ddown_factor": 1.8306802788287628, - "ema_span_0": 1282.2160839779087, - "ema_span_1": 1101.6491755180095, - "enabled": true, - "initial_eprice_ema_dist": -0.0037450154344589883, - "initial_qty_pct": 0.016230448465565542, - "markup_range": 0.00195777650601029, - "min_markup": 0.005258226256418369, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049476254029580495, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5852521684832502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ONTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ONTUSDT.json deleted file mode 100644 index 2d293a1ab..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1326.11565083092, - "auto_unstuck_ema_dist": -0.035847091613266276, - "auto_unstuck_qty_pct": 0.010948146381464515, - "auto_unstuck_wallet_exposure_threshold": 0.582212526726604, - "backwards_tp": true, - "ddown_factor": 0.3516173493929475, - "ema_span_0": 643.3492643631461, - "ema_span_1": 26.309945213582424, - "enabled": true, - "initial_eprice_ema_dist": 0.002527736092960598, - "initial_qty_pct": 0.013295145242377033, - "markup_range": 0.008312405968088233, - "min_markup": 0.007847912113510522, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044200522902569, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3732636321146536, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.0516729249457, - "auto_unstuck_ema_dist": -0.021338228250964944, - "auto_unstuck_qty_pct": 0.041959583333445974, - "auto_unstuck_wallet_exposure_threshold": 0.5843615907440661, - "backwards_tp": true, - "ddown_factor": 1.4381531180839886, - "ema_span_0": 428.0052531046105, - "ema_span_1": 415.3589160279952, - "enabled": true, - "initial_eprice_ema_dist": -0.0010521716521248341, - "initial_qty_pct": 0.010016393403745301, - "markup_range": 0.0005063092824123573, - "min_markup": 0.008346292875921573, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026758342331281937, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9808900950482229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OPUSDT.json deleted file mode 100644 index e7f965eb4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1302.9531491971718, - "auto_unstuck_ema_dist": -0.04269128350596152, - "auto_unstuck_qty_pct": 0.03701610852863834, - "auto_unstuck_wallet_exposure_threshold": 0.835821071949986, - "backwards_tp": true, - "ddown_factor": 1.8487626908147374, - "ema_span_0": 693.8661020103932, - "ema_span_1": 674.0136350698602, - "enabled": true, - "initial_eprice_ema_dist": -0.0016118273237717277, - "initial_qty_pct": 0.013285910916325555, - "markup_range": 1.2162363349742814e-07, - "min_markup": 0.0028094452663508253, - "n_close_orders": 15, - "rentry_pprice_dist": 0.022327075780436214, - "rentry_pprice_dist_wallet_exposure_weighting": 2.228088694397499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PENDLEUSDT.json deleted file mode 100644 index 8cc516dcd..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1426.8432725392668, - "auto_unstuck_ema_dist": -0.0537457052295863, - "auto_unstuck_qty_pct": 0.06845140103384849, - "auto_unstuck_wallet_exposure_threshold": 0.14000629596631145, - "backwards_tp": true, - "ddown_factor": 0.10296237162534044, - "ema_span_0": 1426.5816725177046, - "ema_span_1": 110.82412535626743, - "enabled": true, - "initial_eprice_ema_dist": 0.001676575955512243, - "initial_qty_pct": 0.040718197832064686, - "markup_range": 0.001653235585679397, - "min_markup": 0.008704813107931636, - "n_close_orders": 8, - "rentry_pprice_dist": 0.043154142723672996, - "rentry_pprice_dist_wallet_exposure_weighting": 0.476104660019888, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PEOPLEUSDT.json deleted file mode 100644 index 40ff951d2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 941.4323959245721, - "auto_unstuck_ema_dist": 0.0023329875617506602, - "auto_unstuck_qty_pct": 0.0126490136306326, - "auto_unstuck_wallet_exposure_threshold": 0.25259142081462765, - "backwards_tp": true, - "ddown_factor": 1.9679132344408845, - "ema_span_0": 383.4272934679048, - "ema_span_1": 1024.1897294780908, - "enabled": true, - "initial_eprice_ema_dist": 0.002885808542863266, - "initial_qty_pct": 0.016666237623390062, - "markup_range": 0.006212579109507224, - "min_markup": 0.00215945346470992, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987230688573202, - "rentry_pprice_dist_wallet_exposure_weighting": 8.31253150074425, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PERPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PERPUSDT.json deleted file mode 100644 index 595e46069..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 624.3089925081796, - "auto_unstuck_ema_dist": -0.0017944000823634481, - "auto_unstuck_qty_pct": 0.02446324280553036, - "auto_unstuck_wallet_exposure_threshold": 0.4269709171398361, - "backwards_tp": true, - "ddown_factor": 2.569052200097769, - "ema_span_0": 76.7157792911941, - "ema_span_1": 272.16118391542665, - "enabled": true, - "initial_eprice_ema_dist": -0.005833778322180691, - "initial_qty_pct": 0.01, - "markup_range": 0.0015830051811291088, - "min_markup": 0.00228714675573091, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04679073998919632, - "rentry_pprice_dist_wallet_exposure_weighting": 2.529935417331788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PHBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PHBUSDT.json deleted file mode 100644 index 80487bf6c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.9796909235044, - "auto_unstuck_ema_dist": 0.0004335119523387423, - "auto_unstuck_qty_pct": 0.03419114551949676, - "auto_unstuck_wallet_exposure_threshold": 0.5607912465981395, - "backwards_tp": true, - "ddown_factor": 0.21981978992948273, - "ema_span_0": 684.721853920761, - "ema_span_1": 587.3367515525263, - "enabled": true, - "initial_eprice_ema_dist": -0.011366019759355373, - "initial_qty_pct": 0.013428270540297325, - "markup_range": 0.0044212957130786755, - "min_markup": 0.009020473612600138, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033862980646636835, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6605915676504517, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.7669604640046, - "auto_unstuck_ema_dist": 0.002786919034136599, - "auto_unstuck_qty_pct": 0.03140475838427743, - "auto_unstuck_wallet_exposure_threshold": 0.5574697807190042, - "backwards_tp": true, - "ddown_factor": 1.0498659445078125, - "ema_span_0": 768.3258268178528, - "ema_span_1": 986.7063133340359, - "enabled": true, - "initial_eprice_ema_dist": -0.0185462563652313, - "initial_qty_pct": 0.011031346865379632, - "markup_range": 0.006926949770685151, - "min_markup": 0.0015696813063142627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029295377220877463, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2531454393293293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/QNTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/QNTUSDT.json deleted file mode 100644 index 553165b88..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.7693295717968, - "auto_unstuck_ema_dist": -0.01835440981491446, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.5663047366828919, - "backwards_tp": true, - "ddown_factor": 0.522679800084151, - "ema_span_0": 353.6372947836205, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "min_markup": 0.0037724227320637175, - "n_close_orders": 11, - "rentry_pprice_dist": 0.005, - "rentry_pprice_dist_wallet_exposure_weighting": 14.581978360599434, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/QTUMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/QTUMUSDT.json deleted file mode 100644 index aaebe30c2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1368.1756670538243, - "auto_unstuck_ema_dist": -0.07330997354703737, - "auto_unstuck_qty_pct": 0.011747650192491955, - "auto_unstuck_wallet_exposure_threshold": 0.4736214579573272, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 137.81914493525576, - "ema_span_1": 166.34020854290125, - "enabled": true, - "initial_eprice_ema_dist": -0.04653146127912276, - "initial_qty_pct": 0.01461088098227183, - "markup_range": 0.0011177056140842143, - "min_markup": 0.007515669102516649, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039236672231753575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7250832843519701, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.2805822766504, - "auto_unstuck_ema_dist": -0.07325843982155456, - "auto_unstuck_qty_pct": 0.011601745968877869, - "auto_unstuck_wallet_exposure_threshold": 0.6385581801710455, - "backwards_tp": true, - "ddown_factor": 2.8306938968542577, - "ema_span_0": 1288.8845153327145, - "ema_span_1": 977.5412204392641, - "enabled": true, - "initial_eprice_ema_dist": -0.008992067777609157, - "initial_qty_pct": 0.014887565184760691, - "markup_range": 0.0031432760777118838, - "min_markup": 0.0056327302893143675, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04395146835898657, - "rentry_pprice_dist_wallet_exposure_weighting": 7.363705935363582, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RADUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RADUSDT.json deleted file mode 100644 index b66cbae5e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RAYUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RAYUSDT.json deleted file mode 100644 index 16dbb7c7d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 742.1404818564154, - "auto_unstuck_ema_dist": -0.01521192993059986, - "auto_unstuck_qty_pct": 0.012476707192649691, - "auto_unstuck_wallet_exposure_threshold": 0.14091400283952607, - "backwards_tp": true, - "ddown_factor": 1.4734879768734976, - "ema_span_0": 131.37902439282507, - "ema_span_1": 1232.351302491125, - "enabled": true, - "initial_eprice_ema_dist": -0.087802601615617, - "initial_qty_pct": 0.01063099727645586, - "markup_range": 0.0016299283047896205, - "min_markup": 0.0014272788251111957, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04999771866938603, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2925297562824305, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 479.9248920586266, - "auto_unstuck_ema_dist": -0.01905228639292863, - "auto_unstuck_qty_pct": 0.041483446137165494, - "auto_unstuck_wallet_exposure_threshold": 0.557655390842093, - "backwards_tp": true, - "ddown_factor": 2.147784021517439, - "ema_span_0": 183.7786310952956, - "ema_span_1": 835.8701919148339, - "enabled": true, - "initial_eprice_ema_dist": 0.0011027649608459148, - "initial_qty_pct": 0.012309299975517905, - "markup_range": 0.0006229521848645023, - "min_markup": 0.0033592464959339816, - "n_close_orders": 11, - "rentry_pprice_dist": 0.046556867491589674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16023503516747917, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RDNTUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RDNTUSDT.json deleted file mode 100644 index 5368f3c64..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/REEFUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/REEFUSDT.json deleted file mode 100644 index 2da35b6a2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 700.6357081970953, - "auto_unstuck_ema_dist": -0.052925599076185756, - "auto_unstuck_qty_pct": 0.018516859398697464, - "auto_unstuck_wallet_exposure_threshold": 0.363981944551347, - "backwards_tp": true, - "ddown_factor": 1.8552968911128385, - "ema_span_0": 760.6878645448418, - "ema_span_1": 1140.2129215023758, - "enabled": true, - "initial_eprice_ema_dist": 0.001357827060828643, - "initial_qty_pct": 0.013480610303539475, - "markup_range": 0.0040392739726005985, - "min_markup": 0.005630202834946819, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03291818914453597, - "rentry_pprice_dist_wallet_exposure_weighting": 5.23744332841466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RENUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RENUSDT.json deleted file mode 100644 index f408c90c7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1196.1165223580242, - "auto_unstuck_ema_dist": -0.05283200501030064, - "auto_unstuck_qty_pct": 0.04945216602205006, - "auto_unstuck_wallet_exposure_threshold": 0.38451833679428693, - "backwards_tp": true, - "ddown_factor": 0.7230957520217839, - "ema_span_0": 1112.2876634636616, - "ema_span_1": 1246.3866483073696, - "enabled": true, - "initial_eprice_ema_dist": 0.0029602392893604648, - "initial_qty_pct": 0.010151256212909776, - "markup_range": 0.009238668241605234, - "min_markup": 0.009998052020141653, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04323949687393191, - "rentry_pprice_dist_wallet_exposure_weighting": 7.36599302417086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RLCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RLCUSDT.json deleted file mode 100644 index 6f75d6c8b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.8905920976713, - "auto_unstuck_ema_dist": -0.016939380558704822, - "auto_unstuck_qty_pct": 0.013976248872787709, - "auto_unstuck_wallet_exposure_threshold": 0.12355339590595218, - "backwards_tp": true, - "ddown_factor": 1.6313938279448297, - "ema_span_0": 530.30246136685, - "ema_span_1": 78.12757254475127, - "enabled": true, - "initial_eprice_ema_dist": 0.0023977030968180646, - "initial_qty_pct": 0.016272006657252217, - "markup_range": 0.008797943762849326, - "min_markup": 0.005388076121193682, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04178642120507141, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003687915791838018, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.6362129078252, - "auto_unstuck_ema_dist": -0.06924517801728552, - "auto_unstuck_qty_pct": 0.02462266924412914, - "auto_unstuck_wallet_exposure_threshold": 0.46664326026802394, - "backwards_tp": true, - "ddown_factor": 0.697030467982081, - "ema_span_0": 185.43593708053575, - "ema_span_1": 753.2896049053888, - "enabled": true, - "initial_eprice_ema_dist": -0.024429212687072155, - "initial_qty_pct": 0.015597461647230004, - "markup_range": 0.003133097075519459, - "min_markup": 0.009716022902753809, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03532954687445271, - "rentry_pprice_dist_wallet_exposure_weighting": 4.650179039739776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RNDRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RNDRUSDT.json deleted file mode 100644 index 03e9ebca7..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 770.6120414764214, - "auto_unstuck_ema_dist": -0.046254362080772084, - "auto_unstuck_qty_pct": 0.04938900293504193, - "auto_unstuck_wallet_exposure_threshold": 0.48072546981362774, - "backwards_tp": true, - "ddown_factor": 0.8487043465970008, - "ema_span_0": 752.6476023708293, - "ema_span_1": 81.09031365118554, - "enabled": true, - "initial_eprice_ema_dist": -0.0003026020361268323, - "initial_qty_pct": 0.010867225221595339, - "markup_range": 0.004024617376947219, - "min_markup": 0.005746977439217133, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04761675209745763, - "rentry_pprice_dist_wallet_exposure_weighting": 5.900241743791237, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ROSEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ROSEUSDT.json deleted file mode 100644 index 2ad9508a9..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.3580694829311, - "auto_unstuck_ema_dist": -0.0499130440540471, - "auto_unstuck_qty_pct": 0.011147263389662829, - "auto_unstuck_wallet_exposure_threshold": 0.38876908815985045, - "backwards_tp": true, - "ddown_factor": 2.1932983744435997, - "ema_span_0": 295.34325736350286, - "ema_span_1": 463.19712668719893, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010243943677930595, - "markup_range": 0.001995624564988456, - "min_markup": 0.0031037141845810454, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0329301805607218, - "rentry_pprice_dist_wallet_exposure_weighting": 2.253373217684854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RSRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RSRUSDT.json deleted file mode 100644 index 3c08a8aee..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1250.2126764099833, - "auto_unstuck_ema_dist": -0.06484934336938583, - "auto_unstuck_qty_pct": 0.08967011685000899, - "auto_unstuck_wallet_exposure_threshold": 0.13547358761176562, - "backwards_tp": true, - "ddown_factor": 0.8780899318711353, - "ema_span_0": 1119.6370525177447, - "ema_span_1": 640.4087703364877, - "enabled": true, - "initial_eprice_ema_dist": -0.01039776678713907, - "initial_qty_pct": 0.011479327069111292, - "markup_range": 0.012220041126602398, - "min_markup": 0.009430621442388938, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04968834003121463, - "rentry_pprice_dist_wallet_exposure_weighting": 2.235624056304029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 700.5613696352202, - "auto_unstuck_ema_dist": -0.059072950149775684, - "auto_unstuck_qty_pct": 0.020869976675721807, - "auto_unstuck_wallet_exposure_threshold": 0.40676379197754603, - "backwards_tp": true, - "ddown_factor": 1.4263747857227196, - "ema_span_0": 978.1287120936939, - "ema_span_1": 738.2866828986187, - "enabled": true, - "initial_eprice_ema_dist": 0.0005025554938547656, - "initial_qty_pct": 0.012992525243584368, - "markup_range": 0.0040634477360418555, - "min_markup": 0.008103777563233005, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04734537740402093, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6915333308426989, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RUNEUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RUNEUSDT.json deleted file mode 100644 index dbb9a8838..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1329.3547977286032, - "auto_unstuck_ema_dist": -0.02570232235032514, - "auto_unstuck_qty_pct": 0.036636870792339085, - "auto_unstuck_wallet_exposure_threshold": 0.3504224087334014, - "backwards_tp": true, - "ddown_factor": 0.4356614842040477, - "ema_span_0": 877.5474524205408, - "ema_span_1": 915.2133208065917, - "enabled": true, - "initial_eprice_ema_dist": 0.0021233702796588116, - "initial_qty_pct": 0.010406000938755511, - "markup_range": 0.015722352019257237, - "min_markup": 0.008802024082192172, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04495356639233563, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3238988261801409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1047.388770151157, - "auto_unstuck_ema_dist": -0.07861121428084135, - "auto_unstuck_qty_pct": 0.011477165498259893, - "auto_unstuck_wallet_exposure_threshold": 0.6054281082902808, - "backwards_tp": true, - "ddown_factor": 1.2419148896506769, - "ema_span_0": 1437.4621720486339, - "ema_span_1": 134.89028302123052, - "enabled": true, - "initial_eprice_ema_dist": 0.000991007026715354, - "initial_qty_pct": 0.01, - "markup_range": 0.009404488079389347, - "min_markup": 0.0036691900352486223, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7774192256888247, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RVNUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RVNUSDT.json deleted file mode 100644 index 109ac52eb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1178.2526167985427, - "auto_unstuck_ema_dist": -0.06998222598025104, - "auto_unstuck_qty_pct": 0.03045049872212685, - "auto_unstuck_wallet_exposure_threshold": 0.6696656883737954, - "backwards_tp": true, - "ddown_factor": 1.034334321946488, - "ema_span_0": 681.9927971112224, - "ema_span_1": 433.84130752877667, - "enabled": true, - "initial_eprice_ema_dist": -0.019636613910186257, - "initial_qty_pct": 0.014569396007181377, - "markup_range": 0.00023549653263647174, - "min_markup": 0.004335300496676709, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028709571797075818, - "rentry_pprice_dist_wallet_exposure_weighting": 4.433738552021081, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1080.689421277476, - "auto_unstuck_ema_dist": -0.0006892130223884805, - "auto_unstuck_qty_pct": 0.011243587633196769, - "auto_unstuck_wallet_exposure_threshold": 0.46025009243548076, - "backwards_tp": true, - "ddown_factor": 1.1093171300739098, - "ema_span_0": 972.2236838364724, - "ema_span_1": 963.8295577515664, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.016301641610812333, - "markup_range": 0.0010408932979570494, - "min_markup": 0.002477322800634059, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027091724833210765, - "rentry_pprice_dist_wallet_exposure_weighting": 11.531284875668135, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SANDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SANDUSDT.json deleted file mode 100644 index 52a2d5b34..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1411.305244971533, - "auto_unstuck_ema_dist": -0.03662185288648545, - "auto_unstuck_qty_pct": 0.031265596102013196, - "auto_unstuck_wallet_exposure_threshold": 0.16649332107752438, - "backwards_tp": true, - "ddown_factor": 2.3173881236434393, - "ema_span_0": 609.0388410099256, - "ema_span_1": 668.9384402462479, - "enabled": true, - "initial_eprice_ema_dist": -0.0004264036698503809, - "initial_qty_pct": 0.01093750731365597, - "markup_range": 0.0014253406180808508, - "min_markup": 0.003671635785794729, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024135680059242506, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9088616148749598, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 479.9248920586266, - "auto_unstuck_ema_dist": -0.01905228639292863, - "auto_unstuck_qty_pct": 0.041483446137165494, - "auto_unstuck_wallet_exposure_threshold": 0.557655390842093, - "backwards_tp": true, - "ddown_factor": 2.147784021517439, - "ema_span_0": 183.7786310952956, - "ema_span_1": 835.8701919148339, - "enabled": true, - "initial_eprice_ema_dist": 0.0011027649608459148, - "initial_qty_pct": 0.012309299975517905, - "markup_range": 0.0006229521848645023, - "min_markup": 0.0033592464959339816, - "n_close_orders": 11, - "rentry_pprice_dist": 0.046556867491589674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16023503516747917, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SCUSDT.json deleted file mode 100644 index bb9270b55..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.508001379091, - "auto_unstuck_ema_dist": -0.020345722654077445, - "auto_unstuck_qty_pct": 0.01150874756017553, - "auto_unstuck_wallet_exposure_threshold": 0.22260963059354943, - "backwards_tp": true, - "ddown_factor": 1.1338733262238185, - "ema_span_0": 535.805181963809, - "ema_span_1": 1115.5868970331305, - "enabled": true, - "initial_eprice_ema_dist": 0.0027281082321336425, - "initial_qty_pct": 0.010193533565066864, - "markup_range": 5.544594397782226e-05, - "min_markup": 0.006216729057299458, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04686081827468278, - "rentry_pprice_dist_wallet_exposure_weighting": 7.564399677643441, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1406.8745656169467, - "auto_unstuck_ema_dist": -0.002415572848165019, - "auto_unstuck_qty_pct": 0.021897124071165935, - "auto_unstuck_wallet_exposure_threshold": 0.41119356496064, - "backwards_tp": true, - "ddown_factor": 2.213351435149487, - "ema_span_0": 1159.1201793595333, - "ema_span_1": 46.038307681490046, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012220313524271685, - "markup_range": 0.0008161976715174526, - "min_markup": 0.0016937394514188538, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04121531657985319, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4651980195192236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SFPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SFPUSDT.json deleted file mode 100644 index e00de5b02..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1357.3801608411275, - "auto_unstuck_ema_dist": -0.029571927528488334, - "auto_unstuck_qty_pct": 0.014100017403579593, - "auto_unstuck_wallet_exposure_threshold": 0.14127090526133226, - "backwards_tp": true, - "ddown_factor": 2.7350692283836247, - "ema_span_0": 856.1270924014594, - "ema_span_1": 1402.593675148184, - "enabled": true, - "initial_eprice_ema_dist": 0.0013737422222348957, - "initial_qty_pct": 0.016414536813924203, - "markup_range": 0.0040924503706669235, - "min_markup": 0.003984086234753538, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043123850089135864, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9328079300671605, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1053.1021148028399, - "auto_unstuck_ema_dist": -0.048439292968518524, - "auto_unstuck_qty_pct": 0.026775907565393636, - "auto_unstuck_wallet_exposure_threshold": 0.4202734212601313, - "backwards_tp": true, - "ddown_factor": 1.302040269204191, - "ema_span_0": 197.1164066240147, - "ema_span_1": 263.70082613732944, - "enabled": true, - "initial_eprice_ema_dist": -0.04615743272160144, - "initial_qty_pct": 0.012580051183283161, - "markup_range": 0.0016924979303092895, - "min_markup": 0.003381419564290004, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03885121261806521, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2373996778479605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SKLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SKLUSDT.json deleted file mode 100644 index ad3790d73..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1432.9054877991916, - "auto_unstuck_ema_dist": -0.056249317424465824, - "auto_unstuck_qty_pct": 0.010329159326857252, - "auto_unstuck_wallet_exposure_threshold": 0.40120993232564806, - "backwards_tp": true, - "ddown_factor": 0.5912278395641893, - "ema_span_0": 1278.158205997059, - "ema_span_1": 868.6484498245891, - "enabled": true, - "initial_eprice_ema_dist": 0.002918840677533508, - "initial_qty_pct": 0.011078568271797849, - "markup_range": 0.008774107991270793, - "min_markup": 0.0083130089286466, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04419898935777256, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 604.8792153080825, - "auto_unstuck_ema_dist": -0.001853100616287836, - "auto_unstuck_qty_pct": 0.042043272500399693, - "auto_unstuck_wallet_exposure_threshold": 0.7782522851377379, - "backwards_tp": true, - "ddown_factor": 1.4777716987881295, - "ema_span_0": 966.5095626500749, - "ema_span_1": 727.4551973670439, - "enabled": true, - "initial_eprice_ema_dist": -0.0011991006233535897, - "initial_qty_pct": 0.017320199069556924, - "markup_range": 0.005602340433756267, - "min_markup": 0.0076048490905550725, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04527606892552375, - "rentry_pprice_dist_wallet_exposure_weighting": 3.92041258077347, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SNXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SNXUSDT.json deleted file mode 100644 index abefe4c80..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1364.8193198621389, - "auto_unstuck_ema_dist": 0.0017253847140640455, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.39474822355155864, - "backwards_tp": true, - "ddown_factor": 0.32627465006028866, - "ema_span_0": 354.90155594933924, - "ema_span_1": 72.25228338158776, - "enabled": true, - "initial_eprice_ema_dist": -0.08839078915513272, - "initial_qty_pct": 0.012763513528238702, - "markup_range": 0.0040825334505985075, - "min_markup": 0.0075644628067014765, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040219140015152234, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4891561976884797, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1271.761056712382, - "auto_unstuck_ema_dist": -0.025084779833590438, - "auto_unstuck_qty_pct": 0.017048716211641075, - "auto_unstuck_wallet_exposure_threshold": 0.5897008835171786, - "backwards_tp": true, - "ddown_factor": 1.1432909946235097, - "ema_span_0": 1254.1907481955404, - "ema_span_1": 1263.265259486184, - "enabled": true, - "initial_eprice_ema_dist": -0.00043630804538297635, - "initial_qty_pct": 0.010639884333751501, - "markup_range": 0.009224098182760782, - "min_markup": 0.009057822206619751, - "n_close_orders": 4, - "rentry_pprice_dist": 0.045585289890842644, - "rentry_pprice_dist_wallet_exposure_weighting": 12.672423886455041, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SOLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SOLUSDT.json deleted file mode 100644 index 01fbbef76..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 570.6642736383709, - "auto_unstuck_ema_dist": -0.0703543641935526, - "auto_unstuck_qty_pct": 0.07958409329343162, - "auto_unstuck_wallet_exposure_threshold": 0.7149579370829199, - "backwards_tp": true, - "ddown_factor": 2.255494725067863, - "ema_span_0": 1196.5371633546483, - "ema_span_1": 1151.161402528516, - "enabled": true, - "initial_eprice_ema_dist": 0.00018210303747758468, - "initial_qty_pct": 0.01885901156979771, - "markup_range": 0.000543474515813044, - "min_markup": 0.006983183992124072, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03442873819551257, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5002120985452094, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1105.0823704359764, - "auto_unstuck_ema_dist": -0.037732677892204754, - "auto_unstuck_qty_pct": 0.01336652282437937, - "auto_unstuck_wallet_exposure_threshold": 0.17028964041107603, - "backwards_tp": true, - "ddown_factor": 2.6637813817235907, - "ema_span_0": 1013.7483874558881, - "ema_span_1": 523.9362447353836, - "enabled": true, - "initial_eprice_ema_dist": -0.0018984902891632756, - "initial_qty_pct": 0.010166833986828638, - "markup_range": 0.0012169099850839584, - "min_markup": 0.004200455243126506, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03320686316073599, - "rentry_pprice_dist_wallet_exposure_weighting": 12.779899554241695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SPELLUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SPELLUSDT.json deleted file mode 100644 index 5368f3c64..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SRMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SRMUSDT.json deleted file mode 100644 index 86a2bf987..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 985.2017849579449, - "auto_unstuck_ema_dist": -0.023378153401603537, - "auto_unstuck_qty_pct": 0.022070244023777084, - "auto_unstuck_wallet_exposure_threshold": 0.27480787660526457, - "backwards_tp": true, - "ddown_factor": 1.179697567219471, - "ema_span_0": 823.0366469086534, - "ema_span_1": 976.3246152898656, - "enabled": true, - "initial_eprice_ema_dist": -0.0017140863429902474, - "initial_qty_pct": 0.014058525010545098, - "markup_range": 0.00018532931824882223, - "min_markup": 0.002280893908558229, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03205615816903649, - "rentry_pprice_dist_wallet_exposure_weighting": 8.015088960078147, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 851.3786579639075, - "auto_unstuck_ema_dist": -0.05356076870047425, - "auto_unstuck_qty_pct": 0.09122179349519374, - "auto_unstuck_wallet_exposure_threshold": 0.16990946756240455, - "backwards_tp": true, - "ddown_factor": 0.13895769806822006, - "ema_span_0": 593.6994695970742, - "ema_span_1": 346.5178180246216, - "enabled": true, - "initial_eprice_ema_dist": -0.012317695889953148, - "initial_qty_pct": 0.010646978159658043, - "markup_range": 0.0035751412565706857, - "min_markup": 0.004524027198142064, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03097564697553242, - "rentry_pprice_dist_wallet_exposure_weighting": 12.927818997717173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SSVUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SSVUSDT.json deleted file mode 100644 index b4adcc33a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STGUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STGUSDT.json deleted file mode 100644 index 4869177d4..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.5014048895968, - "auto_unstuck_ema_dist": -0.05793007432114491, - "auto_unstuck_qty_pct": 0.034020023849035054, - "auto_unstuck_wallet_exposure_threshold": 0.21273151683759653, - "backwards_tp": true, - "ddown_factor": 1.2621889414343654, - "ema_span_0": 886.320063774315, - "ema_span_1": 529.0373722563329, - "enabled": true, - "initial_eprice_ema_dist": -0.0032858487921914245, - "initial_qty_pct": 0.011398093134326997, - "markup_range": 0.004305612733085813, - "min_markup": 0.005651608238257144, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037283764140798384, - "rentry_pprice_dist_wallet_exposure_weighting": 2.265028732253464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.8314242486322, - "auto_unstuck_ema_dist": -0.014109132867766043, - "auto_unstuck_qty_pct": 0.011982754937679857, - "auto_unstuck_wallet_exposure_threshold": 0.5533712695560499, - "backwards_tp": true, - "ddown_factor": 0.8157110446402446, - "ema_span_0": 56.77083987848151, - "ema_span_1": 87.12787490128404, - "enabled": true, - "initial_eprice_ema_dist": -0.001303731885700587, - "initial_qty_pct": 0.010008649130437409, - "markup_range": 0.0018624459240663247, - "min_markup": 0.0041678492617304155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0388560339970892, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9206393347106683, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STMXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STMXUSDT.json deleted file mode 100644 index b7fc814a5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 812.9821416549128, - "auto_unstuck_ema_dist": -0.04734710899966994, - "auto_unstuck_qty_pct": 0.04249052976038317, - "auto_unstuck_wallet_exposure_threshold": 0.21432656964906516, - "backwards_tp": true, - "ddown_factor": 1.309408765574503, - "ema_span_0": 781.9929052703882, - "ema_span_1": 306.5494179409598, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998909103434454, - "initial_qty_pct": 0.01105331050497203, - "markup_range": 0.002998041554042977, - "min_markup": 0.007627399683354676, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04904346914429782, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4597653098423223, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.6006770474733, - "auto_unstuck_ema_dist": -0.006854116150027488, - "auto_unstuck_qty_pct": 0.031644168490077784, - "auto_unstuck_wallet_exposure_threshold": 0.2557531129335714, - "backwards_tp": true, - "ddown_factor": 1.3832185824096965, - "ema_span_0": 1280.9824315832243, - "ema_span_1": 1197.5966306581568, - "enabled": true, - "initial_eprice_ema_dist": -0.04816000304172703, - "initial_qty_pct": 0.010950851120518782, - "markup_range": 0.0008022919858492278, - "min_markup": 0.008683689277631091, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04363476732084077, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4912416058069824, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STORJUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STORJUSDT.json deleted file mode 100644 index 54e21509a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1152.559527357442, - "auto_unstuck_ema_dist": -0.08512805070919303, - "auto_unstuck_qty_pct": 0.012152217082469208, - "auto_unstuck_wallet_exposure_threshold": 0.10500174205770166, - "backwards_tp": true, - "ddown_factor": 2.736882867458632, - "ema_span_0": 425.2396028163725, - "ema_span_1": 1227.6579283198496, - "enabled": true, - "initial_eprice_ema_dist": 0.0029314464349996902, - "initial_qty_pct": 0.012547339465654919, - "markup_range": 0.0020852667679600984, - "min_markup": 0.00535581163010827, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04344384582108559, - "rentry_pprice_dist_wallet_exposure_weighting": 1.545650266206948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STXUSDT.json deleted file mode 100644 index 18685f5d0..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1426.8432725392668, - "auto_unstuck_ema_dist": -0.0537457052295863, - "auto_unstuck_qty_pct": 0.06845140103384849, - "auto_unstuck_wallet_exposure_threshold": 0.14000629596631145, - "backwards_tp": true, - "ddown_factor": 0.10296237162534044, - "ema_span_0": 1426.5816725177046, - "ema_span_1": 110.82412535626743, - "enabled": true, - "initial_eprice_ema_dist": 0.001676575955512243, - "initial_qty_pct": 0.040718197832064686, - "markup_range": 0.001653235585679397, - "min_markup": 0.008704813107931636, - "n_close_orders": 8, - "rentry_pprice_dist": 0.043154142723672996, - "rentry_pprice_dist_wallet_exposure_weighting": 0.476104660019888, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1105.0823704359764, - "auto_unstuck_ema_dist": -0.037732677892204754, - "auto_unstuck_qty_pct": 0.01336652282437937, - "auto_unstuck_wallet_exposure_threshold": 0.17028964041107603, - "backwards_tp": true, - "ddown_factor": 2.6637813817235907, - "ema_span_0": 1013.7483874558881, - "ema_span_1": 523.9362447353836, - "enabled": true, - "initial_eprice_ema_dist": -0.0018984902891632756, - "initial_qty_pct": 0.010166833986828638, - "markup_range": 0.0012169099850839584, - "min_markup": 0.004200455243126506, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03320686316073599, - "rentry_pprice_dist_wallet_exposure_weighting": 12.779899554241695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SUIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SUIUSDT.json deleted file mode 100644 index def6e9d7a..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1231.6426410653428, - "auto_unstuck_ema_dist": -0.05748370761878396, - "auto_unstuck_qty_pct": 0.028789749824382857, - "auto_unstuck_wallet_exposure_threshold": 0.5079444259373056, - "backwards_tp": true, - "ddown_factor": 2.0637690064248755, - "ema_span_0": 109.69336505104252, - "ema_span_1": 856.6580528313107, - "enabled": true, - "initial_eprice_ema_dist": -0.008767349614441582, - "initial_qty_pct": 0.011176027939568284, - "markup_range": 0.005229384349149898, - "min_markup": 0.0032251654438817836, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027464918695270225, - "rentry_pprice_dist_wallet_exposure_weighting": 2.365643487175211, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.0516729249457, - "auto_unstuck_ema_dist": -0.021338228250964944, - "auto_unstuck_qty_pct": 0.041959583333445974, - "auto_unstuck_wallet_exposure_threshold": 0.5843615907440661, - "backwards_tp": true, - "ddown_factor": 1.4381531180839886, - "ema_span_0": 428.0052531046105, - "ema_span_1": 415.3589160279952, - "enabled": true, - "initial_eprice_ema_dist": -0.0010521716521248341, - "initial_qty_pct": 0.010016393403745301, - "markup_range": 0.0005063092824123573, - "min_markup": 0.008346292875921573, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026758342331281937, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9808900950482229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SUSHIUSDT.json deleted file mode 100644 index 95425c703..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1158.6043876899034, - "auto_unstuck_ema_dist": -0.020454455381802242, - "auto_unstuck_qty_pct": 0.02643525054800338, - "auto_unstuck_wallet_exposure_threshold": 0.577254858339164, - "backwards_tp": true, - "ddown_factor": 2.999741627773494, - "ema_span_0": 565.4108700494647, - "ema_span_1": 1179.864916183485, - "enabled": true, - "initial_eprice_ema_dist": 0.002039966535125256, - "initial_qty_pct": 0.016215295047991962, - "markup_range": 0.0, - "min_markup": 0.0045716191458825715, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04759115060085173, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07250220870815746, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.531124004601, - "auto_unstuck_ema_dist": -0.014143982181803384, - "auto_unstuck_qty_pct": 0.013108933247628107, - "auto_unstuck_wallet_exposure_threshold": 0.503281705121865, - "backwards_tp": true, - "ddown_factor": 1.4077801165553514, - "ema_span_0": 708.5540243238498, - "ema_span_1": 429.4783039951395, - "enabled": true, - "initial_eprice_ema_dist": 0.0017778527843470464, - "initial_qty_pct": 0.012746146034437219, - "markup_range": 0.004729203207199757, - "min_markup": 0.005741733179453156, - "n_close_orders": 5, - "rentry_pprice_dist": 0.044819353201280644, - "rentry_pprice_dist_wallet_exposure_weighting": 0.15802956604297766, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SXPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SXPUSDT.json deleted file mode 100644 index 7cbc8b601..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.3580694829311, - "auto_unstuck_ema_dist": -0.0499130440540471, - "auto_unstuck_qty_pct": 0.011147263389662829, - "auto_unstuck_wallet_exposure_threshold": 0.38876908815985045, - "backwards_tp": true, - "ddown_factor": 2.1932983744435997, - "ema_span_0": 295.34325736350286, - "ema_span_1": 463.19712668719893, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010243943677930595, - "markup_range": 0.001995624564988456, - "min_markup": 0.0031037141845810454, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0329301805607218, - "rentry_pprice_dist_wallet_exposure_weighting": 2.253373217684854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1384.857374895113, - "auto_unstuck_ema_dist": -0.024352444081234093, - "auto_unstuck_qty_pct": 0.039827278715047584, - "auto_unstuck_wallet_exposure_threshold": 0.6045513017798055, - "backwards_tp": true, - "ddown_factor": 2.0393724914785993, - "ema_span_0": 1113.7802876732308, - "ema_span_1": 858.6886482052665, - "enabled": true, - "initial_eprice_ema_dist": 0.0019339549901739052, - "initial_qty_pct": 0.010799971806476183, - "markup_range": 0.0018200189743278747, - "min_markup": 0.003124775259214504, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03641976114870019, - "rentry_pprice_dist_wallet_exposure_weighting": 14.811452369911798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/THETAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/THETAUSDT.json deleted file mode 100644 index 004db5739..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 858.9120509049447, - "auto_unstuck_ema_dist": -0.025186318663159925, - "auto_unstuck_qty_pct": 0.010765006854872246, - "auto_unstuck_wallet_exposure_threshold": 0.2617268582249943, - "backwards_tp": true, - "ddown_factor": 0.3191326770188785, - "ema_span_0": 1176.1146877147062, - "ema_span_1": 423.45577642854465, - "enabled": true, - "initial_eprice_ema_dist": -0.08005963311537093, - "initial_qty_pct": 0.012626582262506271, - "markup_range": 0.0032991495754256827, - "min_markup": 0.003375833907375293, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029879667152032163, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9238510481158029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 770.3927178175928, - "auto_unstuck_ema_dist": -0.079974396187808, - "auto_unstuck_qty_pct": 0.05694204475063293, - "auto_unstuck_wallet_exposure_threshold": 0.1315710846721687, - "backwards_tp": true, - "ddown_factor": 0.5058582405050233, - "ema_span_0": 923.7057782718896, - "ema_span_1": 1386.6845458978403, - "enabled": true, - "initial_eprice_ema_dist": 0.0004323184531561842, - "initial_qty_pct": 0.01610427637647136, - "markup_range": 0.006871434838658023, - "min_markup": 0.008416547049621949, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04238891152022957, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1753109986824162, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TLMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TLMUSDT.json deleted file mode 100644 index fd35215ab..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TOMOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TOMOUSDT.json deleted file mode 100644 index 7961ec319..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 968.9885554324641, - "auto_unstuck_ema_dist": -0.040466250595328816, - "auto_unstuck_qty_pct": 0.021646336338545482, - "auto_unstuck_wallet_exposure_threshold": 0.5648550848392668, - "backwards_tp": true, - "ddown_factor": 2.7865650777274107, - "ema_span_0": 694.1160959051064, - "ema_span_1": 1032.4776634516954, - "enabled": true, - "initial_eprice_ema_dist": 0.002927605010827487, - "initial_qty_pct": 0.010143296957502655, - "markup_range": 0.0038366878937663856, - "min_markup": 0.009405260789784488, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049615203593185817, - "rentry_pprice_dist_wallet_exposure_weighting": 11.58409946197559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 357.92436669278186, - "auto_unstuck_ema_dist": -0.02353128502649557, - "auto_unstuck_qty_pct": 0.08808236739145908, - "auto_unstuck_wallet_exposure_threshold": 0.5968920331844256, - "backwards_tp": true, - "ddown_factor": 0.9261961962753986, - "ema_span_0": 823.6626223695628, - "ema_span_1": 1023.928457392366, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011315469369144245, - "markup_range": 1.9188657784107906e-08, - "min_markup": 0.004545455719481276, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027754912343113888, - "rentry_pprice_dist_wallet_exposure_weighting": 7.31721652054868, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRBUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRBUSDT.json deleted file mode 100644 index 35d39a939..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1244.174462451248, - "auto_unstuck_ema_dist": -0.01990627794814956, - "auto_unstuck_qty_pct": 0.05085456625801725, - "auto_unstuck_wallet_exposure_threshold": 0.5972299214739303, - "backwards_tp": true, - "ddown_factor": 1.1484444039154207, - "ema_span_0": 187.821719767993, - "ema_span_1": 475.0326818198221, - "enabled": true, - "initial_eprice_ema_dist": -0.002132753562023076, - "initial_qty_pct": 0.010445748038179046, - "markup_range": 0.0016028342504434462, - "min_markup": 0.003852472689059159, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04743686301440921, - "rentry_pprice_dist_wallet_exposure_weighting": 9.468158349159458, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 497.5906534475687, - "auto_unstuck_ema_dist": -0.040869988463281735, - "auto_unstuck_qty_pct": 0.04035802313752252, - "auto_unstuck_wallet_exposure_threshold": 0.3525969403230897, - "backwards_tp": true, - "ddown_factor": 1.3249219853781622, - "ema_span_0": 1357.516125272833, - "ema_span_1": 882.6627710672166, - "enabled": true, - "initial_eprice_ema_dist": -0.002829104421338118, - "initial_qty_pct": 0.010004022601790714, - "markup_range": 0.0003739165593537279, - "min_markup": 0.003807757153799048, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027800515093534164, - "rentry_pprice_dist_wallet_exposure_weighting": 7.443746602756841, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRUUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRUUSDT.json deleted file mode 100644 index cbf9a620b..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.3580694829311, - "auto_unstuck_ema_dist": -0.0499130440540471, - "auto_unstuck_qty_pct": 0.011147263389662829, - "auto_unstuck_wallet_exposure_threshold": 0.38876908815985045, - "backwards_tp": true, - "ddown_factor": 2.1932983744435997, - "ema_span_0": 295.34325736350286, - "ema_span_1": 463.19712668719893, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010243943677930595, - "markup_range": 0.001995624564988456, - "min_markup": 0.0031037141845810454, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0329301805607218, - "rentry_pprice_dist_wallet_exposure_weighting": 2.253373217684854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRXUSDT.json deleted file mode 100644 index c144ad468..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1198.737532352804, - "auto_unstuck_ema_dist": 0.0021918977925421664, - "auto_unstuck_qty_pct": 0.011737438010278886, - "auto_unstuck_wallet_exposure_threshold": 0.26103788036106523, - "backwards_tp": true, - "ddown_factor": 0.9912031563296594, - "ema_span_0": 1043.6852785172005, - "ema_span_1": 140.47129590575383, - "enabled": true, - "initial_eprice_ema_dist": 0.0010962564206719796, - "initial_qty_pct": 0.021125725836593622, - "markup_range": 0.0017367553867170978, - "min_markup": 0.002391490312542033, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032827292692171564, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10738069449979064, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1432.4030184941907, - "auto_unstuck_ema_dist": -0.07320861915973527, - "auto_unstuck_qty_pct": 0.01905034857328703, - "auto_unstuck_wallet_exposure_threshold": 0.11227541929160423, - "backwards_tp": true, - "ddown_factor": 0.5340798118427715, - "ema_span_0": 551.399155721459, - "ema_span_1": 153.20519427770577, - "enabled": true, - "initial_eprice_ema_dist": 0.002250154717145872, - "initial_qty_pct": 0.013131818889181211, - "markup_range": 0.0023789798193469057, - "min_markup": 0.004001037949340948, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018620497691417052, - "rentry_pprice_dist_wallet_exposure_weighting": 3.11100367112489, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TUSDT.json deleted file mode 100644 index e316cc3fb..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.9796909235044, - "auto_unstuck_ema_dist": 0.0004335119523387423, - "auto_unstuck_qty_pct": 0.03419114551949676, - "auto_unstuck_wallet_exposure_threshold": 0.5607912465981395, - "backwards_tp": true, - "ddown_factor": 0.21981978992948273, - "ema_span_0": 684.721853920761, - "ema_span_1": 587.3367515525263, - "enabled": true, - "initial_eprice_ema_dist": -0.011366019759355373, - "initial_qty_pct": 0.013428270540297325, - "markup_range": 0.0044212957130786755, - "min_markup": 0.009020473612600138, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033862980646636835, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6605915676504517, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.0681424460352, - "auto_unstuck_ema_dist": -0.08076665705882756, - "auto_unstuck_qty_pct": 0.03862089723313794, - "auto_unstuck_wallet_exposure_threshold": 0.43806934099202416, - "backwards_tp": true, - "ddown_factor": 1.623796341781897, - "ema_span_0": 644.5082150739652, - "ema_span_1": 448.5402274469385, - "enabled": true, - "initial_eprice_ema_dist": -0.0007918178559373351, - "initial_qty_pct": 0.014249500974285576, - "markup_range": 0.004660386654482454, - "min_markup": 0.004005921148986976, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03331795706872418, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49562035158752665, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UMAUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UMAUSDT.json deleted file mode 100644 index fa32387a2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UNFIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UNFIUSDT.json deleted file mode 100644 index 16cbd7472..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 739.9793485670867, - "auto_unstuck_ema_dist": -0.04726699669646778, - "auto_unstuck_qty_pct": 0.030867522453931567, - "auto_unstuck_wallet_exposure_threshold": 0.45675557567135283, - "backwards_tp": true, - "ddown_factor": 0.5593563404929264, - "ema_span_0": 426.6316366478849, - "ema_span_1": 176.3353916740571, - "enabled": true, - "initial_eprice_ema_dist": -0.0843605136547385, - "initial_qty_pct": 0.013385292768003673, - "markup_range": 0.006489201535921158, - "min_markup": 0.008707892079760745, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04888123178825347, - "rentry_pprice_dist_wallet_exposure_weighting": 3.121664431603514, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UNIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UNIUSDT.json deleted file mode 100644 index 04682810c..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1118.1651654657594, - "auto_unstuck_ema_dist": -0.06773303148962292, - "auto_unstuck_qty_pct": 0.022192547833760838, - "auto_unstuck_wallet_exposure_threshold": 0.694763352056688, - "backwards_tp": true, - "ddown_factor": 2.9571522399293446, - "ema_span_0": 964.4382431149039, - "ema_span_1": 1091.8899472695127, - "enabled": true, - "initial_eprice_ema_dist": -0.005237577543248062, - "initial_qty_pct": 0.012073075780244644, - "markup_range": 0.001325264577762037, - "min_markup": 0.0077613054751830045, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03931273043795401, - "rentry_pprice_dist_wallet_exposure_weighting": 6.177745032958001, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/USDCUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/USDCUSDT.json deleted file mode 100644 index e069aee9d..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1329.3547977286032, - "auto_unstuck_ema_dist": -0.02570232235032514, - "auto_unstuck_qty_pct": 0.036636870792339085, - "auto_unstuck_wallet_exposure_threshold": 0.3504224087334014, - "backwards_tp": true, - "ddown_factor": 0.4356614842040477, - "ema_span_0": 877.5474524205408, - "ema_span_1": 915.2133208065917, - "enabled": true, - "initial_eprice_ema_dist": 0.0021233702796588116, - "initial_qty_pct": 0.010406000938755511, - "markup_range": 0.015722352019257237, - "min_markup": 0.008802024082192172, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04495356639233563, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3238988261801409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1.133590120987681, - "auto_unstuck_ema_dist": -0.0664767643547855, - "auto_unstuck_qty_pct": 0.018605667048078367, - "auto_unstuck_wallet_exposure_threshold": 0.7742578216478697, - "backwards_tp": true, - "ddown_factor": 0.20278360704213827, - "ema_span_0": 154.5599272358244, - "ema_span_1": 1231.0969620873752, - "enabled": true, - "initial_eprice_ema_dist": -0.046987987454892195, - "initial_qty_pct": 0.011116774912808925, - "markup_range": 4.864205520845488e-05, - "min_markup": 0.0022461444428992575, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03439328327538153, - "rentry_pprice_dist_wallet_exposure_weighting": 11.458435171750244, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/VETUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/VETUSDT.json deleted file mode 100644 index a97774466..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1010.9617461964966, - "auto_unstuck_ema_dist": -0.0449323418843014, - "auto_unstuck_qty_pct": 0.013686819229151177, - "auto_unstuck_wallet_exposure_threshold": 0.6543131814798637, - "backwards_tp": true, - "ddown_factor": 1.3360937437116451, - "ema_span_0": 337.5583185863284, - "ema_span_1": 540.9651637988226, - "enabled": true, - "initial_eprice_ema_dist": 0.0014899952793059747, - "initial_qty_pct": 0.016377342959578715, - "markup_range": 0.0031271553103385872, - "min_markup": 0.0031949145656978203, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02503333188219508, - "rentry_pprice_dist_wallet_exposure_weighting": 4.148170179549651, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 705.1598139875407, - "auto_unstuck_ema_dist": -0.015790826195680056, - "auto_unstuck_qty_pct": 0.015251349303554573, - "auto_unstuck_wallet_exposure_threshold": 0.6021712984492144, - "backwards_tp": true, - "ddown_factor": 2.8641312781000035, - "ema_span_0": 528.0792345865252, - "ema_span_1": 1427.8569193225999, - "enabled": true, - "initial_eprice_ema_dist": 0.0029859142327868025, - "initial_qty_pct": 0.015831624685142317, - "markup_range": 0.0034417331607668536, - "min_markup": 0.0037124919129803416, - "n_close_orders": 12, - "rentry_pprice_dist": 0.040274614221498035, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003551950736988942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WAVESUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WAVESUSDT.json deleted file mode 100644 index d941bf6c3..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1211.6068399986273, - "auto_unstuck_ema_dist": 0.0004512353455101662, - "auto_unstuck_qty_pct": 0.022925405626570538, - "auto_unstuck_wallet_exposure_threshold": 0.727862361703627, - "backwards_tp": true, - "ddown_factor": 2.88220745208764, - "ema_span_0": 317.6661820543112, - "ema_span_1": 117.01351808572508, - "enabled": true, - "initial_eprice_ema_dist": 0.0007690926413611972, - "initial_qty_pct": 0.013054522243453867, - "markup_range": 0.000305597414152302, - "min_markup": 0.0024382279640816486, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03459656312182234, - "rentry_pprice_dist_wallet_exposure_weighting": 0.981309916891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WLDUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WLDUSDT.json deleted file mode 100644 index 947938298..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1229.7758528902937, - "auto_unstuck_ema_dist": -0.05914769539771581, - "auto_unstuck_qty_pct": 0.01511902340838162, - "auto_unstuck_wallet_exposure_threshold": 0.6846948705761557, - "backwards_tp": true, - "ddown_factor": 1.8857281633742855, - "ema_span_0": 80.49335874332347, - "ema_span_1": 345.5473243304256, - "enabled": true, - "initial_eprice_ema_dist": -0.005007496036276903, - "initial_qty_pct": 0.012383215418007059, - "markup_range": 0.006375884182639555, - "min_markup": 0.002414722488059609, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029334523491465887, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2189709089235532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 541.0698095831558, - "auto_unstuck_ema_dist": -0.013305864303072753, - "auto_unstuck_qty_pct": 0.01390306071685173, - "auto_unstuck_wallet_exposure_threshold": 0.5253164974633007, - "backwards_tp": true, - "ddown_factor": 2.4489692021093057, - "ema_span_0": 530.2747886976573, - "ema_span_1": 256.8255394119372, - "enabled": true, - "initial_eprice_ema_dist": -0.006014927404041342, - "initial_qty_pct": 0.012960728593511443, - "markup_range": 0.0029520319726383773, - "min_markup": 0.0021142994042955125, - "n_close_orders": 16, - "rentry_pprice_dist": 0.0283173755441322, - "rentry_pprice_dist_wallet_exposure_weighting": 5.073076194313362, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WOOUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WOOUSDT.json deleted file mode 100644 index ac423c752..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 817.3839601148987, - "auto_unstuck_ema_dist": -0.056747177167555, - "auto_unstuck_qty_pct": 0.012467608336580227, - "auto_unstuck_wallet_exposure_threshold": 0.44505116465567496, - "backwards_tp": true, - "ddown_factor": 1.276389127776389, - "ema_span_0": 312.422966055438, - "ema_span_1": 747.3451446818881, - "enabled": true, - "initial_eprice_ema_dist": -0.006776686937736162, - "initial_qty_pct": 0.01, - "markup_range": 0.0044972982347013515, - "min_markup": 0.0012946220207993191, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02877369381592201, - "rentry_pprice_dist_wallet_exposure_weighting": 3.920681694766142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 663.9082621683893, - "auto_unstuck_ema_dist": -0.029264604761396484, - "auto_unstuck_qty_pct": 0.01028820821909273, - "auto_unstuck_wallet_exposure_threshold": 0.1983137061076403, - "backwards_tp": true, - "ddown_factor": 1.9651840247105272, - "ema_span_0": 79.13725259724187, - "ema_span_1": 40.749166674343826, - "enabled": true, - "initial_eprice_ema_dist": 0.0025600695207464606, - "initial_qty_pct": 0.011047275123784223, - "markup_range": 0.0009398635335428235, - "min_markup": 0.009494696138601521, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04940376968104154, - "rentry_pprice_dist_wallet_exposure_weighting": 0.37247906219716315, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XEMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XEMUSDT.json deleted file mode 100644 index 175885de8..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 857.9352163512979, - "auto_unstuck_ema_dist": 0.0014175579215003483, - "auto_unstuck_qty_pct": 0.010343324839004193, - "auto_unstuck_wallet_exposure_threshold": 0.14528765565874516, - "backwards_tp": true, - "ddown_factor": 2.9997053680425205, - "ema_span_0": 203.7858595156725, - "ema_span_1": 721.405235407679, - "enabled": true, - "initial_eprice_ema_dist": 0.002943705873177678, - "initial_qty_pct": 0.01356574411908951, - "markup_range": 0.002575633644852081, - "min_markup": 0.006489057687649006, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034405568823008166, - "rentry_pprice_dist_wallet_exposure_weighting": 2.883300831934505, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XLMUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XLMUSDT.json deleted file mode 100644 index e5d3c02d0..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 511.1547469706444, - "auto_unstuck_ema_dist": -0.06957948709282034, - "auto_unstuck_qty_pct": 0.011127837053773007, - "auto_unstuck_wallet_exposure_threshold": 0.23167936403762507, - "backwards_tp": true, - "ddown_factor": 2.341353495805216, - "ema_span_0": 743.207939881757, - "ema_span_1": 895.2817823279266, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014176253228324949, - "markup_range": 0.0017278870795241915, - "min_markup": 0.003807577722098899, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04049578187384283, - "rentry_pprice_dist_wallet_exposure_weighting": 3.837016116012465, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XMRUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XMRUSDT.json deleted file mode 100644 index 37877c33e..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1339.1865422605786, - "auto_unstuck_ema_dist": -0.008820788740679682, - "auto_unstuck_qty_pct": 0.0426943188630646, - "auto_unstuck_wallet_exposure_threshold": 0.1635952804712599, - "backwards_tp": true, - "ddown_factor": 0.1681718444888247, - "ema_span_0": 653.6849192955965, - "ema_span_1": 227.5333807116893, - "enabled": true, - "initial_eprice_ema_dist": -0.0030739368686215746, - "initial_qty_pct": 0.02568019576967234, - "markup_range": 8.020159895770236e-18, - "min_markup": 0.005358167510947481, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028331976945844457, - "rentry_pprice_dist_wallet_exposure_weighting": 1.901734260763618, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XRPUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XRPUSDT.json deleted file mode 100644 index 3a3089141..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 719.9872027686143, - "auto_unstuck_ema_dist": -0.022541606308323435, - "auto_unstuck_qty_pct": 0.06270207829324834, - "auto_unstuck_wallet_exposure_threshold": 0.49696955946950716, - "backwards_tp": true, - "ddown_factor": 0.4908205683212454, - "ema_span_0": 851.4823300946229, - "ema_span_1": 283.3880926531075, - "enabled": true, - "initial_eprice_ema_dist": -0.0011106649019491214, - "initial_qty_pct": 0.011064611774235726, - "markup_range": 0.00042112398364548844, - "min_markup": 0.004339088179395441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.010048653902822655, - "rentry_pprice_dist_wallet_exposure_weighting": 11.350702080438928, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1033.3587503162703, - "auto_unstuck_ema_dist": -0.039713763863901505, - "auto_unstuck_qty_pct": 0.014837076462468379, - "auto_unstuck_wallet_exposure_threshold": 0.4108600334286868, - "backwards_tp": true, - "ddown_factor": 0.9664681763521198, - "ema_span_0": 1000.484246728451, - "ema_span_1": 23.56752968494623, - "enabled": true, - "initial_eprice_ema_dist": 0.00016004260672259133, - "initial_qty_pct": 0.01079877076958448, - "markup_range": 0.0005517243667842997, - "min_markup": 0.009240136702262336, - "n_close_orders": 15, - "rentry_pprice_dist": 0.048272245968692555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XTZUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XTZUSDT.json deleted file mode 100644 index de3c712ce..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1019.7280570370905, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.04720451954781402, - "auto_unstuck_wallet_exposure_threshold": 0.541337782205087, - "backwards_tp": true, - "ddown_factor": 1.0984124597176057, - "ema_span_0": 1145.1131894215428, - "ema_span_1": 1166.8004174624189, - "enabled": true, - "initial_eprice_ema_dist": -0.00011677048610017664, - "initial_qty_pct": 0.01653909787573966, - "markup_range": 0.0069204364219696895, - "min_markup": 0.005262482253868771, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03354366422901962, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9223261375717757, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.0681424460352, - "auto_unstuck_ema_dist": -0.08076665705882756, - "auto_unstuck_qty_pct": 0.03862089723313794, - "auto_unstuck_wallet_exposure_threshold": 0.43806934099202416, - "backwards_tp": true, - "ddown_factor": 1.623796341781897, - "ema_span_0": 644.5082150739652, - "ema_span_1": 448.5402274469385, - "enabled": true, - "initial_eprice_ema_dist": -0.0007918178559373351, - "initial_qty_pct": 0.014249500974285576, - "markup_range": 0.004660386654482454, - "min_markup": 0.004005921148986976, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03331795706872418, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49562035158752665, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XVGUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XVGUSDT.json deleted file mode 100644 index fb0982039..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XVSUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XVSUSDT.json deleted file mode 100644 index a801adb87..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1368.1756670538243, - "auto_unstuck_ema_dist": -0.07330997354703737, - "auto_unstuck_qty_pct": 0.011747650192491955, - "auto_unstuck_wallet_exposure_threshold": 0.4736214579573272, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 137.81914493525576, - "ema_span_1": 166.34020854290125, - "enabled": true, - "initial_eprice_ema_dist": -0.04653146127912276, - "initial_qty_pct": 0.01461088098227183, - "markup_range": 0.0011177056140842143, - "min_markup": 0.007515669102516649, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039236672231753575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7250832843519701, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0157232326517, - "auto_unstuck_ema_dist": 0.002584536889395626, - "auto_unstuck_qty_pct": 0.016067830025278666, - "auto_unstuck_wallet_exposure_threshold": 0.17865852417429198, - "backwards_tp": true, - "ddown_factor": 2.5315985008952455, - "ema_span_0": 859.8164633515628, - "ema_span_1": 778.88727913339, - "enabled": true, - "initial_eprice_ema_dist": 0.0029469027371997873, - "initial_qty_pct": 0.011229049152531517, - "markup_range": 0.004301705171347274, - "min_markup": 0.002964225037769906, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047375817041585104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.041978447464432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/YFIUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/YFIUSDT.json deleted file mode 100644 index 9affdb4b5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1171.3951761180147, - "auto_unstuck_ema_dist": -0.03289594671909857, - "auto_unstuck_qty_pct": 0.03790654480684425, - "auto_unstuck_wallet_exposure_threshold": 0.4662098668657322, - "backwards_tp": true, - "ddown_factor": 0.6431516620733384, - "ema_span_0": 662.8750231341215, - "ema_span_1": 224.01205655366653, - "enabled": true, - "initial_eprice_ema_dist": -0.03972123621558579, - "initial_qty_pct": 0.011879224131437638, - "markup_range": 0.0004001047540495883, - "min_markup": 0.003715370275767813, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024205606296240436, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5472308706945394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1368.8335638203498, - "auto_unstuck_ema_dist": -0.043282429756453925, - "auto_unstuck_qty_pct": 0.01779968936281008, - "auto_unstuck_wallet_exposure_threshold": 0.13522018932594757, - "backwards_tp": true, - "ddown_factor": 1.3591652041697346, - "ema_span_0": 313.4841439084159, - "ema_span_1": 123.9227286763952, - "enabled": true, - "initial_eprice_ema_dist": -0.06873064547897076, - "initial_qty_pct": 0.012025232844314459, - "markup_range": 0.002064937834169105, - "min_markup": 0.001, - "n_close_orders": 5, - "rentry_pprice_dist": 0.039782252819916285, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2388799134029693, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZECUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZECUSDT.json deleted file mode 100644 index ec5da09e2..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1140.9507296584932, - "auto_unstuck_ema_dist": -0.013410011874575455, - "auto_unstuck_qty_pct": 0.019463832426420004, - "auto_unstuck_wallet_exposure_threshold": 0.26583349248863536, - "backwards_tp": true, - "ddown_factor": 1.541542513685924, - "ema_span_0": 32.43039734132943, - "ema_span_1": 1366.1449877404782, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013227515677854653, - "markup_range": 0.003910496568909102, - "min_markup": 0.00619876116357044, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03871889129599721, - "rentry_pprice_dist_wallet_exposure_weighting": 2.000159658666231, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.7669604640046, - "auto_unstuck_ema_dist": 0.002786919034136599, - "auto_unstuck_qty_pct": 0.03140475838427743, - "auto_unstuck_wallet_exposure_threshold": 0.5574697807190042, - "backwards_tp": true, - "ddown_factor": 1.0498659445078125, - "ema_span_0": 768.3258268178528, - "ema_span_1": 986.7063133340359, - "enabled": true, - "initial_eprice_ema_dist": -0.0185462563652313, - "initial_qty_pct": 0.011031346865379632, - "markup_range": 0.006926949770685151, - "min_markup": 0.0015696813063142627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029295377220877463, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2531454393293293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZENUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZENUSDT.json deleted file mode 100644 index 91112acf1..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 973.4987836800872, - "auto_unstuck_ema_dist": -0.039996782660062014, - "auto_unstuck_qty_pct": 0.03776242651222969, - "auto_unstuck_wallet_exposure_threshold": 0.561184882397621, - "backwards_tp": true, - "ddown_factor": 1.0462080118744306, - "ema_span_0": 554.0726084936207, - "ema_span_1": 663.6078651634883, - "enabled": true, - "initial_eprice_ema_dist": -0.08216231317588621, - "initial_qty_pct": 0.012360062283354933, - "markup_range": 0.007432668751650294, - "min_markup": 0.003795695333764403, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04716048268809832, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1025972177785266, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 797.3136358634457, - "auto_unstuck_ema_dist": -0.009699188095678192, - "auto_unstuck_qty_pct": 0.04932898607696818, - "auto_unstuck_wallet_exposure_threshold": 0.45494237294812, - "backwards_tp": true, - "ddown_factor": 0.8718593349459767, - "ema_span_0": 1367.876745719813, - "ema_span_1": 1218.9060965043882, - "enabled": true, - "initial_eprice_ema_dist": -0.004568437617455454, - "initial_qty_pct": 0.020289836039970147, - "markup_range": 0.0069483046163048914, - "min_markup": 0.009726363171258167, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03988249013403799, - "rentry_pprice_dist_wallet_exposure_weighting": 8.083574632184927, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZILUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZILUSDT.json deleted file mode 100644 index 8717698ed..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1021.5680093130127, - "auto_unstuck_ema_dist": -0.05002309747953149, - "auto_unstuck_qty_pct": 0.010013475520702858, - "auto_unstuck_wallet_exposure_threshold": 0.2971638377636908, - "backwards_tp": true, - "ddown_factor": 2.96132960081668, - "ema_span_0": 174.1594205033277, - "ema_span_1": 398.68010524874234, - "enabled": true, - "initial_eprice_ema_dist": 0.0029424684413642916, - "initial_qty_pct": 0.01682226643092758, - "markup_range": 0.0016008908253024247, - "min_markup": 0.0070160160868757565, - "n_close_orders": 9, - "rentry_pprice_dist": 0.038924382026411, - "rentry_pprice_dist_wallet_exposure_weighting": 4.231601053504647, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1041.4423249676004, - "auto_unstuck_ema_dist": -0.09225219510315492, - "auto_unstuck_qty_pct": 0.013694695680005711, - "auto_unstuck_wallet_exposure_threshold": 0.47342549197966544, - "backwards_tp": true, - "ddown_factor": 2.0094606131893937, - "ema_span_0": 700.5312562884875, - "ema_span_1": 1303.501987709353, - "enabled": true, - "initial_eprice_ema_dist": -0.00948148612257923, - "initial_qty_pct": 0.019703112069996566, - "markup_range": 0.0014449822914877348, - "min_markup": 0.002196851213094553, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04689218528355256, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3405709108396504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZRXUSDT.json b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZRXUSDT.json deleted file mode 100644 index b1197dff5..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.0048080085164, - "auto_unstuck_ema_dist": -0.0008476963710074387, - "auto_unstuck_qty_pct": 0.010863338991659335, - "auto_unstuck_wallet_exposure_threshold": 0.35886743910062746, - "backwards_tp": true, - "ddown_factor": 2.100977276332714, - "ema_span_0": 1385.631958690359, - "ema_span_1": 1400.6854124817219, - "enabled": true, - "initial_eprice_ema_dist": 0.002639128644605756, - "initial_qty_pct": 0.010861827041775648, - "markup_range": 0.001953016879765779, - "min_markup": 0.007684738962289304, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02982861293753187, - "rentry_pprice_dist_wallet_exposure_weighting": 5.553882288714319, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 915.5397371190959, - "auto_unstuck_ema_dist": -0.029248976509503633, - "auto_unstuck_qty_pct": 0.020638500082131365, - "auto_unstuck_wallet_exposure_threshold": 0.13386367450660033, - "backwards_tp": true, - "ddown_factor": 0.34952582364899787, - "ema_span_0": 1175.5306160921696, - "ema_span_1": 1041.7146791905452, - "enabled": true, - "initial_eprice_ema_dist": 0.00019015339879721406, - "initial_qty_pct": 0.01277461866650413, - "markup_range": 0.0053667385960039695, - "min_markup": 0.006929282235168913, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027933268892318112, - "rentry_pprice_dist_wallet_exposure_weighting": 7.159517999931809, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/metrics_recursive_grid_2023-11-09.txt b/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/metrics_recursive_grid_2023-11-09.txt deleted file mode 100644 index 76ea92f79..000000000 --- a/configs/live/single_symbol_optimizations/archived/recursive_grid/2023-11-09/metrics_recursive_grid_2023-11-09.txt +++ /dev/null @@ -1,440 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-11-10 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKMUSDT | 0.001654 | 0.001916 | 0.0377 | 0.02509 | 0.007199 | 0.007627 | 22.52 | 0.05729 | 0.01012 | 0.05454 | 0.07133 | 103.88 | 275999999.998 | -| 1000FLOKIUSDT | 0.001608 | 0.0008037 | 0.05858 | 0.01777 | 0.01847 | 0.0127 | 119.8 | 0.09925 | 0.1223 | 0.09834 | 0.1478 | 186.29 | 275999999.998 | -| AGLDUSDT | 0.001738 | 0.001202 | 0.02212 | 0.004615 | 0.01736 | 0.01534 | 143.5 | 0.0787 | 0.0 | 0.01523 | 0.03306 | 102.88 | 275999999.998 | -| BLURUSDT | 0.0016 | 0.001218 | 0.05269 | 0.01675 | 0.01175 | 0.007775 | 107.9 | 0.04341 | 0.006323 | 0.04037 | 0.1042 | 194.46 | 275999999.998 | -| WLDUSDT | 0.001648 | 0.002259 | 0.07991 | 0.03783 | 0.009636 | 0.00826 | 32.5 | 0.04802 | 0.01519 | 0.04554 | 0.05833 | 107.46 | 275999999.998 | -| SOLUSDT | 0.001605 | 0.003137 | 0.05932 | 0.03462 | 0.01252 | 0.01534 | 128.0 | 0.07416 | 0.1188 | 0.07993 | 0.1635 | 1150.67 | 275999999.998 | -| LQTYUSDT | 0.002129 | 0.001892 | 0.08089 | 0.0406 | 0.01386 | 0.01249 | 53.35 | 0.09916 | 0.03861 | 0.09063 | 0.1512 | 243.46 | 275999999.998 | -| CRVUSDT | 0.0006768 | 0.001561 | 0.04641 | 0.02004 | 0.01478 | 0.01502 | 106.3 | 0.08927 | 0.06654 | 0.08377 | 0.248 | 1163.67 | 275999999.999 | -| XEMUSDT | 0.0006816 | 0.00165 | 0.0505 | 0.0243 | 0.01236 | 0.01383 | 139.1 | 0.08264 | 0.009034 | 0.07448 | 0.1766 | 980.67 | 275999999.999 | -| AAVEUSDT | 0.001005 | 0.002381 | 0.05721 | 0.02641 | 0.01318 | 0.01337 | 108.9 | 0.0848 | 0.01745 | 0.07817 | 0.2187 | 1118.67 | 275999999.999 | -| EGLDUSDT | 0.0006276 | 0.001611 | 0.05641 | 0.01572 | 0.0165 | 0.01288 | 143.9 | 0.04804 | 0.06346 | 0.02846 | 0.1101 | 1150.67 | 275999999.999 | -| ETHUSDT | 0.0005248 | 0.001587 | 0.04671 | 0.03451 | 0.007731 | 0.01049 | 70.3 | 0.06428 | 0.01253 | 0.06259 | 0.1186 | 1407.96 | 275999999.999 | -| LRCUSDT | 0.0006011 | 0.001609 | 0.06467 | 0.02841 | 0.01194 | 0.01262 | 84.47 | 0.0964 | 0.0257 | 0.09366 | 0.2309 | 1115.67 | 275999999.999 | -| XVGUSDT | 0.001407 | 0.001963 | 0.1089 | 0.09284 | 0.01055 | 0.01033 | 34.05 | 0.0647 | 0.02197 | 0.06144 | 0.0906 | 126.46 | 275999999.999 | -| OMGUSDT | 0.0008715 | 0.001707 | 0.0609 | 0.01611 | 0.01333 | 0.01266 | 125.3 | 0.07971 | 0.09189 | 0.08264 | 0.2137 | 1224.58 | 275999999.999 | -| MINAUSDT | 0.000867 | 0.001021 | 0.0684 | 0.03036 | 0.01129 | 0.01069 | 143.8 | 0.07703 | 0.06319 | 0.07292 | 0.1228 | 274.5 | 275999999.999 | -| IDEXUSDT | 0.0006284 | 0.0006822 | 0.05837 | 0.01224 | 0.01292 | 0.01184 | 111.8 | 0.09514 | 0.03437 | 0.08713 | 0.1178 | 189.46 | 275999999.999 | -| ACHUSDT | 0.0005451 | 0.0007952 | 0.04996 | 0.01594 | 0.01596 | 0.01287 | 112.7 | 0.088 | 0.08831 | 0.07861 | 0.1113 | 259.38 | 275999999.999 | -| QNTUSDT | 0.0005158 | 0.0009634 | 0.06468 | 0.03389 | 0.00871 | 0.008644 | 108.4 | 0.07451 | 0.04914 | 0.08074 | 0.1037 | 384.88 | 275999999.999 | -| AXSUSDT | 0.0005233 | 0.001781 | 0.0266 | 0.01136 | 0.0151 | 0.01368 | 94.25 | 0.04943 | 0.04664 | 0.02085 | 0.1084 | 1083.67 | 275999999.999 | -| UMAUSDT | 0.0009032 | 0.0007933 | 0.06663 | 0.01509 | 0.008704 | 0.008126 | 65.73 | 0.06677 | 0.01044 | 0.05923 | 0.1231 | 182.46 | 275999999.999 | -| QTUMUSDT | 0.000586 | 0.001159 | 0.0708 | 0.01185 | 0.01699 | 0.01475 | 117.3 | 0.09903 | 0.02856 | 0.08721 | 0.2477 | 1357.62 | 275999999.999 | -| RSRUSDT | 0.0008021 | 0.001541 | 0.06303 | 0.01079 | 0.01844 | 0.01639 | 139.9 | 0.09933 | 0.06928 | 0.08792 | 0.1726 | 1115.67 | 275999999.999 | -| HBARUSDT | 0.001263 | 0.001793 | 0.03743 | 0.02832 | 0.008313 | 0.01265 | 52.38 | 0.09217 | 0.05686 | 0.09943 | 0.1888 | 966.67 | 275999999.999 | -| BANDUSDT | 0.0008424 | 0.00197 | 0.05737 | 0.01664 | 0.01663 | 0.01374 | 110.5 | 0.07556 | 0.06855 | 0.0725 | 0.1896 | 1197.67 | 275999999.999 | -| AGIXUSDT | 0.0006748 | 0.001055 | 0.05981 | 0.01436 | 0.01448 | 0.01182 | 122.7 | 0.09137 | 0.1314 | 0.09624 | 0.1179 | 265.38 | 275999999.999 | -| ETCUSDT | 0.0008029 | 0.001854 | 0.02597 | 0.01079 | 0.006699 | 0.00663 | 61.97 | 0.04788 | 0.02883 | 0.04836 | 0.13 | 1392.62 | 275999999.999 | -| DEFIUSDT | 0.0006421 | 0.001614 | 0.06872 | 0.02473 | 0.01065 | 0.01235 | 127.2 | 0.09018 | 0.02928 | 0.08206 | 0.207 | 1167.67 | 275999999.999 | -| ENJUSDT | 0.0007282 | 0.001789 | 0.06454 | 0.02674 | 0.01392 | 0.01696 | 120.7 | 0.08316 | 0.009893 | 0.07355 | 0.243 | 1135.67 | 275999999.999 | -| SNXUSDT | 0.0008076 | 0.001662 | 0.08301 | 0.01722 | 0.01937 | 0.0157 | 129.2 | 0.09635 | 0.0109 | 0.07861 | 0.1773 | 1181.67 | 275999999.999 | -| IOSTUSDT | 0.0006003 | 0.001438 | 0.06018 | 0.01687 | 0.01415 | 0.01543 | 143.3 | 0.0992 | 0.0372 | 0.08654 | 0.2318 | 1356.62 | 275999999.999 | -| MTLUSDT | 0.0006836 | 0.001187 | 0.05299 | 0.01367 | 0.01657 | 0.01646 | 128.6 | 0.09609 | 0.0377 | 0.08348 | 0.2365 | 952.67 | 275999999.999 | -| FETUSDT | 0.001486 | 0.001138 | 0.03902 | 0.02138 | 0.01205 | 0.009448 | 56.5 | 0.06015 | 0.04701 | 0.05606 | 0.1308 | 295.88 | 275999999.999 | -| HOTUSDT | 0.001123 | 0.003037 | 0.0669 | 0.03637 | 0.008218 | 0.009577 | 107.0 | 0.07247 | 0.04063 | 0.07956 | 0.161 | 953.67 | 275999999.999 | -| 1000SHIBUSDT | 0.0008669 | 0.002564 | 0.05532 | 0.005207 | 0.01095 | 0.008279 | 90.65 | 0.05199 | 0.005475 | 0.04046 | 0.2206 | 912.25 | 275999999.999 | -| ZENUSDT | 0.0006382 | 0.001573 | 0.05162 | 0.005321 | 0.01778 | 0.01323 | 141.1 | 0.06535 | 0.0329 | 0.04628 | 0.127 | 1079.67 | 275999999.999 | -| SPELLUSDT | 0.0009666 | 0.001083 | 0.08475 | 0.02381 | 0.009383 | 0.009223 | 100.0 | 0.07211 | 0.02379 | 0.0678 | 0.1188 | 428.46 | 275999999.999 | -| OGNUSDT | 0.0006684 | 0.001629 | 0.04389 | 0.009766 | 0.01837 | 0.0178 | 132.5 | 0.0953 | 0.02273 | 0.04006 | 0.1756 | 951.67 | 275999999.999 | -| SUSHIUSDT | 0.0007393 | 0.00163 | 0.03444 | 0.02015 | 0.01534 | 0.01585 | 88.15 | 0.09846 | 0.04496 | 0.09957 | 0.1528 | 1160.67 | 275999999.999 | -| CELOUSDT | 0.0005331 | 0.0008789 | 0.05322 | 0.01673 | 0.01381 | 0.01235 | 126.8 | 0.08157 | 0.09738 | 0.08311 | 0.13 | 772.83 | 275999999.999 | -| BNBUSDT | 0.0005659 | 0.001798 | 0.03292 | 0.01924 | 0.006364 | 0.008269 | 129.0 | 0.03976 | 0.0244 | 0.03816 | 0.1105 | 1367.62 | 275999999.999 | -| NEARUSDT | 0.0008662 | 0.001729 | 0.05339 | 0.04016 | 0.009786 | 0.01495 | 78.73 | 0.08313 | 0.09488 | 0.08349 | 0.173 | 1119.62 | 275999999.999 | -| APEUSDT | 0.0007998 | 0.001565 | 0.04802 | 0.02505 | 0.01122 | 0.01243 | 105.7 | 0.09908 | 0.008275 | 0.08871 | 0.1888 | 601.33 | 275999999.999 | -| EDUUSDT | 0.0006772 | 0.0008702 | 0.03751 | 0.01087 | 0.01846 | 0.01214 | 97.97 | 0.05801 | 0.0223 | 0.04046 | 0.08221 | 192.46 | 275999999.999 | -| ADAUSDT | 0.0008255 | 0.001615 | 0.04874 | 0.03963 | 0.008102 | 0.01374 | 75.32 | 0.08929 | 0.05001 | 0.09427 | 0.2286 | 1377.62 | 275999999.999 | -| API3USDT | 0.0005673 | 0.001085 | 0.04518 | 0.02583 | 0.01001 | 0.008215 | 74.45 | 0.04524 | 0.05011 | 0.04305 | 0.09065 | 624.83 | 275999999.999 | -| GRTUSDT | 0.0006235 | 0.00149 | 0.05548 | 0.006656 | 0.01446 | 0.01272 | 142.1 | 0.0805 | 0.05401 | 0.07247 | 0.2014 | 1054.67 | 275999999.999 | -| AMBUSDT | 0.001105 | 0.00114 | 0.08012 | 0.009115 | 0.01927 | 0.01408 | 77.52 | 0.08337 | 0.02956 | 0.06686 | 0.1642 | 223.46 | 275999999.999 | -| BELUSDT | 0.0007594 | 0.001577 | 0.05199 | 0.01167 | 0.01551 | 0.01296 | 127.9 | 0.07882 | 0.03061 | 0.07313 | 0.172 | 1085.67 | 275999999.999 | -| CELRUSDT | 0.0008623 | 0.002087 | 0.08355 | 0.03646 | 0.0136 | 0.01454 | 133.7 | 0.09745 | 0.05711 | 0.09092 | 0.2271 | 954.67 | 275999999.999 | -| HFTUSDT | 0.001109 | 0.0009164 | 0.04894 | 0.01775 | 0.0106 | 0.01007 | 93.87 | 0.07786 | 0.02225 | 0.07224 | 0.1091 | 216.46 | 275999999.999 | -| MAVUSDT | 0.001401 | 0.001426 | 0.06247 | 0.005094 | 0.01623 | 0.01204 | 84.73 | 0.0466 | 0.003099 | 0.02876 | 0.05089 | 132.46 | 275999999.999 | -| BALUSDT | 0.0005262 | 0.001124 | 0.02774 | 0.01005 | 0.01277 | 0.01126 | 142.8 | 0.05214 | 0.01969 | 0.03708 | 0.2277 | 1163.67 | 275999999.999 | -| YFIUSDT | 0.001137 | 0.003406 | 0.05407 | 0.02343 | 0.01012 | 0.01285 | 101.6 | 0.04689 | 0.05237 | 0.04379 | 0.2283 | 1164.67 | 275999999.999 | -| OCEANUSDT | 0.0009813 | 0.001698 | 0.0658 | 0.01159 | 0.01691 | 0.01467 | 134.2 | 0.07088 | 0.123 | 0.0798 | 0.1762 | 1100.67 | 275999999.999 | -| BLZUSDT | 0.0006878 | 0.0009903 | 0.04508 | 0.005954 | 0.01714 | 0.01631 | 122.8 | 0.09783 | 0.08705 | 0.08706 | 0.1981 | 1147.67 | 275999999.999 | -| SANDUSDT | 0.0006805 | 0.002002 | 0.03936 | 0.01514 | 0.008763 | 0.01041 | 129.7 | 0.06428 | 0.01671 | 0.05843 | 0.1711 | 1017.67 | 275999999.999 | -| AVAXUSDT | 0.0005888 | 0.001776 | 0.08764 | 0.05609 | 0.02278 | 0.03759 | 109.7 | 0.08354 | 0.08583 | 0.07786 | 0.215 | 1141.67 | 275999999.999 | -| SFPUSDT | 0.0007793 | 0.002097 | 0.04231 | 0.02217 | 0.01319 | 0.01387 | 135.5 | 0.082 | 0.009336 | 0.07555 | 0.195 | 987.67 | 275999999.999 | -| ONEUSDT | 0.0005273 | 0.001556 | 0.05634 | 0.01133 | 0.01679 | 0.01318 | 135.5 | 0.07999 | 0.02815 | 0.0661 | 0.1878 | 965.67 | 275999999.999 | -| LINAUSDT | 0.0008498 | 0.001518 | 0.04337 | 0.01852 | 0.01823 | 0.01404 | 95.48 | 0.08036 | 0.0162 | 0.07033 | 0.2333 | 964.67 | 275999999.999 | -| 1000LUNCUSDT | 0.000887 | 0.001695 | 0.04512 | 0.008253 | 0.007662 | 0.007523 | 48.57 | 0.06095 | 0.002779 | 0.05235 | 0.1417 | 425.42 | 275999999.999 | -| PHBUSDT | 0.0007948 | 0.001025 | 0.07528 | 0.01339 | 0.01374 | 0.01154 | 96.33 | 0.07683 | 0.04168 | 0.07159 | 0.1211 | 265.38 | 275999999.999 | -| DOGEUSDT | 0.001166 | 0.002963 | 0.07229 | 0.02478 | 0.01087 | 0.009957 | 106.5 | 0.0745 | 0.06391 | 0.0894 | 0.2252 | 1216.58 | 275999999.999 | -| BNXUSDT | 0.00052 | 0.0007437 | 0.04763 | 0.0 | 0.01659 | 0.01281 | 111.1 | 0.07076 | 0.02143 | 0.03123 | 0.04226 | 259.38 | 275999999.999 | -| IMXUSDT | 0.0007624 | 0.001489 | 0.06042 | 0.006387 | 0.008218 | 0.01089 | 94.5 | 0.06521 | 0.1184 | 0.06062 | 0.1127 | 635.83 | 275999999.999 | -| 1INCHUSDT | 0.0007498 | 0.001839 | 0.04766 | 0.01645 | 0.0128 | 0.0131 | 136.4 | 0.07012 | 0.05926 | 0.06277 | 0.143 | 1048.54 | 275999999.999 | -| LITUSDT | 0.0006803 | 0.001428 | 0.03967 | 0.01809 | 0.01474 | 0.01351 | 118.7 | 0.07111 | 0.004772 | 0.06223 | 0.1973 | 993.67 | 275999999.999 | -| MATICUSDT | 0.001265 | 0.003477 | 0.0501 | 0.02033 | 0.009624 | 0.01014 | 91.1 | 0.06845 | 0.009894 | 0.06396 | 0.1345 | 1112.67 | 275999999.999 | -| LDOUSDT | 0.0006189 | 0.001287 | 0.06557 | 0.01972 | 0.01368 | 0.01358 | 93.1 | 0.09855 | 0.04243 | 0.09391 | 0.1473 | 412.46 | 275999999.999 | -| RLCUSDT | 0.001194 | 0.003205 | 0.06293 | 0.03311 | 0.01341 | 0.01459 | 111.2 | 0.09488 | 0.0108 | 0.0876 | 0.2096 | 1195.67 | 275999999.999 | -| VETUSDT | 0.0005629 | 0.001642 | 0.03533 | 0.006621 | 0.009252 | 0.01032 | 104.2 | 0.05507 | 0.01458 | 0.03894 | 0.2135 | 1363.62 | 275999999.999 | -| XVSUSDT | 0.001159 | 0.0007705 | 0.06648 | 0.02032 | 0.01755 | 0.01287 | 96.7 | 0.08486 | 0.03064 | 0.0762 | 0.1272 | 209.88 | 275999999.999 | -| SXPUSDT | 0.0007277 | 0.002465 | 0.03344 | 0.0175 | 0.01088 | 0.01174 | 80.73 | 0.0625 | 0.01114 | 0.05695 | 0.1544 | 1205.58 | 275999999.999 | -| ANKRUSDT | 0.0009376 | 0.001308 | 0.03614 | 0.01561 | 0.01008 | 0.0113 | 121.8 | 0.07648 | 0.02963 | 0.07292 | 0.2297 | 1015.67 | 275999999.999 | -| PENDLEUSDT | 0.0009901 | 0.0009186 | 0.04594 | 0.001162 | 0.01349 | 0.01025 | 73.38 | 0.04196 | 0.001732 | 0.01447 | 0.04732 | 103.88 | 275999999.999 | -| KEYUSDT | 0.001179 | 0.001241 | 0.02911 | 0.003436 | 0.01306 | 0.01019 | 74.15 | 0.06369 | 0.006407 | 0.02731 | 0.1257 | 168.46 | 275999999.999 | -| GALAUSDT | 0.0007448 | 0.001229 | 0.05989 | 0.03698 | 0.01126 | 0.01157 | 94.78 | 0.08166 | 0.08711 | 0.09923 | 0.1298 | 781.83 | 275999999.999 | -| RUNEUSDT | 0.000816 | 0.002487 | 0.05478 | 0.01969 | 0.01621 | 0.01539 | 143.2 | 0.09743 | 0.05003 | 0.0915 | 0.2286 | 1160.67 | 275999999.999 | -| CFXUSDT | 0.0006805 | 0.0009454 | 0.06803 | 0.02784 | 0.01823 | 0.01275 | 122.7 | 0.08395 | 0.09638 | 0.08142 | 0.1098 | 261.38 | 275999999.999 | -| DOTUSDT | 0.0005122 | 0.001444 | 0.05049 | 0.01913 | 0.01125 | 0.01334 | 134.1 | 0.07245 | 0.01895 | 0.06149 | 0.2473 | 1173.67 | 275999999.999 | -| INJUSDT | 0.001363 | 0.001884 | 0.08986 | 0.03651 | 0.01262 | 0.01059 | 110.3 | 0.08845 | 0.1271 | 0.09725 | 0.1377 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.0008505 | 0.00197 | 0.05519 | 0.02176 | 0.0129 | 0.014 | 128.5 | 0.09025 | 0.01585 | 0.08314 | 0.1761 | 1240.58 | 275999999.999 | -| COTIUSDT | 0.0007935 | 0.001877 | 0.06489 | 0.02982 | 0.0164 | 0.01422 | 129.6 | 0.09643 | 0.07091 | 0.0902 | 0.2438 | 973.67 | 275999999.999 | -| RADUSDT | 0.001265 | 0.001155 | 0.08762 | 0.04877 | 0.009102 | 0.0095 | 81.17 | 0.0822 | 0.05208 | 0.07698 | 0.118 | 182.46 | 275999999.999 | -| COMBOUSDT | 0.0009999 | 0.001195 | 0.0701 | 0.03063 | 0.01414 | 0.01445 | 70.63 | 0.09112 | 0.1249 | 0.08383 | 0.1417 | 159.46 | 275999999.999 | -| BCHUSDT | 0.0009703 | 0.001376 | 0.06056 | 0.04373 | 0.01324 | 0.0214 | 74.83 | 0.08621 | 0.1374 | 0.08494 | 0.2054 | 1407.96 | 275999999.999 | -| RVNUSDT | 0.0005357 | 0.001992 | 0.04351 | 0.004016 | 0.01141 | 0.008947 | 91.45 | 0.049 | 0.05004 | 0.02542 | 0.1246 | 988.67 | 275999999.999 | -| ICXUSDT | 0.0007903 | 0.00162 | 0.06883 | 0.03297 | 0.0155 | 0.01571 | 143.2 | 0.09588 | 0.05641 | 0.09128 | 0.2193 | 1149.67 | 275999999.999 | -| RNDRUSDT | 0.001239 | 0.00199 | 0.05221 | 0.03976 | 0.00898 | 0.01041 | 37.27 | 0.07451 | 0.02605 | 0.07168 | 0.09711 | 278.88 | 275999999.999 | -| CVXUSDT | 0.000515 | 0.000582 | 0.04721 | 0.01528 | 0.01409 | 0.01116 | 136.6 | 0.04744 | 0.006941 | 0.03835 | 0.1057 | 412.46 | 275999999.999 | -| CTKUSDT | 0.0007197 | 0.001949 | 0.0764 | 0.01743 | 0.01714 | 0.0166 | 137.4 | 0.09288 | 0.02771 | 0.08949 | 0.2169 | 1084.67 | 275999999.999 | -| COMPUSDT | 0.001118 | 0.001758 | 0.0706 | 0.0313 | 0.01308 | 0.01517 | 138.5 | 0.09731 | 0.04197 | 0.09315 | 0.1642 | 1226.58 | 275999999.999 | -| GMXUSDT | 0.0007629 | 0.0009278 | 0.09696 | 0.06728 | 0.01348 | 0.01165 | 138.2 | 0.07369 | 0.06976 | 0.07066 | 0.1041 | 264.38 | 275999999.999 | -| TUSDT | 0.0007288 | 0.0006697 | 0.0959 | 0.03642 | 0.01538 | 0.01353 | 124.9 | 0.09435 | 0.129 | 0.09033 | 0.118 | 280.42 | 275999999.999 | -| SUIUSDT | 0.001167 | 0.001381 | 0.05315 | 0.01558 | 0.008731 | 0.008888 | 63.08 | 0.07587 | 0.02367 | 0.07091 | 0.1354 | 189.29 | 275999999.999 | -| MKRUSDT | 0.001159 | 0.001937 | 0.08655 | 0.02282 | 0.01282 | 0.01204 | 105.1 | 0.09111 | 0.0495 | 0.09509 | 0.2164 | 1182.67 | 275999999.999 | -| XTZUSDT | 0.0005829 | 0.001795 | 0.0608 | 0.02146 | 0.01279 | 0.01302 | 136.3 | 0.08111 | 0.04793 | 0.07419 | 0.1557 | 1371.62 | 275999999.999 | -| OPUSDT | 0.0007618 | 0.001442 | 0.05599 | 0.03998 | 0.01019 | 0.01318 | 42.4 | 0.09591 | 0.08198 | 0.09561 | 0.1414 | 525.38 | 275999999.999 | -| CHRUSDT | 0.0008753 | 0.002094 | 0.07128 | 0.02607 | 0.01247 | 0.01391 | 132.4 | 0.09057 | 0.05304 | 0.08154 | 0.2462 | 971.67 | 275999999.999 | -| STXUSDT | 0.0008985 | 0.00122 | 0.07885 | 0.009152 | 0.01663 | 0.01261 | 127.8 | 0.05904 | 0.03295 | 0.05044 | 0.09515 | 260.38 | 275999999.999 | -| THETAUSDT | 0.000734 | 0.002482 | 0.06315 | 0.02027 | 0.01169 | 0.01133 | 74.72 | 0.08703 | 0.01271 | 0.07976 | 0.2312 | 1260.62 | 275999999.999 | -| ARBUSDT | 0.000717 | 0.0009708 | 0.05243 | 0.01121 | 0.01097 | 0.007952 | 105.3 | 0.04474 | 0.01566 | 0.03488 | 0.08354 | 230.33 | 275999999.999 | -| SKLUSDT | 0.0007072 | 0.001693 | 0.04934 | 0.02649 | 0.01506 | 0.01545 | 140.1 | 0.09769 | 0.01457 | 0.08995 | 0.2478 | 1065.67 | 275999999.999 | -| ARUSDT | 0.0006516 | 0.001447 | 0.05537 | 0.02005 | 0.01501 | 0.01337 | 133.2 | 0.08747 | 0.0677 | 0.09678 | 0.1659 | 771.83 | 275999999.999 | -| ASTRUSDT | 0.001043 | 0.001029 | 0.05496 | 0.02227 | 0.0095 | 0.00769 | 47.65 | 0.05769 | 0.06162 | 0.05867 | 0.1157 | 267.88 | 275999999.999 | -| HOOKUSDT | 0.0007439 | 0.001182 | 0.08296 | 0.0316 | 0.01837 | 0.01353 | 85.95 | 0.08382 | 0.01481 | 0.07291 | 0.1281 | 289.83 | 275999999.999 | -| RDNTUSDT | 0.001092 | 0.001289 | 0.1158 | 0.0391 | 0.01131 | 0.0113 | 65.0 | 0.0912 | 0.01943 | 0.08387 | 0.1273 | 217.46 | 275999999.999 | -| NMRUSDT | 0.00113 | 0.001453 | 0.04042 | 0.003284 | 0.007409 | 0.005706 | 68.82 | 0.0256 | 0.006153 | 0.01343 | 0.06145 | 139.46 | 275999999.999 | -| NKNUSDT | 0.001001 | 0.001981 | 0.07228 | 0.01647 | 0.01532 | 0.01442 | 121.1 | 0.07893 | 0.03602 | 0.07607 | 0.2333 | 943.67 | 275999999.999 | -| ALICEUSDT | 0.0006987 | 0.001749 | 0.04622 | 0.01269 | 0.01246 | 0.01055 | 103.2 | 0.07501 | 0.01799 | 0.06724 | 0.2227 | 967.83 | 275999999.999 | -| UNFIUSDT | 0.001331 | 0.001776 | 0.06684 | 0.003694 | 0.0211 | 0.01703 | 118.8 | 0.0988 | 0.02703 | 0.06102 | 0.1888 | 992.67 | 275999999.999 | -| LTCUSDT | 0.0005197 | 0.001009 | 0.03306 | 0.005575 | 0.01276 | 0.0111 | 125.3 | 0.06735 | 0.02294 | 0.03994 | 0.2289 | 1399.62 | 275999999.999 | -| CKBUSDT | 0.0005406 | 0.0005063 | 0.05665 | 0.00751 | 0.007321 | 0.00856 | 58.22 | 0.0798 | 0.1493 | 0.07986 | 0.1266 | 253.46 | 275999999.999 | -| STMXUSDT | 0.0007039 | 0.001159 | 0.03664 | 0.01909 | 0.0159 | 0.01503 | 132.3 | 0.07909 | 0.07936 | 0.07488 | 0.2227 | 961.67 | 275999999.999 | -| ARPAUSDT | 0.0008982 | 0.001638 | 0.07357 | 0.04018 | 0.01219 | 0.01268 | 134.6 | 0.08447 | 0.01723 | 0.07843 | 0.2024 | 750.83 | 275999999.999 | -| ZRXUSDT | 0.0006399 | 0.001425 | 0.05226 | 0.02976 | 0.01217 | 0.01481 | 79.47 | 0.08967 | 0.01406 | 0.07975 | 0.2067 | 1232.58 | 275999999.999 | -| ICPUSDT | 0.0006803 | 0.0009939 | 0.05653 | 0.0007865 | 0.01081 | 0.007302 | 115.1 | 0.03303 | 0.001067 | 0.01873 | 0.05975 | 407.88 | 275999999.999 | -| ZILUSDT | 0.0007913 | 0.001801 | 0.05701 | 0.02796 | 0.01421 | 0.01623 | 136.8 | 0.09918 | 0.01447 | 0.08794 | 0.2022 | 1238.58 | 275999999.999 | -| REEFUSDT | 0.00067 | 0.001494 | 0.04414 | 0.01137 | 0.01206 | 0.01339 | 82.88 | 0.07799 | 0.03055 | 0.06226 | 0.2218 | 989.67 | 275999999.999 | -| LINKUSDT | 0.0008312 | 0.002027 | 0.05372 | 0.02416 | 0.009731 | 0.01217 | 133.5 | 0.08792 | 0.03638 | 0.0898 | 0.2384 | 1391.62 | 275999999.999 | -| STORJUSDT | 0.0008565 | 0.001363 | 0.04489 | 0.03142 | 0.01619 | 0.01984 | 118.4 | 0.05988 | 0.03814 | 0.05204 | 0.187 | 1148.67 | 275999999.999 | -| KSMUSDT | 0.0006741 | 0.001452 | 0.05784 | 0.02833 | 0.01406 | 0.01622 | 89.72 | 0.07144 | 0.08408 | 0.06803 | 0.2001 | 1120.67 | 275999999.999 | -| XRPUSDT | 0.0007644 | 0.001858 | 0.03406 | 0.004064 | 0.005215 | 0.008401 | 78.95 | 0.05448 | 0.04979 | 0.05259 | 0.1632 | 1402.62 | 275999999.999 | -| MDTUSDT | 0.001468 | 0.001623 | 0.09336 | 0.05317 | 0.008642 | 0.007797 | 76.4 | 0.04664 | 0.05405 | 0.04606 | 0.06372 | 131.46 | 275999999.999 | -| 1000PEPEUSDT | 0.001425 | 0.002006 | 0.05537 | 0.02267 | 0.01277 | 0.01152 | 53.28 | 0.09597 | 0.06676 | 0.09622 | 0.1282 | 187.29 | 275999999.999 | -| WAVESUSDT | 0.0009585 | 0.001228 | 0.02392 | 0.01058 | 0.01081 | 0.01128 | 63.67 | 0.0601 | 0.01022 | 0.05079 | 0.2184 | 1183.67 | 275999999.999 | -| UNIUSDT | 0.0005213 | 0.001259 | 0.04622 | 0.01866 | 0.0146 | 0.01379 | 142.8 | 0.09933 | 0.02081 | 0.08575 | 0.1477 | 1146.67 | 275999999.999 | -| EOSUSDT | 0.0002641 | 0.000638 | 0.02226 | 0.000119 | 0.01106 | 0.009731 | 129.2 | 0.04835 | 0.02266 | 0.01909 | 0.1325 | 1400.62 | 276000000.0 | -| DUSKUSDT | 0.0002816 | 0.0005092 | 0.03184 | 0.01097 | 0.0168 | 0.0156 | 91.75 | 0.09371 | 0.06466 | 0.08389 | 0.1418 | 670.83 | 276000000.0 | -| ALPHAUSDT | 0.000388 | 0.0008978 | 0.0328 | 0.00106 | 0.0174 | 0.01529 | 111.7 | 0.07596 | 0.03146 | 0.03435 | 0.2403 | 1080.67 | 276000000.0 | -| CTSIUSDT | 0.0003137 | 0.0005978 | 0.0372 | 3.36e-05 | 0.01385 | 0.0127 | 109.6 | 0.08326 | 0.02394 | 0.04592 | 0.08513 | 743.83 | 276000000.0 | -| KNCUSDT | 0.0003382 | 0.0006301 | 0.02851 | 0.0004117 | 0.01933 | 0.01678 | 129.3 | 0.09927 | 0.0003752 | 0.04013 | 0.2494 | 1234.62 | 276000000.0 | -| FLMUSDT | 0.0003117 | 0.0005192 | 0.02051 | 0.003738 | 0.01887 | 0.01778 | 127.3 | 0.09968 | 0.00432 | 0.04187 | 0.2225 | 1135.67 | 276000000.0 | -| BTCUSDT | 0.0003547 | 0.0009114 | 0.1174 | 0.05293 | 0.01464 | 0.02035 | 141.4 | 0.08367 | 0.1176 | 0.08065 | 0.1327 | 1407.96 | 276000000.0 | -| TRBUSDT | 0.0004347 | 0.0005788 | 0.02005 | 2.152e-05 | 0.01974 | 0.01642 | 143.2 | 0.09018 | 0.0 | 0.02334 | 0.06088 | 1161.67 | 276000000.0 | -| MANAUSDT | 0.00049 | 0.0009823 | 0.03059 | 0.01211 | 0.01159 | 0.01012 | 125.0 | 0.04 | 0.06712 | 0.02443 | 0.09595 | 968.67 | 276000000.0 | -| ROSEUSDT | 0.0003411 | 0.0007468 | 0.0153 | 0.001512 | 0.009225 | 0.007715 | 107.2 | 0.03171 | 0.002204 | 0.007427 | 0.04088 | 677.83 | 276000000.0 | -| FTMUSDT | 0.0003178 | 0.0008572 | 0.02317 | 0.001961 | 0.01364 | 0.01213 | 102.7 | 0.06256 | 0.02643 | 0.03418 | 0.1783 | 1140.67 | 276000000.0 | -| GALUSDT | 0.0002636 | 0.0006581 | 0.02378 | 0.0 | 0.01282 | 0.01058 | 75.62 | 0.05281 | 0.04426 | 0.02245 | 0.03878 | 552.38 | 276000000.0 | -| FXSUSDT | 0.0001773 | 0.0003331 | 0.03855 | 0.01754 | 0.01857 | 0.01477 | 142.3 | 0.07932 | 0.08041 | 0.06936 | 0.09144 | 292.83 | 276000000.0 | -| AUDIOUSDT | 0.0004558 | 0.001052 | 0.03937 | 0.01349 | 0.01301 | 0.01175 | 135.8 | 0.05913 | 0.04677 | 0.05419 | 0.1773 | 811.83 | 276000000.0 | -| TRXUSDT | 0.000271 | 0.001285 | 0.03285 | 0.01456 | 0.01009 | 0.009805 | 132.5 | 0.06107 | 0.01187 | 0.05854 | 0.1137 | 1393.62 | 276000000.0 | -| WOOUSDT | 0.0004268 | 0.0007817 | 0.04827 | 0.01695 | 0.01211 | 0.01288 | 63.73 | 0.0988 | 0.05396 | 0.09116 | 0.143 | 579.83 | 276000000.0 | -| RENUSDT | 0.0003563 | 0.000643 | 0.02489 | 0.002511 | 0.01776 | 0.01697 | 113.0 | 0.099 | 0.04695 | 0.05234 | 0.1659 | 1121.67 | 276000000.0 | -| APTUSDT | 0.0004627 | 0.0007687 | 0.03129 | 0.004684 | 0.01216 | 0.009331 | 74.08 | 0.06508 | 0.01306 | 0.0489 | 0.1305 | 385.88 | 276000000.0 | -| DASHUSDT | 0.0002918 | 0.0007617 | 0.03606 | 0.002991 | 0.016 | 0.01336 | 143.0 | 0.08382 | 0.02544 | 0.05254 | 0.1812 | 1373.62 | 276000000.0 | -| LUNA2USDT | 0.0004188 | 0.0005728 | 0.02317 | 0.0001177 | 0.01269 | 0.01141 | 107.0 | 0.06571 | 0.09974 | 0.032 | 0.2241 | 424.83 | 276000000.0 | -| DENTUSDT | 0.0002779 | 0.0007953 | 0.03428 | 0.004249 | 0.01845 | 0.01675 | 139.8 | 0.09959 | 0.09385 | 0.04905 | 0.2362 | 959.79 | 276000000.0 | -| ATAUSDT | 0.000412 | 0.0007535 | 0.05965 | 0.0 | 0.0159 | 0.01641 | 104.2 | 0.08819 | 0.106 | 0.04847 | 0.1194 | 799.83 | 276000000.0 | -| STGUSDT | 0.0003862 | 0.0008183 | 0.03191 | 0.002667 | 0.01222 | 0.009766 | 142.7 | 0.04427 | 0.006946 | 0.01255 | 0.02944 | 440.46 | 276000000.0 | -| ENSUSDT | 0.000496 | 0.001274 | 0.08474 | 0.02602 | 0.01398 | 0.01482 | 130.5 | 0.09781 | 0.1122 | 0.08868 | 0.1816 | 708.83 | 276000000.0 | -| KAVAUSDT | 0.0002998 | 0.0007823 | 0.03989 | 0.01395 | 0.0189 | 0.01403 | 135.2 | 0.07652 | 0.01632 | 0.06409 | 0.2305 | 1198.67 | 276000000.0 | -| HIGHUSDT | 0.0003756 | 0.0007165 | 0.04162 | 0.0 | 0.01724 | 0.01354 | 141.5 | 0.07197 | 0.09058 | 0.04523 | 0.06175 | 274.88 | 276000000.0 | -| XLMUSDT | 0.0002242 | 0.001185 | 0.01497 | 0.000174 | 0.01023 | 0.00791 | 110.4 | 0.03775 | 0.0 | 0.00967 | 0.1262 | 1388.62 | 276000000.0 | -| JOEUSDT | 0.0001199 | 0.0001635 | 0.0346 | 0.002839 | 0.01408 | 0.01219 | 68.8 | 0.08215 | 0.02989 | 0.03804 | 0.07099 | 224.46 | 276000000.0 | -| ONTUSDT | 0.0004092 | 0.0008396 | 0.04923 | 0.005534 | 0.01738 | 0.01622 | 138.8 | 0.09025 | 0.0262 | 0.06084 | 0.1496 | 1366.62 | 276000000.0 | -| DARUSDT | 0.0004439 | 0.0008565 | 0.04947 | 0.009922 | 0.01637 | 0.01208 | 125.1 | 0.09054 | 0.04777 | 0.08439 | 0.1492 | 558.83 | 276000000.0 | -| BLUEBIRDUSDT | 0.0003019 | 0.0005587 | 0.05383 | 0.0 | 0.006914 | 0.005147 | 129.2 | 0.02801 | 0.001365 | 0.01345 | 0.03904 | 371.46 | 276000000.0 | -| IDUSDT | 0.0003059 | 0.0004651 | 0.03814 | 0.02248 | 0.01573 | 0.01351 | 75.83 | 0.07309 | 0.03832 | 0.0664 | 0.1073 | 230.38 | 276000000.0 | -| CHZUSDT | 0.0003041 | 0.001146 | 0.02307 | 4.485e-05 | 0.0129 | 0.01194 | 141.6 | 0.06702 | 0.0 | 0.03014 | 0.07913 | 1021.67 | 276000000.0 | -| MAGICUSDT | 0.0004662 | 0.0005861 | 0.05202 | 0.0121 | 0.01883 | 0.01295 | 110.6 | 0.07022 | 0.03362 | 0.05356 | 0.06919 | 287.83 | 276000000.0 | -| BATUSDT | 0.0003549 | 0.0008523 | 0.04583 | 8.548e-05 | 0.01439 | 0.01567 | 123.4 | 0.09733 | 0.0902 | 0.05058 | 0.2457 | 1364.62 | 276000000.0 | -| IOTAUSDT | 0.0004685 | 0.001444 | 0.06055 | 0.004308 | 0.01323 | 0.01421 | 113.9 | 0.09616 | 0.03204 | 0.07175 | 0.1807 | 1365.62 | 276000000.0 | -| NEOUSDT | 0.0002849 | 0.0005772 | 0.02607 | 0.004798 | 0.01586 | 0.01409 | 122.3 | 0.07338 | 0.02172 | 0.0483 | 0.1207 | 1360.62 | 276000000.0 | -| ANTUSDT | 0.0001072 | 0.0001844 | 0.01438 | 0.0 | 0.02101 | 0.01718 | 127.5 | 0.09526 | 0.0 | 0.02122 | 0.0498 | 681.79 | 276000000.0 | -| XMRUSDT | 0.0004128 | 0.001007 | 0.05323 | 0.01025 | 0.01072 | 0.009861 | 131.8 | 0.05553 | 0.01779 | 0.05117 | 0.2274 | 1374.62 | 276000000.0 | -| SSVUSDT | 0.0004058 | 0.0005229 | 0.03248 | 0.001537 | 0.01633 | 0.01221 | 110.2 | 0.06821 | 0.06834 | 0.04456 | 0.07352 | 257.46 | 276000000.0 | -| DYDXUSDT | 0.0003947 | 0.0008793 | 0.04013 | 0.005749 | 0.01622 | 0.01427 | 134.1 | 0.08864 | 0.05541 | 0.07606 | 0.156 | 789.83 | 276000000.0 | -| FILUSDT | 0.000369 | 0.0007635 | 0.03311 | 0.006678 | 0.01195 | 0.01223 | 122.7 | 0.09455 | 0.0368 | 0.08011 | 0.1864 | 1118.71 | 276000000.0 | -| FOOTBALLUSDT | 0.0002497 | 0.0006075 | 0.05286 | 0.01061 | 0.01092 | 0.008821 | 104.3 | 0.05357 | 0.04626 | 0.04798 | 0.08841 | 433.83 | 276000000.0 | -| PEOPLEUSDT | 0.0003688 | 0.0007634 | 0.03161 | 6.084e-06 | 0.01565 | 0.01148 | 112.0 | 0.06667 | 0.002123 | 0.02863 | 0.09604 | 684.79 | 276000000.0 | -| ATOMUSDT | 0.0004034 | 0.001051 | 0.02548 | 0.001164 | 0.009887 | 0.008346 | 122.7 | 0.0437 | 0.002033 | 0.02013 | 0.09839 | 1370.46 | 276000000.0 | -| TRUUSDT | 0.0004571 | 0.0007626 | 0.0354 | 0.01895 | 0.01193 | 0.01154 | 46.15 | 0.0793 | 0.0179 | 0.07403 | 0.117 | 246.46 | 276000000.0 | -| ZECUSDT | 0.0004755 | 0.0009425 | 0.0315 | 0.009741 | 0.01194 | 0.01221 | 123.0 | 0.06074 | 0.01 | 0.04732 | 0.2413 | 1372.62 | 276000000.0 | -| TLMUSDT | 0.0002777 | 0.0002855 | 0.03136 | 0.0 | 0.01621 | 0.01156 | 126.3 | 0.07487 | 0.0 | 0.02754 | 0.03717 | 223.46 | 276000000.0 | -| PERPUSDT | 0.0004288 | 0.000434 | 0.01914 | 0.003721 | 0.01593 | 0.01151 | 83.33 | 0.04655 | 0.01241 | 0.01002 | 0.04378 | 247.46 | 276000000.0 | -| LPTUSDT | 0.0002877 | 0.0003816 | 0.04124 | 0.008409 | 0.01589 | 0.01561 | 77.93 | 0.102 | 0.1417 | 0.09081 | 0.1488 | 727.83 | 276001987.033 | -| TOMOUSDT | 0.0005547 | 0.0009007 | 0.02351 | 0.005274 | 0.02014 | 0.01904 | 137.4 | 0.1058 | 0.01904 | 0.06027 | 0.2334 | 1122.67 | 276005775.757 | -| JASMYUSDT | 0.0002593 | 0.0003954 | 0.04429 | 4.402e-05 | 0.01463 | 0.01277 | 112.4 | 0.07747 | 0.1549 | 0.06319 | 0.07558 | 567.83 | 276048672.856 | -| MASKUSDT | 0.0001482 | 0.0002614 | 0.02494 | 5.183e-05 | 0.02508 | 0.02651 | 100.7 | 0.1495 | 0.06797 | 0.05945 | 0.1255 | 803.83 | 276049480.297 | -| LEVERUSDT | 0.001366 | 0.001037 | 0.08677 | 0.07066 | 0.01547 | 0.01508 | 53.08 | 0.1181 | 0.06678 | 0.1071 | 0.1539 | 223.46 | 276729792.819 | -| C98USDT | 0.0002669 | 0.0004053 | 0.04175 | 0.002443 | 0.01994 | 0.01922 | 153.7 | 0.1122 | 0.1588 | 0.06766 | 0.1392 | 806.83 | 277066392.362 | -| KLAYUSDT | 9.594e-05 | 0.0001411 | 0.03118 | 0.003156 | 0.01339 | 0.01428 | 132.4 | 0.1208 | 0.2674 | 0.08952 | 0.1894 | 757.83 | 277194873.144 | -| GTCUSDT | 0.0002552 | 0.0004733 | 0.05903 | 0.0129 | 0.02273 | 0.02235 | 129.2 | 0.1333 | 0.2438 | 0.1066 | 0.1918 | 880.83 | 277630067.231 | -| IOTXUSDT | 0.0001862 | 0.0003267 | 0.039 | 0.004518 | 0.0189 | 0.01828 | 144.5 | 0.1383 | 0.1367 | 0.1178 | 0.2054 | 818.83 | 277862688.563 | -| 1000XECUSDT | 0.0001702 | 0.0003007 | 0.02746 | 0.00141 | 0.01696 | 0.01653 | 162.8 | 0.1022 | 0.09388 | 0.05892 | 0.2334 | 782.83 | 277883893.553 | -| DGBUSDT | 8.129e-05 | 0.0002255 | 0.01389 | 0.0 | 0.02009 | 0.01552 | 181.9 | 0.07581 | 0.0 | 0.01192 | 0.04347 | 931.83 | 279795000.0 | -| GMTUSDT | 7.198e-05 | 0.001038 | 0.103 | 0.07351 | 0.01905 | 0.02166 | 127.9 | 0.1515 | 0.1823 | 0.1415 | 0.1979 | 603.79 | 280527413.506 | -| BTCDOMUSDT | 5.253e-05 | 0.0001349 | 0.02027 | 0.00519 | 0.006248 | 0.00471 | 204.4 | 0.01847 | 0.08785 | 0.007118 | 0.02149 | 870.83 | 282038333.333 | -| BAKEUSDT | 0.000252 | 0.0003964 | 0.06965 | 0.0179 | 0.02554 | 0.02833 | 97.4 | 0.1788 | 0.3024 | 0.1492 | 0.2419 | 903.67 | 282522348.62 | -| FLOWUSDT | 0.000155 | 0.0002974 | 0.07628 | 0.02992 | 0.02229 | 0.02446 | 134.3 | 0.1853 | 0.3128 | 0.1494 | 0.173 | 636.83 | 282653656.54 | -| USDCUSDT | -8.597e-10 | -8.597e-09 | 0.00355 | 0.0 | 40.0 | 0.4002 | nan | 0.004399 | 1.0 | 5.208e-05 | 5.408e-05 | 241.25 | 284500000.0 | -| COCOSUSDT | 1.167e-05 | 0.0001167 | 0.008391 | 9.6e-05 | 50.01 | 0.5053 | 4023.0 | 0.04544 | 0.5 | 0.009513 | 0.02705 | 260.38 | 667376666.667 | -| HNTUSDT | 7.765e-05 | 0.0003714 | 0.02188 | 0.004633 | 10.02 | 0.1165 | 5606.0 | 0.1103 | 0.1153 | 0.05988 | 0.2422 | 1136.67 | 822215345.301 | -| CVCUSDT | 6.777e-05 | 0.0005245 | 0.01531 | 0.0007969 | 20.01 | 0.2124 | 8274.0 | 0.07758 | 0.2314 | 0.03829 | 0.1408 | 1092.67 | 1089779141.55 | -| SRMUSDT | 8.348e-05 | 0.0004491 | 0.05332 | 0.005417 | 20.02 | 0.2283 | 8616.0 | 0.1922 | 0.2556 | 0.1433 | 0.2478 | 1159.88 | 1128725896.76 | -| RAYUSDT | 1.46e-05 | 6.496e-05 | 0.0812 | 0.06408 | 30.02 | 0.3289 | 8612.0 | 0.2667 | 0.9202 | 0.2911 | 0.3203 | 810.83 | 1220069105.9 | -| FTTUSDT | 4.452e-05 | 0.0004452 | 0.008265 | 0.0004582 | 50.01 | 0.5109 | 8636.0 | 0.07011 | 0.5207 | 0.02273 | 0.3908 | 572.83 | 1269735941.84 | -| BTSUSDT | 5.511e-05 | 0.0005162 | 0.02673 | 0.004852 | 30.01 | 0.3133 | 10740.0 | 0.1006 | 0.4145 | 0.06188 | 0.1667 | 1010.67 | 1338538534.49 | -| SCUSDT | 3.279e-05 | 0.0003279 | 0.007048 | 0.0003942 | 40.01 | 0.4099 | 12230.0 | 0.06143 | 0.4005 | 0.01072 | 0.06324 | 940.67 | 1487484605.22 | -| BTCSTUSDT | 2.62e-06 | 2.62e-05 | 0.002569 | 0.0 | 80.0 | 0.8002 | 23330.0 | 0.005292 | 0.8 | 0.0001349 | 0.002464 | 979.67 | 2600605000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKMUSDT | 0.003609 | 0.003566 | 0.05397 | 0.02958 | 0.009147 | 0.009988 | 38.2 | 0.0757 | 0.01759 | 0.08479 | 0.1846 | 103.88 | 275999999.996 | -| XVGUSDT | 0.002718 | 0.002332 | 0.04731 | 0.01819 | 0.008717 | 0.009684 | 48.33 | 0.06662 | 0.024 | 0.07179 | 0.1471 | 126.46 | 275999999.997 | -| FETUSDT | 0.002913 | 0.002648 | 0.04307 | 0.01851 | 0.008478 | 0.009661 | 88.15 | 0.08179 | 0.01208 | 0.09081 | 0.2234 | 295.88 | 275999999.997 | -| HFTUSDT | 0.002653 | 0.001896 | 0.06277 | 0.03173 | 0.008876 | 0.007368 | 58.63 | 0.04285 | 0.0166 | 0.04493 | 0.08422 | 216.46 | 275999999.997 | -| 1000FLOKIUSDT | 0.002827 | 0.001162 | 0.02146 | 0.001698 | 0.009729 | 0.009039 | 102.0 | 0.04968 | 0.0 | 0.01527 | 0.07449 | 186.29 | 275999999.997 | -| AGLDUSDT | 0.003059 | 0.002704 | 0.02506 | 0.007368 | 0.009152 | 0.008262 | 63.63 | 0.03345 | 0.0 | 0.01587 | 0.078 | 102.88 | 275999999.997 | -| BLURUSDT | 0.003097 | 0.001459 | 0.04005 | 0.003212 | 0.01015 | 0.008658 | 102.6 | 0.04889 | 0.01026 | 0.02873 | 0.09149 | 194.46 | 275999999.997 | -| IDEXUSDT | 0.001827 | 0.001889 | 0.07269 | 0.06207 | 0.006496 | 0.01189 | 103.0 | 0.07595 | 0.06886 | 0.08428 | 0.1436 | 189.46 | 275999999.998 | -| FLMUSDT | 0.001695 | 0.001149 | 0.02389 | 0.004556 | 0.01952 | 0.01752 | 133.8 | 0.0896 | 0.003662 | 0.038 | 0.2126 | 1135.67 | 275999999.998 | -| EDUUSDT | 0.002035 | 0.00176 | 0.03808 | 0.01121 | 0.008956 | 0.009538 | 110.7 | 0.07499 | 0.007172 | 0.07915 | 0.1543 | 192.46 | 275999999.998 | -| AMBUSDT | 0.002027 | 0.002153 | 0.03449 | 0.004026 | 0.009697 | 0.007296 | 54.3 | 0.02916 | 0.0009752 | 0.01628 | 0.03195 | 223.46 | 275999999.998 | -| MAVUSDT | 0.001948 | 0.002012 | 0.03995 | 0.01349 | 0.008334 | 0.007733 | 64.42 | 0.04785 | 0.007292 | 0.0478 | 0.1215 | 132.46 | 275999999.998 | -| BLZUSDT | 0.002164 | 0.001437 | 0.02247 | 0.00754 | 0.01332 | 0.01136 | 87.3 | 0.058 | 0.01832 | 0.05019 | 0.241 | 1147.67 | 275999999.998 | -| BNXUSDT | 0.002437 | 0.001963 | 0.04931 | 0.0201 | 0.008809 | 0.008923 | 97.23 | 0.0572 | 0.01761 | 0.06056 | 0.2421 | 259.38 | 275999999.998 | -| PENDLEUSDT | 0.002486 | 0.001617 | 0.02939 | 0.008618 | 0.009216 | 0.00746 | 92.25 | 0.03133 | 0.0003033 | 0.01352 | 0.02765 | 103.88 | 275999999.998 | -| RADUSDT | 0.001905 | 0.001535 | 0.05461 | 0.02354 | 0.008364 | 0.008192 | 71.27 | 0.05235 | 0.05048 | 0.05624 | 0.1723 | 182.46 | 275999999.998 | -| COMBOUSDT | 0.002267 | 0.00192 | 0.06953 | 0.04269 | 0.008936 | 0.008438 | 40.53 | 0.05813 | 0.1244 | 0.06552 | 0.1165 | 159.46 | 275999999.998 | -| SUIUSDT | 0.00153 | 0.001146 | 0.03436 | 0.01864 | 0.007416 | 0.006783 | 60.72 | 0.04182 | 0.03355 | 0.04478 | 0.08625 | 189.29 | 275999999.998 | -| SSVUSDT | 0.001593 | 0.001793 | 0.05352 | 0.009369 | 0.009074 | 0.009195 | 83.57 | 0.05004 | 0.01908 | 0.04613 | 0.08878 | 257.46 | 275999999.998 | -| LQTYUSDT | 0.002405 | 0.00198 | 0.05099 | 0.008572 | 0.01003 | 0.009338 | 55.6 | 0.07464 | 0.006093 | 0.07639 | 0.2286 | 243.46 | 275999999.998 | -| STMXUSDT | 0.00185 | 0.001805 | 0.0631 | 0.03186 | 0.01589 | 0.01292 | 117.2 | 0.08588 | 0.0209 | 0.09832 | 0.2207 | 961.67 | 275999999.998 | -| MDTUSDT | 0.001952 | 0.001418 | 0.01747 | 0.001424 | 0.009832 | 0.008148 | 124.2 | 0.03488 | 0.0 | 0.005985 | 0.02923 | 131.46 | 275999999.998 | -| XEMUSDT | 0.0008742 | 0.001556 | 0.05613 | 0.02188 | 0.01057 | 0.01215 | 108.7 | 0.08829 | 0.02026 | 0.09681 | 0.2418 | 980.67 | 275999999.999 | -| EOSUSDT | 0.0005008 | 0.0008677 | 0.05349 | 0.0201 | 0.01594 | 0.01705 | 133.0 | 0.08041 | 0.05179 | 0.08527 | 0.1777 | 1400.62 | 275999999.999 | -| DUSKUSDT | 0.0006013 | 0.00103 | 0.03728 | 0.005321 | 0.01544 | 0.01113 | 121.0 | 0.0592 | 0.007266 | 0.05292 | 0.1937 | 670.83 | 275999999.999 | -| TOMOUSDT | 0.001044 | 0.0008224 | 0.02147 | 0.003682 | 0.01202 | 0.01092 | 70.72 | 0.0581 | 0.05323 | 0.03737 | 0.2139 | 1122.67 | 275999999.999 | -| EGLDUSDT | 0.0005607 | 0.0009865 | 0.02983 | 0.01535 | 0.01376 | 0.01249 | 143.3 | 0.05283 | 0.03715 | 0.04937 | 0.2158 | 1150.67 | 275999999.999 | -| LEVERUSDT | 0.00131 | 0.001569 | 0.03655 | 0.008127 | 0.01394 | 0.0101 | 73.48 | 0.04594 | 0.00529 | 0.0339 | 0.1115 | 223.46 | 275999999.999 | -| CTSIUSDT | 0.0006398 | 0.00118 | 0.04245 | 0.02577 | 0.01151 | 0.01071 | 81.78 | 0.06957 | 0.01423 | 0.07681 | 0.1525 | 743.83 | 275999999.999 | -| KNCUSDT | 0.0006383 | 0.000967 | 0.03617 | 0.006526 | 0.01661 | 0.01502 | 142.3 | 0.08791 | 0.03126 | 0.06211 | 0.1916 | 1234.62 | 275999999.999 | -| OMGUSDT | 0.0007073 | 0.001457 | 0.04949 | 0.02648 | 0.01549 | 0.01394 | 113.1 | 0.08706 | 0.0258 | 0.09927 | 0.2338 | 1224.58 | 275999999.999 | -| MINAUSDT | 0.000811 | 0.0005042 | 0.01676 | 0.0004704 | 0.01506 | 0.01161 | 141.9 | 0.05028 | 0.03202 | 0.01447 | 0.106 | 274.5 | 275999999.999 | -| ACHUSDT | 0.001339 | 0.001119 | 0.04399 | 0.02284 | 0.01291 | 0.01327 | 121.3 | 0.07472 | 0.02448 | 0.06711 | 0.1052 | 259.38 | 275999999.999 | -| UMAUSDT | 0.0008793 | 0.0007597 | 0.04481 | 0.004543 | 0.009024 | 0.008839 | 87.8 | 0.0523 | 0.004415 | 0.0362 | 0.1597 | 182.46 | 275999999.999 | -| QTUMUSDT | 0.0005932 | 0.0009585 | 0.04688 | 0.01453 | 0.01703 | 0.01548 | 138.9 | 0.08664 | 0.01735 | 0.07212 | 0.2058 | 1357.62 | 275999999.999 | -| RSRUSDT | 0.0007925 | 0.001656 | 0.04176 | 0.02307 | 0.01518 | 0.01347 | 104.7 | 0.08075 | 0.03955 | 0.09592 | 0.1957 | 1115.67 | 275999999.999 | -| TRBUSDT | 0.001445 | 0.001056 | 0.02715 | 0.006513 | 0.01203 | 0.01242 | 67.85 | 0.07756 | 0.06529 | 0.08291 | 0.201 | 1161.67 | 275999999.999 | -| MANAUSDT | 0.0007793 | 0.001818 | 0.04099 | 0.02075 | 0.01099 | 0.01122 | 135.4 | 0.0683 | 0.0128 | 0.07508 | 0.2157 | 968.67 | 275999999.999 | -| HBARUSDT | 0.0006524 | 0.001023 | 0.04219 | 0.01531 | 0.01489 | 0.01515 | 141.6 | 0.08484 | 0.02596 | 0.08178 | 0.1937 | 966.67 | 275999999.999 | -| GALUSDT | 0.001184 | 0.002453 | 0.07894 | 0.02474 | 0.01235 | 0.01664 | 101.2 | 0.08928 | 0.07624 | 0.09933 | 0.1606 | 552.38 | 275999999.999 | -| BANDUSDT | 0.0005707 | 0.000904 | 0.02447 | 0.003663 | 0.0184 | 0.0152 | 117.2 | 0.07146 | 0.000502 | 0.02221 | 0.1131 | 1197.67 | 275999999.999 | -| AGIXUSDT | 0.001347 | 0.001642 | 0.03785 | 0.007111 | 0.009126 | 0.00739 | 83.62 | 0.0361 | 0.004456 | 0.02758 | 0.08859 | 265.38 | 275999999.999 | -| FXSUSDT | 0.000863 | 0.0009942 | 0.09059 | 0.03061 | 0.01393 | 0.0132 | 111.3 | 0.0905 | 0.1127 | 0.09591 | 0.1611 | 292.83 | 275999999.999 | -| DEFIUSDT | 0.0007213 | 0.001405 | 0.08779 | 0.06197 | 0.01484 | 0.01476 | 136.8 | 0.08735 | 0.04575 | 0.09941 | 0.1435 | 1167.67 | 275999999.999 | -| ENJUSDT | 0.0007308 | 0.001592 | 0.05919 | 0.01301 | 0.01268 | 0.01372 | 140.2 | 0.08977 | 0.01728 | 0.09334 | 0.2071 | 1135.67 | 275999999.999 | -| SNXUSDT | 0.0007392 | 0.0008576 | 0.03404 | 0.00753 | 0.02067 | 0.0212 | 134.2 | 0.09973 | 0.02321 | 0.03837 | 0.1054 | 1181.67 | 275999999.999 | -| HOTUSDT | 0.0008083 | 0.001644 | 0.0839 | 0.01651 | 0.01476 | 0.01635 | 93.42 | 0.09525 | 0.02197 | 0.09379 | 0.1884 | 953.67 | 275999999.999 | -| ZENUSDT | 0.0007238 | 0.001362 | 0.05659 | 0.009076 | 0.01929 | 0.01687 | 127.6 | 0.09175 | 0.01272 | 0.06194 | 0.1779 | 1079.67 | 275999999.999 | -| SPELLUSDT | 0.001227 | 0.001125 | 0.0359 | 0.007253 | 0.01033 | 0.009009 | 126.4 | 0.04966 | 0.01171 | 0.03226 | 0.09196 | 428.46 | 275999999.999 | -| OGNUSDT | 0.0008777 | 0.0008434 | 0.02548 | 0.01086 | 0.01237 | 0.0105 | 97.22 | 0.06436 | 0.03424 | 0.07044 | 0.2159 | 951.67 | 275999999.999 | -| JASMYUSDT | 0.0008444 | 0.001634 | 0.06104 | 0.01691 | 0.01189 | 0.01208 | 121.3 | 0.08198 | 0.0388 | 0.08763 | 0.1566 | 567.83 | 275999999.999 | -| WOOUSDT | 0.0007636 | 0.001241 | 0.04515 | 0.02022 | 0.01456 | 0.01161 | 101.9 | 0.05568 | 0.01455 | 0.0545 | 0.1182 | 579.83 | 275999999.999 | -| SUSHIUSDT | 0.0008468 | 0.001639 | 0.04061 | 0.01969 | 0.01425 | 0.0141 | 104.4 | 0.07898 | 0.01287 | 0.08895 | 0.1973 | 1160.67 | 275999999.999 | -| RENUSDT | 0.0006392 | 0.0009133 | 0.03669 | 0.008628 | 0.01833 | 0.01695 | 123.4 | 0.09877 | 0.03963 | 0.07681 | 0.2456 | 1121.67 | 275999999.999 | -| CELOUSDT | 0.0006898 | 0.0009448 | 0.04749 | 0.0239 | 0.01547 | 0.01451 | 95.93 | 0.07803 | 0.02905 | 0.08033 | 0.1935 | 772.83 | 275999999.999 | -| APEUSDT | 0.0007159 | 0.001278 | 0.04386 | 0.01325 | 0.01046 | 0.009567 | 98.82 | 0.07897 | 0.008581 | 0.08757 | 0.2498 | 601.33 | 275999999.999 | -| ADAUSDT | 0.0005145 | 0.001071 | 0.04878 | 0.01972 | 0.01049 | 0.01142 | 118.4 | 0.07792 | 0.04266 | 0.08582 | 0.1754 | 1377.62 | 275999999.999 | -| GRTUSDT | 0.0005471 | 0.001062 | 0.02997 | 0.01193 | 0.01535 | 0.01369 | 90.42 | 0.07264 | 0.03259 | 0.06047 | 0.2221 | 1054.67 | 275999999.999 | -| CELRUSDT | 0.001038 | 0.002411 | 0.07569 | 0.03731 | 0.01195 | 0.012 | 119.4 | 0.08617 | 0.02523 | 0.09696 | 0.2052 | 954.67 | 275999999.999 | -| DASHUSDT | 0.0006035 | 0.001161 | 0.08274 | 0.02777 | 0.01682 | 0.01825 | 130.0 | 0.08003 | 0.0825 | 0.08359 | 0.1821 | 1373.62 | 275999999.999 | -| LUNA2USDT | 0.001041 | 0.001498 | 0.03427 | 0.002559 | 0.00624 | 0.006842 | 71.72 | 0.04444 | 0.00437 | 0.03274 | 0.1536 | 424.83 | 275999999.999 | -| ATAUSDT | 0.0008839 | 0.001698 | 0.06924 | 0.004833 | 0.01266 | 0.01379 | 143.4 | 0.08344 | 0.02297 | 0.08381 | 0.1544 | 799.83 | 275999999.999 | -| OCEANUSDT | 0.00106 | 0.001859 | 0.1 | 0.01399 | 0.01563 | 0.01713 | 108.3 | 0.09454 | 0.04665 | 0.0994 | 0.2369 | 1100.67 | 275999999.999 | -| SFPUSDT | 0.00086 | 0.001668 | 0.05735 | 0.0264 | 0.01483 | 0.01119 | 78.67 | 0.07671 | 0.03355 | 0.08667 | 0.2463 | 987.67 | 275999999.999 | -| ONEUSDT | 0.0005106 | 0.001116 | 0.03468 | 0.01121 | 0.01538 | 0.01323 | 117.4 | 0.07929 | 0.02269 | 0.08652 | 0.2183 | 965.67 | 275999999.999 | -| ENSUSDT | 0.0005009 | 0.001274 | 0.06751 | 0.01113 | 0.01523 | 0.01234 | 121.1 | 0.07528 | 0.01414 | 0.07548 | 0.1534 | 708.83 | 275999999.999 | -| LINAUSDT | 0.0005274 | 0.0006388 | 0.01914 | 0.003032 | 0.02212 | 0.01914 | 127.7 | 0.09893 | 0.004044 | 0.02522 | 0.1408 | 964.67 | 275999999.999 | -| 1000LUNCUSDT | 0.0005234 | 0.001036 | 0.04259 | 0.008458 | 0.01316 | 0.01038 | 119.5 | 0.07256 | 0.03389 | 0.07268 | 0.219 | 425.42 | 275999999.999 | -| PHBUSDT | 0.0008267 | 0.00111 | 0.03714 | 0.005086 | 0.009973 | 0.007869 | 63.6 | 0.03872 | 0.003827 | 0.02483 | 0.06613 | 265.38 | 275999999.999 | -| KAVAUSDT | 0.0005641 | 0.001179 | 0.04474 | 0.02066 | 0.01536 | 0.01683 | 142.3 | 0.09464 | 0.02529 | 0.09513 | 0.1899 | 1198.67 | 275999999.999 | -| HIGHUSDT | 0.001185 | 0.002239 | 0.03018 | 0.01385 | 0.01006 | 0.009013 | 85.08 | 0.04841 | 0.006461 | 0.04917 | 0.1054 | 274.88 | 275999999.999 | -| IMXUSDT | 0.0005211 | 0.0006808 | 0.01731 | 0.002496 | 0.01454 | 0.01199 | 100.9 | 0.05523 | 0.0005475 | 0.0201 | 0.1406 | 635.83 | 275999999.999 | -| XLMUSDT | 0.0005287 | 0.000694 | 0.02919 | 0.01177 | 0.01345 | 0.01164 | 128.5 | 0.06066 | 0.02511 | 0.05282 | 0.1288 | 1388.62 | 275999999.999 | -| JOEUSDT | 0.0007254 | 0.0008372 | 0.07276 | 0.01453 | 0.01252 | 0.0131 | 59.17 | 0.08259 | 0.04875 | 0.07234 | 0.1054 | 224.46 | 275999999.999 | -| LITUSDT | 0.0009177 | 0.001667 | 0.05215 | 0.01348 | 0.0158 | 0.014 | 129.3 | 0.07795 | 0.03607 | 0.07879 | 0.2095 | 993.67 | 275999999.999 | -| ONTUSDT | 0.0009412 | 0.00147 | 0.05398 | 0.02374 | 0.01013 | 0.0105 | 68.38 | 0.07479 | 0.05257 | 0.08936 | 0.1713 | 1366.62 | 275999999.999 | -| DARUSDT | 0.0008581 | 0.00117 | 0.04177 | 0.01275 | 0.01486 | 0.01113 | 106.7 | 0.06436 | 0.0107 | 0.06808 | 0.2025 | 558.83 | 275999999.999 | -| LDOUSDT | 0.0006484 | 0.001058 | 0.03762 | 0.005475 | 0.01306 | 0.009896 | 104.0 | 0.03999 | 0.006507 | 0.02128 | 0.07148 | 412.46 | 275999999.999 | -| RLCUSDT | 0.0008954 | 0.002006 | 0.07718 | 0.01925 | 0.01629 | 0.01451 | 105.1 | 0.09308 | 0.0208 | 0.09463 | 0.1787 | 1195.67 | 275999999.999 | -| VETUSDT | 0.0005029 | 0.001271 | 0.0377 | 0.0205 | 0.01252 | 0.01204 | 141.1 | 0.06569 | 0.01696 | 0.07245 | 0.1614 | 1363.62 | 275999999.999 | -| XVSUSDT | 0.001096 | 0.0005607 | 0.01128 | 0.0001191 | 0.01352 | 0.01107 | 108.4 | 0.0485 | 0.0 | 0.005649 | 0.01066 | 209.88 | 275999999.999 | -| IDUSDT | 0.001078 | 0.001119 | 0.02784 | 0.009747 | 0.006725 | 0.007222 | 41.92 | 0.04329 | 0.01603 | 0.04282 | 0.1197 | 230.38 | 275999999.999 | -| KEYUSDT | 0.001195 | 0.001628 | 0.06264 | 0.01333 | 0.009841 | 0.01004 | 94.55 | 0.05939 | 0.02737 | 0.06068 | 0.1092 | 168.46 | 275999999.999 | -| MAGICUSDT | 0.0007633 | 0.0008892 | 0.02277 | 0.00686 | 0.01123 | 0.01062 | 86.47 | 0.06353 | 0.003826 | 0.04679 | 0.1225 | 287.83 | 275999999.999 | -| RUNEUSDT | 0.001064 | 0.001129 | 0.0333 | 0.01468 | 0.01643 | 0.01396 | 129.4 | 0.07127 | 0.01324 | 0.07697 | 0.1702 | 1160.67 | 275999999.999 | -| WLDUSDT | 0.001087 | 0.001549 | 0.02216 | 0.005426 | 0.00848 | 0.007915 | 29.63 | 0.0459 | 0.002023 | 0.03369 | 0.1353 | 107.46 | 275999999.999 | -| INJUSDT | 0.0009965 | 0.001367 | 0.03348 | 0.008362 | 0.01236 | 0.01234 | 116.4 | 0.0636 | 0.001391 | 0.02217 | 0.07639 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.0007074 | 0.001489 | 0.07257 | 0.01837 | 0.01464 | 0.01272 | 137.4 | 0.07606 | 0.08314 | 0.08993 | 0.2013 | 1240.58 | 275999999.999 | -| IOTAUSDT | 0.0005305 | 0.001168 | 0.02951 | 0.009186 | 0.01109 | 0.00972 | 141.2 | 0.04432 | 0.005225 | 0.03547 | 0.1788 | 1365.62 | 275999999.999 | -| NEOUSDT | 0.0007812 | 0.001341 | 0.09147 | 0.02586 | 0.01326 | 0.0122 | 128.7 | 0.07677 | 0.05286 | 0.08261 | 0.2016 | 1360.62 | 275999999.999 | -| BCHUSDT | 0.0005095 | 0.000421 | 0.03278 | 0.005951 | 0.01611 | 0.01596 | 129.4 | 0.09976 | 0.1163 | 0.08532 | 0.2423 | 1407.96 | 275999999.999 | -| XMRUSDT | 0.0005042 | 0.001131 | 0.08307 | 0.01795 | 0.01189 | 0.01326 | 101.4 | 0.08146 | 0.05751 | 0.09226 | 0.1799 | 1374.62 | 275999999.999 | -| COMPUSDT | 0.0006257 | 0.0006439 | 0.03285 | 0.01728 | 0.01708 | 0.01538 | 99.25 | 0.08067 | 0.02423 | 0.08365 | 0.1624 | 1226.58 | 275999999.999 | -| GMXUSDT | 0.0005681 | 0.0004642 | 0.03958 | 0.008221 | 0.0146 | 0.01094 | 138.7 | 0.05154 | 0.0261 | 0.04574 | 0.08705 | 264.38 | 275999999.999 | -| TUSDT | 0.001436 | 0.001029 | 0.02814 | 0.01026 | 0.00929 | 0.009653 | 127.2 | 0.06027 | 0.03061 | 0.06069 | 0.175 | 280.42 | 275999999.999 | -| MKRUSDT | 0.001048 | 0.001078 | 0.02644 | 0.009688 | 0.009624 | 0.008797 | 73.27 | 0.0451 | 0.01155 | 0.0408 | 0.2157 | 1182.67 | 275999999.999 | -| XTZUSDT | 0.0006229 | 0.001413 | 0.0441 | 0.02028 | 0.01094 | 0.009749 | 122.8 | 0.06543 | 0.03306 | 0.07467 | 0.1724 | 1371.62 | 275999999.999 | -| SOLUSDT | 0.0008312 | 0.00107 | 0.04711 | 0.02734 | 0.01667 | 0.02162 | 96.68 | 0.06966 | 0.03781 | 0.05885 | 0.19 | 1150.67 | 275999999.999 | -| CHRUSDT | 0.0006053 | 0.001371 | 0.04366 | 0.01512 | 0.01604 | 0.01247 | 128.1 | 0.07465 | 0.01941 | 0.08319 | 0.2455 | 971.67 | 275999999.999 | -| STXUSDT | 0.000625 | 0.0007289 | 0.0145 | 0.003184 | 0.01036 | 0.00986 | 113.2 | 0.05241 | 0.002188 | 0.02562 | 0.07352 | 260.38 | 275999999.999 | -| THETAUSDT | 0.0005104 | 0.001107 | 0.0482 | 0.01187 | 0.01518 | 0.01258 | 117.9 | 0.0607 | 0.05619 | 0.06179 | 0.2428 | 1260.62 | 275999999.999 | -| ARBUSDT | 0.0006878 | 0.0005868 | 0.03011 | 0.01058 | 0.01136 | 0.009904 | 109.3 | 0.04416 | 0.02927 | 0.03288 | 0.06656 | 230.33 | 275999999.999 | -| SKLUSDT | 0.0006078 | 0.001681 | 0.03991 | 0.008233 | 0.01564 | 0.01338 | 112.7 | 0.06774 | 0.04168 | 0.05431 | 0.204 | 1065.67 | 275999999.999 | -| ASTRUSDT | 0.00137 | 0.00132 | 0.02833 | 0.009456 | 0.01217 | 0.009605 | 80.27 | 0.04141 | 0.003291 | 0.02384 | 0.1179 | 267.88 | 275999999.999 | -| HOOKUSDT | 0.001443 | 0.00194 | 0.03828 | 0.008161 | 0.01099 | 0.009317 | 100.8 | 0.04763 | 0.003585 | 0.03227 | 0.09131 | 289.83 | 275999999.999 | -| RDNTUSDT | 0.001422 | 0.001349 | 0.04782 | 0.004617 | 0.01118 | 0.00948 | 99.02 | 0.04981 | 0.004297 | 0.02324 | 0.05045 | 217.46 | 275999999.999 | -| NMRUSDT | 0.00134 | 0.001642 | 0.05166 | 0.001314 | 0.0106 | 0.0104 | 60.48 | 0.0584 | 0.00136 | 0.02609 | 0.1807 | 139.46 | 275999999.999 | -| ATOMUSDT | 0.0007542 | 0.002113 | 0.05277 | 0.02987 | 0.01258 | 0.01217 | 140.6 | 0.07457 | 0.01616 | 0.08252 | 0.2269 | 1370.46 | 275999999.999 | -| NKNUSDT | 0.0005623 | 0.001203 | 0.04746 | 0.004265 | 0.01507 | 0.01776 | 133.6 | 0.09842 | 0.05802 | 0.07414 | 0.2496 | 943.67 | 275999999.999 | -| CKBUSDT | 0.001267 | 0.001192 | 0.02986 | 0.0109 | 0.01007 | 0.007861 | 105.1 | 0.03209 | 0.003743 | 0.01979 | 0.05247 | 253.46 | 275999999.999 | -| ARPAUSDT | 0.0005296 | 0.000836 | 0.01738 | 0.0008045 | 0.01629 | 0.01353 | 129.3 | 0.05988 | 0.0 | 0.01279 | 0.1362 | 750.83 | 275999999.999 | -| C98USDT | 0.0005244 | 0.0007722 | 0.05338 | 0.008267 | 0.01789 | 0.01759 | 106.5 | 0.09578 | 0.06745 | 0.08632 | 0.1738 | 806.83 | 275999999.999 | -| ZRXUSDT | 0.0006312 | 0.001023 | 0.04201 | 0.004249 | 0.01423 | 0.01371 | 105.0 | 0.07457 | 0.008363 | 0.05344 | 0.2471 | 1232.58 | 275999999.999 | -| ICPUSDT | 0.000719 | 0.0007983 | 0.03267 | 0.007028 | 0.007803 | 0.006491 | 121.5 | 0.03165 | 0.01581 | 0.0237 | 0.079 | 407.88 | 275999999.999 | -| REEFUSDT | 0.001077 | 0.00197 | 0.05965 | 0.01558 | 0.01268 | 0.01238 | 118.9 | 0.08078 | 0.03185 | 0.09051 | 0.2184 | 989.67 | 275999999.999 | -| TRUUSDT | 0.001343 | 0.001454 | 0.02637 | 0.008345 | 0.01146 | 0.009721 | 72.02 | 0.04517 | 0.00444 | 0.03405 | 0.2329 | 246.46 | 275999999.999 | -| LINKUSDT | 0.0007591 | 0.001154 | 0.06351 | 0.02255 | 0.01796 | 0.01604 | 129.0 | 0.07916 | 0.008733 | 0.06729 | 0.1475 | 1391.62 | 275999999.999 | -| XRPUSDT | 0.0005286 | 0.0006605 | 0.01945 | 0.005926 | 0.01299 | 0.01155 | 127.9 | 0.0572 | 0.01733 | 0.04351 | 0.1779 | 1402.62 | 275999999.999 | -| ZECUSDT | 0.0005249 | 0.001108 | 0.05865 | 0.01729 | 0.01195 | 0.01117 | 99.6 | 0.08058 | 0.02338 | 0.08869 | 0.2329 | 1372.62 | 275999999.999 | -| TLMUSDT | 0.001459 | 0.001052 | 0.0314 | 0.004455 | 0.007741 | 0.006403 | 86.67 | 0.03687 | 0.0035 | 0.02022 | 0.0589 | 223.46 | 275999999.999 | -| PERPUSDT | 0.0011 | 0.001352 | 0.01983 | 0.003552 | 0.01036 | 0.007641 | 53.55 | 0.03107 | 0.0005483 | 0.01126 | 0.04309 | 247.46 | 275999999.999 | -| 1000PEPEUSDT | 0.001192 | 0.001167 | 0.02778 | 0.00849 | 0.01143 | 0.01011 | 60.35 | 0.07596 | 0.01795 | 0.08386 | 0.1558 | 187.29 | 275999999.999 | -| DGBUSDT | 0.0005669 | 0.001213 | 0.08235 | 0.00812 | 0.01283 | 0.01445 | 100.4 | 0.09193 | 0.04091 | 0.09704 | 0.2426 | 931.83 | 275999999.999 | -| CRVUSDT | 0.0004618 | 0.0009781 | 0.04781 | 0.006599 | 0.01818 | 0.01567 | 125.1 | 0.09037 | 0.03596 | 0.08787 | 0.2461 | 1163.67 | 276000000.0 | -| AAVEUSDT | 0.0004364 | 0.0007014 | 0.02187 | 0.008227 | 0.01477 | 0.01191 | 110.2 | 0.05547 | 0.01509 | 0.04443 | 0.1414 | 1118.67 | 276000000.0 | -| ETHUSDT | 0.0003171 | 0.0007974 | 0.0571 | 0.02436 | 0.009537 | 0.01213 | 130.6 | 0.08722 | 0.03159 | 0.09655 | 0.1858 | 1407.96 | 276000000.0 | -| LRCUSDT | 0.0002535 | 0.0006051 | 0.02387 | 0.004029 | 0.01656 | 0.01494 | 124.8 | 0.08135 | 0.05754 | 0.06161 | 0.2494 | 1115.67 | 276000000.0 | -| QNTUSDT | 0.0004723 | 0.0007755 | 0.05425 | 0.02893 | 0.00841 | 0.01279 | 69.1 | 0.07623 | 0.04945 | 0.08443 | 0.1089 | 384.88 | 276000000.0 | -| BTCUSDT | 0.0001357 | 0.0001578 | 0.01607 | 0.004462 | 0.01344 | 0.009868 | 140.9 | 0.04113 | 0.005947 | 0.01015 | 0.1016 | 1407.96 | 276000000.0 | -| 1000XECUSDT | 0.0004863 | 0.0005882 | 0.02151 | 0.006621 | 0.01295 | 0.009735 | 128.1 | 0.04607 | 0.03361 | 0.03145 | 0.159 | 782.83 | 276000000.0 | -| ROSEUSDT | 0.0002111 | 0.000359 | 0.02051 | 0.003583 | 0.01798 | 0.01621 | 113.8 | 0.08359 | 0.02277 | 0.03801 | 0.1659 | 677.83 | 276000000.0 | -| AUDIOUSDT | 0.0002637 | 0.0004877 | 0.02859 | 0.005199 | 0.01274 | 0.01281 | 91.2 | 0.08598 | 0.07479 | 0.09579 | 0.2447 | 811.83 | 276000000.0 | -| TRXUSDT | 0.0002793 | 0.0008203 | 0.05686 | 0.0267 | 0.009154 | 0.01155 | 143.8 | 0.07918 | 0.05342 | 0.09007 | 0.1866 | 1393.62 | 276000000.0 | -| ETCUSDT | 0.0003957 | 0.0008952 | 0.02522 | 0.009553 | 0.01249 | 0.01071 | 143.1 | 0.04853 | 0.02573 | 0.03695 | 0.1474 | 1392.62 | 276000000.0 | -| IOSTUSDT | 0.0002455 | 0.0006168 | 0.02535 | 0.001225 | 0.0144 | 0.01485 | 132.0 | 0.08288 | 0.003088 | 0.04018 | 0.1955 | 1356.62 | 276000000.0 | -| MTLUSDT | 0.0002925 | 0.0004856 | 0.02479 | 0.006735 | 0.01748 | 0.01673 | 139.8 | 0.09666 | 0.02128 | 0.06875 | 0.2427 | 952.67 | 276000000.0 | -| 1000SHIBUSDT | 0.0002593 | 0.0006488 | 0.01867 | 0.003352 | 0.009864 | 0.01238 | 102.1 | 0.09384 | 0.04441 | 0.0896 | 0.24 | 912.25 | 276000000.0 | -| BNBUSDT | 0.0002136 | 0.0005375 | 0.04836 | 0.02848 | 0.01194 | 0.009495 | 137.0 | 0.06201 | 0.04473 | 0.06901 | 0.1226 | 1367.62 | 276000000.0 | -| API3USDT | 0.0004685 | 0.000576 | 0.02564 | 0.002927 | 0.01201 | 0.01401 | 105.3 | 0.08245 | 0.03931 | 0.05922 | 0.223 | 624.83 | 276000000.0 | -| BELUSDT | 0.0002772 | 0.0004458 | 0.02372 | 0.0001266 | 0.02101 | 0.02012 | 117.6 | 0.09687 | 0.1368 | 0.03023 | 0.2267 | 1085.67 | 276000000.0 | -| APTUSDT | 0.0004271 | 0.0008381 | 0.01593 | 0.002493 | 0.0113 | 0.008914 | 113.7 | 0.03792 | 0.006959 | 0.01211 | 0.05731 | 385.88 | 276000000.0 | -| DENTUSDT | 0.0002452 | 0.000585 | 0.03108 | 0.003542 | 0.01318 | 0.01406 | 83.83 | 0.09137 | 0.05834 | 0.08537 | 0.2012 | 959.79 | 276000000.0 | -| BALUSDT | 0.0004572 | 0.001146 | 0.04455 | 0.01594 | 0.01588 | 0.01443 | 123.6 | 0.08169 | 0.025 | 0.07728 | 0.1808 | 1163.67 | 276000000.0 | -| YFIUSDT | 0.0003858 | 0.001471 | 0.044 | 0.01504 | 0.01552 | 0.01105 | 130.9 | 0.06917 | 0.0165 | 0.07418 | 0.2278 | 1164.67 | 276000000.0 | -| STGUSDT | 0.0003684 | 0.0005989 | 0.0299 | 0.008955 | 0.01296 | 0.01082 | 104.6 | 0.06666 | 0.01417 | 0.06589 | 0.2424 | 440.46 | 276000000.0 | -| SANDUSDT | 0.0003239 | 0.001142 | 0.01904 | 0.009605 | 0.01305 | 0.01155 | 98.68 | 0.05286 | 0.02645 | 0.04066 | 0.1776 | 1017.67 | 276000000.0 | -| AVAXUSDT | 0.000405 | 0.0009719 | 0.05423 | 0.01927 | 0.01761 | 0.01905 | 130.8 | 0.09261 | 0.07465 | 0.0972 | 0.2476 | 1141.67 | 276000000.0 | -| FLOWUSDT | 0.0002502 | 0.0004279 | 0.01692 | 0.0 | 0.01014 | 0.009761 | 95.12 | 0.0539 | 0.01241 | 0.02469 | 0.08302 | 636.83 | 276000000.0 | -| DOGEUSDT | 0.0004063 | 0.001515 | 0.01395 | 0.003938 | 0.009186 | 0.008096 | 132.8 | 0.03543 | 0.006691 | 0.01686 | 0.1713 | 1216.58 | 276000000.0 | -| 1INCHUSDT | 0.0002618 | 0.000513 | 0.02772 | 0.0007867 | 0.01353 | 0.01211 | 143.3 | 0.06954 | 0.05952 | 0.03343 | 0.2479 | 1048.54 | 276000000.0 | -| MATICUSDT | 0.000389 | 0.001037 | 0.03886 | 0.01557 | 0.01368 | 0.01246 | 107.8 | 0.08799 | 0.02066 | 0.09915 | 0.22 | 1112.67 | 276000000.0 | -| BLUEBIRDUSDT | 0.0001011 | 0.0001425 | 0.01929 | 0.001076 | 0.01154 | 0.01028 | 120.6 | 0.07319 | 0.003802 | 0.03172 | 0.07349 | 371.46 | 276000000.0 | -| SXPUSDT | 0.0003199 | 0.0005791 | 0.02309 | 0.005931 | 0.01616 | 0.01441 | 119.9 | 0.08053 | 0.02617 | 0.0495 | 0.2238 | 1205.58 | 276000000.0 | -| ANKRUSDT | 0.0003652 | 0.0009003 | 0.03274 | 0.007633 | 0.0157 | 0.01642 | 141.2 | 0.09987 | 0.01481 | 0.09063 | 0.2314 | 1015.67 | 276000000.0 | -| CHZUSDT | 0.0002952 | 0.0008387 | 0.0371 | 0.001692 | 0.01572 | 0.01414 | 122.7 | 0.08106 | 0.08676 | 0.05397 | 0.2444 | 1021.67 | 276000000.0 | -| DOTUSDT | 0.0004463 | 0.001129 | 0.09239 | 0.02805 | 0.01644 | 0.01336 | 127.6 | 0.08191 | 0.07713 | 0.08943 | 0.2199 | 1173.67 | 276000000.0 | -| BATUSDT | 0.0003655 | 0.0007996 | 0.03729 | 0.01043 | 0.01189 | 0.01033 | 86.13 | 0.06242 | 0.05398 | 0.08151 | 0.1483 | 1364.62 | 276000000.0 | -| COTIUSDT | 0.0003788 | 0.0008093 | 0.0265 | 0.003115 | 0.01846 | 0.01651 | 129.4 | 0.08491 | 0.00166 | 0.03782 | 0.2493 | 973.67 | 276000000.0 | -| RVNUSDT | 0.0002406 | 0.0006124 | 0.02575 | 0.005082 | 0.01306 | 0.01274 | 129.1 | 0.06955 | 0.003995 | 0.04204 | 0.1792 | 988.67 | 276000000.0 | -| ICXUSDT | 0.0002631 | 0.0004912 | 0.02042 | 0.002453 | 0.01984 | 0.01657 | 135.7 | 0.08277 | 0.001904 | 0.01723 | 0.06289 | 1149.67 | 276000000.0 | -| RNDRUSDT | 0.0003083 | 0.0004403 | 0.02352 | 0.0001643 | 0.01607 | 0.01283 | 127.3 | 0.06056 | 0.03966 | 0.02368 | 0.05729 | 278.88 | 276000000.0 | -| ANTUSDT | 0.0002919 | 0.0006044 | 0.01849 | 0.007021 | 0.01431 | 0.01158 | 103.2 | 0.06194 | 0.03538 | 0.06676 | 0.2221 | 681.79 | 276000000.0 | -| CVXUSDT | 0.000238 | 0.0005515 | 0.08641 | 0.0486 | 0.0123 | 0.01473 | 75.73 | 0.08729 | 0.1254 | 0.09825 | 0.1803 | 412.46 | 276000000.0 | -| CTKUSDT | 0.0002261 | 0.0005547 | 0.02944 | 0.0002189 | 0.01748 | 0.01485 | 125.7 | 0.09279 | 0.02564 | 0.0432 | 0.2485 | 1084.67 | 276000000.0 | -| OPUSDT | 0.0002646 | 0.0005956 | 0.02538 | 0.008216 | 0.01739 | 0.0162 | 80.18 | 0.08408 | 0.01499 | 0.04457 | 0.1181 | 525.38 | 276000000.0 | -| DYDXUSDT | 0.0004108 | 0.0008018 | 0.0277 | 0.004731 | 0.01577 | 0.01444 | 82.1 | 0.07501 | 0.04371 | 0.04379 | 0.1682 | 789.83 | 276000000.0 | -| FOOTBALLUSDT | 0.0003387 | 0.0007426 | 0.03847 | 0.0003169 | 0.006175 | 0.006011 | 98.17 | 0.03321 | 0.01047 | 0.01518 | 0.0663 | 433.83 | 276000000.0 | -| ALICEUSDT | 0.00044 | 0.001091 | 0.04206 | 0.004167 | 0.01684 | 0.01626 | 119.3 | 0.09357 | 0.02372 | 0.06728 | 0.192 | 967.83 | 276000000.0 | -| LTCUSDT | 0.0003362 | 0.000532 | 0.02728 | 0.008978 | 0.01365 | 0.01004 | 130.1 | 0.04826 | 0.04058 | 0.0357 | 0.1895 | 1399.62 | 276000000.0 | -| ZILUSDT | 0.00042 | 0.0009135 | 0.03862 | 0.01317 | 0.01583 | 0.01266 | 140.2 | 0.06247 | 0.01609 | 0.0588 | 0.2002 | 1238.58 | 276000000.0 | -| KSMUSDT | 0.0003057 | 0.0007059 | 0.05666 | 0.01335 | 0.01765 | 0.01865 | 139.9 | 0.09584 | 0.03715 | 0.08979 | 0.2359 | 1120.67 | 276000000.0 | -| BAKEUSDT | 0.0003966 | 0.000444 | 0.02162 | 0.003661 | 0.01984 | 0.01751 | 125.0 | 0.0918 | 0.005131 | 0.0238 | 0.1927 | 903.67 | 276000000.0 | -| UNIUSDT | 0.0004185 | 0.0009816 | 0.03866 | 0.0205 | 0.01129 | 0.009808 | 71.93 | 0.06487 | 0.01012 | 0.07151 | 0.1958 | 1146.67 | 276000000.0 | -| LPTUSDT | 0.0002231 | 0.0002479 | 0.02176 | 0.0 | 0.02012 | 0.01904 | 135.1 | 0.11 | 0.1934 | 0.03876 | 0.175 | 727.83 | 276443721.545 | -| FTMUSDT | 1.135e-05 | 0.001051 | 0.03471 | 0.006925 | 0.01892 | 0.01356 | 122.0 | 0.08473 | 0.2043 | 0.09118 | 0.2447 | 1140.67 | 276543002.341 | -| AXSUSDT | 0.0001212 | 0.0002819 | 0.01348 | 0.0009074 | 0.01925 | 0.01639 | 129.5 | 0.07755 | 0.2417 | 0.02972 | 0.1631 | 1083.67 | 276916938.445 | -| NEARUSDT | 8.766e-05 | 0.0002193 | 0.03378 | 3.721e-06 | 0.01984 | 0.01516 | 97.27 | 0.08819 | 0.4133 | 0.08336 | 0.1655 | 1119.62 | 278633413.984 | -| ARUSDT | -4.927e-05 | 0.0001156 | 0.01364 | 0.0005398 | 0.02072 | 0.01665 | 95.53 | 0.07716 | 0.4511 | 0.03056 | 0.1584 | 771.83 | 279010598.733 | -| STORJUSDT | 0.000142 | 0.0002235 | 0.01299 | 0.0001995 | 0.02007 | 0.01641 | 169.8 | 0.08128 | 0.2723 | 0.03937 | 0.1247 | 1148.67 | 279808432.754 | -| KLAYUSDT | 0.0001163 | 0.0002245 | 0.0157 | 0.001209 | 0.01885 | 0.01611 | 185.4 | 0.07865 | 0.00313 | 0.0147 | 0.08103 | 757.83 | 280136666.667 | -| FILUSDT | 0.0001506 | 0.0004423 | 0.04035 | 0.001151 | 0.01924 | 0.01297 | 144.1 | 0.06702 | 0.5723 | 0.05767 | 0.1354 | 1118.71 | 280234331.861 | -| USDCUSDT | -9.216e-10 | -9.216e-09 | 0.01091 | 0.0 | 0.001596 | 0.0004557 | nan | 0.008882 | 0.6 | 0.0001019 | 0.000129 | 241.25 | 280500000.0 | -| ALPHAUSDT | 0.0001908 | 0.0003041 | 0.03126 | 0.0 | 0.01962 | 0.01604 | 122.4 | 0.08539 | 0.606 | 0.0847 | 0.1834 | 1080.67 | 280560475.622 | -| CFXUSDT | -0.0007427 | 0.0005212 | 0.05492 | 0.02171 | 0.01752 | 0.01923 | 158.3 | 0.1385 | 0.4103 | 0.1622 | 0.1998 | 261.38 | 286289844.66 | -| IOTXUSDT | 7.66e-05 | 0.0001533 | 0.01475 | 0.001007 | 0.0209 | 0.01711 | 232.4 | 0.08351 | 0.3699 | 0.02461 | 0.1325 | 818.83 | 287042375.186 | -| GTCUSDT | 0.0005419 | 0.0009052 | 0.03897 | 0.005023 | 0.0189 | 0.01846 | 274.2 | 0.09931 | 0.004577 | 0.07135 | 0.2077 | 880.83 | 289019999.999 | -| BTCDOMUSDT | 1.909e-05 | 5.343e-05 | 0.04285 | 0.001736 | 0.01117 | 0.008882 | 447.6 | 0.04763 | 0.3869 | 0.03519 | 0.04802 | 870.83 | 308727483.673 | -| WAVESUSDT | 0.0001219 | 0.0001157 | 0.01769 | 0.001809 | 0.02023 | 0.02031 | 164.6 | 0.1146 | 0.6083 | 0.1385 | 0.2832 | 1183.67 | 319731786.238 | -| PEOPLEUSDT | 0.0004202 | 0.000905 | 0.02094 | 0.003279 | 0.01698 | 0.01466 | 196.1 | 0.06943 | 0.002208 | 0.03268 | 0.299 | 684.79 | 330218994.921 | -| MASKUSDT | 0.00032 | 0.0006821 | 0.02762 | 0.01244 | 0.02214 | 0.02209 | 175.6 | 0.134 | 0.02921 | 0.123 | 0.3548 | 803.83 | 386318629.178 | -| GALAUSDT | 4.55e-06 | -0.0004561 | 0.03045 | 0.001247 | 0.01716 | 0.01886 | 120.3 | 0.1566 | 1.55 | 0.3862 | 0.5226 | 781.83 | 591307106.039 | -| COCOSUSDT | 5.308e-05 | 0.0005308 | 0.008989 | 0.000464 | 50.01 | 0.5038 | 4023.0 | 0.03617 | 0.5 | 0.005893 | 0.02845 | 260.38 | 667376666.667 | -| GMTUSDT | 0.0001693 | 0.0003135 | 0.08158 | 0.03081 | 0.04146 | 0.0452 | 157.0 | 0.3762 | 1.026 | 0.5674 | 0.7114 | 603.79 | 794489442.078 | -| HNTUSDT | 8.743e-05 | 0.0004343 | 0.02183 | 0.0003225 | 10.02 | 0.1169 | 5607.0 | 0.09613 | 0.1104 | 0.04464 | 0.1693 | 1136.67 | 822278333.333 | -| SRMUSDT | 8.747e-05 | 0.0005235 | 0.05615 | 0.0 | 20.02 | 0.2185 | 8611.0 | 0.1346 | 0.2 | 0.08217 | 0.1354 | 1159.88 | 1123229643.46 | -| RAYUSDT | 5.007e-05 | 0.0004253 | 0.008127 | 0.001706 | 30.01 | 0.3075 | 8612.0 | 0.03837 | 0.3045 | 0.004697 | 0.03976 | 810.83 | 1124321850.91 | -| FTTUSDT | 5.641e-05 | 0.0005641 | 0.0576 | 0.0001236 | 50.01 | 0.5082 | 8636.0 | 0.08633 | 0.5 | 0.05948 | 0.103 | 572.83 | 1128651666.67 | -| CVCUSDT | 0.0001038 | 0.0008236 | 0.02983 | 0.01933 | 20.01 | 0.2157 | 8275.0 | 0.1511 | 0.2327 | 0.1995 | 0.3808 | 1092.67 | 1230705944.25 | -| BTSUSDT | 5.849e-05 | 0.0005005 | 0.02991 | 0.001228 | 30.01 | 0.3109 | 10740.0 | 0.08962 | 0.3029 | 0.06864 | 0.136 | 1010.67 | 1337523993.09 | -| SCUSDT | 2.167e-05 | 0.0002167 | 0.005886 | 0.001661 | 40.01 | 0.407 | 12230.0 | 0.0416 | 0.4029 | 0.01328 | 0.1875 | 940.67 | 1487136008.23 | -| UNFIUSDT | -0.001382 | -0.01382 | 0.09867 | 0.07439 | 0.01668 | 0.02859 | 12460.0 | 0.1629 | 0.6901 | 1.0 | 1.0 | 992.67 | 2352961800.24 | -| BTCSTUSDT | 3.036e-06 | 3.036e-05 | 0.008615 | 0.0 | 80.0 | 0.8002 | 23330.0 | 0.003018 | 0.8 | 0.0001897 | 0.005341 | 979.67 | 2600605000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/clock/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/clock/1000FLOKIUSDT.json deleted file mode 100644 index 1e5e2490a..000000000 --- a/configs/live/single_symbol_optimizations/clock/1000FLOKIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 681.2796170982723, - "delay_between_fills_minutes_entry": 836.3582349247018, - "delay_weight_close": 58.67953031686145, - "delay_weight_entry": 32.940231217529494, - "ema_dist_close": 0.002787588761103723, - "ema_dist_entry": 0.0026528113995466364, - "ema_span_0": 899.9613087174203, - "ema_span_1": 446.0961273722432, - "enabled": true, - "markup_range": 0.006134439771879277, - "min_markup": 0.004569991358982784, - "n_close_orders": 9, - "qty_pct_close": 0.04402809310293846, - "qty_pct_entry": 0.016707973217995116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.980025083750068}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.3847458857667, - "delay_between_fills_minutes_entry": 838.5393872061234, - "delay_weight_close": 88.58314009171943, - "delay_weight_entry": 34.909096468946856, - "ema_dist_close": -0.0015739922757253414, - "ema_dist_entry": 0.0007447866287026189, - "ema_span_0": 1328.1554955509337, - "ema_span_1": 495.56532674545684, - "enabled": true, - "markup_range": 0.00043257196724793336, - "min_markup": 0.006486053071877406, - "n_close_orders": 9, - "qty_pct_close": 0.01302058085821121, - "qty_pct_entry": 0.017741049955391983, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.922611965005485}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/clock/1000LUNCUSDT.json deleted file mode 100644 index e0df2975b..000000000 --- a/configs/live/single_symbol_optimizations/clock/1000LUNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 934.5622413670984, - "delay_between_fills_minutes_entry": 39.572690499285066, - "delay_weight_close": 52.908231439142476, - "delay_weight_entry": 0.6932251456211235, - "ema_dist_close": 0.0025041454577122233, - "ema_dist_entry": 6.89649686684348e-05, - "ema_span_0": 1384.998897272804, - "ema_span_1": 1307.9600410633623, - "enabled": true, - "markup_range": 4.258456436992088e-05, - "min_markup": 0.003739942548195558, - "n_close_orders": 7, - "qty_pct_close": 0.01728334200174955, - "qty_pct_entry": 0.011184784497331334, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.496918334099302}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/clock/1000PEPEUSDT.json deleted file mode 100644 index fa41386c9..000000000 --- a/configs/live/single_symbol_optimizations/clock/1000PEPEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1132.504506727316, - "delay_between_fills_minutes_entry": 271.2949888174522, - "delay_weight_close": 46.62959202464396, - "delay_weight_entry": 21.225264319072384, - "ema_dist_close": 0.0029502727657052244, - "ema_dist_entry": -0.0011764144447320743, - "ema_span_0": 1200.2056828957004, - "ema_span_1": 952.5980600630442, - "enabled": true, - "markup_range": 0.0007213701100334605, - "min_markup": 0.0021660492907288674, - "n_close_orders": 9, - "qty_pct_close": 0.012804451594978223, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.829187823095918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/clock/1000SHIBUSDT.json deleted file mode 100644 index 621e9047d..000000000 --- a/configs/live/single_symbol_optimizations/clock/1000SHIBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 647.8222539313874, - "delay_between_fills_minutes_entry": 718.4498503578127, - "delay_weight_close": 74.8996951963156, - "delay_weight_entry": 27.86126728804292, - "ema_dist_close": 0.0028547711436244416, - "ema_dist_entry": 0.002971892879800595, - "ema_span_0": 647.8106028777783, - "ema_span_1": 1284.021151355735, - "enabled": true, - "markup_range": 7.551994800895838e-05, - "min_markup": 0.005894634008284491, - "n_close_orders": 8, - "qty_pct_close": 0.02789055159943267, - "qty_pct_entry": 0.023083524362018364, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.203394965078033}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 139.11685765116061, - "delay_weight_close": 29.021598942951584, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.0015739922757253414, - "ema_dist_entry": -0.003248483434972992, - "ema_span_0": 46.71886232334039, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.00043257196724793336, - "min_markup": 0.0046029988936655, - "n_close_orders": 3, - "qty_pct_close": 0.012216300466014737, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 1.1023947822663303}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/1000XECUSDT.json b/configs/live/single_symbol_optimizations/clock/1000XECUSDT.json deleted file mode 100644 index beaed6b2c..000000000 --- a/configs/live/single_symbol_optimizations/clock/1000XECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1296.1419739084013, - "delay_between_fills_minutes_entry": 147.02021689326304, - "delay_weight_close": 5.97148502628611, - "delay_weight_entry": 3.650032916171652, - "ema_dist_close": 0.000970137623367213, - "ema_dist_entry": -0.0020118711305088465, - "ema_span_0": 914.6314864360197, - "ema_span_1": 988.0233545150836, - "enabled": true, - "markup_range": 0.0004247384515813301, - "min_markup": 0.006149104388253391, - "n_close_orders": 9, - "qty_pct_close": 0.019408268413854183, - "qty_pct_entry": 0.01459981809009704, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.128695941373563}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/1INCHUSDT.json b/configs/live/single_symbol_optimizations/clock/1INCHUSDT.json deleted file mode 100644 index fd075a991..000000000 --- a/configs/live/single_symbol_optimizations/clock/1INCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1255.7695283248577, - "delay_between_fills_minutes_entry": 1296.0126089200369, - "delay_weight_close": 55.82391802311442, - "delay_weight_entry": 58.54378807746673, - "ema_dist_close": -0.0031683814845681565, - "ema_dist_entry": -0.008266728487231714, - "ema_span_0": 1369.1522002969482, - "ema_span_1": 1242.3011202357745, - "enabled": true, - "markup_range": 0.000695502154123218, - "min_markup": 0.0032333360142341723, - "n_close_orders": 2, - "qty_pct_close": 0.04640615838436692, - "qty_pct_entry": 0.010347812658492163, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.589797190261674}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1410.1883668126077, - "delay_between_fills_minutes_entry": 715.2035803334743, - "delay_weight_close": 49.6662714461656, - "delay_weight_entry": 8.871380681433667, - "ema_dist_close": -0.002882270356222004, - "ema_dist_entry": -0.04349643255790327, - "ema_span_0": 1181.7009862367192, - "ema_span_1": 1118.7599119180738, - "enabled": true, - "markup_range": 0.03062568712726192, - "min_markup": 0.007198910650418894, - "n_close_orders": 4, - "qty_pct_close": 0.01005552873997189, - "qty_pct_entry": 0.010509015651677372, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.489761446197864}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AAVEUSDT.json b/configs/live/single_symbol_optimizations/clock/AAVEUSDT.json deleted file mode 100644 index 5358f5d4d..000000000 --- a/configs/live/single_symbol_optimizations/clock/AAVEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.278457321503, - "delay_between_fills_minutes_entry": 834.0816443740619, - "delay_weight_close": 70.42268666961847, - "delay_weight_entry": 10.640623875533915, - "ema_dist_close": 0.002986756643100404, - "ema_dist_entry": -0.000583390349495386, - "ema_span_0": 5.070100507623538, - "ema_span_1": 580.684309125214, - "enabled": true, - "markup_range": 0.055227476791439696, - "min_markup": 0.009747582404212786, - "n_close_orders": 14, - "qty_pct_close": 0.015107454686523959, - "qty_pct_entry": 0.010000000677648875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.8912686853238405}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1390.2579752796764, - "delay_between_fills_minutes_entry": 669.8954279400186, - "delay_weight_close": 84.03300146614866, - "delay_weight_entry": 10.121719907764334, - "ema_dist_close": 0.0022563487350934085, - "ema_dist_entry": -0.002912675468766438, - "ema_span_0": 1369.8957114906796, - "ema_span_1": 1434.3800383113123, - "enabled": true, - "markup_range": 0.0028831060261065985, - "min_markup": 0.007500370955703341, - "n_close_orders": 9, - "qty_pct_close": 0.010002536340047495, - "qty_pct_entry": 0.011834287558867746, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.403108172035272}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ACHUSDT.json b/configs/live/single_symbol_optimizations/clock/ACHUSDT.json deleted file mode 100644 index 9b28900a8..000000000 --- a/configs/live/single_symbol_optimizations/clock/ACHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 521.7603243740695, - "delay_between_fills_minutes_entry": 769.9296774628966, - "delay_weight_close": 68.78342526989807, - "delay_weight_entry": 13.32034012519684, - "ema_dist_close": 0.0025548970693686814, - "ema_dist_entry": 0.002977299553394627, - "ema_span_0": 1175.7980040326704, - "ema_span_1": 1045.1400862539235, - "enabled": true, - "markup_range": 0.016658900774052764, - "min_markup": 0.009444828984161031, - "n_close_orders": 12, - "qty_pct_close": 0.010382319101156723, - "qty_pct_entry": 0.011369724708293267, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.783849169726006}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 651.4169496594105, - "delay_between_fills_minutes_entry": 114.03862314682469, - "delay_weight_close": 45.162420375719186, - "delay_weight_entry": 16.194811111382208, - "ema_dist_close": 0.001469410278343695, - "ema_dist_entry": -0.00030275227134301814, - "ema_span_0": 294.4448675643771, - "ema_span_1": 210.41861110021503, - "enabled": true, - "markup_range": 0.0016015869684358171, - "min_markup": 0.006724749754376175, - "n_close_orders": 2, - "qty_pct_close": 0.012707208624374853, - "qty_pct_entry": 0.010001809165311236, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.493889468278645}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ADAUSDT.json b/configs/live/single_symbol_optimizations/clock/ADAUSDT.json deleted file mode 100644 index fc4e5610d..000000000 --- a/configs/live/single_symbol_optimizations/clock/ADAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.7212190235336, - "delay_between_fills_minutes_entry": 974.8829438497269, - "delay_weight_close": 47.715489135266665, - "delay_weight_entry": 10.105388059026021, - "ema_dist_close": 0.001719130091622788, - "ema_dist_entry": -0.0006874897820281204, - "ema_span_0": 705.4799842940254, - "ema_span_1": 1350.7655097962324, - "enabled": true, - "markup_range": 0.010312696095400302, - "min_markup": 0.0048947919298551155, - "n_close_orders": 9, - "qty_pct_close": 0.01077067282126931, - "qty_pct_entry": 0.011890154249054243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.371720712919617}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 621.865844900537, - "delay_between_fills_minutes_entry": 1094.5659287079359, - "delay_weight_close": 3.031952906997509, - "delay_weight_entry": 20.81747284451902, - "ema_dist_close": -0.005204564658045069, - "ema_dist_entry": -0.0001809325047902715, - "ema_span_0": 1424.1768708749748, - "ema_span_1": 908.2106628952099, - "enabled": true, - "markup_range": 0.009233634366138622, - "min_markup": 0.009722461367103346, - "n_close_orders": 9, - "qty_pct_close": 0.03944771037022657, - "qty_pct_entry": 0.010991552190301936, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.842007047435493}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AGIXUSDT.json b/configs/live/single_symbol_optimizations/clock/AGIXUSDT.json deleted file mode 100644 index 2ceda94b3..000000000 --- a/configs/live/single_symbol_optimizations/clock/AGIXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1302.0553240831775, - "delay_between_fills_minutes_entry": 744.6283945538563, - "delay_weight_close": 48.30093076266343, - "delay_weight_entry": 7.47004907461783, - "ema_dist_close": 0.0029993243778576356, - "ema_dist_entry": -0.004605501118424108, - "ema_span_0": 1365.5962189821926, - "ema_span_1": 25.313532385768017, - "enabled": true, - "markup_range": 0.05966659044113894, - "min_markup": 0.008213752392521015, - "n_close_orders": 6, - "qty_pct_close": 0.02407958560010621, - "qty_pct_entry": 0.010007319142267164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999999479131189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 661.5327842815884, - "delay_between_fills_minutes_entry": 1422.911446368116, - "delay_weight_close": 20.1036989519919, - "delay_weight_entry": 14.593169305490902, - "ema_dist_close": 0.0024139434527850434, - "ema_dist_entry": -0.017215502842211797, - "ema_span_0": 804.8379512088446, - "ema_span_1": 1378.155523961007, - "enabled": true, - "markup_range": 0.031155813413785798, - "min_markup": 0.008732526426521305, - "n_close_orders": 10, - "qty_pct_close": 0.013660104874959405, - "qty_pct_entry": 0.011053381188245741, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.361107441858329}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AGLDUSDT.json b/configs/live/single_symbol_optimizations/clock/AGLDUSDT.json deleted file mode 100644 index 77ad7dd80..000000000 --- a/configs/live/single_symbol_optimizations/clock/AGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ALGOUSDT.json b/configs/live/single_symbol_optimizations/clock/ALGOUSDT.json deleted file mode 100644 index da961d39e..000000000 --- a/configs/live/single_symbol_optimizations/clock/ALGOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.3428536393867, - "delay_between_fills_minutes_entry": 1185.9050347143673, - "delay_weight_close": 59.42795144932482, - "delay_weight_entry": 24.39288071676801, - "ema_dist_close": -0.001048290112673706, - "ema_dist_entry": -0.01216106391847627, - "ema_span_0": 437.5069705321616, - "ema_span_1": 813.7990832725427, - "enabled": true, - "markup_range": 0.011828867885331596, - "min_markup": 0.007890470482281736, - "n_close_orders": 5, - "qty_pct_close": 0.013491342742327966, - "qty_pct_entry": 0.017240666612956455, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.181828521736271}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ALICEUSDT.json b/configs/live/single_symbol_optimizations/clock/ALICEUSDT.json deleted file mode 100644 index 183f46a92..000000000 --- a/configs/live/single_symbol_optimizations/clock/ALICEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 941.2275073556168, - "delay_between_fills_minutes_entry": 639.1795489134216, - "delay_weight_close": 48.7332636725728, - "delay_weight_entry": 8.13699279459239, - "ema_dist_close": 0.0027170351367633576, - "ema_dist_entry": 0.002500260892556313, - "ema_span_0": 1365.8463728200568, - "ema_span_1": 746.1906803885232, - "enabled": true, - "markup_range": 0.010987611588739817, - "min_markup": 0.004913611097007987, - "n_close_orders": 8, - "qty_pct_close": 0.010419475109354493, - "qty_pct_entry": 0.01811153691609926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999361012336713}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1169.6641128771712, - "delay_between_fills_minutes_entry": 506.1225240195993, - "delay_weight_close": 43.12109960905372, - "delay_weight_entry": 10.565317496270032, - "ema_dist_close": 0.001258051366150663, - "ema_dist_entry": -0.01975743303621753, - "ema_span_0": 1025.1686104987782, - "ema_span_1": 738.3576934163665, - "enabled": true, - "markup_range": 0.0072393557089415065, - "min_markup": 0.00811907873362953, - "n_close_orders": 11, - "qty_pct_close": 0.011588550848380357, - "qty_pct_entry": 0.011555195265078562, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.40521847704868}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/clock/ALPHAUSDT.json deleted file mode 100644 index 2770b2db4..000000000 --- a/configs/live/single_symbol_optimizations/clock/ALPHAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 822.1340957169649, - "delay_between_fills_minutes_entry": 995.0389205950953, - "delay_weight_close": 44.921573032374894, - "delay_weight_entry": 14.194116780656488, - "ema_dist_close": 0.0015917435169842814, - "ema_dist_entry": 0.0029644734995271436, - "ema_span_0": 1367.147365707656, - "ema_span_1": 373.72215204496433, - "enabled": true, - "markup_range": 0.017704470894770428, - "min_markup": 0.004742020830978237, - "n_close_orders": 8, - "qty_pct_close": 0.012776584480313876, - "qty_pct_entry": 0.01198350096306373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.06005231586295}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 859.1785831161967, - "delay_between_fills_minutes_entry": 551.8643877335543, - "delay_weight_close": 49.296647105307414, - "delay_weight_entry": 4.8139793440571745, - "ema_dist_close": 0.0012375169495958305, - "ema_dist_entry": 0.0029660621044046774, - "ema_span_0": 458.6631604842703, - "ema_span_1": 805.3534786761369, - "enabled": true, - "markup_range": 0.0015081676117190742, - "min_markup": 0.0042186181730413455, - "n_close_orders": 8, - "qty_pct_close": 0.013872963119025264, - "qty_pct_entry": 0.026842631321507743, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.865276647735383}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AMBUSDT.json b/configs/live/single_symbol_optimizations/clock/AMBUSDT.json deleted file mode 100644 index a0ca6c899..000000000 --- a/configs/live/single_symbol_optimizations/clock/AMBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1392.8792537027443, - "delay_between_fills_minutes_entry": 872.4126544485439, - "delay_weight_close": 69.75491294053022, - "delay_weight_entry": 14.973670421469889, - "ema_dist_close": 1.4264432521890424e-05, - "ema_dist_entry": -0.043303820246895997, - "ema_span_0": 396.40626615349055, - "ema_span_1": 389.1072980748438, - "enabled": true, - "markup_range": 0.01887366608125784, - "min_markup": 0.005284386528563718, - "n_close_orders": 10, - "qty_pct_close": 0.019909263439227443, - "qty_pct_entry": 0.011936709883053167, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.560326581540767}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ANKRUSDT.json b/configs/live/single_symbol_optimizations/clock/ANKRUSDT.json deleted file mode 100644 index d3cfea4a8..000000000 --- a/configs/live/single_symbol_optimizations/clock/ANKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 603.3267811783331, - "delay_between_fills_minutes_entry": 1351.055922217821, - "delay_weight_close": 26.216183994269414, - "delay_weight_entry": 18.202315132512688, - "ema_dist_close": -0.0006581961016549106, - "ema_dist_entry": 0.0001344705370392922, - "ema_span_0": 702.8531656796472, - "ema_span_1": 1334.111825532691, - "enabled": true, - "markup_range": 0.05994402685182565, - "min_markup": 0.007996451339242192, - "n_close_orders": 12, - "qty_pct_close": 0.03856397835994202, - "qty_pct_entry": 0.010100429823748501, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.925140520256441}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1260.0265415031079, - "delay_between_fills_minutes_entry": 1137.651218740672, - "delay_weight_close": 64.65189031066255, - "delay_weight_entry": 25.3030756112232, - "ema_dist_close": -0.0013381742919232303, - "ema_dist_entry": -0.010080730309767, - "ema_span_0": 1335.370090456449, - "ema_span_1": 1120.1708687982666, - "enabled": true, - "markup_range": 0.008220670194196365, - "min_markup": 0.006711238766762056, - "n_close_orders": 9, - "qty_pct_close": 0.012216300466014737, - "qty_pct_entry": 0.01759800671224648, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.952006750363102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ANTUSDT.json b/configs/live/single_symbol_optimizations/clock/ANTUSDT.json deleted file mode 100644 index 363cacbfb..000000000 --- a/configs/live/single_symbol_optimizations/clock/ANTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.3899052982217, - "delay_between_fills_minutes_entry": 1392.3049132990773, - "delay_weight_close": 49.807760172513554, - "delay_weight_entry": 7.162508190579138, - "ema_dist_close": -0.004782524819944762, - "ema_dist_entry": -0.0028231485656754376, - "ema_span_0": 1305.2475254448404, - "ema_span_1": 390.5383382248257, - "enabled": true, - "markup_range": 0.03820330822561088, - "min_markup": 0.0066933545836667194, - "n_close_orders": 8, - "qty_pct_close": 0.01046416625246991, - "qty_pct_entry": 0.013816993276890857, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.26025673761001}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/APEUSDT.json b/configs/live/single_symbol_optimizations/clock/APEUSDT.json deleted file mode 100644 index a1375567a..000000000 --- a/configs/live/single_symbol_optimizations/clock/APEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.5360124862, - "delay_between_fills_minutes_entry": 859.1227070243172, - "delay_weight_close": 29.556555395771973, - "delay_weight_entry": 13.25201710002017, - "ema_dist_close": 0.001733117204678289, - "ema_dist_entry": 0.002232389049173993, - "ema_span_0": 982.6152333352189, - "ema_span_1": 789.3269555523823, - "enabled": true, - "markup_range": 0.0010562689965902708, - "min_markup": 0.008030938912674498, - "n_close_orders": 15, - "qty_pct_close": 0.012665893826731929, - "qty_pct_entry": 0.0127344177482051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.890426202318031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.8817832880302, - "delay_between_fills_minutes_entry": 647.5493853721531, - "delay_weight_close": 53.70798966547013, - "delay_weight_entry": 6.974831854223101, - "ema_dist_close": -0.0035085468171338354, - "ema_dist_entry": -0.004428144109769674, - "ema_span_0": 612.423977376808, - "ema_span_1": 605.0330359148352, - "enabled": true, - "markup_range": 0.0045149413115564046, - "min_markup": 0.00975465531531431, - "n_close_orders": 9, - "qty_pct_close": 0.01143580772435395, - "qty_pct_entry": 0.01601059995335201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.121202682936747}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/API3USDT.json b/configs/live/single_symbol_optimizations/clock/API3USDT.json deleted file mode 100644 index 0c54af173..000000000 --- a/configs/live/single_symbol_optimizations/clock/API3USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/APTUSDT.json b/configs/live/single_symbol_optimizations/clock/APTUSDT.json deleted file mode 100644 index f24b20196..000000000 --- a/configs/live/single_symbol_optimizations/clock/APTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1018.1326928268926, - "delay_between_fills_minutes_entry": 1209.2441405456718, - "delay_weight_close": 76.22429188948485, - "delay_weight_entry": 26.30335818604116, - "ema_dist_close": -0.003752793838310099, - "ema_dist_entry": 0.0016972391242632869, - "ema_span_0": 1112.679175136077, - "ema_span_1": 1155.3596235352968, - "enabled": true, - "markup_range": 0.00906994510461339, - "min_markup": 0.003763177210427331, - "n_close_orders": 5, - "qty_pct_close": 0.010001201873711948, - "qty_pct_entry": 0.011612013565130612, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.894977345286492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.0606565467324, - "delay_between_fills_minutes_entry": 597.3404935133965, - "delay_weight_close": 51.30188886336951, - "delay_weight_entry": 7.3189798041352185, - "ema_dist_close": 0.0026241791967977824, - "ema_dist_entry": -0.0058327947396331955, - "ema_span_0": 383.1823643909721, - "ema_span_1": 1192.3384075923834, - "enabled": true, - "markup_range": 0.009192103699652262, - "min_markup": 0.006846861874381054, - "n_close_orders": 14, - "qty_pct_close": 0.01573391125062259, - "qty_pct_entry": 0.01069624576704663, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.332602107381742}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ARBUSDT.json b/configs/live/single_symbol_optimizations/clock/ARBUSDT.json deleted file mode 100644 index cef176ea2..000000000 --- a/configs/live/single_symbol_optimizations/clock/ARBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.2154638603602, - "delay_between_fills_minutes_entry": 1044.898378602072, - "delay_weight_close": 48.8970112262042, - "delay_weight_entry": 10.586532185086313, - "ema_dist_close": 0.0010565943229162475, - "ema_dist_entry": -0.002263974056758919, - "ema_span_0": 1423.923887979255, - "ema_span_1": 1295.1143740669238, - "enabled": true, - "markup_range": 0.04736225138902009, - "min_markup": 0.008831390198209763, - "n_close_orders": 12, - "qty_pct_close": 0.016102132015729593, - "qty_pct_entry": 0.010556074384481732, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.950606859597613}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1410.1883668126077, - "delay_between_fills_minutes_entry": 715.2035803334743, - "delay_weight_close": 49.6662714461656, - "delay_weight_entry": 8.871380681433667, - "ema_dist_close": -0.002882270356222004, - "ema_dist_entry": -0.04349643255790327, - "ema_span_0": 1181.7009862367192, - "ema_span_1": 1118.7599119180738, - "enabled": true, - "markup_range": 0.03062568712726192, - "min_markup": 0.007198910650418894, - "n_close_orders": 4, - "qty_pct_close": 0.01005552873997189, - "qty_pct_entry": 0.010509015651677372, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.489761446197864}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ARKMUSDT.json b/configs/live/single_symbol_optimizations/clock/ARKMUSDT.json deleted file mode 100644 index 418f89a12..000000000 --- a/configs/live/single_symbol_optimizations/clock/ARKMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1061.8823999064584, - "delay_between_fills_minutes_entry": 1012.1825530990295, - "delay_weight_close": 35.409202373884135, - "delay_weight_entry": 32.95956402925812, - "ema_dist_close": -0.007254519009069184, - "ema_dist_entry": 0.0028304482415728097, - "ema_span_0": 91.16702196899816, - "ema_span_1": 91.93736565179938, - "enabled": true, - "markup_range": 0.0031895140493152776, - "min_markup": 0.0030837805934416707, - "n_close_orders": 4, - "qty_pct_close": 0.010458652758586526, - "qty_pct_entry": 0.012868236452401689, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.966008726830031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ARPAUSDT.json b/configs/live/single_symbol_optimizations/clock/ARPAUSDT.json deleted file mode 100644 index a6db8bad3..000000000 --- a/configs/live/single_symbol_optimizations/clock/ARPAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 820.7095359893672, - "delay_weight_close": 78.68968193948258, - "delay_weight_entry": 0, - "ema_dist_close": -0.0038648572551458734, - "ema_dist_entry": -0.04552424529181222, - "ema_span_0": 1216.7234950151756, - "ema_span_1": 797.7321684213772, - "enabled": true, - "markup_range": 0.04033942435116666, - "min_markup": 0.009652309506809365, - "n_close_orders": 10, - "qty_pct_close": 0.01000391130234922, - "qty_pct_entry": 0.013532372454122314, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.488706402202238}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ARUSDT.json b/configs/live/single_symbol_optimizations/clock/ARUSDT.json deleted file mode 100644 index 7d27e232a..000000000 --- a/configs/live/single_symbol_optimizations/clock/ARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1107.4710337669503, - "delay_between_fills_minutes_entry": 825.3839968138504, - "delay_weight_close": 67.9701611480623, - "delay_weight_entry": 12.49526594390872, - "ema_dist_close": -0.0021178858109151314, - "ema_dist_entry": 0.0022021111003530723, - "ema_span_0": 1235.0830428493039, - "ema_span_1": 1198.9408034555945, - "enabled": true, - "markup_range": 0.056226370825320615, - "min_markup": 0.0060538760772622996, - "n_close_orders": 2, - "qty_pct_close": 0.014385109210252368, - "qty_pct_entry": 0.010087930789726559, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.046985925428747}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.111167038018, - "delay_between_fills_minutes_entry": 829.899307490801, - "delay_weight_close": 60.4335502424105, - "delay_weight_entry": 13.743453934991578, - "ema_dist_close": -0.0009512631874595318, - "ema_dist_entry": 0.0012970239907388545, - "ema_span_0": 477.4363440470011, - "ema_span_1": 854.14796144117, - "enabled": true, - "markup_range": 0.0016657374568103396, - "min_markup": 0.006257117654757969, - "n_close_orders": 5, - "qty_pct_close": 0.023507393838320723, - "qty_pct_entry": 0.01005730292473667, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.97727105060391}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ASTRUSDT.json b/configs/live/single_symbol_optimizations/clock/ASTRUSDT.json deleted file mode 100644 index 1d1d6f1ad..000000000 --- a/configs/live/single_symbol_optimizations/clock/ASTRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 871.0076644722373, - "delay_between_fills_minutes_entry": 966.5104024105381, - "delay_weight_close": 23.622080365167058, - "delay_weight_entry": 27.12654429442176, - "ema_dist_close": -0.002309627899683788, - "ema_dist_entry": -0.00011334500836491201, - "ema_span_0": 640.8885394037771, - "ema_span_1": 1405.8237926382726, - "enabled": true, - "markup_range": 0.01826436231216122, - "min_markup": 0.006772079535549647, - "n_close_orders": 8, - "qty_pct_close": 0.03499318124348151, - "qty_pct_entry": 0.01216979353232123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.985962569174529}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ATAUSDT.json b/configs/live/single_symbol_optimizations/clock/ATAUSDT.json deleted file mode 100644 index 9db98faa6..000000000 --- a/configs/live/single_symbol_optimizations/clock/ATAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1181.0970928386196, - "delay_between_fills_minutes_entry": 873.4401029243514, - "delay_weight_close": 8.026239512558506, - "delay_weight_entry": 14.993891417608344, - "ema_dist_close": 0.0014469794610280629, - "ema_dist_entry": -0.0005836366726527844, - "ema_span_0": 1166.7659877298502, - "ema_span_1": 939.9550887023798, - "enabled": true, - "markup_range": 0.0198254483271822, - "min_markup": 0.0014048041439875282, - "n_close_orders": 2, - "qty_pct_close": 0.010135430007086846, - "qty_pct_entry": 0.012335679890291168, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.835641590166915}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.8817832880302, - "delay_between_fills_minutes_entry": 647.5493853721531, - "delay_weight_close": 53.70798966547013, - "delay_weight_entry": 6.974831854223101, - "ema_dist_close": -0.0035085468171338354, - "ema_dist_entry": -0.004428144109769674, - "ema_span_0": 612.423977376808, - "ema_span_1": 605.0330359148352, - "enabled": true, - "markup_range": 0.0045149413115564046, - "min_markup": 0.00975465531531431, - "n_close_orders": 9, - "qty_pct_close": 0.01143580772435395, - "qty_pct_entry": 0.01601059995335201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.121202682936747}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ATOMUSDT.json b/configs/live/single_symbol_optimizations/clock/ATOMUSDT.json deleted file mode 100644 index da1f53731..000000000 --- a/configs/live/single_symbol_optimizations/clock/ATOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.2623288862642, - "delay_between_fills_minutes_entry": 617.690462230286, - "delay_weight_close": 70.74553540266763, - "delay_weight_entry": 9.253890833223641, - "ema_dist_close": -0.0038816958420885236, - "ema_dist_entry": 0.0021860210056283374, - "ema_span_0": 1341.0765641516768, - "ema_span_1": 141.32955211627913, - "enabled": true, - "markup_range": 0.034018727560806865, - "min_markup": 0.0028296329405596648, - "n_close_orders": 7, - "qty_pct_close": 0.010106153602057747, - "qty_pct_entry": 0.0101619072210512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.726418970518557}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1164.7087235339047, - "delay_between_fills_minutes_entry": 300.69374510732354, - "delay_weight_close": 52.06502301880436, - "delay_weight_entry": 36.01605058517654, - "ema_dist_close": 8.259372311939905e-05, - "ema_dist_entry": -0.01975630463739775, - "ema_span_0": 964.86749838601, - "ema_span_1": 1053.8271666805751, - "enabled": true, - "markup_range": 0.0017393770784750954, - "min_markup": 0.0024836763501848618, - "n_close_orders": 9, - "qty_pct_close": 0.010176864411502399, - "qty_pct_entry": 0.012911151054359927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.738487269062477}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/clock/AUDIOUSDT.json deleted file mode 100644 index c5e38ca5c..000000000 --- a/configs/live/single_symbol_optimizations/clock/AUDIOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1413.5558565686624, - "delay_between_fills_minutes_entry": 784.9899665507813, - "delay_weight_close": 63.11789338578739, - "delay_weight_entry": 5.831921044029341, - "ema_dist_close": 0.0008992223320789086, - "ema_dist_entry": -0.0002838257924038979, - "ema_span_0": 1348.0735885470365, - "ema_span_1": 1071.0504500508011, - "enabled": true, - "markup_range": 0.00468923487929032, - "min_markup": 0.00869470771701888, - "n_close_orders": 8, - "qty_pct_close": 0.011935308303393993, - "qty_pct_entry": 0.016084273347267565, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.702971993720947}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AVAXUSDT.json b/configs/live/single_symbol_optimizations/clock/AVAXUSDT.json deleted file mode 100644 index 25c944887..000000000 --- a/configs/live/single_symbol_optimizations/clock/AVAXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1054.6073127975912, - "delay_between_fills_minutes_entry": 1215.7308152043706, - "delay_weight_close": 51.06249710724819, - "delay_weight_entry": 34.41451259487796, - "ema_dist_close": -0.001186647276972562, - "ema_dist_entry": 0.002999991477527065, - "ema_span_0": 1095.394921768691, - "ema_span_1": 1436.7065751729206, - "enabled": true, - "markup_range": 0.0006460695114931178, - "min_markup": 0.009989835927428371, - "n_close_orders": 10, - "qty_pct_close": 0.016079828211897115, - "qty_pct_entry": 0.01506423577399871, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.75596409161722}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1223.532901098575, - "delay_between_fills_minutes_entry": 285.42237426430717, - "delay_weight_close": 28.807735664900346, - "delay_weight_entry": 6.200429378307002, - "ema_dist_close": -0.006314539881649975, - "ema_dist_entry": -0.010238935923295693, - "ema_span_0": 662.2542146427257, - "ema_span_1": 931.3933801193048, - "enabled": true, - "markup_range": 0.000648857411140018, - "min_markup": 0.009913049521563813, - "n_close_orders": 2, - "qty_pct_close": 0.010008868903117096, - "qty_pct_entry": 0.014061797121068222, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.552237610907176}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/AXSUSDT.json b/configs/live/single_symbol_optimizations/clock/AXSUSDT.json deleted file mode 100644 index ff60ad1b2..000000000 --- a/configs/live/single_symbol_optimizations/clock/AXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 768.2308483926287, - "delay_between_fills_minutes_entry": 741.9973437021383, - "delay_weight_close": 47.45113338329799, - "delay_weight_entry": 10.100994716492973, - "ema_dist_close": 0.0011497314913957294, - "ema_dist_entry": 0.0016779188996500465, - "ema_span_0": 1189.8940578899194, - "ema_span_1": 1090.950027319124, - "enabled": true, - "markup_range": 0.058664839823971894, - "min_markup": 0.007061994033748377, - "n_close_orders": 11, - "qty_pct_close": 0.01686962763340502, - "qty_pct_entry": 0.0102119587547341, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.982920621031488}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1213.8808604575988, - "delay_between_fills_minutes_entry": 319.8805659148345, - "delay_weight_close": 2.663350062481493, - "delay_weight_entry": 9.039510921080103, - "ema_dist_close": 0.0029441187892161966, - "ema_dist_entry": -0.006899703006473927, - "ema_span_0": 9.082344740316472, - "ema_span_1": 935.7226512380286, - "enabled": true, - "markup_range": 0.0009430202211385166, - "min_markup": 0.0029601774438838702, - "n_close_orders": 7, - "qty_pct_close": 0.010202109440378334, - "qty_pct_entry": 0.010000497266764313, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.645104986712898}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BAKEUSDT.json b/configs/live/single_symbol_optimizations/clock/BAKEUSDT.json deleted file mode 100644 index ece6d7bec..000000000 --- a/configs/live/single_symbol_optimizations/clock/BAKEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1354.5066938905186, - "delay_between_fills_minutes_entry": 725.9935142379863, - "delay_weight_close": 62.20825798174928, - "delay_weight_entry": 11.28958169774337, - "ema_dist_close": 0.001672846506497217, - "ema_dist_entry": -0.019059710926787935, - "ema_span_0": 316.12881552871283, - "ema_span_1": 1064.3061474359838, - "enabled": true, - "markup_range": 0.004106706527024396, - "min_markup": 0.008599328632882706, - "n_close_orders": 2, - "qty_pct_close": 0.010255910801467224, - "qty_pct_entry": 0.011593851635857556, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.317876107865237}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BALUSDT.json b/configs/live/single_symbol_optimizations/clock/BALUSDT.json deleted file mode 100644 index c919c3f0f..000000000 --- a/configs/live/single_symbol_optimizations/clock/BALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1317.591592327777, - "delay_between_fills_minutes_entry": 1071.69858139155, - "delay_weight_close": 95.75145488217994, - "delay_weight_entry": 10.677772707461562, - "ema_dist_close": 0.0025113730533239424, - "ema_dist_entry": -0.0002561234607761504, - "ema_span_0": 32.89460426774302, - "ema_span_1": 1389.6914634374418, - "enabled": true, - "markup_range": 0.04209352442687081, - "min_markup": 0.0040307219160839545, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01068455374538823, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1354.5066938905186, - "delay_between_fills_minutes_entry": 725.9935142379863, - "delay_weight_close": 62.20825798174928, - "delay_weight_entry": 11.28958169774337, - "ema_dist_close": 0.001672846506497217, - "ema_dist_entry": -0.019059710926787935, - "ema_span_0": 316.12881552871283, - "ema_span_1": 1064.3061474359838, - "enabled": true, - "markup_range": 0.004106706527024396, - "min_markup": 0.008599328632882706, - "n_close_orders": 2, - "qty_pct_close": 0.010255910801467224, - "qty_pct_entry": 0.011593851635857556, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.317876107865237}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BANDUSDT.json b/configs/live/single_symbol_optimizations/clock/BANDUSDT.json deleted file mode 100644 index bb2fceb87..000000000 --- a/configs/live/single_symbol_optimizations/clock/BANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.7159676756846, - "delay_between_fills_minutes_entry": 747.5801809507312, - "delay_weight_close": 78.86285659621852, - "delay_weight_entry": 8.330985649214435, - "ema_dist_close": 0.002980765210287476, - "ema_dist_entry": -0.001713985505406783, - "ema_span_0": 1250.9783247617538, - "ema_span_1": 1432.0787676605144, - "enabled": true, - "markup_range": 0.054883694446307564, - "min_markup": 0.009856167146947028, - "n_close_orders": 8, - "qty_pct_close": 0.014892572169187528, - "qty_pct_entry": 0.010341012413964543, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.455348336908134}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.4141447709878, - "delay_between_fills_minutes_entry": 441.1073717945042, - "delay_weight_close": 40.71042994495278, - "delay_weight_entry": 13.888293268391225, - "ema_dist_close": 0.0012506077015050012, - "ema_dist_entry": -0.0009251862958045151, - "ema_span_0": 916.5966734173559, - "ema_span_1": 902.4689005607486, - "enabled": true, - "markup_range": 0.0011008246200862883, - "min_markup": 0.007593015282927445, - "n_close_orders": 3, - "qty_pct_close": 0.012107510661348176, - "qty_pct_entry": 0.010382178027008672, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99891960197657}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BATUSDT.json b/configs/live/single_symbol_optimizations/clock/BATUSDT.json deleted file mode 100644 index fba3b5d70..000000000 --- a/configs/live/single_symbol_optimizations/clock/BATUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1021.1436369787372, - "delay_between_fills_minutes_entry": 1417.267357749826, - "delay_weight_close": 25.005816260082653, - "delay_weight_entry": 12.399073464188993, - "ema_dist_close": 0.0008623687443322454, - "ema_dist_entry": 4.0400635821305375e-05, - "ema_span_0": 1260.77025080792, - "ema_span_1": 807.7611029522367, - "enabled": true, - "markup_range": 0.057489948732585, - "min_markup": 0.008228250494530367, - "n_close_orders": 14, - "qty_pct_close": 0.011707420370663057, - "qty_pct_entry": 0.010442373122738147, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82140843603225}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1188.7795167350398, - "delay_between_fills_minutes_entry": 563.5908993212031, - "delay_weight_close": 50.5017707710666, - "delay_weight_entry": 12.684678466859516, - "ema_dist_close": 0.0003608660301057808, - "ema_dist_entry": -0.017802733076996657, - "ema_span_0": 1146.0137489066165, - "ema_span_1": 1233.9629277227436, - "enabled": true, - "markup_range": 0.011136594392899343, - "min_markup": 0.00817054397228463, - "n_close_orders": 7, - "qty_pct_close": 0.012077708804262306, - "qty_pct_entry": 0.011568453111244053, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.88378165956302}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BCHUSDT.json b/configs/live/single_symbol_optimizations/clock/BCHUSDT.json deleted file mode 100644 index e0e1cef42..000000000 --- a/configs/live/single_symbol_optimizations/clock/BCHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.9675194232736, - "delay_between_fills_minutes_entry": 1007.1682620636734, - "delay_weight_close": 89.87252105323053, - "delay_weight_entry": 8.761528423864856, - "ema_dist_close": 0.0019744920924290137, - "ema_dist_entry": 0.001227027407331943, - "ema_span_0": 1236.3547451221145, - "ema_span_1": 910.3422794295219, - "enabled": true, - "markup_range": 0.008475686726893564, - "min_markup": 0.007695340096036006, - "n_close_orders": 3, - "qty_pct_close": 0.010665723673662307, - "qty_pct_entry": 0.014672410239745194, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.794050691780967}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1123.6046724453147, - "delay_between_fills_minutes_entry": 1007.8961745795849, - "delay_weight_close": 54.302544923341415, - "delay_weight_entry": 14.561869304632943, - "ema_dist_close": 0.0028543215010157835, - "ema_dist_entry": 0.0006475938775836436, - "ema_span_0": 1367.2468919982805, - "ema_span_1": 259.1595249455664, - "enabled": true, - "markup_range": 0.03585622421151245, - "min_markup": 0.009931016147315366, - "n_close_orders": 13, - "qty_pct_close": 0.012360992940652588, - "qty_pct_entry": 0.011136411681853352, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919313098773648}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BELUSDT.json b/configs/live/single_symbol_optimizations/clock/BELUSDT.json deleted file mode 100644 index fd17d85c8..000000000 --- a/configs/live/single_symbol_optimizations/clock/BELUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1377.261628148479, - "delay_between_fills_minutes_entry": 671.6120897557548, - "delay_weight_close": 82.05325271699174, - "delay_weight_entry": 9.938069452680832, - "ema_dist_close": 0.0017645982150461532, - "ema_dist_entry": 0.0017079786666064673, - "ema_span_0": 876.9941644851451, - "ema_span_1": 526.1293007589786, - "enabled": true, - "markup_range": 0.029062134347423576, - "min_markup": 0.008905111594007642, - "n_close_orders": 11, - "qty_pct_close": 0.01619556597229533, - "qty_pct_entry": 0.011006353040930351, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.261070313693871}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1003.1080962771331, - "delay_between_fills_minutes_entry": 547.7023597978994, - "delay_weight_close": 17.599323370517855, - "delay_weight_entry": 1.403718519909038, - "ema_dist_close": 0.0028045747234350677, - "ema_dist_entry": 0.0029941201216696, - "ema_span_0": 1065.7988883781788, - "ema_span_1": 1339.1222922400511, - "enabled": true, - "markup_range": 0.03688611249005888, - "min_markup": 0.00848260645802433, - "n_close_orders": 5, - "qty_pct_close": 0.020101355631071533, - "qty_pct_entry": 0.010096400305198604, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997541837353916}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/clock/BLUEBIRDUSDT.json deleted file mode 100644 index 848f1e1e7..000000000 --- a/configs/live/single_symbol_optimizations/clock/BLUEBIRDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 774.1749994763805, - "delay_between_fills_minutes_entry": 417.10841008932033, - "delay_weight_close": 98.3006781681464, - "delay_weight_entry": 13.875164322812196, - "ema_dist_close": 0.0004161606343772757, - "ema_dist_entry": -0.012285586951885853, - "ema_span_0": 1257.1972969611616, - "ema_span_1": 185.4758736354263, - "enabled": true, - "markup_range": 0.032757699175851945, - "min_markup": 0.003851274926855553, - "n_close_orders": 11, - "qty_pct_close": 0.01829234698898702, - "qty_pct_entry": 0.010006129333077879, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997756395445421}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BLURUSDT.json b/configs/live/single_symbol_optimizations/clock/BLURUSDT.json deleted file mode 100644 index 568915902..000000000 --- a/configs/live/single_symbol_optimizations/clock/BLURUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 417.10032999409367, - "delay_between_fills_minutes_entry": 483.89554164990125, - "delay_weight_close": 30.386021284189134, - "delay_weight_entry": 11.45213513909002, - "ema_dist_close": 0.002359618163183817, - "ema_dist_entry": -0.005401969069027971, - "ema_span_0": 1358.040501374106, - "ema_span_1": 698.1122943720719, - "enabled": true, - "markup_range": 0.02438499264430349, - "min_markup": 0.002477898691579286, - "n_close_orders": 10, - "qty_pct_close": 0.014976947166622385, - "qty_pct_entry": 0.01956247676084041, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.119483512668944}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BLZUSDT.json b/configs/live/single_symbol_optimizations/clock/BLZUSDT.json deleted file mode 100644 index 02db40f7b..000000000 --- a/configs/live/single_symbol_optimizations/clock/BLZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1156.8712434096142, - "delay_between_fills_minutes_entry": 1251.305509414807, - "delay_weight_close": 80.41823962853118, - "delay_weight_entry": 13.045752163253102, - "ema_dist_close": 0.0029857509360842432, - "ema_dist_entry": 0.0008168281136099627, - "ema_span_0": 882.3122588041192, - "ema_span_1": 1144.301833145371, - "enabled": true, - "markup_range": 0.05996295781572166, - "min_markup": 0.004895311338925644, - "n_close_orders": 6, - "qty_pct_close": 0.01035848845458019, - "qty_pct_entry": 0.012495472494464841, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.639006324400857}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1147.2175746240093, - "delay_between_fills_minutes_entry": 1344.4174639926466, - "delay_weight_close": 55.08480444793561, - "delay_weight_entry": 5.527524296320485, - "ema_dist_close": -0.005818784796419914, - "ema_dist_entry": 0.002984551312844512, - "ema_span_0": 1388.9714235200731, - "ema_span_1": 842.8980135040856, - "enabled": true, - "markup_range": 0.051935804057843316, - "min_markup": 0.007278101464767998, - "n_close_orders": 10, - "qty_pct_close": 0.010044210831340496, - "qty_pct_entry": 0.011622579759049822, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82638218593147}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BNBUSDT.json b/configs/live/single_symbol_optimizations/clock/BNBUSDT.json deleted file mode 100644 index a60fbc08f..000000000 --- a/configs/live/single_symbol_optimizations/clock/BNBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 980.1552203722606, - "delay_between_fills_minutes_entry": 840.9399279767658, - "delay_weight_close": 41.174720235937926, - "delay_weight_entry": 13.793255269700973, - "ema_dist_close": 0.0015926904973345383, - "ema_dist_entry": -0.0007781318559360737, - "ema_span_0": 1149.7336545302992, - "ema_span_1": 1172.419783469573, - "enabled": true, - "markup_range": 0.05674841136789421, - "min_markup": 0.006871909315044843, - "n_close_orders": 9, - "qty_pct_close": 0.013417037239112603, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.883614098664665}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1340.8213463076263, - "delay_between_fills_minutes_entry": 242.259177860988, - "delay_weight_close": 63.44401419435697, - "delay_weight_entry": 28.887175181977064, - "ema_dist_close": 0.002999695780576214, - "ema_dist_entry": -0.0028569994010262706, - "ema_span_0": 12.171269633026471, - "ema_span_1": 851.7126011649405, - "enabled": true, - "markup_range": 0.0007185368730701129, - "min_markup": 0.003002884396642793, - "n_close_orders": 10, - "qty_pct_close": 0.011072065734249934, - "qty_pct_entry": 0.010326519043378054, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.049873309359348}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BNXUSDT.json b/configs/live/single_symbol_optimizations/clock/BNXUSDT.json deleted file mode 100644 index 1195fca5e..000000000 --- a/configs/live/single_symbol_optimizations/clock/BNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 941.2275073556168, - "delay_between_fills_minutes_entry": 639.1795489134216, - "delay_weight_close": 48.7332636725728, - "delay_weight_entry": 8.13699279459239, - "ema_dist_close": 0.0027170351367633576, - "ema_dist_entry": 0.002500260892556313, - "ema_span_0": 1365.8463728200568, - "ema_span_1": 746.1906803885232, - "enabled": true, - "markup_range": 0.010987611588739817, - "min_markup": 0.004913611097007987, - "n_close_orders": 8, - "qty_pct_close": 0.010419475109354493, - "qty_pct_entry": 0.01811153691609926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999361012336713}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/clock/BTCDOMUSDT.json deleted file mode 100644 index d7b3b3696..000000000 --- a/configs/live/single_symbol_optimizations/clock/BTCDOMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1317.591592327777, - "delay_between_fills_minutes_entry": 1071.69858139155, - "delay_weight_close": 95.75145488217994, - "delay_weight_entry": 10.677772707461562, - "ema_dist_close": 0.0025113730533239424, - "ema_dist_entry": -0.0002561234607761504, - "ema_span_0": 32.89460426774302, - "ema_span_1": 1389.6914634374418, - "enabled": true, - "markup_range": 0.04209352442687081, - "min_markup": 0.0040307219160839545, - "n_close_orders": 2, - "qty_pct_close": 0.01, - "qty_pct_entry": 0.01068455374538823, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1151.2725786705696, - "delay_between_fills_minutes_entry": 1432.5918922967433, - "delay_weight_close": 11.022693608393448, - "delay_weight_entry": 14.839016724652891, - "ema_dist_close": 0.001372637460468898, - "ema_dist_entry": 0.0027645404826423885, - "ema_span_0": 1348.563732319282, - "ema_span_1": 541.1280889127311, - "enabled": true, - "markup_range": 0.022185663602024702, - "min_markup": 0.009584419776066605, - "n_close_orders": 14, - "qty_pct_close": 0.010066138265541362, - "qty_pct_entry": 0.010002330324521512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.967567048842325}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/clock/BTCSTUSDT.json deleted file mode 100644 index 16919528e..000000000 --- a/configs/live/single_symbol_optimizations/clock/BTCSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1111.8577317403558, - "delay_between_fills_minutes_entry": 446.5246509317262, - "delay_weight_close": 82.74031097917285, - "delay_weight_entry": 31.358100512063892, - "ema_dist_close": -0.00024230184912420064, - "ema_dist_entry": 0.0017844147362385619, - "ema_span_0": 1438.8545701011808, - "ema_span_1": 914.5555442257083, - "enabled": true, - "markup_range": 7.249282113820378e-05, - "min_markup": 0.009460799542397083, - "n_close_orders": 5, - "qty_pct_close": 0.019460174032906046, - "qty_pct_entry": 0.019069801890396143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.921549839813937}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BTCUSDT.json b/configs/live/single_symbol_optimizations/clock/BTCUSDT.json deleted file mode 100644 index ab94e165f..000000000 --- a/configs/live/single_symbol_optimizations/clock/BTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.5822534480844, - "delay_between_fills_minutes_entry": 890.857060741827, - "delay_weight_close": 89.68497956637307, - "delay_weight_entry": 4.621357780568565, - "ema_dist_close": 0.002998452889880113, - "ema_dist_entry": 0.002943592814291854, - "ema_span_0": 1397.0725108976064, - "ema_span_1": 595.4708721363418, - "enabled": true, - "markup_range": 0.05740478413565188, - "min_markup": 0.009425835613633455, - "n_close_orders": 10, - "qty_pct_close": 0.010716339616979438, - "qty_pct_entry": 0.010150235355761174, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983273240860251}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 575.6269065990026, - "delay_between_fills_minutes_entry": 1345.7644028099298, - "delay_weight_close": 99.29964991806611, - "delay_weight_entry": 21.81972555927393, - "ema_dist_close": 0.0001808929642584481, - "ema_dist_entry": 0.0029850853867354884, - "ema_span_0": 1326.0945412172505, - "ema_span_1": 80.6360450257509, - "enabled": true, - "markup_range": 0.013583941260804014, - "min_markup": 0.008150319782666322, - "n_close_orders": 15, - "qty_pct_close": 0.02179112645707215, - "qty_pct_entry": 0.010061797086595563, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.700636298552576}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/BTSUSDT.json b/configs/live/single_symbol_optimizations/clock/BTSUSDT.json deleted file mode 100644 index e8bd16b20..000000000 --- a/configs/live/single_symbol_optimizations/clock/BTSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1193.2623288862642, - "delay_between_fills_minutes_entry": 617.690462230286, - "delay_weight_close": 70.74553540266763, - "delay_weight_entry": 9.253890833223641, - "ema_dist_close": -0.0038816958420885236, - "ema_dist_entry": 0.0021860210056283374, - "ema_span_0": 1341.0765641516768, - "ema_span_1": 141.32955211627913, - "enabled": true, - "markup_range": 0.034018727560806865, - "min_markup": 0.0028296329405596648, - "n_close_orders": 7, - "qty_pct_close": 0.010106153602057747, - "qty_pct_entry": 0.0101619072210512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.726418970518557}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.0242714648448, - "delay_between_fills_minutes_entry": 328.2305083427938, - "delay_weight_close": 38.92221993129098, - "delay_weight_entry": 12.24139049420294, - "ema_dist_close": -0.0008560612853727447, - "ema_dist_entry": -0.005497049380766986, - "ema_span_0": 384.44513774552, - "ema_span_1": 1256.9980699630817, - "enabled": true, - "markup_range": 0.0031737576042087778, - "min_markup": 0.003671761954620994, - "n_close_orders": 11, - "qty_pct_close": 0.011128236162992335, - "qty_pct_entry": 0.013734107201188051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99114774620646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/C98USDT.json b/configs/live/single_symbol_optimizations/clock/C98USDT.json deleted file mode 100644 index 13b1a746a..000000000 --- a/configs/live/single_symbol_optimizations/clock/C98USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1411.1968411072783, - "delay_between_fills_minutes_entry": 1174.9580129356102, - "delay_weight_close": 27.615393391724123, - "delay_weight_entry": 6.803022024280431, - "ema_dist_close": -0.0014828244022903649, - "ema_dist_entry": -0.005648810861896309, - "ema_span_0": 626.126866947274, - "ema_span_1": 842.2993110771496, - "enabled": true, - "markup_range": 0.032319249004179845, - "min_markup": 0.009587715496984084, - "n_close_orders": 6, - "qty_pct_close": 0.010086907414758386, - "qty_pct_entry": 0.01078816215728284, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.87643160171025}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CELOUSDT.json b/configs/live/single_symbol_optimizations/clock/CELOUSDT.json deleted file mode 100644 index a58764614..000000000 --- a/configs/live/single_symbol_optimizations/clock/CELOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1377.261628148479, - "delay_between_fills_minutes_entry": 671.6120897557548, - "delay_weight_close": 82.05325271699174, - "delay_weight_entry": 9.938069452680832, - "ema_dist_close": 0.0017645982150461532, - "ema_dist_entry": 0.0017079786666064673, - "ema_span_0": 876.9941644851451, - "ema_span_1": 526.1293007589786, - "enabled": true, - "markup_range": 0.029062134347423576, - "min_markup": 0.008905111594007642, - "n_close_orders": 11, - "qty_pct_close": 0.01619556597229533, - "qty_pct_entry": 0.011006353040930351, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.261070313693871}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 871.0076644722373, - "delay_between_fills_minutes_entry": 966.5104024105381, - "delay_weight_close": 23.622080365167058, - "delay_weight_entry": 27.12654429442176, - "ema_dist_close": -0.002309627899683788, - "ema_dist_entry": -0.00011334500836491201, - "ema_span_0": 640.8885394037771, - "ema_span_1": 1405.8237926382726, - "enabled": true, - "markup_range": 0.01826436231216122, - "min_markup": 0.006772079535549647, - "n_close_orders": 8, - "qty_pct_close": 0.03499318124348151, - "qty_pct_entry": 0.01216979353232123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.985962569174529}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CELRUSDT.json b/configs/live/single_symbol_optimizations/clock/CELRUSDT.json deleted file mode 100644 index cc2f7b864..000000000 --- a/configs/live/single_symbol_optimizations/clock/CELRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CFXUSDT.json b/configs/live/single_symbol_optimizations/clock/CFXUSDT.json deleted file mode 100644 index fcd6cd018..000000000 --- a/configs/live/single_symbol_optimizations/clock/CFXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1180.0481078095363, - "delay_between_fills_minutes_entry": 1158.6523360850267, - "delay_weight_close": 7.604553658110747, - "delay_weight_entry": 8.622864021901783, - "ema_dist_close": -0.00150514095494208, - "ema_dist_entry": -0.001821113340755755, - "ema_span_0": 1339.331876102062, - "ema_span_1": 1263.7802735710468, - "enabled": true, - "markup_range": 0.028262924932764028, - "min_markup": 0.00646301080764169, - "n_close_orders": 4, - "qty_pct_close": 0.01133254977434379, - "qty_pct_entry": 0.014183682481879092, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.824586513799584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.7178502765457, - "delay_between_fills_minutes_entry": 574.3537408896536, - "delay_weight_close": 79.80491949338992, - "delay_weight_entry": 11.562035417347104, - "ema_dist_close": -8.152786006796259e-05, - "ema_dist_entry": -0.006999278647231068, - "ema_span_0": 1391.1389085569626, - "ema_span_1": 915.519171904557, - "enabled": true, - "markup_range": 0.0018840191727093577, - "min_markup": 0.004188852247657481, - "n_close_orders": 3, - "qty_pct_close": 0.018508670460081623, - "qty_pct_entry": 0.010483362142496691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.630049911945353}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CHRUSDT.json b/configs/live/single_symbol_optimizations/clock/CHRUSDT.json deleted file mode 100644 index 8f3c1344f..000000000 --- a/configs/live/single_symbol_optimizations/clock/CHRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CHZUSDT.json b/configs/live/single_symbol_optimizations/clock/CHZUSDT.json deleted file mode 100644 index 5a57c07d5..000000000 --- a/configs/live/single_symbol_optimizations/clock/CHZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 647.8222539313874, - "delay_between_fills_minutes_entry": 718.4498503578127, - "delay_weight_close": 74.8996951963156, - "delay_weight_entry": 27.86126728804292, - "ema_dist_close": 0.0028547711436244416, - "ema_dist_entry": 0.002971892879800595, - "ema_span_0": 647.8106028777783, - "ema_span_1": 1284.021151355735, - "enabled": true, - "markup_range": 7.551994800895838e-05, - "min_markup": 0.005894634008284491, - "n_close_orders": 8, - "qty_pct_close": 0.02789055159943267, - "qty_pct_entry": 0.023083524362018364, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.203394965078033}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CKBUSDT.json b/configs/live/single_symbol_optimizations/clock/CKBUSDT.json deleted file mode 100644 index 3c1073b21..000000000 --- a/configs/live/single_symbol_optimizations/clock/CKBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/COCOSUSDT.json b/configs/live/single_symbol_optimizations/clock/COCOSUSDT.json deleted file mode 100644 index 8fbf5e656..000000000 --- a/configs/live/single_symbol_optimizations/clock/COCOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5402911357278, - "delay_between_fills_minutes_entry": 705.2311636892108, - "delay_weight_close": 65.49854174609756, - "delay_weight_entry": 17.611898553308663, - "ema_dist_close": 0.002429996018635014, - "ema_dist_entry": 0.0013589226004891521, - "ema_span_0": 1319.7192743024323, - "ema_span_1": 1414.9932931638582, - "enabled": true, - "markup_range": 0.0028033086702613404, - "min_markup": 0.004860796242085709, - "n_close_orders": 11, - "qty_pct_close": 0.010008122508872121, - "qty_pct_entry": 0.01001059088391252, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.256456045876257}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1335.2768819845921, - "delay_between_fills_minutes_entry": 428.6975600221851, - "delay_weight_close": 50.78557583382557, - "delay_weight_entry": 25.83468775753399, - "ema_dist_close": -0.005729792068735952, - "ema_dist_entry": -0.0060008799575101785, - "ema_span_0": 615.8987912234022, - "ema_span_1": 389.18468385438194, - "enabled": true, - "markup_range": 0.002004695884103621, - "min_markup": 0.005257696384174906, - "n_close_orders": 10, - "qty_pct_close": 0.010713783063561551, - "qty_pct_entry": 0.01028958370444903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.369243812144566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/COMBOUSDT.json b/configs/live/single_symbol_optimizations/clock/COMBOUSDT.json deleted file mode 100644 index 10ba408af..000000000 --- a/configs/live/single_symbol_optimizations/clock/COMBOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.6666621187816, - "delay_between_fills_minutes_entry": 830.7356293585204, - "delay_weight_close": 59.65456372475734, - "delay_weight_entry": 12.996514457960043, - "ema_dist_close": 0.0024265084376465713, - "ema_dist_entry": -0.006172690559696017, - "ema_span_0": 993.1391453003579, - "ema_span_1": 1295.8572880261877, - "enabled": true, - "markup_range": 0.04427765976689768, - "min_markup": 0.00839296736251286, - "n_close_orders": 4, - "qty_pct_close": 0.014278085065318977, - "qty_pct_entry": 0.010079432021904882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.931109437156035}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/COMPUSDT.json b/configs/live/single_symbol_optimizations/clock/COMPUSDT.json deleted file mode 100644 index 117ada916..000000000 --- a/configs/live/single_symbol_optimizations/clock/COMPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.6666621187816, - "delay_between_fills_minutes_entry": 830.7356293585204, - "delay_weight_close": 59.65456372475734, - "delay_weight_entry": 12.996514457960043, - "ema_dist_close": 0.0024265084376465713, - "ema_dist_entry": -0.006172690559696017, - "ema_span_0": 993.1391453003579, - "ema_span_1": 1295.8572880261877, - "enabled": true, - "markup_range": 0.04427765976689768, - "min_markup": 0.00839296736251286, - "n_close_orders": 4, - "qty_pct_close": 0.014278085065318977, - "qty_pct_entry": 0.010079432021904882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.931109437156035}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1376.4334380827709, - "delay_between_fills_minutes_entry": 462.21640330817615, - "delay_weight_close": 54.86638255316273, - "delay_weight_entry": 13.656492405203156, - "ema_dist_close": 0.0015517067437677457, - "ema_dist_entry": -0.004974150937097131, - "ema_span_0": 1022.5869576168661, - "ema_span_1": 367.08980155557924, - "enabled": true, - "markup_range": 0.032466125973707516, - "min_markup": 0.005976370130450931, - "n_close_orders": 8, - "qty_pct_close": 0.020160212896662512, - "qty_pct_entry": 0.010019110485541778, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 1.5144278044113433}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/COTIUSDT.json b/configs/live/single_symbol_optimizations/clock/COTIUSDT.json deleted file mode 100644 index a0ead4bb0..000000000 --- a/configs/live/single_symbol_optimizations/clock/COTIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1203.4611181572768, - "delay_between_fills_minutes_entry": 1265.794247342226, - "delay_weight_close": 57.83783859617172, - "delay_weight_entry": 12.499722800741255, - "ema_dist_close": -0.0005024491267574696, - "ema_dist_entry": -0.027340186975463802, - "ema_span_0": 452.468690047275, - "ema_span_1": 1198.7397140746277, - "enabled": true, - "markup_range": 0.043056168258799585, - "min_markup": 0.009938065969980503, - "n_close_orders": 11, - "qty_pct_close": 0.010048868385421263, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.823099979339839}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1307.2449624621993, - "delay_between_fills_minutes_entry": 790.3950370792779, - "delay_weight_close": 22.345811397598496, - "delay_weight_entry": 14.99666336310483, - "ema_dist_close": -0.004540150724966096, - "ema_dist_entry": -0.007693291856595792, - "ema_span_0": 1139.1336177640706, - "ema_span_1": 675.2041597066742, - "enabled": true, - "markup_range": 0.009144216003937276, - "min_markup": 0.006806675684091585, - "n_close_orders": 5, - "qty_pct_close": 0.02266718250353984, - "qty_pct_entry": 0.016774245691894223, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.57948571130427}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CRVUSDT.json b/configs/live/single_symbol_optimizations/clock/CRVUSDT.json deleted file mode 100644 index 1516dbd25..000000000 --- a/configs/live/single_symbol_optimizations/clock/CRVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.5591713988508, - "delay_between_fills_minutes_entry": 1222.387567984932, - "delay_weight_close": 59.45358227933449, - "delay_weight_entry": 10.558181151699905, - "ema_dist_close": -0.0008640894989598183, - "ema_dist_entry": 0.0006870016090268654, - "ema_span_0": 913.497230257846, - "ema_span_1": 1436.215122325884, - "enabled": true, - "markup_range": 0.059578361950649174, - "min_markup": 0.009643362227367292, - "n_close_orders": 9, - "qty_pct_close": 0.01689913460888909, - "qty_pct_entry": 0.010080542810707492, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.995938157759916}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CTKUSDT.json b/configs/live/single_symbol_optimizations/clock/CTKUSDT.json deleted file mode 100644 index 915747def..000000000 --- a/configs/live/single_symbol_optimizations/clock/CTKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1266.6770429974376, - "delay_between_fills_minutes_entry": 752.4399864420632, - "delay_weight_close": 88.30794360867762, - "delay_weight_entry": 29.370592315262346, - "ema_dist_close": 0.0012602939584487683, - "ema_dist_entry": -0.0029290555464139122, - "ema_span_0": 380.15410611634405, - "ema_span_1": 1400.4504008491972, - "enabled": true, - "markup_range": 0.0004626893957857511, - "min_markup": 0.00490145366768504, - "n_close_orders": 12, - "qty_pct_close": 0.043984734198136144, - "qty_pct_entry": 0.018595681207980296, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.900895979162492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 913.5070119905605, - "delay_between_fills_minutes_entry": 572.0967952802034, - "delay_weight_close": 72.25048035614671, - "delay_weight_entry": 5.8452862726548656, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008821592964316104, - "ema_span_0": 1061.7117244066478, - "ema_span_1": 926.1535412288271, - "enabled": true, - "markup_range": 0.006653493176864328, - "min_markup": 0.0038257668668339804, - "n_close_orders": 5, - "qty_pct_close": 0.020795698612646792, - "qty_pct_entry": 0.02831515252280558, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.187414843952739}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CTSIUSDT.json b/configs/live/single_symbol_optimizations/clock/CTSIUSDT.json deleted file mode 100644 index b82056d0f..000000000 --- a/configs/live/single_symbol_optimizations/clock/CTSIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9173644454004, - "delay_between_fills_minutes_entry": 1419.8246387852046, - "delay_weight_close": 48.012293572630455, - "delay_weight_entry": 15.183351382612488, - "ema_dist_close": 0.0015012186349785742, - "ema_dist_entry": 0.0014541136121861997, - "ema_span_0": 389.51920707173974, - "ema_span_1": 897.3213415855408, - "enabled": true, - "markup_range": 0.05333828949180657, - "min_markup": 0.007511389686758822, - "n_close_orders": 16, - "qty_pct_close": 0.01018937358950912, - "qty_pct_entry": 0.010050152566720193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.255688645124718}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1364.2587732218208, - "delay_between_fills_minutes_entry": 425.84037015267313, - "delay_weight_close": 6.3775015565461795, - "delay_weight_entry": 7.188384360444416, - "ema_dist_close": 0.0004912029105375679, - "ema_dist_entry": -0.0028814858912651446, - "ema_span_0": 1298.8192103417834, - "ema_span_1": 690.4848588072921, - "enabled": true, - "markup_range": 0.005609324244712735, - "min_markup": 0.006610630726702749, - "n_close_orders": 6, - "qty_pct_close": 0.011262475636718951, - "qty_pct_entry": 0.011465358373293532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.362093152965102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CVCUSDT.json b/configs/live/single_symbol_optimizations/clock/CVCUSDT.json deleted file mode 100644 index 2b2afd965..000000000 --- a/configs/live/single_symbol_optimizations/clock/CVCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 889.6570684770882, - "delay_between_fills_minutes_entry": 949.8684524371805, - "delay_weight_close": 60.196386471595105, - "delay_weight_entry": 10.156954362839604, - "ema_dist_close": 0.0022416940540073947, - "ema_dist_entry": -0.0009026687641129229, - "ema_span_0": 937.4700105028668, - "ema_span_1": 1439.1829358356267, - "enabled": true, - "markup_range": 0.05172736744359791, - "min_markup": 0.007357589766707474, - "n_close_orders": 15, - "qty_pct_close": 0.012516553533768805, - "qty_pct_entry": 0.010001931494448266, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.430935442991904}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/CVXUSDT.json b/configs/live/single_symbol_optimizations/clock/CVXUSDT.json deleted file mode 100644 index 377eb152e..000000000 --- a/configs/live/single_symbol_optimizations/clock/CVXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1021.1436369787372, - "delay_between_fills_minutes_entry": 1417.267357749826, - "delay_weight_close": 25.005816260082653, - "delay_weight_entry": 12.399073464188993, - "ema_dist_close": 0.0008623687443322454, - "ema_dist_entry": 4.0400635821305375e-05, - "ema_span_0": 1260.77025080792, - "ema_span_1": 807.7611029522367, - "enabled": true, - "markup_range": 0.057489948732585, - "min_markup": 0.008228250494530367, - "n_close_orders": 14, - "qty_pct_close": 0.011707420370663057, - "qty_pct_entry": 0.010442373122738147, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82140843603225}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1169.6641128771712, - "delay_between_fills_minutes_entry": 506.1225240195993, - "delay_weight_close": 43.12109960905372, - "delay_weight_entry": 10.565317496270032, - "ema_dist_close": 0.001258051366150663, - "ema_dist_entry": -0.01975743303621753, - "ema_span_0": 1025.1686104987782, - "ema_span_1": 738.3576934163665, - "enabled": true, - "markup_range": 0.0072393557089415065, - "min_markup": 0.00811907873362953, - "n_close_orders": 11, - "qty_pct_close": 0.011588550848380357, - "qty_pct_entry": 0.011555195265078562, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.40521847704868}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DARUSDT.json b/configs/live/single_symbol_optimizations/clock/DARUSDT.json deleted file mode 100644 index 6059f0ab7..000000000 --- a/configs/live/single_symbol_optimizations/clock/DARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5402911357278, - "delay_between_fills_minutes_entry": 705.2311636892108, - "delay_weight_close": 65.49854174609756, - "delay_weight_entry": 17.611898553308663, - "ema_dist_close": 0.002429996018635014, - "ema_dist_entry": 0.0013589226004891521, - "ema_span_0": 1319.7192743024323, - "ema_span_1": 1414.9932931638582, - "enabled": true, - "markup_range": 0.0028033086702613404, - "min_markup": 0.004860796242085709, - "n_close_orders": 11, - "qty_pct_close": 0.010008122508872121, - "qty_pct_entry": 0.01001059088391252, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.256456045876257}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1164.7087235339047, - "delay_between_fills_minutes_entry": 300.69374510732354, - "delay_weight_close": 52.06502301880436, - "delay_weight_entry": 36.01605058517654, - "ema_dist_close": 8.259372311939905e-05, - "ema_dist_entry": -0.01975630463739775, - "ema_span_0": 964.86749838601, - "ema_span_1": 1053.8271666805751, - "enabled": true, - "markup_range": 0.0017393770784750954, - "min_markup": 0.0024836763501848618, - "n_close_orders": 9, - "qty_pct_close": 0.010176864411502399, - "qty_pct_entry": 0.012911151054359927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.738487269062477}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DASHUSDT.json b/configs/live/single_symbol_optimizations/clock/DASHUSDT.json deleted file mode 100644 index 5a36fe51e..000000000 --- a/configs/live/single_symbol_optimizations/clock/DASHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1428.2154638603602, - "delay_between_fills_minutes_entry": 1044.898378602072, - "delay_weight_close": 48.8970112262042, - "delay_weight_entry": 10.586532185086313, - "ema_dist_close": 0.0010565943229162475, - "ema_dist_entry": -0.002263974056758919, - "ema_span_0": 1423.923887979255, - "ema_span_1": 1295.1143740669238, - "enabled": true, - "markup_range": 0.04736225138902009, - "min_markup": 0.008831390198209763, - "n_close_orders": 12, - "qty_pct_close": 0.016102132015729593, - "qty_pct_entry": 0.010556074384481732, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.950606859597613}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.8817832880302, - "delay_between_fills_minutes_entry": 647.5493853721531, - "delay_weight_close": 53.70798966547013, - "delay_weight_entry": 6.974831854223101, - "ema_dist_close": -0.0035085468171338354, - "ema_dist_entry": -0.004428144109769674, - "ema_span_0": 612.423977376808, - "ema_span_1": 605.0330359148352, - "enabled": true, - "markup_range": 0.0045149413115564046, - "min_markup": 0.00975465531531431, - "n_close_orders": 9, - "qty_pct_close": 0.01143580772435395, - "qty_pct_entry": 0.01601059995335201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.121202682936747}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DEFIUSDT.json b/configs/live/single_symbol_optimizations/clock/DEFIUSDT.json deleted file mode 100644 index 8fa0ca037..000000000 --- a/configs/live/single_symbol_optimizations/clock/DEFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1189.6674519445728, - "delay_between_fills_minutes_entry": 862.4110000370761, - "delay_weight_close": 23.090209961168704, - "delay_weight_entry": 12.066816715373017, - "ema_dist_close": 0.0026883412545098792, - "ema_dist_entry": -0.00022862768112942008, - "ema_span_0": 677.8538015735493, - "ema_span_1": 1439.2627717108842, - "enabled": true, - "markup_range": 0.05999840459861702, - "min_markup": 0.009029539604876008, - "n_close_orders": 10, - "qty_pct_close": 0.03871146699164828, - "qty_pct_entry": 0.010416304519439132, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999716324467864}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1367.253628686756, - "delay_between_fills_minutes_entry": 820.1779971790736, - "delay_weight_close": 77.50158656274952, - "delay_weight_entry": 15.998538436063031, - "ema_dist_close": -0.0027557296842778117, - "ema_dist_entry": -0.009534887152035624, - "ema_span_0": 1196.8382833667606, - "ema_span_1": 1191.543764973548, - "enabled": true, - "markup_range": 0.01792881799193969, - "min_markup": 0.003960448151934989, - "n_close_orders": 9, - "qty_pct_close": 0.013912845359340155, - "qty_pct_entry": 0.011470756448086351, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.320930354751255}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DENTUSDT.json b/configs/live/single_symbol_optimizations/clock/DENTUSDT.json deleted file mode 100644 index 17aa63c86..000000000 --- a/configs/live/single_symbol_optimizations/clock/DENTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1409.2523689784412, - "delay_between_fills_minutes_entry": 592.3926124970354, - "delay_weight_close": 71.12671335399787, - "delay_weight_entry": 12.160621998382826, - "ema_dist_close": 0.0006770893834596368, - "ema_dist_entry": -0.00684337984136156, - "ema_span_0": 850.3837607809575, - "ema_span_1": 322.4578598589943, - "enabled": true, - "markup_range": 0.008824137597215726, - "min_markup": 0.0060133145036067375, - "n_close_orders": 13, - "qty_pct_close": 0.010212491158651759, - "qty_pct_entry": 0.011678700485474801, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.505994062962653}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DGBUSDT.json b/configs/live/single_symbol_optimizations/clock/DGBUSDT.json deleted file mode 100644 index e8695cb0a..000000000 --- a/configs/live/single_symbol_optimizations/clock/DGBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1345.4851141881727, - "delay_between_fills_minutes_entry": 315.0473994919766, - "delay_weight_close": 85.60285991396627, - "delay_weight_entry": 12.367303720940644, - "ema_dist_close": -0.0010377260560565, - "ema_dist_entry": -0.0003301296683804859, - "ema_span_0": 1409.5225953185495, - "ema_span_1": 285.3695267567089, - "enabled": true, - "markup_range": 0.04000082654119734, - "min_markup": 0.009168461112122278, - "n_close_orders": 9, - "qty_pct_close": 0.025643411052427862, - "qty_pct_entry": 0.011798853510332347, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.794884245929113}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1111.8577317403558, - "delay_between_fills_minutes_entry": 446.5246509317262, - "delay_weight_close": 82.74031097917285, - "delay_weight_entry": 31.358100512063892, - "ema_dist_close": -0.00024230184912420064, - "ema_dist_entry": 0.0017844147362385619, - "ema_span_0": 1438.8545701011808, - "ema_span_1": 914.5555442257083, - "enabled": true, - "markup_range": 7.249282113820378e-05, - "min_markup": 0.009460799542397083, - "n_close_orders": 5, - "qty_pct_close": 0.019460174032906046, - "qty_pct_entry": 0.019069801890396143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.921549839813937}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DOGEUSDT.json b/configs/live/single_symbol_optimizations/clock/DOGEUSDT.json deleted file mode 100644 index b8f9aa773..000000000 --- a/configs/live/single_symbol_optimizations/clock/DOGEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1246.453675439523, - "delay_between_fills_minutes_entry": 1043.4026414875514, - "delay_weight_close": 59.00638071467824, - "delay_weight_entry": 12.783527392042384, - "ema_dist_close": -0.001174471722058444, - "ema_dist_entry": -0.0008280528023009111, - "ema_span_0": 905.0803044663683, - "ema_span_1": 1274.1281529111866, - "enabled": true, - "markup_range": 0.02939339511460445, - "min_markup": 0.006431641992599841, - "n_close_orders": 10, - "qty_pct_close": 0.036761321855843444, - "qty_pct_entry": 0.02461482313117535, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99284196964666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 852.2074633272662, - "delay_between_fills_minutes_entry": 325.50145741631263, - "delay_weight_close": 18.631976944547564, - "delay_weight_entry": 29.830619775365292, - "ema_dist_close": 0.002201878864055427, - "ema_dist_entry": 0.0012225438770040859, - "ema_span_0": 606.6869848391283, - "ema_span_1": 5.116676371440883, - "enabled": true, - "markup_range": 0.002384385970263092, - "min_markup": 0.004733621569366062, - "n_close_orders": 9, - "qty_pct_close": 0.019266859547764515, - "qty_pct_entry": 0.011220249209691507, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.185953452138878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DOTUSDT.json b/configs/live/single_symbol_optimizations/clock/DOTUSDT.json deleted file mode 100644 index a046783d2..000000000 --- a/configs/live/single_symbol_optimizations/clock/DOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1201.3553115734176, - "delay_between_fills_minutes_entry": 155.40520705437388, - "delay_weight_close": 43.27170215217793, - "delay_weight_entry": 26.507696134409546, - "ema_dist_close": -0.0019492633737805062, - "ema_dist_entry": -0.00670905708080243, - "ema_span_0": 424.1388409434823, - "ema_span_1": 481.5134035268234, - "enabled": true, - "markup_range": 0.0005162061255941643, - "min_markup": 0.003109419278027527, - "n_close_orders": 3, - "qty_pct_close": 0.015444009985160424, - "qty_pct_entry": 0.013566597667700837, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.821599512174}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DUSKUSDT.json b/configs/live/single_symbol_optimizations/clock/DUSKUSDT.json deleted file mode 100644 index 1d594dd47..000000000 --- a/configs/live/single_symbol_optimizations/clock/DUSKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1061.8823999064584, - "delay_between_fills_minutes_entry": 1012.1825530990295, - "delay_weight_close": 35.409202373884135, - "delay_weight_entry": 32.95956402925812, - "ema_dist_close": -0.007254519009069184, - "ema_dist_entry": 0.0028304482415728097, - "ema_span_0": 91.16702196899816, - "ema_span_1": 91.93736565179938, - "enabled": true, - "markup_range": 0.0031895140493152776, - "min_markup": 0.0030837805934416707, - "n_close_orders": 4, - "qty_pct_close": 0.010458652758586526, - "qty_pct_entry": 0.012868236452401689, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.966008726830031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 117.61266519534016, - "delay_weight_close": 22.90997304169476, - "delay_weight_entry": 14.256381652203737, - "ema_dist_close": 1.042146393954212e-06, - "ema_dist_entry": -0.009186440298592299, - "ema_span_0": 534.2014868965927, - "ema_span_1": 947.5578932680734, - "enabled": true, - "markup_range": 0.0006327390122436608, - "min_markup": 0.004532160264044096, - "n_close_orders": 14, - "qty_pct_close": 0.01116374643841166, - "qty_pct_entry": 0.010002450092506773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983118834246604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/DYDXUSDT.json b/configs/live/single_symbol_optimizations/clock/DYDXUSDT.json deleted file mode 100644 index 3a2c6251b..000000000 --- a/configs/live/single_symbol_optimizations/clock/DYDXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1423.5822534480844, - "delay_between_fills_minutes_entry": 890.857060741827, - "delay_weight_close": 89.68497956637307, - "delay_weight_entry": 4.621357780568565, - "ema_dist_close": 0.002998452889880113, - "ema_dist_entry": 0.002943592814291854, - "ema_span_0": 1397.0725108976064, - "ema_span_1": 595.4708721363418, - "enabled": true, - "markup_range": 0.05740478413565188, - "min_markup": 0.009425835613633455, - "n_close_orders": 10, - "qty_pct_close": 0.010716339616979438, - "qty_pct_entry": 0.010150235355761174, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983273240860251}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.0606565467324, - "delay_between_fills_minutes_entry": 597.3404935133965, - "delay_weight_close": 51.30188886336951, - "delay_weight_entry": 7.3189798041352185, - "ema_dist_close": 0.0026241791967977824, - "ema_dist_entry": -0.0058327947396331955, - "ema_span_0": 383.1823643909721, - "ema_span_1": 1192.3384075923834, - "enabled": true, - "markup_range": 0.009192103699652262, - "min_markup": 0.006846861874381054, - "n_close_orders": 14, - "qty_pct_close": 0.01573391125062259, - "qty_pct_entry": 0.01069624576704663, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.332602107381742}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/EDUUSDT.json b/configs/live/single_symbol_optimizations/clock/EDUUSDT.json deleted file mode 100644 index 21dbe5d42..000000000 --- a/configs/live/single_symbol_optimizations/clock/EDUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.7995308089592, - "delay_between_fills_minutes_entry": 1068.5930950999073, - "delay_weight_close": 76.73912133547697, - "delay_weight_entry": 9.480197763450395, - "ema_dist_close": -0.00041694208248724924, - "ema_dist_entry": -0.002304322571779274, - "ema_span_0": 1100.419610237486, - "ema_span_1": 544.0615071003361, - "enabled": true, - "markup_range": 0.0176791624976898, - "min_markup": 0.005460683083261101, - "n_close_orders": 5, - "qty_pct_close": 0.011975770785258287, - "qty_pct_entry": 0.020042093949155005, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.219164099825345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/EGLDUSDT.json b/configs/live/single_symbol_optimizations/clock/EGLDUSDT.json deleted file mode 100644 index 906edf2b4..000000000 --- a/configs/live/single_symbol_optimizations/clock/EGLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1185.5604663424745, - "delay_between_fills_minutes_entry": 1245.3395974602226, - "delay_weight_close": 0.5348155593158134, - "delay_weight_entry": 20.999187531404058, - "ema_dist_close": 0.0029719388902514016, - "ema_dist_entry": -0.012923814128996793, - "ema_span_0": 1409.3932834375444, - "ema_span_1": 914.7067421277651, - "enabled": true, - "markup_range": 0.0012172565036916443, - "min_markup": 0.008796877028114004, - "n_close_orders": 15, - "qty_pct_close": 0.012731494579591999, - "qty_pct_entry": 0.0189926115075577, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.727955020694845}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ENJUSDT.json b/configs/live/single_symbol_optimizations/clock/ENJUSDT.json deleted file mode 100644 index f67e55855..000000000 --- a/configs/live/single_symbol_optimizations/clock/ENJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1401.0388472375867, - "delay_between_fills_minutes_entry": 1046.5429971057345, - "delay_weight_close": 46.123983741206544, - "delay_weight_entry": 10.748299168060415, - "ema_dist_close": -0.0042592740619516655, - "ema_dist_entry": -0.00691027510879591, - "ema_span_0": 835.7684013255501, - "ema_span_1": 999.78222208355, - "enabled": true, - "markup_range": 0.032161646455142, - "min_markup": 0.007879984221323478, - "n_close_orders": 14, - "qty_pct_close": 0.011448624166079665, - "qty_pct_entry": 0.01288872088361904, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.057021738291256}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1068.6598702446938, - "delay_between_fills_minutes_entry": 341.5359166522215, - "delay_weight_close": 44.413500441106656, - "delay_weight_entry": 14.657270309753374, - "ema_dist_close": 0.002991470374193444, - "ema_dist_entry": -0.010106402016082552, - "ema_span_0": 1033.097790868257, - "ema_span_1": 997.9260911008586, - "enabled": true, - "markup_range": 0.010375330005099746, - "min_markup": 0.005268552794362952, - "n_close_orders": 7, - "qty_pct_close": 0.04228009762642517, - "qty_pct_entry": 0.013315804562231673, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.65099975692485}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ENSUSDT.json b/configs/live/single_symbol_optimizations/clock/ENSUSDT.json deleted file mode 100644 index dd5c58356..000000000 --- a/configs/live/single_symbol_optimizations/clock/ENSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1185.5604663424745, - "delay_between_fills_minutes_entry": 1245.3395974602226, - "delay_weight_close": 0.5348155593158134, - "delay_weight_entry": 20.999187531404058, - "ema_dist_close": 0.0029719388902514016, - "ema_dist_entry": -0.012923814128996793, - "ema_span_0": 1409.3932834375444, - "ema_span_1": 914.7067421277651, - "enabled": true, - "markup_range": 0.0012172565036916443, - "min_markup": 0.008796877028114004, - "n_close_orders": 15, - "qty_pct_close": 0.012731494579591999, - "qty_pct_entry": 0.0189926115075577, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.727955020694845}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.864398928915, - "delay_between_fills_minutes_entry": 377.030366780971, - "delay_weight_close": 31.633775495098284, - "delay_weight_entry": 10.39800970648835, - "ema_dist_close": -0.0011984885226454648, - "ema_dist_entry": -0.0181731076771228, - "ema_span_0": 315.1392140663329, - "ema_span_1": 1407.4195279428977, - "enabled": true, - "markup_range": 0.012673770174367016, - "min_markup": 0.006191514860892238, - "n_close_orders": 3, - "qty_pct_close": 0.02655876793425885, - "qty_pct_entry": 0.01283788113376384, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/EOSUSDT.json b/configs/live/single_symbol_optimizations/clock/EOSUSDT.json deleted file mode 100644 index 788f43285..000000000 --- a/configs/live/single_symbol_optimizations/clock/EOSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1192.1404553964874, - "delay_between_fills_minutes_entry": 791.1037635231085, - "delay_weight_close": 48.218381112190315, - "delay_weight_entry": 13.868387685640204, - "ema_dist_close": 0.0023170909153975025, - "ema_dist_entry": -0.0033549192251556077, - "ema_span_0": 1428.2000594584051, - "ema_span_1": 1017.5592176979353, - "enabled": true, - "markup_range": 0.04313039661653261, - "min_markup": 0.00792529313634666, - "n_close_orders": 13, - "qty_pct_close": 0.030788111818365802, - "qty_pct_entry": 0.013430945301825882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.56746817431372}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1138.3743014252896, - "delay_between_fills_minutes_entry": 485.35402752523305, - "delay_weight_close": 7.740128227727208, - "delay_weight_entry": 26.904846261974686, - "ema_dist_close": -0.004998795658128728, - "ema_dist_entry": -0.01392539097918844, - "ema_span_0": 862.9674998653496, - "ema_span_1": 703.2786612389693, - "enabled": true, - "markup_range": 0.004673626053725119, - "min_markup": 0.004479852845419759, - "n_close_orders": 3, - "qty_pct_close": 0.01183696807459079, - "qty_pct_entry": 0.011833936760066539, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.873012335945738}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ETCUSDT.json b/configs/live/single_symbol_optimizations/clock/ETCUSDT.json deleted file mode 100644 index 044a9d5b3..000000000 --- a/configs/live/single_symbol_optimizations/clock/ETCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 889.6570684770882, - "delay_between_fills_minutes_entry": 949.8684524371805, - "delay_weight_close": 60.196386471595105, - "delay_weight_entry": 10.156954362839604, - "ema_dist_close": 0.0022416940540073947, - "ema_dist_entry": -0.0009026687641129229, - "ema_span_0": 937.4700105028668, - "ema_span_1": 1439.1829358356267, - "enabled": true, - "markup_range": 0.05172736744359791, - "min_markup": 0.007357589766707474, - "n_close_orders": 15, - "qty_pct_close": 0.012516553533768805, - "qty_pct_entry": 0.010001931494448266, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.430935442991904}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1370.0287420572067, - "delay_between_fills_minutes_entry": 1275.4491178494188, - "delay_weight_close": 39.69283231709805, - "delay_weight_entry": 34.02636765589773, - "ema_dist_close": -0.004713380264882618, - "ema_dist_entry": 0.0010410345460773714, - "ema_span_0": 156.0481654714335, - "ema_span_1": 1346.0410160194367, - "enabled": true, - "markup_range": 6.070525549324779e-05, - "min_markup": 0.0025076589991530657, - "n_close_orders": 5, - "qty_pct_close": 0.01474649720966588, - "qty_pct_entry": 0.02131997285753128, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.703998430961954}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ETHUSDT.json b/configs/live/single_symbol_optimizations/clock/ETHUSDT.json deleted file mode 100644 index 307c34923..000000000 --- a/configs/live/single_symbol_optimizations/clock/ETHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1181.0970928386196, - "delay_between_fills_minutes_entry": 873.4401029243514, - "delay_weight_close": 8.026239512558506, - "delay_weight_entry": 14.993891417608344, - "ema_dist_close": 0.0014469794610280629, - "ema_dist_entry": -0.0005836366726527844, - "ema_span_0": 1166.7659877298502, - "ema_span_1": 939.9550887023798, - "enabled": true, - "markup_range": 0.0198254483271822, - "min_markup": 0.0014048041439875282, - "n_close_orders": 2, - "qty_pct_close": 0.010135430007086846, - "qty_pct_entry": 0.012335679890291168, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.835641590166915}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1132.504506727316, - "delay_between_fills_minutes_entry": 271.2949888174522, - "delay_weight_close": 46.62959202464396, - "delay_weight_entry": 21.225264319072384, - "ema_dist_close": 0.0029502727657052244, - "ema_dist_entry": -0.0011764144447320743, - "ema_span_0": 1200.2056828957004, - "ema_span_1": 952.5980600630442, - "enabled": true, - "markup_range": 0.0007213701100334605, - "min_markup": 0.0021660492907288674, - "n_close_orders": 9, - "qty_pct_close": 0.012804451594978223, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.829187823095918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FETUSDT.json b/configs/live/single_symbol_optimizations/clock/FETUSDT.json deleted file mode 100644 index 2e0bdf908..000000000 --- a/configs/live/single_symbol_optimizations/clock/FETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FILUSDT.json b/configs/live/single_symbol_optimizations/clock/FILUSDT.json deleted file mode 100644 index e9d90ea40..000000000 --- a/configs/live/single_symbol_optimizations/clock/FILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 521.7603243740695, - "delay_between_fills_minutes_entry": 769.9296774628966, - "delay_weight_close": 68.78342526989807, - "delay_weight_entry": 13.32034012519684, - "ema_dist_close": 0.0025548970693686814, - "ema_dist_entry": 0.002977299553394627, - "ema_span_0": 1175.7980040326704, - "ema_span_1": 1045.1400862539235, - "enabled": true, - "markup_range": 0.016658900774052764, - "min_markup": 0.009444828984161031, - "n_close_orders": 12, - "qty_pct_close": 0.010382319101156723, - "qty_pct_entry": 0.011369724708293267, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.783849169726006}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1346.5225720008018, - "delay_between_fills_minutes_entry": 219.7506646481463, - "delay_weight_close": 76.1355554790148, - "delay_weight_entry": 1.6878188313963847, - "ema_dist_close": 0.000859620219531208, - "ema_dist_entry": 0.002981671173784195, - "ema_span_0": 1070.3760677895707, - "ema_span_1": 872.9919495755898, - "enabled": true, - "markup_range": 0.0002007358162144108, - "min_markup": 0.0028605370042807787, - "n_close_orders": 13, - "qty_pct_close": 0.027710255804151415, - "qty_pct_entry": 0.017340267279843443, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.59652959812533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FLMUSDT.json b/configs/live/single_symbol_optimizations/clock/FLMUSDT.json deleted file mode 100644 index 9ffdab1d2..000000000 --- a/configs/live/single_symbol_optimizations/clock/FLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.1300275559712, - "delay_between_fills_minutes_entry": 1212.803527085094, - "delay_weight_close": 34.2600187729523, - "delay_weight_entry": 10.37922745763959, - "ema_dist_close": -0.009510778465579003, - "ema_dist_entry": 0.0015544752209250647, - "ema_span_0": 1369.194009433199, - "ema_span_1": 1344.924365633511, - "enabled": true, - "markup_range": 0.058935127007619666, - "min_markup": 0.009672368146548005, - "n_close_orders": 14, - "qty_pct_close": 0.010063953212069694, - "qty_pct_entry": 0.01096620969409276, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.792246221691608}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1404.0606565467324, - "delay_between_fills_minutes_entry": 597.3404935133965, - "delay_weight_close": 51.30188886336951, - "delay_weight_entry": 7.3189798041352185, - "ema_dist_close": 0.0026241791967977824, - "ema_dist_entry": -0.0058327947396331955, - "ema_span_0": 383.1823643909721, - "ema_span_1": 1192.3384075923834, - "enabled": true, - "markup_range": 0.009192103699652262, - "min_markup": 0.006846861874381054, - "n_close_orders": 14, - "qty_pct_close": 0.01573391125062259, - "qty_pct_entry": 0.01069624576704663, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.332602107381742}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FLOWUSDT.json b/configs/live/single_symbol_optimizations/clock/FLOWUSDT.json deleted file mode 100644 index b57625d04..000000000 --- a/configs/live/single_symbol_optimizations/clock/FLOWUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 822.1340957169649, - "delay_between_fills_minutes_entry": 995.0389205950953, - "delay_weight_close": 44.921573032374894, - "delay_weight_entry": 14.194116780656488, - "ema_dist_close": 0.0015917435169842814, - "ema_dist_entry": 0.0029644734995271436, - "ema_span_0": 1367.147365707656, - "ema_span_1": 373.72215204496433, - "enabled": true, - "markup_range": 0.017704470894770428, - "min_markup": 0.004742020830978237, - "n_close_orders": 8, - "qty_pct_close": 0.012776584480313876, - "qty_pct_entry": 0.01198350096306373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.06005231586295}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1050.5295393999195, - "delay_between_fills_minutes_entry": 249.34438597251201, - "delay_weight_close": 69.4023349664883, - "delay_weight_entry": 6.536877092449303, - "ema_dist_close": 0.0006926333086275973, - "ema_dist_entry": -0.0018377152098485155, - "ema_span_0": 1395.0135640784026, - "ema_span_1": 1190.5073354970134, - "enabled": true, - "markup_range": 0.0029094069241854302, - "min_markup": 0.006163893303507779, - "n_close_orders": 7, - "qty_pct_close": 0.013889098416466386, - "qty_pct_entry": 0.01702205435649927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.683842582341931}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/clock/FOOTBALLUSDT.json deleted file mode 100644 index 4c852af5b..000000000 --- a/configs/live/single_symbol_optimizations/clock/FOOTBALLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1164.7087235339047, - "delay_between_fills_minutes_entry": 300.69374510732354, - "delay_weight_close": 52.06502301880436, - "delay_weight_entry": 36.01605058517654, - "ema_dist_close": 8.259372311939905e-05, - "ema_dist_entry": -0.01975630463739775, - "ema_span_0": 964.86749838601, - "ema_span_1": 1053.8271666805751, - "enabled": true, - "markup_range": 0.0017393770784750954, - "min_markup": 0.0024836763501848618, - "n_close_orders": 9, - "qty_pct_close": 0.010176864411502399, - "qty_pct_entry": 0.012911151054359927, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.738487269062477}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FTMUSDT.json b/configs/live/single_symbol_optimizations/clock/FTMUSDT.json deleted file mode 100644 index 26050fe6b..000000000 --- a/configs/live/single_symbol_optimizations/clock/FTMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1093.3931226800835, - "delay_between_fills_minutes_entry": 665.5016883421802, - "delay_weight_close": 80.50557823810949, - "delay_weight_entry": 12.491775425200546, - "ema_dist_close": 0.00010154903299379399, - "ema_dist_entry": 0.00274606597357272, - "ema_span_0": 1414.3082202202006, - "ema_span_1": 793.9458016941576, - "enabled": true, - "markup_range": 0.03134863435740628, - "min_markup": 0.00976340479791794, - "n_close_orders": 6, - "qty_pct_close": 0.03802576895450344, - "qty_pct_entry": 0.010018757438066206, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.617625781838909}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FTTUSDT.json b/configs/live/single_symbol_optimizations/clock/FTTUSDT.json deleted file mode 100644 index e1f1cba66..000000000 --- a/configs/live/single_symbol_optimizations/clock/FTTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 941.2275073556168, - "delay_between_fills_minutes_entry": 639.1795489134216, - "delay_weight_close": 48.7332636725728, - "delay_weight_entry": 8.13699279459239, - "ema_dist_close": 0.0027170351367633576, - "ema_dist_entry": 0.002500260892556313, - "ema_span_0": 1365.8463728200568, - "ema_span_1": 746.1906803885232, - "enabled": true, - "markup_range": 0.010987611588739817, - "min_markup": 0.004913611097007987, - "n_close_orders": 8, - "qty_pct_close": 0.010419475109354493, - "qty_pct_entry": 0.01811153691609926, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999361012336713}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1337.6450949345738, - "delay_between_fills_minutes_entry": 153.17052942185708, - "delay_weight_close": 85.17810989875991, - "delay_weight_entry": 36.537469457864894, - "ema_dist_close": -8.411637381506544e-05, - "ema_dist_entry": -0.0009530842422584241, - "ema_span_0": 34.62181311310794, - "ema_span_1": 651.7726276111462, - "enabled": true, - "markup_range": 0.00196604560057957, - "min_markup": 0.0010037467806787324, - "n_close_orders": 16, - "qty_pct_close": 0.010805646118110293, - "qty_pct_entry": 0.010064822695749764, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999426837049768}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/FXSUSDT.json b/configs/live/single_symbol_optimizations/clock/FXSUSDT.json deleted file mode 100644 index 3a2ed0940..000000000 --- a/configs/live/single_symbol_optimizations/clock/FXSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1283.4882543935753, - "delay_between_fills_minutes_entry": 1282.4088245805738, - "delay_weight_close": 54.34792163679577, - "delay_weight_entry": 20.418515739638806, - "ema_dist_close": 0.0029242067519374454, - "ema_dist_entry": 0.0008165675084510879, - "ema_span_0": 994.3367379926599, - "ema_span_1": 728.3527546430134, - "enabled": true, - "markup_range": 0.005630467403920814, - "min_markup": 0.009990225854072622, - "n_close_orders": 6, - "qty_pct_close": 0.01024891611858392, - "qty_pct_entry": 0.010013352583831101, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18888554382496}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 417.10032999409367, - "delay_between_fills_minutes_entry": 483.89554164990125, - "delay_weight_close": 30.386021284189134, - "delay_weight_entry": 11.45213513909002, - "ema_dist_close": 0.002359618163183817, - "ema_dist_entry": -0.005401969069027971, - "ema_span_0": 1358.040501374106, - "ema_span_1": 698.1122943720719, - "enabled": true, - "markup_range": 0.02438499264430349, - "min_markup": 0.002477898691579286, - "n_close_orders": 10, - "qty_pct_close": 0.014976947166622385, - "qty_pct_entry": 0.01956247676084041, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.119483512668944}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/GALAUSDT.json b/configs/live/single_symbol_optimizations/clock/GALAUSDT.json deleted file mode 100644 index b2358b81f..000000000 --- a/configs/live/single_symbol_optimizations/clock/GALAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/GALUSDT.json b/configs/live/single_symbol_optimizations/clock/GALUSDT.json deleted file mode 100644 index ba91f4745..000000000 --- a/configs/live/single_symbol_optimizations/clock/GALUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 774.1749994763805, - "delay_between_fills_minutes_entry": 417.10841008932033, - "delay_weight_close": 98.3006781681464, - "delay_weight_entry": 13.875164322812196, - "ema_dist_close": 0.0004161606343772757, - "ema_dist_entry": -0.012285586951885853, - "ema_span_0": 1257.1972969611616, - "ema_span_1": 185.4758736354263, - "enabled": true, - "markup_range": 0.032757699175851945, - "min_markup": 0.003851274926855553, - "n_close_orders": 11, - "qty_pct_close": 0.01829234698898702, - "qty_pct_entry": 0.010006129333077879, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997756395445421}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.3841045307663, - "delay_between_fills_minutes_entry": 139.11685765116061, - "delay_weight_close": 32.57298427264517, - "delay_weight_entry": 10.863799906543202, - "ema_dist_close": 0.0001790996759514929, - "ema_dist_entry": -0.01556809129267982, - "ema_span_0": 1172.7020073545473, - "ema_span_1": 1311.1838295528844, - "enabled": true, - "markup_range": 0.0018156850489901677, - "min_markup": 0.005292289979349248, - "n_close_orders": 8, - "qty_pct_close": 0.011440690681059679, - "qty_pct_entry": 0.012989161682118546, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.118642784734591}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/GMTUSDT.json b/configs/live/single_symbol_optimizations/clock/GMTUSDT.json deleted file mode 100644 index 35fc7d44b..000000000 --- a/configs/live/single_symbol_optimizations/clock/GMTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.8339657258755, - "delay_between_fills_minutes_entry": 891.4788712105387, - "delay_weight_close": 5.4809425813516315, - "delay_weight_entry": 11.58920722892928, - "ema_dist_close": 0.0019639993868800177, - "ema_dist_entry": -0.0007257395086024544, - "ema_span_0": 1187.4204451756896, - "ema_span_1": 763.4232758378089, - "enabled": true, - "markup_range": 0.054783689970365215, - "min_markup": 0.008829482630767964, - "n_close_orders": 4, - "qty_pct_close": 0.046453895676820026, - "qty_pct_entry": 0.010006508807464292, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.201441326354832}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/GMXUSDT.json b/configs/live/single_symbol_optimizations/clock/GMXUSDT.json deleted file mode 100644 index d1a8cdee9..000000000 --- a/configs/live/single_symbol_optimizations/clock/GMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1192.1404553964874, - "delay_between_fills_minutes_entry": 791.1037635231085, - "delay_weight_close": 48.218381112190315, - "delay_weight_entry": 13.868387685640204, - "ema_dist_close": 0.0023170909153975025, - "ema_dist_entry": -0.0033549192251556077, - "ema_span_0": 1428.2000594584051, - "ema_span_1": 1017.5592176979353, - "enabled": true, - "markup_range": 0.04313039661653261, - "min_markup": 0.00792529313634666, - "n_close_orders": 13, - "qty_pct_close": 0.030788111818365802, - "qty_pct_entry": 0.013430945301825882, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.56746817431372}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1123.6046724453147, - "delay_between_fills_minutes_entry": 1007.8961745795849, - "delay_weight_close": 54.302544923341415, - "delay_weight_entry": 14.561869304632943, - "ema_dist_close": 0.0028543215010157835, - "ema_dist_entry": 0.0006475938775836436, - "ema_span_0": 1367.2468919982805, - "ema_span_1": 259.1595249455664, - "enabled": true, - "markup_range": 0.03585622421151245, - "min_markup": 0.009931016147315366, - "n_close_orders": 13, - "qty_pct_close": 0.012360992940652588, - "qty_pct_entry": 0.011136411681853352, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919313098773648}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/GRTUSDT.json b/configs/live/single_symbol_optimizations/clock/GRTUSDT.json deleted file mode 100644 index b03e64569..000000000 --- a/configs/live/single_symbol_optimizations/clock/GRTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 829.2056509446012, - "delay_between_fills_minutes_entry": 681.3646138042108, - "delay_weight_close": 51.187852714467795, - "delay_weight_entry": 26.67094334656582, - "ema_dist_close": -0.0018465384659754412, - "ema_dist_entry": -0.049910333726392524, - "ema_span_0": 1319.5819556533716, - "ema_span_1": 939.8866392694617, - "enabled": true, - "markup_range": 0.0015524732447086756, - "min_markup": 0.0052013372444876796, - "n_close_orders": 13, - "qty_pct_close": 0.03824287933308041, - "qty_pct_entry": 0.010000348257180033, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.823980118365053}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.7178502765457, - "delay_between_fills_minutes_entry": 574.3537408896536, - "delay_weight_close": 79.80491949338992, - "delay_weight_entry": 11.562035417347104, - "ema_dist_close": -8.152786006796259e-05, - "ema_dist_entry": -0.006999278647231068, - "ema_span_0": 1391.1389085569626, - "ema_span_1": 915.519171904557, - "enabled": true, - "markup_range": 0.0018840191727093577, - "min_markup": 0.004188852247657481, - "n_close_orders": 3, - "qty_pct_close": 0.018508670460081623, - "qty_pct_entry": 0.010483362142496691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.630049911945353}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/GTCUSDT.json b/configs/live/single_symbol_optimizations/clock/GTCUSDT.json deleted file mode 100644 index f3af5af87..000000000 --- a/configs/live/single_symbol_optimizations/clock/GTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.9675194232736, - "delay_between_fills_minutes_entry": 1007.1682620636734, - "delay_weight_close": 89.87252105323053, - "delay_weight_entry": 8.761528423864856, - "ema_dist_close": 0.0019744920924290137, - "ema_dist_entry": 0.001227027407331943, - "ema_span_0": 1236.3547451221145, - "ema_span_1": 910.3422794295219, - "enabled": true, - "markup_range": 0.008475686726893564, - "min_markup": 0.007695340096036006, - "n_close_orders": 3, - "qty_pct_close": 0.010665723673662307, - "qty_pct_entry": 0.014672410239745194, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.794050691780967}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1364.2587732218208, - "delay_between_fills_minutes_entry": 425.84037015267313, - "delay_weight_close": 6.3775015565461795, - "delay_weight_entry": 7.188384360444416, - "ema_dist_close": 0.0004912029105375679, - "ema_dist_entry": -0.0028814858912651446, - "ema_span_0": 1298.8192103417834, - "ema_span_1": 690.4848588072921, - "enabled": true, - "markup_range": 0.005609324244712735, - "min_markup": 0.006610630726702749, - "n_close_orders": 6, - "qty_pct_close": 0.011262475636718951, - "qty_pct_entry": 0.011465358373293532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.362093152965102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/HBARUSDT.json b/configs/live/single_symbol_optimizations/clock/HBARUSDT.json deleted file mode 100644 index 9866afe93..000000000 --- a/configs/live/single_symbol_optimizations/clock/HBARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1332.7987126249104, - "delay_between_fills_minutes_entry": 624.9168506512478, - "delay_weight_close": 88.8538847686371, - "delay_weight_entry": 23.99292759292018, - "ema_dist_close": 0.0002927075317135663, - "ema_dist_entry": -0.003574502696154154, - "ema_span_0": 1019.0195072593476, - "ema_span_1": 665.9141008553138, - "enabled": true, - "markup_range": 0.05333111971959553, - "min_markup": 0.00735610034529312, - "n_close_orders": 7, - "qty_pct_close": 0.022098395982313356, - "qty_pct_entry": 0.010016520510945722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.765112397875368}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1131.2034191980229, - "delay_between_fills_minutes_entry": 603.9919367267665, - "delay_weight_close": 59.30276271909621, - "delay_weight_entry": 56.615227116540645, - "ema_dist_close": 0.0006752535836517838, - "ema_dist_entry": -0.002247204524569638, - "ema_span_0": 113.176331576974, - "ema_span_1": 82.3205831069274, - "enabled": true, - "markup_range": 6.556947657638679e-05, - "min_markup": 0.005432387048014245, - "n_close_orders": 7, - "qty_pct_close": 0.019624372080746008, - "qty_pct_entry": 0.010409397311243742, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9141047108220475}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/HFTUSDT.json b/configs/live/single_symbol_optimizations/clock/HFTUSDT.json deleted file mode 100644 index fb5fbedcc..000000000 --- a/configs/live/single_symbol_optimizations/clock/HFTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 593.7839940862833, - "delay_between_fills_minutes_entry": 1349.6547115519363, - "delay_weight_close": 31.262585915509586, - "delay_weight_entry": 11.783630048138324, - "ema_dist_close": 0.0029586601407631413, - "ema_dist_entry": -0.0007703020436630937, - "ema_span_0": 1230.7466168345422, - "ema_span_1": 1380.275694355039, - "enabled": true, - "markup_range": 0.019753667261125103, - "min_markup": 0.004827276579657606, - "n_close_orders": 4, - "qty_pct_close": 0.010023263627875487, - "qty_pct_entry": 0.010680411439793808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.15153762541229}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/HIGHUSDT.json b/configs/live/single_symbol_optimizations/clock/HIGHUSDT.json deleted file mode 100644 index 02dd16f5c..000000000 --- a/configs/live/single_symbol_optimizations/clock/HIGHUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.278457321503, - "delay_between_fills_minutes_entry": 834.0816443740619, - "delay_weight_close": 70.42268666961847, - "delay_weight_entry": 10.640623875533915, - "ema_dist_close": 0.002986756643100404, - "ema_dist_entry": -0.000583390349495386, - "ema_span_0": 5.070100507623538, - "ema_span_1": 580.684309125214, - "enabled": true, - "markup_range": 0.055227476791439696, - "min_markup": 0.009747582404212786, - "n_close_orders": 14, - "qty_pct_close": 0.015107454686523959, - "qty_pct_entry": 0.010000000677648875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.8912686853238405}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/HNTUSDT.json b/configs/live/single_symbol_optimizations/clock/HNTUSDT.json deleted file mode 100644 index 16a4392d6..000000000 --- a/configs/live/single_symbol_optimizations/clock/HNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.1300275559712, - "delay_between_fills_minutes_entry": 1212.803527085094, - "delay_weight_close": 34.2600187729523, - "delay_weight_entry": 10.37922745763959, - "ema_dist_close": -0.009510778465579003, - "ema_dist_entry": 0.0015544752209250647, - "ema_span_0": 1369.194009433199, - "ema_span_1": 1344.924365633511, - "enabled": true, - "markup_range": 0.058935127007619666, - "min_markup": 0.009672368146548005, - "n_close_orders": 14, - "qty_pct_close": 0.010063953212069694, - "qty_pct_entry": 0.01096620969409276, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.792246221691608}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/HOOKUSDT.json b/configs/live/single_symbol_optimizations/clock/HOOKUSDT.json deleted file mode 100644 index 66e4d8727..000000000 --- a/configs/live/single_symbol_optimizations/clock/HOOKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1286.278457321503, - "delay_between_fills_minutes_entry": 834.0816443740619, - "delay_weight_close": 70.42268666961847, - "delay_weight_entry": 10.640623875533915, - "ema_dist_close": 0.002986756643100404, - "ema_dist_entry": -0.000583390349495386, - "ema_span_0": 5.070100507623538, - "ema_span_1": 580.684309125214, - "enabled": true, - "markup_range": 0.055227476791439696, - "min_markup": 0.009747582404212786, - "n_close_orders": 14, - "qty_pct_close": 0.015107454686523959, - "qty_pct_entry": 0.010000000677648875, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.8912686853238405}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/HOTUSDT.json b/configs/live/single_symbol_optimizations/clock/HOTUSDT.json deleted file mode 100644 index 42bc4cae2..000000000 --- a/configs/live/single_symbol_optimizations/clock/HOTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 681.2796170982723, - "delay_between_fills_minutes_entry": 836.3582349247018, - "delay_weight_close": 58.67953031686145, - "delay_weight_entry": 32.940231217529494, - "ema_dist_close": 0.002787588761103723, - "ema_dist_entry": 0.0026528113995466364, - "ema_span_0": 899.9613087174203, - "ema_span_1": 446.0961273722432, - "enabled": true, - "markup_range": 0.006134439771879277, - "min_markup": 0.004569991358982784, - "n_close_orders": 9, - "qty_pct_close": 0.04402809310293846, - "qty_pct_entry": 0.016707973217995116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.980025083750068}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.864398928915, - "delay_between_fills_minutes_entry": 377.030366780971, - "delay_weight_close": 31.633775495098284, - "delay_weight_entry": 10.39800970648835, - "ema_dist_close": -0.0011984885226454648, - "ema_dist_entry": -0.0181731076771228, - "ema_span_0": 315.1392140663329, - "ema_span_1": 1407.4195279428977, - "enabled": true, - "markup_range": 0.012673770174367016, - "min_markup": 0.006191514860892238, - "n_close_orders": 3, - "qty_pct_close": 0.02655876793425885, - "qty_pct_entry": 0.01283788113376384, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 10}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ICPUSDT.json b/configs/live/single_symbol_optimizations/clock/ICPUSDT.json deleted file mode 100644 index 61c02d7f3..000000000 --- a/configs/live/single_symbol_optimizations/clock/ICPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.9064026488463, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 58.79959585708705, - "delay_weight_entry": 10.959076388436209, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.02772778938036382, - "ema_span_0": 1138.739721733395, - "ema_span_1": 5.0062918268054695, - "enabled": true, - "markup_range": 0.051451689323101686, - "min_markup": 0.008293567493695307, - "n_close_orders": 12, - "qty_pct_close": 0.017450501048647354, - "qty_pct_entry": 0.01101553339681686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.934438426010102}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1260.0265415031079, - "delay_between_fills_minutes_entry": 1137.651218740672, - "delay_weight_close": 64.65189031066255, - "delay_weight_entry": 25.3030756112232, - "ema_dist_close": -0.0013381742919232303, - "ema_dist_entry": -0.010080730309767, - "ema_span_0": 1335.370090456449, - "ema_span_1": 1120.1708687982666, - "enabled": true, - "markup_range": 0.008220670194196365, - "min_markup": 0.006711238766762056, - "n_close_orders": 9, - "qty_pct_close": 0.012216300466014737, - "qty_pct_entry": 0.01759800671224648, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.952006750363102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ICXUSDT.json b/configs/live/single_symbol_optimizations/clock/ICXUSDT.json deleted file mode 100644 index be7f1594a..000000000 --- a/configs/live/single_symbol_optimizations/clock/ICXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.9284392347556, - "delay_between_fills_minutes_entry": 851.6691833284603, - "delay_weight_close": 45.35882563779744, - "delay_weight_entry": 26.883220255129054, - "ema_dist_close": 0.0006882160335942308, - "ema_dist_entry": 0.0018579347621751389, - "ema_span_0": 1187.368091952627, - "ema_span_1": 1265.4502225890506, - "enabled": true, - "markup_range": 0.0015247693691875356, - "min_markup": 0.006610726762835915, - "n_close_orders": 4, - "qty_pct_close": 0.01400566944581456, - "qty_pct_entry": 0.015544797728112843, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.55569866634186}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.8073930039345, - "delay_between_fills_minutes_entry": 183.3070460019667, - "delay_weight_close": 18.34911435798682, - "delay_weight_entry": 6.694348659919506, - "ema_dist_close": -0.0015196928075700466, - "ema_dist_entry": -0.0013779302410489745, - "ema_span_0": 917.6447116631633, - "ema_span_1": 1375.0551217604964, - "enabled": true, - "markup_range": 8.585396330318892e-06, - "min_markup": 0.007865167514619307, - "n_close_orders": 6, - "qty_pct_close": 0.011255231244372254, - "qty_pct_entry": 0.011434515642898923, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.850974984564138}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/IDEXUSDT.json b/configs/live/single_symbol_optimizations/clock/IDEXUSDT.json deleted file mode 100644 index b8ff08be3..000000000 --- a/configs/live/single_symbol_optimizations/clock/IDEXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/IDUSDT.json b/configs/live/single_symbol_optimizations/clock/IDUSDT.json deleted file mode 100644 index d284ad3c3..000000000 --- a/configs/live/single_symbol_optimizations/clock/IDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1077.1807282484492, - "delay_between_fills_minutes_entry": 1232.7128505088735, - "delay_weight_close": 73.02572088977536, - "delay_weight_entry": 14.453691276160244, - "ema_dist_close": 0.0026294226803143914, - "ema_dist_entry": 0.0029811359697856695, - "ema_span_0": 1150.1390184501067, - "ema_span_1": 1374.864691153405, - "enabled": true, - "markup_range": 0.0585552665236782, - "min_markup": 0.008875991138911835, - "n_close_orders": 14, - "qty_pct_close": 0.013612979997873373, - "qty_pct_entry": 0.011835520328508337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.515438059683117}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1022.8864815436656, - "delay_between_fills_minutes_entry": 490.5600353595079, - "delay_weight_close": 72.37618149523273, - "delay_weight_entry": 41.018339144892835, - "ema_dist_close": 0.001322610222533517, - "ema_dist_entry": 0.0019311796604976857, - "ema_span_0": 587.962722777956, - "ema_span_1": 660.7285425992538, - "enabled": true, - "markup_range": 0.0014137528485443944, - "min_markup": 0.004172374633890429, - "n_close_orders": 5, - "qty_pct_close": 0.020668900143290286, - "qty_pct_entry": 0.01153287491899116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.816195008286176}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/IMXUSDT.json b/configs/live/single_symbol_optimizations/clock/IMXUSDT.json deleted file mode 100644 index 57e82c614..000000000 --- a/configs/live/single_symbol_optimizations/clock/IMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1266.6770429974376, - "delay_between_fills_minutes_entry": 752.4399864420632, - "delay_weight_close": 88.30794360867762, - "delay_weight_entry": 29.370592315262346, - "ema_dist_close": 0.0012602939584487683, - "ema_dist_entry": -0.0029290555464139122, - "ema_span_0": 380.15410611634405, - "ema_span_1": 1400.4504008491972, - "enabled": true, - "markup_range": 0.0004626893957857511, - "min_markup": 0.00490145366768504, - "n_close_orders": 12, - "qty_pct_close": 0.043984734198136144, - "qty_pct_entry": 0.018595681207980296, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.900895979162492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1335.2768819845921, - "delay_between_fills_minutes_entry": 428.6975600221851, - "delay_weight_close": 50.78557583382557, - "delay_weight_entry": 25.83468775753399, - "ema_dist_close": -0.005729792068735952, - "ema_dist_entry": -0.0060008799575101785, - "ema_span_0": 615.8987912234022, - "ema_span_1": 389.18468385438194, - "enabled": true, - "markup_range": 0.002004695884103621, - "min_markup": 0.005257696384174906, - "n_close_orders": 10, - "qty_pct_close": 0.010713783063561551, - "qty_pct_entry": 0.01028958370444903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.369243812144566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/INJUSDT.json b/configs/live/single_symbol_optimizations/clock/INJUSDT.json deleted file mode 100644 index 5e0530ea7..000000000 --- a/configs/live/single_symbol_optimizations/clock/INJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1246.453675439523, - "delay_between_fills_minutes_entry": 1043.4026414875514, - "delay_weight_close": 59.00638071467824, - "delay_weight_entry": 12.783527392042384, - "ema_dist_close": -0.001174471722058444, - "ema_dist_entry": -0.0008280528023009111, - "ema_span_0": 905.0803044663683, - "ema_span_1": 1274.1281529111866, - "enabled": true, - "markup_range": 0.02939339511460445, - "min_markup": 0.006431641992599841, - "n_close_orders": 10, - "qty_pct_close": 0.036761321855843444, - "qty_pct_entry": 0.02461482313117535, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99284196964666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 460.5591024758043, - "delay_between_fills_minutes_entry": 313.8573420594556, - "delay_weight_close": 29.428693192415487, - "delay_weight_entry": 14.575576098175764, - "ema_dist_close": 0.002419780270044737, - "ema_dist_entry": 0.002950025840287133, - "ema_span_0": 648.6083234045662, - "ema_span_1": 1044.0823364870644, - "enabled": true, - "markup_range": 0.00025492089030924604, - "min_markup": 0.005564097913609937, - "n_close_orders": 9, - "qty_pct_close": 0.03188792662557526, - "qty_pct_entry": 0.020533460787277247, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.641977297807237}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/IOSTUSDT.json b/configs/live/single_symbol_optimizations/clock/IOSTUSDT.json deleted file mode 100644 index 8d9afae4c..000000000 --- a/configs/live/single_symbol_optimizations/clock/IOSTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 794.9677128822912, - "delay_between_fills_minutes_entry": 544.5366404219461, - "delay_weight_close": 0.18515578996131565, - "delay_weight_entry": 8.847290908872262, - "ema_dist_close": 0.0026585377101442614, - "ema_dist_entry": -0.00716347729674227, - "ema_span_0": 1005.1986313704755, - "ema_span_1": 1211.3624013771268, - "enabled": true, - "markup_range": 0.012265193390456144, - "min_markup": 0.008919571995125492, - "n_close_orders": 4, - "qty_pct_close": 0.020828941130818134, - "qty_pct_entry": 0.010000021053481946, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.975135688485736}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1296.1419739084013, - "delay_between_fills_minutes_entry": 147.02021689326304, - "delay_weight_close": 5.97148502628611, - "delay_weight_entry": 3.650032916171652, - "ema_dist_close": 0.000970137623367213, - "ema_dist_entry": -0.0020118711305088465, - "ema_span_0": 914.6314864360197, - "ema_span_1": 988.0233545150836, - "enabled": true, - "markup_range": 0.0004247384515813301, - "min_markup": 0.006149104388253391, - "n_close_orders": 9, - "qty_pct_close": 0.019408268413854183, - "qty_pct_entry": 0.01459981809009704, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.128695941373563}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/IOTAUSDT.json b/configs/live/single_symbol_optimizations/clock/IOTAUSDT.json deleted file mode 100644 index 3ab3a2627..000000000 --- a/configs/live/single_symbol_optimizations/clock/IOTAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1302.0553240831775, - "delay_between_fills_minutes_entry": 744.6283945538563, - "delay_weight_close": 48.30093076266343, - "delay_weight_entry": 7.47004907461783, - "ema_dist_close": 0.0029993243778576356, - "ema_dist_entry": -0.004605501118424108, - "ema_span_0": 1365.5962189821926, - "ema_span_1": 25.313532385768017, - "enabled": true, - "markup_range": 0.05966659044113894, - "min_markup": 0.008213752392521015, - "n_close_orders": 6, - "qty_pct_close": 0.02407958560010621, - "qty_pct_entry": 0.010007319142267164, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999999479131189}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1241.5531396673398, - "delay_between_fills_minutes_entry": 924.7665421320967, - "delay_weight_close": 76.84409374666565, - "delay_weight_entry": 5.082690639588664, - "ema_dist_close": 0.002965477638722856, - "ema_dist_entry": -0.00831357205741749, - "ema_span_0": 1188.005118327466, - "ema_span_1": 684.6816258458737, - "enabled": true, - "markup_range": 0.009273611487348286, - "min_markup": 0.003025526370742791, - "n_close_orders": 6, - "qty_pct_close": 0.010129662625364787, - "qty_pct_entry": 0.01583046026292428, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.679930277336049}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/IOTXUSDT.json b/configs/live/single_symbol_optimizations/clock/IOTXUSDT.json deleted file mode 100644 index d21bdaa22..000000000 --- a/configs/live/single_symbol_optimizations/clock/IOTXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.9675194232736, - "delay_between_fills_minutes_entry": 1007.1682620636734, - "delay_weight_close": 89.87252105323053, - "delay_weight_entry": 8.761528423864856, - "ema_dist_close": 0.0019744920924290137, - "ema_dist_entry": 0.001227027407331943, - "ema_span_0": 1236.3547451221145, - "ema_span_1": 910.3422794295219, - "enabled": true, - "markup_range": 0.008475686726893564, - "min_markup": 0.007695340096036006, - "n_close_orders": 3, - "qty_pct_close": 0.010665723673662307, - "qty_pct_entry": 0.014672410239745194, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.794050691780967}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/JASMYUSDT.json b/configs/live/single_symbol_optimizations/clock/JASMYUSDT.json deleted file mode 100644 index 20522e0ef..000000000 --- a/configs/live/single_symbol_optimizations/clock/JASMYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1409.2523689784412, - "delay_between_fills_minutes_entry": 592.3926124970354, - "delay_weight_close": 71.12671335399787, - "delay_weight_entry": 12.160621998382826, - "ema_dist_close": 0.0006770893834596368, - "ema_dist_entry": -0.00684337984136156, - "ema_span_0": 850.3837607809575, - "ema_span_1": 322.4578598589943, - "enabled": true, - "markup_range": 0.008824137597215726, - "min_markup": 0.0060133145036067375, - "n_close_orders": 13, - "qty_pct_close": 0.010212491158651759, - "qty_pct_entry": 0.011678700485474801, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.505994062962653}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/JOEUSDT.json b/configs/live/single_symbol_optimizations/clock/JOEUSDT.json deleted file mode 100644 index ae1533dbd..000000000 --- a/configs/live/single_symbol_optimizations/clock/JOEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.5360124862, - "delay_between_fills_minutes_entry": 859.1227070243172, - "delay_weight_close": 29.556555395771973, - "delay_weight_entry": 13.25201710002017, - "ema_dist_close": 0.001733117204678289, - "ema_dist_entry": 0.002232389049173993, - "ema_span_0": 982.6152333352189, - "ema_span_1": 789.3269555523823, - "enabled": true, - "markup_range": 0.0010562689965902708, - "min_markup": 0.008030938912674498, - "n_close_orders": 15, - "qty_pct_close": 0.012665893826731929, - "qty_pct_entry": 0.0127344177482051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.890426202318031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1410.1883668126077, - "delay_between_fills_minutes_entry": 715.2035803334743, - "delay_weight_close": 49.6662714461656, - "delay_weight_entry": 8.871380681433667, - "ema_dist_close": -0.002882270356222004, - "ema_dist_entry": -0.04349643255790327, - "ema_span_0": 1181.7009862367192, - "ema_span_1": 1118.7599119180738, - "enabled": true, - "markup_range": 0.03062568712726192, - "min_markup": 0.007198910650418894, - "n_close_orders": 4, - "qty_pct_close": 0.01005552873997189, - "qty_pct_entry": 0.010509015651677372, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.489761446197864}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/KAVAUSDT.json b/configs/live/single_symbol_optimizations/clock/KAVAUSDT.json deleted file mode 100644 index d7a6e0f9c..000000000 --- a/configs/live/single_symbol_optimizations/clock/KAVAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1379.5402911357278, - "delay_between_fills_minutes_entry": 705.2311636892108, - "delay_weight_close": 65.49854174609756, - "delay_weight_entry": 17.611898553308663, - "ema_dist_close": 0.002429996018635014, - "ema_dist_entry": 0.0013589226004891521, - "ema_span_0": 1319.7192743024323, - "ema_span_1": 1414.9932931638582, - "enabled": true, - "markup_range": 0.0028033086702613404, - "min_markup": 0.004860796242085709, - "n_close_orders": 11, - "qty_pct_close": 0.010008122508872121, - "qty_pct_entry": 0.01001059088391252, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.256456045876257}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.988118806758, - "delay_between_fills_minutes_entry": 317.0114095372921, - "delay_weight_close": 64.21435545867797, - "delay_weight_entry": 9.41060851968836, - "ema_dist_close": 0.0020302865280332426, - "ema_dist_entry": -0.005320416273806871, - "ema_span_0": 1001.1702346693172, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.004255931827100837, - "min_markup": 0.0045768707404305825, - "n_close_orders": 9, - "qty_pct_close": 0.0119074650277676, - "qty_pct_entry": 0.014054182208395603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.886623694505245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/KEYUSDT.json b/configs/live/single_symbol_optimizations/clock/KEYUSDT.json deleted file mode 100644 index 8af00bc77..000000000 --- a/configs/live/single_symbol_optimizations/clock/KEYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1401.0388472375867, - "delay_between_fills_minutes_entry": 1046.5429971057345, - "delay_weight_close": 46.123983741206544, - "delay_weight_entry": 10.748299168060415, - "ema_dist_close": -0.0042592740619516655, - "ema_dist_entry": -0.00691027510879591, - "ema_span_0": 835.7684013255501, - "ema_span_1": 999.78222208355, - "enabled": true, - "markup_range": 0.032161646455142, - "min_markup": 0.007879984221323478, - "n_close_orders": 14, - "qty_pct_close": 0.011448624166079665, - "qty_pct_entry": 0.01288872088361904, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.057021738291256}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/KLAYUSDT.json b/configs/live/single_symbol_optimizations/clock/KLAYUSDT.json deleted file mode 100644 index 26f21f7a8..000000000 --- a/configs/live/single_symbol_optimizations/clock/KLAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 833.1300275559712, - "delay_between_fills_minutes_entry": 1212.803527085094, - "delay_weight_close": 34.2600187729523, - "delay_weight_entry": 10.37922745763959, - "ema_dist_close": -0.009510778465579003, - "ema_dist_entry": 0.0015544752209250647, - "ema_span_0": 1369.194009433199, - "ema_span_1": 1344.924365633511, - "enabled": true, - "markup_range": 0.058935127007619666, - "min_markup": 0.009672368146548005, - "n_close_orders": 14, - "qty_pct_close": 0.010063953212069694, - "qty_pct_entry": 0.01096620969409276, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.792246221691608}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1323.8073930039345, - "delay_between_fills_minutes_entry": 183.3070460019667, - "delay_weight_close": 18.34911435798682, - "delay_weight_entry": 6.694348659919506, - "ema_dist_close": -0.0015196928075700466, - "ema_dist_entry": -0.0013779302410489745, - "ema_span_0": 917.6447116631633, - "ema_span_1": 1375.0551217604964, - "enabled": true, - "markup_range": 8.585396330318892e-06, - "min_markup": 0.007865167514619307, - "n_close_orders": 6, - "qty_pct_close": 0.011255231244372254, - "qty_pct_entry": 0.011434515642898923, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.850974984564138}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/KNCUSDT.json b/configs/live/single_symbol_optimizations/clock/KNCUSDT.json deleted file mode 100644 index 1fd5a5127..000000000 --- a/configs/live/single_symbol_optimizations/clock/KNCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1009.1977740778378, - "delay_between_fills_minutes_entry": 909.967718334142, - "delay_weight_close": 90.4996555877358, - "delay_weight_entry": 15.256177586301156, - "ema_dist_close": 0.0017054772290421116, - "ema_dist_entry": 0.002419259869883262, - "ema_span_0": 249.76804345090204, - "ema_span_1": 1340.698356145972, - "enabled": true, - "markup_range": 0.057106229854452066, - "min_markup": 0.009533024183349517, - "n_close_orders": 6, - "qty_pct_close": 0.015820073008262145, - "qty_pct_entry": 0.010128692522338976, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.752682195950484}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1210.5854819005217, - "delay_between_fills_minutes_entry": 1201.8652824589042, - "delay_weight_close": 31.08976269589001, - "delay_weight_entry": 13.128115257669641, - "ema_dist_close": 0.0011007867425663353, - "ema_dist_entry": 0.002899917470147996, - "ema_span_0": 680.9184979346117, - "ema_span_1": 1135.8101404085917, - "enabled": true, - "markup_range": 0.03690816222300829, - "min_markup": 0.004234609277555328, - "n_close_orders": 15, - "qty_pct_close": 0.03301262190452386, - "qty_pct_entry": 0.01442787548021332, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.9742782293134975}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/KSMUSDT.json b/configs/live/single_symbol_optimizations/clock/KSMUSDT.json deleted file mode 100644 index 3098395ac..000000000 --- a/configs/live/single_symbol_optimizations/clock/KSMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.5360124862, - "delay_between_fills_minutes_entry": 859.1227070243172, - "delay_weight_close": 29.556555395771973, - "delay_weight_entry": 13.25201710002017, - "ema_dist_close": 0.001733117204678289, - "ema_dist_entry": 0.002232389049173993, - "ema_span_0": 982.6152333352189, - "ema_span_1": 789.3269555523823, - "enabled": true, - "markup_range": 0.0010562689965902708, - "min_markup": 0.008030938912674498, - "n_close_orders": 15, - "qty_pct_close": 0.012665893826731929, - "qty_pct_entry": 0.0127344177482051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.890426202318031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.4439537906833, - "delay_between_fills_minutes_entry": 284.9948072242528, - "delay_weight_close": 85.83752226983684, - "delay_weight_entry": 11.644392476918501, - "ema_dist_close": 0.0014532398114953044, - "ema_dist_entry": -0.012907490908855493, - "ema_span_0": 1350.1084840401143, - "ema_span_1": 1245.3609442867687, - "enabled": true, - "markup_range": 0.004792893120458578, - "min_markup": 0.0038254230464410737, - "n_close_orders": 9, - "qty_pct_close": 0.01851960244535793, - "qty_pct_entry": 0.015076926731944766, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.729020699832065}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LDOUSDT.json b/configs/live/single_symbol_optimizations/clock/LDOUSDT.json deleted file mode 100644 index d4c08c1af..000000000 --- a/configs/live/single_symbol_optimizations/clock/LDOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 647.8222539313874, - "delay_between_fills_minutes_entry": 718.4498503578127, - "delay_weight_close": 74.8996951963156, - "delay_weight_entry": 27.86126728804292, - "ema_dist_close": 0.0028547711436244416, - "ema_dist_entry": 0.002971892879800595, - "ema_span_0": 647.8106028777783, - "ema_span_1": 1284.021151355735, - "enabled": true, - "markup_range": 7.551994800895838e-05, - "min_markup": 0.005894634008284491, - "n_close_orders": 8, - "qty_pct_close": 0.02789055159943267, - "qty_pct_entry": 0.023083524362018364, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.203394965078033}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LEVERUSDT.json b/configs/live/single_symbol_optimizations/clock/LEVERUSDT.json deleted file mode 100644 index 2cb49db2e..000000000 --- a/configs/live/single_symbol_optimizations/clock/LEVERUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1073.3204753488105, - "delay_between_fills_minutes_entry": 1302.9584111487866, - "delay_weight_close": 40.09374865761545, - "delay_weight_entry": 2.8545540516746795, - "ema_dist_close": 0.0020539728714032085, - "ema_dist_entry": 0.002997479332770153, - "ema_span_0": 772.5636643325025, - "ema_span_1": 1180.3310157865521, - "enabled": true, - "markup_range": 0.03791294679515116, - "min_markup": 0.008544402617761243, - "n_close_orders": 6, - "qty_pct_close": 0.010080776659859821, - "qty_pct_entry": 0.02040020550786626, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.252994944637564}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LINAUSDT.json b/configs/live/single_symbol_optimizations/clock/LINAUSDT.json deleted file mode 100644 index 4e653255d..000000000 --- a/configs/live/single_symbol_optimizations/clock/LINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 593.7839940862833, - "delay_between_fills_minutes_entry": 1349.6547115519363, - "delay_weight_close": 31.262585915509586, - "delay_weight_entry": 11.783630048138324, - "ema_dist_close": 0.0029586601407631413, - "ema_dist_entry": -0.0007703020436630937, - "ema_span_0": 1230.7466168345422, - "ema_span_1": 1380.275694355039, - "enabled": true, - "markup_range": 0.019753667261125103, - "min_markup": 0.004827276579657606, - "n_close_orders": 4, - "qty_pct_close": 0.010023263627875487, - "qty_pct_entry": 0.010680411439793808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.15153762541229}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1304.3899052982217, - "delay_between_fills_minutes_entry": 1392.3049132990773, - "delay_weight_close": 49.807760172513554, - "delay_weight_entry": 7.162508190579138, - "ema_dist_close": -0.004782524819944762, - "ema_dist_entry": -0.0028231485656754376, - "ema_span_0": 1305.2475254448404, - "ema_span_1": 390.5383382248257, - "enabled": true, - "markup_range": 0.03820330822561088, - "min_markup": 0.0066933545836667194, - "n_close_orders": 8, - "qty_pct_close": 0.01046416625246991, - "qty_pct_entry": 0.013816993276890857, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.26025673761001}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LINKUSDT.json b/configs/live/single_symbol_optimizations/clock/LINKUSDT.json deleted file mode 100644 index 08b8676ad..000000000 --- a/configs/live/single_symbol_optimizations/clock/LINKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1240.619948215464, - "delay_between_fills_minutes_entry": 1406.9355515864531, - "delay_weight_close": 39.21527068773809, - "delay_weight_entry": 25.462377929629536, - "ema_dist_close": -0.006258194975658179, - "ema_dist_entry": -0.0007965550060604941, - "ema_span_0": 961.4813030206554, - "ema_span_1": 595.2620996581525, - "enabled": true, - "markup_range": 0.00037638638314941696, - "min_markup": 0.003747616601162867, - "n_close_orders": 12, - "qty_pct_close": 0.010034298852995118, - "qty_pct_entry": 0.022535360635394373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.692521793590576}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LITUSDT.json b/configs/live/single_symbol_optimizations/clock/LITUSDT.json deleted file mode 100644 index 5a5c47d9f..000000000 --- a/configs/live/single_symbol_optimizations/clock/LITUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1002.5220682488126, - "delay_between_fills_minutes_entry": 753.7464152781814, - "delay_weight_close": 30.301237731473744, - "delay_weight_entry": 11.853087539919636, - "ema_dist_close": 0.0024396134129753256, - "ema_dist_entry": 0.0006415958761849742, - "ema_span_0": 1421.0820943291521, - "ema_span_1": 1331.186242472097, - "enabled": true, - "markup_range": 0.05974981897418855, - "min_markup": 0.00836075491961724, - "n_close_orders": 5, - "qty_pct_close": 0.035184754511334765, - "qty_pct_entry": 0.010000004512269314, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.233724680204666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LPTUSDT.json b/configs/live/single_symbol_optimizations/clock/LPTUSDT.json deleted file mode 100644 index 49d20f238..000000000 --- a/configs/live/single_symbol_optimizations/clock/LPTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1077.1807282484492, - "delay_between_fills_minutes_entry": 1232.7128505088735, - "delay_weight_close": 73.02572088977536, - "delay_weight_entry": 14.453691276160244, - "ema_dist_close": 0.0026294226803143914, - "ema_dist_entry": 0.0029811359697856695, - "ema_span_0": 1150.1390184501067, - "ema_span_1": 1374.864691153405, - "enabled": true, - "markup_range": 0.0585552665236782, - "min_markup": 0.008875991138911835, - "n_close_orders": 14, - "qty_pct_close": 0.013612979997873373, - "qty_pct_entry": 0.011835520328508337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.515438059683117}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LQTYUSDT.json b/configs/live/single_symbol_optimizations/clock/LQTYUSDT.json deleted file mode 100644 index a00efc98b..000000000 --- a/configs/live/single_symbol_optimizations/clock/LQTYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1240.619948215464, - "delay_between_fills_minutes_entry": 1406.9355515864531, - "delay_weight_close": 39.21527068773809, - "delay_weight_entry": 25.462377929629536, - "ema_dist_close": -0.006258194975658179, - "ema_dist_entry": -0.0007965550060604941, - "ema_span_0": 961.4813030206554, - "ema_span_1": 595.2620996581525, - "enabled": true, - "markup_range": 0.00037638638314941696, - "min_markup": 0.003747616601162867, - "n_close_orders": 12, - "qty_pct_close": 0.010034298852995118, - "qty_pct_entry": 0.022535360635394373, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.692521793590576}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.3428536393867, - "delay_between_fills_minutes_entry": 1185.9050347143673, - "delay_weight_close": 59.42795144932482, - "delay_weight_entry": 24.39288071676801, - "ema_dist_close": -0.001048290112673706, - "ema_dist_entry": -0.01216106391847627, - "ema_span_0": 437.5069705321616, - "ema_span_1": 813.7990832725427, - "enabled": true, - "markup_range": 0.011828867885331596, - "min_markup": 0.007890470482281736, - "n_close_orders": 5, - "qty_pct_close": 0.013491342742327966, - "qty_pct_entry": 0.017240666612956455, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.181828521736271}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LRCUSDT.json b/configs/live/single_symbol_optimizations/clock/LRCUSDT.json deleted file mode 100644 index af91ec48e..000000000 --- a/configs/live/single_symbol_optimizations/clock/LRCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.8339657258755, - "delay_between_fills_minutes_entry": 891.4788712105387, - "delay_weight_close": 5.4809425813516315, - "delay_weight_entry": 11.58920722892928, - "ema_dist_close": 0.0019639993868800177, - "ema_dist_entry": -0.0007257395086024544, - "ema_span_0": 1187.4204451756896, - "ema_span_1": 763.4232758378089, - "enabled": true, - "markup_range": 0.054783689970365215, - "min_markup": 0.008829482630767964, - "n_close_orders": 4, - "qty_pct_close": 0.046453895676820026, - "qty_pct_entry": 0.010006508807464292, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.201441326354832}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.111167038018, - "delay_between_fills_minutes_entry": 829.899307490801, - "delay_weight_close": 60.4335502424105, - "delay_weight_entry": 13.743453934991578, - "ema_dist_close": -0.0009512631874595318, - "ema_dist_entry": 0.0012970239907388545, - "ema_span_0": 477.4363440470011, - "ema_span_1": 854.14796144117, - "enabled": true, - "markup_range": 0.0016657374568103396, - "min_markup": 0.006257117654757969, - "n_close_orders": 5, - "qty_pct_close": 0.023507393838320723, - "qty_pct_entry": 0.01005730292473667, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.97727105060391}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LTCUSDT.json b/configs/live/single_symbol_optimizations/clock/LTCUSDT.json deleted file mode 100644 index d18a8b985..000000000 --- a/configs/live/single_symbol_optimizations/clock/LTCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 962.409178222383, - "delay_between_fills_minutes_entry": 1172.1376830193153, - "delay_weight_close": 53.40502168442531, - "delay_weight_entry": 11.969432812912661, - "ema_dist_close": 0.00031138704169496263, - "ema_dist_entry": -0.0006270140214384637, - "ema_span_0": 568.7011450827894, - "ema_span_1": 949.5337302663744, - "enabled": true, - "markup_range": 0.021297698497498223, - "min_markup": 0.00784453473598048, - "n_close_orders": 8, - "qty_pct_close": 0.01018370628522916, - "qty_pct_entry": 0.016029569751713095, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.932634426458602}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 641.9819212414824, - "delay_between_fills_minutes_entry": 1172.6385171146794, - "delay_weight_close": 21.807205185648012, - "delay_weight_entry": 17.944148727070388, - "ema_dist_close": -9.014996706754828e-05, - "ema_dist_entry": 0.0029064209160962113, - "ema_span_0": 1100.595256404529, - "ema_span_1": 1004.6989617949113, - "enabled": true, - "markup_range": 0.04212888621379307, - "min_markup": 0.009977804304003083, - "n_close_orders": 14, - "qty_pct_close": 0.018784939258070024, - "qty_pct_entry": 0.011238592623085223, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.520167026810461}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/LUNA2USDT.json b/configs/live/single_symbol_optimizations/clock/LUNA2USDT.json deleted file mode 100644 index 5b666f389..000000000 --- a/configs/live/single_symbol_optimizations/clock/LUNA2USDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 603.3267811783331, - "delay_between_fills_minutes_entry": 1351.055922217821, - "delay_weight_close": 26.216183994269414, - "delay_weight_entry": 18.202315132512688, - "ema_dist_close": -0.0006581961016549106, - "ema_dist_entry": 0.0001344705370392922, - "ema_span_0": 702.8531656796472, - "ema_span_1": 1334.111825532691, - "enabled": true, - "markup_range": 0.05994402685182565, - "min_markup": 0.007996451339242192, - "n_close_orders": 12, - "qty_pct_close": 0.03856397835994202, - "qty_pct_entry": 0.010100429823748501, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.925140520256441}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1020.1354708240111, - "delay_between_fills_minutes_entry": 782.9943558645925, - "delay_weight_close": 87.83223302288249, - "delay_weight_entry": 22.92669845378868, - "ema_dist_close": 0.002982470636322073, - "ema_dist_entry": 0.0025312584957361993, - "ema_span_0": 26.994223816162194, - "ema_span_1": 1059.3369427276514, - "enabled": true, - "markup_range": 0.03214757166893674, - "min_markup": 0.0077591689577204475, - "n_close_orders": 4, - "qty_pct_close": 0.020507435372544618, - "qty_pct_entry": 0.01653153063658084, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.3936272636061915}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MAGICUSDT.json b/configs/live/single_symbol_optimizations/clock/MAGICUSDT.json deleted file mode 100644 index e2340d09a..000000000 --- a/configs/live/single_symbol_optimizations/clock/MAGICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 962.409178222383, - "delay_between_fills_minutes_entry": 1172.1376830193153, - "delay_weight_close": 53.40502168442531, - "delay_weight_entry": 11.969432812912661, - "ema_dist_close": 0.00031138704169496263, - "ema_dist_entry": -0.0006270140214384637, - "ema_span_0": 568.7011450827894, - "ema_span_1": 949.5337302663744, - "enabled": true, - "markup_range": 0.021297698497498223, - "min_markup": 0.00784453473598048, - "n_close_orders": 8, - "qty_pct_close": 0.01018370628522916, - "qty_pct_entry": 0.016029569751713095, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.932634426458602}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.4141447709878, - "delay_between_fills_minutes_entry": 441.1073717945042, - "delay_weight_close": 40.71042994495278, - "delay_weight_entry": 13.888293268391225, - "ema_dist_close": 0.0012506077015050012, - "ema_dist_entry": -0.0009251862958045151, - "ema_span_0": 916.5966734173559, - "ema_span_1": 902.4689005607486, - "enabled": true, - "markup_range": 0.0011008246200862883, - "min_markup": 0.007593015282927445, - "n_close_orders": 3, - "qty_pct_close": 0.012107510661348176, - "qty_pct_entry": 0.010382178027008672, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99891960197657}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MANAUSDT.json b/configs/live/single_symbol_optimizations/clock/MANAUSDT.json deleted file mode 100644 index b368f1297..000000000 --- a/configs/live/single_symbol_optimizations/clock/MANAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1037.836089658439, - "delay_between_fills_minutes_entry": 807.9066251771726, - "delay_weight_close": 53.51399066237716, - "delay_weight_entry": 13.516096873399823, - "ema_dist_close": 0.002850591122230487, - "ema_dist_entry": 0.002145523190467474, - "ema_span_0": 1437.4514239247146, - "ema_span_1": 1179.7164890358806, - "enabled": true, - "markup_range": 0.03202813071907875, - "min_markup": 0.009132441557509424, - "n_close_orders": 5, - "qty_pct_close": 0.032228373404120596, - "qty_pct_entry": 0.010523847645499271, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.28892881203416}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.7445248262156, - "delay_between_fills_minutes_entry": 227.90525998215583, - "delay_weight_close": 78.62678747689974, - "delay_weight_entry": 33.25167826633527, - "ema_dist_close": 0.0015298325261995135, - "ema_dist_entry": -0.0036348490706013888, - "ema_span_0": 481.885751965521, - "ema_span_1": 122.4611974909468, - "enabled": true, - "markup_range": 0.0003335275328934153, - "min_markup": 0.004049109756675185, - "n_close_orders": 4, - "qty_pct_close": 0.013980327298291741, - "qty_pct_entry": 0.010010113944758045, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.478062397384196}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MASKUSDT.json b/configs/live/single_symbol_optimizations/clock/MASKUSDT.json deleted file mode 100644 index 998543158..000000000 --- a/configs/live/single_symbol_optimizations/clock/MASKUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1241.5531396673398, - "delay_between_fills_minutes_entry": 924.7665421320967, - "delay_weight_close": 76.84409374666565, - "delay_weight_entry": 5.082690639588664, - "ema_dist_close": 0.002965477638722856, - "ema_dist_entry": -0.00831357205741749, - "ema_span_0": 1188.005118327466, - "ema_span_1": 684.6816258458737, - "enabled": true, - "markup_range": 0.009273611487348286, - "min_markup": 0.003025526370742791, - "n_close_orders": 6, - "qty_pct_close": 0.010129662625364787, - "qty_pct_entry": 0.01583046026292428, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.679930277336049}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MATICUSDT.json b/configs/live/single_symbol_optimizations/clock/MATICUSDT.json deleted file mode 100644 index 465174363..000000000 --- a/configs/live/single_symbol_optimizations/clock/MATICUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1018.1326928268926, - "delay_between_fills_minutes_entry": 1209.2441405456718, - "delay_weight_close": 76.22429188948485, - "delay_weight_entry": 26.30335818604116, - "ema_dist_close": -0.003752793838310099, - "ema_dist_entry": 0.0016972391242632869, - "ema_span_0": 1112.679175136077, - "ema_span_1": 1155.3596235352968, - "enabled": true, - "markup_range": 0.00906994510461339, - "min_markup": 0.003763177210427331, - "n_close_orders": 5, - "qty_pct_close": 0.010001201873711948, - "qty_pct_entry": 0.011612013565130612, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.894977345286492}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.0242714648448, - "delay_between_fills_minutes_entry": 328.2305083427938, - "delay_weight_close": 38.92221993129098, - "delay_weight_entry": 12.24139049420294, - "ema_dist_close": -0.0008560612853727447, - "ema_dist_entry": -0.005497049380766986, - "ema_span_0": 384.44513774552, - "ema_span_1": 1256.9980699630817, - "enabled": true, - "markup_range": 0.0031737576042087778, - "min_markup": 0.003671761954620994, - "n_close_orders": 11, - "qty_pct_close": 0.011128236162992335, - "qty_pct_entry": 0.013734107201188051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99114774620646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MAVUSDT.json b/configs/live/single_symbol_optimizations/clock/MAVUSDT.json deleted file mode 100644 index b827eed72..000000000 --- a/configs/live/single_symbol_optimizations/clock/MAVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1203.4611181572768, - "delay_between_fills_minutes_entry": 1265.794247342226, - "delay_weight_close": 57.83783859617172, - "delay_weight_entry": 12.499722800741255, - "ema_dist_close": -0.0005024491267574696, - "ema_dist_entry": -0.027340186975463802, - "ema_span_0": 452.468690047275, - "ema_span_1": 1198.7397140746277, - "enabled": true, - "markup_range": 0.043056168258799585, - "min_markup": 0.009938065969980503, - "n_close_orders": 11, - "qty_pct_close": 0.010048868385421263, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.823099979339839}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MDTUSDT.json b/configs/live/single_symbol_optimizations/clock/MDTUSDT.json deleted file mode 100644 index 1ab1fb219..000000000 --- a/configs/live/single_symbol_optimizations/clock/MDTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1071.7321448776502, - "delay_between_fills_minutes_entry": 608.4339463035063, - "delay_weight_close": 47.700175722135015, - "delay_weight_entry": 7.570410307946368, - "ema_dist_close": -0.0032534951737690663, - "ema_dist_entry": -0.015400883777569794, - "ema_span_0": 901.2066666132317, - "ema_span_1": 1295.1303089278313, - "enabled": true, - "markup_range": 0.04596908396510209, - "min_markup": 0.008067229828822261, - "n_close_orders": 5, - "qty_pct_close": 0.011542071704623675, - "qty_pct_entry": 0.01410069807249177, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.958301334593878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MINAUSDT.json b/configs/live/single_symbol_optimizations/clock/MINAUSDT.json deleted file mode 100644 index aaf4e3e17..000000000 --- a/configs/live/single_symbol_optimizations/clock/MINAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.8750005823726, - "delay_between_fills_minutes_entry": 933.0747102807682, - "delay_weight_close": 59.31298431253631, - "delay_weight_entry": 27.35368231497901, - "ema_dist_close": -0.0010273524468826557, - "ema_dist_entry": -0.0002409218479536592, - "ema_span_0": 17.169308700991014, - "ema_span_1": 828.8804772625111, - "enabled": true, - "markup_range": 0.0025172044764906073, - "min_markup": 0.007396176653168389, - "n_close_orders": 16, - "qty_pct_close": 0.010621157486843023, - "qty_pct_entry": 0.01742535821106157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.357276278752911}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1111.8577317403558, - "delay_between_fills_minutes_entry": 446.5246509317262, - "delay_weight_close": 82.74031097917285, - "delay_weight_entry": 31.358100512063892, - "ema_dist_close": -0.00024230184912420064, - "ema_dist_entry": 0.0017844147362385619, - "ema_span_0": 1438.8545701011808, - "ema_span_1": 914.5555442257083, - "enabled": true, - "markup_range": 7.249282113820378e-05, - "min_markup": 0.009460799542397083, - "n_close_orders": 5, - "qty_pct_close": 0.019460174032906046, - "qty_pct_entry": 0.019069801890396143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.921549839813937}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MKRUSDT.json b/configs/live/single_symbol_optimizations/clock/MKRUSDT.json deleted file mode 100644 index 26a3953a1..000000000 --- a/configs/live/single_symbol_optimizations/clock/MKRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 853.4756680075038, - "delay_between_fills_minutes_entry": 363.82500611441225, - "delay_weight_close": 94.5951146520179, - "delay_weight_entry": 24.325264328955065, - "ema_dist_close": -0.0010880396686602934, - "ema_dist_entry": 0.0028425839377123055, - "ema_span_0": 1001.6218619505116, - "ema_span_1": 729.5370897971022, - "enabled": true, - "markup_range": 4.886668298595115e-11, - "min_markup": 0.004984786784268092, - "n_close_orders": 13, - "qty_pct_close": 0.04930744247869185, - "qty_pct_entry": 0.02434332684967244, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.641317309338868}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1364.2587732218208, - "delay_between_fills_minutes_entry": 425.84037015267313, - "delay_weight_close": 6.3775015565461795, - "delay_weight_entry": 7.188384360444416, - "ema_dist_close": 0.0004912029105375679, - "ema_dist_entry": -0.0028814858912651446, - "ema_span_0": 1298.8192103417834, - "ema_span_1": 690.4848588072921, - "enabled": true, - "markup_range": 0.005609324244712735, - "min_markup": 0.006610630726702749, - "n_close_orders": 6, - "qty_pct_close": 0.011262475636718951, - "qty_pct_entry": 0.011465358373293532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.362093152965102}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/MTLUSDT.json b/configs/live/single_symbol_optimizations/clock/MTLUSDT.json deleted file mode 100644 index 466f55a6f..000000000 --- a/configs/live/single_symbol_optimizations/clock/MTLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1227.7995308089592, - "delay_between_fills_minutes_entry": 1068.5930950999073, - "delay_weight_close": 76.73912133547697, - "delay_weight_entry": 9.480197763450395, - "ema_dist_close": -0.00041694208248724924, - "ema_dist_entry": -0.002304322571779274, - "ema_span_0": 1100.419610237486, - "ema_span_1": 544.0615071003361, - "enabled": true, - "markup_range": 0.0176791624976898, - "min_markup": 0.005460683083261101, - "n_close_orders": 5, - "qty_pct_close": 0.011975770785258287, - "qty_pct_entry": 0.020042093949155005, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.219164099825345}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1411.1968411072783, - "delay_between_fills_minutes_entry": 1174.9580129356102, - "delay_weight_close": 27.615393391724123, - "delay_weight_entry": 6.803022024280431, - "ema_dist_close": -0.0014828244022903649, - "ema_dist_entry": -0.005648810861896309, - "ema_span_0": 626.126866947274, - "ema_span_1": 842.2993110771496, - "enabled": true, - "markup_range": 0.032319249004179845, - "min_markup": 0.009587715496984084, - "n_close_orders": 6, - "qty_pct_close": 0.010086907414758386, - "qty_pct_entry": 0.01078816215728284, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.87643160171025}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/NEARUSDT.json b/configs/live/single_symbol_optimizations/clock/NEARUSDT.json deleted file mode 100644 index 18b74abc0..000000000 --- a/configs/live/single_symbol_optimizations/clock/NEARUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1409.768208407833, - "delay_between_fills_minutes_entry": 1015.3705586685882, - "delay_weight_close": 36.319118519027676, - "delay_weight_entry": 14.60198490498238, - "ema_dist_close": 0.0029395529965181703, - "ema_dist_entry": 0.0015513558518733127, - "ema_span_0": 1099.0424062207, - "ema_span_1": 852.6180188875159, - "enabled": true, - "markup_range": 0.0076994774976876885, - "min_markup": 0.009474830070044755, - "n_close_orders": 8, - "qty_pct_close": 0.011587275112986893, - "qty_pct_entry": 0.011566188555475008, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.696228909889838}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1142.645363057264, - "delay_between_fills_minutes_entry": 1399.5541102498773, - "delay_weight_close": 44.90527102019327, - "delay_weight_entry": 14.268146833277532, - "ema_dist_close": 0.002931339823923542, - "ema_dist_entry": -0.007921003781265165, - "ema_span_0": 1396.5103968705203, - "ema_span_1": 275.12457142530025, - "enabled": true, - "markup_range": 0.005443408402998408, - "min_markup": 0.009068417646324588, - "n_close_orders": 7, - "qty_pct_close": 0.022632777700431705, - "qty_pct_entry": 0.017759125934843523, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.779990984391535}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/NEOUSDT.json b/configs/live/single_symbol_optimizations/clock/NEOUSDT.json deleted file mode 100644 index 6e0b24496..000000000 --- a/configs/live/single_symbol_optimizations/clock/NEOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1430.8328838880266, - "delay_between_fills_minutes_entry": 568.900308891042, - "delay_weight_close": 75.10880632547341, - "delay_weight_entry": 12.984572220378992, - "ema_dist_close": 0.0029502650992093388, - "ema_dist_entry": -0.000593120783969449, - "ema_span_0": 1162.8601593295332, - "ema_span_1": 1382.7324818780382, - "enabled": true, - "markup_range": 0.035913430020931524, - "min_markup": 0.009839201916333041, - "n_close_orders": 14, - "qty_pct_close": 0.0269141471590569, - "qty_pct_entry": 0.01015102661932223, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.074656308268904}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 871.0076644722373, - "delay_between_fills_minutes_entry": 966.5104024105381, - "delay_weight_close": 23.622080365167058, - "delay_weight_entry": 27.12654429442176, - "ema_dist_close": -0.002309627899683788, - "ema_dist_entry": -0.00011334500836491201, - "ema_span_0": 640.8885394037771, - "ema_span_1": 1405.8237926382726, - "enabled": true, - "markup_range": 0.01826436231216122, - "min_markup": 0.006772079535549647, - "n_close_orders": 8, - "qty_pct_close": 0.03499318124348151, - "qty_pct_entry": 0.01216979353232123, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.985962569174529}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/NKNUSDT.json b/configs/live/single_symbol_optimizations/clock/NKNUSDT.json deleted file mode 100644 index 69ae56a48..000000000 --- a/configs/live/single_symbol_optimizations/clock/NKNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 913.5070119905605, - "delay_between_fills_minutes_entry": 572.0967952802034, - "delay_weight_close": 72.25048035614671, - "delay_weight_entry": 5.8452862726548656, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.008821592964316104, - "ema_span_0": 1061.7117244066478, - "ema_span_1": 926.1535412288271, - "enabled": true, - "markup_range": 0.006653493176864328, - "min_markup": 0.0038257668668339804, - "n_close_orders": 5, - "qty_pct_close": 0.020795698612646792, - "qty_pct_entry": 0.02831515252280558, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.187414843952739}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/NMRUSDT.json b/configs/live/single_symbol_optimizations/clock/NMRUSDT.json deleted file mode 100644 index 41be1f919..000000000 --- a/configs/live/single_symbol_optimizations/clock/NMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/OCEANUSDT.json b/configs/live/single_symbol_optimizations/clock/OCEANUSDT.json deleted file mode 100644 index ed7ec9f7d..000000000 --- a/configs/live/single_symbol_optimizations/clock/OCEANUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 774.1749994763805, - "delay_between_fills_minutes_entry": 417.10841008932033, - "delay_weight_close": 98.3006781681464, - "delay_weight_entry": 13.875164322812196, - "ema_dist_close": 0.0004161606343772757, - "ema_dist_entry": -0.012285586951885853, - "ema_span_0": 1257.1972969611616, - "ema_span_1": 185.4758736354263, - "enabled": true, - "markup_range": 0.032757699175851945, - "min_markup": 0.003851274926855553, - "n_close_orders": 11, - "qty_pct_close": 0.01829234698898702, - "qty_pct_entry": 0.010006129333077879, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.997756395445421}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.8772469560158, - "delay_between_fills_minutes_entry": 141.20412942956406, - "delay_weight_close": 41.169205595560385, - "delay_weight_entry": 11.197336527950059, - "ema_dist_close": -0.003821852967934773, - "ema_dist_entry": -0.010510345648237223, - "ema_span_0": 1245.7272536609853, - "ema_span_1": 922.8126890290862, - "enabled": true, - "markup_range": 0.0004928115612244999, - "min_markup": 0.0048392010600468785, - "n_close_orders": 11, - "qty_pct_close": 0.014222089344028, - "qty_pct_entry": 0.019508207449639766, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.259614666541513}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/OGNUSDT.json b/configs/live/single_symbol_optimizations/clock/OGNUSDT.json deleted file mode 100644 index 5842d34a0..000000000 --- a/configs/live/single_symbol_optimizations/clock/OGNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1144.8339657258755, - "delay_between_fills_minutes_entry": 891.4788712105387, - "delay_weight_close": 5.4809425813516315, - "delay_weight_entry": 11.58920722892928, - "ema_dist_close": 0.0019639993868800177, - "ema_dist_entry": -0.0007257395086024544, - "ema_span_0": 1187.4204451756896, - "ema_span_1": 763.4232758378089, - "enabled": true, - "markup_range": 0.054783689970365215, - "min_markup": 0.008829482630767964, - "n_close_orders": 4, - "qty_pct_close": 0.046453895676820026, - "qty_pct_entry": 0.010006508807464292, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.201441326354832}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1182.7573638896351, - "delay_between_fills_minutes_entry": 362.3313538303902, - "delay_weight_close": 21.23308296215357, - "delay_weight_entry": 5.477689454769026, - "ema_dist_close": 0.0011526715229510792, - "ema_dist_entry": -0.0008373151339031716, - "ema_span_0": 396.5447869133196, - "ema_span_1": 574.9036700815492, - "enabled": true, - "markup_range": 0.0002783986561550665, - "min_markup": 0.0063869285445374725, - "n_close_orders": 4, - "qty_pct_close": 0.010286170485719684, - "qty_pct_entry": 0.01055798481390355, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.965974351733472}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/OMGUSDT.json b/configs/live/single_symbol_optimizations/clock/OMGUSDT.json deleted file mode 100644 index c1ab9bb48..000000000 --- a/configs/live/single_symbol_optimizations/clock/OMGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1384.1091225426126, - "delay_between_fills_minutes_entry": 611.6254569509724, - "delay_weight_close": 5.758883400106157, - "delay_weight_entry": 23.44268989485146, - "ema_dist_close": 0.0029996327286531494, - "ema_dist_entry": -0.0068984518075020035, - "ema_span_0": 1329.4864579288776, - "ema_span_1": 585.4828680357193, - "enabled": true, - "markup_range": 0.0008622381146811774, - "min_markup": 0.007118942523005943, - "n_close_orders": 3, - "qty_pct_close": 0.03367200615364038, - "qty_pct_entry": 0.012888464025018646, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.677478366506111}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 651.4169496594105, - "delay_between_fills_minutes_entry": 114.03862314682469, - "delay_weight_close": 45.162420375719186, - "delay_weight_entry": 16.194811111382208, - "ema_dist_close": 0.001469410278343695, - "ema_dist_entry": -0.00030275227134301814, - "ema_span_0": 294.4448675643771, - "ema_span_1": 210.41861110021503, - "enabled": true, - "markup_range": 0.0016015869684358171, - "min_markup": 0.006724749754376175, - "n_close_orders": 2, - "qty_pct_close": 0.012707208624374853, - "qty_pct_entry": 0.010001809165311236, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.493889468278645}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ONEUSDT.json b/configs/live/single_symbol_optimizations/clock/ONEUSDT.json deleted file mode 100644 index 0f510f26f..000000000 --- a/configs/live/single_symbol_optimizations/clock/ONEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1107.4710337669503, - "delay_between_fills_minutes_entry": 825.3839968138504, - "delay_weight_close": 67.9701611480623, - "delay_weight_entry": 12.49526594390872, - "ema_dist_close": -0.0021178858109151314, - "ema_dist_entry": 0.0022021111003530723, - "ema_span_0": 1235.0830428493039, - "ema_span_1": 1198.9408034555945, - "enabled": true, - "markup_range": 0.056226370825320615, - "min_markup": 0.0060538760772622996, - "n_close_orders": 2, - "qty_pct_close": 0.014385109210252368, - "qty_pct_entry": 0.010087930789726559, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.046985925428747}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.0242714648448, - "delay_between_fills_minutes_entry": 328.2305083427938, - "delay_weight_close": 38.92221993129098, - "delay_weight_entry": 12.24139049420294, - "ema_dist_close": -0.0008560612853727447, - "ema_dist_entry": -0.005497049380766986, - "ema_span_0": 384.44513774552, - "ema_span_1": 1256.9980699630817, - "enabled": true, - "markup_range": 0.0031737576042087778, - "min_markup": 0.003671761954620994, - "n_close_orders": 11, - "qty_pct_close": 0.011128236162992335, - "qty_pct_entry": 0.013734107201188051, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99114774620646}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ONTUSDT.json b/configs/live/single_symbol_optimizations/clock/ONTUSDT.json deleted file mode 100644 index d35e499b3..000000000 --- a/configs/live/single_symbol_optimizations/clock/ONTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.9173644454004, - "delay_between_fills_minutes_entry": 1419.8246387852046, - "delay_weight_close": 48.012293572630455, - "delay_weight_entry": 15.183351382612488, - "ema_dist_close": 0.0015012186349785742, - "ema_dist_entry": 0.0014541136121861997, - "ema_span_0": 389.51920707173974, - "ema_span_1": 897.3213415855408, - "enabled": true, - "markup_range": 0.05333828949180657, - "min_markup": 0.007511389686758822, - "n_close_orders": 16, - "qty_pct_close": 0.01018937358950912, - "qty_pct_entry": 0.010050152566720193, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.255688645124718}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 885.4990958624089, - "delay_between_fills_minutes_entry": 828.6580183585879, - "delay_weight_close": 88.98288979706892, - "delay_weight_entry": 22.267129707838787, - "ema_dist_close": 0.002266588450384522, - "ema_dist_entry": -0.009709243442689435, - "ema_span_0": 1236.730426399713, - "ema_span_1": 767.1031813611141, - "enabled": true, - "markup_range": 0.015226109907477529, - "min_markup": 0.00679435246256114, - "n_close_orders": 5, - "qty_pct_close": 0.030487100012519728, - "qty_pct_entry": 0.014204103824928826, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.882166003822793}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/OPUSDT.json b/configs/live/single_symbol_optimizations/clock/OPUSDT.json deleted file mode 100644 index a843939ae..000000000 --- a/configs/live/single_symbol_optimizations/clock/OPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.8471219862013, - "delay_between_fills_minutes_entry": 1439.5546497907865, - "delay_weight_close": 57.88964637046297, - "delay_weight_entry": 13.090442704461383, - "ema_dist_close": 0.002996520452507227, - "ema_dist_entry": -0.0033451476752006455, - "ema_span_0": 367.80671025597053, - "ema_span_1": 1350.9596433183763, - "enabled": true, - "markup_range": 0.058798133871946545, - "min_markup": 0.0070946380295461185, - "n_close_orders": 12, - "qty_pct_close": 0.011131520461024794, - "qty_pct_entry": 0.012949698111735146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.246610551859352}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 915.111167038018, - "delay_between_fills_minutes_entry": 829.899307490801, - "delay_weight_close": 60.4335502424105, - "delay_weight_entry": 13.743453934991578, - "ema_dist_close": -0.0009512631874595318, - "ema_dist_entry": 0.0012970239907388545, - "ema_span_0": 477.4363440470011, - "ema_span_1": 854.14796144117, - "enabled": true, - "markup_range": 0.0016657374568103396, - "min_markup": 0.006257117654757969, - "n_close_orders": 5, - "qty_pct_close": 0.023507393838320723, - "qty_pct_entry": 0.01005730292473667, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.97727105060391}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/clock/PENDLEUSDT.json deleted file mode 100644 index a9ee03188..000000000 --- a/configs/live/single_symbol_optimizations/clock/PENDLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1248.1789885059768, - "delay_between_fills_minutes_entry": 227.99268514064005, - "delay_weight_close": 78.75473228984815, - "delay_weight_entry": 6.216960673508106, - "ema_dist_close": 0.0026028078903315615, - "ema_dist_entry": 0.003, - "ema_span_0": 784.5152476941988, - "ema_span_1": 1205.366418561911, - "enabled": true, - "markup_range": 0.05917662143888649, - "min_markup": 0.009918070200054691, - "n_close_orders": 7, - "qty_pct_close": 0.03103642627381348, - "qty_pct_entry": 0.010006216470470716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.58215952037477}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/clock/PEOPLEUSDT.json deleted file mode 100644 index b5ea746c7..000000000 --- a/configs/live/single_symbol_optimizations/clock/PEOPLEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 823.925380691432, - "delay_between_fills_minutes_entry": 552.1101561076499, - "delay_weight_close": 80.76346040980073, - "delay_weight_entry": 5.923744767045681, - "ema_dist_close": 0.0026632234530420723, - "ema_dist_entry": -0.005803973299114309, - "ema_span_0": 943.0370411200279, - "ema_span_1": 1422.5397241747166, - "enabled": true, - "markup_range": 0.0038455296273103945, - "min_markup": 0.004971921043439715, - "n_close_orders": 16, - "qty_pct_close": 0.01979557808628567, - "qty_pct_entry": 0.010060880479196744, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.693793947683548}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/PERPUSDT.json b/configs/live/single_symbol_optimizations/clock/PERPUSDT.json deleted file mode 100644 index c4341682b..000000000 --- a/configs/live/single_symbol_optimizations/clock/PERPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 945.6295755258033, - "delay_between_fills_minutes_entry": 1129.3036024850337, - "delay_weight_close": 49.428798145227546, - "delay_weight_entry": 23.244316646980483, - "ema_dist_close": 0.001639520327615728, - "ema_dist_entry": -0.0014840288276448815, - "ema_span_0": 1436.8600255462013, - "ema_span_1": 513.6808484133488, - "enabled": true, - "markup_range": 0.0003920027644607531, - "min_markup": 0.004511865898676224, - "n_close_orders": 14, - "qty_pct_close": 0.018725398018618583, - "qty_pct_entry": 0.023096401118212994, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.778662774848787}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/PHBUSDT.json b/configs/live/single_symbol_optimizations/clock/PHBUSDT.json deleted file mode 100644 index 4fa8063da..000000000 --- a/configs/live/single_symbol_optimizations/clock/PHBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1420.8867184126132, - "delay_between_fills_minutes_entry": 348.4775882371876, - "delay_weight_close": 34.26780489531375, - "delay_weight_entry": 6.12179835338315, - "ema_dist_close": -0.003518708695838589, - "ema_dist_entry": 9.85811893947007e-05, - "ema_span_0": 918.3771896672507, - "ema_span_1": 1268.8383938621732, - "enabled": true, - "markup_range": 0.002382625042911236, - "min_markup": 0.006565824132155998, - "n_close_orders": 10, - "qty_pct_close": 0.010034267734219015, - "qty_pct_entry": 0.024684657229858548, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.525920190275968}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/QNTUSDT.json b/configs/live/single_symbol_optimizations/clock/QNTUSDT.json deleted file mode 100644 index b01b8815b..000000000 --- a/configs/live/single_symbol_optimizations/clock/QNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.1904529114277, - "delay_between_fills_minutes_entry": 948.3513811188083, - "delay_weight_close": 56.13407444686111, - "delay_weight_entry": 10.807476449083884, - "ema_dist_close": -0.0006766010557382271, - "ema_dist_entry": 0.0015278141413719523, - "ema_span_0": 1148.7742187263384, - "ema_span_1": 1196.1061278731943, - "enabled": true, - "markup_range": 0.05059262384485033, - "min_markup": 0.007499739719254243, - "n_close_orders": 11, - "qty_pct_close": 0.01001026923951864, - "qty_pct_entry": 0.010467521768919784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.948752455445286}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/QTUMUSDT.json b/configs/live/single_symbol_optimizations/clock/QTUMUSDT.json deleted file mode 100644 index 7706a09a7..000000000 --- a/configs/live/single_symbol_optimizations/clock/QTUMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1037.836089658439, - "delay_between_fills_minutes_entry": 807.9066251771726, - "delay_weight_close": 53.51399066237716, - "delay_weight_entry": 13.516096873399823, - "ema_dist_close": 0.002850591122230487, - "ema_dist_entry": 0.002145523190467474, - "ema_span_0": 1437.4514239247146, - "ema_span_1": 1179.7164890358806, - "enabled": true, - "markup_range": 0.03202813071907875, - "min_markup": 0.009132441557509424, - "n_close_orders": 5, - "qty_pct_close": 0.032228373404120596, - "qty_pct_entry": 0.010523847645499271, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.28892881203416}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 517.1403528157814, - "delay_between_fills_minutes_entry": 1111.0124932935207, - "delay_weight_close": 9.394062387802434, - "delay_weight_entry": 27.338250754772233, - "ema_dist_close": 0.002237558799644698, - "ema_dist_entry": 0.002315918170835833, - "ema_span_0": 1412.1496078844782, - "ema_span_1": 480.6309940753328, - "enabled": true, - "markup_range": 0.0021463559700849733, - "min_markup": 0.0017918587928544576, - "n_close_orders": 11, - "qty_pct_close": 0.031221262506754884, - "qty_pct_entry": 0.015624881656753345, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.859738804842135}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RADUSDT.json b/configs/live/single_symbol_optimizations/clock/RADUSDT.json deleted file mode 100644 index 97578db7a..000000000 --- a/configs/live/single_symbol_optimizations/clock/RADUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 417.10032999409367, - "delay_between_fills_minutes_entry": 483.89554164990125, - "delay_weight_close": 30.386021284189134, - "delay_weight_entry": 11.45213513909002, - "ema_dist_close": 0.002359618163183817, - "ema_dist_entry": -0.005401969069027971, - "ema_span_0": 1358.040501374106, - "ema_span_1": 698.1122943720719, - "enabled": true, - "markup_range": 0.02438499264430349, - "min_markup": 0.002477898691579286, - "n_close_orders": 10, - "qty_pct_close": 0.014976947166622385, - "qty_pct_entry": 0.01956247676084041, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.119483512668944}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RAYUSDT.json b/configs/live/single_symbol_optimizations/clock/RAYUSDT.json deleted file mode 100644 index 22e91e6a4..000000000 --- a/configs/live/single_symbol_optimizations/clock/RAYUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1294.5591713988508, - "delay_between_fills_minutes_entry": 1222.387567984932, - "delay_weight_close": 59.45358227933449, - "delay_weight_entry": 10.558181151699905, - "ema_dist_close": -0.0008640894989598183, - "ema_dist_entry": 0.0006870016090268654, - "ema_span_0": 913.497230257846, - "ema_span_1": 1436.215122325884, - "enabled": true, - "markup_range": 0.059578361950649174, - "min_markup": 0.009643362227367292, - "n_close_orders": 9, - "qty_pct_close": 0.01689913460888909, - "qty_pct_entry": 0.010080542810707492, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.995938157759916}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1132.504506727316, - "delay_between_fills_minutes_entry": 271.2949888174522, - "delay_weight_close": 46.62959202464396, - "delay_weight_entry": 21.225264319072384, - "ema_dist_close": 0.0029502727657052244, - "ema_dist_entry": -0.0011764144447320743, - "ema_span_0": 1200.2056828957004, - "ema_span_1": 952.5980600630442, - "enabled": true, - "markup_range": 0.0007213701100334605, - "min_markup": 0.0021660492907288674, - "n_close_orders": 9, - "qty_pct_close": 0.012804451594978223, - "qty_pct_entry": 0.011532829970650848, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.829187823095918}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RDNTUSDT.json b/configs/live/single_symbol_optimizations/clock/RDNTUSDT.json deleted file mode 100644 index 41be1f919..000000000 --- a/configs/live/single_symbol_optimizations/clock/RDNTUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1056.015809849692, - "delay_between_fills_minutes_entry": 795.7910862190191, - "delay_weight_close": 28.913973633188522, - "delay_weight_entry": 18.65724151119194, - "ema_dist_close": -0.0027743756697119256, - "ema_dist_entry": -0.00979327688843155, - "ema_span_0": 1244.3558213024007, - "ema_span_1": 1361.5009213893104, - "enabled": true, - "markup_range": 0.019092177885071848, - "min_markup": 0.006821285346157692, - "n_close_orders": 13, - "qty_pct_close": 0.014374584622706061, - "qty_pct_entry": 0.013636436987004629, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.606071153342283}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/REEFUSDT.json b/configs/live/single_symbol_optimizations/clock/REEFUSDT.json deleted file mode 100644 index f682f1ae0..000000000 --- a/configs/live/single_symbol_optimizations/clock/REEFUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.9064026488463, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 58.79959585708705, - "delay_weight_entry": 10.959076388436209, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.02772778938036382, - "ema_span_0": 1138.739721733395, - "ema_span_1": 5.0062918268054695, - "enabled": true, - "markup_range": 0.051451689323101686, - "min_markup": 0.008293567493695307, - "n_close_orders": 12, - "qty_pct_close": 0.017450501048647354, - "qty_pct_entry": 0.01101553339681686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.934438426010102}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1020.1354708240111, - "delay_between_fills_minutes_entry": 782.9943558645925, - "delay_weight_close": 87.83223302288249, - "delay_weight_entry": 22.92669845378868, - "ema_dist_close": 0.002982470636322073, - "ema_dist_entry": 0.0025312584957361993, - "ema_span_0": 26.994223816162194, - "ema_span_1": 1059.3369427276514, - "enabled": true, - "markup_range": 0.03214757166893674, - "min_markup": 0.0077591689577204475, - "n_close_orders": 4, - "qty_pct_close": 0.020507435372544618, - "qty_pct_entry": 0.01653153063658084, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.3936272636061915}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RENUSDT.json b/configs/live/single_symbol_optimizations/clock/RENUSDT.json deleted file mode 100644 index 7446c82f0..000000000 --- a/configs/live/single_symbol_optimizations/clock/RENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1143.1904529114277, - "delay_between_fills_minutes_entry": 948.3513811188083, - "delay_weight_close": 56.13407444686111, - "delay_weight_entry": 10.807476449083884, - "ema_dist_close": -0.0006766010557382271, - "ema_dist_entry": 0.0015278141413719523, - "ema_span_0": 1148.7742187263384, - "ema_span_1": 1196.1061278731943, - "enabled": true, - "markup_range": 0.05059262384485033, - "min_markup": 0.007499739719254243, - "n_close_orders": 11, - "qty_pct_close": 0.01001026923951864, - "qty_pct_entry": 0.010467521768919784, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.948752455445286}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1071.7321448776502, - "delay_between_fills_minutes_entry": 608.4339463035063, - "delay_weight_close": 47.700175722135015, - "delay_weight_entry": 7.570410307946368, - "ema_dist_close": -0.0032534951737690663, - "ema_dist_entry": -0.015400883777569794, - "ema_span_0": 901.2066666132317, - "ema_span_1": 1295.1303089278313, - "enabled": true, - "markup_range": 0.04596908396510209, - "min_markup": 0.008067229828822261, - "n_close_orders": 5, - "qty_pct_close": 0.011542071704623675, - "qty_pct_entry": 0.01410069807249177, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.958301334593878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RLCUSDT.json b/configs/live/single_symbol_optimizations/clock/RLCUSDT.json deleted file mode 100644 index c256328d1..000000000 --- a/configs/live/single_symbol_optimizations/clock/RLCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1019.7356204361605, - "delay_between_fills_minutes_entry": 915.8961688967711, - "delay_weight_close": 93.79482822561037, - "delay_weight_entry": 8.490162495739465, - "ema_dist_close": -0.00369985403855864, - "ema_dist_entry": 0.002494394037840404, - "ema_span_0": 527.5546042342173, - "ema_span_1": 886.388242864027, - "enabled": true, - "markup_range": 0.05999753170181225, - "min_markup": 0.00984014998857967, - "n_close_orders": 8, - "qty_pct_close": 0.011852183169987441, - "qty_pct_entry": 0.01581380034546556, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.315715453538093}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RNDRUSDT.json b/configs/live/single_symbol_optimizations/clock/RNDRUSDT.json deleted file mode 100644 index b258d7ade..000000000 --- a/configs/live/single_symbol_optimizations/clock/RNDRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1396.7178502765457, - "delay_between_fills_minutes_entry": 574.3537408896536, - "delay_weight_close": 79.80491949338992, - "delay_weight_entry": 11.562035417347104, - "ema_dist_close": -8.152786006796259e-05, - "ema_dist_entry": -0.006999278647231068, - "ema_span_0": 1391.1389085569626, - "ema_span_1": 915.519171904557, - "enabled": true, - "markup_range": 0.0018840191727093577, - "min_markup": 0.004188852247657481, - "n_close_orders": 3, - "qty_pct_close": 0.018508670460081623, - "qty_pct_entry": 0.010483362142496691, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.630049911945353}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ROSEUSDT.json b/configs/live/single_symbol_optimizations/clock/ROSEUSDT.json deleted file mode 100644 index 4d0407700..000000000 --- a/configs/live/single_symbol_optimizations/clock/ROSEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.7212190235336, - "delay_between_fills_minutes_entry": 974.8829438497269, - "delay_weight_close": 47.715489135266665, - "delay_weight_entry": 10.105388059026021, - "ema_dist_close": 0.001719130091622788, - "ema_dist_entry": -0.0006874897820281204, - "ema_span_0": 705.4799842940254, - "ema_span_1": 1350.7655097962324, - "enabled": true, - "markup_range": 0.010312696095400302, - "min_markup": 0.0048947919298551155, - "n_close_orders": 9, - "qty_pct_close": 0.01077067282126931, - "qty_pct_entry": 0.011890154249054243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.371720712919617}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RSRUSDT.json b/configs/live/single_symbol_optimizations/clock/RSRUSDT.json deleted file mode 100644 index 3c3c733af..000000000 --- a/configs/live/single_symbol_optimizations/clock/RSRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1098.1890971328564, - "delay_between_fills_minutes_entry": 1375.243065814745, - "delay_weight_close": 29.88896098753217, - "delay_weight_entry": 12.091121232363104, - "ema_dist_close": -0.00770144974972434, - "ema_dist_entry": 0.0029555600090398868, - "ema_span_0": 1282.1557227028245, - "ema_span_1": 1354.531959111327, - "enabled": true, - "markup_range": 0.0564658804360234, - "min_markup": 0.004536239776665542, - "n_close_orders": 2, - "qty_pct_close": 0.010318006553638565, - "qty_pct_entry": 0.011391045897932045, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.0564509175305545}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1147.2175746240093, - "delay_between_fills_minutes_entry": 1344.4174639926466, - "delay_weight_close": 55.08480444793561, - "delay_weight_entry": 5.527524296320485, - "ema_dist_close": -0.005818784796419914, - "ema_dist_entry": 0.002984551312844512, - "ema_span_0": 1388.9714235200731, - "ema_span_1": 842.8980135040856, - "enabled": true, - "markup_range": 0.051935804057843316, - "min_markup": 0.007278101464767998, - "n_close_orders": 10, - "qty_pct_close": 0.010044210831340496, - "qty_pct_entry": 0.011622579759049822, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.82638218593147}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RUNEUSDT.json b/configs/live/single_symbol_optimizations/clock/RUNEUSDT.json deleted file mode 100644 index 6d2e35ccd..000000000 --- a/configs/live/single_symbol_optimizations/clock/RUNEUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 945.6295755258033, - "delay_between_fills_minutes_entry": 1129.3036024850337, - "delay_weight_close": 49.428798145227546, - "delay_weight_entry": 23.244316646980483, - "ema_dist_close": 0.001639520327615728, - "ema_dist_entry": -0.0014840288276448815, - "ema_span_0": 1436.8600255462013, - "ema_span_1": 513.6808484133488, - "enabled": true, - "markup_range": 0.0003920027644607531, - "min_markup": 0.004511865898676224, - "n_close_orders": 14, - "qty_pct_close": 0.018725398018618583, - "qty_pct_entry": 0.023096401118212994, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.778662774848787}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 942.2049874105497, - "delay_between_fills_minutes_entry": 1251.261921045089, - "delay_weight_close": 17.45312514381512, - "delay_weight_entry": 3.4964432705152726, - "ema_dist_close": -0.006942503015183075, - "ema_dist_entry": -0.021781367944668163, - "ema_span_0": 1131.7075219768979, - "ema_span_1": 1193.713092725062, - "enabled": true, - "markup_range": 0.029097064292162727, - "min_markup": 0.006842915004951266, - "n_close_orders": 13, - "qty_pct_close": 0.02750739300096945, - "qty_pct_entry": 0.01742283349182834, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.802182324665643}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/RVNUSDT.json b/configs/live/single_symbol_optimizations/clock/RVNUSDT.json deleted file mode 100644 index febcfeac8..000000000 --- a/configs/live/single_symbol_optimizations/clock/RVNUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1432.4006108800506, - "delay_between_fills_minutes_entry": 751.6201541712261, - "delay_weight_close": 54.68570415972831, - "delay_weight_entry": 13.94705474048763, - "ema_dist_close": -0.00800383974635666, - "ema_dist_entry": -0.0034491862148341964, - "ema_span_0": 889.5236258098854, - "ema_span_1": 1153.6741997558875, - "enabled": true, - "markup_range": 0.010076527626258228, - "min_markup": 0.006650382120173611, - "n_close_orders": 9, - "qty_pct_close": 0.010011236171168177, - "qty_pct_entry": 0.013288174370963723, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.979238060621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1413.5558565686624, - "delay_between_fills_minutes_entry": 784.9899665507813, - "delay_weight_close": 63.11789338578739, - "delay_weight_entry": 5.831921044029341, - "ema_dist_close": 0.0008992223320789086, - "ema_dist_entry": -0.0002838257924038979, - "ema_span_0": 1348.0735885470365, - "ema_span_1": 1071.0504500508011, - "enabled": true, - "markup_range": 0.00468923487929032, - "min_markup": 0.00869470771701888, - "n_close_orders": 8, - "qty_pct_close": 0.011935308303393993, - "qty_pct_entry": 0.016084273347267565, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.702971993720947}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SANDUSDT.json b/configs/live/single_symbol_optimizations/clock/SANDUSDT.json deleted file mode 100644 index fd70bfdca..000000000 --- a/configs/live/single_symbol_optimizations/clock/SANDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1277.3251244157748, - "delay_between_fills_minutes_entry": 1216.057734091145, - "delay_weight_close": 66.32059985194971, - "delay_weight_entry": 15.073984925181811, - "ema_dist_close": 0.0006115295846138357, - "ema_dist_entry": -3.278822778787082e-05, - "ema_span_0": 1230.121989346604, - "ema_span_1": 949.180179825066, - "enabled": true, - "markup_range": 0.05370800531749068, - "min_markup": 0.008098935350333665, - "n_close_orders": 11, - "qty_pct_close": 0.015146066038749706, - "qty_pct_entry": 0.01006698912163443, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.393369727504902}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.988118806758, - "delay_between_fills_minutes_entry": 317.0114095372921, - "delay_weight_close": 64.21435545867797, - "delay_weight_entry": 9.41060851968836, - "ema_dist_close": 0.0020302865280332426, - "ema_dist_entry": -0.005320416273806871, - "ema_span_0": 1001.1702346693172, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.004255931827100837, - "min_markup": 0.0045768707404305825, - "n_close_orders": 9, - "qty_pct_close": 0.0119074650277676, - "qty_pct_entry": 0.014054182208395603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.886623694505245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SCUSDT.json b/configs/live/single_symbol_optimizations/clock/SCUSDT.json deleted file mode 100644 index a118841dd..000000000 --- a/configs/live/single_symbol_optimizations/clock/SCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SFPUSDT.json b/configs/live/single_symbol_optimizations/clock/SFPUSDT.json deleted file mode 100644 index 897089973..000000000 --- a/configs/live/single_symbol_optimizations/clock/SFPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1180.0481078095363, - "delay_between_fills_minutes_entry": 1158.6523360850267, - "delay_weight_close": 7.604553658110747, - "delay_weight_entry": 8.622864021901783, - "ema_dist_close": -0.00150514095494208, - "ema_dist_entry": -0.001821113340755755, - "ema_span_0": 1339.331876102062, - "ema_span_1": 1263.7802735710468, - "enabled": true, - "markup_range": 0.028262924932764028, - "min_markup": 0.00646301080764169, - "n_close_orders": 4, - "qty_pct_close": 0.01133254977434379, - "qty_pct_entry": 0.014183682481879092, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.824586513799584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 420.05730200240686, - "delay_between_fills_minutes_entry": 265.93351344495, - "delay_weight_close": 33.93623140772891, - "delay_weight_entry": 3.192867291682798, - "ema_dist_close": 6.434720699154509e-05, - "ema_dist_entry": 0.0029982761820646674, - "ema_span_0": 1426.5561150104795, - "ema_span_1": 126.45044412539376, - "enabled": true, - "markup_range": 0.0005204528353887026, - "min_markup": 0.008931203100696214, - "n_close_orders": 14, - "qty_pct_close": 0.024598801545197287, - "qty_pct_entry": 0.010657415832710532, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.999921154506266}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SKLUSDT.json b/configs/live/single_symbol_optimizations/clock/SKLUSDT.json deleted file mode 100644 index 58ba94ae5..000000000 --- a/configs/live/single_symbol_optimizations/clock/SKLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1372.3841045307663, - "delay_between_fills_minutes_entry": 139.11685765116061, - "delay_weight_close": 32.57298427264517, - "delay_weight_entry": 10.863799906543202, - "ema_dist_close": 0.0001790996759514929, - "ema_dist_entry": -0.01556809129267982, - "ema_span_0": 1172.7020073545473, - "ema_span_1": 1311.1838295528844, - "enabled": true, - "markup_range": 0.0018156850489901677, - "min_markup": 0.005292289979349248, - "n_close_orders": 8, - "qty_pct_close": 0.011440690681059679, - "qty_pct_entry": 0.012989161682118546, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.118642784734591}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SNXUSDT.json b/configs/live/single_symbol_optimizations/clock/SNXUSDT.json deleted file mode 100644 index 8eb4edc8e..000000000 --- a/configs/live/single_symbol_optimizations/clock/SNXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1100.3857610128607, - "delay_between_fills_minutes_entry": 1317.1843014097822, - "delay_weight_close": 52.36617452345331, - "delay_weight_entry": 25.065813227627977, - "ema_dist_close": 0.0018406156685246136, - "ema_dist_entry": -0.0021629806866756986, - "ema_span_0": 384.57539860449975, - "ema_span_1": 968.939877291105, - "enabled": true, - "markup_range": 0.00518174965441663, - "min_markup": 0.009137505966543993, - "n_close_orders": 3, - "qty_pct_close": 0.016767580080325854, - "qty_pct_entry": 0.011749739286854877, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.403247514686073}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SOLUSDT.json b/configs/live/single_symbol_optimizations/clock/SOLUSDT.json deleted file mode 100644 index 8af1d4258..000000000 --- a/configs/live/single_symbol_optimizations/clock/SOLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 945.6295755258033, - "delay_between_fills_minutes_entry": 1129.3036024850337, - "delay_weight_close": 49.428798145227546, - "delay_weight_entry": 23.244316646980483, - "ema_dist_close": 0.001639520327615728, - "ema_dist_entry": -0.0014840288276448815, - "ema_span_0": 1436.8600255462013, - "ema_span_1": 513.6808484133488, - "enabled": true, - "markup_range": 0.0003920027644607531, - "min_markup": 0.004511865898676224, - "n_close_orders": 14, - "qty_pct_close": 0.018725398018618583, - "qty_pct_entry": 0.023096401118212994, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.778662774848787}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1166.2682193834287, - "delay_between_fills_minutes_entry": 924.9693928996616, - "delay_weight_close": 9.012005130044658, - "delay_weight_entry": 10.014226918020972, - "ema_dist_close": 0.001300366690463992, - "ema_dist_entry": -0.009524111902725823, - "ema_span_0": 104.16865859365394, - "ema_span_1": 1237.9800285975011, - "enabled": true, - "markup_range": 0.0006152167094315753, - "min_markup": 0.0046416221852974135, - "n_close_orders": 3, - "qty_pct_close": 0.010030416069800579, - "qty_pct_entry": 0.012447396919236986, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.0201405801931305}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SPELLUSDT.json b/configs/live/single_symbol_optimizations/clock/SPELLUSDT.json deleted file mode 100644 index ff025c7d7..000000000 --- a/configs/live/single_symbol_optimizations/clock/SPELLUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1400.9064026488463, - "delay_between_fills_minutes_entry": 1440, - "delay_weight_close": 58.79959585708705, - "delay_weight_entry": 10.959076388436209, - "ema_dist_close": 0.003, - "ema_dist_entry": -0.02772778938036382, - "ema_span_0": 1138.739721733395, - "ema_span_1": 5.0062918268054695, - "enabled": true, - "markup_range": 0.051451689323101686, - "min_markup": 0.008293567493695307, - "n_close_orders": 12, - "qty_pct_close": 0.017450501048647354, - "qty_pct_entry": 0.01101553339681686, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.934438426010102}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 903.4577390484795, - "delay_between_fills_minutes_entry": 91.31869679673099, - "delay_weight_close": 61.0637713869559, - "delay_weight_entry": 21.21444113263368, - "ema_dist_close": 0.00287714922509502, - "ema_dist_entry": -0.015841540747091768, - "ema_span_0": 142.5433618055965, - "ema_span_1": 436.1751528372657, - "enabled": true, - "markup_range": 0.0005145423300760727, - "min_markup": 0.003659346019507608, - "n_close_orders": 7, - "qty_pct_close": 0.018959604054111, - "qty_pct_entry": 0.014964702519543157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.266575868243784}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SRMUSDT.json b/configs/live/single_symbol_optimizations/clock/SRMUSDT.json deleted file mode 100644 index 2c21261fa..000000000 --- a/configs/live/single_symbol_optimizations/clock/SRMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1234.673747322861, - "delay_between_fills_minutes_entry": 450.3320759541588, - "delay_weight_close": 89.72929052818215, - "delay_weight_entry": 5.530872827596521, - "ema_dist_close": 0.0029849338942576392, - "ema_dist_entry": -0.0046667785406218605, - "ema_span_0": 1230.5343974102257, - "ema_span_1": 138.50649282769893, - "enabled": true, - "markup_range": 0.0018223777416682115, - "min_markup": 0.006845533289662035, - "n_close_orders": 11, - "qty_pct_close": 0.010070021088801619, - "qty_pct_entry": 0.01189538278267353, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.915451290253765}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SSVUSDT.json b/configs/live/single_symbol_optimizations/clock/SSVUSDT.json deleted file mode 100644 index b8c0c3ab4..000000000 --- a/configs/live/single_symbol_optimizations/clock/SSVUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1431.668799977708, - "delay_between_fills_minutes_entry": 1172.3315749416672, - "delay_weight_close": 92.1944147617939, - "delay_weight_entry": 13.299163240177549, - "ema_dist_close": -0.006110970900478899, - "ema_dist_entry": -0.0012152310279488362, - "ema_span_0": 1157.6584254309437, - "ema_span_1": 1361.6542672502005, - "enabled": true, - "markup_range": 0.05738859691829519, - "min_markup": 0.008099367828985241, - "n_close_orders": 8, - "qty_pct_close": 0.010192948712211278, - "qty_pct_entry": 0.014842396473316357, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.776242256621882}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/STGUSDT.json b/configs/live/single_symbol_optimizations/clock/STGUSDT.json deleted file mode 100644 index 0008af459..000000000 --- a/configs/live/single_symbol_optimizations/clock/STGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1283.4882543935753, - "delay_between_fills_minutes_entry": 1282.4088245805738, - "delay_weight_close": 54.34792163679577, - "delay_weight_entry": 20.418515739638806, - "ema_dist_close": 0.0029242067519374454, - "ema_dist_entry": 0.0008165675084510879, - "ema_span_0": 994.3367379926599, - "ema_span_1": 728.3527546430134, - "enabled": true, - "markup_range": 0.005630467403920814, - "min_markup": 0.009990225854072622, - "n_close_orders": 6, - "qty_pct_close": 0.01024891611858392, - "qty_pct_entry": 0.010013352583831101, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18888554382496}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1381.1160054128657, - "delay_between_fills_minutes_entry": 1347.5188751377245, - "delay_weight_close": 1.1272380480882425, - "delay_weight_entry": 30.856317598870728, - "ema_dist_close": -0.008101076345204367, - "ema_dist_entry": 0.002410721458934586, - "ema_span_0": 1439.752127389134, - "ema_span_1": 923.6747669056006, - "enabled": true, - "markup_range": 0.0021272906471157312, - "min_markup": 0.001, - "n_close_orders": 10, - "qty_pct_close": 0.011347620091498152, - "qty_pct_entry": 0.01005415129671987, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.182110363256823}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/STMXUSDT.json b/configs/live/single_symbol_optimizations/clock/STMXUSDT.json deleted file mode 100644 index c8ff72c45..000000000 --- a/configs/live/single_symbol_optimizations/clock/STMXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1293.9282047823156, - "delay_between_fills_minutes_entry": 651.579910510287, - "delay_weight_close": 36.593318352552075, - "delay_weight_entry": 13.383443451865407, - "ema_dist_close": 0.0028334812925875836, - "ema_dist_entry": -0.0030329433178104916, - "ema_span_0": 490.1520758240891, - "ema_span_1": 929.4300297956834, - "enabled": true, - "markup_range": 0.0011258315006138482, - "min_markup": 0.007259543701320098, - "n_close_orders": 7, - "qty_pct_close": 0.0110481141972596, - "qty_pct_entry": 0.0161440743178088, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.9128327794569575}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 661.5327842815884, - "delay_between_fills_minutes_entry": 1422.911446368116, - "delay_weight_close": 20.1036989519919, - "delay_weight_entry": 14.593169305490902, - "ema_dist_close": 0.0024139434527850434, - "ema_dist_entry": -0.017215502842211797, - "ema_span_0": 804.8379512088446, - "ema_span_1": 1378.155523961007, - "enabled": true, - "markup_range": 0.031155813413785798, - "min_markup": 0.008732526426521305, - "n_close_orders": 10, - "qty_pct_close": 0.013660104874959405, - "qty_pct_entry": 0.011053381188245741, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.361107441858329}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/STORJUSDT.json b/configs/live/single_symbol_optimizations/clock/STORJUSDT.json deleted file mode 100644 index 75c519e7e..000000000 --- a/configs/live/single_symbol_optimizations/clock/STORJUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 958.1157413814566, - "delay_between_fills_minutes_entry": 1086.5640533752246, - "delay_weight_close": 87.00785607946979, - "delay_weight_entry": 12.986131630004003, - "ema_dist_close": -0.0005335316918236077, - "ema_dist_entry": 0.001953294858308979, - "ema_span_0": 1250.7805123452456, - "ema_span_1": 874.7677295290719, - "enabled": true, - "markup_range": 0.019866483188602187, - "min_markup": 0.004981371155774521, - "n_close_orders": 7, - "qty_pct_close": 0.01968982920661889, - "qty_pct_entry": 0.010104790325327538, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.885178035798278}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1213.8808604575988, - "delay_between_fills_minutes_entry": 319.8805659148345, - "delay_weight_close": 2.663350062481493, - "delay_weight_entry": 9.039510921080103, - "ema_dist_close": 0.0029441187892161966, - "ema_dist_entry": -0.006899703006473927, - "ema_span_0": 9.082344740316472, - "ema_span_1": 935.7226512380286, - "enabled": true, - "markup_range": 0.0009430202211385166, - "min_markup": 0.0029601774438838702, - "n_close_orders": 7, - "qty_pct_close": 0.010202109440378334, - "qty_pct_entry": 0.010000497266764313, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.645104986712898}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/STXUSDT.json b/configs/live/single_symbol_optimizations/clock/STXUSDT.json deleted file mode 100644 index bd0145e27..000000000 --- a/configs/live/single_symbol_optimizations/clock/STXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1246.453675439523, - "delay_between_fills_minutes_entry": 1043.4026414875514, - "delay_weight_close": 59.00638071467824, - "delay_weight_entry": 12.783527392042384, - "ema_dist_close": -0.001174471722058444, - "ema_dist_entry": -0.0008280528023009111, - "ema_span_0": 905.0803044663683, - "ema_span_1": 1274.1281529111866, - "enabled": true, - "markup_range": 0.02939339511460445, - "min_markup": 0.006431641992599841, - "n_close_orders": 10, - "qty_pct_close": 0.036761321855843444, - "qty_pct_entry": 0.02461482313117535, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99284196964666}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1390.2579752796764, - "delay_between_fills_minutes_entry": 669.8954279400186, - "delay_weight_close": 84.03300146614866, - "delay_weight_entry": 10.121719907764334, - "ema_dist_close": 0.0022563487350934085, - "ema_dist_entry": -0.002912675468766438, - "ema_span_0": 1369.8957114906796, - "ema_span_1": 1434.3800383113123, - "enabled": true, - "markup_range": 0.0028831060261065985, - "min_markup": 0.007500370955703341, - "n_close_orders": 9, - "qty_pct_close": 0.010002536340047495, - "qty_pct_entry": 0.011834287558867746, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.403108172035272}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SUIUSDT.json b/configs/live/single_symbol_optimizations/clock/SUIUSDT.json deleted file mode 100644 index 208fdf6b0..000000000 --- a/configs/live/single_symbol_optimizations/clock/SUIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/clock/SUSHIUSDT.json deleted file mode 100644 index 63d38f2b2..000000000 --- a/configs/live/single_symbol_optimizations/clock/SUSHIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1438.063846218405, - "delay_between_fills_minutes_entry": 445.7677638229376, - "delay_weight_close": 43.1100581338372, - "delay_weight_entry": 6.549904084902322, - "ema_dist_close": -0.0010414001955763854, - "ema_dist_entry": 0.0018164204178684844, - "ema_span_0": 441.7484316796892, - "ema_span_1": 1261.8110358374045, - "enabled": true, - "markup_range": 0.0007451951296627601, - "min_markup": 0.0073301840421219075, - "n_close_orders": 12, - "qty_pct_close": 0.011730318329115672, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.9242458298509}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/SXPUSDT.json b/configs/live/single_symbol_optimizations/clock/SXPUSDT.json deleted file mode 100644 index fad9258b3..000000000 --- a/configs/live/single_symbol_optimizations/clock/SXPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1090.1021468795047, - "delay_between_fills_minutes_entry": 1271.5041965362163, - "delay_weight_close": 29.091290635073527, - "delay_weight_entry": 9.794184733473815, - "ema_dist_close": -0.005265480923403937, - "ema_dist_entry": -0.00568391530728528, - "ema_span_0": 1355.0672716571885, - "ema_span_1": 498.7352009245486, - "enabled": true, - "markup_range": 0.05866312295194966, - "min_markup": 0.008028768059245581, - "n_close_orders": 12, - "qty_pct_close": 0.010949740695588382, - "qty_pct_entry": 0.011624069114727315, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.760287598121854}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1314.578145412391, - "delay_between_fills_minutes_entry": 100.28723787428561, - "delay_weight_close": 78.14571859493338, - "delay_weight_entry": 2.7716252876689538, - "ema_dist_close": 0.0007729457957130902, - "ema_dist_entry": 0.0016966902883107766, - "ema_span_0": 1125.276945974064, - "ema_span_1": 1127.349961319618, - "enabled": true, - "markup_range": 0.0006493513539585139, - "min_markup": 0.005664696465398646, - "n_close_orders": 8, - "qty_pct_close": 0.010859581141978205, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.76473341355905}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/THETAUSDT.json b/configs/live/single_symbol_optimizations/clock/THETAUSDT.json deleted file mode 100644 index f33cd90ed..000000000 --- a/configs/live/single_symbol_optimizations/clock/THETAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1279.8750005823726, - "delay_between_fills_minutes_entry": 933.0747102807682, - "delay_weight_close": 59.31298431253631, - "delay_weight_entry": 27.35368231497901, - "ema_dist_close": -0.0010273524468826557, - "ema_dist_entry": -0.0002409218479536592, - "ema_span_0": 17.169308700991014, - "ema_span_1": 828.8804772625111, - "enabled": true, - "markup_range": 0.0025172044764906073, - "min_markup": 0.007396176653168389, - "n_close_orders": 16, - "qty_pct_close": 0.010621157486843023, - "qty_pct_entry": 0.01742535821106157, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.357276278752911}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 117.61266519534016, - "delay_weight_close": 22.90997304169476, - "delay_weight_entry": 14.256381652203737, - "ema_dist_close": 1.042146393954212e-06, - "ema_dist_entry": -0.009186440298592299, - "ema_span_0": 534.2014868965927, - "ema_span_1": 947.5578932680734, - "enabled": true, - "markup_range": 0.0006327390122436608, - "min_markup": 0.004532160264044096, - "n_close_orders": 14, - "qty_pct_close": 0.01116374643841166, - "qty_pct_entry": 0.010002450092506773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983118834246604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/TLMUSDT.json b/configs/live/single_symbol_optimizations/clock/TLMUSDT.json deleted file mode 100644 index 71ca8d916..000000000 --- a/configs/live/single_symbol_optimizations/clock/TLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/TOMOUSDT.json b/configs/live/single_symbol_optimizations/clock/TOMOUSDT.json deleted file mode 100644 index a18457469..000000000 --- a/configs/live/single_symbol_optimizations/clock/TOMOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1313.078179169225, - "delay_between_fills_minutes_entry": 1265.4598713161108, - "delay_weight_close": 51.96813352923502, - "delay_weight_entry": 10.367594004064612, - "ema_dist_close": -0.005627015083725043, - "ema_dist_entry": -0.00033016392070428735, - "ema_span_0": 640.6578608703904, - "ema_span_1": 1051.7951289460389, - "enabled": true, - "markup_range": 0.05946191874708107, - "min_markup": 0.009866835584826344, - "n_close_orders": 10, - "qty_pct_close": 0.010510838954766451, - "qty_pct_entry": 0.011175291184124324, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.744920847616848}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1381.1160054128657, - "delay_between_fills_minutes_entry": 1347.5188751377245, - "delay_weight_close": 1.1272380480882425, - "delay_weight_entry": 30.856317598870728, - "ema_dist_close": -0.008101076345204367, - "ema_dist_entry": 0.002410721458934586, - "ema_span_0": 1439.752127389134, - "ema_span_1": 923.6747669056006, - "enabled": true, - "markup_range": 0.0021272906471157312, - "min_markup": 0.001, - "n_close_orders": 10, - "qty_pct_close": 0.011347620091498152, - "qty_pct_entry": 0.01005415129671987, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.182110363256823}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/TRBUSDT.json b/configs/live/single_symbol_optimizations/clock/TRBUSDT.json deleted file mode 100644 index d55babb94..000000000 --- a/configs/live/single_symbol_optimizations/clock/TRBUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 792.7998608335537, - "delay_between_fills_minutes_entry": 1262.9601813506247, - "delay_weight_close": 74.5991022439449, - "delay_weight_entry": 11.256738573441421, - "ema_dist_close": 0.0006792744366925414, - "ema_dist_entry": 0.0017573923343787562, - "ema_span_0": 186.24306469826516, - "ema_span_1": 1020.7377514815222, - "enabled": true, - "markup_range": 0.046105698494058225, - "min_markup": 0.007092101160748101, - "n_close_orders": 8, - "qty_pct_close": 0.010940083239478404, - "qty_pct_entry": 0.01277151716107362, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.70984829450165}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 777.462989171898, - "delay_between_fills_minutes_entry": 449.35955007194895, - "delay_weight_close": 42.13287998364174, - "delay_weight_entry": 8.60856119267638, - "ema_dist_close": -0.00498330690028925, - "ema_dist_entry": 0.0017512000496953453, - "ema_span_0": 1345.7031661674787, - "ema_span_1": 1306.8930690468742, - "enabled": true, - "markup_range": 0.017215392105539868, - "min_markup": 0.002232034564319618, - "n_close_orders": 8, - "qty_pct_close": 0.01022144014111894, - "qty_pct_entry": 0.011849392460712512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.38641895100172}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/TRUUSDT.json b/configs/live/single_symbol_optimizations/clock/TRUUSDT.json deleted file mode 100644 index 62e720a23..000000000 --- a/configs/live/single_symbol_optimizations/clock/TRUUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1180.0481078095363, - "delay_between_fills_minutes_entry": 1158.6523360850267, - "delay_weight_close": 7.604553658110747, - "delay_weight_entry": 8.622864021901783, - "ema_dist_close": -0.00150514095494208, - "ema_dist_entry": -0.001821113340755755, - "ema_span_0": 1339.331876102062, - "ema_span_1": 1263.7802735710468, - "enabled": true, - "markup_range": 0.028262924932764028, - "min_markup": 0.00646301080764169, - "n_close_orders": 4, - "qty_pct_close": 0.01133254977434379, - "qty_pct_entry": 0.014183682481879092, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.824586513799584}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1071.7321448776502, - "delay_between_fills_minutes_entry": 608.4339463035063, - "delay_weight_close": 47.700175722135015, - "delay_weight_entry": 7.570410307946368, - "ema_dist_close": -0.0032534951737690663, - "ema_dist_entry": -0.015400883777569794, - "ema_span_0": 901.2066666132317, - "ema_span_1": 1295.1303089278313, - "enabled": true, - "markup_range": 0.04596908396510209, - "min_markup": 0.008067229828822261, - "n_close_orders": 5, - "qty_pct_close": 0.011542071704623675, - "qty_pct_entry": 0.01410069807249177, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.958301334593878}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/TRXUSDT.json b/configs/live/single_symbol_optimizations/clock/TRXUSDT.json deleted file mode 100644 index 6a60183a9..000000000 --- a/configs/live/single_symbol_optimizations/clock/TRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1233.0465371966295, - "delay_between_fills_minutes_entry": 741.4225070532964, - "delay_weight_close": 94.44784504644795, - "delay_weight_entry": 12.854206502092634, - "ema_dist_close": 0.0028080099050355554, - "ema_dist_entry": -0.0027296246700651127, - "ema_span_0": 1124.551325286089, - "ema_span_1": 8.986258170448027, - "enabled": true, - "markup_range": 0.04741830788687247, - "min_markup": 0.009102288530580295, - "n_close_orders": 5, - "qty_pct_close": 0.030065141711628145, - "qty_pct_entry": 0.014535269172023243, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.793779868821595}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1333.3541738270978, - "delay_between_fills_minutes_entry": 1133.544147008662, - "delay_weight_close": 29.820062961642005, - "delay_weight_entry": 13.985442036762864, - "ema_dist_close": 0.0028130190550572053, - "ema_dist_entry": -0.0007086188001904501, - "ema_span_0": 1134.4330727336142, - "ema_span_1": 336.48457168114845, - "enabled": true, - "markup_range": 0.0012398766717468975, - "min_markup": 0.009789965158282024, - "n_close_orders": 3, - "qty_pct_close": 0.01674543471714861, - "qty_pct_entry": 0.0159529662944763, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.141452751421218}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/TUSDT.json b/configs/live/single_symbol_optimizations/clock/TUSDT.json deleted file mode 100644 index 4e2475538..000000000 --- a/configs/live/single_symbol_optimizations/clock/TUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1023.9527158165489, - "delay_between_fills_minutes_entry": 1212.2129576096206, - "delay_weight_close": 82.63315290831876, - "delay_weight_entry": 18.554126961263307, - "ema_dist_close": -0.004581110912127029, - "ema_dist_entry": 0.0029335160482153403, - "ema_span_0": 1434.9112144237645, - "ema_span_1": 1328.183535591076, - "enabled": true, - "markup_range": 0.04944804484846003, - "min_markup": 0.008953273659324912, - "n_close_orders": 14, - "qty_pct_close": 0.011007641083535294, - "qty_pct_entry": 0.012903868635899512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.973726102555176}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 633.829552479102, - "delay_between_fills_minutes_entry": 117.61266519534016, - "delay_weight_close": 22.90997304169476, - "delay_weight_entry": 14.256381652203737, - "ema_dist_close": 1.042146393954212e-06, - "ema_dist_entry": -0.009186440298592299, - "ema_span_0": 534.2014868965927, - "ema_span_1": 947.5578932680734, - "enabled": true, - "markup_range": 0.0006327390122436608, - "min_markup": 0.004532160264044096, - "n_close_orders": 14, - "qty_pct_close": 0.01116374643841166, - "qty_pct_entry": 0.010002450092506773, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.983118834246604}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/UMAUSDT.json b/configs/live/single_symbol_optimizations/clock/UMAUSDT.json deleted file mode 100644 index 19afcb02c..000000000 --- a/configs/live/single_symbol_optimizations/clock/UMAUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1332.7987126249104, - "delay_between_fills_minutes_entry": 624.9168506512478, - "delay_weight_close": 88.8538847686371, - "delay_weight_entry": 23.99292759292018, - "ema_dist_close": 0.0002927075317135663, - "ema_dist_entry": -0.003574502696154154, - "ema_span_0": 1019.0195072593476, - "ema_span_1": 665.9141008553138, - "enabled": true, - "markup_range": 0.05333111971959553, - "min_markup": 0.00735610034529312, - "n_close_orders": 7, - "qty_pct_close": 0.022098395982313356, - "qty_pct_entry": 0.010016520510945722, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.765112397875368}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1306.9772200398124, - "delay_between_fills_minutes_entry": 269.81092271412956, - "delay_weight_close": 49.56793037067108, - "delay_weight_entry": 7.362223451213462, - "ema_dist_close": -0.0018196973325771003, - "ema_dist_entry": 0.001709340177178469, - "ema_span_0": 731.742738595332, - "ema_span_1": 1034.0826912227806, - "enabled": true, - "markup_range": 0.018361838497972738, - "min_markup": 0.008585951117386059, - "n_close_orders": 6, - "qty_pct_close": 0.011837288953960648, - "qty_pct_entry": 0.010888132101221097, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.299793489698416}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/UNFIUSDT.json b/configs/live/single_symbol_optimizations/clock/UNFIUSDT.json deleted file mode 100644 index 637a56065..000000000 --- a/configs/live/single_symbol_optimizations/clock/UNFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1392.8792537027443, - "delay_between_fills_minutes_entry": 872.4126544485439, - "delay_weight_close": 69.75491294053022, - "delay_weight_entry": 14.973670421469889, - "ema_dist_close": 1.4264432521890424e-05, - "ema_dist_entry": -0.043303820246895997, - "ema_span_0": 396.40626615349055, - "ema_span_1": 389.1072980748438, - "enabled": true, - "markup_range": 0.01887366608125784, - "min_markup": 0.005284386528563718, - "n_close_orders": 10, - "qty_pct_close": 0.019909263439227443, - "qty_pct_entry": 0.011936709883053167, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.560326581540767}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1440, - "delay_between_fills_minutes_entry": 820.7095359893672, - "delay_weight_close": 78.68968193948258, - "delay_weight_entry": 0, - "ema_dist_close": -0.0038648572551458734, - "ema_dist_entry": -0.04552424529181222, - "ema_span_0": 1216.7234950151756, - "ema_span_1": 797.7321684213772, - "enabled": true, - "markup_range": 0.04033942435116666, - "min_markup": 0.009652309506809365, - "n_close_orders": 10, - "qty_pct_close": 0.01000391130234922, - "qty_pct_entry": 0.013532372454122314, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.488706402202238}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/UNIUSDT.json b/configs/live/single_symbol_optimizations/clock/UNIUSDT.json deleted file mode 100644 index 2e20dd6f5..000000000 --- a/configs/live/single_symbol_optimizations/clock/UNIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1439.6404338319678, - "delay_between_fills_minutes_entry": 1434.862098457989, - "delay_weight_close": 57.87473707247886, - "delay_weight_entry": 12.005038442814577, - "ema_dist_close": 0.0023061123016823275, - "ema_dist_entry": -0.0003165055969744564, - "ema_span_0": 1106.653870711679, - "ema_span_1": 1415.0014471505149, - "enabled": true, - "markup_range": 0.05200737467941337, - "min_markup": 0.006477086291229681, - "n_close_orders": 3, - "qty_pct_close": 0.010070821540046473, - "qty_pct_entry": 0.013077879611665143, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.047583055325157}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 934.5622413670984, - "delay_between_fills_minutes_entry": 39.572690499285066, - "delay_weight_close": 52.908231439142476, - "delay_weight_entry": 0.6932251456211235, - "ema_dist_close": 0.0025041454577122233, - "ema_dist_entry": 6.89649686684348e-05, - "ema_span_0": 1384.998897272804, - "ema_span_1": 1307.9600410633623, - "enabled": true, - "markup_range": 4.258456436992088e-05, - "min_markup": 0.003739942548195558, - "n_close_orders": 7, - "qty_pct_close": 0.01728334200174955, - "qty_pct_entry": 0.011184784497331334, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.496918334099302}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/USDCUSDT.json b/configs/live/single_symbol_optimizations/clock/USDCUSDT.json deleted file mode 100644 index 7a9953bac..000000000 --- a/configs/live/single_symbol_optimizations/clock/USDCUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1255.7695283248577, - "delay_between_fills_minutes_entry": 1296.0126089200369, - "delay_weight_close": 55.82391802311442, - "delay_weight_entry": 58.54378807746673, - "ema_dist_close": -0.0031683814845681565, - "ema_dist_entry": -0.008266728487231714, - "ema_span_0": 1369.1522002969482, - "ema_span_1": 1242.3011202357745, - "enabled": true, - "markup_range": 0.000695502154123218, - "min_markup": 0.0032333360142341723, - "n_close_orders": 2, - "qty_pct_close": 0.04640615838436692, - "qty_pct_entry": 0.010347812658492163, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.589797190261674}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 451.0151298418913, - "delay_between_fills_minutes_entry": 1126.5240502019913, - "delay_weight_close": 17.2417367076083, - "delay_weight_entry": 1.8899407442801355, - "ema_dist_close": -0.0037007218537214834, - "ema_dist_entry": -0.03153653793608107, - "ema_span_0": 728.6849742408438, - "ema_span_1": 1069.5730443642144, - "enabled": true, - "markup_range": 0.03011716502798442, - "min_markup": 0.007041580841729698, - "n_close_orders": 13, - "qty_pct_close": 0.03635752740194634, - "qty_pct_entry": 0.0114987353447928, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.18401009209713}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/VETUSDT.json b/configs/live/single_symbol_optimizations/clock/VETUSDT.json deleted file mode 100644 index ec030ffa5..000000000 --- a/configs/live/single_symbol_optimizations/clock/VETUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1138.446659492275, - "delay_between_fills_minutes_entry": 1066.6134971825088, - "delay_weight_close": 89.85740175989847, - "delay_weight_entry": 7.113185862499532, - "ema_dist_close": 0.0028433580169823494, - "ema_dist_entry": 0.002602029066924209, - "ema_span_0": 901.5065919580145, - "ema_span_1": 997.2413531863783, - "enabled": true, - "markup_range": 0.05864578324591525, - "min_markup": 0.009529901923419248, - "n_close_orders": 5, - "qty_pct_close": 0.011688307341322927, - "qty_pct_entry": 0.015516605369897211, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.857673642964043}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 942.2049874105497, - "delay_between_fills_minutes_entry": 1251.261921045089, - "delay_weight_close": 17.45312514381512, - "delay_weight_entry": 3.4964432705152726, - "ema_dist_close": -0.006942503015183075, - "ema_dist_entry": -0.021781367944668163, - "ema_span_0": 1131.7075219768979, - "ema_span_1": 1193.713092725062, - "enabled": true, - "markup_range": 0.029097064292162727, - "min_markup": 0.006842915004951266, - "n_close_orders": 13, - "qty_pct_close": 0.02750739300096945, - "qty_pct_entry": 0.01742283349182834, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.802182324665643}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/WAVESUSDT.json b/configs/live/single_symbol_optimizations/clock/WAVESUSDT.json deleted file mode 100644 index 11fe87bba..000000000 --- a/configs/live/single_symbol_optimizations/clock/WAVESUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1061.8823999064584, - "delay_between_fills_minutes_entry": 1012.1825530990295, - "delay_weight_close": 35.409202373884135, - "delay_weight_entry": 32.95956402925812, - "ema_dist_close": -0.007254519009069184, - "ema_dist_entry": 0.0028304482415728097, - "ema_span_0": 91.16702196899816, - "ema_span_1": 91.93736565179938, - "enabled": true, - "markup_range": 0.0031895140493152776, - "min_markup": 0.0030837805934416707, - "n_close_orders": 4, - "qty_pct_close": 0.010458652758586526, - "qty_pct_entry": 0.012868236452401689, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.966008726830031}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 823.925380691432, - "delay_between_fills_minutes_entry": 552.1101561076499, - "delay_weight_close": 80.76346040980073, - "delay_weight_entry": 5.923744767045681, - "ema_dist_close": 0.0026632234530420723, - "ema_dist_entry": -0.005803973299114309, - "ema_span_0": 943.0370411200279, - "ema_span_1": 1422.5397241747166, - "enabled": true, - "markup_range": 0.0038455296273103945, - "min_markup": 0.004971921043439715, - "n_close_orders": 16, - "qty_pct_close": 0.01979557808628567, - "qty_pct_entry": 0.010060880479196744, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.693793947683548}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/WLDUSDT.json b/configs/live/single_symbol_optimizations/clock/WLDUSDT.json deleted file mode 100644 index 55c208441..000000000 --- a/configs/live/single_symbol_optimizations/clock/WLDUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1297.446347592673, - "delay_between_fills_minutes_entry": 1129.9305418865495, - "delay_weight_close": 23.895730782664593, - "delay_weight_entry": 30.885676956888087, - "ema_dist_close": 0.00298439711727698, - "ema_dist_entry": 0.002115233449038607, - "ema_span_0": 1222.2740352588605, - "ema_span_1": 759.0482824822924, - "enabled": true, - "markup_range": 0.0023769320815213457, - "min_markup": 0.007878909042037145, - "n_close_orders": 6, - "qty_pct_close": 0.01040162158290617, - "qty_pct_entry": 0.01892843326970887, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 4.156147535820607}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1296.1419739084013, - "delay_between_fills_minutes_entry": 147.02021689326304, - "delay_weight_close": 5.97148502628611, - "delay_weight_entry": 3.650032916171652, - "ema_dist_close": 0.000970137623367213, - "ema_dist_entry": -0.0020118711305088465, - "ema_span_0": 914.6314864360197, - "ema_span_1": 988.0233545150836, - "enabled": true, - "markup_range": 0.0004247384515813301, - "min_markup": 0.006149104388253391, - "n_close_orders": 9, - "qty_pct_close": 0.019408268413854183, - "qty_pct_entry": 0.01459981809009704, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.128695941373563}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/WOOUSDT.json b/configs/live/single_symbol_optimizations/clock/WOOUSDT.json deleted file mode 100644 index 185ab1042..000000000 --- a/configs/live/single_symbol_optimizations/clock/WOOUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1014.9284392347556, - "delay_between_fills_minutes_entry": 851.6691833284603, - "delay_weight_close": 45.35882563779744, - "delay_weight_entry": 26.883220255129054, - "ema_dist_close": 0.0006882160335942308, - "ema_dist_entry": 0.0018579347621751389, - "ema_span_0": 1187.368091952627, - "ema_span_1": 1265.4502225890506, - "enabled": true, - "markup_range": 0.0015247693691875356, - "min_markup": 0.006610726762835915, - "n_close_orders": 4, - "qty_pct_close": 0.01400566944581456, - "qty_pct_entry": 0.015544797728112843, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.55569866634186}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 994.988118806758, - "delay_between_fills_minutes_entry": 317.0114095372921, - "delay_weight_close": 64.21435545867797, - "delay_weight_entry": 9.41060851968836, - "ema_dist_close": 0.0020302865280332426, - "ema_dist_entry": -0.005320416273806871, - "ema_span_0": 1001.1702346693172, - "ema_span_1": 701.5082980586151, - "enabled": true, - "markup_range": 0.004255931827100837, - "min_markup": 0.0045768707404305825, - "n_close_orders": 9, - "qty_pct_close": 0.0119074650277676, - "qty_pct_entry": 0.014054182208395603, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.886623694505245}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XEMUSDT.json b/configs/live/single_symbol_optimizations/clock/XEMUSDT.json deleted file mode 100644 index a7d35aa3b..000000000 --- a/configs/live/single_symbol_optimizations/clock/XEMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 611.0171335895814, - "delay_between_fills_minutes_entry": 696.1029097432362, - "delay_weight_close": 99.49420280916445, - "delay_weight_entry": 22.132445358986754, - "ema_dist_close": -0.0012094435127389547, - "ema_dist_entry": 0.0009945364711174236, - "ema_span_0": 418.10103687119744, - "ema_span_1": 1050.7259444611627, - "enabled": true, - "markup_range": 0.045833565129538345, - "min_markup": 0.009061315448339465, - "n_close_orders": 13, - "qty_pct_close": 0.04997856157558594, - "qty_pct_entry": 0.01, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 3.190728344474344}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XLMUSDT.json b/configs/live/single_symbol_optimizations/clock/XLMUSDT.json deleted file mode 100644 index b326386fe..000000000 --- a/configs/live/single_symbol_optimizations/clock/XLMUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1248.1789885059768, - "delay_between_fills_minutes_entry": 227.99268514064005, - "delay_weight_close": 78.75473228984815, - "delay_weight_entry": 6.216960673508106, - "ema_dist_close": 0.0026028078903315615, - "ema_dist_entry": 0.003, - "ema_span_0": 784.5152476941988, - "ema_span_1": 1205.366418561911, - "enabled": true, - "markup_range": 0.05917662143888649, - "min_markup": 0.009918070200054691, - "n_close_orders": 7, - "qty_pct_close": 0.03103642627381348, - "qty_pct_entry": 0.010006216470470716, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 7.58215952037477}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1151.2725786705696, - "delay_between_fills_minutes_entry": 1432.5918922967433, - "delay_weight_close": 11.022693608393448, - "delay_weight_entry": 14.839016724652891, - "ema_dist_close": 0.001372637460468898, - "ema_dist_entry": 0.0027645404826423885, - "ema_span_0": 1348.563732319282, - "ema_span_1": 541.1280889127311, - "enabled": true, - "markup_range": 0.022185663602024702, - "min_markup": 0.009584419776066605, - "n_close_orders": 14, - "qty_pct_close": 0.010066138265541362, - "qty_pct_entry": 0.010002330324521512, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 6.967567048842325}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XMRUSDT.json b/configs/live/single_symbol_optimizations/clock/XMRUSDT.json deleted file mode 100644 index b88b046cc..000000000 --- a/configs/live/single_symbol_optimizations/clock/XMRUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1258.877560137965, - "delay_between_fills_minutes_entry": 653.488206687891, - "delay_weight_close": 52.3446839478151, - "delay_weight_entry": 20.661930017798728, - "ema_dist_close": 3.4838145081053136e-05, - "ema_dist_entry": -0.00574929573077508, - "ema_span_0": 965.4713937183167, - "ema_span_1": 905.1629832053364, - "enabled": true, - "markup_range": 0.006806605257306645, - "min_markup": 0.004676325621587764, - "n_close_orders": 10, - "qty_pct_close": 0.01216791867172733, - "qty_pct_entry": 0.01708841159594309, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.992260482228037}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 831.146596366015, - "delay_between_fills_minutes_entry": 1101.442842050689, - "delay_weight_close": 46.81646996699058, - "delay_weight_entry": 27.09728812060358, - "ema_dist_close": -0.003021768424445727, - "ema_dist_entry": 0.0006496651783955774, - "ema_span_0": 1336.167476771332, - "ema_span_1": 437.0912439221482, - "enabled": true, - "markup_range": 0.05089375344061327, - "min_markup": 0.004449612303087392, - "n_close_orders": 9, - "qty_pct_close": 0.0103635691138784, - "qty_pct_entry": 0.010043999119711851, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.855109710575533}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XRPUSDT.json b/configs/live/single_symbol_optimizations/clock/XRPUSDT.json deleted file mode 100644 index d8373fbc1..000000000 --- a/configs/live/single_symbol_optimizations/clock/XRPUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1378.3146306565052, - "delay_between_fills_minutes_entry": 809.5070419433935, - "delay_weight_close": 99.16441917263865, - "delay_weight_entry": 19.96710506829653, - "ema_dist_close": 0.0019499402186005388, - "ema_dist_entry": -0.0006502322090818485, - "ema_span_0": 5.271701327173801, - "ema_span_1": 820.3869633933415, - "enabled": true, - "markup_range": 0.042560793122525996, - "min_markup": 0.009716550150168823, - "n_close_orders": 7, - "qty_pct_close": 0.016189478905272857, - "qty_pct_entry": 0.01005185572956201, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.717564771733521}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1022.8864815436656, - "delay_between_fills_minutes_entry": 490.5600353595079, - "delay_weight_close": 72.37618149523273, - "delay_weight_entry": 41.018339144892835, - "ema_dist_close": 0.001322610222533517, - "ema_dist_entry": 0.0019311796604976857, - "ema_span_0": 587.962722777956, - "ema_span_1": 660.7285425992538, - "enabled": true, - "markup_range": 0.0014137528485443944, - "min_markup": 0.004172374633890429, - "n_close_orders": 5, - "qty_pct_close": 0.020668900143290286, - "qty_pct_entry": 0.01153287491899116, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.816195008286176}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XTZUSDT.json b/configs/live/single_symbol_optimizations/clock/XTZUSDT.json deleted file mode 100644 index 81f4bd3b0..000000000 --- a/configs/live/single_symbol_optimizations/clock/XTZUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1259.2858732950951, - "delay_between_fills_minutes_entry": 1064.1999737368885, - "delay_weight_close": 30.6934224241991, - "delay_weight_entry": 13.78344958517849, - "ema_dist_close": 0.0029961186212629186, - "ema_dist_entry": 0.0017285088847224179, - "ema_span_0": 1379.646505892805, - "ema_span_1": 1399.6487424791053, - "enabled": true, - "markup_range": 0.032259655163425244, - "min_markup": 0.009630695090030625, - "n_close_orders": 15, - "qty_pct_close": 0.01750845517398313, - "qty_pct_entry": 0.010103584476829602, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.993594179024495}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1418.3847458857667, - "delay_between_fills_minutes_entry": 838.5393872061234, - "delay_weight_close": 88.58314009171943, - "delay_weight_entry": 34.909096468946856, - "ema_dist_close": -0.0015739922757253414, - "ema_dist_entry": 0.0007447866287026189, - "ema_span_0": 1328.1554955509337, - "ema_span_1": 495.56532674545684, - "enabled": true, - "markup_range": 0.00043257196724793336, - "min_markup": 0.006486053071877406, - "n_close_orders": 9, - "qty_pct_close": 0.01302058085821121, - "qty_pct_entry": 0.017741049955391983, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.922611965005485}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XVGUSDT.json b/configs/live/single_symbol_optimizations/clock/XVGUSDT.json deleted file mode 100644 index b649faafd..000000000 --- a/configs/live/single_symbol_optimizations/clock/XVGUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1104.653115516864, - "delay_between_fills_minutes_entry": 497.243075560796, - "delay_weight_close": 52.67051420970565, - "delay_weight_entry": 13.237436199618298, - "ema_dist_close": 0.002941999138864414, - "ema_dist_entry": -0.002567086001269032, - "ema_span_0": 1409.7405710700502, - "ema_span_1": 1019.2052990694884, - "enabled": true, - "markup_range": 0.008295268494336696, - "min_markup": 0.008282377489839962, - "n_close_orders": 5, - "qty_pct_close": 0.012081853775910988, - "qty_pct_entry": 0.014675336449015808, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.99952291452805}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 832.7235105205419, - "delay_between_fills_minutes_entry": 548.0281043144346, - "delay_weight_close": 0.16878916989165796, - "delay_weight_entry": 27.696941867442785, - "ema_dist_close": -0.0033718889918021035, - "ema_dist_entry": -1.9136156769407096e-06, - "ema_span_0": 867.7070287095077, - "ema_span_1": 960.5358883673026, - "enabled": true, - "markup_range": 0.005072266270354247, - "min_markup": 0.009009236313809118, - "n_close_orders": 15, - "qty_pct_close": 0.013351753251483928, - "qty_pct_entry": 0.017786489230771856, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.998072718205826}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/XVSUSDT.json b/configs/live/single_symbol_optimizations/clock/XVSUSDT.json deleted file mode 100644 index 455789e1e..000000000 --- a/configs/live/single_symbol_optimizations/clock/XVSUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1345.4851141881727, - "delay_between_fills_minutes_entry": 315.0473994919766, - "delay_weight_close": 85.60285991396627, - "delay_weight_entry": 12.367303720940644, - "ema_dist_close": -0.0010377260560565, - "ema_dist_entry": -0.0003301296683804859, - "ema_span_0": 1409.5225953185495, - "ema_span_1": 285.3695267567089, - "enabled": true, - "markup_range": 0.04000082654119734, - "min_markup": 0.009168461112122278, - "n_close_orders": 9, - "qty_pct_close": 0.025643411052427862, - "qty_pct_entry": 0.011798853510332347, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 2.794884245929113}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1221.5006619358167, - "delay_between_fills_minutes_entry": 831.313722247777, - "delay_weight_close": 51.18871223115674, - "delay_weight_entry": 6.761295027110616, - "ema_dist_close": 0.002734232428164367, - "ema_dist_entry": -0.000761420021360098, - "ema_span_0": 619.1643302908301, - "ema_span_1": 1126.1985657602752, - "enabled": true, - "markup_range": 0.031328464156655314, - "min_markup": 0.009837230203493232, - "n_close_orders": 11, - "qty_pct_close": 0.010663344743471095, - "qty_pct_entry": 0.010825877887044344, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.919855698066714}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/YFIUSDT.json b/configs/live/single_symbol_optimizations/clock/YFIUSDT.json deleted file mode 100644 index 650f99dfc..000000000 --- a/configs/live/single_symbol_optimizations/clock/YFIUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1435.8471219862013, - "delay_between_fills_minutes_entry": 1439.5546497907865, - "delay_weight_close": 57.88964637046297, - "delay_weight_entry": 13.090442704461383, - "ema_dist_close": 0.002996520452507227, - "ema_dist_entry": -0.0033451476752006455, - "ema_span_0": 367.80671025597053, - "ema_span_1": 1350.9596433183763, - "enabled": true, - "markup_range": 0.058798133871946545, - "min_markup": 0.0070946380295461185, - "n_close_orders": 12, - "qty_pct_close": 0.011131520461024794, - "qty_pct_entry": 0.012949698111735146, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.246610551859352}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 582.3922009757415, - "delay_between_fills_minutes_entry": 337.7531168159636, - "delay_weight_close": 47.06532727513284, - "delay_weight_entry": 27.523036212545584, - "ema_dist_close": 0.001541466451580439, - "ema_dist_entry": 0.0022452839959025334, - "ema_span_0": 282.0117570113525, - "ema_span_1": 1373.2069165691958, - "enabled": true, - "markup_range": 0.003852593022246623, - "min_markup": 0.0032506607687231934, - "n_close_orders": 6, - "qty_pct_close": 0.014378413370085451, - "qty_pct_entry": 0.012301190748585393, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 5.708587296216711}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ZECUSDT.json b/configs/live/single_symbol_optimizations/clock/ZECUSDT.json deleted file mode 100644 index 990e51cd5..000000000 --- a/configs/live/single_symbol_optimizations/clock/ZECUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1077.1807282484492, - "delay_between_fills_minutes_entry": 1232.7128505088735, - "delay_weight_close": 73.02572088977536, - "delay_weight_entry": 14.453691276160244, - "ema_dist_close": 0.0026294226803143914, - "ema_dist_entry": 0.0029811359697856695, - "ema_span_0": 1150.1390184501067, - "ema_span_1": 1374.864691153405, - "enabled": true, - "markup_range": 0.0585552665236782, - "min_markup": 0.008875991138911835, - "n_close_orders": 14, - "qty_pct_close": 0.013612979997873373, - "qty_pct_entry": 0.011835520328508337, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.515438059683117}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1335.2768819845921, - "delay_between_fills_minutes_entry": 428.6975600221851, - "delay_weight_close": 50.78557583382557, - "delay_weight_entry": 25.83468775753399, - "ema_dist_close": -0.005729792068735952, - "ema_dist_entry": -0.0060008799575101785, - "ema_span_0": 615.8987912234022, - "ema_span_1": 389.18468385438194, - "enabled": true, - "markup_range": 0.002004695884103621, - "min_markup": 0.005257696384174906, - "n_close_orders": 10, - "qty_pct_close": 0.010713783063561551, - "qty_pct_entry": 0.01028958370444903, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.369243812144566}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ZENUSDT.json b/configs/live/single_symbol_optimizations/clock/ZENUSDT.json deleted file mode 100644 index 63c54a593..000000000 --- a/configs/live/single_symbol_optimizations/clock/ZENUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1416.1153650952176, - "delay_between_fills_minutes_entry": 570.3850781127543, - "delay_weight_close": 80.62403879064334, - "delay_weight_entry": 10.533059367550711, - "ema_dist_close": -0.004926565330522571, - "ema_dist_entry": -0.0011861057194005778, - "ema_span_0": 1257.5415142575794, - "ema_span_1": 802.4313763607826, - "enabled": true, - "markup_range": 0.046085086334199374, - "min_markup": 0.006026896367362984, - "n_close_orders": 10, - "qty_pct_close": 0.014247805595023916, - "qty_pct_entry": 0.011877898151771853, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.865239505061227}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1044.4439537906833, - "delay_between_fills_minutes_entry": 284.9948072242528, - "delay_weight_close": 85.83752226983684, - "delay_weight_entry": 11.644392476918501, - "ema_dist_close": 0.0014532398114953044, - "ema_dist_entry": -0.012907490908855493, - "ema_span_0": 1350.1084840401143, - "ema_span_1": 1245.3609442867687, - "enabled": true, - "markup_range": 0.004792893120458578, - "min_markup": 0.0038254230464410737, - "n_close_orders": 9, - "qty_pct_close": 0.01851960244535793, - "qty_pct_entry": 0.015076926731944766, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.729020699832065}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ZILUSDT.json b/configs/live/single_symbol_optimizations/clock/ZILUSDT.json deleted file mode 100644 index bb2adff33..000000000 --- a/configs/live/single_symbol_optimizations/clock/ZILUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1053.9336473036074, - "delay_between_fills_minutes_entry": 1188.4226158590905, - "delay_weight_close": 50.94012285173099, - "delay_weight_entry": 13.488278639236169, - "ema_dist_close": -0.000736672543383453, - "ema_dist_entry": -0.009249579125312891, - "ema_span_0": 427.3829297315412, - "ema_span_1": 1012.1527607797397, - "enabled": true, - "markup_range": 0.057311990775531674, - "min_markup": 0.009098065116248126, - "n_close_orders": 9, - "qty_pct_close": 0.015332472506392128, - "qty_pct_entry": 0.01048726383021, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.30218176740931}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1087.8317230532139, - "delay_between_fills_minutes_entry": 341.6585799112227, - "delay_weight_close": 28.709964448295608, - "delay_weight_entry": 3.008641385238876, - "ema_dist_close": 0.0014068078828880085, - "ema_dist_entry": -0.0023821325100421347, - "ema_span_0": 967.569404557553, - "ema_span_1": 1429.8804216665167, - "enabled": true, - "markup_range": 4.574240958871176e-05, - "min_markup": 0.002134869709565852, - "n_close_orders": 3, - "qty_pct_close": 0.010862519071344659, - "qty_pct_entry": 0.010027442621645625, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.690588576699774}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/clock/ZRXUSDT.json b/configs/live/single_symbol_optimizations/clock/ZRXUSDT.json deleted file mode 100644 index c3a5f86e5..000000000 --- a/configs/live/single_symbol_optimizations/clock/ZRXUSDT.json +++ /dev/null @@ -1,37 +0,0 @@ -{"config_name": "clock_0days", - "long": {"backwards_tp": true, - "delay_between_fills_minutes_close": 1013.6556446866676, - "delay_between_fills_minutes_entry": 1229.5627009493573, - "delay_weight_close": 7.691433939208178, - "delay_weight_entry": 12.411067676945622, - "ema_dist_close": -0.0050419833070748914, - "ema_dist_entry": -0.014153233650744827, - "ema_span_0": 544.7634186204002, - "ema_span_1": 1375.3233788175166, - "enabled": true, - "markup_range": 0.04852565958059424, - "min_markup": 0.009222670732232471, - "n_close_orders": 8, - "qty_pct_close": 0.023931971215108764, - "qty_pct_entry": 0.010499875693731325, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 8.826494852634767}, - "short": {"backwards_tp": true, - "delay_between_fills_minutes_close": 865.5767058037161, - "delay_between_fills_minutes_entry": 623.505580582898, - "delay_weight_close": 72.77213379158796, - "delay_weight_entry": 13.768099031341677, - "ema_dist_close": -0.0005115188655945352, - "ema_dist_entry": -0.00046516004195135667, - "ema_span_0": 913.6304517414763, - "ema_span_1": 1058.9216820979677, - "enabled": true, - "markup_range": 0.01549903792013474, - "min_markup": 0.00888148578140243, - "n_close_orders": 10, - "qty_pct_close": 0.026008643320479384, - "qty_pct_entry": 0.01965479447816872, - "wallet_exposure_limit": 1, - "we_multiplier_close": 0, - "we_multiplier_entry": 9.733412544264802}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/metrics_clock.txt b/configs/live/single_symbol_optimizations/metrics_clock.txt deleted file mode 100644 index 4184ba531..000000000 --- a/configs/live/single_symbol_optimizations/metrics_clock.txt +++ /dev/null @@ -1,440 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-11-10 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| TRXUSDT | 0.001545 | 0.001252 | 0.141 | 0.05892 | 0.01321 | 0.0154 | 136.1 | 0.09912 | 0.05159 | 0.09231 | 0.2014 | 1393.66 | 275999999.998 | -| CRVUSDT | 0.0006147 | 0.001018 | 0.04582 | 0.01218 | 0.02278 | 0.01946 | 51.08 | 0.09944 | 0.07807 | 0.07768 | 0.2188 | 1163.71 | 275999999.999 | -| EOSUSDT | 0.0009313 | 0.001178 | 0.09531 | 0.03478 | 0.01388 | 0.01492 | 59.43 | 0.09163 | 0.05236 | 0.0923 | 0.1533 | 1400.66 | 275999999.999 | -| DUSKUSDT | 0.000508 | 0.0009672 | 0.05289 | 0.02212 | 0.009879 | 0.01077 | 17.73 | 0.08958 | 0.08878 | 0.08423 | 0.1433 | 670.85 | 275999999.999 | -| TOMOUSDT | 0.0007582 | 0.0007786 | 0.0445 | 0.01919 | 0.02009 | 0.019 | 54.05 | 0.09925 | 0.0762 | 0.08733 | 0.171 | 1122.71 | 275999999.999 | -| AAVEUSDT | 0.0008563 | 0.0009943 | 0.07795 | 0.02591 | 0.02016 | 0.01832 | 46.97 | 0.09046 | 0.08806 | 0.08376 | 0.1517 | 1118.71 | 275999999.999 | -| EGLDUSDT | 0.0007905 | 0.001345 | 0.09418 | 0.04724 | 0.01529 | 0.01965 | 65.85 | 0.09281 | 0.06289 | 0.08231 | 0.1983 | 1150.71 | 275999999.999 | -| ALPHAUSDT | 0.0005321 | 0.0009965 | 0.06229 | 0.02193 | 0.01831 | 0.01835 | 59.93 | 0.09935 | 0.04298 | 0.08778 | 0.2197 | 1080.71 | 275999999.999 | -| CTSIUSDT | 0.0005803 | 0.0009705 | 0.06282 | 0.0154 | 0.01755 | 0.01659 | 80.0 | 0.09503 | 0.0513 | 0.08605 | 0.2383 | 743.85 | 275999999.999 | -| ETHUSDT | 0.0005621 | 0.0007247 | 0.06809 | 0.01012 | 0.01158 | 0.01123 | 64.97 | 0.05818 | 0.03092 | 0.04182 | 0.1143 | 1408.0 | 275999999.999 | -| XVGUSDT | 0.001059 | 0.00135 | 0.206 | 0.1177 | 0.01713 | 0.01465 | 40.65 | 0.08088 | 0.06554 | 0.07632 | 0.09775 | 126.5 | 275999999.999 | -| OMGUSDT | 0.0007063 | 0.00106 | 0.0617 | 0.02646 | 0.01172 | 0.01148 | 61.8 | 0.06063 | 0.02801 | 0.05704 | 0.1547 | 1224.62 | 275999999.999 | -| MINAUSDT | 0.000815 | 0.0008784 | 0.08596 | 0.03419 | 0.00923 | 0.008402 | 31.88 | 0.05443 | 0.03885 | 0.05217 | 0.07466 | 274.54 | 275999999.999 | -| IDEXUSDT | 0.0006898 | 0.0008432 | 0.1226 | 0.06238 | 0.01489 | 0.01312 | 48.2 | 0.06866 | 0.1123 | 0.06739 | 0.09202 | 189.5 | 275999999.999 | -| ACHUSDT | 0.0005863 | 0.0006351 | 0.06091 | 0.01527 | 0.01421 | 0.01232 | 60.87 | 0.05909 | 0.0806 | 0.04097 | 0.07154 | 259.39 | 275999999.999 | -| QNTUSDT | 0.0006298 | 0.0004189 | 0.1197 | 0.04733 | 0.01234 | 0.01056 | 53.82 | 0.05814 | 0.1494 | 0.03977 | 0.06315 | 384.89 | 275999999.999 | -| FLMUSDT | 0.0009038 | 0.001121 | 0.07509 | 0.03099 | 0.02046 | 0.019 | 57.95 | 0.09221 | 0.0911 | 0.07952 | 0.1596 | 1135.71 | 275999999.999 | -| AXSUSDT | 0.0006994 | 0.001011 | 0.05872 | 0.01687 | 0.01896 | 0.01744 | 87.3 | 0.08401 | 0.07814 | 0.05644 | 0.168 | 1083.7 | 275999999.999 | -| UMAUSDT | 0.0008365 | 0.0007834 | 0.07071 | 0.02664 | 0.00846 | 0.008087 | 22.87 | 0.05261 | 0.05989 | 0.0521 | 0.05873 | 182.48 | 275999999.999 | -| ARKMUSDT | 0.000882 | 0.0008581 | 0.0391 | 0.01432 | 0.008601 | 0.00679 | 17.37 | 0.03271 | 0.06617 | 0.02606 | 0.04683 | 103.88 | 275999999.999 | -| TRBUSDT | 0.0006467 | 0.001015 | 0.04114 | 0.01469 | 0.02039 | 0.01904 | 58.55 | 0.09952 | 0.07533 | 0.08591 | 0.2014 | 1161.71 | 275999999.999 | -| HBARUSDT | 0.0008801 | 0.001814 | 0.07788 | 0.02835 | 0.01193 | 0.01334 | 39.82 | 0.09836 | 0.03433 | 0.09485 | 0.2024 | 966.71 | 275999999.999 | -| GALUSDT | 0.0007968 | 0.001342 | 0.1108 | 0.05576 | 0.01512 | 0.01431 | 40.45 | 0.07373 | 0.08073 | 0.0757 | 0.1762 | 552.41 | 275999999.999 | -| BANDUSDT | 0.0005405 | 0.0008325 | 0.04576 | 0.01079 | 0.02263 | 0.02084 | 78.62 | 0.0988 | 0.04923 | 0.06803 | 0.1306 | 1197.71 | 275999999.999 | -| AGIXUSDT | 0.0009782 | 0.0007414 | 0.06227 | 0.001318 | 0.01878 | 0.01639 | 37.27 | 0.08895 | 0.1369 | 0.04087 | 0.106 | 265.4 | 275999999.999 | -| DEFIUSDT | 0.0005728 | 0.001168 | 0.08826 | 0.03139 | 0.01752 | 0.01752 | 70.4 | 0.09835 | 0.09613 | 0.09672 | 0.1948 | 1167.71 | 275999999.999 | -| ENJUSDT | 0.0007594 | 0.001127 | 0.09161 | 0.03197 | 0.01876 | 0.01817 | 37.98 | 0.0999 | 0.06745 | 0.09346 | 0.2029 | 1135.71 | 275999999.999 | -| SNXUSDT | 0.0006767 | 0.001362 | 0.06014 | 0.02403 | 0.01467 | 0.01746 | 43.23 | 0.09116 | 0.03797 | 0.08278 | 0.1693 | 1181.7 | 275999999.999 | -| IOSTUSDT | 0.0006158 | 0.0007051 | 0.07968 | 0.02531 | 0.01662 | 0.01737 | 46.73 | 0.0987 | 0.1113 | 0.07553 | 0.2357 | 1356.66 | 275999999.999 | -| MTLUSDT | 0.0008269 | 0.001073 | 0.07337 | 0.02231 | 0.02067 | 0.02664 | 53.57 | 0.0951 | 0.06734 | 0.06867 | 0.2038 | 952.71 | 275999999.999 | -| FETUSDT | 0.0008009 | 0.001176 | 0.06078 | 0.01422 | 0.009418 | 0.007753 | 56.9 | 0.04191 | 0.003986 | 0.03674 | 0.0668 | 295.89 | 275999999.999 | -| HOTUSDT | 0.0005597 | 0.001409 | 0.04855 | 0.01909 | 0.009062 | 0.01251 | 49.45 | 0.09603 | 0.0569 | 0.09619 | 0.2234 | 953.71 | 275999999.999 | -| 1000SHIBUSDT | 0.0005833 | 0.001347 | 0.05837 | 0.0266 | 0.01006 | 0.01423 | 79.27 | 0.0945 | 0.05402 | 0.09261 | 0.17 | 912.26 | 275999999.999 | -| ZENUSDT | 0.000803 | 0.001187 | 0.07098 | 0.02006 | 0.01902 | 0.02002 | 46.68 | 0.09608 | 0.04936 | 0.07684 | 0.1986 | 1079.71 | 275999999.999 | -| SPELLUSDT | 0.0008874 | 0.0006695 | 0.0981 | 0.01795 | 0.01734 | 0.0145 | 34.78 | 0.07927 | 0.09829 | 0.06827 | 0.1237 | 428.5 | 275999999.999 | -| JASMYUSDT | 0.0006846 | 0.0008015 | 0.08242 | 0.01708 | 0.01506 | 0.01449 | 24.35 | 0.09231 | 0.05393 | 0.07411 | 0.1539 | 567.85 | 275999999.999 | -| RENUSDT | 0.0005134 | 0.0009214 | 0.0469 | 0.01044 | 0.01953 | 0.01859 | 55.3 | 0.0986 | 0.04077 | 0.07265 | 0.2032 | 1121.71 | 275999999.999 | -| BNBUSDT | 0.0007836 | 0.0009349 | 0.09139 | 0.03363 | 0.01299 | 0.01404 | 64.38 | 0.08282 | 0.05542 | 0.07806 | 0.1912 | 1367.66 | 275999999.999 | -| NEARUSDT | 0.0005569 | 0.0008937 | 0.08688 | 0.04612 | 0.0204 | 0.02141 | 51.27 | 0.09499 | 0.06208 | 0.09031 | 0.127 | 1119.66 | 275999999.999 | -| EDUUSDT | 0.0007483 | 0.0008636 | 0.09982 | 0.02772 | 0.01816 | 0.01597 | 26.62 | 0.0728 | 0.08021 | 0.04341 | 0.08625 | 192.5 | 275999999.999 | -| API3USDT | 0.0005019 | 0.001019 | 0.05671 | 0.008258 | 0.01591 | 0.01411 | 46.7 | 0.06792 | 0.04866 | 0.05118 | 0.1015 | 624.85 | 275999999.999 | -| AMBUSDT | 0.0009657 | 0.001106 | 0.06238 | 0.00853 | 0.01716 | 0.01329 | 14.6 | 0.06242 | 0.1137 | 0.04269 | 0.08245 | 223.5 | 275999999.999 | -| BELUSDT | 0.0006177 | 0.0008177 | 0.0442 | 0.01224 | 0.01999 | 0.01858 | 51.38 | 0.09207 | 0.07388 | 0.06819 | 0.178 | 1085.71 | 275999999.999 | -| CELRUSDT | 0.001023 | 0.002063 | 0.0954 | 0.04054 | 0.01496 | 0.01504 | 62.72 | 0.09552 | 0.02315 | 0.09336 | 0.2125 | 954.71 | 275999999.999 | -| DASHUSDT | 0.0005541 | 0.0006965 | 0.04809 | 0.009753 | 0.01691 | 0.01718 | 74.92 | 0.09438 | 0.06249 | 0.06222 | 0.2106 | 1373.66 | 275999999.999 | -| DENTUSDT | 0.0007139 | 0.0009243 | 0.07969 | 0.02523 | 0.01565 | 0.01579 | 34.47 | 0.09529 | 0.04581 | 0.07534 | 0.2029 | 959.83 | 275999999.999 | -| MAVUSDT | 0.001032 | 0.0008616 | 0.1374 | 0.06541 | 0.02132 | 0.01636 | 23.97 | 0.08334 | 0.1437 | 0.08069 | 0.09738 | 132.5 | 275999999.999 | -| YFIUSDT | 0.0006872 | 0.001389 | 0.08423 | 0.04609 | 0.01819 | 0.01886 | 67.53 | 0.09974 | 0.03945 | 0.09318 | 0.1719 | 1164.71 | 275999999.999 | -| ATAUSDT | 0.0007332 | 0.001029 | 0.07232 | 0.01166 | 0.01443 | 0.01253 | 53.4 | 0.05947 | 0.02244 | 0.04531 | 0.09183 | 799.85 | 275999999.999 | -| OCEANUSDT | 0.0009234 | 0.001319 | 0.06361 | 0.02101 | 0.01518 | 0.016 | 38.92 | 0.07475 | 0.0369 | 0.06136 | 0.1967 | 1100.71 | 275999999.999 | -| BLZUSDT | 0.0008412 | 0.001338 | 0.05649 | 0.01337 | 0.01962 | 0.01826 | 80.92 | 0.09919 | 0.02702 | 0.08677 | 0.2399 | 1147.7 | 275999999.999 | -| AVAXUSDT | 0.0008332 | 0.001898 | 0.08046 | 0.04947 | 0.01254 | 0.0177 | 68.9 | 0.09088 | 0.03761 | 0.08936 | 0.1667 | 1141.71 | 275999999.999 | -| SFPUSDT | 0.000714 | 0.0009961 | 0.08311 | 0.02011 | 0.0195 | 0.01799 | 55.82 | 0.09726 | 0.06287 | 0.07452 | 0.17 | 987.71 | 275999999.999 | -| ENSUSDT | 0.0006825 | 0.001295 | 0.115 | 0.06251 | 0.01476 | 0.01492 | 41.23 | 0.09422 | 0.05381 | 0.09269 | 0.1183 | 708.85 | 275999999.999 | -| 1000LUNCUSDT | 0.0006489 | 0.00119 | 0.05991 | 0.01632 | 0.00794 | 0.008203 | 55.05 | 0.05198 | 0.006979 | 0.04688 | 0.09215 | 425.46 | 275999999.999 | -| PHBUSDT | 0.0009067 | 0.0007658 | 0.08713 | 0.03647 | 0.01585 | 0.01345 | 38.63 | 0.06729 | 0.09218 | 0.06284 | 0.08778 | 265.39 | 275999999.999 | -| 1000FLOKIUSDT | 0.00143 | 0.0009874 | 0.06332 | 0.0146 | 0.00744 | 0.006486 | 29.67 | 0.03307 | 0.01774 | 0.0223 | 0.06092 | 186.31 | 275999999.999 | -| DOGEUSDT | 0.0008954 | 0.001799 | 0.07688 | 0.01243 | 0.01234 | 0.01244 | 63.68 | 0.06975 | 0.0494 | 0.04907 | 0.1275 | 1216.62 | 275999999.999 | -| BNXUSDT | 0.0008259 | 0.000965 | 0.1218 | 0.03054 | 0.0175 | 0.01627 | 53.47 | 0.08186 | 0.03185 | 0.06085 | 0.09202 | 259.38 | 275999999.999 | -| HIGHUSDT | 0.001134 | 0.0008727 | 0.09139 | 0.02233 | 0.01974 | 0.01634 | 25.92 | 0.07621 | 0.1273 | 0.05849 | 0.07084 | 274.89 | 275999999.999 | -| IMXUSDT | 0.0006304 | 0.001132 | 0.05257 | 0.0117 | 0.009846 | 0.008486 | 42.23 | 0.04757 | 0.0107 | 0.04091 | 0.1133 | 635.85 | 275999999.999 | -| 1INCHUSDT | 0.0005615 | 0.001323 | 0.06265 | 0.0369 | 0.007897 | 0.01115 | 41.27 | 0.08115 | 0.07801 | 0.07941 | 0.1551 | 1048.58 | 275999999.999 | -| XLMUSDT | 0.0007445 | 0.0008655 | 0.09456 | 0.03487 | 0.01443 | 0.0178 | 60.9 | 0.09991 | 0.07623 | 0.08729 | 0.2385 | 1388.66 | 275999999.999 | -| LITUSDT | 0.0005545 | 0.001132 | 0.05829 | 0.016 | 0.01931 | 0.01808 | 50.68 | 0.09909 | 0.08069 | 0.09226 | 0.1903 | 993.71 | 275999999.999 | -| LDOUSDT | 0.0007037 | 0.001059 | 0.08251 | 0.03984 | 0.01203 | 0.01203 | 75.45 | 0.0852 | 0.05105 | 0.08363 | 0.1133 | 412.5 | 275999999.999 | -| BLUEBIRDUSDT | 0.0005273 | 0.0005901 | 0.115 | 0.04826 | 0.008443 | 0.009052 | 27.13 | 0.05152 | 0.1322 | 0.0445 | 0.06997 | 371.5 | 275999999.999 | -| RLCUSDT | 0.0005727 | 0.0008574 | 0.03879 | 0.009333 | 0.02162 | 0.02061 | 48.95 | 0.09155 | 0.09665 | 0.063 | 0.2334 | 1195.71 | 275999999.999 | -| XVSUSDT | 0.0006547 | 0.0007245 | 0.06383 | 0.02093 | 0.01266 | 0.0131 | 59.42 | 0.07821 | 0.05883 | 0.06883 | 0.1066 | 209.89 | 275999999.999 | -| SXPUSDT | 0.0006821 | 0.001085 | 0.06261 | 0.01357 | 0.0199 | 0.01837 | 55.7 | 0.09356 | 0.08189 | 0.06978 | 0.151 | 1205.62 | 275999999.999 | -| AGLDUSDT | 0.001402 | 0.001197 | 0.1398 | 0.08382 | 0.01524 | 0.01271 | 98.97 | 0.09105 | 0.1157 | 0.08889 | 0.1183 | 102.89 | 275999999.999 | -| PENDLEUSDT | 0.0006058 | 0.0009207 | 0.1089 | 0.03437 | 0.01504 | 0.01454 | 44.37 | 0.09116 | 0.07109 | 0.08745 | 0.1054 | 103.89 | 275999999.999 | -| CHZUSDT | 0.000639 | 0.001505 | 0.04582 | 0.01472 | 0.009693 | 0.01117 | 64.95 | 0.05943 | 0.007515 | 0.0501 | 0.2192 | 1021.71 | 275999999.999 | -| KEYUSDT | 0.0005482 | 0.0008806 | 0.06564 | 0.005631 | 0.01493 | 0.01307 | 20.33 | 0.08023 | 0.09806 | 0.05067 | 0.1353 | 168.5 | 275999999.999 | -| MAGICUSDT | 0.0008924 | 0.001032 | 0.07105 | 0.01725 | 0.01776 | 0.01535 | 28.4 | 0.08684 | 0.06916 | 0.07942 | 0.1034 | 287.87 | 275999999.999 | -| RUNEUSDT | 0.0006103 | 0.001289 | 0.05837 | 0.02139 | 0.01431 | 0.01553 | 64.7 | 0.0937 | 0.02463 | 0.08506 | 0.2179 | 1160.7 | 275999999.999 | -| BLURUSDT | 0.001074 | 0.001197 | 0.1661 | 0.08187 | 0.01253 | 0.01219 | 26.68 | 0.08036 | 0.04425 | 0.07338 | 0.1379 | 194.5 | 275999999.999 | -| DOTUSDT | 0.000701 | 0.001485 | 0.1215 | 0.08252 | 0.0162 | 0.0195 | 69.18 | 0.08232 | 0.103 | 0.07723 | 0.2154 | 1173.71 | 275999999.999 | -| WLDUSDT | 0.001111 | 0.001519 | 0.07354 | 0.02848 | 0.01204 | 0.01178 | 32.88 | 0.09429 | 0.007261 | 0.08373 | 0.1499 | 107.5 | 275999999.999 | -| BATUSDT | 0.0007137 | 0.001083 | 0.08728 | 0.0322 | 0.01875 | 0.01718 | 50.53 | 0.09666 | 0.05784 | 0.09087 | 0.1576 | 1364.66 | 275999999.999 | -| INJUSDT | 0.0007494 | 0.001136 | 0.1285 | 0.07525 | 0.01756 | 0.01575 | 49.15 | 0.08711 | 0.148 | 0.09805 | 0.1224 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.000663 | 0.001476 | 0.06107 | 0.02455 | 0.01401 | 0.01513 | 73.02 | 0.09743 | 0.03448 | 0.09786 | 0.2289 | 1240.62 | 275999999.999 | -| COTIUSDT | 0.0007618 | 0.001246 | 0.08434 | 0.02972 | 0.01945 | 0.01712 | 26.93 | 0.09258 | 0.05809 | 0.08481 | 0.1871 | 973.71 | 275999999.999 | -| RADUSDT | 0.001228 | 0.0009832 | 0.1341 | 0.03991 | 0.01162 | 0.01008 | 30.83 | 0.05258 | 0.05289 | 0.04357 | 0.05487 | 182.5 | 275999999.999 | -| COMBOUSDT | 0.000854 | 0.000974 | 0.1524 | 0.08072 | 0.01914 | 0.01618 | 28.6 | 0.09209 | 0.131 | 0.08627 | 0.1078 | 159.5 | 275999999.999 | -| IOTAUSDT | 0.0007135 | 0.0006736 | 0.07642 | 0.02832 | 0.01922 | 0.01909 | 56.85 | 0.09666 | 0.0998 | 0.06299 | 0.2182 | 1365.66 | 275999999.999 | -| RVNUSDT | 0.000538 | 0.0008858 | 0.07415 | 0.01801 | 0.01564 | 0.01646 | 46.45 | 0.09982 | 0.0679 | 0.08752 | 0.1837 | 988.71 | 275999999.999 | -| ICXUSDT | 0.0005485 | 0.00108 | 0.06521 | 0.0373 | 0.0124 | 0.01498 | 79.3 | 0.09457 | 0.02963 | 0.08885 | 0.2101 | 1149.71 | 275999999.999 | -| RNDRUSDT | 0.0009174 | 0.001364 | 0.07425 | 0.0229 | 0.01137 | 0.009352 | 32.07 | 0.04971 | 0.01611 | 0.04274 | 0.07167 | 278.89 | 275999999.999 | -| XMRUSDT | 0.0007881 | 0.001129 | 0.09571 | 0.04254 | 0.01059 | 0.01341 | 36.25 | 0.09907 | 0.02862 | 0.09218 | 0.1834 | 1374.66 | 275999999.999 | -| CVXUSDT | 0.0008076 | 0.00071 | 0.1159 | 0.04073 | 0.01783 | 0.01598 | 58.95 | 0.08648 | 0.09946 | 0.08236 | 0.1278 | 412.49 | 275999999.999 | -| CTKUSDT | 0.000612 | 0.001164 | 0.05998 | 0.02375 | 0.01033 | 0.01143 | 43.82 | 0.06531 | 0.03218 | 0.05817 | 0.1827 | 1084.71 | 275999999.999 | -| COMPUSDT | 0.0008787 | 0.001139 | 0.07514 | 0.02663 | 0.0176 | 0.01687 | 46.73 | 0.09846 | 0.04397 | 0.09448 | 0.2198 | 1226.62 | 275999999.999 | -| GMXUSDT | 0.0009254 | 0.0009757 | 0.1298 | 0.03758 | 0.01448 | 0.01281 | 50.58 | 0.05615 | 0.07971 | 0.04818 | 0.06646 | 264.39 | 275999999.999 | -| TUSDT | 0.0005859 | 0.000472 | 0.04324 | 0.01338 | 0.0119 | 0.01199 | 48.35 | 0.07466 | 0.07887 | 0.0714 | 0.1073 | 280.46 | 275999999.999 | -| SUIUSDT | 0.001371 | 0.001062 | 0.111 | 0.03897 | 0.01508 | 0.01384 | 31.1 | 0.072 | 0.06888 | 0.07064 | 0.08696 | 189.33 | 275999999.999 | -| MKRUSDT | 0.0007241 | 0.00114 | 0.0567 | 0.02225 | 0.01065 | 0.01282 | 73.92 | 0.07676 | 0.05144 | 0.07346 | 0.206 | 1182.71 | 275999999.999 | -| XTZUSDT | 0.0005837 | 0.001036 | 0.08014 | 0.02851 | 0.01651 | 0.01638 | 79.93 | 0.09867 | 0.04369 | 0.09416 | 0.1819 | 1371.67 | 275999999.999 | -| SOLUSDT | 0.0005475 | 0.00117 | 0.05051 | 0.01869 | 0.01355 | 0.01523 | 70.18 | 0.08298 | 0.04674 | 0.08197 | 0.1632 | 1150.71 | 275999999.999 | -| OPUSDT | 0.0008659 | 0.001245 | 0.07922 | 0.02098 | 0.01782 | 0.01561 | 54.13 | 0.08725 | 0.03199 | 0.08448 | 0.1841 | 525.41 | 275999999.999 | -| STXUSDT | 0.0007166 | 0.001363 | 0.09392 | 0.02667 | 0.0146 | 0.01221 | 65.8 | 0.05892 | 0.08613 | 0.04041 | 0.05906 | 260.39 | 275999999.999 | -| THETAUSDT | 0.0007166 | 0.001413 | 0.06566 | 0.02645 | 0.01104 | 0.01357 | 48.3 | 0.09062 | 0.01909 | 0.0815 | 0.2337 | 1260.66 | 275999999.999 | -| ARBUSDT | 0.0009091 | 0.0004777 | 0.06517 | 0.005168 | 0.01499 | 0.01332 | 40.22 | 0.07099 | 0.1159 | 0.02939 | 0.03805 | 230.37 | 275999999.999 | -| SKLUSDT | 0.000728 | 0.001575 | 0.06677 | 0.02057 | 0.01878 | 0.0179 | 46.62 | 0.09593 | 0.03262 | 0.08702 | 0.1925 | 1065.68 | 275999999.999 | -| SSVUSDT | 0.001036 | 0.000983 | 0.1002 | 0.03716 | 0.01749 | 0.01466 | 41.08 | 0.07694 | 0.07197 | 0.07258 | 0.123 | 257.5 | 275999999.999 | -| LQTYUSDT | 0.001108 | 0.000869 | 0.04446 | 0.01055 | 0.01075 | 0.008526 | 40.63 | 0.03985 | 0.0339 | 0.02753 | 0.06908 | 243.5 | 275999999.999 | -| ASTRUSDT | 0.001237 | 0.0009168 | 0.09947 | 0.04162 | 0.01248 | 0.01029 | 30.55 | 0.04809 | 0.04428 | 0.04661 | 0.07134 | 267.89 | 275999999.999 | -| HOOKUSDT | 0.00105 | 0.0009412 | 0.0979 | 0.01422 | 0.01909 | 0.01588 | 38.25 | 0.07618 | 0.118 | 0.04521 | 0.06227 | 289.87 | 275999999.999 | -| RDNTUSDT | 0.001009 | 0.001127 | 0.114 | 0.04 | 0.01267 | 0.01147 | 44.02 | 0.05936 | 0.01741 | 0.04512 | 0.07715 | 217.5 | 275999999.999 | -| NMRUSDT | 0.0008633 | 0.001235 | 0.139 | 0.04889 | 0.01204 | 0.01215 | 30.92 | 0.09278 | 0.02107 | 0.08469 | 0.112 | 139.5 | 275999999.999 | -| NKNUSDT | 0.001177 | 0.001464 | 0.08796 | 0.03239 | 0.01498 | 0.01613 | 53.63 | 0.09868 | 0.01288 | 0.08704 | 0.1886 | 943.71 | 275999999.999 | -| ALICEUSDT | 0.000874 | 0.001111 | 0.1148 | 0.04711 | 0.02065 | 0.01964 | 60.85 | 0.09022 | 0.03835 | 0.07004 | 0.1127 | 967.87 | 275999999.999 | -| UNFIUSDT | 0.001259 | 0.001716 | 0.07351 | 0.01742 | 0.01768 | 0.01642 | 25.85 | 0.09988 | 0.07328 | 0.08701 | 0.2462 | 992.71 | 275999999.999 | -| LTCUSDT | 0.0007422 | 0.0008169 | 0.06105 | 0.01303 | 0.01424 | 0.01559 | 51.77 | 0.09768 | 0.06217 | 0.08438 | 0.1973 | 1399.66 | 275999999.999 | -| CKBUSDT | 0.0008869 | 0.001011 | 0.07532 | 0.01718 | 0.01132 | 0.009391 | 31.33 | 0.05026 | 0.04495 | 0.04157 | 0.07739 | 253.5 | 275999999.999 | -| STMXUSDT | 0.0007165 | 0.0008592 | 0.0672 | 0.02425 | 0.01639 | 0.01717 | 44.0 | 0.09948 | 0.03843 | 0.08966 | 0.1771 | 961.71 | 275999999.999 | -| ZRXUSDT | 0.0005934 | 0.001026 | 0.0453 | 0.007496 | 0.01759 | 0.01586 | 39.32 | 0.0891 | 0.1256 | 0.06721 | 0.222 | 1232.62 | 275999999.999 | -| ICPUSDT | 0.0008115 | 0.0006348 | 0.08637 | 0.01459 | 0.01746 | 0.01436 | 30.07 | 0.0735 | 0.1264 | 0.05652 | 0.09377 | 407.89 | 275999999.999 | -| REEFUSDT | 0.001138 | 0.001188 | 0.1034 | 0.03519 | 0.02099 | 0.01828 | 43.08 | 0.09857 | 0.07859 | 0.09125 | 0.2064 | 989.7 | 275999999.999 | -| BTCDOMUSDT | 0.0006638 | 0.0003493 | 0.13 | 0.03031 | 0.01014 | 0.009354 | 65.35 | 0.04607 | 0.06622 | 0.03447 | 0.0468 | 870.85 | 275999999.999 | -| TRUUSDT | 0.0008219 | 0.001012 | 0.1014 | 0.002296 | 0.02122 | 0.01694 | 52.38 | 0.08726 | 0.1023 | 0.04845 | 0.1192 | 246.5 | 275999999.999 | -| XRPUSDT | 0.0008925 | 0.001297 | 0.06209 | 0.01799 | 0.01052 | 0.01163 | 45.93 | 0.07129 | 0.02664 | 0.0631 | 0.2113 | 1402.65 | 275999999.999 | -| MDTUSDT | 0.001045 | 0.00121 | 0.158 | 0.07472 | 0.01157 | 0.01034 | 42.88 | 0.05145 | 0.01331 | 0.04367 | 0.07088 | 131.5 | 275999999.999 | -| PERPUSDT | 0.0005811 | 0.0005192 | 0.08768 | 0.04814 | 0.01365 | 0.01293 | 46.77 | 0.08836 | 0.1388 | 0.08731 | 0.1088 | 247.5 | 275999999.999 | -| 1000PEPEUSDT | 0.001268 | 0.001759 | 0.1162 | 0.04254 | 0.0151 | 0.01428 | 56.27 | 0.0944 | 0.008215 | 0.08096 | 0.2017 | 187.31 | 275999999.999 | -| DGBUSDT | 0.000575 | 0.001064 | 0.0821 | 0.02694 | 0.0154 | 0.01692 | 60.07 | 0.09895 | 0.06921 | 0.08583 | 0.2276 | 931.85 | 275999999.999 | -| UNIUSDT | 0.0005918 | 0.001045 | 0.07384 | 0.02377 | 0.01855 | 0.01616 | 53.38 | 0.08109 | 0.03766 | 0.06754 | 0.1489 | 1146.71 | 275999999.999 | -| XEMUSDT | 0.0002604 | 0.0007762 | 0.02711 | 0.006579 | 0.01217 | 0.01459 | 53.4 | 0.07956 | 0.1306 | 0.06191 | 0.2376 | 980.71 | 276000000.0 | -| KNCUSDT | 0.0004179 | 0.001114 | 0.03222 | 0.005088 | 0.01615 | 0.01561 | 85.48 | 0.0948 | 0.0285 | 0.07153 | 0.2448 | 1234.63 | 276000000.0 | -| LRCUSDT | 0.0004572 | 0.000886 | 0.03756 | 0.005514 | 0.01768 | 0.0157 | 66.92 | 0.0865 | 0.1328 | 0.05125 | 0.2484 | 1115.7 | 276000000.0 | -| QTUMUSDT | 0.0003406 | 0.0007656 | 0.02832 | 0.002673 | 0.01459 | 0.0137 | 85.7 | 0.06417 | 0.03889 | 0.02628 | 0.2162 | 1357.66 | 276000000.0 | -| RSRUSDT | 0.0004719 | 0.00113 | 0.05742 | 0.01441 | 0.01985 | 0.0176 | 57.05 | 0.09359 | 0.06778 | 0.08581 | 0.1362 | 1115.7 | 276000000.0 | -| MANAUSDT | 0.0003629 | 0.0008848 | 0.04697 | 0.00495 | 0.01565 | 0.01439 | 77.02 | 0.07162 | 0.06405 | 0.04517 | 0.1828 | 968.71 | 276000000.0 | -| ROSEUSDT | 0.0003022 | 0.0004469 | 0.05289 | 0.01424 | 0.01722 | 0.01715 | 68.83 | 0.09452 | 0.07141 | 0.07262 | 0.1481 | 677.85 | 276000000.0 | -| FTMUSDT | 0.0003444 | 0.001007 | 0.03347 | 0.006719 | 0.01773 | 0.0171 | 67.95 | 0.08742 | 0.05325 | 0.06061 | 0.2189 | 1140.71 | 276000000.0 | -| LPTUSDT | 0.0004254 | 0.0008836 | 0.04543 | 0.006221 | 0.01713 | 0.01496 | 68.28 | 0.08097 | 0.03064 | 0.06283 | 0.1738 | 727.85 | 276000000.0 | -| FXSUSDT | 0.0002731 | 0.0005423 | 0.03958 | 0.005317 | 0.0135 | 0.01014 | 39.73 | 0.04361 | 0.0457 | 0.02538 | 0.05321 | 292.87 | 276000000.0 | -| AUDIOUSDT | 0.0001744 | 0.0004388 | 0.03995 | 0.0141 | 0.01795 | 0.01635 | 56.48 | 0.08115 | 0.1437 | 0.06632 | 0.1555 | 811.85 | 276000000.0 | -| ETCUSDT | 0.000394 | 0.0006325 | 0.04337 | 0.009252 | 0.01657 | 0.01726 | 82.87 | 0.09578 | 0.06933 | 0.0696 | 0.1875 | 1392.66 | 276000000.0 | -| OGNUSDT | 0.000499 | 0.001185 | 0.06402 | 0.0141 | 0.01864 | 0.01613 | 60.48 | 0.08219 | 0.1143 | 0.06231 | 0.2284 | 951.71 | 276000000.0 | -| WOOUSDT | 0.0004822 | 0.0009384 | 0.04334 | 0.01619 | 0.01085 | 0.01102 | 53.48 | 0.07133 | 0.01682 | 0.06505 | 0.1176 | 579.85 | 276000000.0 | -| SUSHIUSDT | 0.00025 | 0.0003747 | 0.04113 | 0.009439 | 0.02272 | 0.02088 | 59.87 | 0.09997 | 0.1008 | 0.05223 | 0.1344 | 1160.71 | 276000000.0 | -| CELOUSDT | 0.0004757 | 0.000552 | 0.06264 | 0.01608 | 0.01853 | 0.01631 | 47.02 | 0.0835 | 0.1109 | 0.07242 | 0.09865 | 772.85 | 276000000.0 | -| APEUSDT | 0.0003221 | 0.0004737 | 0.04243 | 0.008172 | 0.01549 | 0.01336 | 56.03 | 0.06063 | 0.07795 | 0.03579 | 0.08257 | 601.37 | 276000000.0 | -| ADAUSDT | 0.0003048 | 0.0004221 | 0.04195 | 0.007778 | 0.01578 | 0.01614 | 63.13 | 0.0844 | 0.07193 | 0.05874 | 0.1685 | 1377.66 | 276000000.0 | -| GRTUSDT | 0.0004809 | 0.001203 | 0.04781 | 0.01284 | 0.01164 | 0.01189 | 45.18 | 0.0861 | 0.08192 | 0.07589 | 0.2204 | 1054.71 | 276000000.0 | -| APTUSDT | 0.0003165 | 0.0006353 | 0.05349 | 0.02478 | 0.01049 | 0.01197 | 49.45 | 0.08808 | 0.04817 | 0.08083 | 0.2287 | 385.92 | 276000000.0 | -| HFTUSDT | 0.0004717 | 0.0003071 | 0.04016 | 0.009224 | 0.01542 | 0.01434 | 61.2 | 0.08783 | 0.145 | 0.07555 | 0.1026 | 216.5 | 276000000.0 | -| LUNA2USDT | 0.0002615 | 0.000782 | 0.02199 | 0.001235 | 0.01049 | 0.009983 | 41.3 | 0.05441 | 0.1203 | 0.02513 | 0.2148 | 424.87 | 276000000.0 | -| BALUSDT | 0.0003857 | 0.00062 | 0.05319 | 0.01074 | 0.01936 | 0.0177 | 58.5 | 0.0999 | 0.04439 | 0.08629 | 0.1992 | 1163.71 | 276000000.0 | -| STGUSDT | 0.000364 | 0.0006167 | 0.07167 | 0.03487 | 0.01414 | 0.01295 | 63.78 | 0.0829 | 0.05335 | 0.07844 | 0.1109 | 440.5 | 276000000.0 | -| SANDUSDT | 0.0004864 | 0.001247 | 0.04997 | 0.01519 | 0.01684 | 0.01664 | 70.3 | 0.09953 | 0.05282 | 0.08826 | 0.2199 | 1017.71 | 276000000.0 | -| GTCUSDT | 0.0004101 | 0.0005996 | 0.06146 | 0.02166 | 0.02346 | 0.02105 | 57.0 | 0.09646 | 0.06699 | 0.07403 | 0.1795 | 880.85 | 276000000.0 | -| ONEUSDT | 0.0002716 | 0.0009625 | 0.06895 | 0.02654 | 0.01934 | 0.01847 | 63.0 | 0.09996 | 0.09554 | 0.09192 | 0.1883 | 965.71 | 276000000.0 | -| LINAUSDT | 0.0004656 | 0.0007125 | 0.05011 | 0.009176 | 0.02011 | 0.01739 | 64.78 | 0.08358 | 0.0615 | 0.06916 | 0.1823 | 964.71 | 276000000.0 | -| FLOWUSDT | 0.0003471 | 0.0006651 | 0.05467 | 0.01099 | 0.01565 | 0.01542 | 67.78 | 0.093 | 0.05737 | 0.08068 | 0.1517 | 636.85 | 276000000.0 | -| KAVAUSDT | 0.0003196 | 0.000563 | 0.03793 | 0.01433 | 0.01716 | 0.02299 | 74.57 | 0.06688 | 0.03335 | 0.04422 | 0.1495 | 1198.7 | 276000000.0 | -| JOEUSDT | 0.0002952 | 0.0003526 | 0.04628 | 0.009973 | 0.0162 | 0.01352 | 40.6 | 0.06093 | 0.1062 | 0.04281 | 0.06716 | 224.49 | 276000000.0 | -| ONTUSDT | 0.0004997 | 0.0009832 | 0.06651 | 0.0253 | 0.01686 | 0.01578 | 41.72 | 0.08489 | 0.04653 | 0.07713 | 0.141 | 1366.66 | 276000000.0 | -| DARUSDT | 0.0002457 | 0.0004398 | 0.06064 | 0.03289 | 0.0143 | 0.01391 | 61.97 | 0.08182 | 0.05811 | 0.07724 | 0.1036 | 558.85 | 276000000.0 | -| MATICUSDT | 0.0004673 | 0.001153 | 0.03947 | 0.01503 | 0.01105 | 0.01208 | 62.93 | 0.09874 | 0.02077 | 0.08869 | 0.2135 | 1112.71 | 276000000.0 | -| VETUSDT | 0.0004102 | 0.0007035 | 0.05114 | 0.01396 | 0.02049 | 0.01958 | 56.88 | 0.09514 | 0.07915 | 0.05555 | 0.2058 | 1363.66 | 276000000.0 | -| IDUSDT | 0.0003191 | 0.0005395 | 0.05915 | 0.02365 | 0.01673 | 0.01414 | 65.27 | 0.07158 | 0.06194 | 0.06489 | 0.1071 | 230.39 | 276000000.0 | -| ANKRUSDT | 0.0004643 | 0.001268 | 0.04648 | 0.0196 | 0.01477 | 0.01484 | 72.15 | 0.09631 | 0.09503 | 0.09473 | 0.1763 | 1015.71 | 276000000.0 | -| NEOUSDT | 0.0004349 | 0.0007897 | 0.04788 | 0.01174 | 0.01474 | 0.01428 | 52.37 | 0.06985 | 0.0412 | 0.04732 | 0.1141 | 1360.63 | 276000000.0 | -| BCHUSDT | 0.0003737 | 0.0004497 | 0.04116 | 0.003083 | 0.01541 | 0.0155 | 60.87 | 0.07691 | 0.06585 | 0.03091 | 0.2254 | 1408.0 | 276000000.0 | -| ANTUSDT | 0.0001952 | 0.0002697 | 0.04275 | 0.01908 | 0.01926 | 0.01836 | 71.98 | 0.09602 | 0.1141 | 0.07185 | 0.1233 | 681.83 | 276000000.0 | -| ARUSDT | 0.0002483 | 0.0006196 | 0.04039 | 0.005116 | 0.0177 | 0.01555 | 53.23 | 0.0742 | 0.09114 | 0.04739 | 0.1779 | 771.85 | 276000000.0 | -| FILUSDT | 0.0004113 | 0.0006605 | 0.04546 | 0.01471 | 0.01383 | 0.016 | 58.13 | 0.09932 | 0.04825 | 0.08737 | 0.2215 | 1118.75 | 276000000.0 | -| FOOTBALLUSDT | 0.0003343 | 0.0006046 | 0.05734 | 0.008196 | 0.01039 | 0.01049 | 54.88 | 0.05678 | 0.08615 | 0.0279 | 0.07596 | 433.87 | 276000000.0 | -| PEOPLEUSDT | 0.0004766 | 0.0009629 | 0.06049 | 0.006032 | 0.01912 | 0.01723 | 48.33 | 0.08401 | 0.0955 | 0.047 | 0.1273 | 684.83 | 276000000.0 | -| ATOMUSDT | 0.0003974 | 0.0006683 | 0.04341 | 0.009073 | 0.01817 | 0.01831 | 76.02 | 0.09502 | 0.05999 | 0.06676 | 0.174 | 1370.49 | 276000000.0 | -| ZILUSDT | 0.0004727 | 0.001014 | 0.06113 | 0.02225 | 0.01655 | 0.01627 | 44.28 | 0.0987 | 0.0931 | 0.09214 | 0.1771 | 1238.62 | 276000000.0 | -| LINKUSDT | 0.0004343 | 0.0009527 | 0.0577 | 0.0274 | 0.01309 | 0.0138 | 50.62 | 0.0905 | 0.05122 | 0.08923 | 0.2117 | 1391.66 | 276000000.0 | -| STORJUSDT | 0.0003825 | 0.0005721 | 0.04904 | 0.01611 | 0.01912 | 0.01786 | 58.52 | 0.09803 | 0.1118 | 0.08274 | 0.1765 | 1148.7 | 276000000.0 | -| KSMUSDT | 0.000294 | 0.0005286 | 0.03525 | 0.004817 | 0.01708 | 0.01478 | 50.8 | 0.06896 | 0.06815 | 0.03974 | 0.1313 | 1120.71 | 276000000.0 | -| ZECUSDT | 0.00046 | 0.001026 | 0.04885 | 0.02098 | 0.01664 | 0.01722 | 80.48 | 0.09873 | 0.03742 | 0.09005 | 0.1901 | 1372.66 | 276000000.0 | -| TLMUSDT | 0.0001825 | 0.0004235 | 0.1435 | 0.1105 | 0.01392 | 0.0144 | 51.1 | 0.09138 | 0.1248 | 0.0853 | 0.1163 | 223.48 | 276000000.0 | -| CFXUSDT | 0.0009222 | 0.0009359 | 0.1099 | 0.04263 | 0.02183 | 0.02006 | 63.72 | 0.1008 | 0.1289 | 0.09194 | 0.1132 | 261.39 | 276000813.687 | -| MASKUSDT | 0.0002472 | 0.0003444 | 0.03334 | 0.001855 | 0.02248 | 0.02068 | 59.33 | 0.1017 | 0.09715 | 0.03532 | 0.1106 | 803.85 | 276001728.704 | -| BTCUSDT | 0.0001503 | 0.0001993 | 0.03334 | 0.002 | 0.01605 | 0.01825 | 113.5 | 0.1019 | 0.1418 | 0.03516 | 0.2492 | 1408.0 | 276001931.348 | -| IOTXUSDT | 0.0003289 | 0.0004697 | 0.04894 | 0.00882 | 0.01976 | 0.01871 | 58.07 | 0.1069 | 0.08065 | 0.08648 | 0.1899 | 818.85 | 276006948.416 | -| CHRUSDT | 0.0004064 | 0.0009839 | 0.05616 | 0.01938 | 0.02104 | 0.02039 | 40.37 | 0.1132 | 0.1216 | 0.09241 | 0.1851 | 971.71 | 276013164.359 | -| 1000XECUSDT | 0.0001976 | 0.0002622 | 0.05813 | 0.01678 | 0.01817 | 0.01968 | 48.45 | 0.1077 | 0.157 | 0.08684 | 0.1886 | 782.85 | 276077729.041 | -| DYDXUSDT | 0.0001876 | 0.0004084 | 0.04736 | 0.01039 | 0.03103 | 0.02763 | 68.48 | 0.1393 | 0.1553 | 0.09743 | 0.1593 | 789.85 | 276092610.159 | -| BAKEUSDT | 0.0002363 | 0.0004897 | 0.04159 | 0.01575 | 0.0193 | 0.0186 | 56.98 | 0.1116 | 0.1765 | 0.09944 | 0.2169 | 903.71 | 276276568.527 | -| ARPAUSDT | 0.000198 | 0.0003453 | 0.04679 | 0.02348 | 0.01721 | 0.01679 | 74.55 | 0.08942 | 0.1836 | 0.08379 | 0.159 | 750.85 | 276335932.822 | -| GALAUSDT | 0.0001714 | 0.0004433 | 0.04428 | 0.01583 | 0.01893 | 0.02053 | 53.07 | 0.1425 | 0.1881 | 0.1308 | 0.2063 | 781.85 | 279504607.873 | -| C98USDT | 0.0002206 | 0.0002688 | 0.04778 | 0.01545 | 0.02329 | 0.02422 | 53.78 | 0.187 | 0.1698 | 0.1696 | 0.2046 | 806.85 | 283245080.502 | -| USDCUSDT | -4.882e-06 | -4.012e-06 | 0.0103 | 0.0 | 0.0001332 | 0.000158 | 23.97 | 0.001315 | 0.9729 | 0.001187 | 0.001192 | 241.29 | 284228558.14 | -| GMTUSDT | 0.0004476 | 0.0008175 | 0.1766 | 0.08953 | 0.02461 | 0.02849 | 68.67 | 0.1832 | 0.4669 | 0.1735 | 0.1925 | 603.83 | 286601095.65 | -| LEVERUSDT | -0.0006052 | 0.0004361 | 0.1769 | 0.1062 | 0.04178 | 0.03587 | 70.12 | 0.2596 | 0.645 | 0.2168 | 0.2345 | 223.49 | 292787293.131 | -| WAVESUSDT | 0.000577 | 0.00112 | 0.1472 | 0.1207 | 0.067 | 0.05874 | 19.03 | 0.09569 | 2.305 | 0.08698 | 0.206 | 1183.71 | 297548192.654 | -| KLAYUSDT | 8.279e-05 | 0.0001645 | 0.09709 | 0.07409 | 0.02357 | 0.0291 | 65.28 | 0.223 | 0.5017 | 0.2146 | 0.2844 | 757.85 | 325538144.885 | -| COCOSUSDT | 1.937e-05 | 0.0001937 | 0.03659 | 0.0 | 50.01 | 0.5047 | 4024.0 | 0.0453 | 0.504 | 0.008449 | 0.03264 | 260.38 | 667580176.194 | -| HNTUSDT | 0.0001746 | 0.0007357 | 0.1527 | 0.1311 | 10.05 | 0.1507 | 5615.0 | 0.1352 | 0.836 | 0.1257 | 0.2377 | 1136.71 | 832580312.053 | -| CVCUSDT | 0.000108 | 0.0006815 | 0.02725 | 0.00886 | 20.02 | 0.2166 | 8272.0 | 0.1204 | 0.2341 | 0.09491 | 0.2387 | 1092.71 | 1089621657.54 | -| FTTUSDT | 5.402e-05 | 0.0005402 | 0.04583 | 0.01757 | 50.01 | 0.5096 | 8636.0 | 0.07592 | 0.5145 | 0.05079 | 0.1065 | 572.85 | 1128859551.67 | -| BTSUSDT | 4.947e-05 | 0.0004413 | 0.1091 | 0.004941 | 30.01 | 0.3124 | 10740.0 | 0.08663 | 0.3366 | 0.0515 | 0.1734 | 1010.71 | 1337933058.63 | -| SRMUSDT | 4.155e-05 | 0.0002382 | 0.0309 | 0.00932 | 20.02 | 0.229 | 8616.0 | 0.1621 | 0.2999 | 0.1143 | 0.4622 | 1159.91 | 1338344657.88 | -| RAYUSDT | 8.009e-06 | 0.0001714 | 0.2079 | 0.1832 | 30.11 | 0.3872 | 8624.0 | 0.6401 | 1.164 | 0.411 | 0.5417 | 810.85 | 1457474256.15 | -| SCUSDT | 6.404e-05 | 0.0006404 | 0.02104 | 0.002763 | 40.01 | 0.4118 | 12230.0 | 0.08767 | 0.4315 | 0.0422 | 0.2294 | 940.71 | 1487548741.81 | -| BTCSTUSDT | 1.02e-06 | 1.02e-05 | 0.0001061 | 0.0 | 80.0 | 0.8018 | 23330.0 | 0.01126 | 0.8 | 0.0002598 | 0.007286 | 979.71 | 2600700000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| 1000FLOKIUSDT | 0.002542 | 0.001178 | 0.01989 | 0.00163 | 0.005939 | 0.006042 | 51.52 | 0.03499 | 0.0009537 | 0.01849 | 0.1138 | 186.31 | 275999999.997 | -| BLURUSDT | 0.003236 | 0.001779 | 0.09043 | 0.01788 | 0.01068 | 0.01064 | 58.6 | 0.06263 | 0.01209 | 0.05341 | 0.0951 | 194.5 | 275999999.997 | -| RADUSDT | 0.002517 | 0.001807 | 0.1509 | 0.0385 | 0.009237 | 0.008501 | 34.75 | 0.05159 | 0.01561 | 0.04303 | 0.07385 | 182.5 | 275999999.997 | -| LQTYUSDT | 0.002534 | 0.001889 | 0.08215 | 0.03968 | 0.01267 | 0.01444 | 25.1 | 0.0719 | 0.06241 | 0.07716 | 0.2373 | 243.5 | 275999999.997 | -| XVGUSDT | 0.001973 | 0.001698 | 0.07819 | 0.04231 | 0.008501 | 0.00835 | 51.43 | 0.05278 | 0.03801 | 0.05737 | 0.07968 | 126.5 | 275999999.998 | -| MINAUSDT | 0.001772 | 0.001332 | 0.04403 | 0.009933 | 0.006927 | 0.007072 | 79.22 | 0.04558 | 0.003616 | 0.0428 | 0.2033 | 274.54 | 275999999.998 | -| IDEXUSDT | 0.001874 | 0.00115 | 0.04529 | 0.004809 | 0.008782 | 0.006826 | 58.48 | 0.0328 | 0.04423 | 0.02817 | 0.04537 | 189.5 | 275999999.998 | -| ACHUSDT | 0.001543 | 0.001315 | 0.09003 | 0.03863 | 0.008491 | 0.01003 | 15.95 | 0.06976 | 0.04281 | 0.07703 | 0.1202 | 259.39 | 275999999.998 | -| UMAUSDT | 0.0021 | 0.001418 | 0.103 | 0.01045 | 0.009409 | 0.01005 | 44.53 | 0.06223 | 0.02311 | 0.05108 | 0.1744 | 182.48 | 275999999.998 | -| ARKMUSDT | 0.002311 | 0.002136 | 0.06909 | 0.01164 | 0.0069 | 0.006311 | 15.48 | 0.03468 | 0.002459 | 0.02272 | 0.06179 | 103.88 | 275999999.998 | -| GALUSDT | 0.001601 | 0.001637 | 0.1065 | 0.0354 | 0.0106 | 0.01235 | 55.55 | 0.07657 | 0.01076 | 0.07844 | 0.171 | 552.41 | 275999999.998 | -| FXSUSDT | 0.002087 | 0.001698 | 0.1839 | 0.08525 | 0.0157 | 0.01526 | 52.08 | 0.07615 | 0.06754 | 0.0868 | 0.1084 | 292.87 | 275999999.998 | -| FETUSDT | 0.001803 | 0.001693 | 0.0893 | 0.04061 | 0.01292 | 0.01316 | 39.58 | 0.08675 | 0.0398 | 0.09695 | 0.1392 | 295.89 | 275999999.998 | -| HOTUSDT | 0.001534 | 0.001538 | 0.1036 | 0.02091 | 0.01223 | 0.01265 | 39.58 | 0.08012 | 0.04216 | 0.08027 | 0.212 | 953.71 | 275999999.998 | -| SPELLUSDT | 0.001888 | 0.001977 | 0.1497 | 0.06235 | 0.006675 | 0.007878 | 22.98 | 0.0554 | 0.01817 | 0.0594 | 0.1281 | 428.5 | 275999999.998 | -| RENUSDT | 0.001915 | 0.001766 | 0.096 | 0.01772 | 0.01961 | 0.01871 | 50.55 | 0.09773 | 0.03507 | 0.08775 | 0.2477 | 1121.71 | 275999999.998 | -| EDUUSDT | 0.001714 | 0.00149 | 0.0435 | 0.01053 | 0.007915 | 0.007848 | 54.05 | 0.05004 | 0.02007 | 0.05095 | 0.1329 | 192.5 | 275999999.998 | -| AMBUSDT | 0.001751 | 0.001616 | 0.0748 | 0.009387 | 0.015 | 0.01554 | 71.37 | 0.08554 | 0.01829 | 0.07412 | 0.1602 | 223.5 | 275999999.998 | -| HFTUSDT | 0.001756 | 0.0009768 | 0.04444 | 0.006707 | 0.009081 | 0.007225 | 96.48 | 0.03612 | 0.02578 | 0.03819 | 0.06127 | 216.5 | 275999999.998 | -| MAVUSDT | 0.002188 | 0.002061 | 0.1193 | 0.05344 | 0.008149 | 0.009537 | 17.55 | 0.0736 | 0.02084 | 0.08118 | 0.1174 | 132.5 | 275999999.998 | -| OCEANUSDT | 0.001756 | 0.001818 | 0.1084 | 0.04436 | 0.01298 | 0.01425 | 39.47 | 0.0884 | 0.01469 | 0.09827 | 0.2212 | 1100.71 | 275999999.998 | -| BNXUSDT | 0.00208 | 0.001454 | 0.03024 | 0.0005775 | 0.009763 | 0.007659 | 73.87 | 0.03643 | 0.01264 | 0.01494 | 0.1039 | 259.38 | 275999999.998 | -| HIGHUSDT | 0.0018 | 0.002003 | 0.04873 | 0.008297 | 0.01028 | 0.008541 | 62.37 | 0.04534 | 0.005281 | 0.03903 | 0.08138 | 274.89 | 275999999.998 | -| LITUSDT | 0.001568 | 0.002072 | 0.07743 | 0.02497 | 0.01416 | 0.01318 | 67.95 | 0.08264 | 0.01977 | 0.09117 | 0.1933 | 993.71 | 275999999.998 | -| RLCUSDT | 0.001576 | 0.001641 | 0.08859 | 0.02588 | 0.01837 | 0.01886 | 66.82 | 0.0857 | 0.02359 | 0.0751 | 0.1919 | 1195.71 | 275999999.998 | -| PENDLEUSDT | 0.002046 | 0.001376 | 0.1595 | 0.08965 | 0.01592 | 0.0128 | 43.33 | 0.07151 | 0.1051 | 0.07876 | 0.09757 | 103.89 | 275999999.998 | -| CHZUSDT | 0.001981 | 0.00241 | 0.1203 | 0.04985 | 0.0083 | 0.008976 | 27.93 | 0.06253 | 0.01414 | 0.06406 | 0.1246 | 1021.71 | 275999999.998 | -| COMBOUSDT | 0.00225 | 0.001986 | 0.1125 | 0.04864 | 0.007131 | 0.00817 | 17.85 | 0.05669 | 0.01869 | 0.0615 | 0.09099 | 159.5 | 275999999.998 | -| SUIUSDT | 0.001801 | 0.001352 | 0.05702 | 0.02488 | 0.007651 | 0.007069 | 43.77 | 0.03817 | 0.01889 | 0.03847 | 0.07172 | 189.33 | 275999999.998 | -| ARBUSDT | 0.001523 | 0.001099 | 0.1031 | 0.02195 | 0.01521 | 0.0145 | 24.02 | 0.08738 | 0.07372 | 0.08294 | 0.1481 | 230.37 | 275999999.998 | -| SKLUSDT | 0.001668 | 0.001688 | 0.09314 | 0.03187 | 0.0128 | 0.01357 | 46.05 | 0.08417 | 0.008972 | 0.08876 | 0.1976 | 1065.68 | 275999999.998 | -| SSVUSDT | 0.001829 | 0.001559 | 0.04995 | 0.0104 | 0.00932 | 0.007989 | 80.07 | 0.04463 | 0.009961 | 0.04783 | 0.1011 | 257.5 | 275999999.998 | -| HOOKUSDT | 0.001795 | 0.001473 | 0.08726 | 0.02115 | 0.01505 | 0.01562 | 56.83 | 0.08485 | 0.02439 | 0.08897 | 0.1492 | 289.87 | 275999999.998 | -| RDNTUSDT | 0.00167 | 0.001308 | 0.0916 | 0.02909 | 0.01182 | 0.01016 | 37.03 | 0.06868 | 0.0455 | 0.07934 | 0.1096 | 217.5 | 275999999.998 | -| NMRUSDT | 0.001816 | 0.001465 | 0.07491 | 0.0178 | 0.01006 | 0.008502 | 36.02 | 0.04982 | 0.04806 | 0.048 | 0.1352 | 139.5 | 275999999.998 | -| CKBUSDT | 0.001554 | 0.001238 | 0.0576 | 0.01583 | 0.009761 | 0.008827 | 105.2 | 0.0625 | 0.04632 | 0.06852 | 0.1444 | 253.5 | 275999999.998 | -| REEFUSDT | 0.001503 | 0.001976 | 0.05981 | 0.01294 | 0.01084 | 0.009733 | 79.95 | 0.05266 | 0.00633 | 0.05215 | 0.2302 | 989.7 | 275999999.998 | -| TRUUSDT | 0.001639 | 0.001396 | 0.1213 | 0.04772 | 0.01762 | 0.01664 | 26.63 | 0.08462 | 0.06263 | 0.0923 | 0.1125 | 246.5 | 275999999.998 | -| TLMUSDT | 0.001739 | 0.0008866 | 0.02723 | 1.864e-05 | 0.008133 | 0.006969 | 93.45 | 0.03345 | 0.02255 | 0.01217 | 0.02928 | 223.48 | 275999999.998 | -| MDTUSDT | 0.002244 | 0.001667 | 0.1112 | 0.03227 | 0.0135 | 0.01388 | 21.67 | 0.09217 | 0.04527 | 0.08251 | 0.1801 | 131.5 | 275999999.998 | -| XEMUSDT | 0.001368 | 0.001616 | 0.08886 | 0.03284 | 0.009369 | 0.0112 | 48.65 | 0.07725 | 0.02745 | 0.0864 | 0.2357 | 980.71 | 275999999.999 | -| EOSUSDT | 0.0008078 | 0.001059 | 0.08115 | 0.02725 | 0.009851 | 0.0115 | 31.42 | 0.08725 | 0.06582 | 0.09792 | 0.2154 | 1400.66 | 275999999.999 | -| DUSKUSDT | 0.0009527 | 0.00105 | 0.06456 | 0.01541 | 0.009282 | 0.009303 | 34.4 | 0.05257 | 0.01407 | 0.04286 | 0.1201 | 670.85 | 275999999.999 | -| LEVERUSDT | 0.001155 | 0.001157 | 0.0951 | 0.03207 | 0.01435 | 0.01491 | 77.08 | 0.07969 | 0.02027 | 0.07673 | 0.1562 | 223.49 | 275999999.999 | -| CTSIUSDT | 0.0005673 | 0.0006054 | 0.04736 | 0.007447 | 0.01551 | 0.01573 | 54.7 | 0.08148 | 0.04134 | 0.05185 | 0.1948 | 743.85 | 275999999.999 | -| KNCUSDT | 0.0005427 | 0.0007715 | 0.0371 | 0.01143 | 0.01777 | 0.01542 | 54.92 | 0.08394 | 0.1018 | 0.09128 | 0.2184 | 1234.63 | 275999999.999 | -| OMGUSDT | 0.001331 | 0.001468 | 0.08148 | 0.03266 | 0.01075 | 0.01314 | 17.8 | 0.08761 | 0.04661 | 0.09976 | 0.2104 | 1224.62 | 275999999.999 | -| FLMUSDT | 0.0006371 | 0.000555 | 0.04924 | 0.01348 | 0.02332 | 0.02466 | 82.15 | 0.09438 | 0.1253 | 0.05242 | 0.1838 | 1135.71 | 275999999.999 | -| TRBUSDT | 0.000989 | 0.0008523 | 0.05132 | 0.01461 | 0.01918 | 0.01836 | 78.7 | 0.09426 | 0.05381 | 0.08909 | 0.2493 | 1161.71 | 275999999.999 | -| 1000XECUSDT | 0.001107 | 0.001118 | 0.1013 | 0.03913 | 0.0107 | 0.0146 | 51.07 | 0.0888 | 0.02494 | 0.07952 | 0.2217 | 782.85 | 275999999.999 | -| MANAUSDT | 0.0006735 | 0.0009637 | 0.04591 | 0.01816 | 0.00755 | 0.008455 | 25.43 | 0.04318 | 0.01437 | 0.04014 | 0.09706 | 968.71 | 275999999.999 | -| LPTUSDT | 0.0006213 | 0.0005644 | 0.04318 | 0.005826 | 0.01974 | 0.01952 | 64.18 | 0.09707 | 0.08685 | 0.07683 | 0.2095 | 727.85 | 275999999.999 | -| HBARUSDT | 0.0008157 | 0.001472 | 0.05732 | 0.02532 | 0.006804 | 0.008339 | 20.75 | 0.06946 | 0.04706 | 0.07705 | 0.2099 | 966.71 | 275999999.999 | -| AGIXUSDT | 0.001308 | 0.0009251 | 0.0447 | 0.00706 | 0.01392 | 0.01191 | 32.0 | 0.06589 | 0.09085 | 0.07101 | 0.1085 | 265.4 | 275999999.999 | -| DEFIUSDT | 0.0005504 | 0.0007531 | 0.07226 | 0.01429 | 0.01699 | 0.01406 | 46.62 | 0.05819 | 0.09958 | 0.05177 | 0.2027 | 1167.71 | 275999999.999 | -| ENJUSDT | 0.001188 | 0.001546 | 0.07069 | 0.01648 | 0.01293 | 0.01272 | 49.32 | 0.08094 | 0.04008 | 0.09397 | 0.1513 | 1135.71 | 275999999.999 | -| IOSTUSDT | 0.001119 | 0.001162 | 0.07767 | 0.02236 | 0.01285 | 0.01591 | 52.75 | 0.09774 | 0.02013 | 0.07507 | 0.2247 | 1356.66 | 275999999.999 | -| MTLUSDT | 0.0005937 | 0.0006395 | 0.04318 | 0.004333 | 0.02028 | 0.01915 | 42.17 | 0.09788 | 0.1272 | 0.06537 | 0.1486 | 952.71 | 275999999.999 | -| 1000SHIBUSDT | 0.0006613 | 0.0009304 | 0.03943 | 0.007941 | 0.006823 | 0.008948 | 30.53 | 0.05672 | 0.03244 | 0.04883 | 0.1764 | 912.26 | 275999999.999 | -| ZENUSDT | 0.001064 | 0.001256 | 0.0882 | 0.03065 | 0.01451 | 0.01407 | 48.3 | 0.08147 | 0.02622 | 0.08689 | 0.2292 | 1079.71 | 275999999.999 | -| JASMYUSDT | 0.001368 | 0.001747 | 0.05262 | 0.01471 | 0.007827 | 0.007529 | 50.48 | 0.04542 | 0.01654 | 0.04538 | 0.09412 | 567.85 | 275999999.999 | -| WOOUSDT | 0.0007943 | 0.0008635 | 0.07299 | 0.02037 | 0.01407 | 0.0133 | 40.0 | 0.06351 | 0.02834 | 0.04813 | 0.08011 | 579.85 | 275999999.999 | -| SUSHIUSDT | 0.0005905 | 0.0009498 | 0.02993 | 0.007052 | 0.0103 | 0.01062 | 88.62 | 0.04396 | 0.005914 | 0.02995 | 0.1945 | 1160.71 | 275999999.999 | -| CELOUSDT | 0.000829 | 0.001131 | 0.04246 | 0.01223 | 0.01028 | 0.009163 | 57.93 | 0.051 | 0.02549 | 0.05154 | 0.1418 | 772.85 | 275999999.999 | -| NEARUSDT | 0.0005061 | 0.001023 | 0.05001 | 0.01599 | 0.01686 | 0.01504 | 50.53 | 0.06733 | 0.05183 | 0.0583 | 0.1652 | 1119.66 | 275999999.999 | -| APEUSDT | 0.0007137 | 0.0008106 | 0.05855 | 0.009128 | 0.01546 | 0.01611 | 24.73 | 0.09359 | 0.08503 | 0.06717 | 0.2467 | 601.37 | 275999999.999 | -| API3USDT | 0.001105 | 0.001182 | 0.0581 | 0.0118 | 0.01289 | 0.0146 | 64.97 | 0.08288 | 0.00981 | 0.0495 | 0.1839 | 624.85 | 275999999.999 | -| CELRUSDT | 0.001153 | 0.001342 | 0.06917 | 0.0167 | 0.01711 | 0.01717 | 76.4 | 0.08873 | 0.01187 | 0.06709 | 0.1993 | 954.71 | 275999999.999 | -| DASHUSDT | 0.0007595 | 0.0007459 | 0.0767 | 0.01753 | 0.01779 | 0.01712 | 25.52 | 0.09251 | 0.1122 | 0.09852 | 0.1821 | 1373.66 | 275999999.999 | -| LUNA2USDT | 0.001252 | 0.001463 | 0.02215 | 0.001039 | 0.007423 | 0.007349 | 62.25 | 0.03692 | 0.002847 | 0.01385 | 0.1255 | 424.87 | 275999999.999 | -| ATAUSDT | 0.000752 | 0.0007697 | 0.05444 | 0.004129 | 0.01702 | 0.01557 | 28.93 | 0.07978 | 0.09371 | 0.04578 | 0.1415 | 799.85 | 275999999.999 | -| KLAYUSDT | 0.0006821 | 0.0006546 | 0.06837 | 0.01499 | 0.01159 | 0.01527 | 96.13 | 0.09377 | 0.03056 | 0.08741 | 0.2124 | 757.85 | 275999999.999 | -| SANDUSDT | 0.0008203 | 0.0009875 | 0.05842 | 0.01612 | 0.01487 | 0.01569 | 46.72 | 0.09105 | 0.02418 | 0.09987 | 0.1935 | 1017.71 | 275999999.999 | -| GTCUSDT | 0.000597 | 0.0006591 | 0.04746 | 0.01106 | 0.01863 | 0.01847 | 101.8 | 0.09448 | 0.04114 | 0.09338 | 0.184 | 880.85 | 275999999.999 | -| AVAXUSDT | 0.001123 | 0.001135 | 0.0854 | 0.01956 | 0.01778 | 0.01814 | 46.68 | 0.095 | 0.058 | 0.07547 | 0.199 | 1141.71 | 275999999.999 | -| ONEUSDT | 0.0006397 | 0.0007598 | 0.0442 | 0.0101 | 0.01393 | 0.01416 | 54.62 | 0.09456 | 0.01537 | 0.09931 | 0.2102 | 965.71 | 275999999.999 | -| ENSUSDT | 0.001337 | 0.001445 | 0.1063 | 0.02565 | 0.01386 | 0.01321 | 37.35 | 0.06861 | 0.04674 | 0.06804 | 0.1136 | 708.85 | 275999999.999 | -| LINAUSDT | 0.0005364 | 0.0006414 | 0.03222 | 0.002163 | 0.0231 | 0.02108 | 67.73 | 0.09709 | 0.09671 | 0.04827 | 0.1658 | 964.71 | 275999999.999 | -| 1000LUNCUSDT | 0.001294 | 0.001221 | 0.08015 | 0.03754 | 0.007307 | 0.01237 | 57.3 | 0.08172 | 0.008935 | 0.07272 | 0.2136 | 425.46 | 275999999.999 | -| PHBUSDT | 0.001248 | 0.001119 | 0.07169 | 0.01642 | 0.01373 | 0.01421 | 80.68 | 0.07447 | 0.01538 | 0.06199 | 0.1235 | 265.39 | 275999999.999 | -| FLOWUSDT | 0.0006926 | 0.0009105 | 0.08861 | 0.03614 | 0.01352 | 0.01536 | 94.65 | 0.08387 | 0.03034 | 0.08998 | 0.1321 | 636.85 | 275999999.999 | -| KAVAUSDT | 0.000807 | 0.0008884 | 0.06081 | 0.01645 | 0.0156 | 0.0159 | 48.07 | 0.09223 | 0.02809 | 0.09369 | 0.233 | 1198.7 | 275999999.999 | -| IMXUSDT | 0.0007356 | 0.0009296 | 0.03387 | 0.005966 | 0.009106 | 0.008145 | 30.95 | 0.04177 | 0.02797 | 0.02988 | 0.1753 | 635.85 | 275999999.999 | -| 1INCHUSDT | 0.001194 | 0.00131 | 0.09888 | 0.02705 | 0.02031 | 0.01789 | 29.83 | 0.09581 | 0.06316 | 0.09503 | 0.2167 | 1048.58 | 275999999.999 | -| JOEUSDT | 0.001174 | 0.0009803 | 0.09695 | 0.03011 | 0.01688 | 0.01643 | 30.07 | 0.09369 | 0.06961 | 0.09808 | 0.1578 | 224.49 | 275999999.999 | -| ONTUSDT | 0.0009487 | 0.001337 | 0.06594 | 0.0211 | 0.01261 | 0.01168 | 54.62 | 0.0824 | 0.0446 | 0.09732 | 0.1838 | 1366.66 | 275999999.999 | -| DARUSDT | 0.0008795 | 0.001051 | 0.07164 | 0.02651 | 0.008606 | 0.009845 | 35.93 | 0.07979 | 0.02425 | 0.08878 | 0.208 | 558.85 | 275999999.999 | -| MATICUSDT | 0.0005955 | 0.0008684 | 0.06128 | 0.01941 | 0.01387 | 0.01453 | 50.88 | 0.08022 | 0.02283 | 0.08407 | 0.1489 | 1112.71 | 275999999.999 | -| LDOUSDT | 0.0005898 | 0.0005292 | 0.04114 | 0.006108 | 0.0214 | 0.01992 | 44.72 | 0.09156 | 0.09465 | 0.05136 | 0.1037 | 412.5 | 275999999.999 | -| XVSUSDT | 0.0009709 | 0.0005382 | 0.03706 | 0.001071 | 0.01504 | 0.01479 | 43.55 | 0.08208 | 0.08702 | 0.03065 | 0.1304 | 209.89 | 275999999.999 | -| SXPUSDT | 0.0007245 | 0.0007686 | 0.04266 | 0.006089 | 0.01438 | 0.01715 | 86.0 | 0.09927 | 0.01145 | 0.06268 | 0.1922 | 1205.62 | 275999999.999 | -| IDUSDT | 0.0009694 | 0.0008885 | 0.02819 | 0.0105 | 0.006896 | 0.007227 | 43.05 | 0.04517 | 0.01771 | 0.0427 | 0.1279 | 230.39 | 275999999.999 | -| AGLDUSDT | 0.0007512 | 0.0006007 | 0.01471 | 0.0 | 0.006354 | 0.007976 | 28.32 | 0.02751 | 0.0008249 | 0.005182 | 0.01371 | 102.89 | 275999999.999 | -| ANKRUSDT | 0.00117 | 0.002166 | 0.06496 | 0.02124 | 0.0108 | 0.01166 | 50.98 | 0.0811 | 0.009524 | 0.08657 | 0.2332 | 1015.71 | 275999999.999 | -| KEYUSDT | 0.001457 | 0.001681 | 0.07055 | 0.03529 | 0.0114 | 0.01099 | 78.48 | 0.08263 | 0.04786 | 0.0925 | 0.1269 | 168.5 | 275999999.999 | -| MAGICUSDT | 0.0005762 | 0.0005592 | 0.03506 | 0.008461 | 0.0132 | 0.01249 | 86.18 | 0.08593 | 0.03132 | 0.08857 | 0.2049 | 287.87 | 275999999.999 | -| DOTUSDT | 0.0008985 | 0.001154 | 0.08391 | 0.03554 | 0.009049 | 0.01124 | 25.88 | 0.08557 | 0.04116 | 0.09984 | 0.1667 | 1173.71 | 275999999.999 | -| WLDUSDT | 0.00111 | 0.001016 | 0.03535 | 0.0 | 0.01358 | 0.01495 | 37.28 | 0.09563 | 0.00781 | 0.03881 | 0.1016 | 107.5 | 275999999.999 | -| BATUSDT | 0.001102 | 0.001256 | 0.08678 | 0.02231 | 0.01528 | 0.01339 | 32.53 | 0.06835 | 0.034 | 0.06781 | 0.1256 | 1364.66 | 275999999.999 | -| INJUSDT | 0.0008225 | 0.0009135 | 0.05259 | 0.01371 | 0.01225 | 0.01154 | 41.35 | 0.05497 | 0.03029 | 0.05339 | 0.1047 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.001059 | 0.001985 | 0.08912 | 0.02714 | 0.01233 | 0.01185 | 30.25 | 0.08198 | 0.02623 | 0.09077 | 0.196 | 1240.62 | 275999999.999 | -| COTIUSDT | 0.0008044 | 0.001237 | 0.08383 | 0.03398 | 0.01929 | 0.02105 | 43.42 | 0.08315 | 0.1382 | 0.09031 | 0.2069 | 973.71 | 275999999.999 | -| NEOUSDT | 0.000948 | 0.001304 | 0.06395 | 0.02682 | 0.01136 | 0.01177 | 98.35 | 0.07542 | 0.0478 | 0.08484 | 0.1624 | 1360.63 | 275999999.999 | -| BCHUSDT | 0.001001 | 0.0009252 | 0.07345 | 0.03135 | 0.01523 | 0.01562 | 68.83 | 0.08848 | 0.04048 | 0.09988 | 0.2492 | 1408.0 | 275999999.999 | -| ICXUSDT | 0.0007054 | 0.0007297 | 0.05319 | 0.01154 | 0.0156 | 0.01693 | 64.77 | 0.09793 | 0.0229 | 0.08549 | 0.2106 | 1149.71 | 275999999.999 | -| CVXUSDT | 0.0009581 | 0.0008992 | 0.1393 | 0.04582 | 0.01392 | 0.0141 | 48.55 | 0.07355 | 0.07532 | 0.07833 | 0.1135 | 412.49 | 275999999.999 | -| CTKUSDT | 0.0008221 | 0.001063 | 0.07391 | 0.005576 | 0.01734 | 0.01585 | 37.8 | 0.08814 | 0.06981 | 0.04798 | 0.1419 | 1084.71 | 275999999.999 | -| COMPUSDT | 0.0008828 | 0.0009674 | 0.05032 | 0.01045 | 0.01587 | 0.01523 | 50.65 | 0.08991 | 0.04963 | 0.09161 | 0.2471 | 1226.62 | 275999999.999 | -| GMXUSDT | 0.0008746 | 0.000609 | 0.05846 | 0.01654 | 0.01411 | 0.01166 | 87.73 | 0.05528 | 0.06217 | 0.04807 | 0.07468 | 264.39 | 275999999.999 | -| TUSDT | 0.001121 | 0.001019 | 0.09331 | 0.02935 | 0.007741 | 0.0102 | 41.83 | 0.07625 | 0.02767 | 0.08288 | 0.1856 | 280.46 | 275999999.999 | -| MKRUSDT | 0.0006385 | 0.0006248 | 0.0909 | 0.04853 | 0.02017 | 0.02241 | 87.55 | 0.08881 | 0.09871 | 0.07905 | 0.2338 | 1182.71 | 275999999.999 | -| XTZUSDT | 0.0006202 | 0.001192 | 0.04732 | 0.01842 | 0.009 | 0.008791 | 85.87 | 0.05346 | 0.006967 | 0.05744 | 0.1552 | 1371.67 | 275999999.999 | -| CHRUSDT | 0.0005885 | 0.0006966 | 0.04928 | 0.008427 | 0.02244 | 0.02075 | 58.32 | 0.09763 | 0.08713 | 0.07223 | 0.1909 | 971.71 | 275999999.999 | -| THETAUSDT | 0.0009831 | 0.001088 | 0.07119 | 0.02335 | 0.01075 | 0.0118 | 48.3 | 0.0733 | 0.0248 | 0.07953 | 0.1453 | 1260.66 | 275999999.999 | -| ASTRUSDT | 0.001196 | 0.0009441 | 0.03403 | 0.005455 | 0.009136 | 0.007651 | 84.03 | 0.03972 | 0.03535 | 0.03037 | 0.1343 | 267.89 | 275999999.999 | -| ATOMUSDT | 0.0007537 | 0.00133 | 0.06775 | 0.0235 | 0.009295 | 0.01091 | 31.15 | 0.08789 | 0.01494 | 0.09805 | 0.207 | 1370.49 | 275999999.999 | -| NKNUSDT | 0.0008401 | 0.001081 | 0.07117 | 0.00889 | 0.01809 | 0.01741 | 45.17 | 0.09217 | 0.07052 | 0.06264 | 0.2369 | 943.71 | 275999999.999 | -| ALICEUSDT | 0.001001 | 0.001176 | 0.07416 | 0.01268 | 0.01706 | 0.01564 | 35.0 | 0.08646 | 0.04492 | 0.08359 | 0.2049 | 967.87 | 275999999.999 | -| STMXUSDT | 0.001439 | 0.001171 | 0.04105 | 0.004665 | 0.01639 | 0.01345 | 47.95 | 0.06706 | 0.05718 | 0.04595 | 0.2245 | 961.71 | 275999999.999 | -| C98USDT | 0.0005054 | 0.0005389 | 0.03884 | 9.293e-05 | 0.02076 | 0.01923 | 37.77 | 0.09528 | 0.1387 | 0.04107 | 0.1132 | 806.85 | 275999999.999 | -| ZRXUSDT | 0.001243 | 0.001545 | 0.06849 | 0.0193 | 0.0145 | 0.01376 | 72.47 | 0.07443 | 0.04359 | 0.07883 | 0.2371 | 1232.62 | 275999999.999 | -| ICPUSDT | 0.001065 | 0.001014 | 0.07482 | 0.02123 | 0.009708 | 0.009306 | 34.47 | 0.06686 | 0.02309 | 0.07336 | 0.1788 | 407.89 | 275999999.999 | -| KSMUSDT | 0.001094 | 0.001244 | 0.08833 | 0.02798 | 0.01425 | 0.01361 | 50.47 | 0.07541 | 0.0228 | 0.08253 | 0.1322 | 1120.71 | 275999999.999 | -| ZECUSDT | 0.0005262 | 0.0008041 | 0.06274 | 0.02863 | 0.01137 | 0.0139 | 25.77 | 0.08389 | 0.05099 | 0.09349 | 0.1752 | 1372.66 | 275999999.999 | -| PERPUSDT | 0.0005699 | 0.0005691 | 0.0235 | 0.002406 | 0.007949 | 0.007471 | 86.83 | 0.03379 | 0.0005944 | 0.01569 | 0.07543 | 247.5 | 275999999.999 | -| 1000PEPEUSDT | 0.0007556 | 0.0005646 | 0.01928 | 0.004019 | 0.009132 | 0.008572 | 48.87 | 0.04409 | 0.001074 | 0.0255 | 0.08459 | 187.31 | 275999999.999 | -| DGBUSDT | 0.0009131 | 0.001521 | 0.07742 | 0.03443 | 0.01008 | 0.01161 | 84.23 | 0.08198 | 0.01407 | 0.09125 | 0.1849 | 931.85 | 275999999.999 | -| BAKEUSDT | 0.0007951 | 0.0007196 | 0.04896 | 0.006785 | 0.01672 | 0.01428 | 35.33 | 0.0692 | 0.05416 | 0.05079 | 0.1281 | 903.71 | 275999999.999 | -| UNIUSDT | 0.00133 | 0.001389 | 0.08116 | 0.03507 | 0.01044 | 0.01419 | 85.4 | 0.08867 | 0.0125 | 0.09045 | 0.2256 | 1146.71 | 275999999.999 | -| CRVUSDT | 0.0003885 | 0.0007896 | 0.03519 | 0.004596 | 0.01775 | 0.01505 | 56.23 | 0.07281 | 0.04252 | 0.05341 | 0.2351 | 1163.71 | 276000000.0 | -| TOMOUSDT | 0.00034 | 0.0004209 | 0.01583 | 0.001855 | 0.01118 | 0.008269 | 88.73 | 0.03518 | 0.0279 | 0.01298 | 0.05811 | 1122.71 | 276000000.0 | -| AAVEUSDT | 0.0003683 | 0.0004827 | 0.04207 | 0.01204 | 0.01969 | 0.01924 | 60.7 | 0.09979 | 0.04939 | 0.09656 | 0.2304 | 1118.71 | 276000000.0 | -| EGLDUSDT | 0.0003781 | 0.0006266 | 0.04944 | 0.02672 | 0.00888 | 0.01326 | 39.98 | 0.08622 | 0.02624 | 0.09629 | 0.2126 | 1150.71 | 276000000.0 | -| ALPHAUSDT | 0.0004119 | 0.0006681 | 0.04011 | 0.005392 | 0.02076 | 0.01968 | 72.92 | 0.09991 | 0.1054 | 0.0518 | 0.2058 | 1080.71 | 276000000.0 | -| ETHUSDT | 0.0002469 | 0.0003451 | 0.05516 | 0.01972 | 0.01029 | 0.01262 | 59.9 | 0.07138 | 0.04539 | 0.07617 | 0.172 | 1408.0 | 276000000.0 | -| LRCUSDT | 0.0001438 | 0.0003737 | 0.01398 | 0.003144 | 0.01446 | 0.01366 | 47.75 | 0.06612 | 0.1448 | 0.03203 | 0.2374 | 1115.7 | 276000000.0 | -| QNTUSDT | 0.0004771 | 0.0003846 | 0.04322 | 0.003094 | 0.01326 | 0.01436 | 40.17 | 0.07677 | 0.1036 | 0.04565 | 0.09085 | 384.89 | 276000000.0 | -| AXSUSDT | 0.0003063 | 0.0004198 | 0.04866 | 0.02509 | 0.01804 | 0.01911 | 41.63 | 0.09244 | 0.08002 | 0.09263 | 0.1794 | 1083.7 | 276000000.0 | -| QTUMUSDT | 0.000297 | 0.0005072 | 0.02481 | 0.007463 | 0.0111 | 0.01051 | 98.32 | 0.05386 | 0.04288 | 0.04928 | 0.2253 | 1357.66 | 276000000.0 | -| ROSEUSDT | 0.0004807 | 0.0006637 | 0.02881 | 0.006132 | 0.008645 | 0.009001 | 96.6 | 0.04762 | 0.006237 | 0.03929 | 0.1674 | 677.85 | 276000000.0 | -| BANDUSDT | 0.0004522 | 0.0006589 | 0.02669 | 0.001802 | 0.01432 | 0.01279 | 48.98 | 0.06582 | 0.02246 | 0.04167 | 0.1939 | 1197.71 | 276000000.0 | -| AUDIOUSDT | 0.000416 | 0.0004844 | 0.03407 | 0.00451 | 0.01876 | 0.01873 | 75.73 | 0.09485 | 0.06514 | 0.06057 | 0.1735 | 811.85 | 276000000.0 | -| TRXUSDT | 0.0002267 | 0.0004487 | 0.07047 | 0.02714 | 0.01363 | 0.01291 | 56.0 | 0.07301 | 0.1182 | 0.08344 | 0.1551 | 1393.66 | 276000000.0 | -| ETCUSDT | 0.0003211 | 0.000616 | 0.03192 | 0.01508 | 0.009813 | 0.01262 | 76.02 | 0.08511 | 0.03236 | 0.09715 | 0.2297 | 1392.66 | 276000000.0 | -| SNXUSDT | 0.0004174 | 0.0004756 | 0.04116 | 0.01023 | 0.02212 | 0.02083 | 53.13 | 0.09982 | 0.05837 | 0.06853 | 0.1864 | 1181.7 | 276000000.0 | -| OGNUSDT | 0.0003543 | 0.0003725 | 0.02372 | 0.001611 | 0.01722 | 0.01758 | 40.37 | 0.09841 | 0.1239 | 0.03533 | 0.2005 | 951.71 | 276000000.0 | -| BNBUSDT | 0.0003352 | 0.0004774 | 0.05618 | 0.01959 | 0.008059 | 0.01074 | 52.37 | 0.07183 | 0.01981 | 0.07915 | 0.2353 | 1367.66 | 276000000.0 | -| ADAUSDT | 0.0002589 | 0.0006554 | 0.0312 | 0.0107 | 0.01092 | 0.01101 | 62.8 | 0.061 | 0.1329 | 0.06301 | 0.2277 | 1377.66 | 276000000.0 | -| GRTUSDT | 0.0002507 | 0.0004224 | 0.02507 | 0.00372 | 0.01665 | 0.0148 | 47.02 | 0.07125 | 0.06242 | 0.04188 | 0.2498 | 1054.71 | 276000000.0 | -| APTUSDT | 0.0004782 | 0.0005298 | 0.0382 | 0.00288 | 0.0155 | 0.0166 | 37.85 | 0.09147 | 0.07364 | 0.05397 | 0.09471 | 385.92 | 276000000.0 | -| DENTUSDT | 0.0003787 | 0.0006873 | 0.03639 | 0.009235 | 0.01516 | 0.01391 | 58.2 | 0.08816 | 0.05174 | 0.09743 | 0.246 | 959.83 | 276000000.0 | -| BALUSDT | 0.0004841 | 0.0006859 | 0.06314 | 0.01631 | 0.01787 | 0.01529 | 43.52 | 0.07658 | 0.06122 | 0.07296 | 0.1378 | 1163.71 | 276000000.0 | -| YFIUSDT | 0.0004214 | 0.0007541 | 0.02855 | 0.006627 | 0.00923 | 0.00941 | 99.93 | 0.0532 | 0.007373 | 0.0476 | 0.2381 | 1164.71 | 276000000.0 | -| STGUSDT | 0.0001672 | 0.0002682 | 0.0126 | 0.001768 | 0.009435 | 0.008466 | 111.0 | 0.0399 | 0.07273 | 0.01946 | 0.1444 | 440.5 | 276000000.0 | -| DOGEUSDT | 0.0004451 | 0.0009091 | 0.02373 | 0.002914 | 0.006843 | 0.007988 | 55.58 | 0.04279 | 0.008875 | 0.02286 | 0.2225 | 1216.62 | 276000000.0 | -| XLMUSDT | 0.0004387 | 0.0006481 | 0.05174 | 0.02129 | 0.01597 | 0.01478 | 97.75 | 0.08747 | 0.06993 | 0.09788 | 0.2335 | 1388.66 | 276000000.0 | -| BLUEBIRDUSDT | 0.0003429 | 0.0003555 | 0.04858 | 0.01139 | 0.004121 | 0.004477 | 33.35 | 0.02652 | 0.01488 | 0.02592 | 0.04874 | 371.5 | 276000000.0 | -| CFXUSDT | 0.000344 | 0.0003891 | 0.03 | 0.01096 | 0.0139 | 0.01407 | 94.47 | 0.07777 | 0.07863 | 0.07673 | 0.1232 | 261.39 | 276000000.0 | -| RVNUSDT | 0.0003822 | 0.0005 | 0.03596 | 0.004866 | 0.0181 | 0.01913 | 77.22 | 0.09977 | 0.06206 | 0.05525 | 0.225 | 988.71 | 276000000.0 | -| RNDRUSDT | 0.0002848 | 0.0003654 | 0.02989 | 0.004433 | 0.01517 | 0.01302 | 51.15 | 0.06324 | 0.07585 | 0.0318 | 0.06284 | 278.89 | 276000000.0 | -| XMRUSDT | 0.0004486 | 0.001273 | 0.1108 | 0.05811 | 0.01218 | 0.01245 | 62.65 | 0.08372 | 0.07091 | 0.09785 | 0.1429 | 1374.66 | 276000000.0 | -| SOLUSDT | 0.0002547 | 0.0003514 | 0.02807 | 0.002096 | 0.02046 | 0.01758 | 37.18 | 0.07883 | 0.142 | 0.03679 | 0.248 | 1150.71 | 276000000.0 | -| STXUSDT | 0.0003606 | 0.000402 | 0.0355 | 0.01241 | 0.01448 | 0.01542 | 65.55 | 0.09058 | 0.04376 | 0.08313 | 0.1716 | 260.39 | 276000000.0 | -| DYDXUSDT | 0.0003842 | 0.0005144 | 0.04456 | 0.007572 | 0.01991 | 0.01913 | 49.42 | 0.09397 | 0.08978 | 0.08819 | 0.1485 | 789.85 | 276000000.0 | -| FOOTBALLUSDT | 0.0004432 | 0.0006637 | 0.05802 | 0.01371 | 0.006007 | 0.006838 | 33.82 | 0.0615 | 0.03287 | 0.06658 | 0.1125 | 433.87 | 276000000.0 | -| LTCUSDT | 0.0004855 | 0.0008489 | 0.07215 | 0.02666 | 0.01426 | 0.01363 | 117.9 | 0.08596 | 0.1065 | 0.09772 | 0.225 | 1399.66 | 276000000.0 | -| LINKUSDT | 0.0004386 | 0.0004793 | 0.05013 | 0.005912 | 0.01953 | 0.01871 | 50.0 | 0.0933 | 0.06007 | 0.06085 | 0.1563 | 1391.66 | 276000000.0 | -| IOTXUSDT | 0.0004211 | 0.0006346 | 0.03869 | 0.01209 | 0.01507 | 0.01405 | 61.52 | 0.07843 | 0.07172 | 0.08082 | 0.1676 | 818.85 | 276000000.0 | -| STORJUSDT | 0.0003192 | 0.0003769 | 0.0271 | 0.003612 | 0.01564 | 0.01497 | 46.93 | 0.08378 | 0.05378 | 0.05072 | 0.2367 | 1148.7 | 276000000.0 | -| XRPUSDT | 0.0004696 | 0.0008297 | 0.0323 | 0.01221 | 0.00711 | 0.01041 | 40.4 | 0.06726 | 0.02936 | 0.07409 | 0.2219 | 1402.65 | 276000000.0 | -| PEOPLEUSDT | 0.0001623 | 0.0002635 | 0.01514 | 0.0003345 | 0.01778 | 0.01847 | 61.1 | 0.1023 | 0.125 | 0.02198 | 0.2159 | 684.83 | 276002269.316 | -| WAVESUSDT | 0.0002002 | 0.0002685 | 0.01892 | 0.0009221 | 0.01918 | 0.0201 | 65.73 | 0.1036 | 0.1331 | 0.03369 | 0.2279 | 1183.71 | 276003604.902 | -| IOTAUSDT | 0.0003151 | 0.000369 | 0.04283 | 0.003163 | 0.02163 | 0.01998 | 46.67 | 0.1078 | 0.1482 | 0.06214 | 0.2449 | 1365.66 | 276007757.918 | -| SFPUSDT | 0.0002361 | 0.0003167 | 0.01775 | 0.0006284 | 0.01698 | 0.01976 | 85.47 | 0.1081 | 0.08908 | 0.02202 | 0.2258 | 987.71 | 276008060.735 | -| ZILUSDT | 0.0001239 | 0.0001741 | 0.01915 | 0.001352 | 0.02021 | 0.02134 | 81.82 | 0.1188 | 0.08221 | 0.03437 | 0.2071 | 1238.62 | 276018832.868 | -| MASKUSDT | 0.0003519 | 0.0004445 | 0.03611 | 0.004026 | 0.02475 | 0.02376 | 50.88 | 0.1196 | 0.1158 | 0.07081 | 0.2295 | 803.85 | 276019611.807 | -| FILUSDT | 0.000276 | 0.00035 | 0.03174 | 0.00598 | 0.01697 | 0.02245 | 58.62 | 0.1217 | 0.08885 | 0.07848 | 0.22 | 1118.75 | 276021674.988 | -| BLZUSDT | 0.0005457 | 0.0003757 | 0.01457 | 0.0003231 | 0.02532 | 0.02385 | 86.02 | 0.1171 | 0.1549 | 0.03558 | 0.2478 | 1147.7 | 276066067.853 | -| OPUSDT | 9.521e-05 | 0.0003404 | 0.01645 | 0.0002616 | 0.01461 | 0.01292 | 42.2 | 0.05692 | 0.1783 | 0.01796 | 0.06314 | 525.41 | 276283207.444 | -| BTCUSDT | 0.0001056 | 0.0002091 | 0.02562 | 0.002642 | 0.0113 | 0.009068 | 117.8 | 0.0392 | 0.1841 | 0.02565 | 0.08037 | 1408.0 | 276341340.974 | -| ANTUSDT | 0.0003237 | 0.0004244 | 0.051 | 0.01578 | 0.02083 | 0.01852 | 55.97 | 0.09466 | 0.189 | 0.08974 | 0.1466 | 681.83 | 276390207.181 | -| ARUSDT | 0.0001448 | 0.0002637 | 0.01364 | 0.001516 | 0.01461 | 0.01329 | 87.22 | 0.06056 | 0.2106 | 0.02557 | 0.2099 | 771.85 | 276606476.198 | -| ARPAUSDT | 0.0005484 | 0.0005233 | 0.06481 | 0.002357 | 0.02952 | 0.03698 | 22.85 | 0.2866 | 0.2348 | 0.1007 | 0.1841 | 750.85 | 277103923.454 | -| BTCDOMUSDT | 0.0001727 | 0.000188 | 0.09444 | 0.02184 | 0.01233 | 0.01127 | 106.8 | 0.0892 | 0.1968 | 0.1067 | 0.1636 | 870.85 | 277140108.195 | -| RSRUSDT | 8.442e-05 | 0.0002606 | 0.01982 | 0.002136 | 0.02589 | 0.02361 | 88.27 | 0.1101 | 0.2651 | 0.04418 | 0.1467 | 1115.7 | 277160858.443 | -| BELUSDT | 0.0002991 | 0.0003744 | 0.04082 | 0.00384 | 0.02727 | 0.03192 | 61.33 | 0.1925 | 0.2641 | 0.09198 | 0.2298 | 1085.71 | 277233902.884 | -| UNFIUSDT | 0.0005449 | 0.0005082 | 0.04846 | 7.554e-05 | 0.03735 | 0.04391 | 30.97 | 0.3255 | 0.2695 | 0.09955 | 0.2434 | 992.71 | 277420204.452 | -| VETUSDT | 3.911e-06 | 7.627e-05 | 0.01942 | 0.0 | 0.02173 | 0.02206 | 47.67 | 0.1254 | 0.8116 | 0.02822 | 0.1274 | 1363.66 | 282641713.858 | -| RUNEUSDT | -0.0001698 | 7.74e-05 | 0.03592 | 0.0037 | 0.0307 | 0.02973 | 39.7 | 0.1484 | 0.8837 | 0.1076 | 0.1883 | 1160.7 | 284141479.014 | -| GALAUSDT | 5.827e-07 | -1.746e-05 | 0.01154 | 0.0 | 0.01899 | 0.02724 | 29.03 | 0.2004 | 0.9548 | 0.03848 | 0.04992 | 781.85 | 284148811.418 | -| FTMUSDT | -9.941e-06 | -1.113e-05 | 0.01171 | 0.0 | 0.02688 | 0.03233 | 35.08 | 0.1956 | 0.9708 | 0.04053 | 0.2376 | 1140.71 | 284303659.969 | -| GMTUSDT | -3.664e-05 | -0.0001179 | 0.01199 | 0.0 | 0.01913 | 0.02696 | 33.68 | 0.2236 | 1.119 | 0.07859 | 0.1069 | 603.83 | 285812157.009 | -| USDCUSDT | -1.526e-05 | -1.807e-05 | 0.01142 | 0.0 | 0.0001806 | 0.0007681 | 17.52 | 0.01533 | 1.911 | 0.004258 | 0.004275 | 241.29 | 293609121.081 | -| COCOSUSDT | 4.315e-05 | 0.0004315 | 0.008787 | 0.0003517 | 50.0 | 0.5042 | 4023.0 | 0.03167 | 0.504 | 0.008173 | 0.02798 | 260.38 | 667438335.796 | -| HNTUSDT | 8.882e-05 | 0.0003907 | 0.0237 | 0.001059 | 10.02 | 0.1191 | 5608.0 | 0.1008 | 0.1365 | 0.03426 | 0.2072 | 1136.71 | 822367451.148 | -| CVCUSDT | -6.868e-07 | -5.498e-06 | 0.009171 | 0.0 | 20.02 | 0.2197 | 8279.0 | 0.1684 | 0.9662 | 0.02936 | 0.07548 | 1092.71 | 1097696883.69 | -| SRMUSDT | 5.099e-05 | 0.0003165 | 0.04807 | 0.001347 | 20.03 | 0.2222 | 8612.0 | 0.1053 | 0.242 | 0.03799 | 0.1017 | 1159.91 | 1123713630.24 | -| RAYUSDT | 2.694e-05 | 0.0002233 | 0.01783 | 0.001587 | 30.01 | 0.305 | 8613.0 | 0.03781 | 0.3026 | 0.02148 | 0.09736 | 810.85 | 1124410682.1 | -| FTTUSDT | 1.931e-05 | 0.0001931 | 0.01134 | 0.0004072 | 50.0 | 0.5032 | 8636.0 | 0.022 | 0.5017 | 0.006977 | 0.04405 | 572.85 | 1128715780.24 | -| BTSUSDT | 5.192e-05 | 0.000431 | 0.02351 | 0.00251 | 30.01 | 0.3074 | 10740.0 | 0.05379 | 0.308 | 0.02503 | 0.111 | 1010.71 | 1337642901.54 | -| SCUSDT | 4.099e-05 | 0.0004099 | 0.01728 | 0.001638 | 40.01 | 0.404 | 12230.0 | 0.03271 | 0.4006 | 0.0137 | 0.1598 | 940.71 | 1487252342.37 | -| BTCSTUSDT | 3.112e-06 | 3.112e-05 | 0.003789 | 2.551e-05 | 80.0 | 0.8002 | 23330.0 | 0.00577 | 0.8 | 0.0001658 | 0.008986 | 979.71 | 2600701666.67 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/metrics_neat_grid.txt b/configs/live/single_symbol_optimizations/metrics_neat_grid.txt deleted file mode 100644 index 4f08b8bf5..000000000 --- a/configs/live/single_symbol_optimizations/metrics_neat_grid.txt +++ /dev/null @@ -1,439 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-10-01 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| WLDUSDT | 0.003705 | 0.003361 | 0.1428 | 0.01295 | 24.98 | 0.01141 | 0.01198 | 0.07412 | 0.05258 | 67.5 | 1297211.49629 | -| NMRUSDT | 0.001938 | 0.002557 | 0.1178 | 0.03056 | 58.4 | 0.008457 | 0.01532 | 0.1091 | 0.02348 | 99.5 | 1297211.49806 | -| LEVERUSDT | 0.001894 | 0.001387 | 0.0958 | 0.000681 | 87.33 | 0.01785 | 0.01679 | 0.08328 | 0.03711 | 183.5 | 1297211.49811 | -| 1000PEPEUSDT | 0.001679 | 0.002991 | 0.0942 | 0.05372 | 49.88 | 0.01274 | 0.02367 | 0.1453 | 0.0236 | 147.33 | 1297211.49832 | -| UNFIUSDT | 0.001674 | 0.002452 | 0.1156 | 0.01957 | 89.38 | 0.01981 | 0.02167 | 0.1318 | 0.05355 | 951.71 | 1297211.49833 | -| AMBUSDT | 0.001609 | 0.001354 | 0.1229 | 0.02316 | 97.78 | 0.0193 | 0.02248 | 0.1231 | 0.04881 | 183.5 | 1297211.49839 | -| MDTUSDT | 0.001596 | 0.001918 | 0.06413 | 0.0009103 | 57.6 | 0.007644 | 0.01038 | 0.05356 | 0.0 | 91.5 | 1297211.4984 | -| DOGEUSDT | 0.001549 | 0.003899 | 0.1083 | 0.03109 | 138.4 | 0.009475 | 0.01892 | 0.1081 | 0.08317 | 1176.62 | 1297211.49845 | -| ARKMUSDT | 0.001528 | 0.002067 | 0.1095 | 0.0241 | 34.57 | 0.008762 | 0.00876 | 0.05233 | 0.01695 | 63.92 | 1297211.49847 | -| MKRUSDT | 0.001519 | 0.002113 | 0.1345 | 0.04657 | 79.22 | 0.01104 | 0.01665 | 0.122 | 0.09374 | 1141.71 | 1297211.49848 | -| 1000LUNCUSDT | 0.001497 | 0.002655 | 0.09379 | 0.02075 | 59.63 | 0.01129 | 0.02215 | 0.1178 | 0.04578 | 385.46 | 1297211.4985 | -| WAVESUSDT | 0.001486 | 0.002231 | 0.06172 | 0.03427 | 45.88 | 0.008682 | 0.01599 | 0.1042 | 0.01125 | 1142.71 | 1297211.49851 | -| ALPHAUSDT | 0.001463 | 0.00303 | 0.0942 | 0.04104 | 100.5 | 0.01449 | 0.02377 | 0.1395 | 0.02529 | 1039.71 | 1297211.49854 | -| HBARUSDT | 0.001431 | 0.00272 | 0.08726 | 0.02967 | 138.3 | 0.009624 | 0.01314 | 0.08896 | 0.08143 | 926.71 | 1297211.49857 | -| ASTRUSDT | 0.001428 | 0.001242 | 0.1149 | 0.07202 | 108.9 | 0.01487 | 0.01545 | 0.08045 | 0.06966 | 227.92 | 1297211.49857 | -| SOLUSDT | 0.001421 | 0.00245 | 0.05714 | 0.02527 | 71.65 | 0.01068 | 0.01942 | 0.1315 | 0.04837 | 1109.71 | 1297211.49858 | -| NKNUSDT | 0.001369 | 0.002536 | 0.1137 | 0.02997 | 86.22 | 0.01589 | 0.02214 | 0.1494 | 0.03054 | 903.71 | 1297211.49863 | -| FETUSDT | 0.001294 | 0.00223 | 0.09821 | 0.04998 | 77.98 | 0.01242 | 0.02174 | 0.1229 | 0.03047 | 255.92 | 1297211.49871 | -| XRPUSDT | 0.001276 | 0.002576 | 0.1207 | 0.02495 | 134.0 | 0.009886 | 0.01753 | 0.1432 | 0.08258 | 1362.67 | 1297211.49872 | -| CELRUSDT | 0.001267 | 0.002622 | 0.101 | 0.03434 | 107.1 | 0.01421 | 0.01943 | 0.1255 | 0.03808 | 914.71 | 1297211.49873 | -| OMGUSDT | 0.001254 | 0.002328 | 0.1166 | 0.06025 | 70.35 | 0.01388 | 0.02137 | 0.1482 | 0.04157 | 1184.62 | 1297211.49875 | -| YGGUSDT | 0.001254 | 0.003197 | 0.1046 | 0.0462 | 45.88 | 0.01292 | 0.01508 | 0.09838 | 0.0149 | 55.88 | 1297211.49875 | -| COTIUSDT | 0.001213 | 0.002614 | 0.1149 | 0.0689 | 81.87 | 0.01524 | 0.02391 | 0.1498 | 0.07805 | 933.71 | 1297211.49879 | -| XVSUSDT | 0.001155 | 0.00096 | 0.1017 | 0.01618 | 78.57 | 0.01462 | 0.01973 | 0.119 | 0.07705 | 169.92 | 1297211.49884 | -| RVNUSDT | 0.001161 | 0.002456 | 0.09262 | 0.03781 | 138.2 | 0.01213 | 0.01727 | 0.1042 | 0.06275 | 947.71 | 1297211.49884 | -| ALGOUSDT | 0.001149 | 0.002386 | 0.09496 | 0.0491 | 132.4 | 0.01469 | 0.02095 | 0.1385 | 0.06743 | 1200.62 | 1297211.49885 | -| MANAUSDT | 0.00114 | 0.002941 | 0.09041 | 0.04841 | 49.88 | 0.01118 | 0.02386 | 0.1441 | 0.02368 | 928.71 | 1297211.49886 | -| OCEANUSDT | 0.001136 | 0.001969 | 0.08931 | 0.02634 | 132.3 | 0.01968 | 0.02378 | 0.138 | 0.03549 | 1059.71 | 1297211.49886 | -| SKLUSDT | 0.001135 | 0.002554 | 0.0905 | 0.04965 | 96.1 | 0.01664 | 0.02236 | 0.1493 | 0.06127 | 1024.71 | 1297211.49886 | -| SNXUSDT | 0.001127 | 0.001984 | 0.09703 | 0.0175 | 123.9 | 0.0184 | 0.02114 | 0.1307 | 0.02768 | 1140.71 | 1297211.49887 | -| ATOMUSDT | 0.001135 | 0.002744 | 0.07643 | 0.0284 | 102.5 | 0.009744 | 0.02801 | 0.1408 | 0.01747 | 1330.5 | 1297211.49887 | -| AGLDUSDT | 0.001124 | 0.0008322 | 0.05568 | 0.02316 | 80.03 | 0.01845 | 0.01491 | 0.06243 | 0.0233 | 62.92 | 1297211.49888 | -| 1INCHUSDT | 0.001112 | 0.001725 | 0.06916 | 0.03891 | 120.0 | 0.01625 | 0.02081 | 0.1342 | 0.04274 | 1007.58 | 1297211.49889 | -| DOTUSDT | 0.001097 | 0.002884 | 0.1456 | 0.08692 | 98.27 | 0.01172 | 0.02152 | 0.1296 | 0.03718 | 1132.71 | 1297211.4989 | -| LRCUSDT | 0.001079 | 0.002658 | 0.09144 | 0.04858 | 71.2 | 0.01265 | 0.02118 | 0.14 | 0.02198 | 1074.71 | 1297211.49892 | -| GRTUSDT | 0.001078 | 0.00204 | 0.09705 | 0.004644 | 142.6 | 0.01938 | 0.02476 | 0.1473 | 0.08125 | 1013.71 | 1297211.49892 | -| BELUSDT | 0.00108 | 0.001961 | 0.07562 | 0.02772 | 65.62 | 0.01299 | 0.02098 | 0.1449 | 0.04693 | 1044.71 | 1297211.49892 | -| DGBUSDT | 0.001082 | 0.001916 | 0.1337 | 0.02616 | 120.9 | 0.01743 | 0.0257 | 0.1483 | 0.08977 | 891.88 | 1297211.49892 | -| PHBUSDT | 0.001068 | 0.00127 | 0.1297 | 0.08852 | 38.12 | 0.01392 | 0.01954 | 0.1355 | 0.04064 | 225.42 | 1297211.49893 | -| ICPUSDT | 0.001075 | 0.001456 | 0.08636 | 0.02729 | 110.3 | 0.007273 | 0.007366 | 0.04362 | 0.06567 | 367.92 | 1297211.49893 | -| MAVUSDT | 0.001062 | 0.001752 | 0.1079 | 0.04052 | 74.1 | 0.01378 | 0.01535 | 0.07441 | 0.01952 | 92.5 | 1297211.49894 | -| COMBOUSDT | 0.001063 | 0.001578 | 0.06252 | 0.03346 | 35.95 | 0.008767 | 0.01747 | 0.1304 | 0.02478 | 119.5 | 1297211.49894 | -| RLCUSDT | 0.00105 | 0.0019 | 0.0809 | 0.0163 | 112.0 | 0.01767 | 0.023 | 0.1486 | 0.02769 | 1155.71 | 1297211.49895 | -| RNDRUSDT | 0.001054 | 0.002348 | 0.07291 | 0.01412 | 55.1 | 0.009262 | 0.01277 | 0.08138 | 0.01487 | 238.92 | 1297211.49895 | -| SUSHIUSDT | 0.001037 | 0.002772 | 0.07855 | 0.03595 | 67.6 | 0.01141 | 0.01731 | 0.1433 | 0.01989 | 1119.71 | 1297211.49896 | -| RDNTUSDT | 0.00103 | 0.001614 | 0.1045 | 0.06172 | 68.68 | 0.01091 | 0.01953 | 0.1073 | 0.02433 | 177.5 | 1297211.49897 | -| STMXUSDT | 0.001033 | 0.001275 | 0.08399 | 0.02563 | 139.5 | 0.01942 | 0.02559 | 0.1491 | 0.0314 | 921.71 | 1297211.49897 | -| INJUSDT | 0.001014 | 0.001613 | 0.1128 | 0.04534 | 114.7 | 0.01531 | 0.01653 | 0.08818 | 0.06771 | 408.92 | 1297211.49899 | -| COMPUSDT | 0.0009967 | 0.001476 | 0.08497 | 0.01492 | 138.7 | 0.01975 | 0.02116 | 0.1163 | 0.03413 | 1186.62 | 1297211.499 | -| SPELLUSDT | 0.0009939 | 0.001154 | 0.07456 | 0.01587 | 83.05 | 0.008178 | 0.009507 | 0.05399 | 0.01035 | 388.5 | 1297211.49901 | -| CTKUSDT | 0.0009934 | 0.002414 | 0.1115 | 0.04822 | 133.9 | 0.01553 | 0.02155 | 0.1471 | 0.03338 | 1043.71 | 1297211.49901 | -| TOMOUSDT | 0.0009833 | 0.001351 | 0.06966 | 0.01795 | 134.9 | 0.01628 | 0.01946 | 0.1447 | 0.07789 | 1081.71 | 1297211.49902 | -| EGLDUSDT | 0.0009792 | 0.002432 | 0.1101 | 0.05823 | 85.27 | 0.01442 | 0.02573 | 0.1475 | 0.04586 | 1109.71 | 1297211.49902 | -| CHRUSDT | 0.0009779 | 0.002401 | 0.108 | 0.04682 | 118.8 | 0.01628 | 0.01538 | 0.09532 | 0.02139 | 931.71 | 1297211.49902 | -| HOOKUSDT | 0.0009781 | 0.001566 | 0.06401 | 0.01684 | 57.4 | 0.01025 | 0.01161 | 0.08043 | 0.06803 | 249.88 | 1297211.49902 | -| XVGUSDT | 0.0009685 | 0.002189 | 0.1428 | 0.07126 | 40.32 | 0.0134 | 0.01619 | 0.08854 | 0.02867 | 86.5 | 1297211.49903 | -| STXUSDT | 0.0009698 | 0.001733 | 0.09047 | 0.03024 | 91.22 | 0.01232 | 0.01717 | 0.1269 | 0.03193 | 220.42 | 1297211.49903 | -| RADUSDT | 0.0009618 | 0.001284 | 0.09755 | 0.02894 | 46.68 | 0.008503 | 0.01546 | 0.09053 | 0.09279 | 142.5 | 1297211.49904 | -| OPUSDT | 0.0009462 | 0.001729 | 0.07751 | 0.02068 | 72.12 | 0.01159 | 0.01722 | 0.1041 | 0.06443 | 485.42 | 1297211.49905 | -| HOTUSDT | 0.0009382 | 0.002346 | 0.09404 | 0.03867 | 119.0 | 0.01376 | 0.02561 | 0.1492 | 0.04749 | 913.71 | 1297211.49906 | -| ANKRUSDT | 0.0009433 | 0.00182 | 0.06444 | 0.02246 | 124.8 | 0.01038 | 0.01845 | 0.1397 | 0.06955 | 975.71 | 1297211.49906 | -| REEFUSDT | 0.0009405 | 0.001925 | 0.1261 | 0.04286 | 132.0 | 0.01885 | 0.02462 | 0.1379 | 0.07878 | 948.71 | 1297211.49906 | -| AVAXUSDT | 0.0009309 | 0.002353 | 0.09378 | 0.03236 | 116.2 | 0.01551 | 0.02128 | 0.134 | 0.03346 | 1100.71 | 1297211.49907 | -| LINKUSDT | 0.0009282 | 0.002525 | 0.1052 | 0.04867 | 103.0 | 0.01172 | 0.01601 | 0.1217 | 0.07376 | 1351.67 | 1297211.49907 | -| OGNUSDT | 0.0009166 | 0.00172 | 0.07463 | 0.008409 | 143.2 | 0.01861 | 0.0197 | 0.1149 | 0.05649 | 911.71 | 1297211.49908 | -| HFTUSDT | 0.0009085 | 0.001168 | 0.07826 | 0.01841 | 127.0 | 0.01065 | 0.01504 | 0.09426 | 0.01339 | 176.5 | 1297211.49909 | -| MAGICUSDT | 0.0009105 | 0.001773 | 0.0908 | 0.04756 | 49.85 | 0.01385 | 0.02082 | 0.1471 | 0.02477 | 247.88 | 1297211.49909 | -| RUNEUSDT | 0.0009063 | 0.002622 | 0.08324 | 0.03074 | 143.2 | 0.01806 | 0.02098 | 0.1438 | 0.01522 | 1119.71 | 1297211.49909 | -| THETAUSDT | 0.0009108 | 0.002347 | 0.07903 | 0.01649 | 130.3 | 0.0144 | 0.02175 | 0.1394 | 0.03872 | 1220.67 | 1297211.49909 | -| ZENUSDT | 0.0009044 | 0.001894 | 0.09277 | 0.01689 | 120.8 | 0.01608 | 0.02389 | 0.1481 | 0.06383 | 1038.71 | 1297211.4991 | -| NEARUSDT | 0.0008983 | 0.002252 | 0.09412 | 0.05809 | 89.23 | 0.01396 | 0.02498 | 0.1379 | 0.04111 | 1078.67 | 1297211.4991 | -| ICXUSDT | 0.0008972 | 0.001905 | 0.1195 | 0.05216 | 141.7 | 0.01556 | 0.01879 | 0.1463 | 0.07471 | 1108.71 | 1297211.4991 | -| ARBUSDT | 0.0008985 | 0.001193 | 0.07661 | 0.02079 | 126.6 | 0.01045 | 0.009793 | 0.05449 | 0.01741 | 190.38 | 1297211.4991 | -| RSRUSDT | 0.0008933 | 0.001501 | 0.05778 | 0.02024 | 122.1 | 0.01824 | 0.02107 | 0.1233 | 0.02743 | 1074.71 | 1297211.49911 | -| ALICEUSDT | 0.0008868 | 0.00232 | 0.08109 | 0.03013 | 72.07 | 0.01287 | 0.02143 | 0.1289 | 0.08279 | 927.88 | 1297211.49911 | -| GALUSDT | 0.0008753 | 0.002048 | 0.1293 | 0.04008 | 128.2 | 0.01968 | 0.02571 | 0.146 | 0.09088 | 512.42 | 1297211.49912 | -| AGIXUSDT | 0.0008763 | 0.001759 | 0.14 | 0.03899 | 74.98 | 0.01584 | 0.01945 | 0.128 | 0.0461 | 225.42 | 1297211.49912 | -| YFIUSDT | 0.0008796 | 0.003419 | 0.05377 | 0.01876 | 135.4 | 0.01244 | 0.01618 | 0.1129 | 0.029 | 1123.71 | 1297211.49912 | -| BLZUSDT | 0.0008818 | 0.001302 | 0.06139 | 0.01291 | 115.4 | 0.01936 | 0.02252 | 0.1248 | 0.02285 | 1106.71 | 1297211.49912 | -| GMXUSDT | 0.0008806 | 0.001008 | 0.09882 | 0.031 | 90.75 | 0.01471 | 0.01263 | 0.05666 | 0.02025 | 224.42 | 1297211.49912 | -| SUIUSDT | 0.0008774 | 0.001542 | 0.1237 | 0.04184 | 63.45 | 0.01276 | 0.01395 | 0.1036 | 0.04151 | 149.33 | 1297211.49912 | -| AXSUSDT | 0.0008748 | 0.002582 | 0.1061 | 0.04847 | 108.7 | 0.0155 | 0.02569 | 0.1465 | 0.03791 | 1042.71 | 1297211.49913 | -| CELOUSDT | 0.0008634 | 0.001614 | 0.1491 | 0.07857 | 122.1 | 0.01613 | 0.02213 | 0.1386 | 0.06361 | 732.88 | 1297211.49914 | -| HIGHUSDT | 0.0008533 | 0.001897 | 0.1041 | 0.06012 | 85.93 | 0.01854 | 0.02423 | 0.1425 | 0.07253 | 234.92 | 1297211.49915 | -| GALAUSDT | 0.0008535 | 0.00195 | 0.07721 | 0.04476 | 53.25 | 0.01061 | 0.02074 | 0.1332 | 0.03872 | 741.88 | 1297211.49915 | -| IMXUSDT | 0.0008375 | 0.001708 | 0.06863 | 0.03314 | 47.0 | 0.009569 | 0.01429 | 0.08915 | 0.01981 | 595.88 | 1297211.49916 | -| ETCUSDT | 0.0008314 | 0.001693 | 0.0723 | 0.02908 | 140.7 | 0.01112 | 0.02264 | 0.1412 | 0.05624 | 1352.67 | 1297211.49917 | -| MATICUSDT | 0.000833 | 0.002377 | 0.07708 | 0.02924 | 134.0 | 0.01329 | 0.0213 | 0.133 | 0.01482 | 1071.71 | 1297211.49917 | -| LINAUSDT | 0.000822 | 0.001325 | 0.06079 | 0.01942 | 113.2 | 0.01951 | 0.0227 | 0.1467 | 0.03682 | 924.71 | 1297211.49918 | -| UNIUSDT | 0.0008189 | 0.001803 | 0.05296 | 0.01684 | 141.2 | 0.01185 | 0.0146 | 0.08672 | 0.05095 | 1105.71 | 1297211.49918 | -| AAVEUSDT | 0.0008025 | 0.001932 | 0.07029 | 0.03445 | 118.4 | 0.01462 | 0.02123 | 0.1418 | 0.01869 | 1077.71 | 1297211.4992 | -| FTMUSDT | 0.0007997 | 0.002 | 0.05902 | 0.01705 | 92.87 | 0.01275 | 0.01838 | 0.1111 | 0.01852 | 1099.71 | 1297211.4992 | -| BLURUSDT | 0.0007933 | 0.001327 | 0.05998 | 0.02076 | 83.98 | 0.008753 | 0.008765 | 0.05596 | 0.04583 | 154.5 | 1297211.49921 | -| UMAUSDT | 0.0007791 | 0.001065 | 0.1206 | 0.0076 | 83.92 | 0.009925 | 0.01057 | 0.06984 | 0.05259 | 142.5 | 1297211.49922 | -| 1000SHIBUSDT | 0.0007727 | 0.002166 | 0.03517 | 0.004251 | 121.0 | 0.008234 | 0.009306 | 0.05351 | 0.0005003 | 872.29 | 1297211.49923 | -| DENTUSDT | 0.0007661 | 0.002027 | 0.06816 | 0.009422 | 130.5 | 0.01475 | 0.01851 | 0.1087 | 0.06035 | 919.83 | 1297211.49923 | -| ZILUSDT | 0.0007715 | 0.001816 | 0.09631 | 0.06236 | 114.8 | 0.01744 | 0.02494 | 0.1496 | 0.03257 | 1198.62 | 1297211.49923 | -| LDOUSDT | 0.0007572 | 0.001366 | 0.07547 | 0.003691 | 137.6 | 0.01206 | 0.01556 | 0.08944 | 0.0739 | 372.5 | 1297211.49924 | -| FILUSDT | 0.0007623 | 0.001289 | 0.07998 | 0.01512 | 142.4 | 0.01665 | 0.02286 | 0.1432 | 0.06037 | 1077.75 | 1297211.49924 | -| MINAUSDT | 0.0007538 | 0.001637 | 0.1043 | 0.05595 | 57.95 | 0.01188 | 0.02141 | 0.1274 | 0.04207 | 234.54 | 1297211.49925 | -| KEYUSDT | 0.0007471 | 0.001101 | 0.04324 | 0.01815 | 72.57 | 0.00748 | 0.01132 | 0.06502 | 0.009982 | 128.5 | 1297211.49925 | -| DEFIUSDT | 0.0007401 | 0.001651 | 0.1046 | 0.04793 | 120.9 | 0.01461 | 0.02232 | 0.1482 | 0.09327 | 1126.71 | 1297211.49926 | -| API3USDT | 0.0007355 | 0.001018 | 0.05093 | 0.004702 | 112.0 | 0.01348 | 0.01339 | 0.06987 | 0.09858 | 584.88 | 1297211.49926 | -| PENDLEUSDT | 0.0007307 | 0.0009783 | 0.06343 | 0.0006515 | 97.37 | 0.01492 | 0.01173 | 0.0545 | 0.0019 | 63.92 | 1297211.49927 | -| FLMUSDT | 0.0007177 | 0.001201 | 0.05521 | 0.02265 | 127.3 | 0.01903 | 0.02433 | 0.1493 | 0.06797 | 1094.71 | 1297211.49928 | -| SXPUSDT | 0.000715 | 0.002121 | 0.05136 | 0.0008579 | 124.5 | 0.01719 | 0.02133 | 0.1283 | 0.03525 | 1165.62 | 1297211.49928 | -| TLMUSDT | 0.0007237 | 0.0007701 | 0.1344 | 0.07809 | 109.7 | 0.01424 | 0.01726 | 0.09372 | 0.09395 | 183.5 | 1297211.49928 | -| RENUSDT | 0.0007025 | 0.001254 | 0.05991 | 0.0064 | 115.6 | 0.01952 | 0.02575 | 0.1487 | 0.02138 | 1080.71 | 1297211.4993 | -| QTUMUSDT | 0.0006882 | 0.001327 | 0.07637 | 0.02365 | 129.6 | 0.01421 | 0.01845 | 0.1173 | 0.02484 | 1317.67 | 1297211.49931 | -| BANDUSDT | 0.000691 | 0.001596 | 0.05213 | 0.009321 | 129.1 | 0.01422 | 0.01748 | 0.1042 | 0.07054 | 1157.71 | 1297211.49931 | -| SSVUSDT | 0.0006878 | 0.001051 | 0.08729 | 0.02088 | 140.3 | 0.01958 | 0.01972 | 0.1077 | 0.01981 | 217.5 | 1297211.49931 | -| LUNA2USDT | 0.0006757 | 0.0009424 | 0.07021 | 0.06192 | 46.7 | 0.01384 | 0.02732 | 0.1169 | 0.0749 | 384.88 | 1297211.49932 | -| CHZUSDT | 0.0006766 | 0.001518 | 0.0589 | 0.01483 | 137.7 | 0.01502 | 0.02325 | 0.1444 | 0.03502 | 980.71 | 1297211.49932 | -| XTZUSDT | 0.0006791 | 0.001623 | 0.06531 | 0.02728 | 135.8 | 0.0121 | 0.0187 | 0.1235 | 0.0173 | 1331.67 | 1297211.49932 | -| MTLUSDT | 0.0006733 | 0.001185 | 0.06892 | 0.003743 | 87.62 | 0.01961 | 0.02078 | 0.1187 | 0.06637 | 912.71 | 1297211.49933 | -| CTSIUSDT | 0.000653 | 0.001076 | 0.06508 | 0.006748 | 116.7 | 0.01542 | 0.01859 | 0.1109 | 0.03781 | 703.88 | 1297211.49935 | -| BATUSDT | 0.0006386 | 0.001351 | 0.08865 | 0.006888 | 134.9 | 0.01936 | 0.02126 | 0.1152 | 0.05723 | 1324.67 | 1297211.49936 | -| LTCUSDT | 0.000635 | 0.001339 | 0.08773 | 0.02749 | 136.1 | 0.01613 | 0.02056 | 0.1266 | 0.02915 | 1359.67 | 1297211.49937 | -| ARPAUSDT | 0.0006321 | 0.0008433 | 0.03937 | 0.02239 | 75.52 | 0.007331 | 0.01113 | 0.06274 | 0.01629 | 710.88 | 1297211.49937 | -| IOSTUSDT | 0.0006155 | 0.001381 | 0.05124 | 0.01623 | 133.8 | 0.01326 | 0.018 | 0.1302 | 0.0191 | 1316.67 | 1297211.49938 | -| JASMYUSDT | 0.0006158 | 0.0009695 | 0.06067 | 0.0004736 | 105.6 | 0.01316 | 0.01361 | 0.07107 | 0.09867 | 527.88 | 1297211.49938 | -| XMRUSDT | 0.0006248 | 0.00143 | 0.1177 | 0.03197 | 142.5 | 0.01231 | 0.01808 | 0.1283 | 0.03748 | 1334.67 | 1297211.49938 | -| CKBUSDT | 0.0006228 | 0.001079 | 0.08678 | 0.02459 | 72.4 | 0.01288 | 0.0183 | 0.1166 | 0.03451 | 213.5 | 1297211.49938 | -| ZECUSDT | 0.0006184 | 0.001078 | 0.04762 | 0.007847 | 141.3 | 0.01392 | 0.02122 | 0.1325 | 0.0561 | 1332.67 | 1297211.49938 | -| KNCUSDT | 0.0006101 | 0.001073 | 0.06954 | 0.007429 | 130.6 | 0.01995 | 0.02269 | 0.1492 | 0.04838 | 1194.67 | 1297211.49939 | -| ACHUSDT | 0.00061 | 0.001119 | 0.08584 | 0.04272 | 102.5 | 0.01609 | 0.0186 | 0.1168 | 0.02819 | 219.42 | 1297211.49939 | -| ENJUSDT | 0.0006062 | 0.001244 | 0.07868 | 0.01161 | 127.2 | 0.01864 | 0.02447 | 0.1467 | 0.05737 | 1094.71 | 1297211.49939 | -| SFPUSDT | 0.0006115 | 0.001055 | 0.06131 | 0.004973 | 141.9 | 0.01823 | 0.02357 | 0.1389 | 0.0568 | 946.71 | 1297211.49939 | -| LQTYUSDT | 0.0006094 | 0.001011 | 0.1026 | 0.05056 | 67.23 | 0.01799 | 0.0229 | 0.1426 | 0.06426 | 203.5 | 1297211.49939 | -| TRUUSDT | 0.0006052 | 0.0008628 | 0.087 | 0.02986 | 128.2 | 0.01868 | 0.02101 | 0.1209 | 0.02765 | 206.5 | 1297211.49939 | -| DUSKUSDT | 0.0005977 | 0.0009464 | 0.05147 | 0.01195 | 111.7 | 0.01685 | 0.01642 | 0.07651 | 0.01752 | 630.88 | 1297211.4994 | -| IDEXUSDT | 0.0006023 | 0.0009559 | 0.07889 | 0.009473 | 116.2 | 0.01351 | 0.01461 | 0.07581 | 0.01253 | 149.5 | 1297211.4994 | -| CVXUSDT | 0.0006044 | 0.0006386 | 0.08094 | 0.04116 | 141.1 | 0.01627 | 0.01595 | 0.08658 | 0.06171 | 372.5 | 1297211.4994 | -| QNTUSDT | 0.0005815 | 0.001234 | 0.149 | 0.06245 | 133.4 | 0.009975 | 0.01551 | 0.09334 | 0.04373 | 344.92 | 1297211.49942 | -| 1000FLOKIUSDT | 0.0005834 | 0.000864 | 0.0713 | 0.02163 | 122.3 | 0.01081 | 0.01509 | 0.09472 | 0.08284 | 146.33 | 1297211.49942 | -| LITUSDT | 0.000582 | 0.001097 | 0.03987 | 0.008038 | 127.5 | 0.01525 | 0.0144 | 0.0714 | 0.007351 | 953.71 | 1297211.49942 | -| CRVUSDT | 0.0005723 | 0.00138 | 0.05022 | 0.03077 | 74.35 | 0.01043 | 0.01924 | 0.1065 | 0.03189 | 1122.71 | 1297211.49943 | -| SANDUSDT | 0.0005701 | 0.001433 | 0.0661 | 0.01702 | 130.3 | 0.01596 | 0.02378 | 0.1498 | 0.04379 | 976.71 | 1297211.49943 | -| IOTAUSDT | 0.0005714 | 0.001482 | 0.07481 | 0.006286 | 105.4 | 0.01488 | 0.02158 | 0.1223 | 0.0671 | 1325.67 | 1297211.49943 | -| STGUSDT | 0.0005643 | 0.001182 | 0.05699 | 0.01467 | 143.3 | 0.01341 | 0.0131 | 0.05772 | 0.002427 | 400.5 | 1297211.49944 | -| ONEUSDT | 0.0005525 | 0.001343 | 0.07527 | 0.0352 | 123.1 | 0.01468 | 0.02389 | 0.1484 | 0.07841 | 925.71 | 1297211.49945 | -| JOEUSDT | 0.0005465 | 0.0008076 | 0.0733 | 0.02213 | 91.22 | 0.01848 | 0.01496 | 0.0772 | 0.06221 | 184.5 | 1297211.49945 | -| ZRXUSDT | 0.0005483 | 0.0009299 | 0.05855 | 0.02002 | 129.2 | 0.01909 | 0.02183 | 0.1394 | 0.04929 | 1192.62 | 1297211.49945 | -| TUSDT | 0.0005326 | 0.0007115 | 0.1065 | 0.06601 | 119.8 | 0.01591 | 0.02341 | 0.1438 | 0.06545 | 240.46 | 1297211.49947 | -| DASHUSDT | 0.0005193 | 0.001084 | 0.06795 | 0.01559 | 143.6 | 0.01538 | 0.02102 | 0.1342 | 0.02828 | 1333.67 | 1297211.49948 | -| FOOTBALLUSDT | 0.0005179 | 0.001071 | 0.06705 | 0.001587 | 134.1 | 0.01009 | 0.009645 | 0.0483 | 0.001371 | 393.88 | 1297211.49948 | -| KSMUSDT | 0.0005032 | 0.001123 | 0.07465 | 0.02022 | 114.0 | 0.01962 | 0.02264 | 0.129 | 0.06429 | 1079.71 | 1297211.4995 | -| EOSUSDT | 0.0004719 | 0.0008539 | 0.03982 | 0.0004287 | 144.0 | 0.01395 | 0.01467 | 0.07849 | 0.06893 | 1360.67 | 1297211.49953 | -| APEUSDT | 0.0004714 | 0.0008658 | 0.03849 | 0.01996 | 86.02 | 0.007564 | 0.01365 | 0.07979 | 0.01809 | 561.38 | 1297211.49953 | -| BCHUSDT | 0.0004731 | 0.001347 | 0.04036 | 0.01596 | 94.65 | 0.009788 | 0.01663 | 0.1181 | 0.04313 | 1368.0 | 1297211.49953 | -| WOOUSDT | 0.0004555 | 0.0006889 | 0.07608 | 0.01883 | 89.42 | 0.01839 | 0.02455 | 0.1422 | 0.05433 | 539.88 | 1297211.49954 | -| BALUSDT | 0.0004593 | 0.001065 | 0.1147 | 0.03963 | 119.9 | 0.01862 | 0.0245 | 0.1494 | 0.06138 | 1122.71 | 1297211.49954 | -| STORJUSDT | 0.0004577 | 0.000866 | 0.08354 | 0.01298 | 127.8 | 0.01936 | 0.02514 | 0.1408 | 0.05193 | 1107.71 | 1297211.49954 | -| ETHUSDT | 0.0004382 | 0.0009869 | 0.06647 | 0.008193 | 140.8 | 0.01247 | 0.01835 | 0.09458 | 0.08231 | 1368.0 | 1297211.49956 | -| AUDIOUSDT | 0.0004431 | 0.0008378 | 0.06739 | 0.05058 | 72.22 | 0.01001 | 0.01581 | 0.08267 | 0.04658 | 771.88 | 1297211.49956 | -| BNXUSDT | 0.0004363 | 0.0007179 | 0.062 | 0.0009493 | 100.6 | 0.01741 | 0.02016 | 0.1154 | 0.02881 | 219.42 | 1297211.49956 | -| ADAUSDT | 0.0004259 | 0.00115 | 0.04075 | 0.002025 | 105.5 | 0.01176 | 0.01286 | 0.07041 | 0.05688 | 1337.67 | 1297211.49957 | -| ENSUSDT | 0.0004334 | 0.0009835 | 0.04563 | 0.009904 | 139.9 | 0.0149 | 0.01409 | 0.06648 | 0.009592 | 668.88 | 1297211.49957 | -| FLOWUSDT | 0.0004314 | 0.0007487 | 0.08992 | 0.0171 | 111.4 | 0.01722 | 0.02254 | 0.1335 | 0.08102 | 596.88 | 1297211.49957 | -| NEOUSDT | 0.0004258 | 0.0007319 | 0.05494 | 0.0106 | 133.2 | 0.01677 | 0.022 | 0.1287 | 0.0899 | 1320.67 | 1297211.49957 | -| ONTUSDT | 0.0004166 | 0.0008403 | 0.05764 | 0.01247 | 138.8 | 0.01967 | 0.02151 | 0.1206 | 0.02736 | 1326.67 | 1297211.49958 | -| KAVAUSDT | 0.0004086 | 0.0009207 | 0.03968 | 0.01348 | 98.37 | 0.0133 | 0.01406 | 0.08102 | 0.03153 | 1158.71 | 1297211.49959 | -| TRBUSDT | 0.0003915 | 0.000607 | 0.02737 | 0.004424 | 120.0 | 0.01997 | 0.01976 | 0.1067 | 0.05765 | 1120.71 | 1297211.49961 | -| EDUUSDT | 0.0003924 | 0.0008536 | 0.04809 | 0.006829 | 66.63 | 0.01405 | 0.01246 | 0.05998 | 0.004275 | 152.5 | 1297211.49961 | -| BTCUSDT | 0.0003746 | 0.000831 | 0.089 | 0.02269 | 108.1 | 0.009393 | 0.01188 | 0.064 | 0.09267 | 1368.0 | 1297211.49963 | -| CFXUSDT | 0.0003701 | 0.0008684 | 0.04281 | 0.00508 | 111.5 | 0.01677 | 0.0158 | 0.08511 | 0.04725 | 221.42 | 1297211.49963 | -| ARUSDT | 0.0003709 | 0.0007219 | 0.04198 | 0.01218 | 132.0 | 0.01417 | 0.01252 | 0.05776 | 0.01181 | 731.88 | 1297211.49963 | -| ATAUSDT | 0.0003622 | 0.0007079 | 0.04081 | 0.0113 | 121.1 | 0.01301 | 0.01209 | 0.06316 | 0.03213 | 759.88 | 1297211.49964 | -| VETUSDT | 0.0003613 | 0.001204 | 0.02455 | 0.002455 | 133.5 | 0.01204 | 0.01069 | 0.04729 | 0.00159 | 1323.67 | 1297211.49964 | -| PEOPLEUSDT | 0.0003631 | 0.0009344 | 0.04276 | 0.01816 | 129.3 | 0.01485 | 0.01822 | 0.1234 | 0.06121 | 644.83 | 1297211.49964 | -| XEMUSDT | 0.0003481 | 0.0007586 | 0.0486 | 0.006688 | 138.2 | 0.0181 | 0.02272 | 0.1362 | 0.02145 | 940.71 | 1297211.49965 | -| BNBUSDT | 0.000339 | 0.000865 | 0.05534 | 0.002668 | 134.6 | 0.01579 | 0.02063 | 0.1007 | 0.03182 | 1327.67 | 1297211.49966 | -| APTUSDT | 0.0003282 | 0.0006202 | 0.0716 | 0.01457 | 132.1 | 0.01661 | 0.02247 | 0.1379 | 0.02702 | 345.92 | 1297211.49967 | -| IDUSDT | 0.0003225 | 0.000518 | 0.05978 | 0.0361 | 51.37 | 0.01568 | 0.01732 | 0.1025 | 0.04004 | 190.42 | 1297211.49968 | -| ANTUSDT | 0.0003116 | 0.0006468 | 0.04598 | 0.004609 | 138.7 | 0.01872 | 0.02247 | 0.1383 | 0.08489 | 641.83 | 1297211.49969 | -| FXSUSDT | 0.0002953 | 0.0005666 | 0.05884 | 0.02636 | 49.67 | 0.01199 | 0.01579 | 0.1018 | 0.06619 | 252.88 | 1297211.4997 | -| TRXUSDT | 0.0002413 | 0.0007051 | 0.05018 | 0.001878 | 143.5 | 0.01221 | 0.01644 | 0.09329 | 0.02553 | 1353.67 | 1297211.49976 | -| PERPUSDT | 0.0002414 | 0.0001618 | 0.01256 | 0.0 | 64.82 | 0.01125 | 0.009754 | 0.04685 | 0.0 | 207.5 | 1297211.49976 | -| HNTUSDT | 0.0002217 | 0.0008999 | 0.04116 | 0.02031 | 65.38 | 0.007846 | 0.02281 | 0.1483 | 0.02474 | 1095.71 | 1297211.49978 | -| BLUEBIRDUSDT | 0.0001889 | 0.0003525 | 0.03513 | 0.0 | 120.7 | 0.008561 | 0.008485 | 0.04273 | 0.0 | 331.5 | 1297211.49981 | -| CVCUSDT | 5.933e-05 | 0.0003912 | 0.01786 | 0.001664 | 73.35 | 0.01925 | 0.01913 | 0.09238 | 0.0218 | 1051.71 | 1297211.49994 | -| COCOSUSDT | 5.781e-05 | 0.0005781 | 0.09858 | 0.004914 | 86.42 | 0.01395 | 0.01326 | 0.09186 | 0.01332 | 220.42 | 1297211.49994 | -| BTCDOMUSDT | 2.89e-05 | 6.11e-05 | 0.02326 | 0.0002507 | 117.5 | 0.006525 | 0.005756 | 0.02669 | 0.00595 | 830.88 | 1297211.49997 | -| BTCSTUSDT | 9.084e-06 | 9.084e-05 | 0.002878 | 0.000399 | 19.35 | 0.01885 | 0.02105 | 0.01885 | 0.08202 | 939.71 | 1297211.49999 | -| USDCUSDT | 1.446e-06 | 1.446e-05 | 0.06874 | 0.0 | 121.8 | 0.003596 | 0.004119 | 0.03948 | 0.0 | 201.29 | 1297211.5 | -| FTTUSDT | 3.875e-05 | 0.0003875 | 0.01613 | 0.001095 | 112.8 | 0.02105 | 0.02825 | 0.09872 | 0.0567 | 532.88 | 1297221.98222 | -| DYDXUSDT | 0.0005495 | 0.001052 | 0.09671 | 0.04012 | 90.83 | 0.02226 | 0.02535 | 0.1382 | 0.05436 | 749.88 | 1297234.13796 | -| SCUSDT | 3.255e-05 | 0.0003255 | 0.02165 | 0.006661 | 114.2 | 0.02626 | 0.025 | 0.1068 | 0.04396 | 900.71 | 1297274.08783 | -| ROSEUSDT | 0.0003908 | 0.0007881 | 0.08165 | 0.01914 | 144.1 | 0.01974 | 0.02602 | 0.1445 | 0.04738 | 637.88 | 1297311.49961 | -| BTSUSDT | 3.694e-05 | 0.0003278 | 0.125 | 0.0001717 | 106.4 | 0.03295 | 0.0173 | 0.08768 | 0.02983 | 970.71 | 1297341.01679 | -| DARUSDT | 0.0005585 | 0.001014 | 0.07951 | 0.0 | 148.1 | 0.0185 | 0.02361 | 0.1088 | 0.04794 | 518.88 | 1301278.16611 | -| C98USDT | 0.0004076 | 0.0008357 | 0.04252 | 0.02391 | 60.17 | 0.01126 | 0.02815 | 0.164 | 0.05047 | 766.88 | 1311195.85546 | -| XLMUSDT | 0.0007159 | 0.001587 | 0.06462 | 0.01242 | 158.8 | 0.01056 | 0.0182 | 0.1126 | 0.0819 | 1348.67 | 1311994.83262 | -| MASKUSDT | 0.0004518 | 0.0008158 | 0.09157 | 0.06474 | 67.92 | 0.0233 | 0.0332 | 0.1732 | 0.07994 | 763.88 | 1320717.6512 | -| 1000XECUSDT | 0.0004221 | 0.0006318 | 0.07523 | 0.02737 | 198.3 | 0.01838 | 0.02291 | 0.1435 | 0.07326 | 742.88 | 1351494.83291 | -| SRMUSDT | 7.177e-05 | 0.000405 | 0.04062 | 0.01627 | 209.1 | 0.02922 | 0.02773 | 0.1414 | 0.095 | 1118.92 | 1362403.74087 | -| GMTUSDT | 0.0003877 | 0.0006827 | 0.04152 | 0.006059 | 218.3 | 0.0269 | 0.02616 | 0.1082 | 0.07298 | 563.83 | 1371547.18751 | -| GTCUSDT | 0.0002572 | 0.0004403 | 0.05849 | 0.002973 | 250.8 | 0.02516 | 0.02424 | 0.1207 | 0.08477 | 840.88 | 1404096.38637 | -| IOTXUSDT | 0.0003457 | 0.0006171 | 0.08323 | 0.02284 | 261.4 | 0.02387 | 0.02792 | 0.1772 | 0.07507 | 778.88 | 1441940.53998 | -| LPTUSDT | 0.0002542 | 0.0003561 | 0.04774 | 0.01054 | 297.9 | 0.03778 | 0.03669 | 0.1422 | 0.0998 | 687.88 | 1451957.91576 | -| BAKEUSDT | 0.0003081 | 0.000427 | 0.0601 | 0.02894 | 165.5 | 0.02926 | 0.03129 | 0.2029 | 0.1461 | 863.71 | 1832488.35482 | -| RAYUSDT | 3.185e-05 | 0.000217 | 0.05285 | 0.02638 | 294.4 | 0.0193 | 0.02736 | 0.1311 | 0.1641 | 770.88 | 2088559.91008 | -| KLAYUSDT | 0.0001312 | 0.0002008 | 0.1109 | 0.01259 | 1098.0 | 0.05804 | 0.07593 | 0.3673 | 0.09049 | 717.88 | 2473192.09895 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | hrs_stuck_max | pa_dist_mean | pa_dist_std | pa_dist_1pct_worst_mean | loss_profit_rt | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ -| WLDUSDT | 0.006774 | 0.005385 | 0.1073 | 0.06107 | 24.03 | 0.008493 | 0.01682 | 0.1335 | 0.00795 | 67.5 | 1297211.49323 | -| AGLDUSDT | 0.005155 | 0.003911 | 0.1144 | 0.05692 | 25.6 | 0.007889 | 0.01259 | 0.0959 | 0.01118 | 62.92 | 1297211.49485 | -| MAVUSDT | 0.004986 | 0.003857 | 0.1038 | 0.05898 | 55.43 | 0.01077 | 0.01421 | 0.08877 | 0.0111 | 92.5 | 1297211.49501 | -| ARKMUSDT | 0.004418 | 0.005339 | 0.08541 | 0.03583 | 25.63 | 0.006576 | 0.006225 | 0.04328 | 0.005201 | 63.92 | 1297211.49558 | -| PERPUSDT | 0.004217 | 0.001532 | 0.03828 | 0.004618 | 78.68 | 0.01147 | 0.008804 | 0.03858 | 0.03422 | 207.5 | 1297211.49578 | -| LEVERUSDT | 0.003971 | 0.002208 | 0.06135 | 0.01407 | 83.5 | 0.01113 | 0.01025 | 0.05592 | 0.006923 | 183.5 | 1297211.49603 | -| COMBOUSDT | 0.003566 | 0.003251 | 0.1223 | 0.04984 | 70.48 | 0.007452 | 0.01212 | 0.07695 | 0.006142 | 119.5 | 1297211.49643 | -| XVSUSDT | 0.003493 | 0.00229 | 0.1372 | 0.005393 | 108.8 | 0.01513 | 0.02564 | 0.1391 | 0.03769 | 169.92 | 1297211.49651 | -| YGGUSDT | 0.003321 | 0.00565 | 0.1305 | 0.08122 | 27.07 | 0.009766 | 0.01545 | 0.1094 | 0.01436 | 55.88 | 1297211.49668 | -| EDUUSDT | 0.003054 | 0.003761 | 0.1379 | 0.05873 | 52.03 | 0.009198 | 0.01752 | 0.1133 | 0.005816 | 152.5 | 1297211.49695 | -| BLURUSDT | 0.003035 | 0.003958 | 0.1293 | 0.0461 | 123.4 | 0.008191 | 0.009817 | 0.06975 | 0.002669 | 154.5 | 1297211.49696 | -| IDEXUSDT | 0.002743 | 0.002757 | 0.1329 | 0.0443 | 43.13 | 0.007503 | 0.01061 | 0.0656 | 0.006864 | 149.5 | 1297211.49726 | -| SPELLUSDT | 0.002542 | 0.002789 | 0.1256 | 0.05201 | 89.73 | 0.008372 | 0.01711 | 0.1166 | 0.01507 | 388.5 | 1297211.49746 | -| KEYUSDT | 0.002445 | 0.003136 | 0.1024 | 0.05122 | 69.13 | 0.01065 | 0.01291 | 0.07515 | 0.01219 | 128.5 | 1297211.49755 | -| TRUUSDT | 0.002399 | 0.003193 | 0.1405 | 0.02966 | 110.7 | 0.01474 | 0.01244 | 0.06243 | 0.005784 | 206.5 | 1297211.4976 | -| PENDLEUSDT | 0.002352 | 0.001955 | 0.04709 | 0.003257 | 85.5 | 0.01252 | 0.01018 | 0.04682 | 0.0 | 63.92 | 1297211.49765 | -| RADUSDT | 0.002314 | 0.003291 | 0.1214 | 0.03215 | 80.2 | 0.007953 | 0.0108 | 0.083 | 0.003268 | 142.5 | 1297211.49769 | -| AMBUSDT | 0.002302 | 0.002034 | 0.04865 | 0.01203 | 71.85 | 0.008394 | 0.01321 | 0.06933 | 0.01943 | 183.5 | 1297211.4977 | -| XVGUSDT | 0.002282 | 0.003803 | 0.06663 | 0.02407 | 72.07 | 0.01296 | 0.01788 | 0.07156 | 0.02484 | 86.5 | 1297211.49772 | -| LQTYUSDT | 0.002244 | 0.003662 | 0.0793 | 0.01904 | 50.98 | 0.009702 | 0.01501 | 0.0978 | 0.004614 | 203.5 | 1297211.49776 | -| HOOKUSDT | 0.002215 | 0.00339 | 0.1299 | 0.07736 | 53.87 | 0.01262 | 0.01648 | 0.1078 | 0.06535 | 249.88 | 1297211.49779 | -| BNXUSDT | 0.002197 | 0.002691 | 0.09484 | 0.03399 | 56.52 | 0.01022 | 0.01198 | 0.07581 | 0.008145 | 219.42 | 1297211.4978 | -| SSVUSDT | 0.002126 | 0.003258 | 0.1432 | 0.08964 | 39.93 | 0.01001 | 0.01604 | 0.1135 | 0.01684 | 217.5 | 1297211.49787 | -| UMAUSDT | 0.001956 | 0.002576 | 0.1138 | 0.01345 | 79.52 | 0.007602 | 0.006251 | 0.03796 | 0.002047 | 142.5 | 1297211.49804 | -| NMRUSDT | 0.001888 | 0.002636 | 0.04256 | 0.002512 | 87.25 | 0.008201 | 0.007878 | 0.04417 | 0.001024 | 99.5 | 1297211.49811 | -| TLMUSDT | 0.00188 | 0.001748 | 0.0892 | 0.02474 | 77.03 | 0.008484 | 0.007898 | 0.03919 | 0.004924 | 183.5 | 1297211.49812 | -| LUNA2USDT | 0.001787 | 0.002989 | 0.08438 | 0.01061 | 61.92 | 0.0091 | 0.01815 | 0.09915 | 0.04664 | 384.88 | 1297211.49821 | -| BLZUSDT | 0.001779 | 0.001557 | 0.04153 | 0.01449 | 103.8 | 0.01902 | 0.02048 | 0.1099 | 0.06059 | 1106.71 | 1297211.49822 | -| MDTUSDT | 0.001784 | 0.002189 | 0.08579 | 0.004096 | 95.92 | 0.01355 | 0.01509 | 0.07171 | 0.02051 | 91.5 | 1297211.49822 | -| FLMUSDT | 0.001775 | 0.0009785 | 0.02802 | 0.004339 | 122.6 | 0.01629 | 0.01569 | 0.07435 | 0.0273 | 1094.71 | 1297211.49823 | -| 1000FLOKIUSDT | 0.001743 | 0.002263 | 0.1138 | 0.06376 | 62.42 | 0.01152 | 0.02409 | 0.1458 | 0.06116 | 146.33 | 1297211.49826 | -| STMXUSDT | 0.0017 | 0.001613 | 0.05783 | 0.02012 | 118.0 | 0.01497 | 0.01641 | 0.104 | 0.05336 | 921.71 | 1297211.4983 | -| TOMOUSDT | 0.001662 | 0.001477 | 0.07051 | 0.02392 | 117.2 | 0.01982 | 0.02139 | 0.1133 | 0.04908 | 1081.71 | 1297211.49834 | -| HFTUSDT | 0.00162 | 0.001618 | 0.1291 | 0.007553 | 66.35 | 0.01244 | 0.01737 | 0.08875 | 0.09843 | 176.5 | 1297211.49838 | -| HIGHUSDT | 0.001621 | 0.002628 | 0.1166 | 0.01525 | 78.53 | 0.01449 | 0.0152 | 0.07421 | 0.04232 | 234.92 | 1297211.49838 | -| GALUSDT | 0.001611 | 0.003207 | 0.1111 | 0.05732 | 61.97 | 0.01327 | 0.0207 | 0.1142 | 0.01827 | 512.42 | 1297211.49839 | -| 1000LUNCUSDT | 0.001606 | 0.002801 | 0.09171 | 0.008431 | 62.92 | 0.009338 | 0.01793 | 0.1063 | 0.04232 | 385.46 | 1297211.49839 | -| ASTRUSDT | 0.001597 | 0.001508 | 0.1026 | 0.0541 | 93.92 | 0.01432 | 0.0156 | 0.08374 | 0.07415 | 227.92 | 1297211.4984 | -| LITUSDT | 0.001584 | 0.002698 | 0.1249 | 0.05522 | 124.0 | 0.01983 | 0.02409 | 0.1498 | 0.05559 | 953.71 | 1297211.49842 | -| CTKUSDT | 0.001568 | 0.003701 | 0.1496 | 0.01936 | 111.0 | 0.0169 | 0.0266 | 0.1445 | 0.04744 | 1043.71 | 1297211.49843 | -| REEFUSDT | 0.001548 | 0.002648 | 0.117 | 0.03663 | 133.6 | 0.01327 | 0.02083 | 0.1494 | 0.09024 | 948.71 | 1297211.49845 | -| OCEANUSDT | 0.001521 | 0.002291 | 0.1437 | 0.04026 | 82.03 | 0.01772 | 0.02238 | 0.118 | 0.09558 | 1059.71 | 1297211.49848 | -| ANKRUSDT | 0.001524 | 0.003364 | 0.07456 | 0.01951 | 94.32 | 0.01029 | 0.01526 | 0.0965 | 0.01171 | 975.71 | 1297211.49848 | -| XEMUSDT | 0.001486 | 0.002512 | 0.1491 | 0.08575 | 110.4 | 0.01682 | 0.02622 | 0.1478 | 0.03426 | 940.71 | 1297211.49851 | -| ATAUSDT | 0.001472 | 0.002947 | 0.1392 | 0.0602 | 63.55 | 0.01484 | 0.02508 | 0.1484 | 0.0254 | 759.88 | 1297211.49853 | -| NKNUSDT | 0.001421 | 0.002501 | 0.1252 | 0.0367 | 140.4 | 0.01992 | 0.02707 | 0.15 | 0.05409 | 903.71 | 1297211.49858 | -| ACHUSDT | 0.001413 | 0.002326 | 0.06835 | 0.01272 | 71.98 | 0.009154 | 0.008413 | 0.03973 | 0.006053 | 219.42 | 1297211.49859 | -| SUIUSDT | 0.001396 | 0.002464 | 0.1208 | 0.01534 | 141.7 | 0.01175 | 0.01029 | 0.05374 | 0.005713 | 149.33 | 1297211.4986 | -| JASMYUSDT | 0.00134 | 0.002309 | 0.1181 | 0.0251 | 95.63 | 0.01674 | 0.02007 | 0.1032 | 0.04649 | 527.88 | 1297211.49866 | -| FETUSDT | 0.001327 | 0.002083 | 0.08882 | 0.0267 | 120.8 | 0.01458 | 0.01456 | 0.0815 | 0.03656 | 255.92 | 1297211.49867 | -| ONTUSDT | 0.001332 | 0.002234 | 0.1489 | 0.05163 | 103.0 | 0.01421 | 0.02167 | 0.1335 | 0.02026 | 1326.67 | 1297211.49867 | -| PHBUSDT | 0.001313 | 0.001636 | 0.1086 | 0.02273 | 116.7 | 0.01373 | 0.02153 | 0.1307 | 0.01401 | 225.42 | 1297211.49869 | -| BELUSDT | 0.001239 | 0.001737 | 0.07095 | 0.02285 | 66.72 | 0.01344 | 0.02487 | 0.1383 | 0.09356 | 1044.71 | 1297211.49876 | -| RSRUSDT | 0.001186 | 0.002631 | 0.07914 | 0.04117 | 78.0 | 0.01526 | 0.02227 | 0.146 | 0.02535 | 1074.71 | 1297211.49881 | -| ZRXUSDT | 0.00119 | 0.002209 | 0.109 | 0.06673 | 77.0 | 0.01588 | 0.02292 | 0.1327 | 0.01831 | 1192.62 | 1297211.49881 | -| CHRUSDT | 0.001165 | 0.002631 | 0.1053 | 0.05572 | 129.1 | 0.01967 | 0.02377 | 0.1494 | 0.08262 | 931.71 | 1297211.49884 | -| BAKEUSDT | 0.001162 | 0.001288 | 0.0625 | 0.02094 | 108.6 | 0.01612 | 0.02136 | 0.1405 | 0.07623 | 863.71 | 1297211.49884 | -| SFPUSDT | 0.001155 | 0.002192 | 0.06461 | 0.02773 | 87.48 | 0.01389 | 0.01628 | 0.1221 | 0.09215 | 946.71 | 1297211.49885 | -| AGIXUSDT | 0.001137 | 0.002354 | 0.09698 | 0.02569 | 40.82 | 0.00911 | 0.01474 | 0.09209 | 0.007954 | 225.42 | 1297211.49886 | -| GRTUSDT | 0.001134 | 0.00239 | 0.1072 | 0.03411 | 74.6 | 0.01797 | 0.02348 | 0.1436 | 0.01787 | 1013.71 | 1297211.49887 | -| ZENUSDT | 0.001118 | 0.00198 | 0.0908 | 0.04356 | 102.7 | 0.01702 | 0.02145 | 0.1412 | 0.01782 | 1038.71 | 1297211.49888 | -| RENUSDT | 0.00112 | 0.001926 | 0.1034 | 0.03084 | 116.3 | 0.01996 | 0.0227 | 0.149 | 0.03625 | 1080.71 | 1297211.49888 | -| HBARUSDT | 0.001105 | 0.0018 | 0.1166 | 0.03853 | 95.32 | 0.01741 | 0.01856 | 0.097 | 0.01507 | 926.71 | 1297211.49889 | -| RDNTUSDT | 0.001111 | 0.001534 | 0.04182 | 0.007745 | 58.57 | 0.007649 | 0.007533 | 0.03305 | 0.0004912 | 177.5 | 1297211.49889 | -| DGBUSDT | 0.001086 | 0.002034 | 0.1383 | 0.06928 | 91.83 | 0.01576 | 0.02285 | 0.135 | 0.03784 | 891.88 | 1297211.49891 | -| SUSHIUSDT | 0.001077 | 0.002553 | 0.09019 | 0.04216 | 96.47 | 0.01312 | 0.0175 | 0.12 | 0.05162 | 1119.71 | 1297211.49892 | -| ALGOUSDT | 0.001051 | 0.002311 | 0.1109 | 0.05448 | 95.58 | 0.01505 | 0.02153 | 0.1461 | 0.03924 | 1200.62 | 1297211.49895 | -| LINAUSDT | 0.001028 | 0.001168 | 0.05977 | 0.02442 | 112.9 | 0.01978 | 0.02401 | 0.1467 | 0.03711 | 924.71 | 1297211.49897 | -| NEOUSDT | 0.001017 | 0.001606 | 0.1252 | 0.03552 | 118.5 | 0.01504 | 0.02089 | 0.1136 | 0.03406 | 1320.67 | 1297211.49898 | -| 1INCHUSDT | 0.00101 | 0.002096 | 0.1286 | 0.04061 | 122.7 | 0.01992 | 0.02329 | 0.1257 | 0.01425 | 1007.58 | 1297211.49899 | -| CELRUSDT | 0.001001 | 0.002386 | 0.08768 | 0.044 | 74.98 | 0.01268 | 0.02281 | 0.1487 | 0.06469 | 914.71 | 1297211.499 | -| HOTUSDT | 0.0009893 | 0.002268 | 0.1334 | 0.04669 | 133.4 | 0.01962 | 0.0244 | 0.1234 | 0.07775 | 913.71 | 1297211.49901 | -| YFIUSDT | 0.0009905 | 0.002449 | 0.09527 | 0.04175 | 112.5 | 0.01456 | 0.0199 | 0.1405 | 0.02192 | 1123.71 | 1297211.49901 | -| API3USDT | 0.0009833 | 0.001219 | 0.07099 | 0.01859 | 84.7 | 0.01296 | 0.02003 | 0.1109 | 0.01925 | 584.88 | 1297211.49902 | -| TRBUSDT | 0.0009673 | 0.00127 | 0.0595 | 0.009034 | 113.9 | 0.01969 | 0.02717 | 0.1481 | 0.07761 | 1120.71 | 1297211.49903 | -| ENSUSDT | 0.0009735 | 0.002459 | 0.1239 | 0.0418 | 87.33 | 0.01258 | 0.01585 | 0.1035 | 0.06874 | 668.88 | 1297211.49903 | -| MINAUSDT | 0.0009583 | 0.002033 | 0.06328 | 0.00302 | 78.3 | 0.008351 | 0.01026 | 0.04746 | 0.02019 | 234.54 | 1297211.49904 | -| DARUSDT | 0.0009576 | 0.001749 | 0.1221 | 0.0603 | 94.62 | 0.01545 | 0.01961 | 0.1197 | 0.041 | 518.88 | 1297211.49904 | -| ENJUSDT | 0.0009382 | 0.001925 | 0.09898 | 0.02493 | 81.15 | 0.01563 | 0.02345 | 0.1372 | 0.04695 | 1094.71 | 1297211.49906 | -| KAVAUSDT | 0.0009393 | 0.001592 | 0.07035 | 0.02812 | 124.9 | 0.01609 | 0.02327 | 0.1398 | 0.03903 | 1158.71 | 1297211.49906 | -| COTIUSDT | 0.0009406 | 0.002122 | 0.09107 | 0.05524 | 94.97 | 0.01466 | 0.02213 | 0.143 | 0.01915 | 933.71 | 1297211.49906 | -| EOSUSDT | 0.0009313 | 0.001577 | 0.1191 | 0.05359 | 142.0 | 0.0141 | 0.01877 | 0.1314 | 0.04547 | 1360.67 | 1297211.49907 | -| SXPUSDT | 0.0009339 | 0.001708 | 0.06993 | 0.02531 | 92.05 | 0.01601 | 0.02227 | 0.1294 | 0.04644 | 1165.62 | 1297211.49907 | -| OGNUSDT | 0.0009172 | 0.001144 | 0.05856 | 0.00978 | 142.7 | 0.01962 | 0.02566 | 0.1492 | 0.06331 | 911.71 | 1297211.49908 | -| RLCUSDT | 0.0009248 | 0.001839 | 0.08419 | 0.01842 | 84.98 | 0.01674 | 0.0216 | 0.1322 | 0.01812 | 1155.71 | 1297211.49908 | -| ZECUSDT | 0.0008991 | 0.001859 | 0.09891 | 0.06372 | 104.5 | 0.01415 | 0.02431 | 0.1435 | 0.02933 | 1332.67 | 1297211.4991 | -| DUSKUSDT | 0.0008879 | 0.001581 | 0.0489 | 0.01486 | 81.68 | 0.01188 | 0.01211 | 0.05427 | 0.006545 | 630.88 | 1297211.49911 | -| SNXUSDT | 0.0008898 | 0.001154 | 0.04899 | 0.007415 | 121.9 | 0.01954 | 0.01969 | 0.1046 | 0.02192 | 1140.71 | 1297211.49911 | -| KNCUSDT | 0.000867 | 0.001184 | 0.062 | 0.02256 | 123.3 | 0.01959 | 0.02056 | 0.1423 | 0.01925 | 1194.67 | 1297211.49913 | -| RUNEUSDT | 0.0008624 | 0.0009293 | 0.03874 | 0.01794 | 132.7 | 0.01916 | 0.0216 | 0.1201 | 0.01431 | 1119.71 | 1297211.49914 | -| DASHUSDT | 0.0008486 | 0.00158 | 0.1262 | 0.04886 | 114.3 | 0.01629 | 0.01751 | 0.1195 | 0.02883 | 1333.67 | 1297211.49915 | -| CRVUSDT | 0.0008449 | 0.001802 | 0.09109 | 0.03722 | 99.17 | 0.01838 | 0.02518 | 0.1493 | 0.0611 | 1122.71 | 1297211.49916 | -| ONEUSDT | 0.0008388 | 0.001888 | 0.06703 | 0.01872 | 84.35 | 0.0136 | 0.01376 | 0.07255 | 0.09195 | 925.71 | 1297211.49916 | -| LTCUSDT | 0.0008374 | 0.001331 | 0.1103 | 0.0604 | 128.7 | 0.01639 | 0.01894 | 0.1331 | 0.02145 | 1359.67 | 1297211.49916 | -| CKBUSDT | 0.0008371 | 0.001519 | 0.09053 | 0.005854 | 63.4 | 0.008521 | 0.009776 | 0.05564 | 0.003599 | 213.5 | 1297211.49916 | -| CELOUSDT | 0.000833 | 0.001243 | 0.07383 | 0.0303 | 130.1 | 0.0142 | 0.01496 | 0.08941 | 0.01631 | 732.88 | 1297211.49917 | -| DEFIUSDT | 0.0008222 | 0.001533 | 0.1398 | 0.06335 | 78.6 | 0.01936 | 0.02197 | 0.1261 | 0.0234 | 1126.71 | 1297211.49918 | -| APEUSDT | 0.000817 | 0.001592 | 0.0688 | 0.04557 | 85.97 | 0.01234 | 0.02493 | 0.1492 | 0.06616 | 561.38 | 1297211.49918 | -| CTSIUSDT | 0.0008045 | 0.001424 | 0.06047 | 0.02107 | 82.15 | 0.01352 | 0.01773 | 0.09303 | 0.03198 | 703.88 | 1297211.4992 | -| LPTUSDT | 0.0007904 | 0.0006857 | 0.05277 | 0.01866 | 118.2 | 0.01919 | 0.02226 | 0.1211 | 0.03225 | 687.88 | 1297211.49921 | -| ALICEUSDT | 0.0007793 | 0.001822 | 0.09269 | 0.02717 | 133.8 | 0.01833 | 0.02259 | 0.1478 | 0.0853 | 927.88 | 1297211.49922 | -| AVAXUSDT | 0.0007677 | 0.002139 | 0.09078 | 0.04652 | 97.53 | 0.01565 | 0.02001 | 0.1314 | 0.01846 | 1100.71 | 1297211.49923 | -| COMPUSDT | 0.0007701 | 0.0009337 | 0.05837 | 0.01243 | 108.2 | 0.01768 | 0.02163 | 0.1152 | 0.05627 | 1186.62 | 1297211.49923 | -| ALPHAUSDT | 0.0007548 | 0.001518 | 0.06841 | 0.01972 | 131.1 | 0.01971 | 0.02283 | 0.1442 | 0.03382 | 1039.71 | 1297211.49925 | -| FOOTBALLUSDT | 0.0007501 | 0.00166 | 0.1142 | 0.05955 | 94.82 | 0.0097 | 0.01712 | 0.1256 | 0.0234 | 393.88 | 1297211.49925 | -| GMXUSDT | 0.0007449 | 0.0008501 | 0.06815 | 0.02599 | 64.7 | 0.01046 | 0.009385 | 0.03951 | 0.005888 | 224.42 | 1297211.49926 | -| SKLUSDT | 0.0007443 | 0.00181 | 0.06614 | 0.01269 | 123.4 | 0.019 | 0.01933 | 0.09544 | 0.04504 | 1024.71 | 1297211.49926 | -| JOEUSDT | 0.0007285 | 0.0007828 | 0.08947 | 0.04154 | 94.57 | 0.01603 | 0.022 | 0.1044 | 0.0999 | 184.5 | 1297211.49927 | -| LINKUSDT | 0.0007265 | 0.001576 | 0.1075 | 0.04337 | 138.6 | 0.01978 | 0.01878 | 0.0898 | 0.0618 | 1351.67 | 1297211.49927 | -| TUSDT | 0.0007232 | 0.001284 | 0.05005 | 0.02322 | 75.9 | 0.007469 | 0.01205 | 0.07005 | 0.006548 | 240.46 | 1297211.49928 | -| INJUSDT | 0.0007079 | 0.001615 | 0.05889 | 0.03016 | 67.67 | 0.01294 | 0.02154 | 0.1409 | 0.01599 | 408.92 | 1297211.49929 | -| FXSUSDT | 0.0006862 | 0.001151 | 0.123 | 0.08254 | 59.42 | 0.01529 | 0.01735 | 0.1031 | 0.0867 | 252.88 | 1297211.49931 | -| MTLUSDT | 0.0006858 | 0.0009516 | 0.05392 | 0.01785 | 107.6 | 0.01891 | 0.02787 | 0.1494 | 0.02845 | 912.71 | 1297211.49931 | -| DENTUSDT | 0.00067 | 0.001405 | 0.09067 | 0.02759 | 136.6 | 0.01982 | 0.02494 | 0.1367 | 0.05918 | 919.83 | 1297211.49933 | -| VETUSDT | 0.00067 | 0.00149 | 0.1205 | 0.05625 | 101.6 | 0.01654 | 0.0248 | 0.1451 | 0.06063 | 1323.67 | 1297211.49933 | -| ICPUSDT | 0.0006744 | 0.00115 | 0.08868 | 0.02163 | 68.43 | 0.0131 | 0.01658 | 0.0939 | 0.009525 | 367.92 | 1297211.49933 | -| UNIUSDT | 0.0006702 | 0.001573 | 0.06924 | 0.03919 | 110.8 | 0.01453 | 0.02095 | 0.1409 | 0.03707 | 1105.71 | 1297211.49933 | -| XTZUSDT | 0.0006588 | 0.001444 | 0.1133 | 0.04568 | 94.78 | 0.01948 | 0.02473 | 0.146 | 0.08334 | 1331.67 | 1297211.49934 | -| QNTUSDT | 0.0006374 | 0.001718 | 0.1413 | 0.08431 | 86.95 | 0.01067 | 0.0168 | 0.1083 | 0.0326 | 344.92 | 1297211.49936 | -| MATICUSDT | 0.0006363 | 0.001708 | 0.0732 | 0.0327 | 127.0 | 0.01384 | 0.01777 | 0.1301 | 0.03018 | 1071.71 | 1297211.49936 | -| LDOUSDT | 0.0006362 | 0.001861 | 0.08959 | 0.04642 | 69.62 | 0.01314 | 0.01613 | 0.1056 | 0.008291 | 372.5 | 1297211.49936 | -| QTUMUSDT | 0.0006308 | 0.001095 | 0.04763 | 0.02267 | 117.3 | 0.01378 | 0.02136 | 0.148 | 0.01745 | 1317.67 | 1297211.49937 | -| CHZUSDT | 0.0006341 | 0.001671 | 0.08135 | 0.01814 | 94.27 | 0.01801 | 0.02277 | 0.1256 | 0.04646 | 980.71 | 1297211.49937 | -| MAGICUSDT | 0.0006298 | 0.001117 | 0.06021 | 0.04 | 86.47 | 0.01342 | 0.01808 | 0.1144 | 0.02102 | 247.88 | 1297211.49937 | -| GTCUSDT | 0.0006188 | 0.001146 | 0.05096 | 0.01764 | 73.43 | 0.01663 | 0.02093 | 0.1156 | 0.02362 | 840.88 | 1297211.49938 | -| BCHUSDT | 0.0006177 | 0.0006112 | 0.05995 | 0.007097 | 140.7 | 0.01707 | 0.01907 | 0.1036 | 0.03624 | 1368.0 | 1297211.49938 | -| XMRUSDT | 0.0006213 | 0.001488 | 0.1003 | 0.04302 | 124.8 | 0.0119 | 0.01544 | 0.1029 | 0.04172 | 1334.67 | 1297211.49938 | -| SANDUSDT | 0.0006125 | 0.001693 | 0.06949 | 0.02291 | 103.0 | 0.01932 | 0.0244 | 0.1276 | 0.05677 | 976.71 | 1297211.49939 | -| IDUSDT | 0.0006142 | 0.001112 | 0.01782 | 0.001313 | 54.07 | 0.009159 | 0.008089 | 0.03624 | 0.0 | 190.42 | 1297211.49939 | -| ARPAUSDT | 0.0006005 | 0.0008087 | 0.01349 | 0.004865 | 95.47 | 0.005808 | 0.007837 | 0.03425 | 0.01017 | 710.88 | 1297211.4994 | -| STORJUSDT | 0.0006029 | 0.0009682 | 0.04668 | 0.00568 | 129.6 | 0.01993 | 0.02507 | 0.1243 | 0.02398 | 1107.71 | 1297211.4994 | -| IOTAUSDT | 0.0005869 | 0.001314 | 0.06556 | 0.03413 | 89.73 | 0.01273 | 0.02256 | 0.146 | 0.0759 | 1325.67 | 1297211.49941 | -| NEARUSDT | 0.0005833 | 0.001352 | 0.08476 | 0.02399 | 119.4 | 0.01953 | 0.02083 | 0.09888 | 0.02297 | 1078.67 | 1297211.49942 | -| BATUSDT | 0.0005797 | 0.001008 | 0.07404 | 0.006322 | 126.8 | 0.01953 | 0.02279 | 0.1118 | 0.08616 | 1324.67 | 1297211.49942 | -| THETAUSDT | 0.0005821 | 0.001309 | 0.05815 | 0.02075 | 77.53 | 0.01153 | 0.01348 | 0.07596 | 0.03059 | 1220.67 | 1297211.49942 | -| ATOMUSDT | 0.0005749 | 0.001378 | 0.09782 | 0.02656 | 93.52 | 0.01736 | 0.02327 | 0.1273 | 0.05004 | 1330.5 | 1297211.49943 | -| ROSEUSDT | 0.0005475 | 0.00135 | 0.05963 | 0.03116 | 69.28 | 0.01048 | 0.01717 | 0.1128 | 0.05363 | 637.88 | 1297211.49945 | -| MKRUSDT | 0.0005476 | 0.0006831 | 0.05527 | 0.01587 | 136.1 | 0.01578 | 0.01885 | 0.1041 | 0.03996 | 1141.71 | 1297211.49945 | -| C98USDT | 0.0005357 | 0.0008921 | 0.05474 | 0.001956 | 108.4 | 0.01822 | 0.02043 | 0.1004 | 0.02278 | 766.88 | 1297211.49946 | -| IOSTUSDT | 0.0005269 | 0.001142 | 0.07319 | 0.02794 | 102.5 | 0.01631 | 0.02178 | 0.1458 | 0.0561 | 1316.67 | 1297211.49947 | -| ARBUSDT | 0.0005211 | 0.0007633 | 0.06296 | 0.003063 | 109.3 | 0.01485 | 0.01951 | 0.1012 | 0.009619 | 190.38 | 1297211.49948 | -| IMXUSDT | 0.0004955 | 0.00102 | 0.04543 | 0.006503 | 123.6 | 0.01562 | 0.01608 | 0.07959 | 0.008299 | 595.88 | 1297211.4995 | -| KSMUSDT | 0.0004858 | 0.001244 | 0.1035 | 0.02219 | 122.2 | 0.01953 | 0.02734 | 0.1466 | 0.03806 | 1079.71 | 1297211.49951 | -| DOTUSDT | 0.0004792 | 0.001279 | 0.07286 | 0.02685 | 133.3 | 0.01367 | 0.01394 | 0.07814 | 0.044 | 1132.71 | 1297211.49952 | -| ICXUSDT | 0.0004801 | 0.000839 | 0.04629 | 0.01075 | 129.8 | 0.01951 | 0.02006 | 0.09637 | 0.01238 | 1108.71 | 1297211.49952 | -| DYDXUSDT | 0.0004746 | 0.0009777 | 0.0452 | 0.02084 | 90.85 | 0.01512 | 0.02168 | 0.1288 | 0.04522 | 749.88 | 1297211.49953 | -| WOOUSDT | 0.0004631 | 0.0008546 | 0.06196 | 0.01767 | 107.2 | 0.0184 | 0.02385 | 0.1499 | 0.09277 | 539.88 | 1297211.49954 | -| BALUSDT | 0.000435 | 0.000953 | 0.07195 | 0.01162 | 117.1 | 0.01971 | 0.01912 | 0.08764 | 0.07265 | 1122.71 | 1297211.49956 | -| SOLUSDT | 0.0004424 | 0.0007919 | 0.02986 | 0.0128 | 71.07 | 0.01198 | 0.02388 | 0.1165 | 0.01298 | 1109.71 | 1297211.49956 | -| CFXUSDT | 0.0004181 | 0.0008374 | 0.04923 | 0.01505 | 108.2 | 0.01589 | 0.01995 | 0.09862 | 0.02667 | 221.42 | 1297211.49958 | -| XLMUSDT | 0.0004111 | 0.000675 | 0.04682 | 0.001545 | 134.7 | 0.01702 | 0.01873 | 0.0933 | 0.01936 | 1348.67 | 1297211.49959 | -| PEOPLEUSDT | 0.000406 | 0.001063 | 0.03584 | 0.008206 | 102.9 | 0.01467 | 0.02342 | 0.1466 | 0.01583 | 644.83 | 1297211.49959 | -| OMGUSDT | 0.0003739 | 0.0005171 | 0.02536 | 0.001864 | 131.3 | 0.01994 | 0.01726 | 0.08261 | 0.05078 | 1184.62 | 1297211.49963 | -| 1000SHIBUSDT | 0.0003702 | 0.0009131 | 0.0183 | 0.004203 | 114.7 | 0.00879 | 0.01004 | 0.05454 | 0.003257 | 872.29 | 1297211.49963 | -| LRCUSDT | 0.0003598 | 0.0008071 | 0.04103 | 0.002985 | 131.8 | 0.01947 | 0.02299 | 0.1235 | 0.02191 | 1074.71 | 1297211.49964 | -| 1000XECUSDT | 0.0003642 | 0.0004286 | 0.0249 | 0.0006169 | 128.0 | 0.01507 | 0.01434 | 0.07527 | 0.01178 | 742.88 | 1297211.49964 | -| ADAUSDT | 0.0003612 | 0.0007211 | 0.05013 | 0.01318 | 141.2 | 0.01571 | 0.01755 | 0.08377 | 0.02077 | 1337.67 | 1297211.49964 | -| RVNUSDT | 0.0003576 | 0.0007674 | 0.06532 | 0.02937 | 124.3 | 0.01857 | 0.02625 | 0.1397 | 0.03876 | 947.71 | 1297211.49964 | -| AAVEUSDT | 0.0003285 | 0.0006249 | 0.05918 | 0.01052 | 103.9 | 0.01856 | 0.02374 | 0.1291 | 0.08677 | 1077.71 | 1297211.49967 | -| FLOWUSDT | 0.0003295 | 0.0006209 | 0.03734 | 0.01682 | 95.27 | 0.01135 | 0.01245 | 0.06074 | 0.03376 | 596.88 | 1297211.49967 | -| XRPUSDT | 0.0003211 | 0.0005003 | 0.02341 | 0.000214 | 133.1 | 0.01471 | 0.01509 | 0.07798 | 0.01391 | 1362.67 | 1297211.49968 | -| STXUSDT | 0.0003127 | 0.0007476 | 0.05993 | 0.03326 | 105.8 | 0.01517 | 0.02045 | 0.1291 | 0.06203 | 220.42 | 1297211.49969 | -| BANDUSDT | 0.0003022 | 0.0005602 | 0.03125 | 0.005326 | 139.0 | 0.01888 | 0.02321 | 0.1256 | 0.08785 | 1157.71 | 1297211.4997 | -| RNDRUSDT | 0.000272 | 0.0007026 | 0.02845 | 0.003487 | 95.35 | 0.014 | 0.01249 | 0.05799 | 0.005185 | 238.92 | 1297211.49973 | -| ARUSDT | 0.0002524 | 0.0006143 | 0.02631 | 0.007515 | 91.32 | 0.01607 | 0.02168 | 0.1319 | 0.03333 | 731.88 | 1297211.49975 | -| IOTXUSDT | 0.0002417 | 0.0006105 | 0.03725 | 0.006098 | 110.4 | 0.01374 | 0.01992 | 0.1128 | 0.02788 | 778.88 | 1297211.49976 | -| EGLDUSDT | 0.0002283 | 0.0005915 | 0.03175 | 0.003004 | 143.3 | 0.01637 | 0.01486 | 0.07302 | 0.0214 | 1109.71 | 1297211.49977 | -| STGUSDT | 0.000218 | 0.0003981 | 0.04815 | 0.01966 | 85.83 | 0.01479 | 0.02319 | 0.1492 | 0.09885 | 400.5 | 1297211.49978 | -| COCOSUSDT | 0.0002191 | 0.002191 | 0.1366 | 0.0378 | 111.4 | 0.01341 | 0.01939 | 0.1098 | 0.05524 | 220.42 | 1297211.49978 | -| ETHUSDT | 0.0002024 | 0.0004201 | 0.0708 | 0.0303 | 127.8 | 0.01642 | 0.01515 | 0.07721 | 0.08249 | 1368.0 | 1297211.4998 | -| 1000PEPEUSDT | 0.0001964 | 0.0003807 | 0.01106 | 0.0008482 | 70.75 | 0.01951 | 0.02272 | 0.1075 | 0.0 | 147.33 | 1297211.4998 | -| AXSUSDT | 0.0001842 | 0.0004385 | 0.02305 | 0.002797 | 126.0 | 0.01966 | 0.02227 | 0.1138 | 0.003181 | 1042.71 | 1297211.49982 | -| RAYUSDT | 0.0001555 | 0.001187 | 0.05198 | 0.02778 | 91.77 | 0.009409 | 0.008486 | 0.0618 | 0.00751 | 770.88 | 1297211.49984 | -| HNTUSDT | 0.0001548 | 0.0007362 | 0.03238 | 0.02156 | 78.63 | 0.01225 | 0.01841 | 0.088 | 0.01942 | 1095.71 | 1297211.49985 | -| BTSUSDT | 0.0001485 | 0.001233 | 0.06704 | 0.02515 | 111.1 | 0.009822 | 0.01874 | 0.1353 | 0.03298 | 970.71 | 1297211.49985 | -| FTTUSDT | 0.000144 | 0.00144 | 0.115 | 0.07991 | 49.72 | 0.01232 | 0.01602 | 0.1062 | 0.02802 | 532.88 | 1297211.49986 | -| DOGEUSDT | 0.0001369 | 0.0004106 | 0.02116 | 0.007967 | 138.3 | 0.01632 | 0.02146 | 0.1313 | 0.05483 | 1176.62 | 1297211.49986 | -| KLAYUSDT | 0.0001306 | 0.0002801 | 0.0378 | 0.01793 | 115.9 | 0.01627 | 0.01951 | 0.1172 | 0.09384 | 717.88 | 1297211.49987 | -| BLUEBIRDUSDT | 0.0001268 | 0.0002316 | 0.04319 | 0.01483 | 101.5 | 0.01117 | 0.01408 | 0.07403 | 0.05618 | 331.5 | 1297211.49987 | -| SCUSDT | 0.0001243 | 0.001243 | 0.1112 | 0.0272 | 60.58 | 0.006192 | 0.01472 | 0.1 | 0.05812 | 900.71 | 1297211.49988 | -| AUDIOUSDT | 0.0001208 | 0.0002222 | 0.02362 | 0.0008097 | 114.0 | 0.01848 | 0.01821 | 0.1067 | 0.01386 | 771.88 | 1297211.49988 | -| CVCUSDT | 0.0001202 | 0.000872 | 0.04465 | 0.02123 | 60.82 | 0.01395 | 0.02099 | 0.1496 | 0.05494 | 1051.71 | 1297211.49988 | -| BTCUSDT | 0.0001093 | 0.0002071 | 0.03331 | 0.01026 | 117.2 | 0.009358 | 0.009307 | 0.04406 | 0.0243 | 1368.0 | 1297211.49989 | -| BTCSTUSDT | 1.085e-05 | 0.0001085 | 0.07884 | 0.0003104 | 17.65 | 0.002394 | 0.0006701 | 0.005688 | 0.0 | 939.71 | 1297211.49999 | -| USDCUSDT | 8.161e-08 | 8.161e-07 | 0.0005174 | 0.0 | 50.25 | 0.002936 | 0.0006279 | 0.003025 | 0.0 | 201.29 | 1297211.5 | -| ETCUSDT | 0.0001783 | 0.0003891 | 0.02028 | 0.001663 | 142.2 | 0.02023 | 0.02246 | 0.1045 | 0.06783 | 1352.67 | 1297213.83692 | -| ANTUSDT | 0.0002578 | 0.0007464 | 0.08234 | 0.03888 | 87.12 | 0.02092 | 0.02521 | 0.1484 | 0.09869 | 641.83 | 1297220.74876 | -| SRMUSDT | 0.0001185 | 0.0007616 | 0.1468 | 0.01746 | 98.15 | 0.02094 | 0.0203 | 0.1274 | 0.05073 | 1118.92 | 1297220.92961 | -| CVXUSDT | 3.725e-05 | 0.0003693 | 0.03816 | 0.0002237 | 124.5 | 0.02237 | 0.02261 | 0.0872 | 0.07841 | 372.5 | 1297235.17807 | -| APTUSDT | 0.0001458 | 0.0002467 | 0.0395 | 0.01349 | 138.8 | 0.0239 | 0.03388 | 0.1496 | 0.07454 | 345.92 | 1297638.70307 | -| FILUSDT | 0.0001606 | 0.0003268 | 0.03894 | 0.01237 | 161.9 | 0.02921 | 0.02515 | 0.1455 | 0.07268 | 1077.75 | 1315253.57766 | -| WAVESUSDT | 0.0003024 | 0.0005368 | 0.03707 | 0.01025 | 227.0 | 0.03001 | 0.02795 | 0.1359 | 0.02451 | 1142.71 | 1380311.64432 | -| OPUSDT | 0.0002273 | 0.0005363 | 0.03055 | 0.004635 | 231.8 | 0.02672 | 0.02172 | 0.102 | 0.001797 | 485.42 | 1385112.03106 | -| TRXUSDT | 6.404e-05 | 0.0001646 | 0.03046 | 0.003601 | 234.6 | 0.01062 | 0.01506 | 0.08513 | 0.08674 | 1353.67 | 1387794.83327 | -| MASKUSDT | 0.0002171 | 0.0004851 | 0.03934 | 0.01598 | 155.6 | 0.03035 | 0.03618 | 0.2923 | 0.07894 | 763.88 | 1451753.49104 | -| BTCDOMUSDT | 3.048e-05 | 6.297e-05 | 0.02236 | 0.001053 | 353.7 | 0.006742 | 0.005949 | 0.02496 | 0.02629 | 830.88 | 1506878.16664 | -| MANAUSDT | 0.0003944 | 0.001317 | 0.1249 | 0.101 | 127.2 | 0.03466 | 0.07035 | 0.3225 | 0.3462 | 928.71 | 3936396.1141 | -| FTMUSDT | 8.24e-05 | 0.0004748 | 0.0305 | 0.001175 | 401.6 | 0.03152 | 0.0236 | 0.1043 | 0.6145 | 1099.71 | 6700373.44011 | -| BNBUSDT | 4.99e-05 | 4.414e-05 | 0.03366 | 9.415e-05 | 1071.0 | 0.0366 | 0.02573 | 0.1046 | 0.8564 | 1327.67 | 9787934.53705 | -| UNFIUSDT | -0.001441 | -0.01441 | 0.1008 | 0.04325 | 94.3 | 0.03175 | 0.04011 | 0.2322 | 0.991 | 951.71 | 10290134.4178 | -| GMTUSDT | -0.002421 | -0.02421 | 0.002062 | 0.001626 | 11.25 | 0.2113 | 0.1268 | 0.2113 | 1.0 | 563.83 | 10370135.4311 | -| ZILUSDT | -0.003529 | -0.01146 | 0.1107 | 0.01116 | 37.25 | 0.01357 | 0.02086 | 0.1122 | 1.041 | 1198.62 | 10704589.1336 | -| GALAUSDT | -0.001845 | -0.01845 | 0.0727 | 0.06897 | 12.35 | 0.03856 | 0.0529 | 0.15 | 1.251 | 741.88 | 12807778.7932 | -+---------------+---------------+-------------+--------------+-----------------+---------------+--------------+-------------+-------------------------+----------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/metrics_recursive_grid.txt b/configs/live/single_symbol_optimizations/metrics_recursive_grid.txt deleted file mode 100644 index 76ea92f79..000000000 --- a/configs/live/single_symbol_optimizations/metrics_recursive_grid.txt +++ /dev/null @@ -1,440 +0,0 @@ -### single symbol backtest metrics ### - -update: 2023-11-10 - -note: symbols younger than 2021-05-01 are not optimized on their own, -instead the best config from among the older symbols is chosen - -metric abbreviation comments: -adg_w_per_exp average daily gain, recent data weighted heavier -adg_per_exp average daily gain for whole backtest -exp_rts_mean exposure ratios mean: average wallet exposure during backtest -time_at_max_exp ratio of hours spent at >90% exposure to hours spent at <90% exposure -hrs_stuck_max how many hours in a stretch with no fills -pa_dist_mean price action distance mean: the average distance between position price and market price -pa_dist_std price action distance std: the standard deviation of the distance between position price and market price -pa_dist_1pct_worst_mean mean of 1% highest pa_dist_mean -loss_profit_rt loss to profit ratio: abs(sum(losses)) / sum(profit) -drawdown_max max drawdown -drawdown_1pct_worst_mean mean of 1% worst drawdowns from hourly samples -sharpe_ratio sharpe ratio (excluding risk free return) from daily samples -n_days backtest number of days -score used internally by optimizer -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| long | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKMUSDT | 0.001654 | 0.001916 | 0.0377 | 0.02509 | 0.007199 | 0.007627 | 22.52 | 0.05729 | 0.01012 | 0.05454 | 0.07133 | 103.88 | 275999999.998 | -| 1000FLOKIUSDT | 0.001608 | 0.0008037 | 0.05858 | 0.01777 | 0.01847 | 0.0127 | 119.8 | 0.09925 | 0.1223 | 0.09834 | 0.1478 | 186.29 | 275999999.998 | -| AGLDUSDT | 0.001738 | 0.001202 | 0.02212 | 0.004615 | 0.01736 | 0.01534 | 143.5 | 0.0787 | 0.0 | 0.01523 | 0.03306 | 102.88 | 275999999.998 | -| BLURUSDT | 0.0016 | 0.001218 | 0.05269 | 0.01675 | 0.01175 | 0.007775 | 107.9 | 0.04341 | 0.006323 | 0.04037 | 0.1042 | 194.46 | 275999999.998 | -| WLDUSDT | 0.001648 | 0.002259 | 0.07991 | 0.03783 | 0.009636 | 0.00826 | 32.5 | 0.04802 | 0.01519 | 0.04554 | 0.05833 | 107.46 | 275999999.998 | -| SOLUSDT | 0.001605 | 0.003137 | 0.05932 | 0.03462 | 0.01252 | 0.01534 | 128.0 | 0.07416 | 0.1188 | 0.07993 | 0.1635 | 1150.67 | 275999999.998 | -| LQTYUSDT | 0.002129 | 0.001892 | 0.08089 | 0.0406 | 0.01386 | 0.01249 | 53.35 | 0.09916 | 0.03861 | 0.09063 | 0.1512 | 243.46 | 275999999.998 | -| CRVUSDT | 0.0006768 | 0.001561 | 0.04641 | 0.02004 | 0.01478 | 0.01502 | 106.3 | 0.08927 | 0.06654 | 0.08377 | 0.248 | 1163.67 | 275999999.999 | -| XEMUSDT | 0.0006816 | 0.00165 | 0.0505 | 0.0243 | 0.01236 | 0.01383 | 139.1 | 0.08264 | 0.009034 | 0.07448 | 0.1766 | 980.67 | 275999999.999 | -| AAVEUSDT | 0.001005 | 0.002381 | 0.05721 | 0.02641 | 0.01318 | 0.01337 | 108.9 | 0.0848 | 0.01745 | 0.07817 | 0.2187 | 1118.67 | 275999999.999 | -| EGLDUSDT | 0.0006276 | 0.001611 | 0.05641 | 0.01572 | 0.0165 | 0.01288 | 143.9 | 0.04804 | 0.06346 | 0.02846 | 0.1101 | 1150.67 | 275999999.999 | -| ETHUSDT | 0.0005248 | 0.001587 | 0.04671 | 0.03451 | 0.007731 | 0.01049 | 70.3 | 0.06428 | 0.01253 | 0.06259 | 0.1186 | 1407.96 | 275999999.999 | -| LRCUSDT | 0.0006011 | 0.001609 | 0.06467 | 0.02841 | 0.01194 | 0.01262 | 84.47 | 0.0964 | 0.0257 | 0.09366 | 0.2309 | 1115.67 | 275999999.999 | -| XVGUSDT | 0.001407 | 0.001963 | 0.1089 | 0.09284 | 0.01055 | 0.01033 | 34.05 | 0.0647 | 0.02197 | 0.06144 | 0.0906 | 126.46 | 275999999.999 | -| OMGUSDT | 0.0008715 | 0.001707 | 0.0609 | 0.01611 | 0.01333 | 0.01266 | 125.3 | 0.07971 | 0.09189 | 0.08264 | 0.2137 | 1224.58 | 275999999.999 | -| MINAUSDT | 0.000867 | 0.001021 | 0.0684 | 0.03036 | 0.01129 | 0.01069 | 143.8 | 0.07703 | 0.06319 | 0.07292 | 0.1228 | 274.5 | 275999999.999 | -| IDEXUSDT | 0.0006284 | 0.0006822 | 0.05837 | 0.01224 | 0.01292 | 0.01184 | 111.8 | 0.09514 | 0.03437 | 0.08713 | 0.1178 | 189.46 | 275999999.999 | -| ACHUSDT | 0.0005451 | 0.0007952 | 0.04996 | 0.01594 | 0.01596 | 0.01287 | 112.7 | 0.088 | 0.08831 | 0.07861 | 0.1113 | 259.38 | 275999999.999 | -| QNTUSDT | 0.0005158 | 0.0009634 | 0.06468 | 0.03389 | 0.00871 | 0.008644 | 108.4 | 0.07451 | 0.04914 | 0.08074 | 0.1037 | 384.88 | 275999999.999 | -| AXSUSDT | 0.0005233 | 0.001781 | 0.0266 | 0.01136 | 0.0151 | 0.01368 | 94.25 | 0.04943 | 0.04664 | 0.02085 | 0.1084 | 1083.67 | 275999999.999 | -| UMAUSDT | 0.0009032 | 0.0007933 | 0.06663 | 0.01509 | 0.008704 | 0.008126 | 65.73 | 0.06677 | 0.01044 | 0.05923 | 0.1231 | 182.46 | 275999999.999 | -| QTUMUSDT | 0.000586 | 0.001159 | 0.0708 | 0.01185 | 0.01699 | 0.01475 | 117.3 | 0.09903 | 0.02856 | 0.08721 | 0.2477 | 1357.62 | 275999999.999 | -| RSRUSDT | 0.0008021 | 0.001541 | 0.06303 | 0.01079 | 0.01844 | 0.01639 | 139.9 | 0.09933 | 0.06928 | 0.08792 | 0.1726 | 1115.67 | 275999999.999 | -| HBARUSDT | 0.001263 | 0.001793 | 0.03743 | 0.02832 | 0.008313 | 0.01265 | 52.38 | 0.09217 | 0.05686 | 0.09943 | 0.1888 | 966.67 | 275999999.999 | -| BANDUSDT | 0.0008424 | 0.00197 | 0.05737 | 0.01664 | 0.01663 | 0.01374 | 110.5 | 0.07556 | 0.06855 | 0.0725 | 0.1896 | 1197.67 | 275999999.999 | -| AGIXUSDT | 0.0006748 | 0.001055 | 0.05981 | 0.01436 | 0.01448 | 0.01182 | 122.7 | 0.09137 | 0.1314 | 0.09624 | 0.1179 | 265.38 | 275999999.999 | -| ETCUSDT | 0.0008029 | 0.001854 | 0.02597 | 0.01079 | 0.006699 | 0.00663 | 61.97 | 0.04788 | 0.02883 | 0.04836 | 0.13 | 1392.62 | 275999999.999 | -| DEFIUSDT | 0.0006421 | 0.001614 | 0.06872 | 0.02473 | 0.01065 | 0.01235 | 127.2 | 0.09018 | 0.02928 | 0.08206 | 0.207 | 1167.67 | 275999999.999 | -| ENJUSDT | 0.0007282 | 0.001789 | 0.06454 | 0.02674 | 0.01392 | 0.01696 | 120.7 | 0.08316 | 0.009893 | 0.07355 | 0.243 | 1135.67 | 275999999.999 | -| SNXUSDT | 0.0008076 | 0.001662 | 0.08301 | 0.01722 | 0.01937 | 0.0157 | 129.2 | 0.09635 | 0.0109 | 0.07861 | 0.1773 | 1181.67 | 275999999.999 | -| IOSTUSDT | 0.0006003 | 0.001438 | 0.06018 | 0.01687 | 0.01415 | 0.01543 | 143.3 | 0.0992 | 0.0372 | 0.08654 | 0.2318 | 1356.62 | 275999999.999 | -| MTLUSDT | 0.0006836 | 0.001187 | 0.05299 | 0.01367 | 0.01657 | 0.01646 | 128.6 | 0.09609 | 0.0377 | 0.08348 | 0.2365 | 952.67 | 275999999.999 | -| FETUSDT | 0.001486 | 0.001138 | 0.03902 | 0.02138 | 0.01205 | 0.009448 | 56.5 | 0.06015 | 0.04701 | 0.05606 | 0.1308 | 295.88 | 275999999.999 | -| HOTUSDT | 0.001123 | 0.003037 | 0.0669 | 0.03637 | 0.008218 | 0.009577 | 107.0 | 0.07247 | 0.04063 | 0.07956 | 0.161 | 953.67 | 275999999.999 | -| 1000SHIBUSDT | 0.0008669 | 0.002564 | 0.05532 | 0.005207 | 0.01095 | 0.008279 | 90.65 | 0.05199 | 0.005475 | 0.04046 | 0.2206 | 912.25 | 275999999.999 | -| ZENUSDT | 0.0006382 | 0.001573 | 0.05162 | 0.005321 | 0.01778 | 0.01323 | 141.1 | 0.06535 | 0.0329 | 0.04628 | 0.127 | 1079.67 | 275999999.999 | -| SPELLUSDT | 0.0009666 | 0.001083 | 0.08475 | 0.02381 | 0.009383 | 0.009223 | 100.0 | 0.07211 | 0.02379 | 0.0678 | 0.1188 | 428.46 | 275999999.999 | -| OGNUSDT | 0.0006684 | 0.001629 | 0.04389 | 0.009766 | 0.01837 | 0.0178 | 132.5 | 0.0953 | 0.02273 | 0.04006 | 0.1756 | 951.67 | 275999999.999 | -| SUSHIUSDT | 0.0007393 | 0.00163 | 0.03444 | 0.02015 | 0.01534 | 0.01585 | 88.15 | 0.09846 | 0.04496 | 0.09957 | 0.1528 | 1160.67 | 275999999.999 | -| CELOUSDT | 0.0005331 | 0.0008789 | 0.05322 | 0.01673 | 0.01381 | 0.01235 | 126.8 | 0.08157 | 0.09738 | 0.08311 | 0.13 | 772.83 | 275999999.999 | -| BNBUSDT | 0.0005659 | 0.001798 | 0.03292 | 0.01924 | 0.006364 | 0.008269 | 129.0 | 0.03976 | 0.0244 | 0.03816 | 0.1105 | 1367.62 | 275999999.999 | -| NEARUSDT | 0.0008662 | 0.001729 | 0.05339 | 0.04016 | 0.009786 | 0.01495 | 78.73 | 0.08313 | 0.09488 | 0.08349 | 0.173 | 1119.62 | 275999999.999 | -| APEUSDT | 0.0007998 | 0.001565 | 0.04802 | 0.02505 | 0.01122 | 0.01243 | 105.7 | 0.09908 | 0.008275 | 0.08871 | 0.1888 | 601.33 | 275999999.999 | -| EDUUSDT | 0.0006772 | 0.0008702 | 0.03751 | 0.01087 | 0.01846 | 0.01214 | 97.97 | 0.05801 | 0.0223 | 0.04046 | 0.08221 | 192.46 | 275999999.999 | -| ADAUSDT | 0.0008255 | 0.001615 | 0.04874 | 0.03963 | 0.008102 | 0.01374 | 75.32 | 0.08929 | 0.05001 | 0.09427 | 0.2286 | 1377.62 | 275999999.999 | -| API3USDT | 0.0005673 | 0.001085 | 0.04518 | 0.02583 | 0.01001 | 0.008215 | 74.45 | 0.04524 | 0.05011 | 0.04305 | 0.09065 | 624.83 | 275999999.999 | -| GRTUSDT | 0.0006235 | 0.00149 | 0.05548 | 0.006656 | 0.01446 | 0.01272 | 142.1 | 0.0805 | 0.05401 | 0.07247 | 0.2014 | 1054.67 | 275999999.999 | -| AMBUSDT | 0.001105 | 0.00114 | 0.08012 | 0.009115 | 0.01927 | 0.01408 | 77.52 | 0.08337 | 0.02956 | 0.06686 | 0.1642 | 223.46 | 275999999.999 | -| BELUSDT | 0.0007594 | 0.001577 | 0.05199 | 0.01167 | 0.01551 | 0.01296 | 127.9 | 0.07882 | 0.03061 | 0.07313 | 0.172 | 1085.67 | 275999999.999 | -| CELRUSDT | 0.0008623 | 0.002087 | 0.08355 | 0.03646 | 0.0136 | 0.01454 | 133.7 | 0.09745 | 0.05711 | 0.09092 | 0.2271 | 954.67 | 275999999.999 | -| HFTUSDT | 0.001109 | 0.0009164 | 0.04894 | 0.01775 | 0.0106 | 0.01007 | 93.87 | 0.07786 | 0.02225 | 0.07224 | 0.1091 | 216.46 | 275999999.999 | -| MAVUSDT | 0.001401 | 0.001426 | 0.06247 | 0.005094 | 0.01623 | 0.01204 | 84.73 | 0.0466 | 0.003099 | 0.02876 | 0.05089 | 132.46 | 275999999.999 | -| BALUSDT | 0.0005262 | 0.001124 | 0.02774 | 0.01005 | 0.01277 | 0.01126 | 142.8 | 0.05214 | 0.01969 | 0.03708 | 0.2277 | 1163.67 | 275999999.999 | -| YFIUSDT | 0.001137 | 0.003406 | 0.05407 | 0.02343 | 0.01012 | 0.01285 | 101.6 | 0.04689 | 0.05237 | 0.04379 | 0.2283 | 1164.67 | 275999999.999 | -| OCEANUSDT | 0.0009813 | 0.001698 | 0.0658 | 0.01159 | 0.01691 | 0.01467 | 134.2 | 0.07088 | 0.123 | 0.0798 | 0.1762 | 1100.67 | 275999999.999 | -| BLZUSDT | 0.0006878 | 0.0009903 | 0.04508 | 0.005954 | 0.01714 | 0.01631 | 122.8 | 0.09783 | 0.08705 | 0.08706 | 0.1981 | 1147.67 | 275999999.999 | -| SANDUSDT | 0.0006805 | 0.002002 | 0.03936 | 0.01514 | 0.008763 | 0.01041 | 129.7 | 0.06428 | 0.01671 | 0.05843 | 0.1711 | 1017.67 | 275999999.999 | -| AVAXUSDT | 0.0005888 | 0.001776 | 0.08764 | 0.05609 | 0.02278 | 0.03759 | 109.7 | 0.08354 | 0.08583 | 0.07786 | 0.215 | 1141.67 | 275999999.999 | -| SFPUSDT | 0.0007793 | 0.002097 | 0.04231 | 0.02217 | 0.01319 | 0.01387 | 135.5 | 0.082 | 0.009336 | 0.07555 | 0.195 | 987.67 | 275999999.999 | -| ONEUSDT | 0.0005273 | 0.001556 | 0.05634 | 0.01133 | 0.01679 | 0.01318 | 135.5 | 0.07999 | 0.02815 | 0.0661 | 0.1878 | 965.67 | 275999999.999 | -| LINAUSDT | 0.0008498 | 0.001518 | 0.04337 | 0.01852 | 0.01823 | 0.01404 | 95.48 | 0.08036 | 0.0162 | 0.07033 | 0.2333 | 964.67 | 275999999.999 | -| 1000LUNCUSDT | 0.000887 | 0.001695 | 0.04512 | 0.008253 | 0.007662 | 0.007523 | 48.57 | 0.06095 | 0.002779 | 0.05235 | 0.1417 | 425.42 | 275999999.999 | -| PHBUSDT | 0.0007948 | 0.001025 | 0.07528 | 0.01339 | 0.01374 | 0.01154 | 96.33 | 0.07683 | 0.04168 | 0.07159 | 0.1211 | 265.38 | 275999999.999 | -| DOGEUSDT | 0.001166 | 0.002963 | 0.07229 | 0.02478 | 0.01087 | 0.009957 | 106.5 | 0.0745 | 0.06391 | 0.0894 | 0.2252 | 1216.58 | 275999999.999 | -| BNXUSDT | 0.00052 | 0.0007437 | 0.04763 | 0.0 | 0.01659 | 0.01281 | 111.1 | 0.07076 | 0.02143 | 0.03123 | 0.04226 | 259.38 | 275999999.999 | -| IMXUSDT | 0.0007624 | 0.001489 | 0.06042 | 0.006387 | 0.008218 | 0.01089 | 94.5 | 0.06521 | 0.1184 | 0.06062 | 0.1127 | 635.83 | 275999999.999 | -| 1INCHUSDT | 0.0007498 | 0.001839 | 0.04766 | 0.01645 | 0.0128 | 0.0131 | 136.4 | 0.07012 | 0.05926 | 0.06277 | 0.143 | 1048.54 | 275999999.999 | -| LITUSDT | 0.0006803 | 0.001428 | 0.03967 | 0.01809 | 0.01474 | 0.01351 | 118.7 | 0.07111 | 0.004772 | 0.06223 | 0.1973 | 993.67 | 275999999.999 | -| MATICUSDT | 0.001265 | 0.003477 | 0.0501 | 0.02033 | 0.009624 | 0.01014 | 91.1 | 0.06845 | 0.009894 | 0.06396 | 0.1345 | 1112.67 | 275999999.999 | -| LDOUSDT | 0.0006189 | 0.001287 | 0.06557 | 0.01972 | 0.01368 | 0.01358 | 93.1 | 0.09855 | 0.04243 | 0.09391 | 0.1473 | 412.46 | 275999999.999 | -| RLCUSDT | 0.001194 | 0.003205 | 0.06293 | 0.03311 | 0.01341 | 0.01459 | 111.2 | 0.09488 | 0.0108 | 0.0876 | 0.2096 | 1195.67 | 275999999.999 | -| VETUSDT | 0.0005629 | 0.001642 | 0.03533 | 0.006621 | 0.009252 | 0.01032 | 104.2 | 0.05507 | 0.01458 | 0.03894 | 0.2135 | 1363.62 | 275999999.999 | -| XVSUSDT | 0.001159 | 0.0007705 | 0.06648 | 0.02032 | 0.01755 | 0.01287 | 96.7 | 0.08486 | 0.03064 | 0.0762 | 0.1272 | 209.88 | 275999999.999 | -| SXPUSDT | 0.0007277 | 0.002465 | 0.03344 | 0.0175 | 0.01088 | 0.01174 | 80.73 | 0.0625 | 0.01114 | 0.05695 | 0.1544 | 1205.58 | 275999999.999 | -| ANKRUSDT | 0.0009376 | 0.001308 | 0.03614 | 0.01561 | 0.01008 | 0.0113 | 121.8 | 0.07648 | 0.02963 | 0.07292 | 0.2297 | 1015.67 | 275999999.999 | -| PENDLEUSDT | 0.0009901 | 0.0009186 | 0.04594 | 0.001162 | 0.01349 | 0.01025 | 73.38 | 0.04196 | 0.001732 | 0.01447 | 0.04732 | 103.88 | 275999999.999 | -| KEYUSDT | 0.001179 | 0.001241 | 0.02911 | 0.003436 | 0.01306 | 0.01019 | 74.15 | 0.06369 | 0.006407 | 0.02731 | 0.1257 | 168.46 | 275999999.999 | -| GALAUSDT | 0.0007448 | 0.001229 | 0.05989 | 0.03698 | 0.01126 | 0.01157 | 94.78 | 0.08166 | 0.08711 | 0.09923 | 0.1298 | 781.83 | 275999999.999 | -| RUNEUSDT | 0.000816 | 0.002487 | 0.05478 | 0.01969 | 0.01621 | 0.01539 | 143.2 | 0.09743 | 0.05003 | 0.0915 | 0.2286 | 1160.67 | 275999999.999 | -| CFXUSDT | 0.0006805 | 0.0009454 | 0.06803 | 0.02784 | 0.01823 | 0.01275 | 122.7 | 0.08395 | 0.09638 | 0.08142 | 0.1098 | 261.38 | 275999999.999 | -| DOTUSDT | 0.0005122 | 0.001444 | 0.05049 | 0.01913 | 0.01125 | 0.01334 | 134.1 | 0.07245 | 0.01895 | 0.06149 | 0.2473 | 1173.67 | 275999999.999 | -| INJUSDT | 0.001363 | 0.001884 | 0.08986 | 0.03651 | 0.01262 | 0.01059 | 110.3 | 0.08845 | 0.1271 | 0.09725 | 0.1377 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.0008505 | 0.00197 | 0.05519 | 0.02176 | 0.0129 | 0.014 | 128.5 | 0.09025 | 0.01585 | 0.08314 | 0.1761 | 1240.58 | 275999999.999 | -| COTIUSDT | 0.0007935 | 0.001877 | 0.06489 | 0.02982 | 0.0164 | 0.01422 | 129.6 | 0.09643 | 0.07091 | 0.0902 | 0.2438 | 973.67 | 275999999.999 | -| RADUSDT | 0.001265 | 0.001155 | 0.08762 | 0.04877 | 0.009102 | 0.0095 | 81.17 | 0.0822 | 0.05208 | 0.07698 | 0.118 | 182.46 | 275999999.999 | -| COMBOUSDT | 0.0009999 | 0.001195 | 0.0701 | 0.03063 | 0.01414 | 0.01445 | 70.63 | 0.09112 | 0.1249 | 0.08383 | 0.1417 | 159.46 | 275999999.999 | -| BCHUSDT | 0.0009703 | 0.001376 | 0.06056 | 0.04373 | 0.01324 | 0.0214 | 74.83 | 0.08621 | 0.1374 | 0.08494 | 0.2054 | 1407.96 | 275999999.999 | -| RVNUSDT | 0.0005357 | 0.001992 | 0.04351 | 0.004016 | 0.01141 | 0.008947 | 91.45 | 0.049 | 0.05004 | 0.02542 | 0.1246 | 988.67 | 275999999.999 | -| ICXUSDT | 0.0007903 | 0.00162 | 0.06883 | 0.03297 | 0.0155 | 0.01571 | 143.2 | 0.09588 | 0.05641 | 0.09128 | 0.2193 | 1149.67 | 275999999.999 | -| RNDRUSDT | 0.001239 | 0.00199 | 0.05221 | 0.03976 | 0.00898 | 0.01041 | 37.27 | 0.07451 | 0.02605 | 0.07168 | 0.09711 | 278.88 | 275999999.999 | -| CVXUSDT | 0.000515 | 0.000582 | 0.04721 | 0.01528 | 0.01409 | 0.01116 | 136.6 | 0.04744 | 0.006941 | 0.03835 | 0.1057 | 412.46 | 275999999.999 | -| CTKUSDT | 0.0007197 | 0.001949 | 0.0764 | 0.01743 | 0.01714 | 0.0166 | 137.4 | 0.09288 | 0.02771 | 0.08949 | 0.2169 | 1084.67 | 275999999.999 | -| COMPUSDT | 0.001118 | 0.001758 | 0.0706 | 0.0313 | 0.01308 | 0.01517 | 138.5 | 0.09731 | 0.04197 | 0.09315 | 0.1642 | 1226.58 | 275999999.999 | -| GMXUSDT | 0.0007629 | 0.0009278 | 0.09696 | 0.06728 | 0.01348 | 0.01165 | 138.2 | 0.07369 | 0.06976 | 0.07066 | 0.1041 | 264.38 | 275999999.999 | -| TUSDT | 0.0007288 | 0.0006697 | 0.0959 | 0.03642 | 0.01538 | 0.01353 | 124.9 | 0.09435 | 0.129 | 0.09033 | 0.118 | 280.42 | 275999999.999 | -| SUIUSDT | 0.001167 | 0.001381 | 0.05315 | 0.01558 | 0.008731 | 0.008888 | 63.08 | 0.07587 | 0.02367 | 0.07091 | 0.1354 | 189.29 | 275999999.999 | -| MKRUSDT | 0.001159 | 0.001937 | 0.08655 | 0.02282 | 0.01282 | 0.01204 | 105.1 | 0.09111 | 0.0495 | 0.09509 | 0.2164 | 1182.67 | 275999999.999 | -| XTZUSDT | 0.0005829 | 0.001795 | 0.0608 | 0.02146 | 0.01279 | 0.01302 | 136.3 | 0.08111 | 0.04793 | 0.07419 | 0.1557 | 1371.62 | 275999999.999 | -| OPUSDT | 0.0007618 | 0.001442 | 0.05599 | 0.03998 | 0.01019 | 0.01318 | 42.4 | 0.09591 | 0.08198 | 0.09561 | 0.1414 | 525.38 | 275999999.999 | -| CHRUSDT | 0.0008753 | 0.002094 | 0.07128 | 0.02607 | 0.01247 | 0.01391 | 132.4 | 0.09057 | 0.05304 | 0.08154 | 0.2462 | 971.67 | 275999999.999 | -| STXUSDT | 0.0008985 | 0.00122 | 0.07885 | 0.009152 | 0.01663 | 0.01261 | 127.8 | 0.05904 | 0.03295 | 0.05044 | 0.09515 | 260.38 | 275999999.999 | -| THETAUSDT | 0.000734 | 0.002482 | 0.06315 | 0.02027 | 0.01169 | 0.01133 | 74.72 | 0.08703 | 0.01271 | 0.07976 | 0.2312 | 1260.62 | 275999999.999 | -| ARBUSDT | 0.000717 | 0.0009708 | 0.05243 | 0.01121 | 0.01097 | 0.007952 | 105.3 | 0.04474 | 0.01566 | 0.03488 | 0.08354 | 230.33 | 275999999.999 | -| SKLUSDT | 0.0007072 | 0.001693 | 0.04934 | 0.02649 | 0.01506 | 0.01545 | 140.1 | 0.09769 | 0.01457 | 0.08995 | 0.2478 | 1065.67 | 275999999.999 | -| ARUSDT | 0.0006516 | 0.001447 | 0.05537 | 0.02005 | 0.01501 | 0.01337 | 133.2 | 0.08747 | 0.0677 | 0.09678 | 0.1659 | 771.83 | 275999999.999 | -| ASTRUSDT | 0.001043 | 0.001029 | 0.05496 | 0.02227 | 0.0095 | 0.00769 | 47.65 | 0.05769 | 0.06162 | 0.05867 | 0.1157 | 267.88 | 275999999.999 | -| HOOKUSDT | 0.0007439 | 0.001182 | 0.08296 | 0.0316 | 0.01837 | 0.01353 | 85.95 | 0.08382 | 0.01481 | 0.07291 | 0.1281 | 289.83 | 275999999.999 | -| RDNTUSDT | 0.001092 | 0.001289 | 0.1158 | 0.0391 | 0.01131 | 0.0113 | 65.0 | 0.0912 | 0.01943 | 0.08387 | 0.1273 | 217.46 | 275999999.999 | -| NMRUSDT | 0.00113 | 0.001453 | 0.04042 | 0.003284 | 0.007409 | 0.005706 | 68.82 | 0.0256 | 0.006153 | 0.01343 | 0.06145 | 139.46 | 275999999.999 | -| NKNUSDT | 0.001001 | 0.001981 | 0.07228 | 0.01647 | 0.01532 | 0.01442 | 121.1 | 0.07893 | 0.03602 | 0.07607 | 0.2333 | 943.67 | 275999999.999 | -| ALICEUSDT | 0.0006987 | 0.001749 | 0.04622 | 0.01269 | 0.01246 | 0.01055 | 103.2 | 0.07501 | 0.01799 | 0.06724 | 0.2227 | 967.83 | 275999999.999 | -| UNFIUSDT | 0.001331 | 0.001776 | 0.06684 | 0.003694 | 0.0211 | 0.01703 | 118.8 | 0.0988 | 0.02703 | 0.06102 | 0.1888 | 992.67 | 275999999.999 | -| LTCUSDT | 0.0005197 | 0.001009 | 0.03306 | 0.005575 | 0.01276 | 0.0111 | 125.3 | 0.06735 | 0.02294 | 0.03994 | 0.2289 | 1399.62 | 275999999.999 | -| CKBUSDT | 0.0005406 | 0.0005063 | 0.05665 | 0.00751 | 0.007321 | 0.00856 | 58.22 | 0.0798 | 0.1493 | 0.07986 | 0.1266 | 253.46 | 275999999.999 | -| STMXUSDT | 0.0007039 | 0.001159 | 0.03664 | 0.01909 | 0.0159 | 0.01503 | 132.3 | 0.07909 | 0.07936 | 0.07488 | 0.2227 | 961.67 | 275999999.999 | -| ARPAUSDT | 0.0008982 | 0.001638 | 0.07357 | 0.04018 | 0.01219 | 0.01268 | 134.6 | 0.08447 | 0.01723 | 0.07843 | 0.2024 | 750.83 | 275999999.999 | -| ZRXUSDT | 0.0006399 | 0.001425 | 0.05226 | 0.02976 | 0.01217 | 0.01481 | 79.47 | 0.08967 | 0.01406 | 0.07975 | 0.2067 | 1232.58 | 275999999.999 | -| ICPUSDT | 0.0006803 | 0.0009939 | 0.05653 | 0.0007865 | 0.01081 | 0.007302 | 115.1 | 0.03303 | 0.001067 | 0.01873 | 0.05975 | 407.88 | 275999999.999 | -| ZILUSDT | 0.0007913 | 0.001801 | 0.05701 | 0.02796 | 0.01421 | 0.01623 | 136.8 | 0.09918 | 0.01447 | 0.08794 | 0.2022 | 1238.58 | 275999999.999 | -| REEFUSDT | 0.00067 | 0.001494 | 0.04414 | 0.01137 | 0.01206 | 0.01339 | 82.88 | 0.07799 | 0.03055 | 0.06226 | 0.2218 | 989.67 | 275999999.999 | -| LINKUSDT | 0.0008312 | 0.002027 | 0.05372 | 0.02416 | 0.009731 | 0.01217 | 133.5 | 0.08792 | 0.03638 | 0.0898 | 0.2384 | 1391.62 | 275999999.999 | -| STORJUSDT | 0.0008565 | 0.001363 | 0.04489 | 0.03142 | 0.01619 | 0.01984 | 118.4 | 0.05988 | 0.03814 | 0.05204 | 0.187 | 1148.67 | 275999999.999 | -| KSMUSDT | 0.0006741 | 0.001452 | 0.05784 | 0.02833 | 0.01406 | 0.01622 | 89.72 | 0.07144 | 0.08408 | 0.06803 | 0.2001 | 1120.67 | 275999999.999 | -| XRPUSDT | 0.0007644 | 0.001858 | 0.03406 | 0.004064 | 0.005215 | 0.008401 | 78.95 | 0.05448 | 0.04979 | 0.05259 | 0.1632 | 1402.62 | 275999999.999 | -| MDTUSDT | 0.001468 | 0.001623 | 0.09336 | 0.05317 | 0.008642 | 0.007797 | 76.4 | 0.04664 | 0.05405 | 0.04606 | 0.06372 | 131.46 | 275999999.999 | -| 1000PEPEUSDT | 0.001425 | 0.002006 | 0.05537 | 0.02267 | 0.01277 | 0.01152 | 53.28 | 0.09597 | 0.06676 | 0.09622 | 0.1282 | 187.29 | 275999999.999 | -| WAVESUSDT | 0.0009585 | 0.001228 | 0.02392 | 0.01058 | 0.01081 | 0.01128 | 63.67 | 0.0601 | 0.01022 | 0.05079 | 0.2184 | 1183.67 | 275999999.999 | -| UNIUSDT | 0.0005213 | 0.001259 | 0.04622 | 0.01866 | 0.0146 | 0.01379 | 142.8 | 0.09933 | 0.02081 | 0.08575 | 0.1477 | 1146.67 | 275999999.999 | -| EOSUSDT | 0.0002641 | 0.000638 | 0.02226 | 0.000119 | 0.01106 | 0.009731 | 129.2 | 0.04835 | 0.02266 | 0.01909 | 0.1325 | 1400.62 | 276000000.0 | -| DUSKUSDT | 0.0002816 | 0.0005092 | 0.03184 | 0.01097 | 0.0168 | 0.0156 | 91.75 | 0.09371 | 0.06466 | 0.08389 | 0.1418 | 670.83 | 276000000.0 | -| ALPHAUSDT | 0.000388 | 0.0008978 | 0.0328 | 0.00106 | 0.0174 | 0.01529 | 111.7 | 0.07596 | 0.03146 | 0.03435 | 0.2403 | 1080.67 | 276000000.0 | -| CTSIUSDT | 0.0003137 | 0.0005978 | 0.0372 | 3.36e-05 | 0.01385 | 0.0127 | 109.6 | 0.08326 | 0.02394 | 0.04592 | 0.08513 | 743.83 | 276000000.0 | -| KNCUSDT | 0.0003382 | 0.0006301 | 0.02851 | 0.0004117 | 0.01933 | 0.01678 | 129.3 | 0.09927 | 0.0003752 | 0.04013 | 0.2494 | 1234.62 | 276000000.0 | -| FLMUSDT | 0.0003117 | 0.0005192 | 0.02051 | 0.003738 | 0.01887 | 0.01778 | 127.3 | 0.09968 | 0.00432 | 0.04187 | 0.2225 | 1135.67 | 276000000.0 | -| BTCUSDT | 0.0003547 | 0.0009114 | 0.1174 | 0.05293 | 0.01464 | 0.02035 | 141.4 | 0.08367 | 0.1176 | 0.08065 | 0.1327 | 1407.96 | 276000000.0 | -| TRBUSDT | 0.0004347 | 0.0005788 | 0.02005 | 2.152e-05 | 0.01974 | 0.01642 | 143.2 | 0.09018 | 0.0 | 0.02334 | 0.06088 | 1161.67 | 276000000.0 | -| MANAUSDT | 0.00049 | 0.0009823 | 0.03059 | 0.01211 | 0.01159 | 0.01012 | 125.0 | 0.04 | 0.06712 | 0.02443 | 0.09595 | 968.67 | 276000000.0 | -| ROSEUSDT | 0.0003411 | 0.0007468 | 0.0153 | 0.001512 | 0.009225 | 0.007715 | 107.2 | 0.03171 | 0.002204 | 0.007427 | 0.04088 | 677.83 | 276000000.0 | -| FTMUSDT | 0.0003178 | 0.0008572 | 0.02317 | 0.001961 | 0.01364 | 0.01213 | 102.7 | 0.06256 | 0.02643 | 0.03418 | 0.1783 | 1140.67 | 276000000.0 | -| GALUSDT | 0.0002636 | 0.0006581 | 0.02378 | 0.0 | 0.01282 | 0.01058 | 75.62 | 0.05281 | 0.04426 | 0.02245 | 0.03878 | 552.38 | 276000000.0 | -| FXSUSDT | 0.0001773 | 0.0003331 | 0.03855 | 0.01754 | 0.01857 | 0.01477 | 142.3 | 0.07932 | 0.08041 | 0.06936 | 0.09144 | 292.83 | 276000000.0 | -| AUDIOUSDT | 0.0004558 | 0.001052 | 0.03937 | 0.01349 | 0.01301 | 0.01175 | 135.8 | 0.05913 | 0.04677 | 0.05419 | 0.1773 | 811.83 | 276000000.0 | -| TRXUSDT | 0.000271 | 0.001285 | 0.03285 | 0.01456 | 0.01009 | 0.009805 | 132.5 | 0.06107 | 0.01187 | 0.05854 | 0.1137 | 1393.62 | 276000000.0 | -| WOOUSDT | 0.0004268 | 0.0007817 | 0.04827 | 0.01695 | 0.01211 | 0.01288 | 63.73 | 0.0988 | 0.05396 | 0.09116 | 0.143 | 579.83 | 276000000.0 | -| RENUSDT | 0.0003563 | 0.000643 | 0.02489 | 0.002511 | 0.01776 | 0.01697 | 113.0 | 0.099 | 0.04695 | 0.05234 | 0.1659 | 1121.67 | 276000000.0 | -| APTUSDT | 0.0004627 | 0.0007687 | 0.03129 | 0.004684 | 0.01216 | 0.009331 | 74.08 | 0.06508 | 0.01306 | 0.0489 | 0.1305 | 385.88 | 276000000.0 | -| DASHUSDT | 0.0002918 | 0.0007617 | 0.03606 | 0.002991 | 0.016 | 0.01336 | 143.0 | 0.08382 | 0.02544 | 0.05254 | 0.1812 | 1373.62 | 276000000.0 | -| LUNA2USDT | 0.0004188 | 0.0005728 | 0.02317 | 0.0001177 | 0.01269 | 0.01141 | 107.0 | 0.06571 | 0.09974 | 0.032 | 0.2241 | 424.83 | 276000000.0 | -| DENTUSDT | 0.0002779 | 0.0007953 | 0.03428 | 0.004249 | 0.01845 | 0.01675 | 139.8 | 0.09959 | 0.09385 | 0.04905 | 0.2362 | 959.79 | 276000000.0 | -| ATAUSDT | 0.000412 | 0.0007535 | 0.05965 | 0.0 | 0.0159 | 0.01641 | 104.2 | 0.08819 | 0.106 | 0.04847 | 0.1194 | 799.83 | 276000000.0 | -| STGUSDT | 0.0003862 | 0.0008183 | 0.03191 | 0.002667 | 0.01222 | 0.009766 | 142.7 | 0.04427 | 0.006946 | 0.01255 | 0.02944 | 440.46 | 276000000.0 | -| ENSUSDT | 0.000496 | 0.001274 | 0.08474 | 0.02602 | 0.01398 | 0.01482 | 130.5 | 0.09781 | 0.1122 | 0.08868 | 0.1816 | 708.83 | 276000000.0 | -| KAVAUSDT | 0.0002998 | 0.0007823 | 0.03989 | 0.01395 | 0.0189 | 0.01403 | 135.2 | 0.07652 | 0.01632 | 0.06409 | 0.2305 | 1198.67 | 276000000.0 | -| HIGHUSDT | 0.0003756 | 0.0007165 | 0.04162 | 0.0 | 0.01724 | 0.01354 | 141.5 | 0.07197 | 0.09058 | 0.04523 | 0.06175 | 274.88 | 276000000.0 | -| XLMUSDT | 0.0002242 | 0.001185 | 0.01497 | 0.000174 | 0.01023 | 0.00791 | 110.4 | 0.03775 | 0.0 | 0.00967 | 0.1262 | 1388.62 | 276000000.0 | -| JOEUSDT | 0.0001199 | 0.0001635 | 0.0346 | 0.002839 | 0.01408 | 0.01219 | 68.8 | 0.08215 | 0.02989 | 0.03804 | 0.07099 | 224.46 | 276000000.0 | -| ONTUSDT | 0.0004092 | 0.0008396 | 0.04923 | 0.005534 | 0.01738 | 0.01622 | 138.8 | 0.09025 | 0.0262 | 0.06084 | 0.1496 | 1366.62 | 276000000.0 | -| DARUSDT | 0.0004439 | 0.0008565 | 0.04947 | 0.009922 | 0.01637 | 0.01208 | 125.1 | 0.09054 | 0.04777 | 0.08439 | 0.1492 | 558.83 | 276000000.0 | -| BLUEBIRDUSDT | 0.0003019 | 0.0005587 | 0.05383 | 0.0 | 0.006914 | 0.005147 | 129.2 | 0.02801 | 0.001365 | 0.01345 | 0.03904 | 371.46 | 276000000.0 | -| IDUSDT | 0.0003059 | 0.0004651 | 0.03814 | 0.02248 | 0.01573 | 0.01351 | 75.83 | 0.07309 | 0.03832 | 0.0664 | 0.1073 | 230.38 | 276000000.0 | -| CHZUSDT | 0.0003041 | 0.001146 | 0.02307 | 4.485e-05 | 0.0129 | 0.01194 | 141.6 | 0.06702 | 0.0 | 0.03014 | 0.07913 | 1021.67 | 276000000.0 | -| MAGICUSDT | 0.0004662 | 0.0005861 | 0.05202 | 0.0121 | 0.01883 | 0.01295 | 110.6 | 0.07022 | 0.03362 | 0.05356 | 0.06919 | 287.83 | 276000000.0 | -| BATUSDT | 0.0003549 | 0.0008523 | 0.04583 | 8.548e-05 | 0.01439 | 0.01567 | 123.4 | 0.09733 | 0.0902 | 0.05058 | 0.2457 | 1364.62 | 276000000.0 | -| IOTAUSDT | 0.0004685 | 0.001444 | 0.06055 | 0.004308 | 0.01323 | 0.01421 | 113.9 | 0.09616 | 0.03204 | 0.07175 | 0.1807 | 1365.62 | 276000000.0 | -| NEOUSDT | 0.0002849 | 0.0005772 | 0.02607 | 0.004798 | 0.01586 | 0.01409 | 122.3 | 0.07338 | 0.02172 | 0.0483 | 0.1207 | 1360.62 | 276000000.0 | -| ANTUSDT | 0.0001072 | 0.0001844 | 0.01438 | 0.0 | 0.02101 | 0.01718 | 127.5 | 0.09526 | 0.0 | 0.02122 | 0.0498 | 681.79 | 276000000.0 | -| XMRUSDT | 0.0004128 | 0.001007 | 0.05323 | 0.01025 | 0.01072 | 0.009861 | 131.8 | 0.05553 | 0.01779 | 0.05117 | 0.2274 | 1374.62 | 276000000.0 | -| SSVUSDT | 0.0004058 | 0.0005229 | 0.03248 | 0.001537 | 0.01633 | 0.01221 | 110.2 | 0.06821 | 0.06834 | 0.04456 | 0.07352 | 257.46 | 276000000.0 | -| DYDXUSDT | 0.0003947 | 0.0008793 | 0.04013 | 0.005749 | 0.01622 | 0.01427 | 134.1 | 0.08864 | 0.05541 | 0.07606 | 0.156 | 789.83 | 276000000.0 | -| FILUSDT | 0.000369 | 0.0007635 | 0.03311 | 0.006678 | 0.01195 | 0.01223 | 122.7 | 0.09455 | 0.0368 | 0.08011 | 0.1864 | 1118.71 | 276000000.0 | -| FOOTBALLUSDT | 0.0002497 | 0.0006075 | 0.05286 | 0.01061 | 0.01092 | 0.008821 | 104.3 | 0.05357 | 0.04626 | 0.04798 | 0.08841 | 433.83 | 276000000.0 | -| PEOPLEUSDT | 0.0003688 | 0.0007634 | 0.03161 | 6.084e-06 | 0.01565 | 0.01148 | 112.0 | 0.06667 | 0.002123 | 0.02863 | 0.09604 | 684.79 | 276000000.0 | -| ATOMUSDT | 0.0004034 | 0.001051 | 0.02548 | 0.001164 | 0.009887 | 0.008346 | 122.7 | 0.0437 | 0.002033 | 0.02013 | 0.09839 | 1370.46 | 276000000.0 | -| TRUUSDT | 0.0004571 | 0.0007626 | 0.0354 | 0.01895 | 0.01193 | 0.01154 | 46.15 | 0.0793 | 0.0179 | 0.07403 | 0.117 | 246.46 | 276000000.0 | -| ZECUSDT | 0.0004755 | 0.0009425 | 0.0315 | 0.009741 | 0.01194 | 0.01221 | 123.0 | 0.06074 | 0.01 | 0.04732 | 0.2413 | 1372.62 | 276000000.0 | -| TLMUSDT | 0.0002777 | 0.0002855 | 0.03136 | 0.0 | 0.01621 | 0.01156 | 126.3 | 0.07487 | 0.0 | 0.02754 | 0.03717 | 223.46 | 276000000.0 | -| PERPUSDT | 0.0004288 | 0.000434 | 0.01914 | 0.003721 | 0.01593 | 0.01151 | 83.33 | 0.04655 | 0.01241 | 0.01002 | 0.04378 | 247.46 | 276000000.0 | -| LPTUSDT | 0.0002877 | 0.0003816 | 0.04124 | 0.008409 | 0.01589 | 0.01561 | 77.93 | 0.102 | 0.1417 | 0.09081 | 0.1488 | 727.83 | 276001987.033 | -| TOMOUSDT | 0.0005547 | 0.0009007 | 0.02351 | 0.005274 | 0.02014 | 0.01904 | 137.4 | 0.1058 | 0.01904 | 0.06027 | 0.2334 | 1122.67 | 276005775.757 | -| JASMYUSDT | 0.0002593 | 0.0003954 | 0.04429 | 4.402e-05 | 0.01463 | 0.01277 | 112.4 | 0.07747 | 0.1549 | 0.06319 | 0.07558 | 567.83 | 276048672.856 | -| MASKUSDT | 0.0001482 | 0.0002614 | 0.02494 | 5.183e-05 | 0.02508 | 0.02651 | 100.7 | 0.1495 | 0.06797 | 0.05945 | 0.1255 | 803.83 | 276049480.297 | -| LEVERUSDT | 0.001366 | 0.001037 | 0.08677 | 0.07066 | 0.01547 | 0.01508 | 53.08 | 0.1181 | 0.06678 | 0.1071 | 0.1539 | 223.46 | 276729792.819 | -| C98USDT | 0.0002669 | 0.0004053 | 0.04175 | 0.002443 | 0.01994 | 0.01922 | 153.7 | 0.1122 | 0.1588 | 0.06766 | 0.1392 | 806.83 | 277066392.362 | -| KLAYUSDT | 9.594e-05 | 0.0001411 | 0.03118 | 0.003156 | 0.01339 | 0.01428 | 132.4 | 0.1208 | 0.2674 | 0.08952 | 0.1894 | 757.83 | 277194873.144 | -| GTCUSDT | 0.0002552 | 0.0004733 | 0.05903 | 0.0129 | 0.02273 | 0.02235 | 129.2 | 0.1333 | 0.2438 | 0.1066 | 0.1918 | 880.83 | 277630067.231 | -| IOTXUSDT | 0.0001862 | 0.0003267 | 0.039 | 0.004518 | 0.0189 | 0.01828 | 144.5 | 0.1383 | 0.1367 | 0.1178 | 0.2054 | 818.83 | 277862688.563 | -| 1000XECUSDT | 0.0001702 | 0.0003007 | 0.02746 | 0.00141 | 0.01696 | 0.01653 | 162.8 | 0.1022 | 0.09388 | 0.05892 | 0.2334 | 782.83 | 277883893.553 | -| DGBUSDT | 8.129e-05 | 0.0002255 | 0.01389 | 0.0 | 0.02009 | 0.01552 | 181.9 | 0.07581 | 0.0 | 0.01192 | 0.04347 | 931.83 | 279795000.0 | -| GMTUSDT | 7.198e-05 | 0.001038 | 0.103 | 0.07351 | 0.01905 | 0.02166 | 127.9 | 0.1515 | 0.1823 | 0.1415 | 0.1979 | 603.79 | 280527413.506 | -| BTCDOMUSDT | 5.253e-05 | 0.0001349 | 0.02027 | 0.00519 | 0.006248 | 0.00471 | 204.4 | 0.01847 | 0.08785 | 0.007118 | 0.02149 | 870.83 | 282038333.333 | -| BAKEUSDT | 0.000252 | 0.0003964 | 0.06965 | 0.0179 | 0.02554 | 0.02833 | 97.4 | 0.1788 | 0.3024 | 0.1492 | 0.2419 | 903.67 | 282522348.62 | -| FLOWUSDT | 0.000155 | 0.0002974 | 0.07628 | 0.02992 | 0.02229 | 0.02446 | 134.3 | 0.1853 | 0.3128 | 0.1494 | 0.173 | 636.83 | 282653656.54 | -| USDCUSDT | -8.597e-10 | -8.597e-09 | 0.00355 | 0.0 | 40.0 | 0.4002 | nan | 0.004399 | 1.0 | 5.208e-05 | 5.408e-05 | 241.25 | 284500000.0 | -| COCOSUSDT | 1.167e-05 | 0.0001167 | 0.008391 | 9.6e-05 | 50.01 | 0.5053 | 4023.0 | 0.04544 | 0.5 | 0.009513 | 0.02705 | 260.38 | 667376666.667 | -| HNTUSDT | 7.765e-05 | 0.0003714 | 0.02188 | 0.004633 | 10.02 | 0.1165 | 5606.0 | 0.1103 | 0.1153 | 0.05988 | 0.2422 | 1136.67 | 822215345.301 | -| CVCUSDT | 6.777e-05 | 0.0005245 | 0.01531 | 0.0007969 | 20.01 | 0.2124 | 8274.0 | 0.07758 | 0.2314 | 0.03829 | 0.1408 | 1092.67 | 1089779141.55 | -| SRMUSDT | 8.348e-05 | 0.0004491 | 0.05332 | 0.005417 | 20.02 | 0.2283 | 8616.0 | 0.1922 | 0.2556 | 0.1433 | 0.2478 | 1159.88 | 1128725896.76 | -| RAYUSDT | 1.46e-05 | 6.496e-05 | 0.0812 | 0.06408 | 30.02 | 0.3289 | 8612.0 | 0.2667 | 0.9202 | 0.2911 | 0.3203 | 810.83 | 1220069105.9 | -| FTTUSDT | 4.452e-05 | 0.0004452 | 0.008265 | 0.0004582 | 50.01 | 0.5109 | 8636.0 | 0.07011 | 0.5207 | 0.02273 | 0.3908 | 572.83 | 1269735941.84 | -| BTSUSDT | 5.511e-05 | 0.0005162 | 0.02673 | 0.004852 | 30.01 | 0.3133 | 10740.0 | 0.1006 | 0.4145 | 0.06188 | 0.1667 | 1010.67 | 1338538534.49 | -| SCUSDT | 3.279e-05 | 0.0003279 | 0.007048 | 0.0003942 | 40.01 | 0.4099 | 12230.0 | 0.06143 | 0.4005 | 0.01072 | 0.06324 | 940.67 | 1487484605.22 | -| BTCSTUSDT | 2.62e-06 | 2.62e-05 | 0.002569 | 0.0 | 80.0 | 0.8002 | 23330.0 | 0.005292 | 0.8 | 0.0001349 | 0.002464 | 979.67 | 2600605000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - -+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| short | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| symbol | adg_w_per_exp | adg_per_exp | exp_rts_mean | time_at_max_exp | pa_dist_mean | pa_dist_std | hrs_stuck_max | pa_dist_1pct_worst_mean | loss_profit_rt | drawdown_1pct_worst_mean | drawdown_max | n_days | score | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ -| ARKMUSDT | 0.003609 | 0.003566 | 0.05397 | 0.02958 | 0.009147 | 0.009988 | 38.2 | 0.0757 | 0.01759 | 0.08479 | 0.1846 | 103.88 | 275999999.996 | -| XVGUSDT | 0.002718 | 0.002332 | 0.04731 | 0.01819 | 0.008717 | 0.009684 | 48.33 | 0.06662 | 0.024 | 0.07179 | 0.1471 | 126.46 | 275999999.997 | -| FETUSDT | 0.002913 | 0.002648 | 0.04307 | 0.01851 | 0.008478 | 0.009661 | 88.15 | 0.08179 | 0.01208 | 0.09081 | 0.2234 | 295.88 | 275999999.997 | -| HFTUSDT | 0.002653 | 0.001896 | 0.06277 | 0.03173 | 0.008876 | 0.007368 | 58.63 | 0.04285 | 0.0166 | 0.04493 | 0.08422 | 216.46 | 275999999.997 | -| 1000FLOKIUSDT | 0.002827 | 0.001162 | 0.02146 | 0.001698 | 0.009729 | 0.009039 | 102.0 | 0.04968 | 0.0 | 0.01527 | 0.07449 | 186.29 | 275999999.997 | -| AGLDUSDT | 0.003059 | 0.002704 | 0.02506 | 0.007368 | 0.009152 | 0.008262 | 63.63 | 0.03345 | 0.0 | 0.01587 | 0.078 | 102.88 | 275999999.997 | -| BLURUSDT | 0.003097 | 0.001459 | 0.04005 | 0.003212 | 0.01015 | 0.008658 | 102.6 | 0.04889 | 0.01026 | 0.02873 | 0.09149 | 194.46 | 275999999.997 | -| IDEXUSDT | 0.001827 | 0.001889 | 0.07269 | 0.06207 | 0.006496 | 0.01189 | 103.0 | 0.07595 | 0.06886 | 0.08428 | 0.1436 | 189.46 | 275999999.998 | -| FLMUSDT | 0.001695 | 0.001149 | 0.02389 | 0.004556 | 0.01952 | 0.01752 | 133.8 | 0.0896 | 0.003662 | 0.038 | 0.2126 | 1135.67 | 275999999.998 | -| EDUUSDT | 0.002035 | 0.00176 | 0.03808 | 0.01121 | 0.008956 | 0.009538 | 110.7 | 0.07499 | 0.007172 | 0.07915 | 0.1543 | 192.46 | 275999999.998 | -| AMBUSDT | 0.002027 | 0.002153 | 0.03449 | 0.004026 | 0.009697 | 0.007296 | 54.3 | 0.02916 | 0.0009752 | 0.01628 | 0.03195 | 223.46 | 275999999.998 | -| MAVUSDT | 0.001948 | 0.002012 | 0.03995 | 0.01349 | 0.008334 | 0.007733 | 64.42 | 0.04785 | 0.007292 | 0.0478 | 0.1215 | 132.46 | 275999999.998 | -| BLZUSDT | 0.002164 | 0.001437 | 0.02247 | 0.00754 | 0.01332 | 0.01136 | 87.3 | 0.058 | 0.01832 | 0.05019 | 0.241 | 1147.67 | 275999999.998 | -| BNXUSDT | 0.002437 | 0.001963 | 0.04931 | 0.0201 | 0.008809 | 0.008923 | 97.23 | 0.0572 | 0.01761 | 0.06056 | 0.2421 | 259.38 | 275999999.998 | -| PENDLEUSDT | 0.002486 | 0.001617 | 0.02939 | 0.008618 | 0.009216 | 0.00746 | 92.25 | 0.03133 | 0.0003033 | 0.01352 | 0.02765 | 103.88 | 275999999.998 | -| RADUSDT | 0.001905 | 0.001535 | 0.05461 | 0.02354 | 0.008364 | 0.008192 | 71.27 | 0.05235 | 0.05048 | 0.05624 | 0.1723 | 182.46 | 275999999.998 | -| COMBOUSDT | 0.002267 | 0.00192 | 0.06953 | 0.04269 | 0.008936 | 0.008438 | 40.53 | 0.05813 | 0.1244 | 0.06552 | 0.1165 | 159.46 | 275999999.998 | -| SUIUSDT | 0.00153 | 0.001146 | 0.03436 | 0.01864 | 0.007416 | 0.006783 | 60.72 | 0.04182 | 0.03355 | 0.04478 | 0.08625 | 189.29 | 275999999.998 | -| SSVUSDT | 0.001593 | 0.001793 | 0.05352 | 0.009369 | 0.009074 | 0.009195 | 83.57 | 0.05004 | 0.01908 | 0.04613 | 0.08878 | 257.46 | 275999999.998 | -| LQTYUSDT | 0.002405 | 0.00198 | 0.05099 | 0.008572 | 0.01003 | 0.009338 | 55.6 | 0.07464 | 0.006093 | 0.07639 | 0.2286 | 243.46 | 275999999.998 | -| STMXUSDT | 0.00185 | 0.001805 | 0.0631 | 0.03186 | 0.01589 | 0.01292 | 117.2 | 0.08588 | 0.0209 | 0.09832 | 0.2207 | 961.67 | 275999999.998 | -| MDTUSDT | 0.001952 | 0.001418 | 0.01747 | 0.001424 | 0.009832 | 0.008148 | 124.2 | 0.03488 | 0.0 | 0.005985 | 0.02923 | 131.46 | 275999999.998 | -| XEMUSDT | 0.0008742 | 0.001556 | 0.05613 | 0.02188 | 0.01057 | 0.01215 | 108.7 | 0.08829 | 0.02026 | 0.09681 | 0.2418 | 980.67 | 275999999.999 | -| EOSUSDT | 0.0005008 | 0.0008677 | 0.05349 | 0.0201 | 0.01594 | 0.01705 | 133.0 | 0.08041 | 0.05179 | 0.08527 | 0.1777 | 1400.62 | 275999999.999 | -| DUSKUSDT | 0.0006013 | 0.00103 | 0.03728 | 0.005321 | 0.01544 | 0.01113 | 121.0 | 0.0592 | 0.007266 | 0.05292 | 0.1937 | 670.83 | 275999999.999 | -| TOMOUSDT | 0.001044 | 0.0008224 | 0.02147 | 0.003682 | 0.01202 | 0.01092 | 70.72 | 0.0581 | 0.05323 | 0.03737 | 0.2139 | 1122.67 | 275999999.999 | -| EGLDUSDT | 0.0005607 | 0.0009865 | 0.02983 | 0.01535 | 0.01376 | 0.01249 | 143.3 | 0.05283 | 0.03715 | 0.04937 | 0.2158 | 1150.67 | 275999999.999 | -| LEVERUSDT | 0.00131 | 0.001569 | 0.03655 | 0.008127 | 0.01394 | 0.0101 | 73.48 | 0.04594 | 0.00529 | 0.0339 | 0.1115 | 223.46 | 275999999.999 | -| CTSIUSDT | 0.0006398 | 0.00118 | 0.04245 | 0.02577 | 0.01151 | 0.01071 | 81.78 | 0.06957 | 0.01423 | 0.07681 | 0.1525 | 743.83 | 275999999.999 | -| KNCUSDT | 0.0006383 | 0.000967 | 0.03617 | 0.006526 | 0.01661 | 0.01502 | 142.3 | 0.08791 | 0.03126 | 0.06211 | 0.1916 | 1234.62 | 275999999.999 | -| OMGUSDT | 0.0007073 | 0.001457 | 0.04949 | 0.02648 | 0.01549 | 0.01394 | 113.1 | 0.08706 | 0.0258 | 0.09927 | 0.2338 | 1224.58 | 275999999.999 | -| MINAUSDT | 0.000811 | 0.0005042 | 0.01676 | 0.0004704 | 0.01506 | 0.01161 | 141.9 | 0.05028 | 0.03202 | 0.01447 | 0.106 | 274.5 | 275999999.999 | -| ACHUSDT | 0.001339 | 0.001119 | 0.04399 | 0.02284 | 0.01291 | 0.01327 | 121.3 | 0.07472 | 0.02448 | 0.06711 | 0.1052 | 259.38 | 275999999.999 | -| UMAUSDT | 0.0008793 | 0.0007597 | 0.04481 | 0.004543 | 0.009024 | 0.008839 | 87.8 | 0.0523 | 0.004415 | 0.0362 | 0.1597 | 182.46 | 275999999.999 | -| QTUMUSDT | 0.0005932 | 0.0009585 | 0.04688 | 0.01453 | 0.01703 | 0.01548 | 138.9 | 0.08664 | 0.01735 | 0.07212 | 0.2058 | 1357.62 | 275999999.999 | -| RSRUSDT | 0.0007925 | 0.001656 | 0.04176 | 0.02307 | 0.01518 | 0.01347 | 104.7 | 0.08075 | 0.03955 | 0.09592 | 0.1957 | 1115.67 | 275999999.999 | -| TRBUSDT | 0.001445 | 0.001056 | 0.02715 | 0.006513 | 0.01203 | 0.01242 | 67.85 | 0.07756 | 0.06529 | 0.08291 | 0.201 | 1161.67 | 275999999.999 | -| MANAUSDT | 0.0007793 | 0.001818 | 0.04099 | 0.02075 | 0.01099 | 0.01122 | 135.4 | 0.0683 | 0.0128 | 0.07508 | 0.2157 | 968.67 | 275999999.999 | -| HBARUSDT | 0.0006524 | 0.001023 | 0.04219 | 0.01531 | 0.01489 | 0.01515 | 141.6 | 0.08484 | 0.02596 | 0.08178 | 0.1937 | 966.67 | 275999999.999 | -| GALUSDT | 0.001184 | 0.002453 | 0.07894 | 0.02474 | 0.01235 | 0.01664 | 101.2 | 0.08928 | 0.07624 | 0.09933 | 0.1606 | 552.38 | 275999999.999 | -| BANDUSDT | 0.0005707 | 0.000904 | 0.02447 | 0.003663 | 0.0184 | 0.0152 | 117.2 | 0.07146 | 0.000502 | 0.02221 | 0.1131 | 1197.67 | 275999999.999 | -| AGIXUSDT | 0.001347 | 0.001642 | 0.03785 | 0.007111 | 0.009126 | 0.00739 | 83.62 | 0.0361 | 0.004456 | 0.02758 | 0.08859 | 265.38 | 275999999.999 | -| FXSUSDT | 0.000863 | 0.0009942 | 0.09059 | 0.03061 | 0.01393 | 0.0132 | 111.3 | 0.0905 | 0.1127 | 0.09591 | 0.1611 | 292.83 | 275999999.999 | -| DEFIUSDT | 0.0007213 | 0.001405 | 0.08779 | 0.06197 | 0.01484 | 0.01476 | 136.8 | 0.08735 | 0.04575 | 0.09941 | 0.1435 | 1167.67 | 275999999.999 | -| ENJUSDT | 0.0007308 | 0.001592 | 0.05919 | 0.01301 | 0.01268 | 0.01372 | 140.2 | 0.08977 | 0.01728 | 0.09334 | 0.2071 | 1135.67 | 275999999.999 | -| SNXUSDT | 0.0007392 | 0.0008576 | 0.03404 | 0.00753 | 0.02067 | 0.0212 | 134.2 | 0.09973 | 0.02321 | 0.03837 | 0.1054 | 1181.67 | 275999999.999 | -| HOTUSDT | 0.0008083 | 0.001644 | 0.0839 | 0.01651 | 0.01476 | 0.01635 | 93.42 | 0.09525 | 0.02197 | 0.09379 | 0.1884 | 953.67 | 275999999.999 | -| ZENUSDT | 0.0007238 | 0.001362 | 0.05659 | 0.009076 | 0.01929 | 0.01687 | 127.6 | 0.09175 | 0.01272 | 0.06194 | 0.1779 | 1079.67 | 275999999.999 | -| SPELLUSDT | 0.001227 | 0.001125 | 0.0359 | 0.007253 | 0.01033 | 0.009009 | 126.4 | 0.04966 | 0.01171 | 0.03226 | 0.09196 | 428.46 | 275999999.999 | -| OGNUSDT | 0.0008777 | 0.0008434 | 0.02548 | 0.01086 | 0.01237 | 0.0105 | 97.22 | 0.06436 | 0.03424 | 0.07044 | 0.2159 | 951.67 | 275999999.999 | -| JASMYUSDT | 0.0008444 | 0.001634 | 0.06104 | 0.01691 | 0.01189 | 0.01208 | 121.3 | 0.08198 | 0.0388 | 0.08763 | 0.1566 | 567.83 | 275999999.999 | -| WOOUSDT | 0.0007636 | 0.001241 | 0.04515 | 0.02022 | 0.01456 | 0.01161 | 101.9 | 0.05568 | 0.01455 | 0.0545 | 0.1182 | 579.83 | 275999999.999 | -| SUSHIUSDT | 0.0008468 | 0.001639 | 0.04061 | 0.01969 | 0.01425 | 0.0141 | 104.4 | 0.07898 | 0.01287 | 0.08895 | 0.1973 | 1160.67 | 275999999.999 | -| RENUSDT | 0.0006392 | 0.0009133 | 0.03669 | 0.008628 | 0.01833 | 0.01695 | 123.4 | 0.09877 | 0.03963 | 0.07681 | 0.2456 | 1121.67 | 275999999.999 | -| CELOUSDT | 0.0006898 | 0.0009448 | 0.04749 | 0.0239 | 0.01547 | 0.01451 | 95.93 | 0.07803 | 0.02905 | 0.08033 | 0.1935 | 772.83 | 275999999.999 | -| APEUSDT | 0.0007159 | 0.001278 | 0.04386 | 0.01325 | 0.01046 | 0.009567 | 98.82 | 0.07897 | 0.008581 | 0.08757 | 0.2498 | 601.33 | 275999999.999 | -| ADAUSDT | 0.0005145 | 0.001071 | 0.04878 | 0.01972 | 0.01049 | 0.01142 | 118.4 | 0.07792 | 0.04266 | 0.08582 | 0.1754 | 1377.62 | 275999999.999 | -| GRTUSDT | 0.0005471 | 0.001062 | 0.02997 | 0.01193 | 0.01535 | 0.01369 | 90.42 | 0.07264 | 0.03259 | 0.06047 | 0.2221 | 1054.67 | 275999999.999 | -| CELRUSDT | 0.001038 | 0.002411 | 0.07569 | 0.03731 | 0.01195 | 0.012 | 119.4 | 0.08617 | 0.02523 | 0.09696 | 0.2052 | 954.67 | 275999999.999 | -| DASHUSDT | 0.0006035 | 0.001161 | 0.08274 | 0.02777 | 0.01682 | 0.01825 | 130.0 | 0.08003 | 0.0825 | 0.08359 | 0.1821 | 1373.62 | 275999999.999 | -| LUNA2USDT | 0.001041 | 0.001498 | 0.03427 | 0.002559 | 0.00624 | 0.006842 | 71.72 | 0.04444 | 0.00437 | 0.03274 | 0.1536 | 424.83 | 275999999.999 | -| ATAUSDT | 0.0008839 | 0.001698 | 0.06924 | 0.004833 | 0.01266 | 0.01379 | 143.4 | 0.08344 | 0.02297 | 0.08381 | 0.1544 | 799.83 | 275999999.999 | -| OCEANUSDT | 0.00106 | 0.001859 | 0.1 | 0.01399 | 0.01563 | 0.01713 | 108.3 | 0.09454 | 0.04665 | 0.0994 | 0.2369 | 1100.67 | 275999999.999 | -| SFPUSDT | 0.00086 | 0.001668 | 0.05735 | 0.0264 | 0.01483 | 0.01119 | 78.67 | 0.07671 | 0.03355 | 0.08667 | 0.2463 | 987.67 | 275999999.999 | -| ONEUSDT | 0.0005106 | 0.001116 | 0.03468 | 0.01121 | 0.01538 | 0.01323 | 117.4 | 0.07929 | 0.02269 | 0.08652 | 0.2183 | 965.67 | 275999999.999 | -| ENSUSDT | 0.0005009 | 0.001274 | 0.06751 | 0.01113 | 0.01523 | 0.01234 | 121.1 | 0.07528 | 0.01414 | 0.07548 | 0.1534 | 708.83 | 275999999.999 | -| LINAUSDT | 0.0005274 | 0.0006388 | 0.01914 | 0.003032 | 0.02212 | 0.01914 | 127.7 | 0.09893 | 0.004044 | 0.02522 | 0.1408 | 964.67 | 275999999.999 | -| 1000LUNCUSDT | 0.0005234 | 0.001036 | 0.04259 | 0.008458 | 0.01316 | 0.01038 | 119.5 | 0.07256 | 0.03389 | 0.07268 | 0.219 | 425.42 | 275999999.999 | -| PHBUSDT | 0.0008267 | 0.00111 | 0.03714 | 0.005086 | 0.009973 | 0.007869 | 63.6 | 0.03872 | 0.003827 | 0.02483 | 0.06613 | 265.38 | 275999999.999 | -| KAVAUSDT | 0.0005641 | 0.001179 | 0.04474 | 0.02066 | 0.01536 | 0.01683 | 142.3 | 0.09464 | 0.02529 | 0.09513 | 0.1899 | 1198.67 | 275999999.999 | -| HIGHUSDT | 0.001185 | 0.002239 | 0.03018 | 0.01385 | 0.01006 | 0.009013 | 85.08 | 0.04841 | 0.006461 | 0.04917 | 0.1054 | 274.88 | 275999999.999 | -| IMXUSDT | 0.0005211 | 0.0006808 | 0.01731 | 0.002496 | 0.01454 | 0.01199 | 100.9 | 0.05523 | 0.0005475 | 0.0201 | 0.1406 | 635.83 | 275999999.999 | -| XLMUSDT | 0.0005287 | 0.000694 | 0.02919 | 0.01177 | 0.01345 | 0.01164 | 128.5 | 0.06066 | 0.02511 | 0.05282 | 0.1288 | 1388.62 | 275999999.999 | -| JOEUSDT | 0.0007254 | 0.0008372 | 0.07276 | 0.01453 | 0.01252 | 0.0131 | 59.17 | 0.08259 | 0.04875 | 0.07234 | 0.1054 | 224.46 | 275999999.999 | -| LITUSDT | 0.0009177 | 0.001667 | 0.05215 | 0.01348 | 0.0158 | 0.014 | 129.3 | 0.07795 | 0.03607 | 0.07879 | 0.2095 | 993.67 | 275999999.999 | -| ONTUSDT | 0.0009412 | 0.00147 | 0.05398 | 0.02374 | 0.01013 | 0.0105 | 68.38 | 0.07479 | 0.05257 | 0.08936 | 0.1713 | 1366.62 | 275999999.999 | -| DARUSDT | 0.0008581 | 0.00117 | 0.04177 | 0.01275 | 0.01486 | 0.01113 | 106.7 | 0.06436 | 0.0107 | 0.06808 | 0.2025 | 558.83 | 275999999.999 | -| LDOUSDT | 0.0006484 | 0.001058 | 0.03762 | 0.005475 | 0.01306 | 0.009896 | 104.0 | 0.03999 | 0.006507 | 0.02128 | 0.07148 | 412.46 | 275999999.999 | -| RLCUSDT | 0.0008954 | 0.002006 | 0.07718 | 0.01925 | 0.01629 | 0.01451 | 105.1 | 0.09308 | 0.0208 | 0.09463 | 0.1787 | 1195.67 | 275999999.999 | -| VETUSDT | 0.0005029 | 0.001271 | 0.0377 | 0.0205 | 0.01252 | 0.01204 | 141.1 | 0.06569 | 0.01696 | 0.07245 | 0.1614 | 1363.62 | 275999999.999 | -| XVSUSDT | 0.001096 | 0.0005607 | 0.01128 | 0.0001191 | 0.01352 | 0.01107 | 108.4 | 0.0485 | 0.0 | 0.005649 | 0.01066 | 209.88 | 275999999.999 | -| IDUSDT | 0.001078 | 0.001119 | 0.02784 | 0.009747 | 0.006725 | 0.007222 | 41.92 | 0.04329 | 0.01603 | 0.04282 | 0.1197 | 230.38 | 275999999.999 | -| KEYUSDT | 0.001195 | 0.001628 | 0.06264 | 0.01333 | 0.009841 | 0.01004 | 94.55 | 0.05939 | 0.02737 | 0.06068 | 0.1092 | 168.46 | 275999999.999 | -| MAGICUSDT | 0.0007633 | 0.0008892 | 0.02277 | 0.00686 | 0.01123 | 0.01062 | 86.47 | 0.06353 | 0.003826 | 0.04679 | 0.1225 | 287.83 | 275999999.999 | -| RUNEUSDT | 0.001064 | 0.001129 | 0.0333 | 0.01468 | 0.01643 | 0.01396 | 129.4 | 0.07127 | 0.01324 | 0.07697 | 0.1702 | 1160.67 | 275999999.999 | -| WLDUSDT | 0.001087 | 0.001549 | 0.02216 | 0.005426 | 0.00848 | 0.007915 | 29.63 | 0.0459 | 0.002023 | 0.03369 | 0.1353 | 107.46 | 275999999.999 | -| INJUSDT | 0.0009965 | 0.001367 | 0.03348 | 0.008362 | 0.01236 | 0.01234 | 116.4 | 0.0636 | 0.001391 | 0.02217 | 0.07639 | 448.88 | 275999999.999 | -| ALGOUSDT | 0.0007074 | 0.001489 | 0.07257 | 0.01837 | 0.01464 | 0.01272 | 137.4 | 0.07606 | 0.08314 | 0.08993 | 0.2013 | 1240.58 | 275999999.999 | -| IOTAUSDT | 0.0005305 | 0.001168 | 0.02951 | 0.009186 | 0.01109 | 0.00972 | 141.2 | 0.04432 | 0.005225 | 0.03547 | 0.1788 | 1365.62 | 275999999.999 | -| NEOUSDT | 0.0007812 | 0.001341 | 0.09147 | 0.02586 | 0.01326 | 0.0122 | 128.7 | 0.07677 | 0.05286 | 0.08261 | 0.2016 | 1360.62 | 275999999.999 | -| BCHUSDT | 0.0005095 | 0.000421 | 0.03278 | 0.005951 | 0.01611 | 0.01596 | 129.4 | 0.09976 | 0.1163 | 0.08532 | 0.2423 | 1407.96 | 275999999.999 | -| XMRUSDT | 0.0005042 | 0.001131 | 0.08307 | 0.01795 | 0.01189 | 0.01326 | 101.4 | 0.08146 | 0.05751 | 0.09226 | 0.1799 | 1374.62 | 275999999.999 | -| COMPUSDT | 0.0006257 | 0.0006439 | 0.03285 | 0.01728 | 0.01708 | 0.01538 | 99.25 | 0.08067 | 0.02423 | 0.08365 | 0.1624 | 1226.58 | 275999999.999 | -| GMXUSDT | 0.0005681 | 0.0004642 | 0.03958 | 0.008221 | 0.0146 | 0.01094 | 138.7 | 0.05154 | 0.0261 | 0.04574 | 0.08705 | 264.38 | 275999999.999 | -| TUSDT | 0.001436 | 0.001029 | 0.02814 | 0.01026 | 0.00929 | 0.009653 | 127.2 | 0.06027 | 0.03061 | 0.06069 | 0.175 | 280.42 | 275999999.999 | -| MKRUSDT | 0.001048 | 0.001078 | 0.02644 | 0.009688 | 0.009624 | 0.008797 | 73.27 | 0.0451 | 0.01155 | 0.0408 | 0.2157 | 1182.67 | 275999999.999 | -| XTZUSDT | 0.0006229 | 0.001413 | 0.0441 | 0.02028 | 0.01094 | 0.009749 | 122.8 | 0.06543 | 0.03306 | 0.07467 | 0.1724 | 1371.62 | 275999999.999 | -| SOLUSDT | 0.0008312 | 0.00107 | 0.04711 | 0.02734 | 0.01667 | 0.02162 | 96.68 | 0.06966 | 0.03781 | 0.05885 | 0.19 | 1150.67 | 275999999.999 | -| CHRUSDT | 0.0006053 | 0.001371 | 0.04366 | 0.01512 | 0.01604 | 0.01247 | 128.1 | 0.07465 | 0.01941 | 0.08319 | 0.2455 | 971.67 | 275999999.999 | -| STXUSDT | 0.000625 | 0.0007289 | 0.0145 | 0.003184 | 0.01036 | 0.00986 | 113.2 | 0.05241 | 0.002188 | 0.02562 | 0.07352 | 260.38 | 275999999.999 | -| THETAUSDT | 0.0005104 | 0.001107 | 0.0482 | 0.01187 | 0.01518 | 0.01258 | 117.9 | 0.0607 | 0.05619 | 0.06179 | 0.2428 | 1260.62 | 275999999.999 | -| ARBUSDT | 0.0006878 | 0.0005868 | 0.03011 | 0.01058 | 0.01136 | 0.009904 | 109.3 | 0.04416 | 0.02927 | 0.03288 | 0.06656 | 230.33 | 275999999.999 | -| SKLUSDT | 0.0006078 | 0.001681 | 0.03991 | 0.008233 | 0.01564 | 0.01338 | 112.7 | 0.06774 | 0.04168 | 0.05431 | 0.204 | 1065.67 | 275999999.999 | -| ASTRUSDT | 0.00137 | 0.00132 | 0.02833 | 0.009456 | 0.01217 | 0.009605 | 80.27 | 0.04141 | 0.003291 | 0.02384 | 0.1179 | 267.88 | 275999999.999 | -| HOOKUSDT | 0.001443 | 0.00194 | 0.03828 | 0.008161 | 0.01099 | 0.009317 | 100.8 | 0.04763 | 0.003585 | 0.03227 | 0.09131 | 289.83 | 275999999.999 | -| RDNTUSDT | 0.001422 | 0.001349 | 0.04782 | 0.004617 | 0.01118 | 0.00948 | 99.02 | 0.04981 | 0.004297 | 0.02324 | 0.05045 | 217.46 | 275999999.999 | -| NMRUSDT | 0.00134 | 0.001642 | 0.05166 | 0.001314 | 0.0106 | 0.0104 | 60.48 | 0.0584 | 0.00136 | 0.02609 | 0.1807 | 139.46 | 275999999.999 | -| ATOMUSDT | 0.0007542 | 0.002113 | 0.05277 | 0.02987 | 0.01258 | 0.01217 | 140.6 | 0.07457 | 0.01616 | 0.08252 | 0.2269 | 1370.46 | 275999999.999 | -| NKNUSDT | 0.0005623 | 0.001203 | 0.04746 | 0.004265 | 0.01507 | 0.01776 | 133.6 | 0.09842 | 0.05802 | 0.07414 | 0.2496 | 943.67 | 275999999.999 | -| CKBUSDT | 0.001267 | 0.001192 | 0.02986 | 0.0109 | 0.01007 | 0.007861 | 105.1 | 0.03209 | 0.003743 | 0.01979 | 0.05247 | 253.46 | 275999999.999 | -| ARPAUSDT | 0.0005296 | 0.000836 | 0.01738 | 0.0008045 | 0.01629 | 0.01353 | 129.3 | 0.05988 | 0.0 | 0.01279 | 0.1362 | 750.83 | 275999999.999 | -| C98USDT | 0.0005244 | 0.0007722 | 0.05338 | 0.008267 | 0.01789 | 0.01759 | 106.5 | 0.09578 | 0.06745 | 0.08632 | 0.1738 | 806.83 | 275999999.999 | -| ZRXUSDT | 0.0006312 | 0.001023 | 0.04201 | 0.004249 | 0.01423 | 0.01371 | 105.0 | 0.07457 | 0.008363 | 0.05344 | 0.2471 | 1232.58 | 275999999.999 | -| ICPUSDT | 0.000719 | 0.0007983 | 0.03267 | 0.007028 | 0.007803 | 0.006491 | 121.5 | 0.03165 | 0.01581 | 0.0237 | 0.079 | 407.88 | 275999999.999 | -| REEFUSDT | 0.001077 | 0.00197 | 0.05965 | 0.01558 | 0.01268 | 0.01238 | 118.9 | 0.08078 | 0.03185 | 0.09051 | 0.2184 | 989.67 | 275999999.999 | -| TRUUSDT | 0.001343 | 0.001454 | 0.02637 | 0.008345 | 0.01146 | 0.009721 | 72.02 | 0.04517 | 0.00444 | 0.03405 | 0.2329 | 246.46 | 275999999.999 | -| LINKUSDT | 0.0007591 | 0.001154 | 0.06351 | 0.02255 | 0.01796 | 0.01604 | 129.0 | 0.07916 | 0.008733 | 0.06729 | 0.1475 | 1391.62 | 275999999.999 | -| XRPUSDT | 0.0005286 | 0.0006605 | 0.01945 | 0.005926 | 0.01299 | 0.01155 | 127.9 | 0.0572 | 0.01733 | 0.04351 | 0.1779 | 1402.62 | 275999999.999 | -| ZECUSDT | 0.0005249 | 0.001108 | 0.05865 | 0.01729 | 0.01195 | 0.01117 | 99.6 | 0.08058 | 0.02338 | 0.08869 | 0.2329 | 1372.62 | 275999999.999 | -| TLMUSDT | 0.001459 | 0.001052 | 0.0314 | 0.004455 | 0.007741 | 0.006403 | 86.67 | 0.03687 | 0.0035 | 0.02022 | 0.0589 | 223.46 | 275999999.999 | -| PERPUSDT | 0.0011 | 0.001352 | 0.01983 | 0.003552 | 0.01036 | 0.007641 | 53.55 | 0.03107 | 0.0005483 | 0.01126 | 0.04309 | 247.46 | 275999999.999 | -| 1000PEPEUSDT | 0.001192 | 0.001167 | 0.02778 | 0.00849 | 0.01143 | 0.01011 | 60.35 | 0.07596 | 0.01795 | 0.08386 | 0.1558 | 187.29 | 275999999.999 | -| DGBUSDT | 0.0005669 | 0.001213 | 0.08235 | 0.00812 | 0.01283 | 0.01445 | 100.4 | 0.09193 | 0.04091 | 0.09704 | 0.2426 | 931.83 | 275999999.999 | -| CRVUSDT | 0.0004618 | 0.0009781 | 0.04781 | 0.006599 | 0.01818 | 0.01567 | 125.1 | 0.09037 | 0.03596 | 0.08787 | 0.2461 | 1163.67 | 276000000.0 | -| AAVEUSDT | 0.0004364 | 0.0007014 | 0.02187 | 0.008227 | 0.01477 | 0.01191 | 110.2 | 0.05547 | 0.01509 | 0.04443 | 0.1414 | 1118.67 | 276000000.0 | -| ETHUSDT | 0.0003171 | 0.0007974 | 0.0571 | 0.02436 | 0.009537 | 0.01213 | 130.6 | 0.08722 | 0.03159 | 0.09655 | 0.1858 | 1407.96 | 276000000.0 | -| LRCUSDT | 0.0002535 | 0.0006051 | 0.02387 | 0.004029 | 0.01656 | 0.01494 | 124.8 | 0.08135 | 0.05754 | 0.06161 | 0.2494 | 1115.67 | 276000000.0 | -| QNTUSDT | 0.0004723 | 0.0007755 | 0.05425 | 0.02893 | 0.00841 | 0.01279 | 69.1 | 0.07623 | 0.04945 | 0.08443 | 0.1089 | 384.88 | 276000000.0 | -| BTCUSDT | 0.0001357 | 0.0001578 | 0.01607 | 0.004462 | 0.01344 | 0.009868 | 140.9 | 0.04113 | 0.005947 | 0.01015 | 0.1016 | 1407.96 | 276000000.0 | -| 1000XECUSDT | 0.0004863 | 0.0005882 | 0.02151 | 0.006621 | 0.01295 | 0.009735 | 128.1 | 0.04607 | 0.03361 | 0.03145 | 0.159 | 782.83 | 276000000.0 | -| ROSEUSDT | 0.0002111 | 0.000359 | 0.02051 | 0.003583 | 0.01798 | 0.01621 | 113.8 | 0.08359 | 0.02277 | 0.03801 | 0.1659 | 677.83 | 276000000.0 | -| AUDIOUSDT | 0.0002637 | 0.0004877 | 0.02859 | 0.005199 | 0.01274 | 0.01281 | 91.2 | 0.08598 | 0.07479 | 0.09579 | 0.2447 | 811.83 | 276000000.0 | -| TRXUSDT | 0.0002793 | 0.0008203 | 0.05686 | 0.0267 | 0.009154 | 0.01155 | 143.8 | 0.07918 | 0.05342 | 0.09007 | 0.1866 | 1393.62 | 276000000.0 | -| ETCUSDT | 0.0003957 | 0.0008952 | 0.02522 | 0.009553 | 0.01249 | 0.01071 | 143.1 | 0.04853 | 0.02573 | 0.03695 | 0.1474 | 1392.62 | 276000000.0 | -| IOSTUSDT | 0.0002455 | 0.0006168 | 0.02535 | 0.001225 | 0.0144 | 0.01485 | 132.0 | 0.08288 | 0.003088 | 0.04018 | 0.1955 | 1356.62 | 276000000.0 | -| MTLUSDT | 0.0002925 | 0.0004856 | 0.02479 | 0.006735 | 0.01748 | 0.01673 | 139.8 | 0.09666 | 0.02128 | 0.06875 | 0.2427 | 952.67 | 276000000.0 | -| 1000SHIBUSDT | 0.0002593 | 0.0006488 | 0.01867 | 0.003352 | 0.009864 | 0.01238 | 102.1 | 0.09384 | 0.04441 | 0.0896 | 0.24 | 912.25 | 276000000.0 | -| BNBUSDT | 0.0002136 | 0.0005375 | 0.04836 | 0.02848 | 0.01194 | 0.009495 | 137.0 | 0.06201 | 0.04473 | 0.06901 | 0.1226 | 1367.62 | 276000000.0 | -| API3USDT | 0.0004685 | 0.000576 | 0.02564 | 0.002927 | 0.01201 | 0.01401 | 105.3 | 0.08245 | 0.03931 | 0.05922 | 0.223 | 624.83 | 276000000.0 | -| BELUSDT | 0.0002772 | 0.0004458 | 0.02372 | 0.0001266 | 0.02101 | 0.02012 | 117.6 | 0.09687 | 0.1368 | 0.03023 | 0.2267 | 1085.67 | 276000000.0 | -| APTUSDT | 0.0004271 | 0.0008381 | 0.01593 | 0.002493 | 0.0113 | 0.008914 | 113.7 | 0.03792 | 0.006959 | 0.01211 | 0.05731 | 385.88 | 276000000.0 | -| DENTUSDT | 0.0002452 | 0.000585 | 0.03108 | 0.003542 | 0.01318 | 0.01406 | 83.83 | 0.09137 | 0.05834 | 0.08537 | 0.2012 | 959.79 | 276000000.0 | -| BALUSDT | 0.0004572 | 0.001146 | 0.04455 | 0.01594 | 0.01588 | 0.01443 | 123.6 | 0.08169 | 0.025 | 0.07728 | 0.1808 | 1163.67 | 276000000.0 | -| YFIUSDT | 0.0003858 | 0.001471 | 0.044 | 0.01504 | 0.01552 | 0.01105 | 130.9 | 0.06917 | 0.0165 | 0.07418 | 0.2278 | 1164.67 | 276000000.0 | -| STGUSDT | 0.0003684 | 0.0005989 | 0.0299 | 0.008955 | 0.01296 | 0.01082 | 104.6 | 0.06666 | 0.01417 | 0.06589 | 0.2424 | 440.46 | 276000000.0 | -| SANDUSDT | 0.0003239 | 0.001142 | 0.01904 | 0.009605 | 0.01305 | 0.01155 | 98.68 | 0.05286 | 0.02645 | 0.04066 | 0.1776 | 1017.67 | 276000000.0 | -| AVAXUSDT | 0.000405 | 0.0009719 | 0.05423 | 0.01927 | 0.01761 | 0.01905 | 130.8 | 0.09261 | 0.07465 | 0.0972 | 0.2476 | 1141.67 | 276000000.0 | -| FLOWUSDT | 0.0002502 | 0.0004279 | 0.01692 | 0.0 | 0.01014 | 0.009761 | 95.12 | 0.0539 | 0.01241 | 0.02469 | 0.08302 | 636.83 | 276000000.0 | -| DOGEUSDT | 0.0004063 | 0.001515 | 0.01395 | 0.003938 | 0.009186 | 0.008096 | 132.8 | 0.03543 | 0.006691 | 0.01686 | 0.1713 | 1216.58 | 276000000.0 | -| 1INCHUSDT | 0.0002618 | 0.000513 | 0.02772 | 0.0007867 | 0.01353 | 0.01211 | 143.3 | 0.06954 | 0.05952 | 0.03343 | 0.2479 | 1048.54 | 276000000.0 | -| MATICUSDT | 0.000389 | 0.001037 | 0.03886 | 0.01557 | 0.01368 | 0.01246 | 107.8 | 0.08799 | 0.02066 | 0.09915 | 0.22 | 1112.67 | 276000000.0 | -| BLUEBIRDUSDT | 0.0001011 | 0.0001425 | 0.01929 | 0.001076 | 0.01154 | 0.01028 | 120.6 | 0.07319 | 0.003802 | 0.03172 | 0.07349 | 371.46 | 276000000.0 | -| SXPUSDT | 0.0003199 | 0.0005791 | 0.02309 | 0.005931 | 0.01616 | 0.01441 | 119.9 | 0.08053 | 0.02617 | 0.0495 | 0.2238 | 1205.58 | 276000000.0 | -| ANKRUSDT | 0.0003652 | 0.0009003 | 0.03274 | 0.007633 | 0.0157 | 0.01642 | 141.2 | 0.09987 | 0.01481 | 0.09063 | 0.2314 | 1015.67 | 276000000.0 | -| CHZUSDT | 0.0002952 | 0.0008387 | 0.0371 | 0.001692 | 0.01572 | 0.01414 | 122.7 | 0.08106 | 0.08676 | 0.05397 | 0.2444 | 1021.67 | 276000000.0 | -| DOTUSDT | 0.0004463 | 0.001129 | 0.09239 | 0.02805 | 0.01644 | 0.01336 | 127.6 | 0.08191 | 0.07713 | 0.08943 | 0.2199 | 1173.67 | 276000000.0 | -| BATUSDT | 0.0003655 | 0.0007996 | 0.03729 | 0.01043 | 0.01189 | 0.01033 | 86.13 | 0.06242 | 0.05398 | 0.08151 | 0.1483 | 1364.62 | 276000000.0 | -| COTIUSDT | 0.0003788 | 0.0008093 | 0.0265 | 0.003115 | 0.01846 | 0.01651 | 129.4 | 0.08491 | 0.00166 | 0.03782 | 0.2493 | 973.67 | 276000000.0 | -| RVNUSDT | 0.0002406 | 0.0006124 | 0.02575 | 0.005082 | 0.01306 | 0.01274 | 129.1 | 0.06955 | 0.003995 | 0.04204 | 0.1792 | 988.67 | 276000000.0 | -| ICXUSDT | 0.0002631 | 0.0004912 | 0.02042 | 0.002453 | 0.01984 | 0.01657 | 135.7 | 0.08277 | 0.001904 | 0.01723 | 0.06289 | 1149.67 | 276000000.0 | -| RNDRUSDT | 0.0003083 | 0.0004403 | 0.02352 | 0.0001643 | 0.01607 | 0.01283 | 127.3 | 0.06056 | 0.03966 | 0.02368 | 0.05729 | 278.88 | 276000000.0 | -| ANTUSDT | 0.0002919 | 0.0006044 | 0.01849 | 0.007021 | 0.01431 | 0.01158 | 103.2 | 0.06194 | 0.03538 | 0.06676 | 0.2221 | 681.79 | 276000000.0 | -| CVXUSDT | 0.000238 | 0.0005515 | 0.08641 | 0.0486 | 0.0123 | 0.01473 | 75.73 | 0.08729 | 0.1254 | 0.09825 | 0.1803 | 412.46 | 276000000.0 | -| CTKUSDT | 0.0002261 | 0.0005547 | 0.02944 | 0.0002189 | 0.01748 | 0.01485 | 125.7 | 0.09279 | 0.02564 | 0.0432 | 0.2485 | 1084.67 | 276000000.0 | -| OPUSDT | 0.0002646 | 0.0005956 | 0.02538 | 0.008216 | 0.01739 | 0.0162 | 80.18 | 0.08408 | 0.01499 | 0.04457 | 0.1181 | 525.38 | 276000000.0 | -| DYDXUSDT | 0.0004108 | 0.0008018 | 0.0277 | 0.004731 | 0.01577 | 0.01444 | 82.1 | 0.07501 | 0.04371 | 0.04379 | 0.1682 | 789.83 | 276000000.0 | -| FOOTBALLUSDT | 0.0003387 | 0.0007426 | 0.03847 | 0.0003169 | 0.006175 | 0.006011 | 98.17 | 0.03321 | 0.01047 | 0.01518 | 0.0663 | 433.83 | 276000000.0 | -| ALICEUSDT | 0.00044 | 0.001091 | 0.04206 | 0.004167 | 0.01684 | 0.01626 | 119.3 | 0.09357 | 0.02372 | 0.06728 | 0.192 | 967.83 | 276000000.0 | -| LTCUSDT | 0.0003362 | 0.000532 | 0.02728 | 0.008978 | 0.01365 | 0.01004 | 130.1 | 0.04826 | 0.04058 | 0.0357 | 0.1895 | 1399.62 | 276000000.0 | -| ZILUSDT | 0.00042 | 0.0009135 | 0.03862 | 0.01317 | 0.01583 | 0.01266 | 140.2 | 0.06247 | 0.01609 | 0.0588 | 0.2002 | 1238.58 | 276000000.0 | -| KSMUSDT | 0.0003057 | 0.0007059 | 0.05666 | 0.01335 | 0.01765 | 0.01865 | 139.9 | 0.09584 | 0.03715 | 0.08979 | 0.2359 | 1120.67 | 276000000.0 | -| BAKEUSDT | 0.0003966 | 0.000444 | 0.02162 | 0.003661 | 0.01984 | 0.01751 | 125.0 | 0.0918 | 0.005131 | 0.0238 | 0.1927 | 903.67 | 276000000.0 | -| UNIUSDT | 0.0004185 | 0.0009816 | 0.03866 | 0.0205 | 0.01129 | 0.009808 | 71.93 | 0.06487 | 0.01012 | 0.07151 | 0.1958 | 1146.67 | 276000000.0 | -| LPTUSDT | 0.0002231 | 0.0002479 | 0.02176 | 0.0 | 0.02012 | 0.01904 | 135.1 | 0.11 | 0.1934 | 0.03876 | 0.175 | 727.83 | 276443721.545 | -| FTMUSDT | 1.135e-05 | 0.001051 | 0.03471 | 0.006925 | 0.01892 | 0.01356 | 122.0 | 0.08473 | 0.2043 | 0.09118 | 0.2447 | 1140.67 | 276543002.341 | -| AXSUSDT | 0.0001212 | 0.0002819 | 0.01348 | 0.0009074 | 0.01925 | 0.01639 | 129.5 | 0.07755 | 0.2417 | 0.02972 | 0.1631 | 1083.67 | 276916938.445 | -| NEARUSDT | 8.766e-05 | 0.0002193 | 0.03378 | 3.721e-06 | 0.01984 | 0.01516 | 97.27 | 0.08819 | 0.4133 | 0.08336 | 0.1655 | 1119.62 | 278633413.984 | -| ARUSDT | -4.927e-05 | 0.0001156 | 0.01364 | 0.0005398 | 0.02072 | 0.01665 | 95.53 | 0.07716 | 0.4511 | 0.03056 | 0.1584 | 771.83 | 279010598.733 | -| STORJUSDT | 0.000142 | 0.0002235 | 0.01299 | 0.0001995 | 0.02007 | 0.01641 | 169.8 | 0.08128 | 0.2723 | 0.03937 | 0.1247 | 1148.67 | 279808432.754 | -| KLAYUSDT | 0.0001163 | 0.0002245 | 0.0157 | 0.001209 | 0.01885 | 0.01611 | 185.4 | 0.07865 | 0.00313 | 0.0147 | 0.08103 | 757.83 | 280136666.667 | -| FILUSDT | 0.0001506 | 0.0004423 | 0.04035 | 0.001151 | 0.01924 | 0.01297 | 144.1 | 0.06702 | 0.5723 | 0.05767 | 0.1354 | 1118.71 | 280234331.861 | -| USDCUSDT | -9.216e-10 | -9.216e-09 | 0.01091 | 0.0 | 0.001596 | 0.0004557 | nan | 0.008882 | 0.6 | 0.0001019 | 0.000129 | 241.25 | 280500000.0 | -| ALPHAUSDT | 0.0001908 | 0.0003041 | 0.03126 | 0.0 | 0.01962 | 0.01604 | 122.4 | 0.08539 | 0.606 | 0.0847 | 0.1834 | 1080.67 | 280560475.622 | -| CFXUSDT | -0.0007427 | 0.0005212 | 0.05492 | 0.02171 | 0.01752 | 0.01923 | 158.3 | 0.1385 | 0.4103 | 0.1622 | 0.1998 | 261.38 | 286289844.66 | -| IOTXUSDT | 7.66e-05 | 0.0001533 | 0.01475 | 0.001007 | 0.0209 | 0.01711 | 232.4 | 0.08351 | 0.3699 | 0.02461 | 0.1325 | 818.83 | 287042375.186 | -| GTCUSDT | 0.0005419 | 0.0009052 | 0.03897 | 0.005023 | 0.0189 | 0.01846 | 274.2 | 0.09931 | 0.004577 | 0.07135 | 0.2077 | 880.83 | 289019999.999 | -| BTCDOMUSDT | 1.909e-05 | 5.343e-05 | 0.04285 | 0.001736 | 0.01117 | 0.008882 | 447.6 | 0.04763 | 0.3869 | 0.03519 | 0.04802 | 870.83 | 308727483.673 | -| WAVESUSDT | 0.0001219 | 0.0001157 | 0.01769 | 0.001809 | 0.02023 | 0.02031 | 164.6 | 0.1146 | 0.6083 | 0.1385 | 0.2832 | 1183.67 | 319731786.238 | -| PEOPLEUSDT | 0.0004202 | 0.000905 | 0.02094 | 0.003279 | 0.01698 | 0.01466 | 196.1 | 0.06943 | 0.002208 | 0.03268 | 0.299 | 684.79 | 330218994.921 | -| MASKUSDT | 0.00032 | 0.0006821 | 0.02762 | 0.01244 | 0.02214 | 0.02209 | 175.6 | 0.134 | 0.02921 | 0.123 | 0.3548 | 803.83 | 386318629.178 | -| GALAUSDT | 4.55e-06 | -0.0004561 | 0.03045 | 0.001247 | 0.01716 | 0.01886 | 120.3 | 0.1566 | 1.55 | 0.3862 | 0.5226 | 781.83 | 591307106.039 | -| COCOSUSDT | 5.308e-05 | 0.0005308 | 0.008989 | 0.000464 | 50.01 | 0.5038 | 4023.0 | 0.03617 | 0.5 | 0.005893 | 0.02845 | 260.38 | 667376666.667 | -| GMTUSDT | 0.0001693 | 0.0003135 | 0.08158 | 0.03081 | 0.04146 | 0.0452 | 157.0 | 0.3762 | 1.026 | 0.5674 | 0.7114 | 603.79 | 794489442.078 | -| HNTUSDT | 8.743e-05 | 0.0004343 | 0.02183 | 0.0003225 | 10.02 | 0.1169 | 5607.0 | 0.09613 | 0.1104 | 0.04464 | 0.1693 | 1136.67 | 822278333.333 | -| SRMUSDT | 8.747e-05 | 0.0005235 | 0.05615 | 0.0 | 20.02 | 0.2185 | 8611.0 | 0.1346 | 0.2 | 0.08217 | 0.1354 | 1159.88 | 1123229643.46 | -| RAYUSDT | 5.007e-05 | 0.0004253 | 0.008127 | 0.001706 | 30.01 | 0.3075 | 8612.0 | 0.03837 | 0.3045 | 0.004697 | 0.03976 | 810.83 | 1124321850.91 | -| FTTUSDT | 5.641e-05 | 0.0005641 | 0.0576 | 0.0001236 | 50.01 | 0.5082 | 8636.0 | 0.08633 | 0.5 | 0.05948 | 0.103 | 572.83 | 1128651666.67 | -| CVCUSDT | 0.0001038 | 0.0008236 | 0.02983 | 0.01933 | 20.01 | 0.2157 | 8275.0 | 0.1511 | 0.2327 | 0.1995 | 0.3808 | 1092.67 | 1230705944.25 | -| BTSUSDT | 5.849e-05 | 0.0005005 | 0.02991 | 0.001228 | 30.01 | 0.3109 | 10740.0 | 0.08962 | 0.3029 | 0.06864 | 0.136 | 1010.67 | 1337523993.09 | -| SCUSDT | 2.167e-05 | 0.0002167 | 0.005886 | 0.001661 | 40.01 | 0.407 | 12230.0 | 0.0416 | 0.4029 | 0.01328 | 0.1875 | 940.67 | 1487136008.23 | -| UNFIUSDT | -0.001382 | -0.01382 | 0.09867 | 0.07439 | 0.01668 | 0.02859 | 12460.0 | 0.1629 | 0.6901 | 1.0 | 1.0 | 992.67 | 2352961800.24 | -| BTCSTUSDT | 3.036e-06 | 3.036e-05 | 0.008615 | 0.0 | 80.0 | 0.8002 | 23330.0 | 0.003018 | 0.8 | 0.0001897 | 0.005341 | 979.67 | 2600605000.0 | -+---------------+---------------+-------------+--------------+-----------------+--------------+-------------+---------------+-------------------------+----------------+--------------------------+--------------+---------+---------------+ - diff --git a/configs/live/single_symbol_optimizations/neat_grid/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/1000FLOKIUSDT.json deleted file mode 100644 index 7e6fc847f..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/1000FLOKIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.9061277277842, - "auto_unstuck_ema_dist": -0.05509587541388286, - "auto_unstuck_qty_pct": 0.04614884064028366, - "auto_unstuck_wallet_exposure_threshold": 0.46863516278925094, - "backwards_tp": true, - "ema_span_0": 839.2060753662297, - "ema_span_1": 353.2123188484158, - "enabled": true, - "eprice_exp_base": 1.1405633050308002, - "eqty_exp_base": 1.4146469967046582, - "grid_span": 0.1984017107809955, - "initial_eprice_ema_dist": 0.0007194017798747517, - "initial_qty_pct": 0.011638530486312363, - "markup_range": 0.0012986613134998541, - "max_n_entry_orders": 9, - "min_markup": 0.007655768612028226, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.024956187873325486, - "auto_unstuck_qty_pct": 0.025331561929904593, - "auto_unstuck_wallet_exposure_threshold": 0.8190738579260033, - "backwards_tp": true, - "ema_span_0": 1319.491611923442, - "ema_span_1": 631.2541202301663, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.924938541206917, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.038361414732497656, - "initial_qty_pct": 0.01, - "markup_range": 0.007839481909906635, - "max_n_entry_orders": 7, - "min_markup": 0.007377404605166538, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/1000LUNCUSDT.json deleted file mode 100644 index 4d4503558..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/1000LUNCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 155.94365352081996, - "auto_unstuck_ema_dist": -0.031330482695477675, - "auto_unstuck_qty_pct": 0.011037485750127569, - "auto_unstuck_wallet_exposure_threshold": 0.16443170038577976, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.1727247100550446, - "eqty_exp_base": 1, - "grid_span": 0.18183233414625083, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.025220122290467033, - "markup_range": 0.0, - "max_n_entry_orders": 12, - "min_markup": 0.007132025701123874, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/1000PEPEUSDT.json deleted file mode 100644 index 843c08111..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/1000PEPEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.4092512849797, - "auto_unstuck_ema_dist": -0.007804317744943648, - "auto_unstuck_qty_pct": 0.012827505738499128, - "auto_unstuck_wallet_exposure_threshold": 0.23114110655160536, - "backwards_tp": true, - "ema_span_0": 471.51598421925127, - "ema_span_1": 690.0351092432278, - "enabled": true, - "eprice_exp_base": 1.1562934653212311, - "eqty_exp_base": 2.0699935345270997, - "grid_span": 0.15929253434258953, - "initial_eprice_ema_dist": -0.00866265020952416, - "initial_qty_pct": 0.011026991701794699, - "markup_range": 0.005901207434692439, - "max_n_entry_orders": 7, - "min_markup": 0.005892201524839872, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1010.4036632825504, - "auto_unstuck_ema_dist": -0.0314204231300205, - "auto_unstuck_qty_pct": 0.04471332961600069, - "auto_unstuck_wallet_exposure_threshold": 0.6164807778024183, - "backwards_tp": true, - "ema_span_0": 916.9930407816282, - "ema_span_1": 1432.4096245232226, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.6622768486732851, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.01653390255568551, - "max_n_entry_orders": 12, - "min_markup": 0.001, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/1000SHIBUSDT.json deleted file mode 100644 index 5cea3690d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/1000SHIBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.7794886183383, - "auto_unstuck_ema_dist": -0.005581941244785879, - "auto_unstuck_qty_pct": 0.010170091330110483, - "auto_unstuck_wallet_exposure_threshold": 0.3806590313382323, - "backwards_tp": true, - "ema_span_0": 956.2302813651238, - "ema_span_1": 1265.2351101148524, - "enabled": true, - "eprice_exp_base": 1.051767207536531, - "eqty_exp_base": 1.7035756385736616, - "grid_span": 0.17037951780238555, - "initial_eprice_ema_dist": -0.003123429996222736, - "initial_qty_pct": 0.012441166898920027, - "markup_range": 0.0008494533549618005, - "max_n_entry_orders": 7, - "min_markup": 0.009134769067758976, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 559.260531604697, - "auto_unstuck_ema_dist": -0.00842752530128673, - "auto_unstuck_qty_pct": 0.013399550071574607, - "auto_unstuck_wallet_exposure_threshold": 0.33695330170844806, - "backwards_tp": true, - "ema_span_0": 1383.3551930257856, - "ema_span_1": 68.06040929635022, - "enabled": true, - "eprice_exp_base": 1.105849123094091, - "eqty_exp_base": 1.22087120679925, - "grid_span": 0.30594108207171933, - "initial_eprice_ema_dist": 0.0024083581567065086, - "initial_qty_pct": 0.01, - "markup_range": 0.004365852785813848, - "max_n_entry_orders": 8, - "min_markup": 0.0064414420212760256, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/1000XECUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/1000XECUSDT.json deleted file mode 100644 index ca3837b21..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/1000XECUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1237.4999373069681, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.1989590660571885, - "grid_span": 0.33892290410490394, - "initial_eprice_ema_dist": -0.018790813290638135, - "initial_qty_pct": 0.01, - "markup_range": 0.0071795431272730845, - "max_n_entry_orders": 15, - "min_markup": 0.001, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/1INCHUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/1INCHUSDT.json deleted file mode 100644 index 878434c39..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/1INCHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1240.2565851661307, - "auto_unstuck_ema_dist": -0.04019038393165331, - "auto_unstuck_qty_pct": 0.021040444008926396, - "auto_unstuck_wallet_exposure_threshold": 0.30527300469357793, - "backwards_tp": true, - "ema_span_0": 1031.6178053435272, - "ema_span_1": 358.10397487215164, - "enabled": true, - "eprice_exp_base": 1.0494443936743298, - "eqty_exp_base": 3.256590726383303, - "grid_span": 0.16643856649520014, - "initial_eprice_ema_dist": 0.0027804189287776717, - "initial_qty_pct": 0.010518974411386302, - "markup_range": 0.006586886397756721, - "max_n_entry_orders": 9, - "min_markup": 0.009999783817915974, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1251.9747362132496, - "auto_unstuck_ema_dist": 6.130872874427002e-05, - "auto_unstuck_qty_pct": 0.01007623557186774, - "auto_unstuck_wallet_exposure_threshold": 0.17920278205820986, - "backwards_tp": true, - "ema_span_0": 1329.6833394653656, - "ema_span_1": 239.16571463221084, - "enabled": true, - "eprice_exp_base": 1.3255222347218985, - "eqty_exp_base": 1.6379034685824383, - "grid_span": 0.291665193952853, - "initial_eprice_ema_dist": -0.0007222051139423557, - "initial_qty_pct": 0.014226879071078774, - "markup_range": 0.009100900539187523, - "max_n_entry_orders": 11, - "min_markup": 0.009800929165894225, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AAVEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AAVEUSDT.json deleted file mode 100644 index 8abefe36c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AAVEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1217.4645956446466, - "auto_unstuck_ema_dist": -0.02234474636795647, - "auto_unstuck_qty_pct": 0.011029097544772097, - "auto_unstuck_wallet_exposure_threshold": 0.23737587149305286, - "backwards_tp": true, - "ema_span_0": 1434.6681574606664, - "ema_span_1": 1326.815690779633, - "enabled": true, - "eprice_exp_base": 1.0004780250713692, - "eqty_exp_base": 1.8674947097108647, - "grid_span": 0.1694056675992081, - "initial_eprice_ema_dist": 0.0012865855307700002, - "initial_qty_pct": 0.010966697520597809, - "markup_range": 0.004929786728331037, - "max_n_entry_orders": 7, - "min_markup": 0.008382382093118045, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.4411702489633, - "auto_unstuck_ema_dist": -0.004617109849520608, - "auto_unstuck_qty_pct": 0.01648366731345862, - "auto_unstuck_wallet_exposure_threshold": 0.7094846767314997, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1438.151047326744, - "enabled": true, - "eprice_exp_base": 1.2439694930330072, - "eqty_exp_base": 1.231452107109689, - "grid_span": 0.4365969496517578, - "initial_eprice_ema_dist": -0.0019017444320947494, - "initial_qty_pct": 0.01, - "markup_range": 0.003842107206680762, - "max_n_entry_orders": 9, - "min_markup": 0.001638247139852082, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ACHUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ACHUSDT.json deleted file mode 100644 index 155afb3f0..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ACHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1312.3497217836286, - "auto_unstuck_ema_dist": -0.031246757663110407, - "auto_unstuck_qty_pct": 0.010847358243222999, - "auto_unstuck_wallet_exposure_threshold": 0.4280809710123283, - "backwards_tp": true, - "ema_span_0": 905.275802239915, - "ema_span_1": 17.12640696902039, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.444814769058541, - "grid_span": 0.21620371108947897, - "initial_eprice_ema_dist": 0.0022365676265164425, - "initial_qty_pct": 0.013024735250668391, - "markup_range": 0.008442345102329359, - "max_n_entry_orders": 9, - "min_markup": 0.007724275004453045, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1420.9651479537285, - "auto_unstuck_ema_dist": -0.033631641830101304, - "auto_unstuck_qty_pct": 0.020401806530856124, - "auto_unstuck_wallet_exposure_threshold": 0.2938345281297234, - "backwards_tp": true, - "ema_span_0": 1011.4518973719919, - "ema_span_1": 798.0567764621785, - "enabled": true, - "eprice_exp_base": 1.0680920722213172, - "eqty_exp_base": 2.2829103749222863, - "grid_span": 0.14874815958874757, - "initial_eprice_ema_dist": -0.011196204261857148, - "initial_qty_pct": 0.017998783074008304, - "markup_range": 0.0074045251026196865, - "max_n_entry_orders": 9, - "min_markup": 0.005606728427408416, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ADAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ADAUSDT.json deleted file mode 100644 index b5262342d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ADAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 926.4110640006594, - "auto_unstuck_ema_dist": -0.056569691889343375, - "auto_unstuck_qty_pct": 0.015210523208416713, - "auto_unstuck_wallet_exposure_threshold": 0.830126546921842, - "backwards_tp": true, - "ema_span_0": 1002.8576912286601, - "ema_span_1": 1349.784339385952, - "enabled": true, - "eprice_exp_base": 1.0020458997575203, - "eqty_exp_base": 1.1188580772292835, - "grid_span": 0.2821366721318097, - "initial_eprice_ema_dist": 0.002977818733472275, - "initial_qty_pct": 0.010520830060116474, - "markup_range": 0.005154167419553341, - "max_n_entry_orders": 12, - "min_markup": 0.007856719284601401, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AGIXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AGIXUSDT.json deleted file mode 100644 index 22efd54a0..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AGIXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 598.2677947514356, - "auto_unstuck_ema_dist": -0.04609893110399657, - "auto_unstuck_qty_pct": 0.010123567719253442, - "auto_unstuck_wallet_exposure_threshold": 0.1024154079615063, - "backwards_tp": true, - "ema_span_0": 402.55872805583687, - "ema_span_1": 416.43411767122376, - "enabled": true, - "eprice_exp_base": 1.1161528887519947, - "eqty_exp_base": 1.5905756340469075, - "grid_span": 0.18153523109118677, - "initial_eprice_ema_dist": -0.016680959698188717, - "initial_qty_pct": 0.015209747553002216, - "markup_range": 0.004610308754286902, - "max_n_entry_orders": 13, - "min_markup": 0.001645743561515607, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AGLDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AGLDUSDT.json deleted file mode 100644 index 60ccb2c10..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AGLDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ALGOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ALGOUSDT.json deleted file mode 100644 index e44edbdd5..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ALGOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1070.1815373548548, - "auto_unstuck_ema_dist": -0.04178854659910562, - "auto_unstuck_qty_pct": 0.020535411615993555, - "auto_unstuck_wallet_exposure_threshold": 0.4884374577783266, - "backwards_tp": true, - "ema_span_0": 1202.878426022801, - "ema_span_1": 840.6685855759885, - "enabled": true, - "eprice_exp_base": 1.0989056760375406, - "eqty_exp_base": 3.1116572856071993, - "grid_span": 0.13595562563868033, - "initial_eprice_ema_dist": 0.0006935681256839439, - "initial_qty_pct": 0.012578916533481085, - "markup_range": 0.00988153066900415, - "max_n_entry_orders": 9, - "min_markup": 0.0072194691850736336, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.5304010329335, - "auto_unstuck_ema_dist": -0.005371837408460239, - "auto_unstuck_qty_pct": 0.03625186747470076, - "auto_unstuck_wallet_exposure_threshold": 0.172467872274705, - "backwards_tp": true, - "ema_span_0": 568.7664237784585, - "ema_span_1": 1015.5465732987756, - "enabled": true, - "eprice_exp_base": 1.0027847482406218, - "eqty_exp_base": 1.6554852220749905, - "grid_span": 0.17063996467610135, - "initial_eprice_ema_dist": -0.0035891586908563485, - "initial_qty_pct": 0.011402515290221417, - "markup_range": 0.013831527977217432, - "max_n_entry_orders": 14, - "min_markup": 0.009514514600822775, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ALICEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ALICEUSDT.json deleted file mode 100644 index 7a4d03323..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ALICEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.9061277277842, - "auto_unstuck_ema_dist": -0.05509587541388286, - "auto_unstuck_qty_pct": 0.04614884064028366, - "auto_unstuck_wallet_exposure_threshold": 0.46863516278925094, - "backwards_tp": true, - "ema_span_0": 839.2060753662297, - "ema_span_1": 353.2123188484158, - "enabled": true, - "eprice_exp_base": 1.1405633050308002, - "eqty_exp_base": 1.4146469967046582, - "grid_span": 0.1984017107809955, - "initial_eprice_ema_dist": 0.0007194017798747517, - "initial_qty_pct": 0.011638530486312363, - "markup_range": 0.0012986613134998541, - "max_n_entry_orders": 9, - "min_markup": 0.007655768612028226, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 188.30476928548, - "auto_unstuck_ema_dist": -0.029584475631393985, - "auto_unstuck_qty_pct": 0.010793980563945956, - "auto_unstuck_wallet_exposure_threshold": 0.2265308307389096, - "backwards_tp": true, - "ema_span_0": 1170.1250862952297, - "ema_span_1": 962.2433265050587, - "enabled": true, - "eprice_exp_base": 1.066827138646016, - "eqty_exp_base": 1, - "grid_span": 0.34487619019486976, - "initial_eprice_ema_dist": -0.011243657449645585, - "initial_qty_pct": 0.015525004554364367, - "markup_range": 0.00824507607420847, - "max_n_entry_orders": 9, - "min_markup": 0.008926285237499705, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ALPHAUSDT.json deleted file mode 100644 index cb7243c73..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ALPHAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 781.1069973944801, - "auto_unstuck_ema_dist": -0.04041194891053113, - "auto_unstuck_qty_pct": 0.013039336957362266, - "auto_unstuck_wallet_exposure_threshold": 0.21005762329714173, - "backwards_tp": true, - "ema_span_0": 1089.3533422202247, - "ema_span_1": 645.6438460818256, - "enabled": true, - "eprice_exp_base": 1.432400111323191, - "eqty_exp_base": 2.6182858260856072, - "grid_span": 0.1564882409441415, - "initial_eprice_ema_dist": 0.002991926780557061, - "initial_qty_pct": 0.01136107219949211, - "markup_range": 0.005102629400112615, - "max_n_entry_orders": 7, - "min_markup": 0.007082499507288377, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1359.4689326610724, - "auto_unstuck_ema_dist": -0.051663487918414464, - "auto_unstuck_qty_pct": 0.023890178075515717, - "auto_unstuck_wallet_exposure_threshold": 0.31982471830433074, - "backwards_tp": true, - "ema_span_0": 603.9681152694282, - "ema_span_1": 652.061371013621, - "enabled": true, - "eprice_exp_base": 1.1901842714517454, - "eqty_exp_base": 2.043075923187924, - "grid_span": 0.3213746699018658, - "initial_eprice_ema_dist": 0.0025192013399443778, - "initial_qty_pct": 0.012239306507351184, - "markup_range": 0.01467108329388343, - "max_n_entry_orders": 9, - "min_markup": 0.005722437728137075, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AMBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AMBUSDT.json deleted file mode 100644 index 06e53d1fb..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AMBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.0434034935572, - "auto_unstuck_ema_dist": -0.07336392221453619, - "auto_unstuck_qty_pct": 0.041647237096289036, - "auto_unstuck_wallet_exposure_threshold": 0.2567189717660962, - "backwards_tp": true, - "ema_span_0": 698.9439556665241, - "ema_span_1": 1420.4838396465016, - "enabled": true, - "eprice_exp_base": 1.0674267479608834, - "eqty_exp_base": 1.7934484576941174, - "grid_span": 0.12653934155635077, - "initial_eprice_ema_dist": -0.0030766630450440135, - "initial_qty_pct": 0.014586123518883684, - "markup_range": 0.002806837580842318, - "max_n_entry_orders": 13, - "min_markup": 0.0035574376635588885, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ANKRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ANKRUSDT.json deleted file mode 100644 index 228586721..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ANKRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 943.60209581509, - "auto_unstuck_ema_dist": -0.01263026083130537, - "auto_unstuck_qty_pct": 0.039372718038203386, - "auto_unstuck_wallet_exposure_threshold": 0.6815375874327977, - "backwards_tp": true, - "ema_span_0": 321.69754508505173, - "ema_span_1": 498.1474333283621, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.4632073698606816, - "grid_span": 0.14643215943134671, - "initial_eprice_ema_dist": -0.004652328568934448, - "initial_qty_pct": 0.011784602775104874, - "markup_range": 0.0024085386532988005, - "max_n_entry_orders": 7, - "min_markup": 0.004997300530726923, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 333.7677665929856, - "auto_unstuck_ema_dist": -0.034072364725076534, - "auto_unstuck_qty_pct": 0.014338966443840764, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1182.567880880961, - "ema_span_1": 1363.9291802341522, - "enabled": true, - "eprice_exp_base": 1.0952776938803748, - "eqty_exp_base": 1.2146749890020476, - "grid_span": 0.18468912919149277, - "initial_eprice_ema_dist": 0.0024429343458894867, - "initial_qty_pct": 0.011304033697976485, - "markup_range": 0.014904471381139853, - "max_n_entry_orders": 11, - "min_markup": 0.0021991312484550803, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ANTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ANTUSDT.json deleted file mode 100644 index 118bbb743..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ANTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1174.4957493303018, - "auto_unstuck_ema_dist": -0.03256348980375066, - "auto_unstuck_qty_pct": 0.017510348425941624, - "auto_unstuck_wallet_exposure_threshold": 0.7761913402202594, - "backwards_tp": true, - "ema_span_0": 934.7386114305474, - "ema_span_1": 1357.07877191991, - "enabled": true, - "eprice_exp_base": 1.0120865382439177, - "eqty_exp_base": 1.320710372420871, - "grid_span": 0.30224181950552237, - "initial_eprice_ema_dist": 0.00294606034102475, - "initial_qty_pct": 0.010089718048227872, - "markup_range": 0.005864151461505409, - "max_n_entry_orders": 7, - "min_markup": 0.009613517511271272, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/APEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/APEUSDT.json deleted file mode 100644 index 2136b6733..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/APEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.2186661925077, - "auto_unstuck_ema_dist": -0.0934750257166494, - "auto_unstuck_qty_pct": 0.03224513039791049, - "auto_unstuck_wallet_exposure_threshold": 0.15770154600814495, - "backwards_tp": true, - "ema_span_0": 1349.2901787249195, - "ema_span_1": 1070.06420992335, - "enabled": true, - "eprice_exp_base": 1.296171087672084, - "eqty_exp_base": 3.9822375184209213, - "grid_span": 0.10851564083207263, - "initial_eprice_ema_dist": 0.00044471489783528395, - "initial_qty_pct": 0.012984863540821682, - "markup_range": 0.003038702058401756, - "max_n_entry_orders": 7, - "min_markup": 0.0039073711030456265, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/API3USDT.json b/configs/live/single_symbol_optimizations/neat_grid/API3USDT.json deleted file mode 100644 index d0cf8a2fc..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/API3USDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1121.9715986864321, - "auto_unstuck_ema_dist": -0.0017489403356026865, - "auto_unstuck_qty_pct": 0.06007674825845512, - "auto_unstuck_wallet_exposure_threshold": 0.8623820562773659, - "backwards_tp": true, - "ema_span_0": 973.6632787113003, - "ema_span_1": 1363.5306741727518, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.1894520330866076, - "grid_span": 0.2521910391570215, - "initial_eprice_ema_dist": 0.0029999889024638357, - "initial_qty_pct": 0.01106606068884545, - "markup_range": 0.007130633295116195, - "max_n_entry_orders": 8, - "min_markup": 0.008461526030130253, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 734.9719818066914, - "auto_unstuck_ema_dist": -0.005700200867316928, - "auto_unstuck_qty_pct": 0.010665068203659252, - "auto_unstuck_wallet_exposure_threshold": 0.1188655867113104, - "backwards_tp": true, - "ema_span_0": 801.2396258279347, - "ema_span_1": 931.1226508526872, - "enabled": true, - "eprice_exp_base": 1.2058742350073306, - "eqty_exp_base": 1.0185098252025484, - "grid_span": 0.39223065231950954, - "initial_eprice_ema_dist": -0.0018566757036934493, - "initial_qty_pct": 0.012261107756313288, - "markup_range": 0.0020256734711034535, - "max_n_entry_orders": 11, - "min_markup": 0.004613261969487121, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/APTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/APTUSDT.json deleted file mode 100644 index 17280ca91..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/APTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.8286138645863, - "auto_unstuck_ema_dist": -0.03167917107753195, - "auto_unstuck_qty_pct": 0.010031098663233208, - "auto_unstuck_wallet_exposure_threshold": 0.4355973655881478, - "backwards_tp": true, - "ema_span_0": 295.5056321285007, - "ema_span_1": 1298.5688726391509, - "enabled": true, - "eprice_exp_base": 1.0000045340969284, - "eqty_exp_base": 1.0000283574401247, - "grid_span": 0.3435530056156494, - "initial_eprice_ema_dist": -0.007940117997979262, - "initial_qty_pct": 0.011227407190278635, - "markup_range": 0.0028450303486692715, - "max_n_entry_orders": 13, - "min_markup": 0.0038002017811459947, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1420.2686337975451, - "auto_unstuck_ema_dist": -0.043146588175927224, - "auto_unstuck_qty_pct": 0.02243215031936683, - "auto_unstuck_wallet_exposure_threshold": 0.6672527036939512, - "backwards_tp": true, - "ema_span_0": 334.78666055771856, - "ema_span_1": 1101.7537666893622, - "enabled": true, - "eprice_exp_base": 2.278498282252591, - "eqty_exp_base": 3.007770052144587, - "grid_span": 0.4450454943806181, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 7, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ARBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ARBUSDT.json deleted file mode 100644 index b3b37ab8c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ARBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1410.2617536223438, - "auto_unstuck_ema_dist": -0.07382972647481471, - "auto_unstuck_qty_pct": 0.013585576994096567, - "auto_unstuck_wallet_exposure_threshold": 0.5347406980723225, - "backwards_tp": true, - "ema_span_0": 1273.9259663849127, - "ema_span_1": 976.1240373461767, - "enabled": true, - "eprice_exp_base": 1.1304824300805365, - "eqty_exp_base": 2.048053538220396, - "grid_span": 0.17431757247031854, - "initial_eprice_ema_dist": -0.0008322492678262902, - "initial_qty_pct": 0.014659795275296102, - "markup_range": 0.0068827123745316375, - "max_n_entry_orders": 9, - "min_markup": 0.009457337723553772, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.336455858615, - "auto_unstuck_ema_dist": -0.09420340704641568, - "auto_unstuck_qty_pct": 0.03727852876925451, - "auto_unstuck_wallet_exposure_threshold": 0.264002908997623, - "backwards_tp": true, - "ema_span_0": 1281.230049366816, - "ema_span_1": 1278.553940164715, - "enabled": true, - "eprice_exp_base": 1.0486886922883731, - "eqty_exp_base": 2.9727407510302357, - "grid_span": 0.3446674736354055, - "initial_eprice_ema_dist": -0.006685159124024106, - "initial_qty_pct": 0.014888999115593918, - "markup_range": 0.006611724146697535, - "max_n_entry_orders": 22, - "min_markup": 0.005586593437728122, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ARKMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ARKMUSDT.json deleted file mode 100644 index e218b5def..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ARKMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 339.5994790758884, - "auto_unstuck_ema_dist": 0.0028645899693683047, - "auto_unstuck_qty_pct": 0.03132265768095036, - "auto_unstuck_wallet_exposure_threshold": 0.5165572182325465, - "backwards_tp": true, - "ema_span_0": 947.0451699075273, - "ema_span_1": 1248.1815407884644, - "enabled": true, - "eprice_exp_base": 1.000017561978332, - "eqty_exp_base": 1.3417570761590465, - "grid_span": 0.11678506903035124, - "initial_eprice_ema_dist": -0.003104386303793998, - "initial_qty_pct": 0.014727651883826838, - "markup_range": 0.0027997015874740134, - "max_n_entry_orders": 7, - "min_markup": 0.005332057497285101, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.024956187873325486, - "auto_unstuck_qty_pct": 0.025331561929904593, - "auto_unstuck_wallet_exposure_threshold": 0.8190738579260033, - "backwards_tp": true, - "ema_span_0": 1319.491611923442, - "ema_span_1": 631.2541202301663, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.924938541206917, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.038361414732497656, - "initial_qty_pct": 0.01, - "markup_range": 0.007839481909906635, - "max_n_entry_orders": 7, - "min_markup": 0.007377404605166538, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ARPAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ARPAUSDT.json deleted file mode 100644 index ed60c11ee..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ARPAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1318.4104516749699, - "auto_unstuck_ema_dist": -0.058460092111090795, - "auto_unstuck_qty_pct": 0.05060642147387394, - "auto_unstuck_wallet_exposure_threshold": 0.4810293299944333, - "backwards_tp": true, - "ema_span_0": 193.7350833651077, - "ema_span_1": 1420.5056364308696, - "enabled": true, - "eprice_exp_base": 1.0680518200636575, - "eqty_exp_base": 1.5232525875138057, - "grid_span": 0.1353572630706144, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010311415469551343, - "markup_range": 0.00011398986805161363, - "max_n_entry_orders": 10, - "min_markup": 0.0018696417860710735, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ARUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ARUSDT.json deleted file mode 100644 index 26dc4b802..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1232.8988841979901, - "auto_unstuck_ema_dist": -0.016748364003455786, - "auto_unstuck_qty_pct": 0.011155559136564472, - "auto_unstuck_wallet_exposure_threshold": 0.680732371421344, - "backwards_tp": true, - "ema_span_0": 748.4978236668502, - "ema_span_1": 524.1979616418802, - "enabled": true, - "eprice_exp_base": 1.0000088753984597, - "eqty_exp_base": 2.1280622372741735, - "grid_span": 0.17889505470021103, - "initial_eprice_ema_dist": 0.0029999672120743057, - "initial_qty_pct": 0.01591926851963001, - "markup_range": 0.0014520739419980643, - "max_n_entry_orders": 9, - "min_markup": 0.0028487964278350653, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ASTRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ASTRUSDT.json deleted file mode 100644 index e44edbdd5..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ASTRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1070.1815373548548, - "auto_unstuck_ema_dist": -0.04178854659910562, - "auto_unstuck_qty_pct": 0.020535411615993555, - "auto_unstuck_wallet_exposure_threshold": 0.4884374577783266, - "backwards_tp": true, - "ema_span_0": 1202.878426022801, - "ema_span_1": 840.6685855759885, - "enabled": true, - "eprice_exp_base": 1.0989056760375406, - "eqty_exp_base": 3.1116572856071993, - "grid_span": 0.13595562563868033, - "initial_eprice_ema_dist": 0.0006935681256839439, - "initial_qty_pct": 0.012578916533481085, - "markup_range": 0.00988153066900415, - "max_n_entry_orders": 9, - "min_markup": 0.0072194691850736336, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.5304010329335, - "auto_unstuck_ema_dist": -0.005371837408460239, - "auto_unstuck_qty_pct": 0.03625186747470076, - "auto_unstuck_wallet_exposure_threshold": 0.172467872274705, - "backwards_tp": true, - "ema_span_0": 568.7664237784585, - "ema_span_1": 1015.5465732987756, - "enabled": true, - "eprice_exp_base": 1.0027847482406218, - "eqty_exp_base": 1.6554852220749905, - "grid_span": 0.17063996467610135, - "initial_eprice_ema_dist": -0.0035891586908563485, - "initial_qty_pct": 0.011402515290221417, - "markup_range": 0.013831527977217432, - "max_n_entry_orders": 14, - "min_markup": 0.009514514600822775, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ATAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ATAUSDT.json deleted file mode 100644 index 0ed46a322..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ATAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 512.954485856899, - "auto_unstuck_ema_dist": -0.08738533939626417, - "auto_unstuck_qty_pct": 0.01331698727142276, - "auto_unstuck_wallet_exposure_threshold": 0.5814864212751013, - "backwards_tp": true, - "ema_span_0": 1285.8326819362887, - "ema_span_1": 808.0766027268156, - "enabled": true, - "eprice_exp_base": 1.1379840578411964, - "eqty_exp_base": 2.9356354906253888, - "grid_span": 0.18091340932610026, - "initial_eprice_ema_dist": -0.012270926754001607, - "initial_qty_pct": 0.010370313894364628, - "markup_range": 0.002659678503765652, - "max_n_entry_orders": 7, - "min_markup": 0.0018911284968429482, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ATOMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ATOMUSDT.json deleted file mode 100644 index ecfb7a285..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ATOMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 339.5994790758884, - "auto_unstuck_ema_dist": 0.0028645899693683047, - "auto_unstuck_qty_pct": 0.03132265768095036, - "auto_unstuck_wallet_exposure_threshold": 0.5165572182325465, - "backwards_tp": true, - "ema_span_0": 947.0451699075273, - "ema_span_1": 1248.1815407884644, - "enabled": true, - "eprice_exp_base": 1.000017561978332, - "eqty_exp_base": 1.3417570761590465, - "grid_span": 0.11678506903035124, - "initial_eprice_ema_dist": -0.003104386303793998, - "initial_qty_pct": 0.014727651883826838, - "markup_range": 0.0027997015874740134, - "max_n_entry_orders": 7, - "min_markup": 0.005332057497285101, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1045.2223878600516, - "auto_unstuck_ema_dist": -0.016983026957580055, - "auto_unstuck_qty_pct": 0.024148208283841528, - "auto_unstuck_wallet_exposure_threshold": 0.24006580640445715, - "backwards_tp": true, - "ema_span_0": 1350.9493403857823, - "ema_span_1": 340.6390300857008, - "enabled": true, - "eprice_exp_base": 1.1234393014040378, - "eqty_exp_base": 1.0751630761054183, - "grid_span": 0.2490562513113308, - "initial_eprice_ema_dist": 0.0017677669683755432, - "initial_qty_pct": 0.028104357828053206, - "markup_range": 0.0013200009906924105, - "max_n_entry_orders": 10, - "min_markup": 0.003998932575209124, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AUDIOUSDT.json deleted file mode 100644 index e0f128efd..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AUDIOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.08845451160886725, - "auto_unstuck_wallet_exposure_threshold": 0.13130853078290408, - "backwards_tp": true, - "ema_span_0": 937.1304708106309, - "ema_span_1": 1334.7360945648852, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.7, - "initial_eprice_ema_dist": -0.007847899764953224, - "initial_qty_pct": 0.013301806022247857, - "markup_range": 0.0, - "max_n_entry_orders": 19, - "min_markup": 0.001, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AVAXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AVAXUSDT.json deleted file mode 100644 index 954c31b6f..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AVAXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.3699947528382, - "auto_unstuck_ema_dist": -0.07044616473225777, - "auto_unstuck_qty_pct": 0.014138674595555215, - "auto_unstuck_wallet_exposure_threshold": 0.3582822546886966, - "backwards_tp": true, - "ema_span_0": 1357.8879697613952, - "ema_span_1": 1208.1677908379454, - "enabled": true, - "eprice_exp_base": 1.0292116781885243, - "eqty_exp_base": 1.0457803499101623, - "grid_span": 0.21224632585700248, - "initial_eprice_ema_dist": 0.002977611590072709, - "initial_qty_pct": 0.011868191457964613, - "markup_range": 0.005979515810240324, - "max_n_entry_orders": 7, - "min_markup": 0.009737673233377476, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/AXSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/AXSUSDT.json deleted file mode 100644 index 77c532d00..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/AXSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1197.9910760203686, - "auto_unstuck_ema_dist": -0.0012398357671569125, - "auto_unstuck_qty_pct": 0.012990079713509163, - "auto_unstuck_wallet_exposure_threshold": 0.3172385155144959, - "backwards_tp": true, - "ema_span_0": 1087.7243890998673, - "ema_span_1": 1098.18247770603, - "enabled": true, - "eprice_exp_base": 1.0605899963350598, - "eqty_exp_base": 1.1432569672966097, - "grid_span": 0.17272925136178968, - "initial_eprice_ema_dist": 0.0029983493240514068, - "initial_qty_pct": 0.010722549344646544, - "markup_range": 0.004049768985813013, - "max_n_entry_orders": 8, - "min_markup": 0.004812444402524031, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1423.921294748867, - "auto_unstuck_ema_dist": -0.01054633715749864, - "auto_unstuck_qty_pct": 0.025231824190068527, - "auto_unstuck_wallet_exposure_threshold": 0.5562738224879781, - "backwards_tp": true, - "ema_span_0": 1134.3083842624956, - "ema_span_1": 1417.6032201330115, - "enabled": true, - "eprice_exp_base": 1.49326815245357, - "eqty_exp_base": 2.430999243247185, - "grid_span": 0.6161292264371845, - "initial_eprice_ema_dist": -0.0017873366115620456, - "initial_qty_pct": 0.01, - "markup_range": 0.0022510161783562328, - "max_n_entry_orders": 7, - "min_markup": 0.0016546885919722174, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BAKEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BAKEUSDT.json deleted file mode 100644 index e1cae0d89..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BAKEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 662.0328807482778, - "auto_unstuck_ema_dist": -0.03388835151083124, - "auto_unstuck_qty_pct": 0.02677403800493677, - "auto_unstuck_wallet_exposure_threshold": 0.4475004713668104, - "backwards_tp": true, - "ema_span_0": 1270.7261560421712, - "ema_span_1": 1161.190969744062, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3913394067679532, - "grid_span": 0.2612877525914638, - "initial_eprice_ema_dist": 0.0016097517798800234, - "initial_qty_pct": 0.011654600089727057, - "markup_range": 0.01808686260285191, - "max_n_entry_orders": 9, - "min_markup": 0.005755808458607143, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BALUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BALUSDT.json deleted file mode 100644 index 23f97373f..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BALUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.2098689886839, - "auto_unstuck_ema_dist": -0.029938464971292558, - "auto_unstuck_qty_pct": 0.01322957213435129, - "auto_unstuck_wallet_exposure_threshold": 0.44124299054739075, - "backwards_tp": true, - "ema_span_0": 1022.2174206769037, - "ema_span_1": 1202.5749343987134, - "enabled": true, - "eprice_exp_base": 1.0557824156015634, - "eqty_exp_base": 1.2686235112800972, - "grid_span": 0.2873494680415634, - "initial_eprice_ema_dist": -0.08719536914198235, - "initial_qty_pct": 0.010089167863931646, - "markup_range": 0.0026829860287574977, - "max_n_entry_orders": 12, - "min_markup": 0.003194751705619432, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 880.3912737859615, - "auto_unstuck_ema_dist": -0.012315581263481628, - "auto_unstuck_qty_pct": 0.08635657205429148, - "auto_unstuck_wallet_exposure_threshold": 0.18806038654285967, - "backwards_tp": true, - "ema_span_0": 1430.0633516172375, - "ema_span_1": 821.0138192797996, - "enabled": true, - "eprice_exp_base": 1.1080470361142847, - "eqty_exp_base": 1.579557090740059, - "grid_span": 0.3635607882812889, - "initial_eprice_ema_dist": -0.0005202696973975036, - "initial_qty_pct": 0.012335556133711512, - "markup_range": 0.012237109989187134, - "max_n_entry_orders": 12, - "min_markup": 0.009759041851101926, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BANDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BANDUSDT.json deleted file mode 100644 index 23b666072..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BANDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1121.9715986864321, - "auto_unstuck_ema_dist": -0.0017489403356026865, - "auto_unstuck_qty_pct": 0.06007674825845512, - "auto_unstuck_wallet_exposure_threshold": 0.8623820562773659, - "backwards_tp": true, - "ema_span_0": 973.6632787113003, - "ema_span_1": 1363.5306741727518, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.1894520330866076, - "grid_span": 0.2521910391570215, - "initial_eprice_ema_dist": 0.0029999889024638357, - "initial_qty_pct": 0.01106606068884545, - "markup_range": 0.007130633295116195, - "max_n_entry_orders": 8, - "min_markup": 0.008461526030130253, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 831.6168268061238, - "auto_unstuck_ema_dist": -0.034844460612906275, - "auto_unstuck_qty_pct": 0.043536320765597346, - "auto_unstuck_wallet_exposure_threshold": 0.6928853433538196, - "backwards_tp": true, - "ema_span_0": 1395.1139139848885, - "ema_span_1": 904.0127022319762, - "enabled": true, - "eprice_exp_base": 1.051714084978681, - "eqty_exp_base": 2.2330269073990845, - "grid_span": 0.3706598794902383, - "initial_eprice_ema_dist": -0.004119371354244461, - "initial_qty_pct": 0.01192080261923647, - "markup_range": 0.001959166357056209, - "max_n_entry_orders": 15, - "min_markup": 0.002573110213104516, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BATUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BATUSDT.json deleted file mode 100644 index 6e9c539d1..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BATUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1194.5468367977514, - "auto_unstuck_ema_dist": 0.0015442360434542873, - "auto_unstuck_qty_pct": 0.010508241553814046, - "auto_unstuck_wallet_exposure_threshold": 0.7067653970987103, - "backwards_tp": true, - "ema_span_0": 346.24439698712536, - "ema_span_1": 410.02540315728857, - "enabled": true, - "eprice_exp_base": 1.0057675059683195, - "eqty_exp_base": 1.2119691089145548, - "grid_span": 0.32915898107844216, - "initial_eprice_ema_dist": -0.0011320110324060664, - "initial_qty_pct": 0.015498195499082029, - "markup_range": 0.009120734708312457, - "max_n_entry_orders": 12, - "min_markup": 0.008137096732895536, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 901.4628205529368, - "auto_unstuck_ema_dist": -0.09522971301620199, - "auto_unstuck_qty_pct": 0.09802347609466765, - "auto_unstuck_wallet_exposure_threshold": 0.2173148086485413, - "backwards_tp": true, - "ema_span_0": 1017.0745544177877, - "ema_span_1": 1384.6565632089707, - "enabled": true, - "eprice_exp_base": 1.3457060073819271, - "eqty_exp_base": 1.7570600615140244, - "grid_span": 0.3670729585845791, - "initial_eprice_ema_dist": 0.00296960849411455, - "initial_qty_pct": 0.01845454710912966, - "markup_range": 0.005628610947054199, - "max_n_entry_orders": 10, - "min_markup": 0.0054591177423433, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BCHUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BCHUSDT.json deleted file mode 100644 index 872b946a6..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BCHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 793.2545239738062, - "auto_unstuck_ema_dist": -0.03896660901176437, - "auto_unstuck_qty_pct": 0.012361265284135729, - "auto_unstuck_wallet_exposure_threshold": 0.30548267749905744, - "backwards_tp": true, - "ema_span_0": 48.17216740380098, - "ema_span_1": 100.19106007147514, - "enabled": true, - "eprice_exp_base": 1.016964250898853, - "eqty_exp_base": 1.194015840439302, - "grid_span": 0.18696681323417724, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010004776049590054, - "markup_range": 0.001662490677103238, - "max_n_entry_orders": 9, - "min_markup": 0.0024005439540925057, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1305.9811457523685, - "auto_unstuck_ema_dist": -0.005861165299878759, - "auto_unstuck_qty_pct": 0.012015542867868455, - "auto_unstuck_wallet_exposure_threshold": 0.44586889725404605, - "backwards_tp": true, - "ema_span_0": 991.4568366209204, - "ema_span_1": 1309.0497677663054, - "enabled": true, - "eprice_exp_base": 1.1651164724458916, - "eqty_exp_base": 1.1535807603256603, - "grid_span": 0.3526192529617525, - "initial_eprice_ema_dist": 0.00296888048248019, - "initial_qty_pct": 0.016646987190141842, - "markup_range": 0.003491034485625458, - "max_n_entry_orders": 7, - "min_markup": 0.006820783791583923, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BELUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BELUSDT.json deleted file mode 100644 index 609cfe235..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BELUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1032.399942639176, - "auto_unstuck_ema_dist": -0.017195498797047265, - "auto_unstuck_qty_pct": 0.034458755457195595, - "auto_unstuck_wallet_exposure_threshold": 0.40949424829507347, - "backwards_tp": true, - "ema_span_0": 170.38970954039374, - "ema_span_1": 238.45090654777638, - "enabled": true, - "eprice_exp_base": 1.1258066010291534, - "eqty_exp_base": 1.9202161210547297, - "grid_span": 0.17093734427651444, - "initial_eprice_ema_dist": 0.002970712674591086, - "initial_qty_pct": 0.010001890600374617, - "markup_range": 0.005366461327996013, - "max_n_entry_orders": 8, - "min_markup": 0.005110310500275173, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 427.43314967119693, - "auto_unstuck_ema_dist": -0.015069235149086207, - "auto_unstuck_qty_pct": 0.03269801913949281, - "auto_unstuck_wallet_exposure_threshold": 0.48309471306667423, - "backwards_tp": true, - "ema_span_0": 548.3361412766191, - "ema_span_1": 1439.9448369670429, - "enabled": true, - "eprice_exp_base": 1.2816451454175464, - "eqty_exp_base": 1.0420821403237326, - "grid_span": 0.24160033233829353, - "initial_eprice_ema_dist": 0.00015688382484887794, - "initial_qty_pct": 0.01, - "markup_range": 0.0005254866320474633, - "max_n_entry_orders": 9, - "min_markup": 0.0036087658651600615, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BLUEBIRDUSDT.json deleted file mode 100644 index 7e1fb6fba..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BLUEBIRDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1317.833530108166, - "auto_unstuck_ema_dist": 0.0022253383604573726, - "auto_unstuck_qty_pct": 0.022864698347810117, - "auto_unstuck_wallet_exposure_threshold": 0.44791952710155053, - "backwards_tp": true, - "ema_span_0": 613.4352069848085, - "ema_span_1": 7.135352966522534, - "enabled": true, - "eprice_exp_base": 1.096660309408078, - "eqty_exp_base": 1.0177297882573575, - "grid_span": 0.3215981331692564, - "initial_eprice_ema_dist": 0.0029991325622652698, - "initial_qty_pct": 0.01718150714828029, - "markup_range": 0.002693698828219243, - "max_n_entry_orders": 10, - "min_markup": 0.0044000032450212095, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BLURUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BLURUSDT.json deleted file mode 100644 index f8d23dba1..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BLURUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 943.60209581509, - "auto_unstuck_ema_dist": -0.01263026083130537, - "auto_unstuck_qty_pct": 0.039372718038203386, - "auto_unstuck_wallet_exposure_threshold": 0.6815375874327977, - "backwards_tp": true, - "ema_span_0": 321.69754508505173, - "ema_span_1": 498.1474333283621, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.4632073698606816, - "grid_span": 0.14643215943134671, - "initial_eprice_ema_dist": -0.004652328568934448, - "initial_qty_pct": 0.011784602775104874, - "markup_range": 0.0024085386532988005, - "max_n_entry_orders": 7, - "min_markup": 0.004997300530726923, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BLZUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BLZUSDT.json deleted file mode 100644 index e248c627d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BLZUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1336.7573258048772, - "auto_unstuck_ema_dist": -0.014550216868585193, - "auto_unstuck_qty_pct": 0.01262055538167958, - "auto_unstuck_wallet_exposure_threshold": 0.6566527773619127, - "backwards_tp": true, - "ema_span_0": 1129.8787463090673, - "ema_span_1": 1436.0225720093367, - "enabled": true, - "eprice_exp_base": 1.0683988051320632, - "eqty_exp_base": 1.5167267263064024, - "grid_span": 0.3139622716948075, - "initial_eprice_ema_dist": 0.002995109017244704, - "initial_qty_pct": 0.011416419921925604, - "markup_range": 0.010135576363240492, - "max_n_entry_orders": 8, - "min_markup": 0.006870955611556277, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 499.03080240035354, - "auto_unstuck_ema_dist": -0.012937470138787493, - "auto_unstuck_qty_pct": 0.08184399474128605, - "auto_unstuck_wallet_exposure_threshold": 0.31955219894094267, - "backwards_tp": true, - "ema_span_0": 1393.1943456501938, - "ema_span_1": 1213.4786702019649, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9364141783750206, - "grid_span": 0.23776868983487773, - "initial_eprice_ema_dist": 0.0019516399682863506, - "initial_qty_pct": 0.01141009878899957, - "markup_range": 0.014146927149232493, - "max_n_entry_orders": 10, - "min_markup": 0.004404602431267672, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BNBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BNBUSDT.json deleted file mode 100644 index 8c99a13da..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BNBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 442.46687285602206, - "auto_unstuck_ema_dist": -0.08077606809273262, - "auto_unstuck_qty_pct": 0.02135984268112154, - "auto_unstuck_wallet_exposure_threshold": 0.22291505983961543, - "backwards_tp": true, - "ema_span_0": 5.376882305727688, - "ema_span_1": 563.029473395207, - "enabled": true, - "eprice_exp_base": 1.1646593744266864, - "eqty_exp_base": 1.7488171024151953, - "grid_span": 0.2907603580822223, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013751174807238642, - "markup_range": 0.004967034855015677, - "max_n_entry_orders": 17, - "min_markup": 0.0021283720144967167, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.07721604836555436, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 855.3014672663251, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9325675741271633, - "grid_span": 0.40426618724098035, - "initial_eprice_ema_dist": -0.09990624975888267, - "initial_qty_pct": 0.01081428466330554, - "markup_range": 0.03846813248387199, - "max_n_entry_orders": 7, - "min_markup": 0.008983832397255243, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BNXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BNXUSDT.json deleted file mode 100644 index 05d4a8aa7..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BNXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1215.8674491480372, - "auto_unstuck_ema_dist": -0.0006139669812987997, - "auto_unstuck_qty_pct": 0.010590603991377324, - "auto_unstuck_wallet_exposure_threshold": 0.6099607562719934, - "backwards_tp": true, - "ema_span_0": 824.8894632930865, - "ema_span_1": 1053.8338125773316, - "enabled": true, - "eprice_exp_base": 1.2434732066066212, - "eqty_exp_base": 1.655098138343607, - "grid_span": 0.3355546536326009, - "initial_eprice_ema_dist": 0.000748779441651774, - "initial_qty_pct": 0.010246135371272787, - "markup_range": 0.007839754342224422, - "max_n_entry_orders": 7, - "min_markup": 0.004654051822706137, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BTCDOMUSDT.json deleted file mode 100644 index ed60c11ee..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BTCDOMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1318.4104516749699, - "auto_unstuck_ema_dist": -0.058460092111090795, - "auto_unstuck_qty_pct": 0.05060642147387394, - "auto_unstuck_wallet_exposure_threshold": 0.4810293299944333, - "backwards_tp": true, - "ema_span_0": 193.7350833651077, - "ema_span_1": 1420.5056364308696, - "enabled": true, - "eprice_exp_base": 1.0680518200636575, - "eqty_exp_base": 1.5232525875138057, - "grid_span": 0.1353572630706144, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010311415469551343, - "markup_range": 0.00011398986805161363, - "max_n_entry_orders": 10, - "min_markup": 0.0018696417860710735, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BTCSTUSDT.json deleted file mode 100644 index 41834de28..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BTCSTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 481.33617143618267, - "auto_unstuck_ema_dist": -0.02295645486848954, - "auto_unstuck_qty_pct": 0.1, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1153.1277657912685, - "ema_span_1": 1063.2580321837377, - "enabled": true, - "eprice_exp_base": 3.589340929477798, - "eqty_exp_base": 2.1822994067159325, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.07647189648423881, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 13, - "min_markup": 0.00271604128139237, - "n_close_orders": 9, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BTCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BTCUSDT.json deleted file mode 100644 index 92377bc5d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BTCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1024.028826440764, - "auto_unstuck_ema_dist": -0.09400114651372406, - "auto_unstuck_qty_pct": 0.02633379607046622, - "auto_unstuck_wallet_exposure_threshold": 0.45431274064467747, - "backwards_tp": true, - "ema_span_0": 922.2997974028557, - "ema_span_1": 833.4589977536242, - "enabled": true, - "eprice_exp_base": 1.000069302736537, - "eqty_exp_base": 1.0803878380091425, - "grid_span": 0.1567636896615192, - "initial_eprice_ema_dist": 0.000633872996784148, - "initial_qty_pct": 0.024908747212993406, - "markup_range": 0.0026900588113128888, - "max_n_entry_orders": 10, - "min_markup": 0.0028845049965784157, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1418.6562462352065, - "auto_unstuck_ema_dist": -0.010470212167376786, - "auto_unstuck_qty_pct": 0.01415059629736314, - "auto_unstuck_wallet_exposure_threshold": 0.11782315379780525, - "backwards_tp": true, - "ema_span_0": 1164.6212365288327, - "ema_span_1": 105.65666924479203, - "enabled": true, - "eprice_exp_base": 1.0109543575180266, - "eqty_exp_base": 1.0364562994716724, - "grid_span": 0.14634275259638022, - "initial_eprice_ema_dist": 0.002998965557466333, - "initial_qty_pct": 0.014359937543700914, - "markup_range": 0.0004219128490180443, - "max_n_entry_orders": 7, - "min_markup": 0.0014767028993130347, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/BTSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/BTSUSDT.json deleted file mode 100644 index 4f57dfdb1..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/BTSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/C98USDT.json b/configs/live/single_symbol_optimizations/neat_grid/C98USDT.json deleted file mode 100644 index 02bb9dc18..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/C98USDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 588.4046506251598, - "auto_unstuck_ema_dist": -0.04929267586320539, - "auto_unstuck_qty_pct": 0.02862607293805084, - "auto_unstuck_wallet_exposure_threshold": 0.2796812591951138, - "backwards_tp": true, - "ema_span_0": 983.3912263591697, - "ema_span_1": 1291.369846357907, - "enabled": true, - "eprice_exp_base": 1.0623121946221181, - "eqty_exp_base": 1.1639082421634233, - "grid_span": 0.5127404697753712, - "initial_eprice_ema_dist": 0.0016943324124452292, - "initial_qty_pct": 0.014164359772480019, - "markup_range": 0.0056096624613933155, - "max_n_entry_orders": 17, - "min_markup": 0.009538893707668243, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CELOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CELOUSDT.json deleted file mode 100644 index 010a3533e..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CELOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.4092512849797, - "auto_unstuck_ema_dist": -0.007804317744943648, - "auto_unstuck_qty_pct": 0.012827505738499128, - "auto_unstuck_wallet_exposure_threshold": 0.23114110655160536, - "backwards_tp": true, - "ema_span_0": 471.51598421925127, - "ema_span_1": 690.0351092432278, - "enabled": true, - "eprice_exp_base": 1.1562934653212311, - "eqty_exp_base": 2.0699935345270997, - "grid_span": 0.15929253434258953, - "initial_eprice_ema_dist": -0.00866265020952416, - "initial_qty_pct": 0.011026991701794699, - "markup_range": 0.005901207434692439, - "max_n_entry_orders": 7, - "min_markup": 0.005892201524839872, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CELRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CELRUSDT.json deleted file mode 100644 index fcfbb080d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CELRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1417.5595161289157, - "auto_unstuck_ema_dist": -0.034328822169178735, - "auto_unstuck_qty_pct": 0.04196890107888902, - "auto_unstuck_wallet_exposure_threshold": 0.15702577867185727, - "backwards_tp": true, - "ema_span_0": 699.9315721565192, - "ema_span_1": 97.24843819473062, - "enabled": true, - "eprice_exp_base": 1.000000113879665, - "eqty_exp_base": 1.4543933682296195, - "grid_span": 0.18293760608303983, - "initial_eprice_ema_dist": 0.0017019501975442835, - "initial_qty_pct": 0.017471325290169197, - "markup_range": 0.007100615368681533, - "max_n_entry_orders": 9, - "min_markup": 0.009480804499218239, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.0434034935572, - "auto_unstuck_ema_dist": -0.07336392221453619, - "auto_unstuck_qty_pct": 0.041647237096289036, - "auto_unstuck_wallet_exposure_threshold": 0.2567189717660962, - "backwards_tp": true, - "ema_span_0": 698.9439556665241, - "ema_span_1": 1420.4838396465016, - "enabled": true, - "eprice_exp_base": 1.0674267479608834, - "eqty_exp_base": 1.7934484576941174, - "grid_span": 0.12653934155635077, - "initial_eprice_ema_dist": -0.0030766630450440135, - "initial_qty_pct": 0.014586123518883684, - "markup_range": 0.002806837580842318, - "max_n_entry_orders": 13, - "min_markup": 0.0035574376635588885, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CFXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CFXUSDT.json deleted file mode 100644 index 10d7ed7e9..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CFXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1174.4957493303018, - "auto_unstuck_ema_dist": -0.03256348980375066, - "auto_unstuck_qty_pct": 0.017510348425941624, - "auto_unstuck_wallet_exposure_threshold": 0.7761913402202594, - "backwards_tp": true, - "ema_span_0": 934.7386114305474, - "ema_span_1": 1357.07877191991, - "enabled": true, - "eprice_exp_base": 1.0120865382439177, - "eqty_exp_base": 1.320710372420871, - "grid_span": 0.30224181950552237, - "initial_eprice_ema_dist": 0.00294606034102475, - "initial_qty_pct": 0.010089718048227872, - "markup_range": 0.005864151461505409, - "max_n_entry_orders": 7, - "min_markup": 0.009613517511271272, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.05710761176778564, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.6992146886012615, - "backwards_tp": true, - "ema_span_0": 1127.6865426361305, - "ema_span_1": 35.87560614031918, - "enabled": true, - "eprice_exp_base": 1.4491264014055243, - "eqty_exp_base": 2.8505990988397607, - "grid_span": 0.45421682700153465, - "initial_eprice_ema_dist": -0.010156975933813053, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 9, - "min_markup": 0.01, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CHRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CHRUSDT.json deleted file mode 100644 index 916a32901..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CHRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1356.0976122855272, - "auto_unstuck_ema_dist": -0.04096486330558547, - "auto_unstuck_qty_pct": 0.01157079205008633, - "auto_unstuck_wallet_exposure_threshold": 0.6585588232903201, - "backwards_tp": true, - "ema_span_0": 754.9650547886384, - "ema_span_1": 32.02355625334798, - "enabled": true, - "eprice_exp_base": 1.0003232146185104, - "eqty_exp_base": 2.0086046719051853, - "grid_span": 0.19016357148075247, - "initial_eprice_ema_dist": -0.056805610105461174, - "initial_qty_pct": 0.013498406480045204, - "markup_range": 0.0060398974172039925, - "max_n_entry_orders": 9, - "min_markup": 0.006212424819249478, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.3656695593141, - "auto_unstuck_ema_dist": -0.015398197791529941, - "auto_unstuck_qty_pct": 0.04431219279027263, - "auto_unstuck_wallet_exposure_threshold": 0.14474877521135127, - "backwards_tp": true, - "ema_span_0": 1345.8018944144364, - "ema_span_1": 114.25356926090353, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.228892022834553, - "grid_span": 0.19509075249107113, - "initial_eprice_ema_dist": 0.0028304685343249194, - "initial_qty_pct": 0.014539530455688529, - "markup_range": 0.019110397358009217, - "max_n_entry_orders": 13, - "min_markup": 0.009932421283043847, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CHZUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CHZUSDT.json deleted file mode 100644 index 8cf3f20f1..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CHZUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1253.4046838701397, - "auto_unstuck_ema_dist": -0.038304871892965775, - "auto_unstuck_qty_pct": 0.011009382613533916, - "auto_unstuck_wallet_exposure_threshold": 0.7565350300248895, - "backwards_tp": true, - "ema_span_0": 535.751315950031, - "ema_span_1": 436.03558382513296, - "enabled": true, - "eprice_exp_base": 1.1783337963433893, - "eqty_exp_base": 1.0000124766419358, - "grid_span": 0.32119215268552676, - "initial_eprice_ema_dist": 0.002997427280291333, - "initial_qty_pct": 0.014236466472424011, - "markup_range": 0.0038804863508184796, - "max_n_entry_orders": 7, - "min_markup": 0.004239300939060961, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1087.7476999109492, - "auto_unstuck_ema_dist": -0.0034658854376765497, - "auto_unstuck_qty_pct": 0.05187352535060557, - "auto_unstuck_wallet_exposure_threshold": 0.14798692619223092, - "backwards_tp": true, - "ema_span_0": 638.9806474895937, - "ema_span_1": 603.075615225178, - "enabled": true, - "eprice_exp_base": 1.2098530047923792, - "eqty_exp_base": 2.581343663099173, - "grid_span": 0.2958953726316062, - "initial_eprice_ema_dist": -0.0016116329600583104, - "initial_qty_pct": 0.02004914461143985, - "markup_range": 0.0005562750621565159, - "max_n_entry_orders": 11, - "min_markup": 0.007760528893120093, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CKBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CKBUSDT.json deleted file mode 100644 index eff7cc82c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CKBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 781.1069973944801, - "auto_unstuck_ema_dist": -0.04041194891053113, - "auto_unstuck_qty_pct": 0.013039336957362266, - "auto_unstuck_wallet_exposure_threshold": 0.21005762329714173, - "backwards_tp": true, - "ema_span_0": 1089.3533422202247, - "ema_span_1": 645.6438460818256, - "enabled": true, - "eprice_exp_base": 1.432400111323191, - "eqty_exp_base": 2.6182858260856072, - "grid_span": 0.1564882409441415, - "initial_eprice_ema_dist": 0.002991926780557061, - "initial_qty_pct": 0.01136107219949211, - "markup_range": 0.005102629400112615, - "max_n_entry_orders": 7, - "min_markup": 0.007082499507288377, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/COCOSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/COCOSUSDT.json deleted file mode 100644 index b211a6d87..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/COCOSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.6873097451435, - "auto_unstuck_ema_dist": -0.008960377763974401, - "auto_unstuck_qty_pct": 0.018710940226582512, - "auto_unstuck_wallet_exposure_threshold": 0.18971281109312993, - "backwards_tp": true, - "ema_span_0": 60.03772161351416, - "ema_span_1": 1190.4675258476373, - "enabled": true, - "eprice_exp_base": 1.2008545071500585, - "eqty_exp_base": 2.0366095527917594, - "grid_span": 0.2406939573172345, - "initial_eprice_ema_dist": 0.002815561363705389, - "initial_qty_pct": 0.012504443843115734, - "markup_range": 0.004268329742834503, - "max_n_entry_orders": 9, - "min_markup": 0.009816126119305007, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 853.872837912171, - "auto_unstuck_ema_dist": -0.08571722772879244, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8346181381557768, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.3132614235836164, - "initial_eprice_ema_dist": -0.03569088172243363, - "initial_qty_pct": 0.04890885068969343, - "markup_range": 0.06, - "max_n_entry_orders": 8, - "min_markup": 0.004945749887456755, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/COMBOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/COMBOUSDT.json deleted file mode 100644 index 0a49918de..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/COMBOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1196.2251260134847, - "auto_unstuck_ema_dist": -0.02233595261660813, - "auto_unstuck_qty_pct": 0.010203513346407093, - "auto_unstuck_wallet_exposure_threshold": 0.6033438116771447, - "backwards_tp": true, - "ema_span_0": 43.15021004348335, - "ema_span_1": 165.4137955730145, - "enabled": true, - "eprice_exp_base": 1.000017606485477, - "eqty_exp_base": 1.9076799393723978, - "grid_span": 0.10018369782933174, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013573373371142968, - "markup_range": 9.279685691963764e-05, - "max_n_entry_orders": 8, - "min_markup": 0.005365995149080274, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/COMPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/COMPUSDT.json deleted file mode 100644 index 41def5395..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/COMPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 838.3120242747932, - "auto_unstuck_ema_dist": -0.07370643297762158, - "auto_unstuck_qty_pct": 0.016713622363954586, - "auto_unstuck_wallet_exposure_threshold": 0.548354015436665, - "backwards_tp": true, - "ema_span_0": 1140.5737703739335, - "ema_span_1": 895.7602885997176, - "enabled": true, - "eprice_exp_base": 1.0825102452087612, - "eqty_exp_base": 1.3591965770022436, - "grid_span": 0.282476359401912, - "initial_eprice_ema_dist": 0.0001353624846836309, - "initial_qty_pct": 0.021731306239346666, - "markup_range": 0.003711966693670785, - "max_n_entry_orders": 7, - "min_markup": 0.009850256638459343, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 678.162975373363, - "auto_unstuck_ema_dist": -0.04953831021073149, - "auto_unstuck_qty_pct": 0.021075774309723447, - "auto_unstuck_wallet_exposure_threshold": 0.3824837309941427, - "backwards_tp": true, - "ema_span_0": 1135.8915209008524, - "ema_span_1": 647.4759274692988, - "enabled": true, - "eprice_exp_base": 1.2640396733745156, - "eqty_exp_base": 1.4213196987563914, - "grid_span": 0.4049268199885872, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012557802861449786, - "markup_range": 0.005928020922128725, - "max_n_entry_orders": 9, - "min_markup": 0.007055199966333963, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/COTIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/COTIUSDT.json deleted file mode 100644 index 3d6ebea51..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/COTIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1164.367105207233, - "auto_unstuck_ema_dist": 0.0022907218188258, - "auto_unstuck_qty_pct": 0.027460747214832215, - "auto_unstuck_wallet_exposure_threshold": 0.23691563946940694, - "backwards_tp": true, - "ema_span_0": 281.6410886581773, - "ema_span_1": 470.2248647508127, - "enabled": true, - "eprice_exp_base": 1.052812334609832, - "eqty_exp_base": 1.8618712239404998, - "grid_span": 0.14701900906761717, - "initial_eprice_ema_dist": 0.0017507444397568501, - "initial_qty_pct": 0.011083307892104348, - "markup_range": 0.00605671350196698, - "max_n_entry_orders": 8, - "min_markup": 0.008461394426644139, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1001.7030082245074, - "auto_unstuck_ema_dist": 0.0028531406753069194, - "auto_unstuck_qty_pct": 0.01001281808926318, - "auto_unstuck_wallet_exposure_threshold": 0.2547324941646131, - "backwards_tp": true, - "ema_span_0": 521.5320708307191, - "ema_span_1": 816.2784461391484, - "enabled": true, - "eprice_exp_base": 1.0700039340495753, - "eqty_exp_base": 2.76745883879376, - "grid_span": 0.14137276698452633, - "initial_eprice_ema_dist": -0.005176577977884642, - "initial_qty_pct": 0.011323622492658574, - "markup_range": 0.005212070894250841, - "max_n_entry_orders": 9, - "min_markup": 0.007306767380411044, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CRVUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CRVUSDT.json deleted file mode 100644 index a1a4349f7..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CRVUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 828.3389966305593, - "auto_unstuck_ema_dist": -0.0748963339146766, - "auto_unstuck_qty_pct": 0.019373557221505328, - "auto_unstuck_wallet_exposure_threshold": 0.40071449528436187, - "backwards_tp": true, - "ema_span_0": 1325.222665605102, - "ema_span_1": 330.15655219966743, - "enabled": true, - "eprice_exp_base": 1.1116718536817174, - "eqty_exp_base": 1.6170948371146854, - "grid_span": 0.22455765423915544, - "initial_eprice_ema_dist": 0.0017658434051677455, - "initial_qty_pct": 0.014897601682688473, - "markup_range": 0.01051335829168496, - "max_n_entry_orders": 12, - "min_markup": 0.0028632509612613677, - "n_close_orders": 9, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CTKUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CTKUSDT.json deleted file mode 100644 index 540d85b93..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CTKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1410.2617536223438, - "auto_unstuck_ema_dist": -0.07382972647481471, - "auto_unstuck_qty_pct": 0.013585576994096567, - "auto_unstuck_wallet_exposure_threshold": 0.5347406980723225, - "backwards_tp": true, - "ema_span_0": 1273.9259663849127, - "ema_span_1": 976.1240373461767, - "enabled": true, - "eprice_exp_base": 1.1304824300805365, - "eqty_exp_base": 2.048053538220396, - "grid_span": 0.17431757247031854, - "initial_eprice_ema_dist": -0.0008322492678262902, - "initial_qty_pct": 0.014659795275296102, - "markup_range": 0.0068827123745316375, - "max_n_entry_orders": 9, - "min_markup": 0.009457337723553772, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CTSIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CTSIUSDT.json deleted file mode 100644 index 9fd580c89..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CTSIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1253.4046838701397, - "auto_unstuck_ema_dist": -0.038304871892965775, - "auto_unstuck_qty_pct": 0.011009382613533916, - "auto_unstuck_wallet_exposure_threshold": 0.7565350300248895, - "backwards_tp": true, - "ema_span_0": 535.751315950031, - "ema_span_1": 436.03558382513296, - "enabled": true, - "eprice_exp_base": 1.1783337963433893, - "eqty_exp_base": 1.0000124766419358, - "grid_span": 0.32119215268552676, - "initial_eprice_ema_dist": 0.002997427280291333, - "initial_qty_pct": 0.014236466472424011, - "markup_range": 0.0038804863508184796, - "max_n_entry_orders": 7, - "min_markup": 0.004239300939060961, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1363.1256062159623, - "auto_unstuck_ema_dist": -0.0062457110276821284, - "auto_unstuck_qty_pct": 0.022309067051932994, - "auto_unstuck_wallet_exposure_threshold": 0.7915770920029535, - "backwards_tp": true, - "ema_span_0": 163.98869270457698, - "ema_span_1": 555.5142559278546, - "enabled": true, - "eprice_exp_base": 1.1211887337116984, - "eqty_exp_base": 3.612510369922904, - "grid_span": 0.15402442098786912, - "initial_eprice_ema_dist": 0.0025458854211192167, - "initial_qty_pct": 0.01, - "markup_range": 0.0014841702678626398, - "max_n_entry_orders": 19, - "min_markup": 0.003510232273971882, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CVCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CVCUSDT.json deleted file mode 100644 index 577eb0f2a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CVCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/CVXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/CVXUSDT.json deleted file mode 100644 index 88f22eeeb..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/CVXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1240.2565851661307, - "auto_unstuck_ema_dist": -0.04019038393165331, - "auto_unstuck_qty_pct": 0.021040444008926396, - "auto_unstuck_wallet_exposure_threshold": 0.30527300469357793, - "backwards_tp": true, - "ema_span_0": 1031.6178053435272, - "ema_span_1": 358.10397487215164, - "enabled": true, - "eprice_exp_base": 1.0494443936743298, - "eqty_exp_base": 3.256590726383303, - "grid_span": 0.16643856649520014, - "initial_eprice_ema_dist": 0.0027804189287776717, - "initial_qty_pct": 0.010518974411386302, - "markup_range": 0.006586886397756721, - "max_n_entry_orders": 9, - "min_markup": 0.009999783817915974, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 831.6168268061238, - "auto_unstuck_ema_dist": -0.034844460612906275, - "auto_unstuck_qty_pct": 0.043536320765597346, - "auto_unstuck_wallet_exposure_threshold": 0.6928853433538196, - "backwards_tp": true, - "ema_span_0": 1395.1139139848885, - "ema_span_1": 904.0127022319762, - "enabled": true, - "eprice_exp_base": 1.051714084978681, - "eqty_exp_base": 2.2330269073990845, - "grid_span": 0.3706598794902383, - "initial_eprice_ema_dist": -0.004119371354244461, - "initial_qty_pct": 0.01192080261923647, - "markup_range": 0.001959166357056209, - "max_n_entry_orders": 15, - "min_markup": 0.002573110213104516, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DARUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DARUSDT.json deleted file mode 100644 index 51195574c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1317.833530108166, - "auto_unstuck_ema_dist": 0.0022253383604573726, - "auto_unstuck_qty_pct": 0.022864698347810117, - "auto_unstuck_wallet_exposure_threshold": 0.44791952710155053, - "backwards_tp": true, - "ema_span_0": 613.4352069848085, - "ema_span_1": 7.135352966522534, - "enabled": true, - "eprice_exp_base": 1.096660309408078, - "eqty_exp_base": 1.0177297882573575, - "grid_span": 0.3215981331692564, - "initial_eprice_ema_dist": 0.0029991325622652698, - "initial_qty_pct": 0.01718150714828029, - "markup_range": 0.002693698828219243, - "max_n_entry_orders": 10, - "min_markup": 0.0044000032450212095, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 790.5670594679974, - "auto_unstuck_ema_dist": -0.03544949333135166, - "auto_unstuck_qty_pct": 0.010684507938142714, - "auto_unstuck_wallet_exposure_threshold": 0.34068900370921995, - "backwards_tp": true, - "ema_span_0": 619.3318657423213, - "ema_span_1": 229.32712027080743, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.448115232441877, - "grid_span": 0.15536111949553266, - "initial_eprice_ema_dist": -0.047104956145325526, - "initial_qty_pct": 0.012762885047948057, - "markup_range": 0.0010440091119608922, - "max_n_entry_orders": 19, - "min_markup": 0.004446391943853703, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DASHUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DASHUSDT.json deleted file mode 100644 index ddab6522f..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DASHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1418.009241043872, - "auto_unstuck_ema_dist": -0.004993538135800457, - "auto_unstuck_qty_pct": 0.01009656907607459, - "auto_unstuck_wallet_exposure_threshold": 0.569275149511458, - "backwards_tp": true, - "ema_span_0": 485.71648821946144, - "ema_span_1": 744.8665892294066, - "enabled": true, - "eprice_exp_base": 1.0000031993709957, - "eqty_exp_base": 1.1698898337941797, - "grid_span": 0.303493725776266, - "initial_eprice_ema_dist": -0.001774131470705545, - "initial_qty_pct": 0.010133152572590261, - "markup_range": 0.008566322536539817, - "max_n_entry_orders": 15, - "min_markup": 0.005003643386410385, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 790.5670594679974, - "auto_unstuck_ema_dist": -0.03544949333135166, - "auto_unstuck_qty_pct": 0.010684507938142714, - "auto_unstuck_wallet_exposure_threshold": 0.34068900370921995, - "backwards_tp": true, - "ema_span_0": 619.3318657423213, - "ema_span_1": 229.32712027080743, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.448115232441877, - "grid_span": 0.15536111949553266, - "initial_eprice_ema_dist": -0.047104956145325526, - "initial_qty_pct": 0.012762885047948057, - "markup_range": 0.0010440091119608922, - "max_n_entry_orders": 19, - "min_markup": 0.004446391943853703, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DEFIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DEFIUSDT.json deleted file mode 100644 index 2c3eb560c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DEFIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 608.1372240805482, - "auto_unstuck_ema_dist": -0.02955737732520703, - "auto_unstuck_qty_pct": 0.018854721778466487, - "auto_unstuck_wallet_exposure_threshold": 0.2899519257671118, - "backwards_tp": true, - "ema_span_0": 735.8831938621486, - "ema_span_1": 1054.88750975569, - "enabled": true, - "eprice_exp_base": 1.1040506680834845, - "eqty_exp_base": 1.6382081742463226, - "grid_span": 0.18737207114959717, - "initial_eprice_ema_dist": -0.004155312490637599, - "initial_qty_pct": 0.013412153304446192, - "markup_range": 0.005389260452694425, - "max_n_entry_orders": 7, - "min_markup": 0.007638346187856128, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1034.5591778608916, - "auto_unstuck_ema_dist": 0.002632971785857589, - "auto_unstuck_qty_pct": 0.010288601427811163, - "auto_unstuck_wallet_exposure_threshold": 0.3646283137875909, - "backwards_tp": true, - "ema_span_0": 1429.7196272807514, - "ema_span_1": 1012.6362684123183, - "enabled": true, - "eprice_exp_base": 1.0813619357542266, - "eqty_exp_base": 3.8613910841788557, - "grid_span": 0.13278949373095877, - "initial_eprice_ema_dist": -0.00014197257902766626, - "initial_qty_pct": 0.013472704427205835, - "markup_range": 0.002532548146178754, - "max_n_entry_orders": 20, - "min_markup": 0.005542276301552574, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DENTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DENTUSDT.json deleted file mode 100644 index 1df71b205..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DENTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 448.6172174521932, - "auto_unstuck_ema_dist": -0.007561885143775889, - "auto_unstuck_qty_pct": 0.04264556639810065, - "auto_unstuck_wallet_exposure_threshold": 0.12718774020885557, - "backwards_tp": true, - "ema_span_0": 555.5332802101452, - "ema_span_1": 470.09400474759855, - "enabled": true, - "eprice_exp_base": 1.0966927491393668, - "eqty_exp_base": 1.7220816742812664, - "grid_span": 0.23780570861735031, - "initial_eprice_ema_dist": 0.0029999428079923573, - "initial_qty_pct": 0.015036412720793995, - "markup_range": 0.004595273253180742, - "max_n_entry_orders": 11, - "min_markup": 0.008825418568201715, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1385.336455858615, - "auto_unstuck_ema_dist": -0.09420340704641568, - "auto_unstuck_qty_pct": 0.03727852876925451, - "auto_unstuck_wallet_exposure_threshold": 0.264002908997623, - "backwards_tp": true, - "ema_span_0": 1281.230049366816, - "ema_span_1": 1278.553940164715, - "enabled": true, - "eprice_exp_base": 1.0486886922883731, - "eqty_exp_base": 2.9727407510302357, - "grid_span": 0.3446674736354055, - "initial_eprice_ema_dist": -0.006685159124024106, - "initial_qty_pct": 0.014888999115593918, - "markup_range": 0.006611724146697535, - "max_n_entry_orders": 22, - "min_markup": 0.005586593437728122, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DGBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DGBUSDT.json deleted file mode 100644 index 5929963d9..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DGBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 619.7282175730941, - "auto_unstuck_ema_dist": -0.041954183396949195, - "auto_unstuck_qty_pct": 0.047208897000557394, - "auto_unstuck_wallet_exposure_threshold": 0.29305367767147916, - "backwards_tp": true, - "ema_span_0": 1396.1765237038815, - "ema_span_1": 429.37227822213225, - "enabled": true, - "eprice_exp_base": 1.325703772461556, - "eqty_exp_base": 1.448366220671142, - "grid_span": 0.23112188498397643, - "initial_eprice_ema_dist": -0.0021993162275345812, - "initial_qty_pct": 0.015264805418319803, - "markup_range": 0.009261663941753153, - "max_n_entry_orders": 7, - "min_markup": 0.007253321967519354, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 940.7086792703731, - "auto_unstuck_ema_dist": -0.012553165246576976, - "auto_unstuck_qty_pct": 0.010606737881831715, - "auto_unstuck_wallet_exposure_threshold": 0.5847722602633316, - "backwards_tp": true, - "ema_span_0": 1032.9566457789674, - "ema_span_1": 674.492002347481, - "enabled": true, - "eprice_exp_base": 1.2532029517002135, - "eqty_exp_base": 1.861661092822006, - "grid_span": 0.14547769704201155, - "initial_eprice_ema_dist": 0.0016977577963831925, - "initial_qty_pct": 0.012861450076037595, - "markup_range": 0.009143037000504861, - "max_n_entry_orders": 10, - "min_markup": 0.0046727910491455756, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DOGEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DOGEUSDT.json deleted file mode 100644 index a8910fe35..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DOGEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 398.82361184535074, - "auto_unstuck_ema_dist": -0.0018062727097298815, - "auto_unstuck_qty_pct": 0.06035714231382467, - "auto_unstuck_wallet_exposure_threshold": 0.18489938277491794, - "backwards_tp": true, - "ema_span_0": 942.5494609680151, - "ema_span_1": 957.4417034642877, - "enabled": true, - "eprice_exp_base": 1.1931781533327768, - "eqty_exp_base": 1.0964573436703675, - "grid_span": 0.12559083611289854, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.020902081014903626, - "markup_range": 0.001371605517100114, - "max_n_entry_orders": 9, - "min_markup": 0.003971431275240029, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1423.921294748867, - "auto_unstuck_ema_dist": -0.01054633715749864, - "auto_unstuck_qty_pct": 0.025231824190068527, - "auto_unstuck_wallet_exposure_threshold": 0.5562738224879781, - "backwards_tp": true, - "ema_span_0": 1134.3083842624956, - "ema_span_1": 1417.6032201330115, - "enabled": true, - "eprice_exp_base": 1.49326815245357, - "eqty_exp_base": 2.430999243247185, - "grid_span": 0.6161292264371845, - "initial_eprice_ema_dist": -0.0017873366115620456, - "initial_qty_pct": 0.01, - "markup_range": 0.0022510161783562328, - "max_n_entry_orders": 7, - "min_markup": 0.0016546885919722174, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DOTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DOTUSDT.json deleted file mode 100644 index abc2956ce..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DOTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1153.4089193874636, - "auto_unstuck_ema_dist": -0.035875033846794975, - "auto_unstuck_qty_pct": 0.010263757064094459, - "auto_unstuck_wallet_exposure_threshold": 0.46729587961200386, - "backwards_tp": true, - "ema_span_0": 316.9357839604266, - "ema_span_1": 970.9396473961013, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3362876166533324, - "grid_span": 0.10102462899372266, - "initial_eprice_ema_dist": -0.005758191324436425, - "initial_qty_pct": 0.011082668241455002, - "markup_range": 0.0057278377986356415, - "max_n_entry_orders": 15, - "min_markup": 0.0030046892767935027, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1150.3511144922481, - "auto_unstuck_ema_dist": -0.041906902847726184, - "auto_unstuck_qty_pct": 0.032170310270600376, - "auto_unstuck_wallet_exposure_threshold": 0.43846263782105394, - "backwards_tp": true, - "ema_span_0": 692.1612919901778, - "ema_span_1": 742.3943677119056, - "enabled": true, - "eprice_exp_base": 1.1199019380966861, - "eqty_exp_base": 2.954505148655551, - "grid_span": 0.17345283274055326, - "initial_eprice_ema_dist": -0.0022492226271184244, - "initial_qty_pct": 0.01793282602537548, - "markup_range": 0.0035845531827502124, - "max_n_entry_orders": 8, - "min_markup": 0.006051740296178144, - "n_close_orders": 9, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DUSKUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DUSKUSDT.json deleted file mode 100644 index 6f6c22a7b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DUSKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0500150211110256, - "auto_unstuck_qty_pct": 0.011934357993227224, - "auto_unstuck_wallet_exposure_threshold": 0.5456342074520889, - "backwards_tp": true, - "ema_span_0": 1340.9912942813796, - "ema_span_1": 1325.815993595614, - "enabled": true, - "eprice_exp_base": 1.010201287616513, - "eqty_exp_base": 2.8993618137479764, - "grid_span": 0.1605333319858612, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 20, - "min_markup": 0.008824619416875382, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/DYDXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/DYDXUSDT.json deleted file mode 100644 index 9d3df2024..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/DYDXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1336.7573258048772, - "auto_unstuck_ema_dist": -0.014550216868585193, - "auto_unstuck_qty_pct": 0.01262055538167958, - "auto_unstuck_wallet_exposure_threshold": 0.6566527773619127, - "backwards_tp": true, - "ema_span_0": 1129.8787463090673, - "ema_span_1": 1436.0225720093367, - "enabled": true, - "eprice_exp_base": 1.0683988051320632, - "eqty_exp_base": 1.5167267263064024, - "grid_span": 0.3139622716948075, - "initial_eprice_ema_dist": 0.002995109017244704, - "initial_qty_pct": 0.011416419921925604, - "markup_range": 0.010135576363240492, - "max_n_entry_orders": 8, - "min_markup": 0.006870955611556277, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/EDUUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/EDUUSDT.json deleted file mode 100644 index 981220a5c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/EDUUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 744.3161590927804, - "auto_unstuck_ema_dist": -0.000832856043586223, - "auto_unstuck_qty_pct": 0.019838123633531574, - "auto_unstuck_wallet_exposure_threshold": 0.41716875965941924, - "backwards_tp": true, - "ema_span_0": 7.808799208124387, - "ema_span_1": 1109.859386607598, - "enabled": true, - "eprice_exp_base": 1.0007124828485983, - "eqty_exp_base": 2.134319566846371, - "grid_span": 0.22689293427171217, - "initial_eprice_ema_dist": -0.0007614403447673986, - "initial_qty_pct": 0.010641439103372646, - "markup_range": 0.006215298659219062, - "max_n_entry_orders": 7, - "min_markup": 0.005790448305888321, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/EGLDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/EGLDUSDT.json deleted file mode 100644 index d04b26b18..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/EGLDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ENJUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ENJUSDT.json deleted file mode 100644 index 441287f68..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ENJUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 685.7518969658252, - "auto_unstuck_ema_dist": -0.09446425969026072, - "auto_unstuck_qty_pct": 0.010469342486375809, - "auto_unstuck_wallet_exposure_threshold": 0.6431729566933375, - "backwards_tp": true, - "ema_span_0": 1014.3162152474173, - "ema_span_1": 1372.949956726125, - "enabled": true, - "eprice_exp_base": 1.2019265879766374, - "eqty_exp_base": 1.7212873336727055, - "grid_span": 0.30484844200710765, - "initial_eprice_ema_dist": -0.008252672153222083, - "initial_qty_pct": 0.011089263583602915, - "markup_range": 0.005110629674684569, - "max_n_entry_orders": 12, - "min_markup": 0.004372439443132463, - "n_close_orders": 15, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 706.7662352515895, - "auto_unstuck_ema_dist": -0.036498000326193804, - "auto_unstuck_qty_pct": 0.01981831571758794, - "auto_unstuck_wallet_exposure_threshold": 0.40851177642177217, - "backwards_tp": true, - "ema_span_0": 74.879394743108, - "ema_span_1": 1405.847238241598, - "enabled": true, - "eprice_exp_base": 1.2019323897947605, - "eqty_exp_base": 1.3378286681862148, - "grid_span": 0.2578523736206859, - "initial_eprice_ema_dist": -0.005558847327716189, - "initial_qty_pct": 0.01, - "markup_range": 0.0027227851621016313, - "max_n_entry_orders": 17, - "min_markup": 0.00280973155653425, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ENSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ENSUSDT.json deleted file mode 100644 index 1c57d7b68..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ENSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.9569792006992, - "auto_unstuck_ema_dist": -0.018597537646096538, - "auto_unstuck_qty_pct": 0.055220276487529585, - "auto_unstuck_wallet_exposure_threshold": 0.19955577235205618, - "backwards_tp": true, - "ema_span_0": 1008.0914015796933, - "ema_span_1": 1083.336836507491, - "enabled": true, - "eprice_exp_base": 1.143424545343761, - "eqty_exp_base": 1.5799199348833062, - "grid_span": 0.17527323178873047, - "initial_eprice_ema_dist": -0.0058279511456999075, - "initial_qty_pct": 0.017128542485555447, - "markup_range": 0.010000873003413202, - "max_n_entry_orders": 10, - "min_markup": 0.005966950872680734, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/EOSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/EOSUSDT.json deleted file mode 100644 index bd3b6ad51..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/EOSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1100.2544867173774, - "auto_unstuck_ema_dist": -0.07738798072694454, - "auto_unstuck_qty_pct": 0.04625307986861594, - "auto_unstuck_wallet_exposure_threshold": 0.5032881652242883, - "backwards_tp": true, - "ema_span_0": 967.4908523197893, - "ema_span_1": 900.9819839426407, - "enabled": true, - "eprice_exp_base": 1.0811479700918802, - "eqty_exp_base": 1.0110307331018882, - "grid_span": 0.33357240436832875, - "initial_eprice_ema_dist": 0.0029664910335944835, - "initial_qty_pct": 0.014488610093013306, - "markup_range": 0.005950923561543919, - "max_n_entry_orders": 7, - "min_markup": 0.0031910780148571255, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1420.9651479537285, - "auto_unstuck_ema_dist": -0.033631641830101304, - "auto_unstuck_qty_pct": 0.020401806530856124, - "auto_unstuck_wallet_exposure_threshold": 0.2938345281297234, - "backwards_tp": true, - "ema_span_0": 1011.4518973719919, - "ema_span_1": 798.0567764621785, - "enabled": true, - "eprice_exp_base": 1.0680920722213172, - "eqty_exp_base": 2.2829103749222863, - "grid_span": 0.14874815958874757, - "initial_eprice_ema_dist": -0.011196204261857148, - "initial_qty_pct": 0.017998783074008304, - "markup_range": 0.0074045251026196865, - "max_n_entry_orders": 9, - "min_markup": 0.005606728427408416, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ETCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ETCUSDT.json deleted file mode 100644 index f371f519b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ETCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 967.8704613384448, - "auto_unstuck_ema_dist": -0.00430860988089121, - "auto_unstuck_qty_pct": 0.03110114936351113, - "auto_unstuck_wallet_exposure_threshold": 0.3211902353219198, - "backwards_tp": true, - "ema_span_0": 1092.5619013698165, - "ema_span_1": 657.0811302336189, - "enabled": true, - "eprice_exp_base": 1.0929579684999111, - "eqty_exp_base": 1.1250604087209037, - "grid_span": 0.17813497022131788, - "initial_eprice_ema_dist": 0.002949091134383945, - "initial_qty_pct": 0.01675904385574124, - "markup_range": 0.003909823304475158, - "max_n_entry_orders": 8, - "min_markup": 0.004112467060262994, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 138.47510543401285, - "auto_unstuck_ema_dist": -0.026104083052092178, - "auto_unstuck_qty_pct": 0.09220308028194235, - "auto_unstuck_wallet_exposure_threshold": 0.8353909309746814, - "backwards_tp": true, - "ema_span_0": 1287.2764975454397, - "ema_span_1": 713.763901421996, - "enabled": true, - "eprice_exp_base": 1.0001961910938257, - "eqty_exp_base": 3.701393428040084, - "grid_span": 0.4597819350546342, - "initial_eprice_ema_dist": 0.0013891750965880102, - "initial_qty_pct": 0.010094487280677668, - "markup_range": 0.0009843307459434908, - "max_n_entry_orders": 15, - "min_markup": 0.009367326571610046, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ETHUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ETHUSDT.json deleted file mode 100644 index 9785f0d1f..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ETHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 782.9791769401899, - "auto_unstuck_ema_dist": -0.01631829754406139, - "auto_unstuck_qty_pct": 0.08578110917163687, - "auto_unstuck_wallet_exposure_threshold": 0.16017942058068646, - "backwards_tp": true, - "ema_span_0": 1383.5130472620283, - "ema_span_1": 1038.22061006456, - "enabled": true, - "eprice_exp_base": 1.1345376733987542, - "eqty_exp_base": 1.5761281915845626, - "grid_span": 0.20247241158592272, - "initial_eprice_ema_dist": 0.002145347483241353, - "initial_qty_pct": 0.029902442882305078, - "markup_range": 0.0015650957045315397, - "max_n_entry_orders": 8, - "min_markup": 0.004998401747637265, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FETUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FETUSDT.json deleted file mode 100644 index acb4bd0c5..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FETUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1355.2875103248457, - "auto_unstuck_ema_dist": -0.008303015950734117, - "auto_unstuck_qty_pct": 0.05681413200321959, - "auto_unstuck_wallet_exposure_threshold": 0.1499286208734416, - "backwards_tp": true, - "ema_span_0": 1382.1261218183522, - "ema_span_1": 1158.5376547521412, - "enabled": true, - "eprice_exp_base": 1.1318126502418175, - "eqty_exp_base": 1.6311457239187566, - "grid_span": 0.24259839158613666, - "initial_eprice_ema_dist": 0.0014199350053528952, - "initial_qty_pct": 0.022166956606350985, - "markup_range": 0.017489771113543367, - "max_n_entry_orders": 7, - "min_markup": 0.009872260411006953, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FILUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FILUSDT.json deleted file mode 100644 index 80bb9d258..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FILUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1002.9658285016852, - "auto_unstuck_ema_dist": -0.05935359505906345, - "auto_unstuck_qty_pct": 0.03380672181744747, - "auto_unstuck_wallet_exposure_threshold": 0.16495131918859002, - "backwards_tp": true, - "ema_span_0": 1147.7241193778289, - "ema_span_1": 1023.217884269015, - "enabled": true, - "eprice_exp_base": 1.1249618211145576, - "eqty_exp_base": 1.3664115469678304, - "grid_span": 0.31517738180169125, - "initial_eprice_ema_dist": 0.0006085875750619068, - "initial_qty_pct": 0.013738734898642255, - "markup_range": 0.007223720692487243, - "max_n_entry_orders": 8, - "min_markup": 0.008913557301915448, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1089.9424070062462, - "auto_unstuck_ema_dist": -0.0546171488383923, - "auto_unstuck_qty_pct": 0.015679270204671483, - "auto_unstuck_wallet_exposure_threshold": 0.34682621556395415, - "backwards_tp": true, - "ema_span_0": 800.962167599979, - "ema_span_1": 420.21515408590716, - "enabled": true, - "eprice_exp_base": 1.324275347204381, - "eqty_exp_base": 3.98726128341878, - "grid_span": 0.6149735254804691, - "initial_eprice_ema_dist": -0.05129865712512581, - "initial_qty_pct": 0.010800171728136727, - "markup_range": 0.004002323093867223, - "max_n_entry_orders": 7, - "min_markup": 0.0026934224119707167, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FLMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FLMUSDT.json deleted file mode 100644 index 7c4f50564..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FLMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1174.4957493303018, - "auto_unstuck_ema_dist": -0.03256348980375066, - "auto_unstuck_qty_pct": 0.017510348425941624, - "auto_unstuck_wallet_exposure_threshold": 0.7761913402202594, - "backwards_tp": true, - "ema_span_0": 934.7386114305474, - "ema_span_1": 1357.07877191991, - "enabled": true, - "eprice_exp_base": 1.0120865382439177, - "eqty_exp_base": 1.320710372420871, - "grid_span": 0.30224181950552237, - "initial_eprice_ema_dist": 0.00294606034102475, - "initial_qty_pct": 0.010089718048227872, - "markup_range": 0.005864151461505409, - "max_n_entry_orders": 7, - "min_markup": 0.009613517511271272, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 264.26201934921556, - "auto_unstuck_ema_dist": -0.045419403290970134, - "auto_unstuck_qty_pct": 0.027829888149491097, - "auto_unstuck_wallet_exposure_threshold": 0.561224270139381, - "backwards_tp": true, - "ema_span_0": 293.41660738618714, - "ema_span_1": 1113.5750210053407, - "enabled": true, - "eprice_exp_base": 1.1412186740157675, - "eqty_exp_base": 2.661130017127388, - "grid_span": 0.26119870785217125, - "initial_eprice_ema_dist": 0.00014754564789934709, - "initial_qty_pct": 0.010217450158926451, - "markup_range": 0.0038064673200988034, - "max_n_entry_orders": 9, - "min_markup": 0.005209972585646701, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FLOWUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FLOWUSDT.json deleted file mode 100644 index ed8b0f7de..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FLOWUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1264.832731300227, - "auto_unstuck_ema_dist": -0.08083792347406027, - "auto_unstuck_qty_pct": 0.012853547037121455, - "auto_unstuck_wallet_exposure_threshold": 0.5582109765618942, - "backwards_tp": true, - "ema_span_0": 541.567614510742, - "ema_span_1": 1078.5296328393224, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.0005819440698485, - "grid_span": 0.2711056474770498, - "initial_eprice_ema_dist": 0.002985660919622032, - "initial_qty_pct": 0.013813961403116136, - "markup_range": 0.0033777601558035272, - "max_n_entry_orders": 10, - "min_markup": 0.005815912498007505, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 713.0321204229263, - "auto_unstuck_ema_dist": -0.014542428369896438, - "auto_unstuck_qty_pct": 0.013907379781884778, - "auto_unstuck_wallet_exposure_threshold": 0.6530546433637955, - "backwards_tp": true, - "ema_span_0": 947.0580692722051, - "ema_span_1": 160.13035459440877, - "enabled": true, - "eprice_exp_base": 1.0644292630119851, - "eqty_exp_base": 3.1915918730418125, - "grid_span": 0.1703529192128918, - "initial_eprice_ema_dist": 0.002737828864714413, - "initial_qty_pct": 0.020398493957508514, - "markup_range": 0.0009027464686587076, - "max_n_entry_orders": 8, - "min_markup": 0.003561365224395573, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FOOTBALLUSDT.json deleted file mode 100644 index 5400b36f3..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FOOTBALLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 951.6955086786951, - "auto_unstuck_ema_dist": -0.07137516448869817, - "auto_unstuck_qty_pct": 0.020326564749976135, - "auto_unstuck_wallet_exposure_threshold": 0.2701196467410427, - "backwards_tp": true, - "ema_span_0": 1105.8818721298312, - "ema_span_1": 85.99574669401991, - "enabled": true, - "eprice_exp_base": 1.0875408007300245, - "eqty_exp_base": 1.5971164074390949, - "grid_span": 0.19837291249277844, - "initial_eprice_ema_dist": -0.003314071435444695, - "initial_qty_pct": 0.016860203452174927, - "markup_range": 0.007041195496302395, - "max_n_entry_orders": 12, - "min_markup": 0.0085676266259844, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FTMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FTMUSDT.json deleted file mode 100644 index c146cbb3b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FTMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1191.9376805124298, - "auto_unstuck_ema_dist": -0.04666759023120064, - "auto_unstuck_qty_pct": 0.025604195680093797, - "auto_unstuck_wallet_exposure_threshold": 0.11427989469841636, - "backwards_tp": true, - "ema_span_0": 1106.8853485441716, - "ema_span_1": 1282.3413453669114, - "enabled": true, - "eprice_exp_base": 1.1188993832540337, - "eqty_exp_base": 1.6403284940502747, - "grid_span": 0.20524786867276543, - "initial_eprice_ema_dist": -0.0001872882233756971, - "initial_qty_pct": 0.01041148150653652, - "markup_range": 0.004733650270081737, - "max_n_entry_orders": 9, - "min_markup": 0.00424140334471996, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.07721604836555436, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 855.3014672663251, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9325675741271633, - "grid_span": 0.40426618724098035, - "initial_eprice_ema_dist": -0.09990624975888267, - "initial_qty_pct": 0.01081428466330554, - "markup_range": 0.03846813248387199, - "max_n_entry_orders": 7, - "min_markup": 0.008983832397255243, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FTTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FTTUSDT.json deleted file mode 100644 index 95d7c0378..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FTTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.02286091412173781, - "auto_unstuck_qty_pct": 0.05294613268031142, - "auto_unstuck_wallet_exposure_threshold": 0.5981527780011692, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 446.689194968007, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.1342398129456943, - "grid_span": 0.3161911176055848, - "initial_eprice_ema_dist": -0.08437788549815588, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 7, - "min_markup": 0.004022617783718476, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/FXSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/FXSUSDT.json deleted file mode 100644 index 8f2a3f7b7..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/FXSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 793.2545239738062, - "auto_unstuck_ema_dist": -0.03896660901176437, - "auto_unstuck_qty_pct": 0.012361265284135729, - "auto_unstuck_wallet_exposure_threshold": 0.30548267749905744, - "backwards_tp": true, - "ema_span_0": 48.17216740380098, - "ema_span_1": 100.19106007147514, - "enabled": true, - "eprice_exp_base": 1.016964250898853, - "eqty_exp_base": 1.194015840439302, - "grid_span": 0.18696681323417724, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010004776049590054, - "markup_range": 0.001662490677103238, - "max_n_entry_orders": 9, - "min_markup": 0.0024005439540925057, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1171.8660327078721, - "auto_unstuck_ema_dist": 0.0010404359098154367, - "auto_unstuck_qty_pct": 0.03744987471117407, - "auto_unstuck_wallet_exposure_threshold": 0.28900607896078573, - "backwards_tp": true, - "ema_span_0": 1439.9879454262705, - "ema_span_1": 1219.8504923696867, - "enabled": true, - "eprice_exp_base": 1.1366278697386527, - "eqty_exp_base": 3.776143260983698, - "grid_span": 0.14105408675979655, - "initial_eprice_ema_dist": -0.0035661931599020873, - "initial_qty_pct": 0.012631971453531747, - "markup_range": 0.010597028703543954, - "max_n_entry_orders": 9, - "min_markup": 0.003366953304513386, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/GALAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/GALAUSDT.json deleted file mode 100644 index 17ec7bdbf..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/GALAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1135.46454192025, - "auto_unstuck_ema_dist": -0.06587824392838008, - "auto_unstuck_qty_pct": 0.01356353263633491, - "auto_unstuck_wallet_exposure_threshold": 0.3545489547873088, - "backwards_tp": true, - "ema_span_0": 1225.2479453609458, - "ema_span_1": 1349.5254073759738, - "enabled": true, - "eprice_exp_base": 1.0975612623974529, - "eqty_exp_base": 1.5437821851581397, - "grid_span": 0.12545373380459213, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01154767555541769, - "markup_range": 0.00217431853280921, - "max_n_entry_orders": 7, - "min_markup": 0.00356435706764924, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120.05151685289162, - "auto_unstuck_ema_dist": -0.024302861255972738, - "auto_unstuck_qty_pct": 0.09996020642807883, - "auto_unstuck_wallet_exposure_threshold": 0.6614399788822214, - "backwards_tp": true, - "ema_span_0": 672.0510454369827, - "ema_span_1": 581.0490056625814, - "enabled": true, - "eprice_exp_base": 3.9189537291466325, - "eqty_exp_base": 3.5607240998697454, - "grid_span": 0.2187355683152664, - "initial_eprice_ema_dist": -0.03333413749636294, - "initial_qty_pct": 0.049794685322143, - "markup_range": 0.00015668206388190647, - "max_n_entry_orders": 22, - "min_markup": 0.00980532666312382, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/GALUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/GALUSDT.json deleted file mode 100644 index edc032c6d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/GALUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 940.7086792703731, - "auto_unstuck_ema_dist": -0.012553165246576976, - "auto_unstuck_qty_pct": 0.010606737881831715, - "auto_unstuck_wallet_exposure_threshold": 0.5847722602633316, - "backwards_tp": true, - "ema_span_0": 1032.9566457789674, - "ema_span_1": 674.492002347481, - "enabled": true, - "eprice_exp_base": 1.2532029517002135, - "eqty_exp_base": 1.861661092822006, - "grid_span": 0.14547769704201155, - "initial_eprice_ema_dist": 0.0016977577963831925, - "initial_qty_pct": 0.012861450076037595, - "markup_range": 0.009143037000504861, - "max_n_entry_orders": 10, - "min_markup": 0.0046727910491455756, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/GMTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/GMTUSDT.json deleted file mode 100644 index 6239598ac..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/GMTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 917.5005388053205, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.1, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 753.085436080835, - "ema_span_1": 410.2261700007641, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.2686391099221507, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0035955035591588164, - "max_n_entry_orders": 12, - "min_markup": 0.01, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 275.28027185718696, - "auto_unstuck_ema_dist": -0.02770252622093565, - "auto_unstuck_qty_pct": 0.03149305948105737, - "auto_unstuck_wallet_exposure_threshold": 0.7416458147025765, - "backwards_tp": true, - "ema_span_0": 621.7548270700279, - "ema_span_1": 376.44762008741236, - "enabled": true, - "eprice_exp_base": 1.247889274832765, - "eqty_exp_base": 2.5447160506996163, - "grid_span": 0.3660551041696586, - "initial_eprice_ema_dist": -0.05567451772828595, - "initial_qty_pct": 0.036289003556131356, - "markup_range": 0.034537591927797484, - "max_n_entry_orders": 11, - "min_markup": 0.009021577101001613, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/GMXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/GMXUSDT.json deleted file mode 100644 index d1298e9d9..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/GMXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1131.0015267851397, - "auto_unstuck_ema_dist": -0.01859596413323666, - "auto_unstuck_qty_pct": 0.02595210471203942, - "auto_unstuck_wallet_exposure_threshold": 0.2623799879648312, - "backwards_tp": true, - "ema_span_0": 899.0026815371901, - "ema_span_1": 1125.307982244615, - "enabled": true, - "eprice_exp_base": 1.0541779740942405, - "eqty_exp_base": 2.5720941056223525, - "grid_span": 0.174508531856097, - "initial_eprice_ema_dist": -0.0015518626326071123, - "initial_qty_pct": 0.011270553964198814, - "markup_range": 0.01243371291639932, - "max_n_entry_orders": 8, - "min_markup": 0.009263338040545684, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1001.7030082245074, - "auto_unstuck_ema_dist": 0.0028531406753069194, - "auto_unstuck_qty_pct": 0.01001281808926318, - "auto_unstuck_wallet_exposure_threshold": 0.2547324941646131, - "backwards_tp": true, - "ema_span_0": 521.5320708307191, - "ema_span_1": 816.2784461391484, - "enabled": true, - "eprice_exp_base": 1.0700039340495753, - "eqty_exp_base": 2.76745883879376, - "grid_span": 0.14137276698452633, - "initial_eprice_ema_dist": -0.005176577977884642, - "initial_qty_pct": 0.011323622492658574, - "markup_range": 0.005212070894250841, - "max_n_entry_orders": 9, - "min_markup": 0.007306767380411044, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/GRTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/GRTUSDT.json deleted file mode 100644 index 7b266ee9b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/GRTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 993.7814307498402, - "auto_unstuck_ema_dist": -0.007734310682095207, - "auto_unstuck_qty_pct": 0.02536329029066099, - "auto_unstuck_wallet_exposure_threshold": 0.7035050857482972, - "backwards_tp": true, - "ema_span_0": 1108.2301634741325, - "ema_span_1": 719.7077806417232, - "enabled": true, - "eprice_exp_base": 1.2088101381396004, - "eqty_exp_base": 1, - "grid_span": 0.34931722625222184, - "initial_eprice_ema_dist": -0.001910275836387482, - "initial_qty_pct": 0.020813780098028922, - "markup_range": 0.007043133330542731, - "max_n_entry_orders": 7, - "min_markup": 0.005247763058916779, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1199.575986513761, - "auto_unstuck_ema_dist": -0.0276807668538851, - "auto_unstuck_qty_pct": 0.014194895762101853, - "auto_unstuck_wallet_exposure_threshold": 0.23779680841281398, - "backwards_tp": true, - "ema_span_0": 1435.7339050305416, - "ema_span_1": 1001.660962550113, - "enabled": true, - "eprice_exp_base": 1.0935525759003504, - "eqty_exp_base": 2.194831874580071, - "grid_span": 0.22341365787785836, - "initial_eprice_ema_dist": -0.00564141388955288, - "initial_qty_pct": 0.029417261203643512, - "markup_range": 0.00505651513183205, - "max_n_entry_orders": 11, - "min_markup": 0.004408394558572047, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/GTCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/GTCUSDT.json deleted file mode 100644 index 6699fade4..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/GTCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1057.6434554871973, - "auto_unstuck_ema_dist": -0.014018081931226419, - "auto_unstuck_qty_pct": 0.01818691951214562, - "auto_unstuck_wallet_exposure_threshold": 0.35139843083476147, - "backwards_tp": true, - "ema_span_0": 652.6143536383398, - "ema_span_1": 684.3061447721808, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.8581165194113476, - "grid_span": 0.24821349450868252, - "initial_eprice_ema_dist": 0.0016669785464808304, - "initial_qty_pct": 0.012009839305748699, - "markup_range": 0.004852455969870381, - "max_n_entry_orders": 19, - "min_markup": 0.0037411140903547656, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/HBARUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/HBARUSDT.json deleted file mode 100644 index 951700b4a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/HBARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 520.3285904559001, - "auto_unstuck_ema_dist": -0.017174109942522626, - "auto_unstuck_qty_pct": 0.07810375032195041, - "auto_unstuck_wallet_exposure_threshold": 0.3240180166266071, - "backwards_tp": true, - "ema_span_0": 968.8584219537111, - "ema_span_1": 972.4746626778939, - "enabled": true, - "eprice_exp_base": 1.1731663758816118, - "eqty_exp_base": 2.2763816726503254, - "grid_span": 0.11871965205016287, - "initial_eprice_ema_dist": -0.0002491323917988226, - "initial_qty_pct": 0.011407671746307885, - "markup_range": 0.007093503414663383, - "max_n_entry_orders": 8, - "min_markup": 0.00675592571088514, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1398.1525462310153, - "auto_unstuck_ema_dist": -0.029975974725643426, - "auto_unstuck_qty_pct": 0.011312341289538945, - "auto_unstuck_wallet_exposure_threshold": 0.24742620321144482, - "backwards_tp": true, - "ema_span_0": 1142.2176615574115, - "ema_span_1": 753.5256060724964, - "enabled": true, - "eprice_exp_base": 1.000596610216215, - "eqty_exp_base": 3.9532798031157883, - "grid_span": 0.2249462824965027, - "initial_eprice_ema_dist": -0.0018513129277423425, - "initial_qty_pct": 0.024901484513101063, - "markup_range": 0.0063956741841867445, - "max_n_entry_orders": 16, - "min_markup": 0.00949384168492085, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/HFTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/HFTUSDT.json deleted file mode 100644 index 8db11410b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/HFTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 724.9952620857599, - "auto_unstuck_ema_dist": -0.009412852770201562, - "auto_unstuck_qty_pct": 0.013710698282969577, - "auto_unstuck_wallet_exposure_threshold": 0.19993580440002118, - "backwards_tp": true, - "ema_span_0": 1021.063058531578, - "ema_span_1": 1427.5059348230843, - "enabled": true, - "eprice_exp_base": 1.1709333618683002, - "eqty_exp_base": 1.2727312289052846, - "grid_span": 0.16615323718905609, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01819571321711823, - "markup_range": 0.004992543479838617, - "max_n_entry_orders": 7, - "min_markup": 0.0038858885051931296, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/HIGHUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/HIGHUSDT.json deleted file mode 100644 index 77d6eca88..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/HIGHUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1131.0015267851397, - "auto_unstuck_ema_dist": -0.01859596413323666, - "auto_unstuck_qty_pct": 0.02595210471203942, - "auto_unstuck_wallet_exposure_threshold": 0.2623799879648312, - "backwards_tp": true, - "ema_span_0": 899.0026815371901, - "ema_span_1": 1125.307982244615, - "enabled": true, - "eprice_exp_base": 1.0541779740942405, - "eqty_exp_base": 2.5720941056223525, - "grid_span": 0.174508531856097, - "initial_eprice_ema_dist": -0.0015518626326071123, - "initial_qty_pct": 0.011270553964198814, - "markup_range": 0.01243371291639932, - "max_n_entry_orders": 8, - "min_markup": 0.009263338040545684, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1204.4388668800677, - "auto_unstuck_ema_dist": -0.07312660865417604, - "auto_unstuck_qty_pct": 0.09093957209613962, - "auto_unstuck_wallet_exposure_threshold": 0.2712652223013797, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.24351707826763674, - "initial_eprice_ema_dist": -0.008745084054168847, - "initial_qty_pct": 0.03173495679723363, - "markup_range": 0.011681196671586201, - "max_n_entry_orders": 19, - "min_markup": 0.002538621370916175, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/HNTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/HNTUSDT.json deleted file mode 100644 index 5d9e0023e..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/HNTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1418.6562462352065, - "auto_unstuck_ema_dist": -0.010470212167376786, - "auto_unstuck_qty_pct": 0.01415059629736314, - "auto_unstuck_wallet_exposure_threshold": 0.11782315379780525, - "backwards_tp": true, - "ema_span_0": 1164.6212365288327, - "ema_span_1": 105.65666924479203, - "enabled": true, - "eprice_exp_base": 1.0109543575180266, - "eqty_exp_base": 1.0364562994716724, - "grid_span": 0.14634275259638022, - "initial_eprice_ema_dist": 0.002998965557466333, - "initial_qty_pct": 0.014359937543700914, - "markup_range": 0.0004219128490180443, - "max_n_entry_orders": 7, - "min_markup": 0.0014767028993130347, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/HOOKUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/HOOKUSDT.json deleted file mode 100644 index de9d8f8a9..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/HOOKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 943.60209581509, - "auto_unstuck_ema_dist": -0.01263026083130537, - "auto_unstuck_qty_pct": 0.039372718038203386, - "auto_unstuck_wallet_exposure_threshold": 0.6815375874327977, - "backwards_tp": true, - "ema_span_0": 321.69754508505173, - "ema_span_1": 498.1474333283621, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.4632073698606816, - "grid_span": 0.14643215943134671, - "initial_eprice_ema_dist": -0.004652328568934448, - "initial_qty_pct": 0.011784602775104874, - "markup_range": 0.0024085386532988005, - "max_n_entry_orders": 7, - "min_markup": 0.004997300530726923, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 555.2890801754734, - "auto_unstuck_ema_dist": -0.07293895802371184, - "auto_unstuck_qty_pct": 0.01977198337138484, - "auto_unstuck_wallet_exposure_threshold": 0.22252193349806754, - "backwards_tp": true, - "ema_span_0": 1395.4537934484572, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 4, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.07416768238390478, - "initial_qty_pct": 0.020330420387724427, - "markup_range": 0.0, - "max_n_entry_orders": 7, - "min_markup": 0.007165392989951001, - "n_close_orders": 14, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/HOTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/HOTUSDT.json deleted file mode 100644 index 3e1110ab6..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/HOTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 724.9952620857599, - "auto_unstuck_ema_dist": -0.009412852770201562, - "auto_unstuck_qty_pct": 0.013710698282969577, - "auto_unstuck_wallet_exposure_threshold": 0.19993580440002118, - "backwards_tp": true, - "ema_span_0": 1021.063058531578, - "ema_span_1": 1427.5059348230843, - "enabled": true, - "eprice_exp_base": 1.1709333618683002, - "eqty_exp_base": 1.2727312289052846, - "grid_span": 0.16615323718905609, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01819571321711823, - "markup_range": 0.004992543479838617, - "max_n_entry_orders": 7, - "min_markup": 0.0038858885051931296, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 779.4937631903803, - "auto_unstuck_ema_dist": -0.09059141530018994, - "auto_unstuck_qty_pct": 0.030190248656495958, - "auto_unstuck_wallet_exposure_threshold": 0.16656753914639674, - "backwards_tp": true, - "ema_span_0": 560.5725837372815, - "ema_span_1": 682.643601180339, - "enabled": true, - "eprice_exp_base": 1.2343150273880885, - "eqty_exp_base": 3.7828761721681, - "grid_span": 0.1824047658902641, - "initial_eprice_ema_dist": 0.002946770070514348, - "initial_qty_pct": 0.021382527309153382, - "markup_range": 0.0032343642961400864, - "max_n_entry_orders": 15, - "min_markup": 0.004032169043735039, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ICPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ICPUSDT.json deleted file mode 100644 index 48f619dc8..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ICPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 520.3285904559001, - "auto_unstuck_ema_dist": -0.017174109942522626, - "auto_unstuck_qty_pct": 0.07810375032195041, - "auto_unstuck_wallet_exposure_threshold": 0.3240180166266071, - "backwards_tp": true, - "ema_span_0": 968.8584219537111, - "ema_span_1": 972.4746626778939, - "enabled": true, - "eprice_exp_base": 1.1731663758816118, - "eqty_exp_base": 2.2763816726503254, - "grid_span": 0.11871965205016287, - "initial_eprice_ema_dist": -0.0002491323917988226, - "initial_qty_pct": 0.011407671746307885, - "markup_range": 0.007093503414663383, - "max_n_entry_orders": 8, - "min_markup": 0.00675592571088514, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1034.5591778608916, - "auto_unstuck_ema_dist": 0.002632971785857589, - "auto_unstuck_qty_pct": 0.010288601427811163, - "auto_unstuck_wallet_exposure_threshold": 0.3646283137875909, - "backwards_tp": true, - "ema_span_0": 1429.7196272807514, - "ema_span_1": 1012.6362684123183, - "enabled": true, - "eprice_exp_base": 1.0813619357542266, - "eqty_exp_base": 3.8613910841788557, - "grid_span": 0.13278949373095877, - "initial_eprice_ema_dist": -0.00014197257902766626, - "initial_qty_pct": 0.013472704427205835, - "markup_range": 0.002532548146178754, - "max_n_entry_orders": 20, - "min_markup": 0.005542276301552574, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ICXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ICXUSDT.json deleted file mode 100644 index ebdc071a8..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ICXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 932.6936614762748, - "auto_unstuck_ema_dist": -0.0022068367641807003, - "auto_unstuck_qty_pct": 0.031561909779797725, - "auto_unstuck_wallet_exposure_threshold": 0.21088880117665507, - "backwards_tp": true, - "ema_span_0": 1160.0756170937466, - "ema_span_1": 499.7704731950717, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.7143635124360037, - "grid_span": 0.1801840651757321, - "initial_eprice_ema_dist": -0.09035058698903646, - "initial_qty_pct": 0.014004352067500675, - "markup_range": 0.004422848962103539, - "max_n_entry_orders": 7, - "min_markup": 0.003728281951521848, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1296.9660916655898, - "auto_unstuck_ema_dist": -0.042664004869814434, - "auto_unstuck_qty_pct": 0.012717437621565159, - "auto_unstuck_wallet_exposure_threshold": 0.3561914480916979, - "backwards_tp": true, - "ema_span_0": 1418.135517832663, - "ema_span_1": 687.2274439912106, - "enabled": true, - "eprice_exp_base": 1.2685537118987047, - "eqty_exp_base": 2.1869685432452752, - "grid_span": 0.3794829787187984, - "initial_eprice_ema_dist": 0.0028217730392271507, - "initial_qty_pct": 0.012710689140986189, - "markup_range": 0.011973077754570887, - "max_n_entry_orders": 8, - "min_markup": 0.00493091028059845, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/IDEXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/IDEXUSDT.json deleted file mode 100644 index e6e28f666..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/IDEXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/IDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/IDUSDT.json deleted file mode 100644 index 0220cf2b0..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/IDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1203.8669731206446, - "auto_unstuck_ema_dist": -0.016592549800585298, - "auto_unstuck_qty_pct": 0.011263975044920344, - "auto_unstuck_wallet_exposure_threshold": 0.6828830369034644, - "backwards_tp": true, - "ema_span_0": 727.1286002388728, - "ema_span_1": 540.536808070503, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.17668403722596, - "grid_span": 0.17708368499205168, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015593617823153142, - "markup_range": 0.0012786222171817733, - "max_n_entry_orders": 9, - "min_markup": 0.0027267389757224285, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.6807818207787, - "auto_unstuck_ema_dist": -0.006778335727737885, - "auto_unstuck_qty_pct": 0.014087701589334754, - "auto_unstuck_wallet_exposure_threshold": 0.13123791548024152, - "backwards_tp": true, - "ema_span_0": 1227.3728686012935, - "ema_span_1": 1129.9829631455764, - "enabled": true, - "eprice_exp_base": 1.0788617301729184, - "eqty_exp_base": 2.8442772777773904, - "grid_span": 0.17214574961987536, - "initial_eprice_ema_dist": -0.0008494689085988029, - "initial_qty_pct": 0.010347078653780381, - "markup_range": 0.002123747989666032, - "max_n_entry_orders": 8, - "min_markup": 0.008717136677346285, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/IMXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/IMXUSDT.json deleted file mode 100644 index 68641fb83..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/IMXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1135.46454192025, - "auto_unstuck_ema_dist": -0.06587824392838008, - "auto_unstuck_qty_pct": 0.01356353263633491, - "auto_unstuck_wallet_exposure_threshold": 0.3545489547873088, - "backwards_tp": true, - "ema_span_0": 1225.2479453609458, - "ema_span_1": 1349.5254073759738, - "enabled": true, - "eprice_exp_base": 1.0975612623974529, - "eqty_exp_base": 1.5437821851581397, - "grid_span": 0.12545373380459213, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01154767555541769, - "markup_range": 0.00217431853280921, - "max_n_entry_orders": 7, - "min_markup": 0.00356435706764924, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1305.9811457523685, - "auto_unstuck_ema_dist": -0.005861165299878759, - "auto_unstuck_qty_pct": 0.012015542867868455, - "auto_unstuck_wallet_exposure_threshold": 0.44586889725404605, - "backwards_tp": true, - "ema_span_0": 991.4568366209204, - "ema_span_1": 1309.0497677663054, - "enabled": true, - "eprice_exp_base": 1.1651164724458916, - "eqty_exp_base": 1.1535807603256603, - "grid_span": 0.3526192529617525, - "initial_eprice_ema_dist": 0.00296888048248019, - "initial_qty_pct": 0.016646987190141842, - "markup_range": 0.003491034485625458, - "max_n_entry_orders": 7, - "min_markup": 0.006820783791583923, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/INJUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/INJUSDT.json deleted file mode 100644 index 4d26903a2..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/INJUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1417.5595161289157, - "auto_unstuck_ema_dist": -0.034328822169178735, - "auto_unstuck_qty_pct": 0.04196890107888902, - "auto_unstuck_wallet_exposure_threshold": 0.15702577867185727, - "backwards_tp": true, - "ema_span_0": 699.9315721565192, - "ema_span_1": 97.24843819473062, - "enabled": true, - "eprice_exp_base": 1.000000113879665, - "eqty_exp_base": 1.4543933682296195, - "grid_span": 0.18293760608303983, - "initial_eprice_ema_dist": 0.0017019501975442835, - "initial_qty_pct": 0.017471325290169197, - "markup_range": 0.007100615368681533, - "max_n_entry_orders": 9, - "min_markup": 0.009480804499218239, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0500150211110256, - "auto_unstuck_qty_pct": 0.011934357993227224, - "auto_unstuck_wallet_exposure_threshold": 0.5456342074520889, - "backwards_tp": true, - "ema_span_0": 1340.9912942813796, - "ema_span_1": 1325.815993595614, - "enabled": true, - "eprice_exp_base": 1.010201287616513, - "eqty_exp_base": 2.8993618137479764, - "grid_span": 0.1605333319858612, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 20, - "min_markup": 0.008824619416875382, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/IOSTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/IOSTUSDT.json deleted file mode 100644 index 0dd450ecc..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/IOSTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1378.7780069655125, - "auto_unstuck_ema_dist": -0.0010437234686020854, - "auto_unstuck_qty_pct": 0.018251685020392195, - "auto_unstuck_wallet_exposure_threshold": 0.41206295679037963, - "backwards_tp": true, - "ema_span_0": 291.7228473884728, - "ema_span_1": 1013.4048788329329, - "enabled": true, - "eprice_exp_base": 1.0024463023686172, - "eqty_exp_base": 2.1375804205399946, - "grid_span": 0.1889016438886915, - "initial_eprice_ema_dist": -0.005319902898512875, - "initial_qty_pct": 0.011472895466656714, - "markup_range": 0.007540656271550558, - "max_n_entry_orders": 9, - "min_markup": 0.007965667917701006, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1363.1484006800329, - "auto_unstuck_ema_dist": -0.0519833636630822, - "auto_unstuck_qty_pct": 0.024727198133860276, - "auto_unstuck_wallet_exposure_threshold": 0.10486588866338392, - "backwards_tp": true, - "ema_span_0": 104.77950224569675, - "ema_span_1": 799.4052154797295, - "enabled": true, - "eprice_exp_base": 1.0271631877746854, - "eqty_exp_base": 2.310501608272923, - "grid_span": 0.20915577782013944, - "initial_eprice_ema_dist": -0.004087835487450017, - "initial_qty_pct": 0.016086983449732032, - "markup_range": 0.0053146317369995345, - "max_n_entry_orders": 13, - "min_markup": 0.0036103243038598373, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/IOTAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/IOTAUSDT.json deleted file mode 100644 index 7caa344ee..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/IOTAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1429.9960687787907, - "auto_unstuck_ema_dist": -0.010876893610750043, - "auto_unstuck_qty_pct": 0.03006173740529355, - "auto_unstuck_wallet_exposure_threshold": 0.4688702152609151, - "backwards_tp": true, - "ema_span_0": 859.2104555917342, - "ema_span_1": 1121.9949004432735, - "enabled": true, - "eprice_exp_base": 1.1855931871173997, - "eqty_exp_base": 1.2886118101427118, - "grid_span": 0.31075278524573635, - "initial_eprice_ema_dist": -0.0016236947865644338, - "initial_qty_pct": 0.010088745870886508, - "markup_range": 0.008856749392229633, - "max_n_entry_orders": 9, - "min_markup": 0.0017905221055597282, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.2186661925077, - "auto_unstuck_ema_dist": -0.0934750257166494, - "auto_unstuck_qty_pct": 0.03224513039791049, - "auto_unstuck_wallet_exposure_threshold": 0.15770154600814495, - "backwards_tp": true, - "ema_span_0": 1349.2901787249195, - "ema_span_1": 1070.06420992335, - "enabled": true, - "eprice_exp_base": 1.296171087672084, - "eqty_exp_base": 3.9822375184209213, - "grid_span": 0.10851564083207263, - "initial_eprice_ema_dist": 0.00044471489783528395, - "initial_qty_pct": 0.012984863540821682, - "markup_range": 0.003038702058401756, - "max_n_entry_orders": 7, - "min_markup": 0.0039073711030456265, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/IOTXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/IOTXUSDT.json deleted file mode 100644 index b00ccf390..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/IOTXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1220.1693190259343, - "auto_unstuck_ema_dist": -0.055848604265624165, - "auto_unstuck_qty_pct": 0.01663793130176452, - "auto_unstuck_wallet_exposure_threshold": 0.22320529412018741, - "backwards_tp": true, - "ema_span_0": 1034.768989555157, - "ema_span_1": 645.9178238852667, - "enabled": true, - "eprice_exp_base": 1.0264132632197753, - "eqty_exp_base": 1.5947127337419398, - "grid_span": 0.3243406544149025, - "initial_eprice_ema_dist": -0.0008614015973919106, - "initial_qty_pct": 0.01345951019188534, - "markup_range": 0.0060631363436918564, - "max_n_entry_orders": 9, - "min_markup": 0.00693012419765506, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.4411702489633, - "auto_unstuck_ema_dist": -0.004617109849520608, - "auto_unstuck_qty_pct": 0.01648366731345862, - "auto_unstuck_wallet_exposure_threshold": 0.7094846767314997, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1438.151047326744, - "enabled": true, - "eprice_exp_base": 1.2439694930330072, - "eqty_exp_base": 1.231452107109689, - "grid_span": 0.4365969496517578, - "initial_eprice_ema_dist": -0.0019017444320947494, - "initial_qty_pct": 0.01, - "markup_range": 0.003842107206680762, - "max_n_entry_orders": 9, - "min_markup": 0.001638247139852082, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/JASMYUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/JASMYUSDT.json deleted file mode 100644 index 2575ace3c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/JASMYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 777.1446894871469, - "auto_unstuck_ema_dist": -0.07634652922708725, - "auto_unstuck_qty_pct": 0.05015558321629691, - "auto_unstuck_wallet_exposure_threshold": 0.3916111139946495, - "backwards_tp": true, - "ema_span_0": 1181.3441795167764, - "ema_span_1": 941.512749685682, - "enabled": true, - "eprice_exp_base": 1.1088473775036012, - "eqty_exp_base": 1.6297775418124265, - "grid_span": 0.25460237376135436, - "initial_eprice_ema_dist": 0.002950809528467142, - "initial_qty_pct": 0.011109927320126365, - "markup_range": 0.006998691376285849, - "max_n_entry_orders": 8, - "min_markup": 0.008615916545048294, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 779.4937631903803, - "auto_unstuck_ema_dist": -0.09059141530018994, - "auto_unstuck_qty_pct": 0.030190248656495958, - "auto_unstuck_wallet_exposure_threshold": 0.16656753914639674, - "backwards_tp": true, - "ema_span_0": 560.5725837372815, - "ema_span_1": 682.643601180339, - "enabled": true, - "eprice_exp_base": 1.2343150273880885, - "eqty_exp_base": 3.7828761721681, - "grid_span": 0.1824047658902641, - "initial_eprice_ema_dist": 0.002946770070514348, - "initial_qty_pct": 0.021382527309153382, - "markup_range": 0.0032343642961400864, - "max_n_entry_orders": 15, - "min_markup": 0.004032169043735039, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/JOEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/JOEUSDT.json deleted file mode 100644 index eea71511b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/JOEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1154.1234213866198, - "auto_unstuck_ema_dist": -0.09890884061065909, - "auto_unstuck_qty_pct": 0.018277489664642724, - "auto_unstuck_wallet_exposure_threshold": 0.6500138558074183, - "backwards_tp": true, - "ema_span_0": 13.535331207723727, - "ema_span_1": 112.52103206000228, - "enabled": true, - "eprice_exp_base": 1.0208462694847291, - "eqty_exp_base": 1.6589580057392717, - "grid_span": 0.22744709686663722, - "initial_eprice_ema_dist": -0.09418562138219089, - "initial_qty_pct": 0.010583088683055748, - "markup_range": 0.0012264937554110399, - "max_n_entry_orders": 10, - "min_markup": 0.0047886653841788, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1045.2223878600516, - "auto_unstuck_ema_dist": -0.016983026957580055, - "auto_unstuck_qty_pct": 0.024148208283841528, - "auto_unstuck_wallet_exposure_threshold": 0.24006580640445715, - "backwards_tp": true, - "ema_span_0": 1350.9493403857823, - "ema_span_1": 340.6390300857008, - "enabled": true, - "eprice_exp_base": 1.1234393014040378, - "eqty_exp_base": 1.0751630761054183, - "grid_span": 0.2490562513113308, - "initial_eprice_ema_dist": 0.0017677669683755432, - "initial_qty_pct": 0.028104357828053206, - "markup_range": 0.0013200009906924105, - "max_n_entry_orders": 10, - "min_markup": 0.003998932575209124, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/KAVAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/KAVAUSDT.json deleted file mode 100644 index 1a06c80e3..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/KAVAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 512.954485856899, - "auto_unstuck_ema_dist": -0.08738533939626417, - "auto_unstuck_qty_pct": 0.01331698727142276, - "auto_unstuck_wallet_exposure_threshold": 0.5814864212751013, - "backwards_tp": true, - "ema_span_0": 1285.8326819362887, - "ema_span_1": 808.0766027268156, - "enabled": true, - "eprice_exp_base": 1.1379840578411964, - "eqty_exp_base": 2.9356354906253888, - "grid_span": 0.18091340932610026, - "initial_eprice_ema_dist": -0.012270926754001607, - "initial_qty_pct": 0.010370313894364628, - "markup_range": 0.002659678503765652, - "max_n_entry_orders": 7, - "min_markup": 0.0018911284968429482, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1087.918278405081, - "auto_unstuck_ema_dist": -0.027043888648334, - "auto_unstuck_qty_pct": 0.03375515986910375, - "auto_unstuck_wallet_exposure_threshold": 0.6042762388386761, - "backwards_tp": true, - "ema_span_0": 794.4188659226062, - "ema_span_1": 1426.1383128230468, - "enabled": true, - "eprice_exp_base": 1.0791309388271877, - "eqty_exp_base": 2.078539222948288, - "grid_span": 0.1776285664620104, - "initial_eprice_ema_dist": 0.002858737747834197, - "initial_qty_pct": 0.011566253203613751, - "markup_range": 0.0027631650111260534, - "max_n_entry_orders": 18, - "min_markup": 0.005760956522588204, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/KEYUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/KEYUSDT.json deleted file mode 100644 index dbf8175f1..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/KEYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1148.7575947594983, - "auto_unstuck_ema_dist": -0.06610522537199073, - "auto_unstuck_qty_pct": 0.010165215395132595, - "auto_unstuck_wallet_exposure_threshold": 0.3873247866501045, - "backwards_tp": true, - "ema_span_0": 1227.9019518904095, - "ema_span_1": 1349.2435607355044, - "enabled": true, - "eprice_exp_base": 1.0961280971510308, - "eqty_exp_base": 1.5404861920168187, - "grid_span": 0.1246561754214835, - "initial_eprice_ema_dist": 0.002999804308312542, - "initial_qty_pct": 0.012390499644160674, - "markup_range": 0.0022193519972044684, - "max_n_entry_orders": 7, - "min_markup": 0.003874867616229977, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/KLAYUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/KLAYUSDT.json deleted file mode 100644 index fb1f3affe..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/KLAYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.2905479141502476, - "backwards_tp": true, - "ema_span_0": 931.4041694219899, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.3761847176671513, - "eqty_exp_base": 2.132502028354876, - "grid_span": 0.6622044553047347, - "initial_eprice_ema_dist": 0.0024248782540984186, - "initial_qty_pct": 0.01615306040988704, - "markup_range": 0.003463220972520802, - "max_n_entry_orders": 7, - "min_markup": 0.003055473934642894, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/KNCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/KNCUSDT.json deleted file mode 100644 index b41ebdd43..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/KNCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1069.392559125375, - "auto_unstuck_ema_dist": -0.02369886906616583, - "auto_unstuck_qty_pct": 0.019329840462568804, - "auto_unstuck_wallet_exposure_threshold": 0.6162101433864365, - "backwards_tp": true, - "ema_span_0": 207.17453893256098, - "ema_span_1": 621.0453123325007, - "enabled": true, - "eprice_exp_base": 1.00451208810696, - "eqty_exp_base": 1.1035163604742755, - "grid_span": 0.3608650895607671, - "initial_eprice_ema_dist": -0.013066511667789046, - "initial_qty_pct": 0.01799802931681483, - "markup_range": 0.005598321514583823, - "max_n_entry_orders": 10, - "min_markup": 0.0021920001637890625, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1334.0696887181232, - "auto_unstuck_ema_dist": -0.07603938102661957, - "auto_unstuck_qty_pct": 0.010451892814636345, - "auto_unstuck_wallet_exposure_threshold": 0.30435168099502685, - "backwards_tp": true, - "ema_span_0": 232.7977815638877, - "ema_span_1": 1359.0008275759155, - "enabled": true, - "eprice_exp_base": 1.121395758687441, - "eqty_exp_base": 3.2139626296609913, - "grid_span": 0.2556186548084009, - "initial_eprice_ema_dist": -0.029730899198141116, - "initial_qty_pct": 0.011665182678648023, - "markup_range": 0.005926084601293969, - "max_n_entry_orders": 8, - "min_markup": 0.0070433485346675, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/KSMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/KSMUSDT.json deleted file mode 100644 index 002820b54..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/KSMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 982.7793591491029, - "auto_unstuck_ema_dist": -0.0030660710714153546, - "auto_unstuck_qty_pct": 0.029568132996320277, - "auto_unstuck_wallet_exposure_threshold": 0.42052320736224147, - "backwards_tp": true, - "ema_span_0": 1256.7413865043804, - "ema_span_1": 1265.8176168616012, - "enabled": true, - "eprice_exp_base": 1.01303934718743, - "eqty_exp_base": 1.2060824182396326, - "grid_span": 0.2831628318492642, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.016412578877153586, - "markup_range": 0.006494568460497011, - "max_n_entry_orders": 8, - "min_markup": 0.004996722435555396, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 734.9719818066914, - "auto_unstuck_ema_dist": -0.005700200867316928, - "auto_unstuck_qty_pct": 0.010665068203659252, - "auto_unstuck_wallet_exposure_threshold": 0.1188655867113104, - "backwards_tp": true, - "ema_span_0": 801.2396258279347, - "ema_span_1": 931.1226508526872, - "enabled": true, - "eprice_exp_base": 1.2058742350073306, - "eqty_exp_base": 1.0185098252025484, - "grid_span": 0.39223065231950954, - "initial_eprice_ema_dist": -0.0018566757036934493, - "initial_qty_pct": 0.012261107756313288, - "markup_range": 0.0020256734711034535, - "max_n_entry_orders": 11, - "min_markup": 0.004613261969487121, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LDOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LDOUSDT.json deleted file mode 100644 index 858ccab64..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LDOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.31238137175, - "auto_unstuck_ema_dist": -0.015119024911923571, - "auto_unstuck_qty_pct": 0.08039112000641081, - "auto_unstuck_wallet_exposure_threshold": 0.5758136613539955, - "backwards_tp": true, - "ema_span_0": 375.78327414326486, - "ema_span_1": 193.60052305861757, - "enabled": true, - "eprice_exp_base": 1.214587112175182, - "eqty_exp_base": 1.3985953899599415, - "grid_span": 0.1921348326406074, - "initial_eprice_ema_dist": 0.0026409555733552356, - "initial_qty_pct": 0.011831419575377413, - "markup_range": 0.005971093436837054, - "max_n_entry_orders": 7, - "min_markup": 0.0030271572687066363, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": 0.0027918371751723455, - "auto_unstuck_qty_pct": 0.010008155005446263, - "auto_unstuck_wallet_exposure_threshold": 0.39755507702124293, - "backwards_tp": true, - "ema_span_0": 1317.472949332417, - "ema_span_1": 1200.8633102910494, - "enabled": true, - "eprice_exp_base": 1.082025308539617, - "eqty_exp_base": 3.610682845300553, - "grid_span": 0.1704280416138739, - "initial_eprice_ema_dist": -0.014545118540521401, - "initial_qty_pct": 0.010529563634420244, - "markup_range": 0.005292800676210645, - "max_n_entry_orders": 11, - "min_markup": 0.00999971269019128, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LEVERUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LEVERUSDT.json deleted file mode 100644 index 7db19412d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LEVERUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 812.1405300432821, - "auto_unstuck_ema_dist": -0.07316289199411792, - "auto_unstuck_qty_pct": 0.01351695688979675, - "auto_unstuck_wallet_exposure_threshold": 0.6839145754479681, - "backwards_tp": true, - "ema_span_0": 287.44273241602025, - "ema_span_1": 372.5358604554202, - "enabled": true, - "eprice_exp_base": 1.1092755889643573, - "eqty_exp_base": 1.689255839667313, - "grid_span": 0.2786094660494714, - "initial_eprice_ema_dist": -0.03593013325795827, - "initial_qty_pct": 0.013742862620661567, - "markup_range": 0.004518112930359438, - "max_n_entry_orders": 10, - "min_markup": 0.008188346756994458, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.5304010329335, - "auto_unstuck_ema_dist": -0.005371837408460239, - "auto_unstuck_qty_pct": 0.03625186747470076, - "auto_unstuck_wallet_exposure_threshold": 0.172467872274705, - "backwards_tp": true, - "ema_span_0": 568.7664237784585, - "ema_span_1": 1015.5465732987756, - "enabled": true, - "eprice_exp_base": 1.0027847482406218, - "eqty_exp_base": 1.6554852220749905, - "grid_span": 0.17063996467610135, - "initial_eprice_ema_dist": -0.0035891586908563485, - "initial_qty_pct": 0.011402515290221417, - "markup_range": 0.013831527977217432, - "max_n_entry_orders": 14, - "min_markup": 0.009514514600822775, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LINAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LINAUSDT.json deleted file mode 100644 index 93fc84079..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LINAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1156.0638286626172, - "auto_unstuck_ema_dist": -0.05651236066344278, - "auto_unstuck_qty_pct": 0.022574758370488602, - "auto_unstuck_wallet_exposure_threshold": 0.415083564354649, - "backwards_tp": true, - "ema_span_0": 588.8833333039297, - "ema_span_1": 641.8317915126986, - "enabled": true, - "eprice_exp_base": 1.1278563642563135, - "eqty_exp_base": 2.4887104509571993, - "grid_span": 0.2484374175475679, - "initial_eprice_ema_dist": -0.0005419315393682505, - "initial_qty_pct": 0.011225980429886666, - "markup_range": 0.007959625433141423, - "max_n_entry_orders": 7, - "min_markup": 0.006657987325592483, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1030.4646278611497, - "auto_unstuck_ema_dist": -0.019927372271882522, - "auto_unstuck_qty_pct": 0.016327172952138265, - "auto_unstuck_wallet_exposure_threshold": 0.10281409354664052, - "backwards_tp": true, - "ema_span_0": 1034.1085517786862, - "ema_span_1": 1268.6189003888871, - "enabled": true, - "eprice_exp_base": 1.17573627705497, - "eqty_exp_base": 2.1192151145887594, - "grid_span": 0.32299262066988577, - "initial_eprice_ema_dist": 3.6622486782147735e-05, - "initial_qty_pct": 0.010224569860575988, - "markup_range": 0.00669895354684023, - "max_n_entry_orders": 9, - "min_markup": 0.009672679795175559, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LINKUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LINKUSDT.json deleted file mode 100644 index 55a67d3f8..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LINKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1206.9360034658287, - "auto_unstuck_ema_dist": -0.08430861975643979, - "auto_unstuck_qty_pct": 0.023091958916313302, - "auto_unstuck_wallet_exposure_threshold": 0.2979783673556894, - "backwards_tp": true, - "ema_span_0": 637.1821707054264, - "ema_span_1": 419.351732678293, - "enabled": true, - "eprice_exp_base": 1.0653488300058507, - "eqty_exp_base": 1.951303976809032, - "grid_span": 0.14174977928413496, - "initial_eprice_ema_dist": -0.05978992335927225, - "initial_qty_pct": 0.01002139977666724, - "markup_range": 0.006223742839777372, - "max_n_entry_orders": 10, - "min_markup": 0.0025100563675091283, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1430.878429698071, - "auto_unstuck_ema_dist": -0.03666765695020211, - "auto_unstuck_qty_pct": 0.0413103823802006, - "auto_unstuck_wallet_exposure_threshold": 0.17648214846453245, - "backwards_tp": true, - "ema_span_0": 79.57238140238307, - "ema_span_1": 1042.140619551511, - "enabled": true, - "eprice_exp_base": 1.0738836439666615, - "eqty_exp_base": 3.6156536127198056, - "grid_span": 0.21439396963300858, - "initial_eprice_ema_dist": -0.004060847798552251, - "initial_qty_pct": 0.014046296332949395, - "markup_range": 0.009695023535563235, - "max_n_entry_orders": 13, - "min_markup": 0.009294830713520854, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LITUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LITUSDT.json deleted file mode 100644 index f1bcb0f17..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LITUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 744.3161590927804, - "auto_unstuck_ema_dist": -0.000832856043586223, - "auto_unstuck_qty_pct": 0.019838123633531574, - "auto_unstuck_wallet_exposure_threshold": 0.41716875965941924, - "backwards_tp": true, - "ema_span_0": 7.808799208124387, - "ema_span_1": 1109.859386607598, - "enabled": true, - "eprice_exp_base": 1.0007124828485983, - "eqty_exp_base": 2.134319566846371, - "grid_span": 0.22689293427171217, - "initial_eprice_ema_dist": -0.0007614403447673986, - "initial_qty_pct": 0.010641439103372646, - "markup_range": 0.006215298659219062, - "max_n_entry_orders": 7, - "min_markup": 0.005790448305888321, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1355.2875103248457, - "auto_unstuck_ema_dist": -0.008303015950734117, - "auto_unstuck_qty_pct": 0.05681413200321959, - "auto_unstuck_wallet_exposure_threshold": 0.1499286208734416, - "backwards_tp": true, - "ema_span_0": 1382.1261218183522, - "ema_span_1": 1158.5376547521412, - "enabled": true, - "eprice_exp_base": 1.1318126502418175, - "eqty_exp_base": 1.6311457239187566, - "grid_span": 0.24259839158613666, - "initial_eprice_ema_dist": 0.0014199350053528952, - "initial_qty_pct": 0.022166956606350985, - "markup_range": 0.017489771113543367, - "max_n_entry_orders": 7, - "min_markup": 0.009872260411006953, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LPTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LPTUSDT.json deleted file mode 100644 index a47514114..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LPTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 395.57631566206055, - "auto_unstuck_ema_dist": -0.00015444126579093956, - "auto_unstuck_qty_pct": 0.015633923963389945, - "auto_unstuck_wallet_exposure_threshold": 0.8305852604193255, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 504.810545607284, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.9726296243289334, - "grid_span": 0.3713792714756141, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 17, - "min_markup": 0.008951591942272753, - "n_close_orders": 15, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1296.9660916655898, - "auto_unstuck_ema_dist": -0.042664004869814434, - "auto_unstuck_qty_pct": 0.012717437621565159, - "auto_unstuck_wallet_exposure_threshold": 0.3561914480916979, - "backwards_tp": true, - "ema_span_0": 1418.135517832663, - "ema_span_1": 687.2274439912106, - "enabled": true, - "eprice_exp_base": 1.2685537118987047, - "eqty_exp_base": 2.1869685432452752, - "grid_span": 0.3794829787187984, - "initial_eprice_ema_dist": 0.0028217730392271507, - "initial_qty_pct": 0.012710689140986189, - "markup_range": 0.011973077754570887, - "max_n_entry_orders": 8, - "min_markup": 0.00493091028059845, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LQTYUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LQTYUSDT.json deleted file mode 100644 index b28aee6b8..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LQTYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.2098689886839, - "auto_unstuck_ema_dist": -0.029938464971292558, - "auto_unstuck_qty_pct": 0.01322957213435129, - "auto_unstuck_wallet_exposure_threshold": 0.44124299054739075, - "backwards_tp": true, - "ema_span_0": 1022.2174206769037, - "ema_span_1": 1202.5749343987134, - "enabled": true, - "eprice_exp_base": 1.0557824156015634, - "eqty_exp_base": 1.2686235112800972, - "grid_span": 0.2873494680415634, - "initial_eprice_ema_dist": -0.08719536914198235, - "initial_qty_pct": 0.010089167863931646, - "markup_range": 0.0026829860287574977, - "max_n_entry_orders": 12, - "min_markup": 0.003194751705619432, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LRCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LRCUSDT.json deleted file mode 100644 index c9e5a9420..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LRCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1390.595235283437, - "auto_unstuck_ema_dist": -0.01514134294845544, - "auto_unstuck_qty_pct": 0.010665366560617114, - "auto_unstuck_wallet_exposure_threshold": 0.6205612202100563, - "backwards_tp": true, - "ema_span_0": 1174.9934620766958, - "ema_span_1": 1121.7994195688743, - "enabled": true, - "eprice_exp_base": 1.0712729432182215, - "eqty_exp_base": 1.853903288341679, - "grid_span": 0.13891906232585272, - "initial_eprice_ema_dist": -0.0006290335606072674, - "initial_qty_pct": 0.012316845415467337, - "markup_range": 0.0032963725874129686, - "max_n_entry_orders": 9, - "min_markup": 0.008139762803669787, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 881.3342205816584, - "auto_unstuck_ema_dist": -0.06285848587604896, - "auto_unstuck_qty_pct": 0.0317192059965618, - "auto_unstuck_wallet_exposure_threshold": 0.2624263191149784, - "backwards_tp": true, - "ema_span_0": 255.50751655100154, - "ema_span_1": 290.49557535759095, - "enabled": true, - "eprice_exp_base": 1.2136852144300496, - "eqty_exp_base": 1.5406721356788449, - "grid_span": 0.650835034705818, - "initial_eprice_ema_dist": -6.455716188957976e-05, - "initial_qty_pct": 0.011321850459695679, - "markup_range": 0.0022447872055825413, - "max_n_entry_orders": 11, - "min_markup": 0.007987803877392933, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LTCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/LTCUSDT.json deleted file mode 100644 index 25c553842..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LTCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 740.0184218517647, - "auto_unstuck_ema_dist": 0.0029766917451857977, - "auto_unstuck_qty_pct": 0.010123668349159533, - "auto_unstuck_wallet_exposure_threshold": 0.1527279931044989, - "backwards_tp": true, - "ema_span_0": 1268.5006641467548, - "ema_span_1": 1356.3795616152556, - "enabled": true, - "eprice_exp_base": 1.0892634932428413, - "eqty_exp_base": 1.6837745481665294, - "grid_span": 0.26160902452411716, - "initial_eprice_ema_dist": -0.006515467825257201, - "initial_qty_pct": 0.01723314692378033, - "markup_range": 0.005048302095099893, - "max_n_entry_orders": 10, - "min_markup": 0.00851579864663394, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": 0.0027918371751723455, - "auto_unstuck_qty_pct": 0.010008155005446263, - "auto_unstuck_wallet_exposure_threshold": 0.39755507702124293, - "backwards_tp": true, - "ema_span_0": 1317.472949332417, - "ema_span_1": 1200.8633102910494, - "enabled": true, - "eprice_exp_base": 1.082025308539617, - "eqty_exp_base": 3.610682845300553, - "grid_span": 0.1704280416138739, - "initial_eprice_ema_dist": -0.014545118540521401, - "initial_qty_pct": 0.010529563634420244, - "markup_range": 0.005292800676210645, - "max_n_entry_orders": 11, - "min_markup": 0.00999971269019128, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/LUNA2USDT.json b/configs/live/single_symbol_optimizations/neat_grid/LUNA2USDT.json deleted file mode 100644 index 15be3e4ba..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/LUNA2USDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 960.3746234843208, - "auto_unstuck_ema_dist": -0.048457382791266664, - "auto_unstuck_qty_pct": 0.012067551003702359, - "auto_unstuck_wallet_exposure_threshold": 0.10629829000150466, - "backwards_tp": true, - "ema_span_0": 640.991129390323, - "ema_span_1": 1271.5823282216813, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3478568273779048, - "grid_span": 0.11618801342028731, - "initial_eprice_ema_dist": 0.0026706178053054848, - "initial_qty_pct": 0.010122020357749307, - "markup_range": 0.0010743063424602571, - "max_n_entry_orders": 10, - "min_markup": 0.0011759232733491204, - "n_close_orders": 2, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MAGICUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MAGICUSDT.json deleted file mode 100644 index 8f75791f2..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MAGICUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.4254065822352, - "auto_unstuck_ema_dist": -0.029627972916044323, - "auto_unstuck_qty_pct": 0.010149460102845714, - "auto_unstuck_wallet_exposure_threshold": 0.49261238267423857, - "backwards_tp": true, - "ema_span_0": 1172.7828815354887, - "ema_span_1": 1306.9040552780662, - "enabled": true, - "eprice_exp_base": 1.002455041325814, - "eqty_exp_base": 1.996555354220001, - "grid_span": 0.12616534691015155, - "initial_eprice_ema_dist": -0.06382614152119226, - "initial_qty_pct": 0.010031129570869544, - "markup_range": 0.0029718165961309345, - "max_n_entry_orders": 10, - "min_markup": 0.002658068109447345, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.6807818207787, - "auto_unstuck_ema_dist": -0.006778335727737885, - "auto_unstuck_qty_pct": 0.014087701589334754, - "auto_unstuck_wallet_exposure_threshold": 0.13123791548024152, - "backwards_tp": true, - "ema_span_0": 1227.3728686012935, - "ema_span_1": 1129.9829631455764, - "enabled": true, - "eprice_exp_base": 1.0788617301729184, - "eqty_exp_base": 2.8442772777773904, - "grid_span": 0.17214574961987536, - "initial_eprice_ema_dist": -0.0008494689085988029, - "initial_qty_pct": 0.010347078653780381, - "markup_range": 0.002123747989666032, - "max_n_entry_orders": 8, - "min_markup": 0.008717136677346285, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MANAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MANAUSDT.json deleted file mode 100644 index 634ccc608..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MANAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1324.6270592339595, - "auto_unstuck_ema_dist": -0.025779479392994912, - "auto_unstuck_qty_pct": 0.010009286530486914, - "auto_unstuck_wallet_exposure_threshold": 0.38060086753670347, - "backwards_tp": true, - "ema_span_0": 312.8396794375856, - "ema_span_1": 688.2694252914063, - "enabled": true, - "eprice_exp_base": 1.114720060694354, - "eqty_exp_base": 1.6975759240105652, - "grid_span": 0.10560099667352332, - "initial_eprice_ema_dist": 0.0029991156478442567, - "initial_qty_pct": 0.010561002277241976, - "markup_range": 0.0030849742069951865, - "max_n_entry_orders": 7, - "min_markup": 0.006111449695768695, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1197.0084432470494, - "auto_unstuck_ema_dist": -0.01977702103604026, - "auto_unstuck_qty_pct": 0.02213996812425767, - "auto_unstuck_wallet_exposure_threshold": 0.4117735089414276, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1166.7984565468903, - "enabled": true, - "eprice_exp_base": 1.0355349511711107, - "eqty_exp_base": 3.2494571228404556, - "grid_span": 0.14464679065612565, - "initial_eprice_ema_dist": -0.0006171833028433106, - "initial_qty_pct": 0.011144270788398733, - "markup_range": 0.009702953567933012, - "max_n_entry_orders": 8, - "min_markup": 0.00572257576984019, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MASKUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MASKUSDT.json deleted file mode 100644 index 4b5148089..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MASKUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1232.8988841979901, - "auto_unstuck_ema_dist": -0.016748364003455786, - "auto_unstuck_qty_pct": 0.011155559136564472, - "auto_unstuck_wallet_exposure_threshold": 0.680732371421344, - "backwards_tp": true, - "ema_span_0": 748.4978236668502, - "ema_span_1": 524.1979616418802, - "enabled": true, - "eprice_exp_base": 1.0000088753984597, - "eqty_exp_base": 2.1280622372741735, - "grid_span": 0.17889505470021103, - "initial_eprice_ema_dist": 0.0029999672120743057, - "initial_qty_pct": 0.01591926851963001, - "markup_range": 0.0014520739419980643, - "max_n_entry_orders": 9, - "min_markup": 0.0028487964278350653, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 907.707604617173, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.16835780430465794, - "backwards_tp": true, - "ema_span_0": 551.0004511359443, - "ema_span_1": 1169.924177613991, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.6132937962607756, - "grid_span": 0.4400963034537022, - "initial_eprice_ema_dist": -0.04428189478784108, - "initial_qty_pct": 0.01, - "markup_range": 0.007037437329408645, - "max_n_entry_orders": 10, - "min_markup": 0.0014599476135195243, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MATICUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MATICUSDT.json deleted file mode 100644 index 92d1877be..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MATICUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1330.6399332942376, - "auto_unstuck_ema_dist": -0.010407993144474614, - "auto_unstuck_qty_pct": 0.012504004598565615, - "auto_unstuck_wallet_exposure_threshold": 0.30918922176702673, - "backwards_tp": true, - "ema_span_0": 1275.1712361923996, - "ema_span_1": 678.0959734310069, - "enabled": true, - "eprice_exp_base": 1.1342419566715043, - "eqty_exp_base": 1.6438056004554018, - "grid_span": 0.17922016404000038, - "initial_eprice_ema_dist": 0.0008341464857513167, - "initial_qty_pct": 0.010661940843284827, - "markup_range": 0.004353017422056995, - "max_n_entry_orders": 9, - "min_markup": 0.006217866162055133, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1257.1765046178355, - "auto_unstuck_ema_dist": -0.01676368517587099, - "auto_unstuck_qty_pct": 0.016701313705417328, - "auto_unstuck_wallet_exposure_threshold": 0.48997292025155054, - "backwards_tp": true, - "ema_span_0": 422.80125313954346, - "ema_span_1": 841.9842704749742, - "enabled": true, - "eprice_exp_base": 1.061558899700857, - "eqty_exp_base": 2.190258626443725, - "grid_span": 0.18100171146859348, - "initial_eprice_ema_dist": -0.014535608404014261, - "initial_qty_pct": 0.012351656356850487, - "markup_range": 0.005251271441953926, - "max_n_entry_orders": 8, - "min_markup": 0.0035885067060970016, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MAVUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MAVUSDT.json deleted file mode 100644 index 608084357..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MAVUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 781.1069973944801, - "auto_unstuck_ema_dist": -0.04041194891053113, - "auto_unstuck_qty_pct": 0.013039336957362266, - "auto_unstuck_wallet_exposure_threshold": 0.21005762329714173, - "backwards_tp": true, - "ema_span_0": 1089.3533422202247, - "ema_span_1": 645.6438460818256, - "enabled": true, - "eprice_exp_base": 1.432400111323191, - "eqty_exp_base": 2.6182858260856072, - "grid_span": 0.1564882409441415, - "initial_eprice_ema_dist": 0.002991926780557061, - "initial_qty_pct": 0.01136107219949211, - "markup_range": 0.005102629400112615, - "max_n_entry_orders": 7, - "min_markup": 0.007082499507288377, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MDTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MDTUSDT.json deleted file mode 100644 index 1968eb573..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MDTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 155.94365352081996, - "auto_unstuck_ema_dist": -0.031330482695477675, - "auto_unstuck_qty_pct": 0.011037485750127569, - "auto_unstuck_wallet_exposure_threshold": 0.16443170038577976, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.1727247100550446, - "eqty_exp_base": 1, - "grid_span": 0.18183233414625083, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.025220122290467033, - "markup_range": 0.0, - "max_n_entry_orders": 12, - "min_markup": 0.007132025701123874, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 779.4937631903803, - "auto_unstuck_ema_dist": -0.09059141530018994, - "auto_unstuck_qty_pct": 0.030190248656495958, - "auto_unstuck_wallet_exposure_threshold": 0.16656753914639674, - "backwards_tp": true, - "ema_span_0": 560.5725837372815, - "ema_span_1": 682.643601180339, - "enabled": true, - "eprice_exp_base": 1.2343150273880885, - "eqty_exp_base": 3.7828761721681, - "grid_span": 0.1824047658902641, - "initial_eprice_ema_dist": 0.002946770070514348, - "initial_qty_pct": 0.021382527309153382, - "markup_range": 0.0032343642961400864, - "max_n_entry_orders": 15, - "min_markup": 0.004032169043735039, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MINAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MINAUSDT.json deleted file mode 100644 index 25024d2fb..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MINAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 890.2375035458963, - "auto_unstuck_ema_dist": -0.09007265557396357, - "auto_unstuck_qty_pct": 0.1, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 554.8232587335082, - "ema_span_1": 1267.4151741290289, - "enabled": true, - "eprice_exp_base": 1.0894017253690684, - "eqty_exp_base": 3.173350604560703, - "grid_span": 0.1459771041058295, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.03158156295475719, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.005851372512486347, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MKRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MKRUSDT.json deleted file mode 100644 index 9eb47e96b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MKRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 637.4334725193053, - "auto_unstuck_ema_dist": 0.0029206150728870797, - "auto_unstuck_qty_pct": 0.04471387746939395, - "auto_unstuck_wallet_exposure_threshold": 0.368480685246695, - "backwards_tp": true, - "ema_span_0": 331.25759167079394, - "ema_span_1": 225.46879900833596, - "enabled": true, - "eprice_exp_base": 1.0611887524199195, - "eqty_exp_base": 1.1659600867893172, - "grid_span": 0.15568157472849578, - "initial_eprice_ema_dist": -0.07767221057817625, - "initial_qty_pct": 0.01, - "markup_range": 0.003646386009442566, - "max_n_entry_orders": 9, - "min_markup": 0.0024609264687381915, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 559.260531604697, - "auto_unstuck_ema_dist": -0.00842752530128673, - "auto_unstuck_qty_pct": 0.013399550071574607, - "auto_unstuck_wallet_exposure_threshold": 0.33695330170844806, - "backwards_tp": true, - "ema_span_0": 1383.3551930257856, - "ema_span_1": 68.06040929635022, - "enabled": true, - "eprice_exp_base": 1.105849123094091, - "eqty_exp_base": 1.22087120679925, - "grid_span": 0.30594108207171933, - "initial_eprice_ema_dist": 0.0024083581567065086, - "initial_qty_pct": 0.01, - "markup_range": 0.004365852785813848, - "max_n_entry_orders": 8, - "min_markup": 0.0064414420212760256, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/MTLUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/MTLUSDT.json deleted file mode 100644 index a35fec92d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/MTLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1312.9236090872914, - "auto_unstuck_ema_dist": -0.05364601981103215, - "auto_unstuck_qty_pct": 0.01841319241552632, - "auto_unstuck_wallet_exposure_threshold": 0.7629305551536341, - "backwards_tp": true, - "ema_span_0": 817.6765950526462, - "ema_span_1": 739.8764895895879, - "enabled": true, - "eprice_exp_base": 1.0703003148629697, - "eqty_exp_base": 1.3106940841521368, - "grid_span": 0.33290426286021313, - "initial_eprice_ema_dist": -0.005719966234491855, - "initial_qty_pct": 0.0265410127263459, - "markup_range": 0.0017384690727468763, - "max_n_entry_orders": 8, - "min_markup": 0.004439483179768639, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1400.6900593576077, - "auto_unstuck_ema_dist": -0.06435512785338308, - "auto_unstuck_qty_pct": 0.010143924542001982, - "auto_unstuck_wallet_exposure_threshold": 0.6328201381858855, - "backwards_tp": true, - "ema_span_0": 1143.4233809386437, - "ema_span_1": 1415.7036255054181, - "enabled": true, - "eprice_exp_base": 1.0545235691054802, - "eqty_exp_base": 1.3932137933386775, - "grid_span": 0.549288828005579, - "initial_eprice_ema_dist": 0.002950447910776513, - "initial_qty_pct": 0.01625984787620682, - "markup_range": 0.0033917464927030734, - "max_n_entry_orders": 22, - "min_markup": 0.004038401461269915, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/NEARUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/NEARUSDT.json deleted file mode 100644 index b09542c3e..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/NEARUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1148.7575947594983, - "auto_unstuck_ema_dist": -0.06610522537199073, - "auto_unstuck_qty_pct": 0.010165215395132595, - "auto_unstuck_wallet_exposure_threshold": 0.3873247866501045, - "backwards_tp": true, - "ema_span_0": 1227.9019518904095, - "ema_span_1": 1349.2435607355044, - "enabled": true, - "eprice_exp_base": 1.0961280971510308, - "eqty_exp_base": 1.5404861920168187, - "grid_span": 0.1246561754214835, - "initial_eprice_ema_dist": 0.002999804308312542, - "initial_qty_pct": 0.012390499644160674, - "markup_range": 0.0022193519972044684, - "max_n_entry_orders": 7, - "min_markup": 0.003874867616229977, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1242.1822487508389, - "auto_unstuck_ema_dist": -0.05217017433779884, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.558855339094606, - "backwards_tp": true, - "ema_span_0": 54.74479757019285, - "ema_span_1": 1310.9789029573235, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.9706716271051392, - "grid_span": 0.3222915763925853, - "initial_eprice_ema_dist": -0.010546074128439924, - "initial_qty_pct": 0.017338958962911367, - "markup_range": 0.0011912160687322848, - "max_n_entry_orders": 20, - "min_markup": 0.007591070080575359, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/NEOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/NEOUSDT.json deleted file mode 100644 index cf14d95b5..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/NEOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1178.864914744815, - "auto_unstuck_ema_dist": -0.09366403693429062, - "auto_unstuck_qty_pct": 0.01346809944182025, - "auto_unstuck_wallet_exposure_threshold": 0.7790790903429815, - "backwards_tp": true, - "ema_span_0": 883.3406828944145, - "ema_span_1": 422.519629540615, - "enabled": true, - "eprice_exp_base": 1.2697939105088614, - "eqty_exp_base": 2.2046793957345505, - "grid_span": 0.2834976304280092, - "initial_eprice_ema_dist": 0.002994426644819609, - "initial_qty_pct": 0.011648078888927308, - "markup_range": 0.008336844046428342, - "max_n_entry_orders": 7, - "min_markup": 0.0043058686997747165, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 985.9342694636125, - "auto_unstuck_ema_dist": -0.0165075907113428, - "auto_unstuck_qty_pct": 0.013184063447006945, - "auto_unstuck_wallet_exposure_threshold": 0.1913487457434161, - "backwards_tp": true, - "ema_span_0": 1227.917246956021, - "ema_span_1": 584.4472988824474, - "enabled": true, - "eprice_exp_base": 1.3781266136534174, - "eqty_exp_base": 1.251153931037694, - "grid_span": 0.23778616253835247, - "initial_eprice_ema_dist": -0.004454992589175792, - "initial_qty_pct": 0.010965863309892031, - "markup_range": 0.0045180557475988405, - "max_n_entry_orders": 8, - "min_markup": 0.004239992204731155, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/NKNUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/NKNUSDT.json deleted file mode 100644 index 24f45e58c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/NKNUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 951.6955086786951, - "auto_unstuck_ema_dist": -0.07137516448869817, - "auto_unstuck_qty_pct": 0.020326564749976135, - "auto_unstuck_wallet_exposure_threshold": 0.2701196467410427, - "backwards_tp": true, - "ema_span_0": 1105.8818721298312, - "ema_span_1": 85.99574669401991, - "enabled": true, - "eprice_exp_base": 1.0875408007300245, - "eqty_exp_base": 1.5971164074390949, - "grid_span": 0.19837291249277844, - "initial_eprice_ema_dist": -0.003314071435444695, - "initial_qty_pct": 0.016860203452174927, - "markup_range": 0.007041195496302395, - "max_n_entry_orders": 12, - "min_markup": 0.0085676266259844, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 874.0424906847115, - "auto_unstuck_ema_dist": -0.02261011773125531, - "auto_unstuck_qty_pct": 0.023208488128661213, - "auto_unstuck_wallet_exposure_threshold": 0.4469168528067507, - "backwards_tp": true, - "ema_span_0": 483.85502579933905, - "ema_span_1": 1399.8631337597437, - "enabled": true, - "eprice_exp_base": 1.2830264221145415, - "eqty_exp_base": 1.2208248345808002, - "grid_span": 0.35541682845597217, - "initial_eprice_ema_dist": -0.0013488393752513447, - "initial_qty_pct": 0.011724489906266556, - "markup_range": 0.011143655740834948, - "max_n_entry_orders": 11, - "min_markup": 0.009560997015779307, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/NMRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/NMRUSDT.json deleted file mode 100644 index 59eed1761..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/NMRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1413.664236410988, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.071339656663934, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 197.3664988460256, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.0334129505581067, - "markup_range": 0.0, - "max_n_entry_orders": 11, - "min_markup": 0.00924454929972874, - "n_close_orders": 2, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 1420.9651479537285, - "auto_unstuck_ema_dist": -0.033631641830101304, - "auto_unstuck_qty_pct": 0.020401806530856124, - "auto_unstuck_wallet_exposure_threshold": 0.2938345281297234, - "backwards_tp": true, - "ema_span_0": 1011.4518973719919, - "ema_span_1": 798.0567764621785, - "enabled": true, - "eprice_exp_base": 1.0680920722213172, - "eqty_exp_base": 2.2829103749222863, - "grid_span": 0.14874815958874757, - "initial_eprice_ema_dist": -0.011196204261857148, - "initial_qty_pct": 0.017998783074008304, - "markup_range": 0.0074045251026196865, - "max_n_entry_orders": 9, - "min_markup": 0.005606728427408416, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/OCEANUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/OCEANUSDT.json deleted file mode 100644 index cb684d601..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/OCEANUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 789.4036403665885, - "auto_unstuck_ema_dist": -0.017920246952074653, - "auto_unstuck_qty_pct": 0.010609723269670879, - "auto_unstuck_wallet_exposure_threshold": 0.624501380132872, - "backwards_tp": true, - "ema_span_0": 1056.857164811717, - "ema_span_1": 968.396596975907, - "enabled": true, - "eprice_exp_base": 1.002323247082522, - "eqty_exp_base": 1.0000638779372917, - "grid_span": 0.2626838278068721, - "initial_eprice_ema_dist": 7.58199503762149e-05, - "initial_qty_pct": 0.028187959554310894, - "markup_range": 0.002214787445918708, - "max_n_entry_orders": 7, - "min_markup": 0.009642666354328271, - "n_close_orders": 15, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 521.9621885409512, - "auto_unstuck_ema_dist": -0.012762902179782869, - "auto_unstuck_qty_pct": 0.062469935581463375, - "auto_unstuck_wallet_exposure_threshold": 0.19147582805785182, - "backwards_tp": true, - "ema_span_0": 1397.9529576373322, - "ema_span_1": 1203.8900840595732, - "enabled": true, - "eprice_exp_base": 1.2012536052127025, - "eqty_exp_base": 1.0620027140110555, - "grid_span": 0.23590512152196455, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011891493870233449, - "markup_range": 0.007532704419919807, - "max_n_entry_orders": 9, - "min_markup": 0.009294324396481382, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/OGNUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/OGNUSDT.json deleted file mode 100644 index c72141733..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/OGNUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 464.5243137292278, - "auto_unstuck_ema_dist": -0.016257807912191485, - "auto_unstuck_qty_pct": 0.028753279466435785, - "auto_unstuck_wallet_exposure_threshold": 0.25809686194350934, - "backwards_tp": true, - "ema_span_0": 262.52173269010757, - "ema_span_1": 302.10196885329646, - "enabled": true, - "eprice_exp_base": 1.013827024021197, - "eqty_exp_base": 1.000178541762229, - "grid_span": 0.31467353739847387, - "initial_eprice_ema_dist": 0.0029988704176538775, - "initial_qty_pct": 0.013103703457016357, - "markup_range": 0.0069240678725558625, - "max_n_entry_orders": 7, - "min_markup": 0.007480120415776099, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 588.4046506251598, - "auto_unstuck_ema_dist": -0.04929267586320539, - "auto_unstuck_qty_pct": 0.02862607293805084, - "auto_unstuck_wallet_exposure_threshold": 0.2796812591951138, - "backwards_tp": true, - "ema_span_0": 983.3912263591697, - "ema_span_1": 1291.369846357907, - "enabled": true, - "eprice_exp_base": 1.0623121946221181, - "eqty_exp_base": 1.1639082421634233, - "grid_span": 0.5127404697753712, - "initial_eprice_ema_dist": 0.0016943324124452292, - "initial_qty_pct": 0.014164359772480019, - "markup_range": 0.0056096624613933155, - "max_n_entry_orders": 17, - "min_markup": 0.009538893707668243, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/OMGUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/OMGUSDT.json deleted file mode 100644 index cce36b0cb..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/OMGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.4092512849797, - "auto_unstuck_ema_dist": -0.007804317744943648, - "auto_unstuck_qty_pct": 0.012827505738499128, - "auto_unstuck_wallet_exposure_threshold": 0.23114110655160536, - "backwards_tp": true, - "ema_span_0": 471.51598421925127, - "ema_span_1": 690.0351092432278, - "enabled": true, - "eprice_exp_base": 1.1562934653212311, - "eqty_exp_base": 2.0699935345270997, - "grid_span": 0.15929253434258953, - "initial_eprice_ema_dist": -0.00866265020952416, - "initial_qty_pct": 0.011026991701794699, - "markup_range": 0.005901207434692439, - "max_n_entry_orders": 7, - "min_markup": 0.005892201524839872, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1113.477951066357, - "auto_unstuck_ema_dist": -0.06733026558274793, - "auto_unstuck_qty_pct": 0.0905230648535008, - "auto_unstuck_wallet_exposure_threshold": 0.5049681744337804, - "backwards_tp": true, - "ema_span_0": 411.30714535148826, - "ema_span_1": 46.45524076789364, - "enabled": true, - "eprice_exp_base": 1.0922490408476915, - "eqty_exp_base": 3.1262211559071, - "grid_span": 0.32325991327162235, - "initial_eprice_ema_dist": -0.008180053257656942, - "initial_qty_pct": 0.01000109725779698, - "markup_range": 0.004731383227217477, - "max_n_entry_orders": 8, - "min_markup": 0.0024902460883624634, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ONEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ONEUSDT.json deleted file mode 100644 index 71dec667d..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ONEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1309.3015002105221, - "auto_unstuck_ema_dist": -0.06619867664384063, - "auto_unstuck_qty_pct": 0.02710782071876213, - "auto_unstuck_wallet_exposure_threshold": 0.21854421529034437, - "backwards_tp": true, - "ema_span_0": 1119.2115034185858, - "ema_span_1": 627.3732417578091, - "enabled": true, - "eprice_exp_base": 1.0679558973352758, - "eqty_exp_base": 1.5144757584490733, - "grid_span": 0.18276121412378385, - "initial_eprice_ema_dist": 3.959913333134626e-05, - "initial_qty_pct": 0.011966447227676235, - "markup_range": 0.0017663009437338785, - "max_n_entry_orders": 10, - "min_markup": 0.004009025076899484, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 384.28622591761825, - "auto_unstuck_ema_dist": -0.04348221402154566, - "auto_unstuck_qty_pct": 0.05435150262934193, - "auto_unstuck_wallet_exposure_threshold": 0.4374812410848293, - "backwards_tp": true, - "ema_span_0": 119.26242531406712, - "ema_span_1": 676.0489747052981, - "enabled": true, - "eprice_exp_base": 1.2049330520847439, - "eqty_exp_base": 2.4383466766993616, - "grid_span": 0.19537954199076812, - "initial_eprice_ema_dist": 0.002974912462724406, - "initial_qty_pct": 0.020121128649868734, - "markup_range": 0.0054102602540279125, - "max_n_entry_orders": 7, - "min_markup": 0.007775922714986463, - "n_close_orders": 9, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ONTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ONTUSDT.json deleted file mode 100644 index 278466d83..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ONTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1220.1693190259343, - "auto_unstuck_ema_dist": -0.055848604265624165, - "auto_unstuck_qty_pct": 0.01663793130176452, - "auto_unstuck_wallet_exposure_threshold": 0.22320529412018741, - "backwards_tp": true, - "ema_span_0": 1034.768989555157, - "ema_span_1": 645.9178238852667, - "enabled": true, - "eprice_exp_base": 1.0264132632197753, - "eqty_exp_base": 1.5947127337419398, - "grid_span": 0.3243406544149025, - "initial_eprice_ema_dist": -0.0008614015973919106, - "initial_qty_pct": 0.01345951019188534, - "markup_range": 0.0060631363436918564, - "max_n_entry_orders": 9, - "min_markup": 0.00693012419765506, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1292.3642218373102, - "auto_unstuck_ema_dist": 0.0012893259061435207, - "auto_unstuck_qty_pct": 0.015027018538810765, - "auto_unstuck_wallet_exposure_threshold": 0.38886320039115374, - "backwards_tp": true, - "ema_span_0": 1295.4428901703836, - "ema_span_1": 1281.3196012693616, - "enabled": true, - "eprice_exp_base": 1.2583345395632914, - "eqty_exp_base": 1.2487561820451594, - "grid_span": 0.17048401906152855, - "initial_eprice_ema_dist": -0.007486011963225201, - "initial_qty_pct": 0.011893585474493814, - "markup_range": 0.006166383965142319, - "max_n_entry_orders": 8, - "min_markup": 0.0027262762638605533, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/OPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/OPUSDT.json deleted file mode 100644 index 5463f8791..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/OPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.9061277277842, - "auto_unstuck_ema_dist": -0.05509587541388286, - "auto_unstuck_qty_pct": 0.04614884064028366, - "auto_unstuck_wallet_exposure_threshold": 0.46863516278925094, - "backwards_tp": true, - "ema_span_0": 839.2060753662297, - "ema_span_1": 353.2123188484158, - "enabled": true, - "eprice_exp_base": 1.1405633050308002, - "eqty_exp_base": 1.4146469967046582, - "grid_span": 0.1984017107809955, - "initial_eprice_ema_dist": 0.0007194017798747517, - "initial_qty_pct": 0.011638530486312363, - "markup_range": 0.0012986613134998541, - "max_n_entry_orders": 9, - "min_markup": 0.007655768612028226, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 907.707604617173, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.16835780430465794, - "backwards_tp": true, - "ema_span_0": 551.0004511359443, - "ema_span_1": 1169.924177613991, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.6132937962607756, - "grid_span": 0.4400963034537022, - "initial_eprice_ema_dist": -0.04428189478784108, - "initial_qty_pct": 0.01, - "markup_range": 0.007037437329408645, - "max_n_entry_orders": 10, - "min_markup": 0.0014599476135195243, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/PENDLEUSDT.json deleted file mode 100644 index 916a32901..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/PENDLEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1356.0976122855272, - "auto_unstuck_ema_dist": -0.04096486330558547, - "auto_unstuck_qty_pct": 0.01157079205008633, - "auto_unstuck_wallet_exposure_threshold": 0.6585588232903201, - "backwards_tp": true, - "ema_span_0": 754.9650547886384, - "ema_span_1": 32.02355625334798, - "enabled": true, - "eprice_exp_base": 1.0003232146185104, - "eqty_exp_base": 2.0086046719051853, - "grid_span": 0.19016357148075247, - "initial_eprice_ema_dist": -0.056805610105461174, - "initial_qty_pct": 0.013498406480045204, - "markup_range": 0.0060398974172039925, - "max_n_entry_orders": 9, - "min_markup": 0.006212424819249478, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.3656695593141, - "auto_unstuck_ema_dist": -0.015398197791529941, - "auto_unstuck_qty_pct": 0.04431219279027263, - "auto_unstuck_wallet_exposure_threshold": 0.14474877521135127, - "backwards_tp": true, - "ema_span_0": 1345.8018944144364, - "ema_span_1": 114.25356926090353, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.228892022834553, - "grid_span": 0.19509075249107113, - "initial_eprice_ema_dist": 0.0028304685343249194, - "initial_qty_pct": 0.014539530455688529, - "markup_range": 0.019110397358009217, - "max_n_entry_orders": 13, - "min_markup": 0.009932421283043847, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/PEOPLEUSDT.json deleted file mode 100644 index ff5ecfafc..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/PEOPLEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 744.3161590927804, - "auto_unstuck_ema_dist": -0.000832856043586223, - "auto_unstuck_qty_pct": 0.019838123633531574, - "auto_unstuck_wallet_exposure_threshold": 0.41716875965941924, - "backwards_tp": true, - "ema_span_0": 7.808799208124387, - "ema_span_1": 1109.859386607598, - "enabled": true, - "eprice_exp_base": 1.0007124828485983, - "eqty_exp_base": 2.134319566846371, - "grid_span": 0.22689293427171217, - "initial_eprice_ema_dist": -0.0007614403447673986, - "initial_qty_pct": 0.010641439103372646, - "markup_range": 0.006215298659219062, - "max_n_entry_orders": 7, - "min_markup": 0.005790448305888321, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.9447745660573, - "auto_unstuck_ema_dist": -0.014614502702101335, - "auto_unstuck_qty_pct": 0.01661511462751747, - "auto_unstuck_wallet_exposure_threshold": 0.4367564656424801, - "backwards_tp": true, - "ema_span_0": 1377.1724191049236, - "ema_span_1": 904.7743747036709, - "enabled": true, - "eprice_exp_base": 1.2844196746243386, - "eqty_exp_base": 1.6525884050686455, - "grid_span": 0.4425860447472405, - "initial_eprice_ema_dist": 0.0009022720849045805, - "initial_qty_pct": 0.010001758155469056, - "markup_range": 0.008902967231539416, - "max_n_entry_orders": 9, - "min_markup": 0.0074502696582370315, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/PERPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/PERPUSDT.json deleted file mode 100644 index ea7722403..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/PERPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0004950792010939079, - "auto_unstuck_qty_pct": 0.026304514229678777, - "auto_unstuck_wallet_exposure_threshold": 0.17391268983721583, - "backwards_tp": true, - "ema_span_0": 1035.4850398673357, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3622370182757666, - "grid_span": 0.2609115690021448, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0005030013361354603, - "max_n_entry_orders": 13, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1.0}, - "short": {"auto_unstuck_delay_minutes": 884.8447776570468, - "auto_unstuck_ema_dist": -0.07900209417896203, - "auto_unstuck_qty_pct": 0.06186831955773328, - "auto_unstuck_wallet_exposure_threshold": 0.508315606255378, - "backwards_tp": true, - "ema_span_0": 71.62350200600264, - "ema_span_1": 25.15174163865426, - "enabled": true, - "eprice_exp_base": 1.0142594569754666, - "eqty_exp_base": 3.649565085146125, - "grid_span": 0.13334919204060128, - "initial_eprice_ema_dist": -0.08488892931109529, - "initial_qty_pct": 0.010451719365528203, - "markup_range": 0.0032805974896529242, - "max_n_entry_orders": 9, - "min_markup": 0.0022761781494163853, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/PHBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/PHBUSDT.json deleted file mode 100644 index 5f42e7ecb..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/PHBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.4254065822352, - "auto_unstuck_ema_dist": -0.029627972916044323, - "auto_unstuck_qty_pct": 0.010149460102845714, - "auto_unstuck_wallet_exposure_threshold": 0.49261238267423857, - "backwards_tp": true, - "ema_span_0": 1172.7828815354887, - "ema_span_1": 1306.9040552780662, - "enabled": true, - "eprice_exp_base": 1.002455041325814, - "eqty_exp_base": 1.996555354220001, - "grid_span": 0.12616534691015155, - "initial_eprice_ema_dist": -0.06382614152119226, - "initial_qty_pct": 0.010031129570869544, - "markup_range": 0.0029718165961309345, - "max_n_entry_orders": 10, - "min_markup": 0.002658068109447345, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 985.9342694636125, - "auto_unstuck_ema_dist": -0.0165075907113428, - "auto_unstuck_qty_pct": 0.013184063447006945, - "auto_unstuck_wallet_exposure_threshold": 0.1913487457434161, - "backwards_tp": true, - "ema_span_0": 1227.917246956021, - "ema_span_1": 584.4472988824474, - "enabled": true, - "eprice_exp_base": 1.3781266136534174, - "eqty_exp_base": 1.251153931037694, - "grid_span": 0.23778616253835247, - "initial_eprice_ema_dist": -0.004454992589175792, - "initial_qty_pct": 0.010965863309892031, - "markup_range": 0.0045180557475988405, - "max_n_entry_orders": 8, - "min_markup": 0.004239992204731155, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/QNTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/QNTUSDT.json deleted file mode 100644 index 9c59d47a0..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/QNTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1153.4089193874636, - "auto_unstuck_ema_dist": -0.035875033846794975, - "auto_unstuck_qty_pct": 0.010263757064094459, - "auto_unstuck_wallet_exposure_threshold": 0.46729587961200386, - "backwards_tp": true, - "ema_span_0": 316.9357839604266, - "ema_span_1": 970.9396473961013, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3362876166533324, - "grid_span": 0.10102462899372266, - "initial_eprice_ema_dist": -0.005758191324436425, - "initial_qty_pct": 0.011082668241455002, - "markup_range": 0.0057278377986356415, - "max_n_entry_orders": 15, - "min_markup": 0.0030046892767935027, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/QTUMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/QTUMUSDT.json deleted file mode 100644 index 577d72a53..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/QTUMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1312.3497217836286, - "auto_unstuck_ema_dist": -0.031246757663110407, - "auto_unstuck_qty_pct": 0.010847358243222999, - "auto_unstuck_wallet_exposure_threshold": 0.4280809710123283, - "backwards_tp": true, - "ema_span_0": 905.275802239915, - "ema_span_1": 17.12640696902039, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.444814769058541, - "grid_span": 0.21620371108947897, - "initial_eprice_ema_dist": 0.0022365676265164425, - "initial_qty_pct": 0.013024735250668391, - "markup_range": 0.008442345102329359, - "max_n_entry_orders": 9, - "min_markup": 0.007724275004453045, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.6807818207787, - "auto_unstuck_ema_dist": -0.006778335727737885, - "auto_unstuck_qty_pct": 0.014087701589334754, - "auto_unstuck_wallet_exposure_threshold": 0.13123791548024152, - "backwards_tp": true, - "ema_span_0": 1227.3728686012935, - "ema_span_1": 1129.9829631455764, - "enabled": true, - "eprice_exp_base": 1.0788617301729184, - "eqty_exp_base": 2.8442772777773904, - "grid_span": 0.17214574961987536, - "initial_eprice_ema_dist": -0.0008494689085988029, - "initial_qty_pct": 0.010347078653780381, - "markup_range": 0.002123747989666032, - "max_n_entry_orders": 8, - "min_markup": 0.008717136677346285, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RADUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RADUSDT.json deleted file mode 100644 index 6cb5748db..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RADUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 398.82361184535074, - "auto_unstuck_ema_dist": -0.0018062727097298815, - "auto_unstuck_qty_pct": 0.06035714231382467, - "auto_unstuck_wallet_exposure_threshold": 0.18489938277491794, - "backwards_tp": true, - "ema_span_0": 942.5494609680151, - "ema_span_1": 957.4417034642877, - "enabled": true, - "eprice_exp_base": 1.1931781533327768, - "eqty_exp_base": 1.0964573436703675, - "grid_span": 0.12559083611289854, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.020902081014903626, - "markup_range": 0.001371605517100114, - "max_n_entry_orders": 9, - "min_markup": 0.003971431275240029, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RAYUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RAYUSDT.json deleted file mode 100644 index d219dbf60..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RAYUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RDNTUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RDNTUSDT.json deleted file mode 100644 index 7588cd523..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RDNTUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1324.6270592339595, - "auto_unstuck_ema_dist": -0.025779479392994912, - "auto_unstuck_qty_pct": 0.010009286530486914, - "auto_unstuck_wallet_exposure_threshold": 0.38060086753670347, - "backwards_tp": true, - "ema_span_0": 312.8396794375856, - "ema_span_1": 688.2694252914063, - "enabled": true, - "eprice_exp_base": 1.114720060694354, - "eqty_exp_base": 1.6975759240105652, - "grid_span": 0.10560099667352332, - "initial_eprice_ema_dist": 0.0029991156478442567, - "initial_qty_pct": 0.010561002277241976, - "markup_range": 0.0030849742069951865, - "max_n_entry_orders": 7, - "min_markup": 0.006111449695768695, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/REEFUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/REEFUSDT.json deleted file mode 100644 index 8370ad74a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/REEFUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1319.5334467681841, - "auto_unstuck_ema_dist": -0.03962978897027502, - "auto_unstuck_qty_pct": 0.014304096053519982, - "auto_unstuck_wallet_exposure_threshold": 0.8060863175421003, - "backwards_tp": true, - "ema_span_0": 1310.3036036326434, - "ema_span_1": 1048.301378276395, - "enabled": true, - "eprice_exp_base": 1.2015984811282348, - "eqty_exp_base": 1.6270726549779497, - "grid_span": 0.25742975024377085, - "initial_eprice_ema_dist": -0.0020815060164468425, - "initial_qty_pct": 0.010219888813938467, - "markup_range": 0.011345722573192685, - "max_n_entry_orders": 9, - "min_markup": 0.009540359804499406, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 799.9569792006992, - "auto_unstuck_ema_dist": -0.018597537646096538, - "auto_unstuck_qty_pct": 0.055220276487529585, - "auto_unstuck_wallet_exposure_threshold": 0.19955577235205618, - "backwards_tp": true, - "ema_span_0": 1008.0914015796933, - "ema_span_1": 1083.336836507491, - "enabled": true, - "eprice_exp_base": 1.143424545343761, - "eqty_exp_base": 1.5799199348833062, - "grid_span": 0.17527323178873047, - "initial_eprice_ema_dist": -0.0058279511456999075, - "initial_qty_pct": 0.017128542485555447, - "markup_range": 0.010000873003413202, - "max_n_entry_orders": 10, - "min_markup": 0.005966950872680734, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RENUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RENUSDT.json deleted file mode 100644 index 708c8ad01..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RENUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1215.8674491480372, - "auto_unstuck_ema_dist": -0.0006139669812987997, - "auto_unstuck_qty_pct": 0.010590603991377324, - "auto_unstuck_wallet_exposure_threshold": 0.6099607562719934, - "backwards_tp": true, - "ema_span_0": 824.8894632930865, - "ema_span_1": 1053.8338125773316, - "enabled": true, - "eprice_exp_base": 1.2434732066066212, - "eqty_exp_base": 1.655098138343607, - "grid_span": 0.3355546536326009, - "initial_eprice_ema_dist": 0.000748779441651774, - "initial_qty_pct": 0.010246135371272787, - "markup_range": 0.007839754342224422, - "max_n_entry_orders": 7, - "min_markup": 0.004654051822706137, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1199.9080616387016, - "auto_unstuck_ema_dist": -0.03507509777516482, - "auto_unstuck_qty_pct": 0.022324389759606104, - "auto_unstuck_wallet_exposure_threshold": 0.29961807344140684, - "backwards_tp": true, - "ema_span_0": 1388.2391966489122, - "ema_span_1": 315.00390266705153, - "enabled": true, - "eprice_exp_base": 1.0171814612107146, - "eqty_exp_base": 1.1353243788110425, - "grid_span": 0.36985212169674553, - "initial_eprice_ema_dist": -0.0147381990475575, - "initial_qty_pct": 0.011715126451239505, - "markup_range": 0.020188909007844397, - "max_n_entry_orders": 14, - "min_markup": 0.009386114628477011, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RLCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RLCUSDT.json deleted file mode 100644 index ef5fdb41a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RLCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1359.865111746556, - "auto_unstuck_ema_dist": -0.024432363676496135, - "auto_unstuck_qty_pct": 0.03818398249066142, - "auto_unstuck_wallet_exposure_threshold": 0.38328172570622776, - "backwards_tp": true, - "ema_span_0": 1203.9786749852396, - "ema_span_1": 346.3897291875812, - "enabled": true, - "eprice_exp_base": 1.187237633146482, - "eqty_exp_base": 1.77607062388131, - "grid_span": 0.2627357334664271, - "initial_eprice_ema_dist": -0.00480409368475211, - "initial_qty_pct": 0.01393058762031163, - "markup_range": 0.006500765059064155, - "max_n_entry_orders": 8, - "min_markup": 0.009969209388037796, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1295.2692215160118, - "auto_unstuck_ema_dist": -0.051344408040020814, - "auto_unstuck_qty_pct": 0.012291889435639577, - "auto_unstuck_wallet_exposure_threshold": 0.21325152271974743, - "backwards_tp": true, - "ema_span_0": 203.82529602249483, - "ema_span_1": 336.15413796617264, - "enabled": true, - "eprice_exp_base": 1.2060065332372203, - "eqty_exp_base": 1.3818974114628182, - "grid_span": 0.3240929742509973, - "initial_eprice_ema_dist": 0.0022540385213522494, - "initial_qty_pct": 0.010046256601711908, - "markup_range": 0.010895039801416035, - "max_n_entry_orders": 10, - "min_markup": 0.0031595093254374964, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RNDRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RNDRUSDT.json deleted file mode 100644 index d04b26b18..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RNDRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 757.5472680635052, - "auto_unstuck_ema_dist": -0.004223316574321021, - "auto_unstuck_qty_pct": 0.010413001608035585, - "auto_unstuck_wallet_exposure_threshold": 0.8712258283109319, - "backwards_tp": true, - "ema_span_0": 1374.0295619157143, - "ema_span_1": 1071.3200200427025, - "enabled": true, - "eprice_exp_base": 1.0113228422301999, - "eqty_exp_base": 1, - "grid_span": 0.3306204232868015, - "initial_eprice_ema_dist": 0.0029622121293401537, - "initial_qty_pct": 0.013703372663171376, - "markup_range": 0.0005178138983778403, - "max_n_entry_orders": 8, - "min_markup": 0.006396848167295301, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ROSEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ROSEUSDT.json deleted file mode 100644 index bbf9fe2d2..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ROSEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1215.8674491480372, - "auto_unstuck_ema_dist": -0.0006139669812987997, - "auto_unstuck_qty_pct": 0.010590603991377324, - "auto_unstuck_wallet_exposure_threshold": 0.6099607562719934, - "backwards_tp": true, - "ema_span_0": 824.8894632930865, - "ema_span_1": 1053.8338125773316, - "enabled": true, - "eprice_exp_base": 1.2434732066066212, - "eqty_exp_base": 1.655098138343607, - "grid_span": 0.3355546536326009, - "initial_eprice_ema_dist": 0.000748779441651774, - "initial_qty_pct": 0.010246135371272787, - "markup_range": 0.007839754342224422, - "max_n_entry_orders": 7, - "min_markup": 0.004654051822706137, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.2186661925077, - "auto_unstuck_ema_dist": -0.0934750257166494, - "auto_unstuck_qty_pct": 0.03224513039791049, - "auto_unstuck_wallet_exposure_threshold": 0.15770154600814495, - "backwards_tp": true, - "ema_span_0": 1349.2901787249195, - "ema_span_1": 1070.06420992335, - "enabled": true, - "eprice_exp_base": 1.296171087672084, - "eqty_exp_base": 3.9822375184209213, - "grid_span": 0.10851564083207263, - "initial_eprice_ema_dist": 0.00044471489783528395, - "initial_qty_pct": 0.012984863540821682, - "markup_range": 0.003038702058401756, - "max_n_entry_orders": 7, - "min_markup": 0.0039073711030456265, - "n_close_orders": 14, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RSRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RSRUSDT.json deleted file mode 100644 index 2ee812f43..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RSRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 787.8331786172365, - "auto_unstuck_ema_dist": -0.03667792420395926, - "auto_unstuck_qty_pct": 0.015701803652422408, - "auto_unstuck_wallet_exposure_threshold": 0.2366608266262224, - "backwards_tp": true, - "ema_span_0": 1408.695261728532, - "ema_span_1": 1371.4335463754119, - "enabled": true, - "eprice_exp_base": 1.028828281639147, - "eqty_exp_base": 1.8128074445730387, - "grid_span": 0.24550538193223348, - "initial_eprice_ema_dist": 0.0020315599365626704, - "initial_qty_pct": 0.010578020662333943, - "markup_range": 0.008288451334210495, - "max_n_entry_orders": 11, - "min_markup": 0.008739490567265194, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1171.8660327078721, - "auto_unstuck_ema_dist": 0.0010404359098154367, - "auto_unstuck_qty_pct": 0.03744987471117407, - "auto_unstuck_wallet_exposure_threshold": 0.28900607896078573, - "backwards_tp": true, - "ema_span_0": 1439.9879454262705, - "ema_span_1": 1219.8504923696867, - "enabled": true, - "eprice_exp_base": 1.1366278697386527, - "eqty_exp_base": 3.776143260983698, - "grid_span": 0.14105408675979655, - "initial_eprice_ema_dist": -0.0035661931599020873, - "initial_qty_pct": 0.012631971453531747, - "markup_range": 0.010597028703543954, - "max_n_entry_orders": 9, - "min_markup": 0.003366953304513386, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RUNEUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RUNEUSDT.json deleted file mode 100644 index ca100d441..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RUNEUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1265.7838754296538, - "auto_unstuck_ema_dist": -0.06471473431395526, - "auto_unstuck_qty_pct": 0.010464331949163241, - "auto_unstuck_wallet_exposure_threshold": 0.17464091478002294, - "backwards_tp": true, - "ema_span_0": 943.2448356148792, - "ema_span_1": 820.8819738892381, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.0087265176135896, - "grid_span": 0.1940170791808782, - "initial_eprice_ema_dist": -0.00015488096602346368, - "initial_qty_pct": 0.012758286055725376, - "markup_range": 0.010366993385046798, - "max_n_entry_orders": 10, - "min_markup": 0.0098001174850661, - "n_close_orders": 14, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1276.9585492362228, - "auto_unstuck_ema_dist": 0.0003589026186420672, - "auto_unstuck_qty_pct": 0.01065341279786918, - "auto_unstuck_wallet_exposure_threshold": 0.4485184935411343, - "backwards_tp": true, - "ema_span_0": 1404.741127860066, - "ema_span_1": 433.3044015504771, - "enabled": true, - "eprice_exp_base": 1.0494553587184254, - "eqty_exp_base": 2.776739073463017, - "grid_span": 0.23922085689837175, - "initial_eprice_ema_dist": 0.0021016467250918234, - "initial_qty_pct": 0.010724779268518572, - "markup_range": 0.003095913404981876, - "max_n_entry_orders": 7, - "min_markup": 0.008272653452198245, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/RVNUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/RVNUSDT.json deleted file mode 100644 index 1c32202d9..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/RVNUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 795.0419619583977, - "auto_unstuck_ema_dist": -0.012185073699571601, - "auto_unstuck_qty_pct": 0.07793865642594063, - "auto_unstuck_wallet_exposure_threshold": 0.47055444845513483, - "backwards_tp": true, - "ema_span_0": 1176.5013188268395, - "ema_span_1": 196.5069012418368, - "enabled": true, - "eprice_exp_base": 1.2378952091651447, - "eqty_exp_base": 2.69033856398592, - "grid_span": 0.13414227534151912, - "initial_eprice_ema_dist": 0.0016733799696385745, - "initial_qty_pct": 0.012069046921024227, - "markup_range": 0.007024380224601529, - "max_n_entry_orders": 10, - "min_markup": 0.008028859213314568, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.6195178448218, - "auto_unstuck_ema_dist": -0.05329308834922489, - "auto_unstuck_qty_pct": 0.01028687095982004, - "auto_unstuck_wallet_exposure_threshold": 0.1612968628983515, - "backwards_tp": true, - "ema_span_0": 1105.9794454104913, - "ema_span_1": 1178.7846977186944, - "enabled": true, - "eprice_exp_base": 1.446324711038944, - "eqty_exp_base": 1.2549518596080058, - "grid_span": 0.6741365849008261, - "initial_eprice_ema_dist": -0.002295370513127635, - "initial_qty_pct": 0.010251643347550453, - "markup_range": 0.0020838086317695377, - "max_n_entry_orders": 8, - "min_markup": 0.008795100719743768, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SANDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SANDUSDT.json deleted file mode 100644 index 27990900b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SANDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1264.832731300227, - "auto_unstuck_ema_dist": -0.08083792347406027, - "auto_unstuck_qty_pct": 0.012853547037121455, - "auto_unstuck_wallet_exposure_threshold": 0.5582109765618942, - "backwards_tp": true, - "ema_span_0": 541.567614510742, - "ema_span_1": 1078.5296328393224, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.0005819440698485, - "grid_span": 0.2711056474770498, - "initial_eprice_ema_dist": 0.002985660919622032, - "initial_qty_pct": 0.013813961403116136, - "markup_range": 0.0033777601558035272, - "max_n_entry_orders": 10, - "min_markup": 0.005815912498007505, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 603.1261327795357, - "auto_unstuck_ema_dist": -0.057317463828889366, - "auto_unstuck_qty_pct": 0.030776800618082897, - "auto_unstuck_wallet_exposure_threshold": 0.19047105659230218, - "backwards_tp": true, - "ema_span_0": 206.14370830995782, - "ema_span_1": 1293.9825053636023, - "enabled": true, - "eprice_exp_base": 1.1431363046283236, - "eqty_exp_base": 2.6972021556306, - "grid_span": 0.30806669890302874, - "initial_eprice_ema_dist": 0.0008569057795887365, - "initial_qty_pct": 0.01699016554809015, - "markup_range": 0.004984061516137819, - "max_n_entry_orders": 13, - "min_markup": 0.007671250609814428, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SCUSDT.json deleted file mode 100644 index d63c54b1a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 333.7677665929856, - "auto_unstuck_ema_dist": -0.034072364725076534, - "auto_unstuck_qty_pct": 0.014338966443840764, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1182.567880880961, - "ema_span_1": 1363.9291802341522, - "enabled": true, - "eprice_exp_base": 1.0952776938803748, - "eqty_exp_base": 1.2146749890020476, - "grid_span": 0.18468912919149277, - "initial_eprice_ema_dist": 0.0024429343458894867, - "initial_qty_pct": 0.011304033697976485, - "markup_range": 0.014904471381139853, - "max_n_entry_orders": 11, - "min_markup": 0.0021991312484550803, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SFPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SFPUSDT.json deleted file mode 100644 index c8457e46a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SFPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1180.4143008587052, - "auto_unstuck_ema_dist": -0.0072829188030556, - "auto_unstuck_qty_pct": 0.035388540685019704, - "auto_unstuck_wallet_exposure_threshold": 0.4827186386113767, - "backwards_tp": true, - "ema_span_0": 1351.7128061570616, - "ema_span_1": 1320.3575534468598, - "enabled": true, - "eprice_exp_base": 1.0971974421561008, - "eqty_exp_base": 1.2590542827807982, - "grid_span": 0.3746593691122134, - "initial_eprice_ema_dist": -0.004576176826046393, - "initial_qty_pct": 0.01399400518333405, - "markup_range": 0.009667579948755854, - "max_n_entry_orders": 9, - "min_markup": 0.002089181920334615, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 884.8447776570468, - "auto_unstuck_ema_dist": -0.07900209417896203, - "auto_unstuck_qty_pct": 0.06186831955773328, - "auto_unstuck_wallet_exposure_threshold": 0.508315606255378, - "backwards_tp": true, - "ema_span_0": 71.62350200600264, - "ema_span_1": 25.15174163865426, - "enabled": true, - "eprice_exp_base": 1.0142594569754666, - "eqty_exp_base": 3.649565085146125, - "grid_span": 0.13334919204060128, - "initial_eprice_ema_dist": -0.08488892931109529, - "initial_qty_pct": 0.010451719365528203, - "markup_range": 0.0032805974896529242, - "max_n_entry_orders": 9, - "min_markup": 0.0022761781494163853, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SKLUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SKLUSDT.json deleted file mode 100644 index 114a5d221..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SKLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1131.0015267851397, - "auto_unstuck_ema_dist": -0.01859596413323666, - "auto_unstuck_qty_pct": 0.02595210471203942, - "auto_unstuck_wallet_exposure_threshold": 0.2623799879648312, - "backwards_tp": true, - "ema_span_0": 899.0026815371901, - "ema_span_1": 1125.307982244615, - "enabled": true, - "eprice_exp_base": 1.0541779740942405, - "eqty_exp_base": 2.5720941056223525, - "grid_span": 0.174508531856097, - "initial_eprice_ema_dist": -0.0015518626326071123, - "initial_qty_pct": 0.011270553964198814, - "markup_range": 0.01243371291639932, - "max_n_entry_orders": 8, - "min_markup": 0.009263338040545684, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1404.8080506041126, - "auto_unstuck_ema_dist": 0.0024021651085153637, - "auto_unstuck_qty_pct": 0.0655475504893073, - "auto_unstuck_wallet_exposure_threshold": 0.6938169675657705, - "backwards_tp": true, - "ema_span_0": 621.114505794897, - "ema_span_1": 597.537488178896, - "enabled": true, - "eprice_exp_base": 1.0324705725421244, - "eqty_exp_base": 3.857195030482052, - "grid_span": 0.249506183259775, - "initial_eprice_ema_dist": 0.0029839591267611884, - "initial_qty_pct": 0.032495308699055, - "markup_range": 0.0007741565912191382, - "max_n_entry_orders": 9, - "min_markup": 0.007918943438885348, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SNXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SNXUSDT.json deleted file mode 100644 index ec60663f3..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SNXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1172.076881059696, - "auto_unstuck_ema_dist": -0.030649119106413502, - "auto_unstuck_qty_pct": 0.010476690975528039, - "auto_unstuck_wallet_exposure_threshold": 0.39786129304483797, - "backwards_tp": true, - "ema_span_0": 399.0713694743538, - "ema_span_1": 401.81939037800004, - "enabled": true, - "eprice_exp_base": 1.1193394360064075, - "eqty_exp_base": 1.3999177144726729, - "grid_span": 0.26333910388927434, - "initial_eprice_ema_dist": -0.008522957329779665, - "initial_qty_pct": 0.013039812107477552, - "markup_range": 0.008402166816178527, - "max_n_entry_orders": 7, - "min_markup": 0.004114684444119201, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 588.7421095814785, - "auto_unstuck_ema_dist": -0.025370088603363913, - "auto_unstuck_qty_pct": 0.02967467661795904, - "auto_unstuck_wallet_exposure_threshold": 0.1286684245685954, - "backwards_tp": true, - "ema_span_0": 16.492111569470666, - "ema_span_1": 1161.2555541952477, - "enabled": true, - "eprice_exp_base": 1.139474579381085, - "eqty_exp_base": 1.6709866630057106, - "grid_span": 0.4005802186055973, - "initial_eprice_ema_dist": 0.0009348669026815328, - "initial_qty_pct": 0.0138647650719264, - "markup_range": 0.011957096314795305, - "max_n_entry_orders": 8, - "min_markup": 0.00894632431408863, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SOLUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SOLUSDT.json deleted file mode 100644 index ce1c0b036..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SOLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 876.3654619128816, - "auto_unstuck_ema_dist": -0.040509714258552265, - "auto_unstuck_qty_pct": 0.07112239617753563, - "auto_unstuck_wallet_exposure_threshold": 0.45237549886773865, - "backwards_tp": true, - "ema_span_0": 1148.4614406861356, - "ema_span_1": 1341.529216066698, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.6141386932344757, - "grid_span": 0.10922007013232837, - "initial_eprice_ema_dist": -0.0019916528871238765, - "initial_qty_pct": 0.014712426127604265, - "markup_range": 0.0039634053692942355, - "max_n_entry_orders": 8, - "min_markup": 0.004904881511914777, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1418.6562462352065, - "auto_unstuck_ema_dist": -0.010470212167376786, - "auto_unstuck_qty_pct": 0.01415059629736314, - "auto_unstuck_wallet_exposure_threshold": 0.11782315379780525, - "backwards_tp": true, - "ema_span_0": 1164.6212365288327, - "ema_span_1": 105.65666924479203, - "enabled": true, - "eprice_exp_base": 1.0109543575180266, - "eqty_exp_base": 1.0364562994716724, - "grid_span": 0.14634275259638022, - "initial_eprice_ema_dist": 0.002998965557466333, - "initial_qty_pct": 0.014359937543700914, - "markup_range": 0.0004219128490180443, - "max_n_entry_orders": 7, - "min_markup": 0.0014767028993130347, - "n_close_orders": 3, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SPELLUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SPELLUSDT.json deleted file mode 100644 index 1214c53e9..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SPELLUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 724.9952620857599, - "auto_unstuck_ema_dist": -0.009412852770201562, - "auto_unstuck_qty_pct": 0.013710698282969577, - "auto_unstuck_wallet_exposure_threshold": 0.19993580440002118, - "backwards_tp": true, - "ema_span_0": 1021.063058531578, - "ema_span_1": 1427.5059348230843, - "enabled": true, - "eprice_exp_base": 1.1709333618683002, - "eqty_exp_base": 1.2727312289052846, - "grid_span": 0.16615323718905609, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01819571321711823, - "markup_range": 0.004992543479838617, - "max_n_entry_orders": 7, - "min_markup": 0.0038858885051931296, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 694.5776174271347, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.8516850225357508, - "backwards_tp": true, - "ema_span_0": 781.0838183820601, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.007066412432970459, - "initial_qty_pct": 0.01, - "markup_range": 0.007894010406167714, - "max_n_entry_orders": 21, - "min_markup": 0.0028096975912699877, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SRMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SRMUSDT.json deleted file mode 100644 index b77d8afef..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SRMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1348.1645182578902, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.019282574436315286, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 217.7660549162885, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.598458917338344, - "grid_span": 0.29473183417962856, - "initial_eprice_ema_dist": -0.008308278247972482, - "initial_qty_pct": 0.01, - "markup_range": 0.0015446755748809576, - "max_n_entry_orders": 11, - "min_markup": 0.003934544128024333, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.9447745660573, - "auto_unstuck_ema_dist": -0.014614502702101335, - "auto_unstuck_qty_pct": 0.01661511462751747, - "auto_unstuck_wallet_exposure_threshold": 0.4367564656424801, - "backwards_tp": true, - "ema_span_0": 1377.1724191049236, - "ema_span_1": 904.7743747036709, - "enabled": true, - "eprice_exp_base": 1.2844196746243386, - "eqty_exp_base": 1.6525884050686455, - "grid_span": 0.4425860447472405, - "initial_eprice_ema_dist": 0.0009022720849045805, - "initial_qty_pct": 0.010001758155469056, - "markup_range": 0.008902967231539416, - "max_n_entry_orders": 9, - "min_markup": 0.0074502696582370315, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SSVUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SSVUSDT.json deleted file mode 100644 index 97f800cb2..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SSVUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 740.0184218517647, - "auto_unstuck_ema_dist": 0.0029766917451857977, - "auto_unstuck_qty_pct": 0.010123668349159533, - "auto_unstuck_wallet_exposure_threshold": 0.1527279931044989, - "backwards_tp": true, - "ema_span_0": 1268.5006641467548, - "ema_span_1": 1356.3795616152556, - "enabled": true, - "eprice_exp_base": 1.0892634932428413, - "eqty_exp_base": 1.6837745481665294, - "grid_span": 0.26160902452411716, - "initial_eprice_ema_dist": -0.006515467825257201, - "initial_qty_pct": 0.01723314692378033, - "markup_range": 0.005048302095099893, - "max_n_entry_orders": 10, - "min_markup": 0.00851579864663394, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/STGUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/STGUSDT.json deleted file mode 100644 index 77b835059..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/STGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.307031833748, - "auto_unstuck_ema_dist": -0.012435443488528533, - "auto_unstuck_qty_pct": 0.012511551338462903, - "auto_unstuck_wallet_exposure_threshold": 0.6200303452867397, - "backwards_tp": true, - "ema_span_0": 1223.7491034942766, - "ema_span_1": 1185.0332221577303, - "enabled": true, - "eprice_exp_base": 1.0033366336805396, - "eqty_exp_base": 3.291597029505056, - "grid_span": 0.14745071175982866, - "initial_eprice_ema_dist": 0.002837042259130256, - "initial_qty_pct": 0.010025837313728908, - "markup_range": 0.002507629438487384, - "max_n_entry_orders": 19, - "min_markup": 0.008565624894416276, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.4411702489633, - "auto_unstuck_ema_dist": -0.004617109849520608, - "auto_unstuck_qty_pct": 0.01648366731345862, - "auto_unstuck_wallet_exposure_threshold": 0.7094846767314997, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1438.151047326744, - "enabled": true, - "eprice_exp_base": 1.2439694930330072, - "eqty_exp_base": 1.231452107109689, - "grid_span": 0.4365969496517578, - "initial_eprice_ema_dist": -0.0019017444320947494, - "initial_qty_pct": 0.01, - "markup_range": 0.003842107206680762, - "max_n_entry_orders": 9, - "min_markup": 0.001638247139852082, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/STMXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/STMXUSDT.json deleted file mode 100644 index 21f4b6093..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/STMXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.6873097451435, - "auto_unstuck_ema_dist": -0.008960377763974401, - "auto_unstuck_qty_pct": 0.018710940226582512, - "auto_unstuck_wallet_exposure_threshold": 0.18971281109312993, - "backwards_tp": true, - "ema_span_0": 60.03772161351416, - "ema_span_1": 1190.4675258476373, - "enabled": true, - "eprice_exp_base": 1.2008545071500585, - "eqty_exp_base": 2.0366095527917594, - "grid_span": 0.2406939573172345, - "initial_eprice_ema_dist": 0.002815561363705389, - "initial_qty_pct": 0.012504443843115734, - "markup_range": 0.004268329742834503, - "max_n_entry_orders": 9, - "min_markup": 0.009816126119305007, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 662.0328807482778, - "auto_unstuck_ema_dist": -0.03388835151083124, - "auto_unstuck_qty_pct": 0.02677403800493677, - "auto_unstuck_wallet_exposure_threshold": 0.4475004713668104, - "backwards_tp": true, - "ema_span_0": 1270.7261560421712, - "ema_span_1": 1161.190969744062, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3913394067679532, - "grid_span": 0.2612877525914638, - "initial_eprice_ema_dist": 0.0016097517798800234, - "initial_qty_pct": 0.011654600089727057, - "markup_range": 0.01808686260285191, - "max_n_entry_orders": 9, - "min_markup": 0.005755808458607143, - "n_close_orders": 16, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/STORJUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/STORJUSDT.json deleted file mode 100644 index e53765877..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/STORJUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.8286138645863, - "auto_unstuck_ema_dist": -0.03167917107753195, - "auto_unstuck_qty_pct": 0.010031098663233208, - "auto_unstuck_wallet_exposure_threshold": 0.4355973655881478, - "backwards_tp": true, - "ema_span_0": 295.5056321285007, - "ema_span_1": 1298.5688726391509, - "enabled": true, - "eprice_exp_base": 1.0000045340969284, - "eqty_exp_base": 1.0000283574401247, - "grid_span": 0.3435530056156494, - "initial_eprice_ema_dist": -0.007940117997979262, - "initial_qty_pct": 0.011227407190278635, - "markup_range": 0.0028450303486692715, - "max_n_entry_orders": 13, - "min_markup": 0.0038002017811459947, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 724.141259930333, - "auto_unstuck_ema_dist": -0.011247593359025991, - "auto_unstuck_qty_pct": 0.042123033832560566, - "auto_unstuck_wallet_exposure_threshold": 0.21470106417199034, - "backwards_tp": true, - "ema_span_0": 505.51653264246767, - "ema_span_1": 1367.4519418730144, - "enabled": true, - "eprice_exp_base": 1.3568936087695085, - "eqty_exp_base": 1.6486698350314177, - "grid_span": 0.5859566932371087, - "initial_eprice_ema_dist": 0.0017689793678773778, - "initial_qty_pct": 0.01, - "markup_range": 0.0030694029895302287, - "max_n_entry_orders": 11, - "min_markup": 0.00903584822619388, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/STXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/STXUSDT.json deleted file mode 100644 index c4399e110..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/STXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1164.367105207233, - "auto_unstuck_ema_dist": 0.0022907218188258, - "auto_unstuck_qty_pct": 0.027460747214832215, - "auto_unstuck_wallet_exposure_threshold": 0.23691563946940694, - "backwards_tp": true, - "ema_span_0": 281.6410886581773, - "ema_span_1": 470.2248647508127, - "enabled": true, - "eprice_exp_base": 1.052812334609832, - "eqty_exp_base": 1.8618712239404998, - "grid_span": 0.14701900906761717, - "initial_eprice_ema_dist": 0.0017507444397568501, - "initial_qty_pct": 0.011083307892104348, - "markup_range": 0.00605671350196698, - "max_n_entry_orders": 8, - "min_markup": 0.008461394426644139, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1030.4646278611497, - "auto_unstuck_ema_dist": -0.019927372271882522, - "auto_unstuck_qty_pct": 0.016327172952138265, - "auto_unstuck_wallet_exposure_threshold": 0.10281409354664052, - "backwards_tp": true, - "ema_span_0": 1034.1085517786862, - "ema_span_1": 1268.6189003888871, - "enabled": true, - "eprice_exp_base": 1.17573627705497, - "eqty_exp_base": 2.1192151145887594, - "grid_span": 0.32299262066988577, - "initial_eprice_ema_dist": 3.6622486782147735e-05, - "initial_qty_pct": 0.010224569860575988, - "markup_range": 0.00669895354684023, - "max_n_entry_orders": 9, - "min_markup": 0.009672679795175559, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SUIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SUIUSDT.json deleted file mode 100644 index b665a6d0f..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SUIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1206.9360034658287, - "auto_unstuck_ema_dist": -0.08430861975643979, - "auto_unstuck_qty_pct": 0.023091958916313302, - "auto_unstuck_wallet_exposure_threshold": 0.2979783673556894, - "backwards_tp": true, - "ema_span_0": 637.1821707054264, - "ema_span_1": 419.351732678293, - "enabled": true, - "eprice_exp_base": 1.0653488300058507, - "eqty_exp_base": 1.951303976809032, - "grid_span": 0.14174977928413496, - "initial_eprice_ema_dist": -0.05978992335927225, - "initial_qty_pct": 0.01002139977666724, - "markup_range": 0.006223742839777372, - "max_n_entry_orders": 10, - "min_markup": 0.0025100563675091283, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1021.5072719725573, - "ema_span_1": 1096.9590731906615, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.069852463936631, - "grid_span": 0.2115052283616764, - "initial_eprice_ema_dist": -0.020538009352712695, - "initial_qty_pct": 0.03148989214039618, - "markup_range": 0.019311101253377226, - "max_n_entry_orders": 7, - "min_markup": 0.008213328044494116, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SUSHIUSDT.json deleted file mode 100644 index 492acf0d0..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SUSHIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1278.4254065822352, - "auto_unstuck_ema_dist": -0.029627972916044323, - "auto_unstuck_qty_pct": 0.010149460102845714, - "auto_unstuck_wallet_exposure_threshold": 0.49261238267423857, - "backwards_tp": true, - "ema_span_0": 1172.7828815354887, - "ema_span_1": 1306.9040552780662, - "enabled": true, - "eprice_exp_base": 1.002455041325814, - "eqty_exp_base": 1.996555354220001, - "grid_span": 0.12616534691015155, - "initial_eprice_ema_dist": -0.06382614152119226, - "initial_qty_pct": 0.010031129570869544, - "markup_range": 0.0029718165961309345, - "max_n_entry_orders": 10, - "min_markup": 0.002658068109447345, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1049.0922671577769, - "auto_unstuck_ema_dist": -0.03257477098789277, - "auto_unstuck_qty_pct": 0.04014405192929402, - "auto_unstuck_wallet_exposure_threshold": 0.1604101562159976, - "backwards_tp": true, - "ema_span_0": 263.80359871772464, - "ema_span_1": 1433.1591008592359, - "enabled": true, - "eprice_exp_base": 1.0680487724471739, - "eqty_exp_base": 2.242312492554522, - "grid_span": 0.15222346409125245, - "initial_eprice_ema_dist": -0.017033955310563453, - "initial_qty_pct": 0.015212036373271355, - "markup_range": 0.010060677835710834, - "max_n_entry_orders": 7, - "min_markup": 0.0012649708097019741, - "n_close_orders": 5, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/SXPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/SXPUSDT.json deleted file mode 100644 index 669aa1f2c..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/SXPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1192.7243746175718, - "auto_unstuck_ema_dist": -0.07262059299258809, - "auto_unstuck_qty_pct": 0.010596595093316962, - "auto_unstuck_wallet_exposure_threshold": 0.6548607649693498, - "backwards_tp": true, - "ema_span_0": 717.6055816404652, - "ema_span_1": 656.2221527950707, - "enabled": true, - "eprice_exp_base": 1.1878378941486958, - "eqty_exp_base": 1.0000642436906961, - "grid_span": 0.4074859147286703, - "initial_eprice_ema_dist": 0.0029993394248965842, - "initial_qty_pct": 0.010409935564324934, - "markup_range": 0.0064068879091546665, - "max_n_entry_orders": 7, - "min_markup": 0.004572919657386478, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1363.1256062159623, - "auto_unstuck_ema_dist": -0.0062457110276821284, - "auto_unstuck_qty_pct": 0.022309067051932994, - "auto_unstuck_wallet_exposure_threshold": 0.7915770920029535, - "backwards_tp": true, - "ema_span_0": 163.98869270457698, - "ema_span_1": 555.5142559278546, - "enabled": true, - "eprice_exp_base": 1.1211887337116984, - "eqty_exp_base": 3.612510369922904, - "grid_span": 0.15402442098786912, - "initial_eprice_ema_dist": 0.0025458854211192167, - "initial_qty_pct": 0.01, - "markup_range": 0.0014841702678626398, - "max_n_entry_orders": 19, - "min_markup": 0.003510232273971882, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/THETAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/THETAUSDT.json deleted file mode 100644 index a9b0cd340..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/THETAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1331.226465586936, - "auto_unstuck_ema_dist": -0.030710010040956193, - "auto_unstuck_qty_pct": 0.03676623799976378, - "auto_unstuck_wallet_exposure_threshold": 0.20764442753029602, - "backwards_tp": true, - "ema_span_0": 1186.5927337355176, - "ema_span_1": 1356.4151160645233, - "enabled": true, - "eprice_exp_base": 1.0875539616837926, - "eqty_exp_base": 1.0938030782556694, - "grid_span": 0.23278354062771792, - "initial_eprice_ema_dist": -0.0017085068565601475, - "initial_qty_pct": 0.012827758694628896, - "markup_range": 0.005819836750669177, - "max_n_entry_orders": 7, - "min_markup": 0.007150033801455687, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1158.9224472495498, - "auto_unstuck_ema_dist": -0.013233990245451228, - "auto_unstuck_qty_pct": 0.02179034666382995, - "auto_unstuck_wallet_exposure_threshold": 0.5756052275534863, - "backwards_tp": true, - "ema_span_0": 945.5398898833615, - "ema_span_1": 425.2121143624482, - "enabled": true, - "eprice_exp_base": 1.1173259258426886, - "eqty_exp_base": 1.4668930527840705, - "grid_span": 0.1997149240009991, - "initial_eprice_ema_dist": 0.0003609734427470928, - "initial_qty_pct": 0.012953554006660034, - "markup_range": 0.0005896797771401274, - "max_n_entry_orders": 8, - "min_markup": 0.007293801249275061, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/TLMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/TLMUSDT.json deleted file mode 100644 index b3a853552..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/TLMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.3699947528382, - "auto_unstuck_ema_dist": -0.07044616473225777, - "auto_unstuck_qty_pct": 0.014138674595555215, - "auto_unstuck_wallet_exposure_threshold": 0.3582822546886966, - "backwards_tp": true, - "ema_span_0": 1357.8879697613952, - "ema_span_1": 1208.1677908379454, - "enabled": true, - "eprice_exp_base": 1.0292116781885243, - "eqty_exp_base": 1.0457803499101623, - "grid_span": 0.21224632585700248, - "initial_eprice_ema_dist": 0.002977611590072709, - "initial_qty_pct": 0.011868191457964613, - "markup_range": 0.005979515810240324, - "max_n_entry_orders": 7, - "min_markup": 0.009737673233377476, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/TOMOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/TOMOUSDT.json deleted file mode 100644 index f522a352e..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/TOMOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1154.1234213866198, - "auto_unstuck_ema_dist": -0.09890884061065909, - "auto_unstuck_qty_pct": 0.018277489664642724, - "auto_unstuck_wallet_exposure_threshold": 0.6500138558074183, - "backwards_tp": true, - "ema_span_0": 13.535331207723727, - "ema_span_1": 112.52103206000228, - "enabled": true, - "eprice_exp_base": 1.0208462694847291, - "eqty_exp_base": 1.6589580057392717, - "grid_span": 0.22744709686663722, - "initial_eprice_ema_dist": -0.09418562138219089, - "initial_qty_pct": 0.010583088683055748, - "markup_range": 0.0012264937554110399, - "max_n_entry_orders": 10, - "min_markup": 0.0047886653841788, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.7769362760766, - "auto_unstuck_ema_dist": -0.02647169848132419, - "auto_unstuck_qty_pct": 0.04280351838613228, - "auto_unstuck_wallet_exposure_threshold": 0.6604276928720831, - "backwards_tp": true, - "ema_span_0": 138.87724341096947, - "ema_span_1": 1293.4642744360017, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 2.937037445042302, - "grid_span": 0.2513283005289732, - "initial_eprice_ema_dist": -0.0031264711361729497, - "initial_qty_pct": 0.010710800807726132, - "markup_range": 0.00664010498276407, - "max_n_entry_orders": 22, - "min_markup": 0.009135529138888768, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/TRBUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/TRBUSDT.json deleted file mode 100644 index 8b5471449..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/TRBUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.4282366995724, - "auto_unstuck_ema_dist": -0.044875848013224855, - "auto_unstuck_qty_pct": 0.05240307219025504, - "auto_unstuck_wallet_exposure_threshold": 0.36045190376272707, - "backwards_tp": true, - "ema_span_0": 570.9395098454575, - "ema_span_1": 769.3916393939735, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.3609288115127196, - "grid_span": 0.3918007175578283, - "initial_eprice_ema_dist": 0.0012610700563151043, - "initial_qty_pct": 0.010000198752665156, - "markup_range": 0.005873500724456789, - "max_n_entry_orders": 10, - "min_markup": 0.0010724149708929486, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1330.6876153407488, - "auto_unstuck_ema_dist": -0.01633708480899889, - "auto_unstuck_qty_pct": 0.08154322045616419, - "auto_unstuck_wallet_exposure_threshold": 0.44262599020726673, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 1440, - "enabled": true, - "eprice_exp_base": 1.4157595779917975, - "eqty_exp_base": 1.2593813182684066, - "grid_span": 0.5635023983932289, - "initial_eprice_ema_dist": -6.852170606786584e-05, - "initial_qty_pct": 0.01019571347307408, - "markup_range": 0.0058789932450676674, - "max_n_entry_orders": 9, - "min_markup": 0.003996332585736536, - "n_close_orders": 4, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/TRUUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/TRUUSDT.json deleted file mode 100644 index 2fa85335a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/TRUUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1418.009241043872, - "auto_unstuck_ema_dist": -0.004993538135800457, - "auto_unstuck_qty_pct": 0.01009656907607459, - "auto_unstuck_wallet_exposure_threshold": 0.569275149511458, - "backwards_tp": true, - "ema_span_0": 485.71648821946144, - "ema_span_1": 744.8665892294066, - "enabled": true, - "eprice_exp_base": 1.0000031993709957, - "eqty_exp_base": 1.1698898337941797, - "grid_span": 0.303493725776266, - "initial_eprice_ema_dist": -0.001774131470705545, - "initial_qty_pct": 0.010133152572590261, - "markup_range": 0.008566322536539817, - "max_n_entry_orders": 15, - "min_markup": 0.005003643386410385, - "n_close_orders": 4, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.1, - "backwards_tp": true, - "ema_span_0": 1021.5072719725573, - "ema_span_1": 1096.9590731906615, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.069852463936631, - "grid_span": 0.2115052283616764, - "initial_eprice_ema_dist": -0.020538009352712695, - "initial_qty_pct": 0.03148989214039618, - "markup_range": 0.019311101253377226, - "max_n_entry_orders": 7, - "min_markup": 0.008213328044494116, - "n_close_orders": 12, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/TRXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/TRXUSDT.json deleted file mode 100644 index 90ab201b8..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/TRXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1317.833530108166, - "auto_unstuck_ema_dist": 0.0022253383604573726, - "auto_unstuck_qty_pct": 0.022864698347810117, - "auto_unstuck_wallet_exposure_threshold": 0.44791952710155053, - "backwards_tp": true, - "ema_span_0": 613.4352069848085, - "ema_span_1": 7.135352966522534, - "enabled": true, - "eprice_exp_base": 1.096660309408078, - "eqty_exp_base": 1.0177297882573575, - "grid_span": 0.3215981331692564, - "initial_eprice_ema_dist": 0.0029991325622652698, - "initial_qty_pct": 0.01718150714828029, - "markup_range": 0.002693698828219243, - "max_n_entry_orders": 10, - "min_markup": 0.0044000032450212095, - "n_close_orders": 9, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1163.7692318321024, - "auto_unstuck_ema_dist": -0.03506228644656895, - "auto_unstuck_qty_pct": 0.046311162223676296, - "auto_unstuck_wallet_exposure_threshold": 0.20393044771326868, - "backwards_tp": true, - "ema_span_0": 794.85241064797, - "ema_span_1": 1432.8563083110164, - "enabled": true, - "eprice_exp_base": 1.0391376646346402, - "eqty_exp_base": 1, - "grid_span": 0.3695961232156646, - "initial_eprice_ema_dist": 0.0002074751794565316, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 20, - "min_markup": 0.001, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/TUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/TUSDT.json deleted file mode 100644 index 34801943a..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/TUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.7794886183383, - "auto_unstuck_ema_dist": -0.005581941244785879, - "auto_unstuck_qty_pct": 0.010170091330110483, - "auto_unstuck_wallet_exposure_threshold": 0.3806590313382323, - "backwards_tp": true, - "ema_span_0": 956.2302813651238, - "ema_span_1": 1265.2351101148524, - "enabled": true, - "eprice_exp_base": 1.051767207536531, - "eqty_exp_base": 1.7035756385736616, - "grid_span": 0.17037951780238555, - "initial_eprice_ema_dist": -0.003123429996222736, - "initial_qty_pct": 0.012441166898920027, - "markup_range": 0.0008494533549618005, - "max_n_entry_orders": 7, - "min_markup": 0.009134769067758976, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/UMAUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/UMAUSDT.json deleted file mode 100644 index f9c2edd6e..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/UMAUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 432.3714737296346, - "auto_unstuck_ema_dist": -0.010973641330839945, - "auto_unstuck_qty_pct": 0.046875994728552084, - "auto_unstuck_wallet_exposure_threshold": 0.1090054529547557, - "backwards_tp": true, - "ema_span_0": 382.0197772166958, - "ema_span_1": 208.60803891638918, - "enabled": true, - "eprice_exp_base": 1.1985954200794395, - "eqty_exp_base": 1.559468109720761, - "grid_span": 0.15764067634889126, - "initial_eprice_ema_dist": -0.034290037972096454, - "initial_qty_pct": 0.011696276461254086, - "markup_range": 0.004060581216423169, - "max_n_entry_orders": 9, - "min_markup": 0.003230267489048043, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1324.548096125597, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.7972370683779827, - "backwards_tp": true, - "ema_span_0": 876.7331039674688, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.000331797229858, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.004377725366949421, - "initial_qty_pct": 0.018677319150808995, - "markup_range": 0.012665935669425445, - "max_n_entry_orders": 7, - "min_markup": 0.01, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/UNFIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/UNFIUSDT.json deleted file mode 100644 index 53206ac22..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/UNFIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 812.1405300432821, - "auto_unstuck_ema_dist": -0.07316289199411792, - "auto_unstuck_qty_pct": 0.01351695688979675, - "auto_unstuck_wallet_exposure_threshold": 0.6839145754479681, - "backwards_tp": true, - "ema_span_0": 287.44273241602025, - "ema_span_1": 372.5358604554202, - "enabled": true, - "eprice_exp_base": 1.1092755889643573, - "eqty_exp_base": 1.689255839667313, - "grid_span": 0.2786094660494714, - "initial_eprice_ema_dist": -0.03593013325795827, - "initial_qty_pct": 0.013742862620661567, - "markup_range": 0.004518112930359438, - "max_n_entry_orders": 10, - "min_markup": 0.008188346756994458, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 574.1522734089299, - "auto_unstuck_ema_dist": -0.036297892152263096, - "auto_unstuck_qty_pct": 0.029704324331273922, - "auto_unstuck_wallet_exposure_threshold": 0.5521570942462279, - "backwards_tp": true, - "ema_span_0": 1316.278054721469, - "ema_span_1": 1343.6067142714628, - "enabled": true, - "eprice_exp_base": 1.0668769989643625, - "eqty_exp_base": 3.618822283278979, - "grid_span": 0.24471720326727442, - "initial_eprice_ema_dist": -0.020904449505339234, - "initial_qty_pct": 0.020692004944460343, - "markup_range": 0.04379121601984923, - "max_n_entry_orders": 13, - "min_markup": 0.00790857090612433, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/UNIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/UNIUSDT.json deleted file mode 100644 index c3714275b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/UNIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 678.8326372499528, - "auto_unstuck_ema_dist": -0.013869686049700933, - "auto_unstuck_qty_pct": 0.07926303810819564, - "auto_unstuck_wallet_exposure_threshold": 0.21801406607677348, - "backwards_tp": true, - "ema_span_0": 1351.7301810365768, - "ema_span_1": 1402.3226818336648, - "enabled": true, - "eprice_exp_base": 1.0473439664283335, - "eqty_exp_base": 2.540264306756613, - "grid_span": 0.14961277443779714, - "initial_eprice_ema_dist": 0.0015202791631221235, - "initial_qty_pct": 0.012036139742881627, - "markup_range": 0.005789921617306945, - "max_n_entry_orders": 8, - "min_markup": 0.009206686868343621, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1197.0084432470494, - "auto_unstuck_ema_dist": -0.01977702103604026, - "auto_unstuck_qty_pct": 0.02213996812425767, - "auto_unstuck_wallet_exposure_threshold": 0.4117735089414276, - "backwards_tp": true, - "ema_span_0": 1440, - "ema_span_1": 1166.7984565468903, - "enabled": true, - "eprice_exp_base": 1.0355349511711107, - "eqty_exp_base": 3.2494571228404556, - "grid_span": 0.14464679065612565, - "initial_eprice_ema_dist": -0.0006171833028433106, - "initial_qty_pct": 0.011144270788398733, - "markup_range": 0.009702953567933012, - "max_n_entry_orders": 8, - "min_markup": 0.00572257576984019, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/USDCUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/USDCUSDT.json deleted file mode 100644 index 6ed18acca..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/USDCUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 405.24146898117715, - "auto_unstuck_ema_dist": -0.03885698302425642, - "auto_unstuck_qty_pct": 0.03476111629371799, - "auto_unstuck_wallet_exposure_threshold": 0.8526861756891532, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 131.29014773750748, - "enabled": true, - "eprice_exp_base": 1.367806009208528, - "eqty_exp_base": 2.7218335748962565, - "grid_span": 0.1478827475632273, - "initial_eprice_ema_dist": -0.07911455948944206, - "initial_qty_pct": 0.034924917518855236, - "markup_range": 0.04165581518122997, - "max_n_entry_orders": 12, - "min_markup": 0.001, - "n_close_orders": 16, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 930.2434764891894, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.06035040116241251, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 671.0177112498625, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.3717625649798975, - "eqty_exp_base": 3.344488665295607, - "grid_span": 0.12479961039908576, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.05, - "markup_range": 0.0026779029034888196, - "max_n_entry_orders": 10, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/VETUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/VETUSDT.json deleted file mode 100644 index f332b75f3..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/VETUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1232.8988841979901, - "auto_unstuck_ema_dist": -0.016748364003455786, - "auto_unstuck_qty_pct": 0.011155559136564472, - "auto_unstuck_wallet_exposure_threshold": 0.680732371421344, - "backwards_tp": true, - "ema_span_0": 748.4978236668502, - "ema_span_1": 524.1979616418802, - "enabled": true, - "eprice_exp_base": 1.0000088753984597, - "eqty_exp_base": 2.1280622372741735, - "grid_span": 0.17889505470021103, - "initial_eprice_ema_dist": 0.0029999672120743057, - "initial_qty_pct": 0.01591926851963001, - "markup_range": 0.0014520739419980643, - "max_n_entry_orders": 9, - "min_markup": 0.0028487964278350653, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 844.6735140222436, - "auto_unstuck_ema_dist": -0.050682365536735524, - "auto_unstuck_qty_pct": 0.011256864773887237, - "auto_unstuck_wallet_exposure_threshold": 0.5631969606218243, - "backwards_tp": true, - "ema_span_0": 474.0006872263979, - "ema_span_1": 525.6845101410929, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.9829112789352865, - "grid_span": 0.1470607905358417, - "initial_eprice_ema_dist": -0.0006675440366171993, - "initial_qty_pct": 0.018429023287435033, - "markup_range": 0.0017750102541910708, - "max_n_entry_orders": 22, - "min_markup": 0.0018067754350627292, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/WAVESUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/WAVESUSDT.json deleted file mode 100644 index b523ed955..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/WAVESUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1196.2251260134847, - "auto_unstuck_ema_dist": -0.02233595261660813, - "auto_unstuck_qty_pct": 0.010203513346407093, - "auto_unstuck_wallet_exposure_threshold": 0.6033438116771447, - "backwards_tp": true, - "ema_span_0": 43.15021004348335, - "ema_span_1": 165.4137955730145, - "enabled": true, - "eprice_exp_base": 1.000017606485477, - "eqty_exp_base": 1.9076799393723978, - "grid_span": 0.10018369782933174, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013573373371142968, - "markup_range": 9.279685691963764e-05, - "max_n_entry_orders": 8, - "min_markup": 0.005365995149080274, - "n_close_orders": 7, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1197.1887042498545, - "auto_unstuck_ema_dist": -0.00622851304293964, - "auto_unstuck_qty_pct": 0.012245719963185313, - "auto_unstuck_wallet_exposure_threshold": 0.815090431482032, - "backwards_tp": true, - "ema_span_0": 536.4895670469635, - "ema_span_1": 1109.4635283135494, - "enabled": true, - "eprice_exp_base": 1.2886711680672585, - "eqty_exp_base": 3.9915672532287307, - "grid_span": 0.6225645604437261, - "initial_eprice_ema_dist": -0.032459960755709345, - "initial_qty_pct": 0.010005307705275858, - "markup_range": 0.013859015965524376, - "max_n_entry_orders": 7, - "min_markup": 0.005227390267095897, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/WLDUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/WLDUSDT.json deleted file mode 100644 index b7ca3be57..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/WLDUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 637.4334725193053, - "auto_unstuck_ema_dist": 0.0029206150728870797, - "auto_unstuck_qty_pct": 0.04471387746939395, - "auto_unstuck_wallet_exposure_threshold": 0.368480685246695, - "backwards_tp": true, - "ema_span_0": 331.25759167079394, - "ema_span_1": 225.46879900833596, - "enabled": true, - "eprice_exp_base": 1.0611887524199195, - "eqty_exp_base": 1.1659600867893172, - "grid_span": 0.15568157472849578, - "initial_eprice_ema_dist": -0.07767221057817625, - "initial_qty_pct": 0.01, - "markup_range": 0.003646386009442566, - "max_n_entry_orders": 9, - "min_markup": 0.0024609264687381915, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.06337506627975241, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.44695035858961035, - "backwards_tp": true, - "ema_span_0": 5, - "ema_span_1": 702.2496129108964, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.6456289857918422, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.09277932421361938, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "max_n_entry_orders": 16, - "min_markup": 0.008204208203563523, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/WOOUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/WOOUSDT.json deleted file mode 100644 index a0d9990e6..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/WOOUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1321.8286138645863, - "auto_unstuck_ema_dist": -0.03167917107753195, - "auto_unstuck_qty_pct": 0.010031098663233208, - "auto_unstuck_wallet_exposure_threshold": 0.4355973655881478, - "backwards_tp": true, - "ema_span_0": 295.5056321285007, - "ema_span_1": 1298.5688726391509, - "enabled": true, - "eprice_exp_base": 1.0000045340969284, - "eqty_exp_base": 1.0000283574401247, - "grid_span": 0.3435530056156494, - "initial_eprice_ema_dist": -0.007940117997979262, - "initial_qty_pct": 0.011227407190278635, - "markup_range": 0.0028450303486692715, - "max_n_entry_orders": 13, - "min_markup": 0.0038002017811459947, - "n_close_orders": 11, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 678.162975373363, - "auto_unstuck_ema_dist": -0.04953831021073149, - "auto_unstuck_qty_pct": 0.021075774309723447, - "auto_unstuck_wallet_exposure_threshold": 0.3824837309941427, - "backwards_tp": true, - "ema_span_0": 1135.8915209008524, - "ema_span_1": 647.4759274692988, - "enabled": true, - "eprice_exp_base": 1.2640396733745156, - "eqty_exp_base": 1.4213196987563914, - "grid_span": 0.4049268199885872, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012557802861449786, - "markup_range": 0.005928020922128725, - "max_n_entry_orders": 9, - "min_markup": 0.007055199966333963, - "n_close_orders": 11, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XEMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XEMUSDT.json deleted file mode 100644 index a92fa3454..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XEMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.1006028740028, - "auto_unstuck_ema_dist": -0.03790953875163592, - "auto_unstuck_qty_pct": 0.021887820956178604, - "auto_unstuck_wallet_exposure_threshold": 0.17901363219758956, - "backwards_tp": true, - "ema_span_0": 1417.9508858907911, - "ema_span_1": 1253.7990369983238, - "enabled": true, - "eprice_exp_base": 1.258979057552427, - "eqty_exp_base": 1.9096623443214118, - "grid_span": 0.3812166447487835, - "initial_eprice_ema_dist": -0.0006890461314798554, - "initial_qty_pct": 0.012416096812518072, - "markup_range": 0.0035113261782222663, - "max_n_entry_orders": 8, - "min_markup": 0.008096346928210154, - "n_close_orders": 12, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 623.126819956726, - "auto_unstuck_ema_dist": -0.010922190667161416, - "auto_unstuck_qty_pct": 0.012098610151262523, - "auto_unstuck_wallet_exposure_threshold": 0.10890746646936905, - "backwards_tp": true, - "ema_span_0": 244.99074513219674, - "ema_span_1": 1114.3205322867243, - "enabled": true, - "eprice_exp_base": 1.1021157016173453, - "eqty_exp_base": 3.9977518186954897, - "grid_span": 0.10479836087159557, - "initial_eprice_ema_dist": -0.0008342868467760277, - "initial_qty_pct": 0.01828067622047387, - "markup_range": 0.006647972445654155, - "max_n_entry_orders": 11, - "min_markup": 0.009998674496324486, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XLMUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XLMUSDT.json deleted file mode 100644 index e635d7ca1..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XLMUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.31238137175, - "auto_unstuck_ema_dist": -0.015119024911923571, - "auto_unstuck_qty_pct": 0.08039112000641081, - "auto_unstuck_wallet_exposure_threshold": 0.5758136613539955, - "backwards_tp": true, - "ema_span_0": 375.78327414326486, - "ema_span_1": 193.60052305861757, - "enabled": true, - "eprice_exp_base": 1.214587112175182, - "eqty_exp_base": 1.3985953899599415, - "grid_span": 0.1921348326406074, - "initial_eprice_ema_dist": 0.0026409555733552356, - "initial_qty_pct": 0.011831419575377413, - "markup_range": 0.005971093436837054, - "max_n_entry_orders": 7, - "min_markup": 0.0030271572687066363, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1278.9447745660573, - "auto_unstuck_ema_dist": -0.014614502702101335, - "auto_unstuck_qty_pct": 0.01661511462751747, - "auto_unstuck_wallet_exposure_threshold": 0.4367564656424801, - "backwards_tp": true, - "ema_span_0": 1377.1724191049236, - "ema_span_1": 904.7743747036709, - "enabled": true, - "eprice_exp_base": 1.2844196746243386, - "eqty_exp_base": 1.6525884050686455, - "grid_span": 0.4425860447472405, - "initial_eprice_ema_dist": 0.0009022720849045805, - "initial_qty_pct": 0.010001758155469056, - "markup_range": 0.008902967231539416, - "max_n_entry_orders": 9, - "min_markup": 0.0074502696582370315, - "n_close_orders": 6, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XMRUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XMRUSDT.json deleted file mode 100644 index aa7724272..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XMRUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 598.2677947514356, - "auto_unstuck_ema_dist": -0.04609893110399657, - "auto_unstuck_qty_pct": 0.010123567719253442, - "auto_unstuck_wallet_exposure_threshold": 0.1024154079615063, - "backwards_tp": true, - "ema_span_0": 402.55872805583687, - "ema_span_1": 416.43411767122376, - "enabled": true, - "eprice_exp_base": 1.1161528887519947, - "eqty_exp_base": 1.5905756340469075, - "grid_span": 0.18153523109118677, - "initial_eprice_ema_dist": -0.016680959698188717, - "initial_qty_pct": 0.015209747553002216, - "markup_range": 0.004610308754286902, - "max_n_entry_orders": 13, - "min_markup": 0.001645743561515607, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1410.940593670589, - "auto_unstuck_ema_dist": -0.07281608439778194, - "auto_unstuck_qty_pct": 0.023258970877219003, - "auto_unstuck_wallet_exposure_threshold": 0.1367812697667717, - "backwards_tp": true, - "ema_span_0": 1231.4464720480123, - "ema_span_1": 1313.1322586860886, - "enabled": true, - "eprice_exp_base": 1.2035171545378207, - "eqty_exp_base": 3.153807577849342, - "grid_span": 0.10938390474490967, - "initial_eprice_ema_dist": -0.0004210038383766818, - "initial_qty_pct": 0.015536851964612568, - "markup_range": 0.0020031224138641677, - "max_n_entry_orders": 10, - "min_markup": 0.006649259780135027, - "n_close_orders": 13, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XRPUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XRPUSDT.json deleted file mode 100644 index 9f4378160..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XRPUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 432.3714737296346, - "auto_unstuck_ema_dist": -0.010973641330839945, - "auto_unstuck_qty_pct": 0.046875994728552084, - "auto_unstuck_wallet_exposure_threshold": 0.1090054529547557, - "backwards_tp": true, - "ema_span_0": 382.0197772166958, - "ema_span_1": 208.60803891638918, - "enabled": true, - "eprice_exp_base": 1.1985954200794395, - "eqty_exp_base": 1.559468109720761, - "grid_span": 0.15764067634889126, - "initial_eprice_ema_dist": -0.034290037972096454, - "initial_qty_pct": 0.011696276461254086, - "markup_range": 0.004060581216423169, - "max_n_entry_orders": 9, - "min_markup": 0.003230267489048043, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 321.5906863260928, - "auto_unstuck_ema_dist": -0.08835859747943298, - "auto_unstuck_qty_pct": 0.09149746804898364, - "auto_unstuck_wallet_exposure_threshold": 0.3473457410646616, - "backwards_tp": true, - "ema_span_0": 1131.0468497140118, - "ema_span_1": 1402.1140584434766, - "enabled": true, - "eprice_exp_base": 1.1639507304281498, - "eqty_exp_base": 1.1252912825043264, - "grid_span": 0.5622968308155437, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014068338273811336, - "markup_range": 0.0027933373009862436, - "max_n_entry_orders": 9, - "min_markup": 0.005669362964977332, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XTZUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XTZUSDT.json deleted file mode 100644 index 93e1f0695..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XTZUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.7794886183383, - "auto_unstuck_ema_dist": -0.005581941244785879, - "auto_unstuck_qty_pct": 0.010170091330110483, - "auto_unstuck_wallet_exposure_threshold": 0.3806590313382323, - "backwards_tp": true, - "ema_span_0": 956.2302813651238, - "ema_span_1": 1265.2351101148524, - "enabled": true, - "eprice_exp_base": 1.051767207536531, - "eqty_exp_base": 1.7035756385736616, - "grid_span": 0.17037951780238555, - "initial_eprice_ema_dist": -0.003123429996222736, - "initial_qty_pct": 0.012441166898920027, - "markup_range": 0.0008494533549618005, - "max_n_entry_orders": 7, - "min_markup": 0.009134769067758976, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1366.7111509488582, - "auto_unstuck_ema_dist": -0.03889387628187589, - "auto_unstuck_qty_pct": 0.033318103776090915, - "auto_unstuck_wallet_exposure_threshold": 0.5617409724650149, - "backwards_tp": true, - "ema_span_0": 1434.230346305967, - "ema_span_1": 1415.6198154555825, - "enabled": true, - "eprice_exp_base": 1.03902578446112, - "eqty_exp_base": 3.0200874334452035, - "grid_span": 0.20892599684241026, - "initial_eprice_ema_dist": -0.0031620299428871835, - "initial_qty_pct": 0.01420151405657421, - "markup_range": 0.0012068521329553369, - "max_n_entry_orders": 21, - "min_markup": 0.009912203050077612, - "n_close_orders": 15, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XVGUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XVGUSDT.json deleted file mode 100644 index c5ff94c6e..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XVGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.3129302402292, - "auto_unstuck_ema_dist": -0.0747646439814546, - "auto_unstuck_qty_pct": 0.013744237886443779, - "auto_unstuck_wallet_exposure_threshold": 0.5681499315130334, - "backwards_tp": true, - "ema_span_0": 1390.3906243893698, - "ema_span_1": 1269.1483926636674, - "enabled": true, - "eprice_exp_base": 1.0200764056394618, - "eqty_exp_base": 1.1129265496969665, - "grid_span": 0.138921215064865, - "initial_eprice_ema_dist": 0.002326470718143865, - "initial_qty_pct": 0.015670752205910517, - "markup_range": 0.005021252605778118, - "max_n_entry_orders": 8, - "min_markup": 0.005018758689807781, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 930.2434764891894, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.06035040116241251, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ema_span_0": 671.0177112498625, - "ema_span_1": 5, - "enabled": true, - "eprice_exp_base": 1.3717625649798975, - "eqty_exp_base": 3.344488665295607, - "grid_span": 0.12479961039908576, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.05, - "markup_range": 0.0026779029034888196, - "max_n_entry_orders": 10, - "min_markup": 0.001, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/XVSUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/XVSUSDT.json deleted file mode 100644 index c697a1158..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/XVSUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1319.5334467681841, - "auto_unstuck_ema_dist": -0.03962978897027502, - "auto_unstuck_qty_pct": 0.014304096053519982, - "auto_unstuck_wallet_exposure_threshold": 0.8060863175421003, - "backwards_tp": true, - "ema_span_0": 1310.3036036326434, - "ema_span_1": 1048.301378276395, - "enabled": true, - "eprice_exp_base": 1.2015984811282348, - "eqty_exp_base": 1.6270726549779497, - "grid_span": 0.25742975024377085, - "initial_eprice_ema_dist": -0.0020815060164468425, - "initial_qty_pct": 0.010219888813938467, - "markup_range": 0.011345722573192685, - "max_n_entry_orders": 9, - "min_markup": 0.009540359804499406, - "n_close_orders": 6, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 785.4006834037972, - "auto_unstuck_ema_dist": -0.051730367436705775, - "auto_unstuck_qty_pct": 0.07554281736406125, - "auto_unstuck_wallet_exposure_threshold": 0.19751925574898466, - "backwards_tp": true, - "ema_span_0": 59.69206088029268, - "ema_span_1": 1041.8244783192151, - "enabled": true, - "eprice_exp_base": 1.4714498227465853, - "eqty_exp_base": 1.000835550801169, - "grid_span": 0.2306934353010229, - "initial_eprice_ema_dist": 0.002057489932875474, - "initial_qty_pct": 0.010019782803655964, - "markup_range": 0.007097203768417678, - "max_n_entry_orders": 10, - "min_markup": 0.0022751390977693514, - "n_close_orders": 8, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/YFIUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/YFIUSDT.json deleted file mode 100644 index 2c192dbf4..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/YFIUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1117.497986304894, - "auto_unstuck_ema_dist": -0.032107775535593325, - "auto_unstuck_qty_pct": 0.019177989584190615, - "auto_unstuck_wallet_exposure_threshold": 0.7081251926313712, - "backwards_tp": true, - "ema_span_0": 353.8290449665118, - "ema_span_1": 755.7879283149027, - "enabled": true, - "eprice_exp_base": 1.0175067852777455, - "eqty_exp_base": 2.132931349068966, - "grid_span": 0.16486515050589465, - "initial_eprice_ema_dist": 0.00029180652291504176, - "initial_qty_pct": 0.011978200287457405, - "markup_range": 0.006976981772472699, - "max_n_entry_orders": 8, - "min_markup": 0.006115259321793539, - "n_close_orders": 3, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1300.1586029806986, - "auto_unstuck_ema_dist": -0.07286128256051891, - "auto_unstuck_qty_pct": 0.013800603480314918, - "auto_unstuck_wallet_exposure_threshold": 0.23923476636590502, - "backwards_tp": true, - "ema_span_0": 798.2052046432716, - "ema_span_1": 220.05416517816295, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 3.4265218774980526, - "grid_span": 0.15942211235891907, - "initial_eprice_ema_dist": -0.009019073153360507, - "initial_qty_pct": 0.013550926744891391, - "markup_range": 0.00767240129699415, - "max_n_entry_orders": 16, - "min_markup": 0.006681041853807109, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/YGGUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/YGGUSDT.json deleted file mode 100644 index 69386683b..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/YGGUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1070.1815373548548, - "auto_unstuck_ema_dist": -0.04178854659910562, - "auto_unstuck_qty_pct": 0.020535411615993555, - "auto_unstuck_wallet_exposure_threshold": 0.4884374577783266, - "backwards_tp": true, - "ema_span_0": 1202.878426022801, - "ema_span_1": 840.6685855759885, - "enabled": true, - "eprice_exp_base": 1.0989056760375406, - "eqty_exp_base": 3.1116572856071993, - "grid_span": 0.13595562563868033, - "initial_eprice_ema_dist": 0.0006935681256839439, - "initial_qty_pct": 0.012578916533481085, - "markup_range": 0.00988153066900415, - "max_n_entry_orders": 9, - "min_markup": 0.0072194691850736336, - "n_close_orders": 10, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.024956187873325486, - "auto_unstuck_qty_pct": 0.025331561929904593, - "auto_unstuck_wallet_exposure_threshold": 0.8190738579260033, - "backwards_tp": true, - "ema_span_0": 1319.491611923442, - "ema_span_1": 631.2541202301663, - "enabled": true, - "eprice_exp_base": 1, - "eqty_exp_base": 1.924938541206917, - "grid_span": 0.1, - "initial_eprice_ema_dist": -0.038361414732497656, - "initial_qty_pct": 0.01, - "markup_range": 0.007839481909906635, - "max_n_entry_orders": 7, - "min_markup": 0.007377404605166538, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ZECUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ZECUSDT.json deleted file mode 100644 index 06862a472..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ZECUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 777.1446894871469, - "auto_unstuck_ema_dist": -0.07634652922708725, - "auto_unstuck_qty_pct": 0.05015558321629691, - "auto_unstuck_wallet_exposure_threshold": 0.3916111139946495, - "backwards_tp": true, - "ema_span_0": 1181.3441795167764, - "ema_span_1": 941.512749685682, - "enabled": true, - "eprice_exp_base": 1.1088473775036012, - "eqty_exp_base": 1.6297775418124265, - "grid_span": 0.25460237376135436, - "initial_eprice_ema_dist": 0.002950809528467142, - "initial_qty_pct": 0.011109927320126365, - "markup_range": 0.006998691376285849, - "max_n_entry_orders": 8, - "min_markup": 0.008615916545048294, - "n_close_orders": 5, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1161.775646811363, - "auto_unstuck_ema_dist": -0.0016678401792373707, - "auto_unstuck_qty_pct": 0.012789677837807064, - "auto_unstuck_wallet_exposure_threshold": 0.585267431949828, - "backwards_tp": true, - "ema_span_0": 1237.9273508874755, - "ema_span_1": 615.2782331272492, - "enabled": true, - "eprice_exp_base": 1.1720699878237744, - "eqty_exp_base": 3.312996570119156, - "grid_span": 0.1, - "initial_eprice_ema_dist": 0.0027595194408565576, - "initial_qty_pct": 0.013075832897630113, - "markup_range": 0.0031202858088658567, - "max_n_entry_orders": 10, - "min_markup": 0.005493244121098737, - "n_close_orders": 7, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ZENUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ZENUSDT.json deleted file mode 100644 index 9a4e18d73..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ZENUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 930.5575174143333, - "auto_unstuck_ema_dist": -0.08231294194024905, - "auto_unstuck_qty_pct": 0.04130802360722703, - "auto_unstuck_wallet_exposure_threshold": 0.12194843724233172, - "backwards_tp": true, - "ema_span_0": 1037.9983566336327, - "ema_span_1": 1432.3653929149093, - "enabled": true, - "eprice_exp_base": 1.0826457719746292, - "eqty_exp_base": 1.0831811921315475, - "grid_span": 0.2392488058512856, - "initial_eprice_ema_dist": 0.0026696399239173594, - "initial_qty_pct": 0.011168342738573818, - "markup_range": 0.00530938500304333, - "max_n_entry_orders": 8, - "min_markup": 0.007649289314141062, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 975.8964491754076, - "auto_unstuck_ema_dist": -0.010233189214371316, - "auto_unstuck_qty_pct": 0.012389522982621573, - "auto_unstuck_wallet_exposure_threshold": 0.6029963414394741, - "backwards_tp": true, - "ema_span_0": 1403.619056789173, - "ema_span_1": 1237.3464438209855, - "enabled": true, - "eprice_exp_base": 1.1207151465218443, - "eqty_exp_base": 3.065396314071371, - "grid_span": 0.18430668521285287, - "initial_eprice_ema_dist": -0.0033768145227362966, - "initial_qty_pct": 0.0157733605014578, - "markup_range": 0.012073959848216125, - "max_n_entry_orders": 8, - "min_markup": 0.005377618159652788, - "n_close_orders": 2, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ZILUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ZILUSDT.json deleted file mode 100644 index dd8b3b540..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ZILUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1414.307031833748, - "auto_unstuck_ema_dist": -0.012435443488528533, - "auto_unstuck_qty_pct": 0.012511551338462903, - "auto_unstuck_wallet_exposure_threshold": 0.6200303452867397, - "backwards_tp": true, - "ema_span_0": 1223.7491034942766, - "ema_span_1": 1185.0332221577303, - "enabled": true, - "eprice_exp_base": 1.0033366336805396, - "eqty_exp_base": 3.291597029505056, - "grid_span": 0.14745071175982866, - "initial_eprice_ema_dist": 0.002837042259130256, - "initial_qty_pct": 0.010025837313728908, - "markup_range": 0.002507629438487384, - "max_n_entry_orders": 19, - "min_markup": 0.008565624894416276, - "n_close_orders": 8, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 120.35043556944744, - "auto_unstuck_ema_dist": -0.040102994948356764, - "auto_unstuck_qty_pct": 0.0987888359181125, - "auto_unstuck_wallet_exposure_threshold": 0.7699636593846292, - "backwards_tp": true, - "ema_span_0": 1259.9649198051002, - "ema_span_1": 1322.0945299245902, - "enabled": true, - "eprice_exp_base": 1.8279294349240733, - "eqty_exp_base": 3.334416831352558, - "grid_span": 0.17093614940717916, - "initial_eprice_ema_dist": -0.033214170086040655, - "initial_qty_pct": 0.02483472877517778, - "markup_range": 0.011561010175176644, - "max_n_entry_orders": 12, - "min_markup": 0.0037688472626767667, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/neat_grid/ZRXUSDT.json b/configs/live/single_symbol_optimizations/neat_grid/ZRXUSDT.json deleted file mode 100644 index 422807820..000000000 --- a/configs/live/single_symbol_optimizations/neat_grid/ZRXUSDT.json +++ /dev/null @@ -1,38 +0,0 @@ -{"config_name": "neat_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 902.0830060591142, - "auto_unstuck_ema_dist": -0.08274593520236008, - "auto_unstuck_qty_pct": 0.010735171882544085, - "auto_unstuck_wallet_exposure_threshold": 0.5700119949769838, - "backwards_tp": true, - "ema_span_0": 1426.150940077225, - "ema_span_1": 1311.253065694952, - "enabled": true, - "eprice_exp_base": 1.0227397316206543, - "eqty_exp_base": 2.1388229447019085, - "grid_span": 0.2404864657190035, - "initial_eprice_ema_dist": -0.006346482826220628, - "initial_qty_pct": 0.014177952311970745, - "markup_range": 0.0017615924240126607, - "max_n_entry_orders": 8, - "min_markup": 0.007977749119633011, - "n_close_orders": 13, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1124.593201250694, - "auto_unstuck_ema_dist": 0.00014047260700473222, - "auto_unstuck_qty_pct": 0.011063334200202864, - "auto_unstuck_wallet_exposure_threshold": 0.8239674107195015, - "backwards_tp": true, - "ema_span_0": 261.163510178779, - "ema_span_1": 1123.0086027323707, - "enabled": true, - "eprice_exp_base": 1.1051247943392182, - "eqty_exp_base": 2.3802753905863554, - "grid_span": 0.14032039905703045, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.015352787504427352, - "markup_range": 0.008709953325914437, - "max_n_entry_orders": 9, - "min_markup": 0.006147722716885833, - "n_close_orders": 10, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/1000FLOKIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/1000FLOKIUSDT.json deleted file mode 100644 index adfb897d2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/1000FLOKIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1337.5529707639332, - "auto_unstuck_ema_dist": -0.05020461680353659, - "auto_unstuck_qty_pct": 0.07828868072603543, - "auto_unstuck_wallet_exposure_threshold": 0.2787587408018727, - "backwards_tp": true, - "ddown_factor": 0.42304356579042734, - "ema_span_0": 558.696331326078, - "ema_span_1": 497.41826851902977, - "enabled": true, - "initial_eprice_ema_dist": -0.07868331010891629, - "initial_qty_pct": 0.013227954188797108, - "markup_range": 0.005307012362471756, - "min_markup": 0.005529113634834855, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04494425483032159, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18006314432965925, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 695.8708016749218, - "auto_unstuck_ema_dist": -0.026733797044542294, - "auto_unstuck_qty_pct": 0.010644607282947088, - "auto_unstuck_wallet_exposure_threshold": 0.8213584530690295, - "backwards_tp": true, - "ddown_factor": 2.5194749808159074, - "ema_span_0": 1019.9579803886394, - "ema_span_1": 1269.3177148261316, - "enabled": true, - "initial_eprice_ema_dist": 0.0021726276377854515, - "initial_qty_pct": 0.013135946449550934, - "markup_range": 0.004144729631045132, - "min_markup": 0.009322855185425492, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03384836518959056, - "rentry_pprice_dist_wallet_exposure_weighting": 13.260271090600716, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/1000LUNCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/1000LUNCUSDT.json deleted file mode 100644 index 25f8f7347..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/1000LUNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1049.6000700624825, - "auto_unstuck_ema_dist": -0.07016168073678879, - "auto_unstuck_qty_pct": 0.03411226817446472, - "auto_unstuck_wallet_exposure_threshold": 0.41911496881061083, - "backwards_tp": true, - "ddown_factor": 1.4243544030080155, - "ema_span_0": 486.74816073199383, - "ema_span_1": 522.612364856291, - "enabled": true, - "initial_eprice_ema_dist": -0.02199351403309815, - "initial_qty_pct": 0.022715060199545344, - "markup_range": 0.0015981849693865685, - "min_markup": 0.00227441883012074, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03617149292037044, - "rentry_pprice_dist_wallet_exposure_weighting": 3.239183468007264, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/1000PEPEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/1000PEPEUSDT.json deleted file mode 100644 index 162a46f3f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/1000PEPEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 754.3817566760711, - "auto_unstuck_ema_dist": -0.03959689785706191, - "auto_unstuck_qty_pct": 0.05839186716205426, - "auto_unstuck_wallet_exposure_threshold": 0.4665243147969393, - "backwards_tp": true, - "ddown_factor": 0.3892918984394489, - "ema_span_0": 666.0593458341641, - "ema_span_1": 715.4736988281547, - "enabled": true, - "initial_eprice_ema_dist": -0.020047503474721045, - "initial_qty_pct": 0.011967997066845822, - "markup_range": 0.007434691303928223, - "min_markup": 0.007374421800799146, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03758745453753089, - "rentry_pprice_dist_wallet_exposure_weighting": 0.62612044775474, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 991.737273229216, - "auto_unstuck_ema_dist": -0.025931399380178, - "auto_unstuck_qty_pct": 0.036697628704257565, - "auto_unstuck_wallet_exposure_threshold": 0.2481689876647487, - "backwards_tp": true, - "ddown_factor": 0.6896885675918398, - "ema_span_0": 446.0813074281135, - "ema_span_1": 893.6527333000228, - "enabled": true, - "initial_eprice_ema_dist": -0.012390923904552665, - "initial_qty_pct": 0.012522397921741313, - "markup_range": 0.0022770223317218528, - "min_markup": 0.007256661421782616, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04066505177112183, - "rentry_pprice_dist_wallet_exposure_weighting": 3.583344944004282, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/1000SHIBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/1000SHIBUSDT.json deleted file mode 100644 index f64b0ba4b..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/1000SHIBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 773.8833116684218, - "auto_unstuck_ema_dist": -0.04066419632910171, - "auto_unstuck_qty_pct": 0.03133836406362012, - "auto_unstuck_wallet_exposure_threshold": 0.16591083549683788, - "backwards_tp": true, - "ddown_factor": 0.2335859215846803, - "ema_span_0": 751.7198969571075, - "ema_span_1": 885.956846814527, - "enabled": true, - "initial_eprice_ema_dist": -0.07232146076080855, - "initial_qty_pct": 0.018601681811100484, - "markup_range": 0.0003019330862427853, - "min_markup": 0.005476374741607168, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028152697556863584, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4975740770791492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/1000XECUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/1000XECUSDT.json deleted file mode 100644 index 01b17104a..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/1000XECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0623219599643, - "auto_unstuck_ema_dist": -0.06558042587730512, - "auto_unstuck_qty_pct": 0.03960929233720307, - "auto_unstuck_wallet_exposure_threshold": 0.1725086924500494, - "backwards_tp": true, - "ddown_factor": 1.50463062827136, - "ema_span_0": 1072.471874728127, - "ema_span_1": 655.4716154163949, - "enabled": true, - "initial_eprice_ema_dist": -0.011939529205335576, - "initial_qty_pct": 0.010653893560365259, - "markup_range": 0.0005271272328020045, - "min_markup": 0.0048450133339425, - "n_close_orders": 6, - "rentry_pprice_dist": 0.042426212439265, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1345034353903136, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/1INCHUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/1INCHUSDT.json deleted file mode 100644 index 32a3f5d54..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/1INCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.5014048895968, - "auto_unstuck_ema_dist": -0.05793007432114491, - "auto_unstuck_qty_pct": 0.034020023849035054, - "auto_unstuck_wallet_exposure_threshold": 0.21273151683759653, - "backwards_tp": true, - "ddown_factor": 1.2621889414343654, - "ema_span_0": 886.320063774315, - "ema_span_1": 529.0373722563329, - "enabled": true, - "initial_eprice_ema_dist": -0.0032858487921914245, - "initial_qty_pct": 0.011398093134326997, - "markup_range": 0.004305612733085813, - "min_markup": 0.005651608238257144, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037283764140798384, - "rentry_pprice_dist_wallet_exposure_weighting": 2.265028732253464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1052.7374738906133, - "auto_unstuck_ema_dist": -0.031505137125817845, - "auto_unstuck_qty_pct": 0.05160105018671314, - "auto_unstuck_wallet_exposure_threshold": 0.6155351341710021, - "backwards_tp": true, - "ddown_factor": 0.15087854649584473, - "ema_span_0": 1130.8026080393772, - "ema_span_1": 529.9791534916235, - "enabled": true, - "initial_eprice_ema_dist": -0.005576969821565916, - "initial_qty_pct": 0.01026401603862885, - "markup_range": 0.0006160178850496073, - "min_markup": 0.005070656649523753, - "n_close_orders": 16, - "rentry_pprice_dist": 0.026595456689010914, - "rentry_pprice_dist_wallet_exposure_weighting": 8.468819758742796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AAVEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AAVEUSDT.json deleted file mode 100644 index a4940cfdd..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AAVEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.0625161325308, - "auto_unstuck_ema_dist": -0.04102322130771438, - "auto_unstuck_qty_pct": 0.015754744591555958, - "auto_unstuck_wallet_exposure_threshold": 0.6001621741573359, - "backwards_tp": true, - "ddown_factor": 2.409974839588648, - "ema_span_0": 630.2223771424993, - "ema_span_1": 1144.090014263891, - "enabled": true, - "initial_eprice_ema_dist": -0.01886263158942947, - "initial_qty_pct": 0.01619658890391205, - "markup_range": 0.00582821181045555, - "min_markup": 0.001910784087426283, - "n_close_orders": 9, - "rentry_pprice_dist": 0.040478726157756294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6303091650719694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1435.8106994331308, - "auto_unstuck_ema_dist": -0.06188338511410521, - "auto_unstuck_qty_pct": 0.025730218028577678, - "auto_unstuck_wallet_exposure_threshold": 0.6105839341198179, - "backwards_tp": true, - "ddown_factor": 1.6647484017351666, - "ema_span_0": 967.9590888898915, - "ema_span_1": 1404.000231369019, - "enabled": true, - "initial_eprice_ema_dist": 0.0029896876467068612, - "initial_qty_pct": 0.010247097120273286, - "markup_range": 0.005406585417772003, - "min_markup": 0.0021616570131899474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04889560698967968, - "rentry_pprice_dist_wallet_exposure_weighting": 0.08118259207353758, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ACHUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ACHUSDT.json deleted file mode 100644 index 5e3abaf25..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ACHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 412.76501089247114, - "auto_unstuck_ema_dist": -0.059439321560243945, - "auto_unstuck_qty_pct": 0.023367754137491693, - "auto_unstuck_wallet_exposure_threshold": 0.3045555354190747, - "backwards_tp": true, - "ddown_factor": 2.5342759684884353, - "ema_span_0": 771.2458507511448, - "ema_span_1": 986.9091563792869, - "enabled": true, - "initial_eprice_ema_dist": -0.04594610363561374, - "initial_qty_pct": 0.011119970001968283, - "markup_range": 0.0022155009490971477, - "min_markup": 0.0029076471167654027, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033601727314308175, - "rentry_pprice_dist_wallet_exposure_weighting": 8.480288378040697, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 695.8708016749218, - "auto_unstuck_ema_dist": -0.026733797044542294, - "auto_unstuck_qty_pct": 0.010644607282947088, - "auto_unstuck_wallet_exposure_threshold": 0.8213584530690295, - "backwards_tp": true, - "ddown_factor": 2.5194749808159074, - "ema_span_0": 1019.9579803886394, - "ema_span_1": 1269.3177148261316, - "enabled": true, - "initial_eprice_ema_dist": 0.0021726276377854515, - "initial_qty_pct": 0.013135946449550934, - "markup_range": 0.004144729631045132, - "min_markup": 0.009322855185425492, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03384836518959056, - "rentry_pprice_dist_wallet_exposure_weighting": 13.260271090600716, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ADAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ADAUSDT.json deleted file mode 100644 index 0a38e6a6c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ADAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 961.4338238324696, - "auto_unstuck_ema_dist": -0.03717285736652032, - "auto_unstuck_qty_pct": 0.01943313987748702, - "auto_unstuck_wallet_exposure_threshold": 0.6686199866305296, - "backwards_tp": true, - "ddown_factor": 2.051473377964616, - "ema_span_0": 281.03795629058385, - "ema_span_1": 1356.2629141196721, - "enabled": true, - "initial_eprice_ema_dist": -0.0021987636669199397, - "initial_qty_pct": 0.010101689328299345, - "markup_range": 8.102690004570353e-05, - "min_markup": 0.002048897530419204, - "n_close_orders": 11, - "rentry_pprice_dist": 0.016562862364551796, - "rentry_pprice_dist_wallet_exposure_weighting": 0.23454328781302952, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 541.0698095831558, - "auto_unstuck_ema_dist": -0.013305864303072753, - "auto_unstuck_qty_pct": 0.01390306071685173, - "auto_unstuck_wallet_exposure_threshold": 0.5253164974633007, - "backwards_tp": true, - "ddown_factor": 2.4489692021093057, - "ema_span_0": 530.2747886976573, - "ema_span_1": 256.8255394119372, - "enabled": true, - "initial_eprice_ema_dist": -0.006014927404041342, - "initial_qty_pct": 0.012960728593511443, - "markup_range": 0.0029520319726383773, - "min_markup": 0.0021142994042955125, - "n_close_orders": 16, - "rentry_pprice_dist": 0.0283173755441322, - "rentry_pprice_dist_wallet_exposure_weighting": 5.073076194313362, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AGIXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AGIXUSDT.json deleted file mode 100644 index 153015a3d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AGIXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 754.3817566760711, - "auto_unstuck_ema_dist": -0.03959689785706191, - "auto_unstuck_qty_pct": 0.05839186716205426, - "auto_unstuck_wallet_exposure_threshold": 0.4665243147969393, - "backwards_tp": true, - "ddown_factor": 0.3892918984394489, - "ema_span_0": 666.0593458341641, - "ema_span_1": 715.4736988281547, - "enabled": true, - "initial_eprice_ema_dist": -0.020047503474721045, - "initial_qty_pct": 0.011967997066845822, - "markup_range": 0.007434691303928223, - "min_markup": 0.007374421800799146, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03758745453753089, - "rentry_pprice_dist_wallet_exposure_weighting": 0.62612044775474, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.5698682070658, - "auto_unstuck_ema_dist": -0.014801442370167658, - "auto_unstuck_qty_pct": 0.02973409367529811, - "auto_unstuck_wallet_exposure_threshold": 0.3839097666381447, - "backwards_tp": true, - "ddown_factor": 0.8194972284980494, - "ema_span_0": 1068.2157281516772, - "ema_span_1": 969.3649512649674, - "enabled": true, - "initial_eprice_ema_dist": -0.014871183771151238, - "initial_qty_pct": 0.014914136754572399, - "markup_range": 0.004767313212952974, - "min_markup": 0.004861327976733535, - "n_close_orders": 15, - "rentry_pprice_dist": 0.031864142360379925, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5885794920557245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AGLDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AGLDUSDT.json deleted file mode 100644 index 95b10827f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 968.9885554324641, - "auto_unstuck_ema_dist": -0.040466250595328816, - "auto_unstuck_qty_pct": 0.021646336338545482, - "auto_unstuck_wallet_exposure_threshold": 0.5648550848392668, - "backwards_tp": true, - "ddown_factor": 2.7865650777274107, - "ema_span_0": 694.1160959051064, - "ema_span_1": 1032.4776634516954, - "enabled": true, - "initial_eprice_ema_dist": 0.002927605010827487, - "initial_qty_pct": 0.010143296957502655, - "markup_range": 0.0038366878937663856, - "min_markup": 0.009405260789784488, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049615203593185817, - "rentry_pprice_dist_wallet_exposure_weighting": 11.58409946197559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1158.9325891988399, - "auto_unstuck_ema_dist": -0.010789940658414052, - "auto_unstuck_qty_pct": 0.02170994873799929, - "auto_unstuck_wallet_exposure_threshold": 0.5451983109460394, - "backwards_tp": true, - "ddown_factor": 2.6822609808195828, - "ema_span_0": 152.26969529097894, - "ema_span_1": 1265.869703051127, - "enabled": true, - "initial_eprice_ema_dist": -0.0017969115048086333, - "initial_qty_pct": 0.019134551290597584, - "markup_range": 0.0023521890733515394, - "min_markup": 0.004081655064817033, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03657314514293422, - "rentry_pprice_dist_wallet_exposure_weighting": 0.39108661477178497, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ALGOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ALGOUSDT.json deleted file mode 100644 index ba5c7f2a6..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ALGOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1307.3744884927644, - "auto_unstuck_ema_dist": -0.1, - "auto_unstuck_qty_pct": 0.012381962674340403, - "auto_unstuck_wallet_exposure_threshold": 0.4338048606700608, - "backwards_tp": true, - "ddown_factor": 1.9388390745618873, - "ema_span_0": 1090.63901760421, - "ema_span_1": 1054.4646517875299, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999769030254787, - "initial_qty_pct": 0.016497768300612094, - "markup_range": 0.004766773644893363, - "min_markup": 0.008559819938314419, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04159215761593811, - "rentry_pprice_dist_wallet_exposure_weighting": 0.682889825838283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 931.3817468020573, - "auto_unstuck_ema_dist": -0.0038524047582755355, - "auto_unstuck_qty_pct": 0.04535691945507572, - "auto_unstuck_wallet_exposure_threshold": 0.7614386560884693, - "backwards_tp": true, - "ddown_factor": 0.48212355454439887, - "ema_span_0": 793.4057769705952, - "ema_span_1": 207.87285322993708, - "enabled": true, - "initial_eprice_ema_dist": 0.001841857360558631, - "initial_qty_pct": 0.019432459284597227, - "markup_range": 0.016917499229926875, - "min_markup": 0.0034948947116818342, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03897740196858243, - "rentry_pprice_dist_wallet_exposure_weighting": 1.130767045572326, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ALICEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ALICEUSDT.json deleted file mode 100644 index 10a0294ea..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ALICEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0018826826293365836, - "auto_unstuck_qty_pct": 0.02366037978822659, - "auto_unstuck_wallet_exposure_threshold": 0.35229050676623463, - "backwards_tp": true, - "ddown_factor": 0.6776349265443191, - "ema_span_0": 1035.4001418744208, - "ema_span_1": 1086.6008950961964, - "enabled": true, - "initial_eprice_ema_dist": -0.06668488985556624, - "initial_qty_pct": 0.010042287392517913, - "markup_range": 7.194844348872922e-07, - "min_markup": 0.004977539914492943, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03161346929705963, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3437775511492527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1065.85241012398, - "auto_unstuck_ema_dist": -0.042811656578468985, - "auto_unstuck_qty_pct": 0.029415949366314063, - "auto_unstuck_wallet_exposure_threshold": 0.5938414176243073, - "backwards_tp": true, - "ddown_factor": 0.6837274524393956, - "ema_span_0": 1213.9497326583946, - "ema_span_1": 558.9840530046024, - "enabled": true, - "initial_eprice_ema_dist": -0.0012086499974279079, - "initial_qty_pct": 0.017540149860911403, - "markup_range": 0.0048921026384613885, - "min_markup": 0.008046855822096683, - "n_close_orders": 6, - "rentry_pprice_dist": 0.031395651969440795, - "rentry_pprice_dist_wallet_exposure_weighting": 10.392174692278287, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ALPHAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ALPHAUSDT.json deleted file mode 100644 index 56f611d54..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ALPHAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 518.0265326010709, - "auto_unstuck_ema_dist": -0.08388871599925407, - "auto_unstuck_qty_pct": 0.06752449575198048, - "auto_unstuck_wallet_exposure_threshold": 0.5168401512588173, - "backwards_tp": true, - "ddown_factor": 0.3927443827349259, - "ema_span_0": 950.0899753161561, - "ema_span_1": 983.2691607353765, - "enabled": true, - "initial_eprice_ema_dist": 0.0021549412363112306, - "initial_qty_pct": 0.018131366763790988, - "markup_range": 0.00016986761883675878, - "min_markup": 0.006055097728559371, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04004550092768956, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6723618831363485, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 180.0026494518495, - "auto_unstuck_ema_dist": -0.07336423302068806, - "auto_unstuck_qty_pct": 0.08627465065990286, - "auto_unstuck_wallet_exposure_threshold": 0.848358320804483, - "backwards_tp": true, - "ddown_factor": 0.19430869966361974, - "ema_span_0": 943.6782913161207, - "ema_span_1": 704.1832743875825, - "enabled": true, - "initial_eprice_ema_dist": -0.02535374750258631, - "initial_qty_pct": 0.010412039382659187, - "markup_range": 0.008037284803621569, - "min_markup": 0.00675215117047174, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0348493311332146, - "rentry_pprice_dist_wallet_exposure_weighting": 13.69427032059088, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AMBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AMBUSDT.json deleted file mode 100644 index b2a96d023..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AMBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1368.1756670538243, - "auto_unstuck_ema_dist": -0.07330997354703737, - "auto_unstuck_qty_pct": 0.011747650192491955, - "auto_unstuck_wallet_exposure_threshold": 0.4736214579573272, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 137.81914493525576, - "ema_span_1": 166.34020854290125, - "enabled": true, - "initial_eprice_ema_dist": -0.04653146127912276, - "initial_qty_pct": 0.01461088098227183, - "markup_range": 0.0011177056140842143, - "min_markup": 0.007515669102516649, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039236672231753575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7250832843519701, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.5698682070658, - "auto_unstuck_ema_dist": -0.014801442370167658, - "auto_unstuck_qty_pct": 0.02973409367529811, - "auto_unstuck_wallet_exposure_threshold": 0.3839097666381447, - "backwards_tp": true, - "ddown_factor": 0.8194972284980494, - "ema_span_0": 1068.2157281516772, - "ema_span_1": 969.3649512649674, - "enabled": true, - "initial_eprice_ema_dist": -0.014871183771151238, - "initial_qty_pct": 0.014914136754572399, - "markup_range": 0.004767313212952974, - "min_markup": 0.004861327976733535, - "n_close_orders": 15, - "rentry_pprice_dist": 0.031864142360379925, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5885794920557245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ANKRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ANKRUSDT.json deleted file mode 100644 index f6546aa71..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ANKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 495.4222436928258, - "auto_unstuck_ema_dist": -0.03366938661273936, - "auto_unstuck_qty_pct": 0.01673383184525977, - "auto_unstuck_wallet_exposure_threshold": 0.3510112328141472, - "backwards_tp": true, - "ddown_factor": 1.5806327160858866, - "ema_span_0": 484.3642784834503, - "ema_span_1": 605.7961084463778, - "enabled": true, - "initial_eprice_ema_dist": -0.007491668444314763, - "initial_qty_pct": 0.013280292633264815, - "markup_range": 0.0014002674896421781, - "min_markup": 0.0013169611829184312, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02936614450844377, - "rentry_pprice_dist_wallet_exposure_weighting": 1.260473617355105, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1178.6231685632652, - "auto_unstuck_ema_dist": -0.0040485392882242495, - "auto_unstuck_qty_pct": 0.011451125013548141, - "auto_unstuck_wallet_exposure_threshold": 0.1783387007401128, - "backwards_tp": true, - "ddown_factor": 0.4697478660620976, - "ema_span_0": 880.3673716086937, - "ema_span_1": 560.6134404119053, - "enabled": true, - "initial_eprice_ema_dist": 0.0016460685547010478, - "initial_qty_pct": 0.013771896510905402, - "markup_range": 0.004111928834126115, - "min_markup": 0.009126813880013566, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03381589560270764, - "rentry_pprice_dist_wallet_exposure_weighting": 11.130338948321194, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ANTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ANTUSDT.json deleted file mode 100644 index e1feb0d78..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ANTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1045.1101349643511, - "auto_unstuck_ema_dist": -0.01571585197546857, - "auto_unstuck_qty_pct": 0.029158649031222936, - "auto_unstuck_wallet_exposure_threshold": 0.46471032498092524, - "backwards_tp": true, - "ddown_factor": 1.3987351225344555, - "ema_span_0": 1439.9999945685292, - "ema_span_1": 1393.465716936036, - "enabled": true, - "initial_eprice_ema_dist": 0.002700537639421378, - "initial_qty_pct": 0.011376273692095484, - "markup_range": 0.000374350179583882, - "min_markup": 0.0021708143140020926, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04765180199403366, - "rentry_pprice_dist_wallet_exposure_weighting": 11.905707228545854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 479.9248920586266, - "auto_unstuck_ema_dist": -0.01905228639292863, - "auto_unstuck_qty_pct": 0.041483446137165494, - "auto_unstuck_wallet_exposure_threshold": 0.557655390842093, - "backwards_tp": true, - "ddown_factor": 2.147784021517439, - "ema_span_0": 183.7786310952956, - "ema_span_1": 835.8701919148339, - "enabled": true, - "initial_eprice_ema_dist": 0.0011027649608459148, - "initial_qty_pct": 0.012309299975517905, - "markup_range": 0.0006229521848645023, - "min_markup": 0.0033592464959339816, - "n_close_orders": 11, - "rentry_pprice_dist": 0.046556867491589674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16023503516747917, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/APEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/APEUSDT.json deleted file mode 100644 index 8e1778e1d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/APEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 857.9352163512979, - "auto_unstuck_ema_dist": 0.0014175579215003483, - "auto_unstuck_qty_pct": 0.010343324839004193, - "auto_unstuck_wallet_exposure_threshold": 0.14528765565874516, - "backwards_tp": true, - "ddown_factor": 2.9997053680425205, - "ema_span_0": 203.7858595156725, - "ema_span_1": 721.405235407679, - "enabled": true, - "initial_eprice_ema_dist": 0.002943705873177678, - "initial_qty_pct": 0.01356574411908951, - "markup_range": 0.002575633644852081, - "min_markup": 0.006489057687649006, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034405568823008166, - "rentry_pprice_dist_wallet_exposure_weighting": 2.883300831934505, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.7669604640046, - "auto_unstuck_ema_dist": 0.002786919034136599, - "auto_unstuck_qty_pct": 0.03140475838427743, - "auto_unstuck_wallet_exposure_threshold": 0.5574697807190042, - "backwards_tp": true, - "ddown_factor": 1.0498659445078125, - "ema_span_0": 768.3258268178528, - "ema_span_1": 986.7063133340359, - "enabled": true, - "initial_eprice_ema_dist": -0.0185462563652313, - "initial_qty_pct": 0.011031346865379632, - "markup_range": 0.006926949770685151, - "min_markup": 0.0015696813063142627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029295377220877463, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2531454393293293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/API3USDT.json b/configs/live/single_symbol_optimizations/recursive_grid/API3USDT.json deleted file mode 100644 index bd755a85c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/API3USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 495.4222436928258, - "auto_unstuck_ema_dist": -0.03366938661273936, - "auto_unstuck_qty_pct": 0.01673383184525977, - "auto_unstuck_wallet_exposure_threshold": 0.3510112328141472, - "backwards_tp": true, - "ddown_factor": 1.5806327160858866, - "ema_span_0": 484.3642784834503, - "ema_span_1": 605.7961084463778, - "enabled": true, - "initial_eprice_ema_dist": -0.007491668444314763, - "initial_qty_pct": 0.013280292633264815, - "markup_range": 0.0014002674896421781, - "min_markup": 0.0013169611829184312, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02936614450844377, - "rentry_pprice_dist_wallet_exposure_weighting": 1.260473617355105, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/APTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/APTUSDT.json deleted file mode 100644 index f27511b5c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/APTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1440, - "auto_unstuck_ema_dist": -0.0018826826293365836, - "auto_unstuck_qty_pct": 0.02366037978822659, - "auto_unstuck_wallet_exposure_threshold": 0.35229050676623463, - "backwards_tp": true, - "ddown_factor": 0.6776349265443191, - "ema_span_0": 1035.4001418744208, - "ema_span_1": 1086.6008950961964, - "enabled": true, - "initial_eprice_ema_dist": -0.06668488985556624, - "initial_qty_pct": 0.010042287392517913, - "markup_range": 7.194844348872922e-07, - "min_markup": 0.004977539914492943, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03161346929705963, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3437775511492527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 452.15904809063693, - "auto_unstuck_ema_dist": -0.014285824690560984, - "auto_unstuck_qty_pct": 0.0521692196603833, - "auto_unstuck_wallet_exposure_threshold": 0.6877551473946163, - "backwards_tp": true, - "ddown_factor": 2.7141105620226256, - "ema_span_0": 508.2213600654218, - "ema_span_1": 946.0034787279218, - "enabled": true, - "initial_eprice_ema_dist": -0.007690320636594495, - "initial_qty_pct": 0.010485765823889966, - "markup_range": 0.002201599882509027, - "min_markup": 0.0020891237062544057, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04192950389909169, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6748235656956307, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ARBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ARBUSDT.json deleted file mode 100644 index 10623eae7..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ARBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.286331700472, - "auto_unstuck_ema_dist": -0.027972942878892803, - "auto_unstuck_qty_pct": 0.012904106128991134, - "auto_unstuck_wallet_exposure_threshold": 0.8521738600901125, - "backwards_tp": true, - "ddown_factor": 1.4721600382065791, - "ema_span_0": 631.788590274504, - "ema_span_1": 507.70507795283646, - "enabled": true, - "initial_eprice_ema_dist": -0.06780536466712907, - "initial_qty_pct": 0.01, - "markup_range": 0.0051530070515828546, - "min_markup": 0.0047356588218692595, - "n_close_orders": 9, - "rentry_pprice_dist": 0.031150624560227946, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2998671254163767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 700.5613696352202, - "auto_unstuck_ema_dist": -0.059072950149775684, - "auto_unstuck_qty_pct": 0.020869976675721807, - "auto_unstuck_wallet_exposure_threshold": 0.40676379197754603, - "backwards_tp": true, - "ddown_factor": 1.4263747857227196, - "ema_span_0": 978.1287120936939, - "ema_span_1": 738.2866828986187, - "enabled": true, - "initial_eprice_ema_dist": 0.0005025554938547656, - "initial_qty_pct": 0.012992525243584368, - "markup_range": 0.0040634477360418555, - "min_markup": 0.008103777563233005, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04734537740402093, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6915333308426989, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ARKMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ARKMUSDT.json deleted file mode 100644 index 117e10552..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ARKMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ARPAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ARPAUSDT.json deleted file mode 100644 index db75ed5c4..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ARPAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.8905920976713, - "auto_unstuck_ema_dist": -0.016939380558704822, - "auto_unstuck_qty_pct": 0.013976248872787709, - "auto_unstuck_wallet_exposure_threshold": 0.12355339590595218, - "backwards_tp": true, - "ddown_factor": 1.6313938279448297, - "ema_span_0": 530.30246136685, - "ema_span_1": 78.12757254475127, - "enabled": true, - "initial_eprice_ema_dist": 0.0023977030968180646, - "initial_qty_pct": 0.016272006657252217, - "markup_range": 0.008797943762849326, - "min_markup": 0.005388076121193682, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04178642120507141, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003687915791838018, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 941.4323959245721, - "auto_unstuck_ema_dist": 0.0023329875617506602, - "auto_unstuck_qty_pct": 0.0126490136306326, - "auto_unstuck_wallet_exposure_threshold": 0.25259142081462765, - "backwards_tp": true, - "ddown_factor": 1.9679132344408845, - "ema_span_0": 383.4272934679048, - "ema_span_1": 1024.1897294780908, - "enabled": true, - "initial_eprice_ema_dist": 0.002885808542863266, - "initial_qty_pct": 0.016666237623390062, - "markup_range": 0.006212579109507224, - "min_markup": 0.00215945346470992, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987230688573202, - "rentry_pprice_dist_wallet_exposure_weighting": 8.31253150074425, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ARUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ARUSDT.json deleted file mode 100644 index beedfbf14..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1304.051596984993, - "auto_unstuck_ema_dist": -0.0025837533429117726, - "auto_unstuck_qty_pct": 0.0643059017878674, - "auto_unstuck_wallet_exposure_threshold": 0.1949273064619864, - "backwards_tp": true, - "ddown_factor": 1.3236337713194344, - "ema_span_0": 1227.559449566079, - "ema_span_1": 1331.6824406397377, - "enabled": true, - "initial_eprice_ema_dist": 0.002999856240692003, - "initial_qty_pct": 0.014191288975018854, - "markup_range": 0.00878601822501439, - "min_markup": 0.008942494339951583, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04553774995786425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6687182101252788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ASTRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ASTRUSDT.json deleted file mode 100644 index 1e09a10e5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ASTRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1171.3951761180147, - "auto_unstuck_ema_dist": -0.03289594671909857, - "auto_unstuck_qty_pct": 0.03790654480684425, - "auto_unstuck_wallet_exposure_threshold": 0.4662098668657322, - "backwards_tp": true, - "ddown_factor": 0.6431516620733384, - "ema_span_0": 662.8750231341215, - "ema_span_1": 224.01205655366653, - "enabled": true, - "initial_eprice_ema_dist": -0.03972123621558579, - "initial_qty_pct": 0.011879224131437638, - "markup_range": 0.0004001047540495883, - "min_markup": 0.003715370275767813, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024205606296240436, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5472308706945394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ATAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ATAUSDT.json deleted file mode 100644 index cbacb594d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ATAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.0133962652421, - "auto_unstuck_ema_dist": -0.03810156746565464, - "auto_unstuck_qty_pct": 0.010621091267100471, - "auto_unstuck_wallet_exposure_threshold": 0.8839614545124952, - "backwards_tp": true, - "ddown_factor": 0.13549831550056682, - "ema_span_0": 879.4449951953482, - "ema_span_1": 712.9824463030832, - "enabled": true, - "initial_eprice_ema_dist": -0.0038655887611113737, - "initial_qty_pct": 0.010060107146046528, - "markup_range": 0.0021902992197724487, - "min_markup": 0.009607437935161195, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026204737086433196, - "rentry_pprice_dist_wallet_exposure_weighting": 7.682898617350267, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1244.9359735169262, - "auto_unstuck_ema_dist": -0.01897344454943382, - "auto_unstuck_qty_pct": 0.05687419716122635, - "auto_unstuck_wallet_exposure_threshold": 0.3931758427274342, - "backwards_tp": true, - "ddown_factor": 0.3150842595034684, - "ema_span_0": 1077.3250045570653, - "ema_span_1": 1255.1196312319362, - "enabled": true, - "initial_eprice_ema_dist": 0.0022262841978470515, - "initial_qty_pct": 0.015417750770025268, - "markup_range": 0.008072400072075877, - "min_markup": 0.008045625129692213, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015278403347456532, - "rentry_pprice_dist_wallet_exposure_weighting": 10.885973069166619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ATOMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ATOMUSDT.json deleted file mode 100644 index 33f934f32..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ATOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 817.3839601148987, - "auto_unstuck_ema_dist": -0.056747177167555, - "auto_unstuck_qty_pct": 0.012467608336580227, - "auto_unstuck_wallet_exposure_threshold": 0.44505116465567496, - "backwards_tp": true, - "ddown_factor": 1.276389127776389, - "ema_span_0": 312.422966055438, - "ema_span_1": 747.3451446818881, - "enabled": true, - "initial_eprice_ema_dist": -0.006776686937736162, - "initial_qty_pct": 0.01, - "markup_range": 0.0044972982347013515, - "min_markup": 0.0012946220207993191, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02877369381592201, - "rentry_pprice_dist_wallet_exposure_weighting": 3.920681694766142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AUDIOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AUDIOUSDT.json deleted file mode 100644 index e3cbdea13..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AUDIOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 840.2253484700655, - "auto_unstuck_ema_dist": -0.023366736797704436, - "auto_unstuck_qty_pct": 0.025650539557371923, - "auto_unstuck_wallet_exposure_threshold": 0.8164346940880333, - "backwards_tp": true, - "ddown_factor": 2.1210336039706976, - "ema_span_0": 182.65054021194098, - "ema_span_1": 824.5436126292714, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999868387410884, - "initial_qty_pct": 0.012094147367994306, - "markup_range": 0.006698144904276781, - "min_markup": 0.003487712386149594, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04350474406167253, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1573575779480527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1052.7374738906133, - "auto_unstuck_ema_dist": -0.031505137125817845, - "auto_unstuck_qty_pct": 0.05160105018671314, - "auto_unstuck_wallet_exposure_threshold": 0.6155351341710021, - "backwards_tp": true, - "ddown_factor": 0.15087854649584473, - "ema_span_0": 1130.8026080393772, - "ema_span_1": 529.9791534916235, - "enabled": true, - "initial_eprice_ema_dist": -0.005576969821565916, - "initial_qty_pct": 0.01026401603862885, - "markup_range": 0.0006160178850496073, - "min_markup": 0.005070656649523753, - "n_close_orders": 16, - "rentry_pprice_dist": 0.026595456689010914, - "rentry_pprice_dist_wallet_exposure_weighting": 8.468819758742796, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AVAXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AVAXUSDT.json deleted file mode 100644 index 84b466118..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AVAXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1180.3282469709172, - "auto_unstuck_ema_dist": -0.034197507442325775, - "auto_unstuck_qty_pct": 0.013508122710235493, - "auto_unstuck_wallet_exposure_threshold": 0.7552067913740576, - "backwards_tp": true, - "ddown_factor": 0.6435954264447268, - "ema_span_0": 1172.8189135701862, - "ema_span_1": 1170.7556149939874, - "enabled": true, - "initial_eprice_ema_dist": 0.0021486050451476166, - "initial_qty_pct": 0.014799761399763151, - "markup_range": 0.004401069400994476, - "min_markup": 0.0072372265864400305, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03286442339201806, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7374068000441876, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 991.737273229216, - "auto_unstuck_ema_dist": -0.025931399380178, - "auto_unstuck_qty_pct": 0.036697628704257565, - "auto_unstuck_wallet_exposure_threshold": 0.2481689876647487, - "backwards_tp": true, - "ddown_factor": 0.6896885675918398, - "ema_span_0": 446.0813074281135, - "ema_span_1": 893.6527333000228, - "enabled": true, - "initial_eprice_ema_dist": -0.012390923904552665, - "initial_qty_pct": 0.012522397921741313, - "markup_range": 0.0022770223317218528, - "min_markup": 0.007256661421782616, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04066505177112183, - "rentry_pprice_dist_wallet_exposure_weighting": 3.583344944004282, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/AXSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/AXSUSDT.json deleted file mode 100644 index 373c9b5fb..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/AXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 624.3089925081796, - "auto_unstuck_ema_dist": -0.0017944000823634481, - "auto_unstuck_qty_pct": 0.02446324280553036, - "auto_unstuck_wallet_exposure_threshold": 0.4269709171398361, - "backwards_tp": true, - "ddown_factor": 2.569052200097769, - "ema_span_0": 76.7157792911941, - "ema_span_1": 272.16118391542665, - "enabled": true, - "initial_eprice_ema_dist": -0.005833778322180691, - "initial_qty_pct": 0.01, - "markup_range": 0.0015830051811291088, - "min_markup": 0.00228714675573091, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04679073998919632, - "rentry_pprice_dist_wallet_exposure_weighting": 2.529935417331788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BAKEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BAKEUSDT.json deleted file mode 100644 index 3517e2f5e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BAKEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BALUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BALUSDT.json deleted file mode 100644 index 4990b8535..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 609.4432295179275, - "auto_unstuck_ema_dist": -0.01761964243122426, - "auto_unstuck_qty_pct": 0.04728305432954066, - "auto_unstuck_wallet_exposure_threshold": 0.33105001776319165, - "backwards_tp": true, - "ddown_factor": 2.3753274156474884, - "ema_span_0": 164.5043268094741, - "ema_span_1": 649.9469384149091, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998184465358404, - "initial_qty_pct": 0.015907509641463684, - "markup_range": 0.001972808155754652, - "min_markup": 0.0036614253279494365, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04207745270351028, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7699467635678583, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1330.2415066696112, - "auto_unstuck_ema_dist": -0.061698419252593374, - "auto_unstuck_qty_pct": 0.01031715558195571, - "auto_unstuck_wallet_exposure_threshold": 0.8242779866682238, - "backwards_tp": true, - "ddown_factor": 2.89268129005806, - "ema_span_0": 1236.6524686998243, - "ema_span_1": 1395.0720821171149, - "enabled": true, - "initial_eprice_ema_dist": 0.0017503195992355023, - "initial_qty_pct": 0.015359562884602053, - "markup_range": 0.0022515983872850374, - "min_markup": 0.00999948834769537, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04355910762246303, - "rentry_pprice_dist_wallet_exposure_weighting": 5.155530709773846, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BANDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BANDUSDT.json deleted file mode 100644 index 7d269d1b9..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1337.5529707639332, - "auto_unstuck_ema_dist": -0.05020461680353659, - "auto_unstuck_qty_pct": 0.07828868072603543, - "auto_unstuck_wallet_exposure_threshold": 0.2787587408018727, - "backwards_tp": true, - "ddown_factor": 0.42304356579042734, - "ema_span_0": 558.696331326078, - "ema_span_1": 497.41826851902977, - "enabled": true, - "initial_eprice_ema_dist": -0.07868331010891629, - "initial_qty_pct": 0.013227954188797108, - "markup_range": 0.005307012362471756, - "min_markup": 0.005529113634834855, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04494425483032159, - "rentry_pprice_dist_wallet_exposure_weighting": 0.18006314432965925, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 941.4323959245721, - "auto_unstuck_ema_dist": 0.0023329875617506602, - "auto_unstuck_qty_pct": 0.0126490136306326, - "auto_unstuck_wallet_exposure_threshold": 0.25259142081462765, - "backwards_tp": true, - "ddown_factor": 1.9679132344408845, - "ema_span_0": 383.4272934679048, - "ema_span_1": 1024.1897294780908, - "enabled": true, - "initial_eprice_ema_dist": 0.002885808542863266, - "initial_qty_pct": 0.016666237623390062, - "markup_range": 0.006212579109507224, - "min_markup": 0.00215945346470992, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987230688573202, - "rentry_pprice_dist_wallet_exposure_weighting": 8.31253150074425, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BATUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BATUSDT.json deleted file mode 100644 index b908fc1c4..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BATUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1213.0133962652421, - "auto_unstuck_ema_dist": -0.03810156746565464, - "auto_unstuck_qty_pct": 0.010621091267100471, - "auto_unstuck_wallet_exposure_threshold": 0.8839614545124952, - "backwards_tp": true, - "ddown_factor": 0.13549831550056682, - "ema_span_0": 879.4449951953482, - "ema_span_1": 712.9824463030832, - "enabled": true, - "initial_eprice_ema_dist": -0.0038655887611113737, - "initial_qty_pct": 0.010060107146046528, - "markup_range": 0.0021902992197724487, - "min_markup": 0.009607437935161195, - "n_close_orders": 3, - "rentry_pprice_dist": 0.026204737086433196, - "rentry_pprice_dist_wallet_exposure_weighting": 7.682898617350267, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 604.3734067878169, - "auto_unstuck_ema_dist": -0.06446347978939816, - "auto_unstuck_qty_pct": 0.03669038167216459, - "auto_unstuck_wallet_exposure_threshold": 0.41824510740652787, - "backwards_tp": true, - "ddown_factor": 1.5620840854479796, - "ema_span_0": 804.6040657029997, - "ema_span_1": 1179.5326620805217, - "enabled": true, - "initial_eprice_ema_dist": -0.0015520705471813708, - "initial_qty_pct": 0.017769292909161603, - "markup_range": 0.0009876995703612084, - "min_markup": 0.0028894638890678004, - "n_close_orders": 3, - "rentry_pprice_dist": 0.030682840736426662, - "rentry_pprice_dist_wallet_exposure_weighting": 3.250307551588876, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BCHUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BCHUSDT.json deleted file mode 100644 index 2ba95507f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BCHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1133.5455396076816, - "auto_unstuck_ema_dist": -0.004710557764050445, - "auto_unstuck_qty_pct": 0.03964236728860161, - "auto_unstuck_wallet_exposure_threshold": 0.45621867392956356, - "backwards_tp": true, - "ddown_factor": 1.849160021904362, - "ema_span_0": 28.281272578153466, - "ema_span_1": 5.012448083591491, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011495775357664509, - "markup_range": 0.0017590601541578152, - "min_markup": 0.0019419930076712746, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015024781549036277, - "rentry_pprice_dist_wallet_exposure_weighting": 6.079346889259036, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1239.5398828537122, - "auto_unstuck_ema_dist": 0.0011002178656988298, - "auto_unstuck_qty_pct": 0.040879571278322355, - "auto_unstuck_wallet_exposure_threshold": 0.8965749947588251, - "backwards_tp": true, - "ddown_factor": 1.7047054543885927, - "ema_span_0": 379.214100284615, - "ema_span_1": 1421.6821458320787, - "enabled": true, - "initial_eprice_ema_dist": -0.0003425739829469274, - "initial_qty_pct": 0.014884243887259483, - "markup_range": 0.005591416742867247, - "min_markup": 0.004547267453440362, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04413645431110037, - "rentry_pprice_dist_wallet_exposure_weighting": 7.462635340608269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BELUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BELUSDT.json deleted file mode 100644 index 398a13209..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BELUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.1061968749314, - "auto_unstuck_ema_dist": -0.047799157059145704, - "auto_unstuck_qty_pct": 0.045836063938134164, - "auto_unstuck_wallet_exposure_threshold": 0.25061006079449666, - "backwards_tp": true, - "ddown_factor": 0.16790114470770964, - "ema_span_0": 917.0528472427542, - "ema_span_1": 768.3790918391155, - "enabled": true, - "initial_eprice_ema_dist": -0.04571168466061672, - "initial_qty_pct": 0.01185591467007671, - "markup_range": 0.004338403926901329, - "min_markup": 0.005242110555148903, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04071013208908112, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3705348314980489, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 778.4050444128148, - "auto_unstuck_ema_dist": -0.046234187700963436, - "auto_unstuck_qty_pct": 0.020587000340633592, - "auto_unstuck_wallet_exposure_threshold": 0.8440980780103854, - "backwards_tp": true, - "ddown_factor": 0.3597290201625506, - "ema_span_0": 1367.705665487707, - "ema_span_1": 1143.914988418785, - "enabled": true, - "initial_eprice_ema_dist": -0.006151138065125043, - "initial_qty_pct": 0.010201358534327661, - "markup_range": 0.0008282511433073973, - "min_markup": 0.007026727241610112, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03521502346438065, - "rentry_pprice_dist_wallet_exposure_weighting": 19.34284865877356, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BLUEBIRDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BLUEBIRDUSDT.json deleted file mode 100644 index d622fd88e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BLUEBIRDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1080.689421277476, - "auto_unstuck_ema_dist": -0.0006892130223884805, - "auto_unstuck_qty_pct": 0.011243587633196769, - "auto_unstuck_wallet_exposure_threshold": 0.46025009243548076, - "backwards_tp": true, - "ddown_factor": 1.1093171300739098, - "ema_span_0": 972.2236838364724, - "ema_span_1": 963.8295577515664, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.016301641610812333, - "markup_range": 0.0010408932979570494, - "min_markup": 0.002477322800634059, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027091724833210765, - "rentry_pprice_dist_wallet_exposure_weighting": 11.531284875668135, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BLURUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BLURUSDT.json deleted file mode 100644 index c5a5aba8c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BLURUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 858.9120509049447, - "auto_unstuck_ema_dist": -0.025186318663159925, - "auto_unstuck_qty_pct": 0.010765006854872246, - "auto_unstuck_wallet_exposure_threshold": 0.2617268582249943, - "backwards_tp": true, - "ddown_factor": 0.3191326770188785, - "ema_span_0": 1176.1146877147062, - "ema_span_1": 423.45577642854465, - "enabled": true, - "initial_eprice_ema_dist": -0.08005963311537093, - "initial_qty_pct": 0.012626582262506271, - "markup_range": 0.0032991495754256827, - "min_markup": 0.003375833907375293, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029879667152032163, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9238510481158029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1284.387743444144, - "auto_unstuck_ema_dist": -0.07766230205265005, - "auto_unstuck_qty_pct": 0.03107895927937002, - "auto_unstuck_wallet_exposure_threshold": 0.12640373451830655, - "backwards_tp": true, - "ddown_factor": 1.1882889985634295, - "ema_span_0": 460.46873887847516, - "ema_span_1": 354.7577339598585, - "enabled": true, - "initial_eprice_ema_dist": -0.00560566633404924, - "initial_qty_pct": 0.023365374120667547, - "markup_range": 0.004618467099590262, - "min_markup": 0.004519652996313929, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03402654405201672, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84952262791504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BLZUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BLZUSDT.json deleted file mode 100644 index 0d4156ae4..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BLZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 452.15904809063693, - "auto_unstuck_ema_dist": -0.014285824690560984, - "auto_unstuck_qty_pct": 0.0521692196603833, - "auto_unstuck_wallet_exposure_threshold": 0.6877551473946163, - "backwards_tp": true, - "ddown_factor": 2.7141105620226256, - "ema_span_0": 508.2213600654218, - "ema_span_1": 946.0034787279218, - "enabled": true, - "initial_eprice_ema_dist": -0.007690320636594495, - "initial_qty_pct": 0.010485765823889966, - "markup_range": 0.002201599882509027, - "min_markup": 0.0020891237062544057, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04192950389909169, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6748235656956307, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BNBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BNBUSDT.json deleted file mode 100644 index 7195e913f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BNBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 649.324644096024, - "auto_unstuck_ema_dist": -0.04901849705010845, - "auto_unstuck_qty_pct": 0.014456115085733735, - "auto_unstuck_wallet_exposure_threshold": 0.6358522828853526, - "backwards_tp": true, - "ddown_factor": 1.641192561932807, - "ema_span_0": 223.35252049135775, - "ema_span_1": 420.81427522046374, - "enabled": true, - "initial_eprice_ema_dist": 0.0019384343121365824, - "initial_qty_pct": 0.010055985175192114, - "markup_range": 0.002123077193469862, - "min_markup": 0.003347542691462894, - "n_close_orders": 13, - "rentry_pprice_dist": 0.02133096912438434, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6213245721933132, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BNXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BNXUSDT.json deleted file mode 100644 index f0be3d32c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1326.11565083092, - "auto_unstuck_ema_dist": -0.035847091613266276, - "auto_unstuck_qty_pct": 0.010948146381464515, - "auto_unstuck_wallet_exposure_threshold": 0.582212526726604, - "backwards_tp": true, - "ddown_factor": 0.3516173493929475, - "ema_span_0": 643.3492643631461, - "ema_span_1": 26.309945213582424, - "enabled": true, - "initial_eprice_ema_dist": 0.002527736092960598, - "initial_qty_pct": 0.013295145242377033, - "markup_range": 0.008312405968088233, - "min_markup": 0.007847912113510522, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044200522902569, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3732636321146536, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BTCDOMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BTCDOMUSDT.json deleted file mode 100644 index a329e618f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BTCDOMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.9344991646772, - "auto_unstuck_ema_dist": -0.022067294005199984, - "auto_unstuck_qty_pct": 0.0633468265035235, - "auto_unstuck_wallet_exposure_threshold": 0.8677564655154589, - "backwards_tp": true, - "ddown_factor": 2.3477472399500536, - "ema_span_0": 639.9315543626221, - "ema_span_1": 264.7796363712572, - "enabled": true, - "initial_eprice_ema_dist": 0.002790338720872738, - "initial_qty_pct": 0.012023729081705743, - "markup_range": 0.0007762143878322973, - "min_markup": 0.002359920488952337, - "n_close_orders": 10, - "rentry_pprice_dist": 0.020252204272458, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1768721282568092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 497.5906534475687, - "auto_unstuck_ema_dist": -0.040869988463281735, - "auto_unstuck_qty_pct": 0.04035802313752252, - "auto_unstuck_wallet_exposure_threshold": 0.3525969403230897, - "backwards_tp": true, - "ddown_factor": 1.3249219853781622, - "ema_span_0": 1357.516125272833, - "ema_span_1": 882.6627710672166, - "enabled": true, - "initial_eprice_ema_dist": -0.002829104421338118, - "initial_qty_pct": 0.010004022601790714, - "markup_range": 0.0003739165593537279, - "min_markup": 0.003807757153799048, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027800515093534164, - "rentry_pprice_dist_wallet_exposure_weighting": 7.443746602756841, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BTCSTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BTCSTUSDT.json deleted file mode 100644 index b353c985c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BTCSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BTCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BTCUSDT.json deleted file mode 100644 index a68452dca..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1406.8745656169467, - "auto_unstuck_ema_dist": -0.002415572848165019, - "auto_unstuck_qty_pct": 0.021897124071165935, - "auto_unstuck_wallet_exposure_threshold": 0.41119356496064, - "backwards_tp": true, - "ddown_factor": 2.213351435149487, - "ema_span_0": 1159.1201793595333, - "ema_span_1": 46.038307681490046, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012220313524271685, - "markup_range": 0.0008161976715174526, - "min_markup": 0.0016937394514188538, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04121531657985319, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4651980195192236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/BTSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/BTSUSDT.json deleted file mode 100644 index fa2f3cf9d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/BTSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1145.5888633181269, - "auto_unstuck_ema_dist": -0.03801667604833182, - "auto_unstuck_qty_pct": 0.020755018221725752, - "auto_unstuck_wallet_exposure_threshold": 0.8714155917042538, - "backwards_tp": true, - "ddown_factor": 1.093797502358637, - "ema_span_0": 813.9552274116804, - "ema_span_1": 1198.2705660247493, - "enabled": true, - "initial_eprice_ema_dist": -0.006895167794078618, - "initial_qty_pct": 0.013256818535263622, - "markup_range": 0.00026930762715377053, - "min_markup": 0.009325514000959701, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04483523457129244, - "rentry_pprice_dist_wallet_exposure_weighting": 8.42737001726882, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 801.9407580114595, - "auto_unstuck_ema_dist": -0.014190933471903595, - "auto_unstuck_qty_pct": 0.010313379205851117, - "auto_unstuck_wallet_exposure_threshold": 0.2511233758697617, - "backwards_tp": true, - "ddown_factor": 0.31574023368334203, - "ema_span_0": 857.135134451504, - "ema_span_1": 773.1264732553607, - "enabled": true, - "initial_eprice_ema_dist": -0.0001582595430693864, - "initial_qty_pct": 0.012724713270943724, - "markup_range": 0.0035660663450992, - "min_markup": 0.005328987333979542, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030530973334552264, - "rentry_pprice_dist_wallet_exposure_weighting": 6.417842653221031, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/C98USDT.json b/configs/live/single_symbol_optimizations/recursive_grid/C98USDT.json deleted file mode 100644 index 0fce4c37f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/C98USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1065.85241012398, - "auto_unstuck_ema_dist": -0.042811656578468985, - "auto_unstuck_qty_pct": 0.029415949366314063, - "auto_unstuck_wallet_exposure_threshold": 0.5938414176243073, - "backwards_tp": true, - "ddown_factor": 0.6837274524393956, - "ema_span_0": 1213.9497326583946, - "ema_span_1": 558.9840530046024, - "enabled": true, - "initial_eprice_ema_dist": -0.0012086499974279079, - "initial_qty_pct": 0.017540149860911403, - "markup_range": 0.0048921026384613885, - "min_markup": 0.008046855822096683, - "n_close_orders": 6, - "rentry_pprice_dist": 0.031395651969440795, - "rentry_pprice_dist_wallet_exposure_weighting": 10.392174692278287, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CELOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CELOUSDT.json deleted file mode 100644 index f02aac7c2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CELOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.5014048895968, - "auto_unstuck_ema_dist": -0.05793007432114491, - "auto_unstuck_qty_pct": 0.034020023849035054, - "auto_unstuck_wallet_exposure_threshold": 0.21273151683759653, - "backwards_tp": true, - "ddown_factor": 1.2621889414343654, - "ema_span_0": 886.320063774315, - "ema_span_1": 529.0373722563329, - "enabled": true, - "initial_eprice_ema_dist": -0.0032858487921914245, - "initial_qty_pct": 0.011398093134326997, - "markup_range": 0.004305612733085813, - "min_markup": 0.005651608238257144, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037283764140798384, - "rentry_pprice_dist_wallet_exposure_weighting": 2.265028732253464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1330.2415066696112, - "auto_unstuck_ema_dist": -0.061698419252593374, - "auto_unstuck_qty_pct": 0.01031715558195571, - "auto_unstuck_wallet_exposure_threshold": 0.8242779866682238, - "backwards_tp": true, - "ddown_factor": 2.89268129005806, - "ema_span_0": 1236.6524686998243, - "ema_span_1": 1395.0720821171149, - "enabled": true, - "initial_eprice_ema_dist": 0.0017503195992355023, - "initial_qty_pct": 0.015359562884602053, - "markup_range": 0.0022515983872850374, - "min_markup": 0.00999948834769537, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04355910762246303, - "rentry_pprice_dist_wallet_exposure_weighting": 5.155530709773846, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CELRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CELRUSDT.json deleted file mode 100644 index cb979e259..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CELRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1425.5698682070658, - "auto_unstuck_ema_dist": -0.014801442370167658, - "auto_unstuck_qty_pct": 0.02973409367529811, - "auto_unstuck_wallet_exposure_threshold": 0.3839097666381447, - "backwards_tp": true, - "ddown_factor": 0.8194972284980494, - "ema_span_0": 1068.2157281516772, - "ema_span_1": 969.3649512649674, - "enabled": true, - "initial_eprice_ema_dist": -0.014871183771151238, - "initial_qty_pct": 0.014914136754572399, - "markup_range": 0.004767313212952974, - "min_markup": 0.004861327976733535, - "n_close_orders": 15, - "rentry_pprice_dist": 0.031864142360379925, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5885794920557245, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CFXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CFXUSDT.json deleted file mode 100644 index 9484b3f7d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CFXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 736.2454867276975, - "auto_unstuck_ema_dist": -0.027524210060849316, - "auto_unstuck_qty_pct": 0.021182413237384255, - "auto_unstuck_wallet_exposure_threshold": 0.505919993088393, - "backwards_tp": true, - "ddown_factor": 0.7492514963293893, - "ema_span_0": 1017.1017345354385, - "ema_span_1": 833.768028465007, - "enabled": true, - "initial_eprice_ema_dist": -0.05654387178988762, - "initial_qty_pct": 0.01293569502512144, - "markup_range": 0.0004206944188103574, - "min_markup": 0.00633400246237213, - "n_close_orders": 12, - "rentry_pprice_dist": 0.041528393554751464, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7495419107434724, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1196.1165223580242, - "auto_unstuck_ema_dist": -0.05283200501030064, - "auto_unstuck_qty_pct": 0.04945216602205006, - "auto_unstuck_wallet_exposure_threshold": 0.38451833679428693, - "backwards_tp": true, - "ddown_factor": 0.7230957520217839, - "ema_span_0": 1112.2876634636616, - "ema_span_1": 1246.3866483073696, - "enabled": true, - "initial_eprice_ema_dist": 0.0029602392893604648, - "initial_qty_pct": 0.010151256212909776, - "markup_range": 0.009238668241605234, - "min_markup": 0.009998052020141653, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04323949687393191, - "rentry_pprice_dist_wallet_exposure_weighting": 7.36599302417086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CHRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CHRUSDT.json deleted file mode 100644 index c6d894c3d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CHRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CHZUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CHZUSDT.json deleted file mode 100644 index e6eea3d9b..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CHZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 985.2017849579449, - "auto_unstuck_ema_dist": -0.023378153401603537, - "auto_unstuck_qty_pct": 0.022070244023777084, - "auto_unstuck_wallet_exposure_threshold": 0.27480787660526457, - "backwards_tp": true, - "ddown_factor": 1.179697567219471, - "ema_span_0": 823.0366469086534, - "ema_span_1": 976.3246152898656, - "enabled": true, - "initial_eprice_ema_dist": -0.0017140863429902474, - "initial_qty_pct": 0.014058525010545098, - "markup_range": 0.00018532931824882223, - "min_markup": 0.002280893908558229, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03205615816903649, - "rentry_pprice_dist_wallet_exposure_weighting": 8.015088960078147, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 945.743889955694, - "auto_unstuck_ema_dist": -0.023408985245180324, - "auto_unstuck_qty_pct": 0.07328452360829435, - "auto_unstuck_wallet_exposure_threshold": 0.6500826858595128, - "backwards_tp": true, - "ddown_factor": 0.44649079542371406, - "ema_span_0": 5.025049710055566, - "ema_span_1": 837.8383084278364, - "enabled": true, - "initial_eprice_ema_dist": -0.006136700258531128, - "initial_qty_pct": 0.015913919742814003, - "markup_range": 0.0042184362420993075, - "min_markup": 0.004326435927802897, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03594642134242793, - "rentry_pprice_dist_wallet_exposure_weighting": 7.620198800585904, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CKBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CKBUSDT.json deleted file mode 100644 index 35bc7e21f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CKBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 719.9872027686143, - "auto_unstuck_ema_dist": -0.022541606308323435, - "auto_unstuck_qty_pct": 0.06270207829324834, - "auto_unstuck_wallet_exposure_threshold": 0.49696955946950716, - "backwards_tp": true, - "ddown_factor": 0.4908205683212454, - "ema_span_0": 851.4823300946229, - "ema_span_1": 283.3880926531075, - "enabled": true, - "initial_eprice_ema_dist": -0.0011106649019491214, - "initial_qty_pct": 0.011064611774235726, - "markup_range": 0.00042112398364548844, - "min_markup": 0.004339088179395441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.010048653902822655, - "rentry_pprice_dist_wallet_exposure_weighting": 11.350702080438928, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/COCOSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/COCOSUSDT.json deleted file mode 100644 index 9edd206d6..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/COCOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/COMBOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/COMBOUSDT.json deleted file mode 100644 index eb681d844..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/COMBOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/COMPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/COMPUSDT.json deleted file mode 100644 index b375fbcb1..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/COMPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1259.2222594547807, - "auto_unstuck_ema_dist": -0.0017839632930156271, - "auto_unstuck_qty_pct": 0.02541223198632915, - "auto_unstuck_wallet_exposure_threshold": 0.22937451812506893, - "backwards_tp": true, - "ddown_factor": 1.528138260958659, - "ema_span_0": 705.4985529229147, - "ema_span_1": 595.2513468178071, - "enabled": true, - "initial_eprice_ema_dist": 0.002993727533351603, - "initial_qty_pct": 0.01148113343595019, - "markup_range": 0.004795730669560148, - "min_markup": 0.008722121698237694, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032535217802581604, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7634190288152283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0157232326517, - "auto_unstuck_ema_dist": 0.002584536889395626, - "auto_unstuck_qty_pct": 0.016067830025278666, - "auto_unstuck_wallet_exposure_threshold": 0.17865852417429198, - "backwards_tp": true, - "ddown_factor": 2.5315985008952455, - "ema_span_0": 859.8164633515628, - "ema_span_1": 778.88727913339, - "enabled": true, - "initial_eprice_ema_dist": 0.0029469027371997873, - "initial_qty_pct": 0.011229049152531517, - "markup_range": 0.004301705171347274, - "min_markup": 0.002964225037769906, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047375817041585104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.041978447464432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/COTIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/COTIUSDT.json deleted file mode 100644 index 82692d95e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/COTIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 574.344169418713, - "auto_unstuck_ema_dist": -0.03481422027106388, - "auto_unstuck_qty_pct": 0.03022336328245923, - "auto_unstuck_wallet_exposure_threshold": 0.5323877254111089, - "backwards_tp": true, - "ddown_factor": 1.740088543123524, - "ema_span_0": 884.5670551739261, - "ema_span_1": 639.200551599003, - "enabled": true, - "initial_eprice_ema_dist": -0.06058077213034108, - "initial_qty_pct": 0.01135125357132539, - "markup_range": 0.0038659725400036916, - "min_markup": 0.006632519972629661, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04890431758270741, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4302483058240284, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1205.8576874212906, - "auto_unstuck_ema_dist": -0.0010280624754426477, - "auto_unstuck_qty_pct": 0.01527667510562908, - "auto_unstuck_wallet_exposure_threshold": 0.364379339136935, - "backwards_tp": true, - "ddown_factor": 1.5368027916383185, - "ema_span_0": 848.81336362016, - "ema_span_1": 1335.9007963537538, - "enabled": true, - "initial_eprice_ema_dist": 0.002573964246910236, - "initial_qty_pct": 0.01293312249768614, - "markup_range": 0.005820406918875949, - "min_markup": 0.008544253845760642, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049773570053834607, - "rentry_pprice_dist_wallet_exposure_weighting": 7.267870803124825, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CRVUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CRVUSDT.json deleted file mode 100644 index 49a04bfc9..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CRVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 840.2253484700655, - "auto_unstuck_ema_dist": -0.023366736797704436, - "auto_unstuck_qty_pct": 0.025650539557371923, - "auto_unstuck_wallet_exposure_threshold": 0.8164346940880333, - "backwards_tp": true, - "ddown_factor": 2.1210336039706976, - "ema_span_0": 182.65054021194098, - "ema_span_1": 824.5436126292714, - "enabled": true, - "initial_eprice_ema_dist": 0.0029999868387410884, - "initial_qty_pct": 0.012094147367994306, - "markup_range": 0.006698144904276781, - "min_markup": 0.003487712386149594, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04350474406167253, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1573575779480527, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 711.2337066151758, - "auto_unstuck_ema_dist": -0.010404838650753841, - "auto_unstuck_qty_pct": 0.03779367645397644, - "auto_unstuck_wallet_exposure_threshold": 0.43922809015550485, - "backwards_tp": true, - "ddown_factor": 0.43307557065446145, - "ema_span_0": 927.3567638464951, - "ema_span_1": 930.8845117162875, - "enabled": true, - "initial_eprice_ema_dist": -0.004101479447598992, - "initial_qty_pct": 0.017824415647080507, - "markup_range": 0.0023435444053004077, - "min_markup": 0.0057700813985241415, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04324540175759041, - "rentry_pprice_dist_wallet_exposure_weighting": 3.0777728172464607, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CTKUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CTKUSDT.json deleted file mode 100644 index d2c8a7688..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CTKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 700.4059086427156, - "auto_unstuck_ema_dist": -0.07845595812729256, - "auto_unstuck_qty_pct": 0.015540173980120902, - "auto_unstuck_wallet_exposure_threshold": 0.13678806113154424, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 571.7678101641162, - "ema_span_1": 510.73018023276023, - "enabled": true, - "initial_eprice_ema_dist": 0.001497053787941373, - "initial_qty_pct": 0.033801416538211074, - "markup_range": 0.0017783752531549898, - "min_markup": 0.008500353605879255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04997520271386973, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6438008415612816e-08, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 851.3786579639075, - "auto_unstuck_ema_dist": -0.05356076870047425, - "auto_unstuck_qty_pct": 0.09122179349519374, - "auto_unstuck_wallet_exposure_threshold": 0.16990946756240455, - "backwards_tp": true, - "ddown_factor": 0.13895769806822006, - "ema_span_0": 593.6994695970742, - "ema_span_1": 346.5178180246216, - "enabled": true, - "initial_eprice_ema_dist": -0.012317695889953148, - "initial_qty_pct": 0.010646978159658043, - "markup_range": 0.0035751412565706857, - "min_markup": 0.004524027198142064, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03097564697553242, - "rentry_pprice_dist_wallet_exposure_weighting": 12.927818997717173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CTSIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CTSIUSDT.json deleted file mode 100644 index 9a6b2107f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CTSIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1434.4048532508102, - "auto_unstuck_ema_dist": -0.04119795370957996, - "auto_unstuck_qty_pct": 0.02658978204492856, - "auto_unstuck_wallet_exposure_threshold": 0.5329906952426845, - "backwards_tp": true, - "ddown_factor": 0.15814353144646867, - "ema_span_0": 641.8772357560645, - "ema_span_1": 925.8446610384227, - "enabled": true, - "initial_eprice_ema_dist": -0.00896323419756504, - "initial_qty_pct": 0.010310682731389692, - "markup_range": 0.00026599646512492193, - "min_markup": 0.007120382197899004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029088387526338844, - "rentry_pprice_dist_wallet_exposure_weighting": 6.059115398462092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CVCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CVCUSDT.json deleted file mode 100644 index 101b5b757..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CVCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1033.3587503162703, - "auto_unstuck_ema_dist": -0.039713763863901505, - "auto_unstuck_qty_pct": 0.014837076462468379, - "auto_unstuck_wallet_exposure_threshold": 0.4108600334286868, - "backwards_tp": true, - "ddown_factor": 0.9664681763521198, - "ema_span_0": 1000.484246728451, - "ema_span_1": 23.56752968494623, - "enabled": true, - "initial_eprice_ema_dist": 0.00016004260672259133, - "initial_qty_pct": 0.01079877076958448, - "markup_range": 0.0005517243667842997, - "min_markup": 0.009240136702262336, - "n_close_orders": 15, - "rentry_pprice_dist": 0.048272245968692555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/CVXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/CVXUSDT.json deleted file mode 100644 index d6c7fc6db..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/CVXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1432.9054877991916, - "auto_unstuck_ema_dist": -0.056249317424465824, - "auto_unstuck_qty_pct": 0.010329159326857252, - "auto_unstuck_wallet_exposure_threshold": 0.40120993232564806, - "backwards_tp": true, - "ddown_factor": 0.5912278395641893, - "ema_span_0": 1278.158205997059, - "ema_span_1": 868.6484498245891, - "enabled": true, - "initial_eprice_ema_dist": 0.002918840677533508, - "initial_qty_pct": 0.011078568271797849, - "markup_range": 0.008774107991270793, - "min_markup": 0.0083130089286466, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04419898935777256, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 494.05603253061946, - "auto_unstuck_ema_dist": -0.023086856721043724, - "auto_unstuck_qty_pct": 0.010457519227864292, - "auto_unstuck_wallet_exposure_threshold": 0.3066546329339178, - "backwards_tp": true, - "ddown_factor": 1.7231671841906888, - "ema_span_0": 244.46429383843213, - "ema_span_1": 1243.6864537441083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029910277771705474, - "initial_qty_pct": 0.012424905322167275, - "markup_range": 0.0036873421405612793, - "min_markup": 0.002485408498844004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02011957028063695, - "rentry_pprice_dist_wallet_exposure_weighting": 5.759737984134167, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DARUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DARUSDT.json deleted file mode 100644 index c6e91de57..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 736.2454867276975, - "auto_unstuck_ema_dist": -0.027524210060849316, - "auto_unstuck_qty_pct": 0.021182413237384255, - "auto_unstuck_wallet_exposure_threshold": 0.505919993088393, - "backwards_tp": true, - "ddown_factor": 0.7492514963293893, - "ema_span_0": 1017.1017345354385, - "ema_span_1": 833.768028465007, - "enabled": true, - "initial_eprice_ema_dist": -0.05654387178988762, - "initial_qty_pct": 0.01293569502512144, - "markup_range": 0.0004206944188103574, - "min_markup": 0.00633400246237213, - "n_close_orders": 12, - "rentry_pprice_dist": 0.041528393554751464, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7495419107434724, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.6006770474733, - "auto_unstuck_ema_dist": -0.006854116150027488, - "auto_unstuck_qty_pct": 0.031644168490077784, - "auto_unstuck_wallet_exposure_threshold": 0.2557531129335714, - "backwards_tp": true, - "ddown_factor": 1.3832185824096965, - "ema_span_0": 1280.9824315832243, - "ema_span_1": 1197.5966306581568, - "enabled": true, - "initial_eprice_ema_dist": -0.04816000304172703, - "initial_qty_pct": 0.010950851120518782, - "markup_range": 0.0008022919858492278, - "min_markup": 0.008683689277631091, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04363476732084077, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4912416058069824, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DASHUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DASHUSDT.json deleted file mode 100644 index aa6c2efff..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DASHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1284.387743444144, - "auto_unstuck_ema_dist": -0.07766230205265005, - "auto_unstuck_qty_pct": 0.03107895927937002, - "auto_unstuck_wallet_exposure_threshold": 0.12640373451830655, - "backwards_tp": true, - "ddown_factor": 1.1882889985634295, - "ema_span_0": 460.46873887847516, - "ema_span_1": 354.7577339598585, - "enabled": true, - "initial_eprice_ema_dist": -0.00560566633404924, - "initial_qty_pct": 0.023365374120667547, - "markup_range": 0.004618467099590262, - "min_markup": 0.004519652996313929, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03402654405201672, - "rentry_pprice_dist_wallet_exposure_weighting": 4.84952262791504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DEFIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DEFIUSDT.json deleted file mode 100644 index a7b410113..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DEFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.286331700472, - "auto_unstuck_ema_dist": -0.027972942878892803, - "auto_unstuck_qty_pct": 0.012904106128991134, - "auto_unstuck_wallet_exposure_threshold": 0.8521738600901125, - "backwards_tp": true, - "ddown_factor": 1.4721600382065791, - "ema_span_0": 631.788590274504, - "ema_span_1": 507.70507795283646, - "enabled": true, - "initial_eprice_ema_dist": -0.06780536466712907, - "initial_qty_pct": 0.01, - "markup_range": 0.0051530070515828546, - "min_markup": 0.0047356588218692595, - "n_close_orders": 9, - "rentry_pprice_dist": 0.031150624560227946, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2998671254163767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DENTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DENTUSDT.json deleted file mode 100644 index 6742531c9..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DENTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1145.5888633181269, - "auto_unstuck_ema_dist": -0.03801667604833182, - "auto_unstuck_qty_pct": 0.020755018221725752, - "auto_unstuck_wallet_exposure_threshold": 0.8714155917042538, - "backwards_tp": true, - "ddown_factor": 1.093797502358637, - "ema_span_0": 813.9552274116804, - "ema_span_1": 1198.2705660247493, - "enabled": true, - "initial_eprice_ema_dist": -0.006895167794078618, - "initial_qty_pct": 0.013256818535263622, - "markup_range": 0.00026930762715377053, - "min_markup": 0.009325514000959701, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04483523457129244, - "rentry_pprice_dist_wallet_exposure_weighting": 8.42737001726882, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DGBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DGBUSDT.json deleted file mode 100644 index 461512b56..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DGBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1045.1101349643511, - "auto_unstuck_ema_dist": -0.01571585197546857, - "auto_unstuck_qty_pct": 0.029158649031222936, - "auto_unstuck_wallet_exposure_threshold": 0.46471032498092524, - "backwards_tp": true, - "ddown_factor": 1.3987351225344555, - "ema_span_0": 1439.9999945685292, - "ema_span_1": 1393.465716936036, - "enabled": true, - "initial_eprice_ema_dist": 0.002700537639421378, - "initial_qty_pct": 0.011376273692095484, - "markup_range": 0.000374350179583882, - "min_markup": 0.0021708143140020926, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04765180199403366, - "rentry_pprice_dist_wallet_exposure_weighting": 11.905707228545854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DOGEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DOGEUSDT.json deleted file mode 100644 index dd3ff3390..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DOGEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 552.3188758679288, - "auto_unstuck_ema_dist": -0.04591378200206638, - "auto_unstuck_qty_pct": 0.05626107116747149, - "auto_unstuck_wallet_exposure_threshold": 0.4602219946573663, - "backwards_tp": true, - "ddown_factor": 1.3951701518491564, - "ema_span_0": 440.97604187441436, - "ema_span_1": 110.73537403506484, - "enabled": true, - "initial_eprice_ema_dist": -0.04593957402768092, - "initial_qty_pct": 0.02672422218384816, - "markup_range": 0.000498386416717681, - "min_markup": 0.002238448149174809, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029083772205585893, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6158224076439239, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1139.7728995864557, - "auto_unstuck_ema_dist": -0.023081106839934314, - "auto_unstuck_qty_pct": 0.03748571846253171, - "auto_unstuck_wallet_exposure_threshold": 0.7875053927076942, - "backwards_tp": true, - "ddown_factor": 1.263073040551669, - "ema_span_0": 407.8882311368191, - "ema_span_1": 1049.8944842296105, - "enabled": true, - "initial_eprice_ema_dist": 0.00209315761028984, - "initial_qty_pct": 0.010010524281366558, - "markup_range": 0.0022203698473854923, - "min_markup": 0.004680246675885636, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03598159258333229, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0060424074557932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DOTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DOTUSDT.json deleted file mode 100644 index bc7e06c0e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1381.0876075499077, - "auto_unstuck_ema_dist": -0.025578597821771736, - "auto_unstuck_qty_pct": 0.010585562568991133, - "auto_unstuck_wallet_exposure_threshold": 0.7878922762152266, - "backwards_tp": true, - "ddown_factor": 1.6125197642627378, - "ema_span_0": 1141.7282366837135, - "ema_span_1": 1250.4833011784374, - "enabled": true, - "initial_eprice_ema_dist": 0.0024884006641289263, - "initial_qty_pct": 0.021413105497511464, - "markup_range": 0.00031004193484855674, - "min_markup": 0.004950758087091994, - "n_close_orders": 12, - "rentry_pprice_dist": 0.027220199344188158, - "rentry_pprice_dist_wallet_exposure_weighting": 4.155505234417767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1049.6000700624825, - "auto_unstuck_ema_dist": -0.07016168073678879, - "auto_unstuck_qty_pct": 0.03411226817446472, - "auto_unstuck_wallet_exposure_threshold": 0.41911496881061083, - "backwards_tp": true, - "ddown_factor": 1.4243544030080155, - "ema_span_0": 486.74816073199383, - "ema_span_1": 522.612364856291, - "enabled": true, - "initial_eprice_ema_dist": -0.02199351403309815, - "initial_qty_pct": 0.022715060199545344, - "markup_range": 0.0015981849693865685, - "min_markup": 0.00227441883012074, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03617149292037044, - "rentry_pprice_dist_wallet_exposure_weighting": 3.239183468007264, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DUSKUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DUSKUSDT.json deleted file mode 100644 index 4119c8238..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DUSKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/DYDXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/DYDXUSDT.json deleted file mode 100644 index cae5af355..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/DYDXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1239.5398828537122, - "auto_unstuck_ema_dist": 0.0011002178656988298, - "auto_unstuck_qty_pct": 0.040879571278322355, - "auto_unstuck_wallet_exposure_threshold": 0.8965749947588251, - "backwards_tp": true, - "ddown_factor": 1.7047054543885927, - "ema_span_0": 379.214100284615, - "ema_span_1": 1421.6821458320787, - "enabled": true, - "initial_eprice_ema_dist": -0.0003425739829469274, - "initial_qty_pct": 0.014884243887259483, - "markup_range": 0.005591416742867247, - "min_markup": 0.004547267453440362, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04413645431110037, - "rentry_pprice_dist_wallet_exposure_weighting": 7.462635340608269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/EDUUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/EDUUSDT.json deleted file mode 100644 index 747defba8..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/EDUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1430.1668224390223, - "auto_unstuck_ema_dist": -0.05362713067279739, - "auto_unstuck_qty_pct": 0.020551497450486567, - "auto_unstuck_wallet_exposure_threshold": 0.5868761434410041, - "backwards_tp": true, - "ddown_factor": 2.49367560587514, - "ema_span_0": 700.7109127906153, - "ema_span_1": 72.05008311953658, - "enabled": true, - "initial_eprice_ema_dist": -0.06356600773835705, - "initial_qty_pct": 0.011831058904488633, - "markup_range": 0.0012650945306156493, - "min_markup": 0.0028671211460412627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04921412763943395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4515340185734575, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/EGLDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/EGLDUSDT.json deleted file mode 100644 index 6270ec9cb..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/EGLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 548.0018081711165, - "auto_unstuck_ema_dist": -0.09529681369980958, - "auto_unstuck_qty_pct": 0.013231854366587081, - "auto_unstuck_wallet_exposure_threshold": 0.6954976759037619, - "backwards_tp": true, - "ddown_factor": 0.47480984142740734, - "ema_span_0": 690.0761930646295, - "ema_span_1": 776.427386825719, - "enabled": true, - "initial_eprice_ema_dist": -0.028371232545843603, - "initial_qty_pct": 0.015716904584643306, - "markup_range": 0.001316874522812284, - "min_markup": 0.009930570650023946, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04643869172769503, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2795580038866161, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 811.8069696794367, - "auto_unstuck_ema_dist": -0.05633603566329742, - "auto_unstuck_qty_pct": 0.015906332321682638, - "auto_unstuck_wallet_exposure_threshold": 0.2664719686272888, - "backwards_tp": true, - "ddown_factor": 2.3830249187762216, - "ema_span_0": 521.4481332673926, - "ema_span_1": 310.47130513840716, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013551881854438869, - "markup_range": 0.0014466558665886867, - "min_markup": 0.0046778885964969, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04715683663859728, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0038102242201068777, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ENJUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ENJUSDT.json deleted file mode 100644 index ca134a11c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ENJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1287.110167823567, - "auto_unstuck_ema_dist": -0.02092415848880657, - "auto_unstuck_qty_pct": 0.01036977749035834, - "auto_unstuck_wallet_exposure_threshold": 0.5240628344572208, - "backwards_tp": true, - "ddown_factor": 2.207450473015773, - "ema_span_0": 1365.0726499142447, - "ema_span_1": 961.8654839651223, - "enabled": true, - "initial_eprice_ema_dist": 0.0029303512753157696, - "initial_qty_pct": 0.013025845734504818, - "markup_range": 0.007500660136338641, - "min_markup": 0.006319391022263179, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03664537942906481, - "rentry_pprice_dist_wallet_exposure_weighting": 2.83163396143051, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 986.5908726805565, - "auto_unstuck_ema_dist": -0.01823173171224137, - "auto_unstuck_qty_pct": 0.022466129648137705, - "auto_unstuck_wallet_exposure_threshold": 0.31170232385417007, - "backwards_tp": true, - "ddown_factor": 0.9871386911977406, - "ema_span_0": 84.9585407094777, - "ema_span_1": 487.9272576931248, - "enabled": true, - "initial_eprice_ema_dist": -0.0032342487590638807, - "initial_qty_pct": 0.015630480895998534, - "markup_range": 0.0032358892154203157, - "min_markup": 0.006017698894441818, - "n_close_orders": 5, - "rentry_pprice_dist": 0.024428342955028097, - "rentry_pprice_dist_wallet_exposure_weighting": 7.966015112590907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ENSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ENSUSDT.json deleted file mode 100644 index 0fc1ef68d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ENSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1019.7280570370905, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.04720451954781402, - "auto_unstuck_wallet_exposure_threshold": 0.541337782205087, - "backwards_tp": true, - "ddown_factor": 1.0984124597176057, - "ema_span_0": 1145.1131894215428, - "ema_span_1": 1166.8004174624189, - "enabled": true, - "initial_eprice_ema_dist": -0.00011677048610017664, - "initial_qty_pct": 0.01653909787573966, - "markup_range": 0.0069204364219696895, - "min_markup": 0.005262482253868771, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03354366422901962, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9223261375717757, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.6362129078252, - "auto_unstuck_ema_dist": -0.06924517801728552, - "auto_unstuck_qty_pct": 0.02462266924412914, - "auto_unstuck_wallet_exposure_threshold": 0.46664326026802394, - "backwards_tp": true, - "ddown_factor": 0.697030467982081, - "ema_span_0": 185.43593708053575, - "ema_span_1": 753.2896049053888, - "enabled": true, - "initial_eprice_ema_dist": -0.024429212687072155, - "initial_qty_pct": 0.015597461647230004, - "markup_range": 0.003133097075519459, - "min_markup": 0.009716022902753809, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03532954687445271, - "rentry_pprice_dist_wallet_exposure_weighting": 4.650179039739776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/EOSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/EOSUSDT.json deleted file mode 100644 index 14fb92fa9..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/EOSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 838.2146238990925, - "auto_unstuck_ema_dist": -0.019148270672980673, - "auto_unstuck_qty_pct": 0.024831448120799054, - "auto_unstuck_wallet_exposure_threshold": 0.4321698602106777, - "backwards_tp": true, - "ddown_factor": 2.3835056128593073, - "ema_span_0": 1259.7418872876985, - "ema_span_1": 1283.9376549341448, - "enabled": true, - "initial_eprice_ema_dist": -0.006353162151402346, - "initial_qty_pct": 0.017794644420293562, - "markup_range": 0.004237591339261168, - "min_markup": 0.003771987382509844, - "n_close_orders": 9, - "rentry_pprice_dist": 0.042022784002796965, - "rentry_pprice_dist_wallet_exposure_weighting": 3.574420557866411, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ETCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ETCUSDT.json deleted file mode 100644 index da37f01a8..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ETCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1302.9531491971718, - "auto_unstuck_ema_dist": -0.04269128350596152, - "auto_unstuck_qty_pct": 0.03701610852863834, - "auto_unstuck_wallet_exposure_threshold": 0.835821071949986, - "backwards_tp": true, - "ddown_factor": 1.8487626908147374, - "ema_span_0": 693.8661020103932, - "ema_span_1": 674.0136350698602, - "enabled": true, - "initial_eprice_ema_dist": -0.0016118273237717277, - "initial_qty_pct": 0.013285910916325555, - "markup_range": 1.2162363349742814e-07, - "min_markup": 0.0028094452663508253, - "n_close_orders": 15, - "rentry_pprice_dist": 0.022327075780436214, - "rentry_pprice_dist_wallet_exposure_weighting": 2.228088694397499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 550.6713097659875, - "auto_unstuck_ema_dist": -0.07602126198476951, - "auto_unstuck_qty_pct": 0.025549221618325818, - "auto_unstuck_wallet_exposure_threshold": 0.3491359091003833, - "backwards_tp": true, - "ddown_factor": 2.530767602741874, - "ema_span_0": 1358.7496983747205, - "ema_span_1": 751.5189824565573, - "enabled": true, - "initial_eprice_ema_dist": -0.002223418982664084, - "initial_qty_pct": 0.013033658859953034, - "markup_range": 0.004852500302082749, - "min_markup": 0.002356927586404052, - "n_close_orders": 13, - "rentry_pprice_dist": 0.047843413844569686, - "rentry_pprice_dist_wallet_exposure_weighting": 1.0626143278654, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ETHUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ETHUSDT.json deleted file mode 100644 index dafa50802..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ETHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 494.05603253061946, - "auto_unstuck_ema_dist": -0.023086856721043724, - "auto_unstuck_qty_pct": 0.010457519227864292, - "auto_unstuck_wallet_exposure_threshold": 0.3066546329339178, - "backwards_tp": true, - "ddown_factor": 1.7231671841906888, - "ema_span_0": 244.46429383843213, - "ema_span_1": 1243.6864537441083, - "enabled": true, - "initial_eprice_ema_dist": 0.0029910277771705474, - "initial_qty_pct": 0.012424905322167275, - "markup_range": 0.0036873421405612793, - "min_markup": 0.002485408498844004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.02011957028063695, - "rentry_pprice_dist_wallet_exposure_weighting": 5.759737984134167, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FETUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FETUSDT.json deleted file mode 100644 index 2c0fec8b7..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 506.5224882796207, - "auto_unstuck_ema_dist": -0.08475240721685956, - "auto_unstuck_qty_pct": 0.012664869049920266, - "auto_unstuck_wallet_exposure_threshold": 0.6532524345340186, - "backwards_tp": true, - "ddown_factor": 2.430144161947593, - "ema_span_0": 528.5455412023842, - "ema_span_1": 367.38161794220684, - "enabled": true, - "initial_eprice_ema_dist": -0.013085618386841582, - "initial_qty_pct": 0.012478838833229434, - "markup_range": 0.0001686732350185735, - "min_markup": 0.0012139802755085118, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03320301387348368, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3745648206115497, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FILUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FILUSDT.json deleted file mode 100644 index d883f7f70..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1434.4048532508102, - "auto_unstuck_ema_dist": -0.04119795370957996, - "auto_unstuck_qty_pct": 0.02658978204492856, - "auto_unstuck_wallet_exposure_threshold": 0.5329906952426845, - "backwards_tp": true, - "ddown_factor": 0.15814353144646867, - "ema_span_0": 641.8772357560645, - "ema_span_1": 925.8446610384227, - "enabled": true, - "initial_eprice_ema_dist": -0.00896323419756504, - "initial_qty_pct": 0.010310682731389692, - "markup_range": 0.00026599646512492193, - "min_markup": 0.007120382197899004, - "n_close_orders": 4, - "rentry_pprice_dist": 0.029088387526338844, - "rentry_pprice_dist_wallet_exposure_weighting": 6.059115398462092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 346.30319525825286, - "auto_unstuck_ema_dist": -0.08441630627600388, - "auto_unstuck_qty_pct": 0.07206611101840134, - "auto_unstuck_wallet_exposure_threshold": 0.9, - "backwards_tp": true, - "ddown_factor": 1.0846424243210377, - "ema_span_0": 152.31680260274277, - "ema_span_1": 247.7682295498298, - "enabled": true, - "initial_eprice_ema_dist": -0.03327846826801994, - "initial_qty_pct": 0.019848510587972486, - "markup_range": 0.0069919831199057245, - "min_markup": 0.0022269655280454624, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04268851951270453, - "rentry_pprice_dist_wallet_exposure_weighting": 9.09783142316145, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FLMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FLMUSDT.json deleted file mode 100644 index 67bf65bb6..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.508001379091, - "auto_unstuck_ema_dist": -0.020345722654077445, - "auto_unstuck_qty_pct": 0.01150874756017553, - "auto_unstuck_wallet_exposure_threshold": 0.22260963059354943, - "backwards_tp": true, - "ddown_factor": 1.1338733262238185, - "ema_span_0": 535.805181963809, - "ema_span_1": 1115.5868970331305, - "enabled": true, - "initial_eprice_ema_dist": 0.0027281082321336425, - "initial_qty_pct": 0.010193533565066864, - "markup_range": 5.544594397782226e-05, - "min_markup": 0.006216729057299458, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04686081827468278, - "rentry_pprice_dist_wallet_exposure_weighting": 7.564399677643441, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1085.2469038243767, - "auto_unstuck_ema_dist": -0.0008522837364774945, - "auto_unstuck_qty_pct": 0.034925149793132756, - "auto_unstuck_wallet_exposure_threshold": 0.6490792787192579, - "backwards_tp": true, - "ddown_factor": 2.725559413895135, - "ema_span_0": 1246.4041396734856, - "ema_span_1": 721.0164473108881, - "enabled": true, - "initial_eprice_ema_dist": 0.0029069721404982292, - "initial_qty_pct": 0.010264127588465465, - "markup_range": 0.0033129506289670905, - "min_markup": 0.009888300085947158, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04884547885938332, - "rentry_pprice_dist_wallet_exposure_weighting": 12.919813536648693, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FLOWUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FLOWUSDT.json deleted file mode 100644 index ae8676440..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FLOWUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 627.5107666923568, - "auto_unstuck_ema_dist": -0.09366106990460292, - "auto_unstuck_qty_pct": 0.023411014801263435, - "auto_unstuck_wallet_exposure_threshold": 0.4468051055559369, - "backwards_tp": true, - "ddown_factor": 0.858615909050395, - "ema_span_0": 1020.9239127322375, - "ema_span_1": 707.9673964203214, - "enabled": true, - "initial_eprice_ema_dist": 0.0017463510489048996, - "initial_qty_pct": 0.011186116070465112, - "markup_range": 0.004747740113903112, - "min_markup": 0.0012208568360109946, - "n_close_orders": 13, - "rentry_pprice_dist": 0.024676510058832778, - "rentry_pprice_dist_wallet_exposure_weighting": 12.201351819741623, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FOOTBALLUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FOOTBALLUSDT.json deleted file mode 100644 index 5870f0311..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FOOTBALLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1339.1865422605786, - "auto_unstuck_ema_dist": -0.008820788740679682, - "auto_unstuck_qty_pct": 0.0426943188630646, - "auto_unstuck_wallet_exposure_threshold": 0.1635952804712599, - "backwards_tp": true, - "ddown_factor": 0.1681718444888247, - "ema_span_0": 653.6849192955965, - "ema_span_1": 227.5333807116893, - "enabled": true, - "initial_eprice_ema_dist": -0.0030739368686215746, - "initial_qty_pct": 0.02568019576967234, - "markup_range": 8.020159895770236e-18, - "min_markup": 0.005358167510947481, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028331976945844457, - "rentry_pprice_dist_wallet_exposure_weighting": 1.901734260763618, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FTMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FTMUSDT.json deleted file mode 100644 index 0e888ef8a..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FTMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 219.24025587364116, - "auto_unstuck_ema_dist": -0.031110018685988606, - "auto_unstuck_qty_pct": 0.04574286333718071, - "auto_unstuck_wallet_exposure_threshold": 0.7938257327919622, - "backwards_tp": true, - "ddown_factor": 1.4729323670079542, - "ema_span_0": 705.9617065081634, - "ema_span_1": 343.84837638185144, - "enabled": true, - "initial_eprice_ema_dist": -0.07723899152469553, - "initial_qty_pct": 0.010208818031524187, - "markup_range": 0.0002731984932840805, - "min_markup": 0.0032915637261172713, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04518373796643903, - "rentry_pprice_dist_wallet_exposure_weighting": 7.047808190755242, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FTTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FTTUSDT.json deleted file mode 100644 index bc1cb0d58..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FTTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/FXSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/FXSUSDT.json deleted file mode 100644 index 7432a1a89..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/FXSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/GALAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/GALAUSDT.json deleted file mode 100644 index 75a65013e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/GALAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 495.4222436928258, - "auto_unstuck_ema_dist": -0.03366938661273936, - "auto_unstuck_qty_pct": 0.01673383184525977, - "auto_unstuck_wallet_exposure_threshold": 0.3510112328141472, - "backwards_tp": true, - "ddown_factor": 1.5806327160858866, - "ema_span_0": 484.3642784834503, - "ema_span_1": 605.7961084463778, - "enabled": true, - "initial_eprice_ema_dist": -0.007491668444314763, - "initial_qty_pct": 0.013280292633264815, - "markup_range": 0.0014002674896421781, - "min_markup": 0.0013169611829184312, - "n_close_orders": 5, - "rentry_pprice_dist": 0.02936614450844377, - "rentry_pprice_dist_wallet_exposure_weighting": 1.260473617355105, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 180.0026494518495, - "auto_unstuck_ema_dist": -0.07336423302068806, - "auto_unstuck_qty_pct": 0.08627465065990286, - "auto_unstuck_wallet_exposure_threshold": 0.848358320804483, - "backwards_tp": true, - "ddown_factor": 0.19430869966361974, - "ema_span_0": 943.6782913161207, - "ema_span_1": 704.1832743875825, - "enabled": true, - "initial_eprice_ema_dist": -0.02535374750258631, - "initial_qty_pct": 0.010412039382659187, - "markup_range": 0.008037284803621569, - "min_markup": 0.00675215117047174, - "n_close_orders": 4, - "rentry_pprice_dist": 0.0348493311332146, - "rentry_pprice_dist_wallet_exposure_weighting": 13.69427032059088, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/GALUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/GALUSDT.json deleted file mode 100644 index 1b2b81d70..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/GALUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/GMTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/GMTUSDT.json deleted file mode 100644 index 574614ae5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/GMTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1152.559527357442, - "auto_unstuck_ema_dist": -0.08512805070919303, - "auto_unstuck_qty_pct": 0.012152217082469208, - "auto_unstuck_wallet_exposure_threshold": 0.10500174205770166, - "backwards_tp": true, - "ddown_factor": 2.736882867458632, - "ema_span_0": 425.2396028163725, - "ema_span_1": 1227.6579283198496, - "enabled": true, - "initial_eprice_ema_dist": 0.0029314464349996902, - "initial_qty_pct": 0.012547339465654919, - "markup_range": 0.0020852667679600984, - "min_markup": 0.00535581163010827, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04344384582108559, - "rentry_pprice_dist_wallet_exposure_weighting": 1.545650266206948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/GMXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/GMXUSDT.json deleted file mode 100644 index 28a72d847..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/GMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 920.0625161325308, - "auto_unstuck_ema_dist": -0.04102322130771438, - "auto_unstuck_qty_pct": 0.015754744591555958, - "auto_unstuck_wallet_exposure_threshold": 0.6001621741573359, - "backwards_tp": true, - "ddown_factor": 2.409974839588648, - "ema_span_0": 630.2223771424993, - "ema_span_1": 1144.090014263891, - "enabled": true, - "initial_eprice_ema_dist": -0.01886263158942947, - "initial_qty_pct": 0.01619658890391205, - "markup_range": 0.00582821181045555, - "min_markup": 0.001910784087426283, - "n_close_orders": 9, - "rentry_pprice_dist": 0.040478726157756294, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6303091650719694, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/GRTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/GRTUSDT.json deleted file mode 100644 index c2124ab43..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/GRTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 989.6979802865403, - "auto_unstuck_ema_dist": -0.06552328831481484, - "auto_unstuck_qty_pct": 0.059643997393661496, - "auto_unstuck_wallet_exposure_threshold": 0.22562548886806127, - "backwards_tp": true, - "ddown_factor": 0.29761744551568253, - "ema_span_0": 1166.5449730406783, - "ema_span_1": 445.18374580383767, - "enabled": true, - "initial_eprice_ema_dist": -0.03676924025217405, - "initial_qty_pct": 0.010000932612237386, - "markup_range": 0.006650721452244999, - "min_markup": 0.006623138326984291, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03521033289964859, - "rentry_pprice_dist_wallet_exposure_weighting": 2.6574325726503396, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 764.836589233481, - "auto_unstuck_ema_dist": -0.011447678780087962, - "auto_unstuck_qty_pct": 0.03089261126952821, - "auto_unstuck_wallet_exposure_threshold": 0.5308399296214803, - "backwards_tp": true, - "ddown_factor": 2.391378616065426, - "ema_span_0": 647.093259209936, - "ema_span_1": 782.8763956569277, - "enabled": true, - "initial_eprice_ema_dist": 9.484880174093183e-05, - "initial_qty_pct": 0.014122768771355385, - "markup_range": 0.0015575536885631706, - "min_markup": 0.005011680267130939, - "n_close_orders": 16, - "rentry_pprice_dist": 0.045054629184439296, - "rentry_pprice_dist_wallet_exposure_weighting": 5.275811116253228, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/GTCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/GTCUSDT.json deleted file mode 100644 index 433e1827f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/GTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1178.6231685632652, - "auto_unstuck_ema_dist": -0.0040485392882242495, - "auto_unstuck_qty_pct": 0.011451125013548141, - "auto_unstuck_wallet_exposure_threshold": 0.1783387007401128, - "backwards_tp": true, - "ddown_factor": 0.4697478660620976, - "ema_span_0": 880.3673716086937, - "ema_span_1": 560.6134404119053, - "enabled": true, - "initial_eprice_ema_dist": 0.0016460685547010478, - "initial_qty_pct": 0.013771896510905402, - "markup_range": 0.004111928834126115, - "min_markup": 0.009126813880013566, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03381589560270764, - "rentry_pprice_dist_wallet_exposure_weighting": 11.130338948321194, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/HBARUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/HBARUSDT.json deleted file mode 100644 index baf975450..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/HBARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1115.9344991646772, - "auto_unstuck_ema_dist": -0.022067294005199984, - "auto_unstuck_qty_pct": 0.0633468265035235, - "auto_unstuck_wallet_exposure_threshold": 0.8677564655154589, - "backwards_tp": true, - "ddown_factor": 2.3477472399500536, - "ema_span_0": 639.9315543626221, - "ema_span_1": 264.7796363712572, - "enabled": true, - "initial_eprice_ema_dist": 0.002790338720872738, - "initial_qty_pct": 0.012023729081705743, - "markup_range": 0.0007762143878322973, - "min_markup": 0.002359920488952337, - "n_close_orders": 10, - "rentry_pprice_dist": 0.020252204272458, - "rentry_pprice_dist_wallet_exposure_weighting": 0.1768721282568092, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 695.8708016749218, - "auto_unstuck_ema_dist": -0.026733797044542294, - "auto_unstuck_qty_pct": 0.010644607282947088, - "auto_unstuck_wallet_exposure_threshold": 0.8213584530690295, - "backwards_tp": true, - "ddown_factor": 2.5194749808159074, - "ema_span_0": 1019.9579803886394, - "ema_span_1": 1269.3177148261316, - "enabled": true, - "initial_eprice_ema_dist": 0.0021726276377854515, - "initial_qty_pct": 0.013135946449550934, - "markup_range": 0.004144729631045132, - "min_markup": 0.009322855185425492, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03384836518959056, - "rentry_pprice_dist_wallet_exposure_weighting": 13.260271090600716, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/HFTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/HFTUSDT.json deleted file mode 100644 index a19a405c6..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/HFTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1259.2222594547807, - "auto_unstuck_ema_dist": -0.0017839632930156271, - "auto_unstuck_qty_pct": 0.02541223198632915, - "auto_unstuck_wallet_exposure_threshold": 0.22937451812506893, - "backwards_tp": true, - "ddown_factor": 1.528138260958659, - "ema_span_0": 705.4985529229147, - "ema_span_1": 595.2513468178071, - "enabled": true, - "initial_eprice_ema_dist": 0.002993727533351603, - "initial_qty_pct": 0.01148113343595019, - "markup_range": 0.004795730669560148, - "min_markup": 0.008722121698237694, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032535217802581604, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7634190288152283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/HIGHUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/HIGHUSDT.json deleted file mode 100644 index fba72b68d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/HIGHUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/HNTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/HNTUSDT.json deleted file mode 100644 index fa3d67843..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/HNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.508001379091, - "auto_unstuck_ema_dist": -0.020345722654077445, - "auto_unstuck_qty_pct": 0.01150874756017553, - "auto_unstuck_wallet_exposure_threshold": 0.22260963059354943, - "backwards_tp": true, - "ddown_factor": 1.1338733262238185, - "ema_span_0": 535.805181963809, - "ema_span_1": 1115.5868970331305, - "enabled": true, - "initial_eprice_ema_dist": 0.0027281082321336425, - "initial_qty_pct": 0.010193533565066864, - "markup_range": 5.544594397782226e-05, - "min_markup": 0.006216729057299458, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04686081827468278, - "rentry_pprice_dist_wallet_exposure_weighting": 7.564399677643441, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1285.4776524906954, - "auto_unstuck_ema_dist": -0.0077676671494917235, - "auto_unstuck_qty_pct": 0.023349898448819174, - "auto_unstuck_wallet_exposure_threshold": 0.538307746049205, - "backwards_tp": true, - "ddown_factor": 0.27851794358891974, - "ema_span_0": 1203.3827436384458, - "ema_span_1": 1046.2052272308379, - "enabled": true, - "initial_eprice_ema_dist": 0.0029248734605915047, - "initial_qty_pct": 0.01211897110842163, - "markup_range": 0.0052171750791820065, - "min_markup": 0.0033984141278568998, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03877057805635741, - "rentry_pprice_dist_wallet_exposure_weighting": 10.888312750736782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/HOOKUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/HOOKUSDT.json deleted file mode 100644 index 511d266ce..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/HOOKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1364.8193198621389, - "auto_unstuck_ema_dist": 0.0017253847140640455, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.39474822355155864, - "backwards_tp": true, - "ddown_factor": 0.32627465006028866, - "ema_span_0": 354.90155594933924, - "ema_span_1": 72.25228338158776, - "enabled": true, - "initial_eprice_ema_dist": -0.08839078915513272, - "initial_qty_pct": 0.012763513528238702, - "markup_range": 0.0040825334505985075, - "min_markup": 0.0075644628067014765, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040219140015152234, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4891561976884797, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/HOTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/HOTUSDT.json deleted file mode 100644 index 8ba4ce5f5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/HOTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ICPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ICPUSDT.json deleted file mode 100644 index bd63f0424..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ICPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 773.8833116684218, - "auto_unstuck_ema_dist": -0.04066419632910171, - "auto_unstuck_qty_pct": 0.03133836406362012, - "auto_unstuck_wallet_exposure_threshold": 0.16591083549683788, - "backwards_tp": true, - "ddown_factor": 0.2335859215846803, - "ema_span_0": 751.7198969571075, - "ema_span_1": 885.956846814527, - "enabled": true, - "initial_eprice_ema_dist": -0.07232146076080855, - "initial_qty_pct": 0.018601681811100484, - "markup_range": 0.0003019330862427853, - "min_markup": 0.005476374741607168, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028152697556863584, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4975740770791492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.0516729249457, - "auto_unstuck_ema_dist": -0.021338228250964944, - "auto_unstuck_qty_pct": 0.041959583333445974, - "auto_unstuck_wallet_exposure_threshold": 0.5843615907440661, - "backwards_tp": true, - "ddown_factor": 1.4381531180839886, - "ema_span_0": 428.0052531046105, - "ema_span_1": 415.3589160279952, - "enabled": true, - "initial_eprice_ema_dist": -0.0010521716521248341, - "initial_qty_pct": 0.010016393403745301, - "markup_range": 0.0005063092824123573, - "min_markup": 0.008346292875921573, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026758342331281937, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9808900950482229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ICXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ICXUSDT.json deleted file mode 100644 index 26cdcdb3c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ICXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1304.051596984993, - "auto_unstuck_ema_dist": -0.0025837533429117726, - "auto_unstuck_qty_pct": 0.0643059017878674, - "auto_unstuck_wallet_exposure_threshold": 0.1949273064619864, - "backwards_tp": true, - "ddown_factor": 1.3236337713194344, - "ema_span_0": 1227.559449566079, - "ema_span_1": 1331.6824406397377, - "enabled": true, - "initial_eprice_ema_dist": 0.002999856240692003, - "initial_qty_pct": 0.014191288975018854, - "markup_range": 0.00878601822501439, - "min_markup": 0.008942494339951583, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04553774995786425, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6687182101252788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/IDEXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/IDEXUSDT.json deleted file mode 100644 index bc4776a86..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/IDEXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.3525176086591, - "auto_unstuck_ema_dist": -0.07656735428624055, - "auto_unstuck_qty_pct": 0.021838379032100265, - "auto_unstuck_wallet_exposure_threshold": 0.496023458437927, - "backwards_tp": true, - "ddown_factor": 1.226712512400181, - "ema_span_0": 863.4530586023168, - "ema_span_1": 792.582840379283, - "enabled": true, - "initial_eprice_ema_dist": 0.0006888268857179727, - "initial_qty_pct": 0.023185693706547786, - "markup_range": 0.006430363012928862, - "min_markup": 0.00478106121183931, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03867047507203283, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8814210004402447, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 316.45288220873886, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.06018920573826103, - "auto_unstuck_wallet_exposure_threshold": 0.3371082332674982, - "backwards_tp": true, - "ddown_factor": 1.320150782408342, - "ema_span_0": 959.656706466029, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "min_markup": 0.0020550098693266805, - "n_close_orders": 12, - "rentry_pprice_dist": 0.005, - "rentry_pprice_dist_wallet_exposure_weighting": 1.415868046896386, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/IDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/IDUSDT.json deleted file mode 100644 index 1957d8fce..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/IDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1432.4030184941907, - "auto_unstuck_ema_dist": -0.07320861915973527, - "auto_unstuck_qty_pct": 0.01905034857328703, - "auto_unstuck_wallet_exposure_threshold": 0.11227541929160423, - "backwards_tp": true, - "ddown_factor": 0.5340798118427715, - "ema_span_0": 551.399155721459, - "ema_span_1": 153.20519427770577, - "enabled": true, - "initial_eprice_ema_dist": 0.002250154717145872, - "initial_qty_pct": 0.013131818889181211, - "markup_range": 0.0023789798193469057, - "min_markup": 0.004001037949340948, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018620497691417052, - "rentry_pprice_dist_wallet_exposure_weighting": 3.11100367112489, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/IMXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/IMXUSDT.json deleted file mode 100644 index a624ca242..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/IMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 719.9872027686143, - "auto_unstuck_ema_dist": -0.022541606308323435, - "auto_unstuck_qty_pct": 0.06270207829324834, - "auto_unstuck_wallet_exposure_threshold": 0.49696955946950716, - "backwards_tp": true, - "ddown_factor": 0.4908205683212454, - "ema_span_0": 851.4823300946229, - "ema_span_1": 283.3880926531075, - "enabled": true, - "initial_eprice_ema_dist": -0.0011106649019491214, - "initial_qty_pct": 0.011064611774235726, - "markup_range": 0.00042112398364548844, - "min_markup": 0.004339088179395441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.010048653902822655, - "rentry_pprice_dist_wallet_exposure_weighting": 11.350702080438928, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0157232326517, - "auto_unstuck_ema_dist": 0.002584536889395626, - "auto_unstuck_qty_pct": 0.016067830025278666, - "auto_unstuck_wallet_exposure_threshold": 0.17865852417429198, - "backwards_tp": true, - "ddown_factor": 2.5315985008952455, - "ema_span_0": 859.8164633515628, - "ema_span_1": 778.88727913339, - "enabled": true, - "initial_eprice_ema_dist": 0.0029469027371997873, - "initial_qty_pct": 0.011229049152531517, - "markup_range": 0.004301705171347274, - "min_markup": 0.002964225037769906, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047375817041585104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.041978447464432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/INJUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/INJUSDT.json deleted file mode 100644 index 08184201a..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/INJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 552.3188758679288, - "auto_unstuck_ema_dist": -0.04591378200206638, - "auto_unstuck_qty_pct": 0.05626107116747149, - "auto_unstuck_wallet_exposure_threshold": 0.4602219946573663, - "backwards_tp": true, - "ddown_factor": 1.3951701518491564, - "ema_span_0": 440.97604187441436, - "ema_span_1": 110.73537403506484, - "enabled": true, - "initial_eprice_ema_dist": -0.04593957402768092, - "initial_qty_pct": 0.02672422218384816, - "markup_range": 0.000498386416717681, - "min_markup": 0.002238448149174809, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029083772205585893, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6158224076439239, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1203.1320483487457, - "auto_unstuck_ema_dist": -0.027663850573440434, - "auto_unstuck_qty_pct": 0.02271974676497333, - "auto_unstuck_wallet_exposure_threshold": 0.22145480992702216, - "backwards_tp": true, - "ddown_factor": 2.3236584555904574, - "ema_span_0": 518.8660941334352, - "ema_span_1": 1320.791938810288, - "enabled": true, - "initial_eprice_ema_dist": 0.0029454548395140947, - "initial_qty_pct": 0.013789878989884577, - "markup_range": 0.0036874538935215365, - "min_markup": 0.007421651102673007, - "n_close_orders": 6, - "rentry_pprice_dist": 0.029917285336943544, - "rentry_pprice_dist_wallet_exposure_weighting": 15.795353202691134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/IOSTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/IOSTUSDT.json deleted file mode 100644 index 840637dda..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/IOSTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1029.3525176086591, - "auto_unstuck_ema_dist": -0.07656735428624055, - "auto_unstuck_qty_pct": 0.021838379032100265, - "auto_unstuck_wallet_exposure_threshold": 0.496023458437927, - "backwards_tp": true, - "ddown_factor": 1.226712512400181, - "ema_span_0": 863.4530586023168, - "ema_span_1": 792.582840379283, - "enabled": true, - "initial_eprice_ema_dist": 0.0006888268857179727, - "initial_qty_pct": 0.023185693706547786, - "markup_range": 0.006430363012928862, - "min_markup": 0.00478106121183931, - "n_close_orders": 7, - "rentry_pprice_dist": 0.03867047507203283, - "rentry_pprice_dist_wallet_exposure_weighting": 2.8814210004402447, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1144.2442618306197, - "auto_unstuck_ema_dist": -0.02725688643504398, - "auto_unstuck_qty_pct": 0.033353360513050455, - "auto_unstuck_wallet_exposure_threshold": 0.5688327639004812, - "backwards_tp": true, - "ddown_factor": 1.357783056529547, - "ema_span_0": 1192.6437556200192, - "ema_span_1": 853.1915917278868, - "enabled": true, - "initial_eprice_ema_dist": 0.0024568217105203406, - "initial_qty_pct": 0.012154583407378707, - "markup_range": 0.002370937385035913, - "min_markup": 0.004916468349574035, - "n_close_orders": 5, - "rentry_pprice_dist": 0.030064927058473707, - "rentry_pprice_dist_wallet_exposure_weighting": 14.404949451197037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/IOTAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/IOTAUSDT.json deleted file mode 100644 index dfe769ed9..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/IOTAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 834.0029116188484, - "auto_unstuck_ema_dist": -0.010282948493069974, - "auto_unstuck_qty_pct": 0.011105479097275736, - "auto_unstuck_wallet_exposure_threshold": 0.4639566879620575, - "backwards_tp": true, - "ddown_factor": 0.10850232916038384, - "ema_span_0": 662.5417928976366, - "ema_span_1": 608.2768981016841, - "enabled": true, - "initial_eprice_ema_dist": -0.018005449912340064, - "initial_qty_pct": 0.011323924551638286, - "markup_range": 0.0022652370016546038, - "min_markup": 0.0059019876787960255, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026310844182199505, - "rentry_pprice_dist_wallet_exposure_weighting": 5.12498198491356, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 769.459340746383, - "auto_unstuck_ema_dist": -0.03224052499565988, - "auto_unstuck_qty_pct": 0.012873110007477661, - "auto_unstuck_wallet_exposure_threshold": 0.48076124226410805, - "backwards_tp": true, - "ddown_factor": 2.3800555924022166, - "ema_span_0": 198.99337656552214, - "ema_span_1": 1155.0533866885862, - "enabled": true, - "initial_eprice_ema_dist": 0.0018696213144642124, - "initial_qty_pct": 0.017869483657856806, - "markup_range": 0.004584279180937303, - "min_markup": 0.0026376937984660272, - "n_close_orders": 10, - "rentry_pprice_dist": 0.0368530099628706, - "rentry_pprice_dist_wallet_exposure_weighting": 0.445664689188811, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/IOTXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/IOTXUSDT.json deleted file mode 100644 index 419742daa..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/IOTXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/JASMYUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/JASMYUSDT.json deleted file mode 100644 index cae3ea1e6..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/JASMYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/JOEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/JOEUSDT.json deleted file mode 100644 index 137057073..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/JOEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 986.5908726805565, - "auto_unstuck_ema_dist": -0.01823173171224137, - "auto_unstuck_qty_pct": 0.022466129648137705, - "auto_unstuck_wallet_exposure_threshold": 0.31170232385417007, - "backwards_tp": true, - "ddown_factor": 0.9871386911977406, - "ema_span_0": 84.9585407094777, - "ema_span_1": 487.9272576931248, - "enabled": true, - "initial_eprice_ema_dist": -0.0032342487590638807, - "initial_qty_pct": 0.015630480895998534, - "markup_range": 0.0032358892154203157, - "min_markup": 0.006017698894441818, - "n_close_orders": 5, - "rentry_pprice_dist": 0.024428342955028097, - "rentry_pprice_dist_wallet_exposure_weighting": 7.966015112590907, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/KAVAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/KAVAUSDT.json deleted file mode 100644 index f23634c1f..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/KAVAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 742.1404818564154, - "auto_unstuck_ema_dist": -0.01521192993059986, - "auto_unstuck_qty_pct": 0.012476707192649691, - "auto_unstuck_wallet_exposure_threshold": 0.14091400283952607, - "backwards_tp": true, - "ddown_factor": 1.4734879768734976, - "ema_span_0": 131.37902439282507, - "ema_span_1": 1232.351302491125, - "enabled": true, - "initial_eprice_ema_dist": -0.087802601615617, - "initial_qty_pct": 0.01063099727645586, - "markup_range": 0.0016299283047896205, - "min_markup": 0.0014272788251111957, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04999771866938603, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2925297562824305, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1203.1320483487457, - "auto_unstuck_ema_dist": -0.027663850573440434, - "auto_unstuck_qty_pct": 0.02271974676497333, - "auto_unstuck_wallet_exposure_threshold": 0.22145480992702216, - "backwards_tp": true, - "ddown_factor": 2.3236584555904574, - "ema_span_0": 518.8660941334352, - "ema_span_1": 1320.791938810288, - "enabled": true, - "initial_eprice_ema_dist": 0.0029454548395140947, - "initial_qty_pct": 0.013789878989884577, - "markup_range": 0.0036874538935215365, - "min_markup": 0.007421651102673007, - "n_close_orders": 6, - "rentry_pprice_dist": 0.029917285336943544, - "rentry_pprice_dist_wallet_exposure_weighting": 15.795353202691134, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/KEYUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/KEYUSDT.json deleted file mode 100644 index c2b0a3871..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/KEYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 412.76501089247114, - "auto_unstuck_ema_dist": -0.059439321560243945, - "auto_unstuck_qty_pct": 0.023367754137491693, - "auto_unstuck_wallet_exposure_threshold": 0.3045555354190747, - "backwards_tp": true, - "ddown_factor": 2.5342759684884353, - "ema_span_0": 771.2458507511448, - "ema_span_1": 986.9091563792869, - "enabled": true, - "initial_eprice_ema_dist": -0.04594610363561374, - "initial_qty_pct": 0.011119970001968283, - "markup_range": 0.0022155009490971477, - "min_markup": 0.0029076471167654027, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033601727314308175, - "rentry_pprice_dist_wallet_exposure_weighting": 8.480288378040697, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/KLAYUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/KLAYUSDT.json deleted file mode 100644 index 324511893..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/KLAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/KNCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/KNCUSDT.json deleted file mode 100644 index 3b5a1efdb..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/KNCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 897.8572075043796, - "auto_unstuck_ema_dist": -0.06979527193585025, - "auto_unstuck_qty_pct": 0.026632112678002997, - "auto_unstuck_wallet_exposure_threshold": 0.2371031733027507, - "backwards_tp": true, - "ddown_factor": 0.759596355893983, - "ema_span_0": 979.3595764022335, - "ema_span_1": 1179.4312282598091, - "enabled": true, - "initial_eprice_ema_dist": -0.0072672779678777544, - "initial_qty_pct": 0.01279591081471837, - "markup_range": 0.002388143162346788, - "min_markup": 0.007757315198118319, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04908134559582654, - "rentry_pprice_dist_wallet_exposure_weighting": 4.99466905096419, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 503.3343231300159, - "auto_unstuck_ema_dist": -0.034066425771051664, - "auto_unstuck_qty_pct": 0.02644721833043688, - "auto_unstuck_wallet_exposure_threshold": 0.5496311814218728, - "backwards_tp": true, - "ddown_factor": 1.583873442380138, - "ema_span_0": 723.2797223469373, - "ema_span_1": 869.7218849458369, - "enabled": true, - "initial_eprice_ema_dist": -0.00621468034069134, - "initial_qty_pct": 0.011094988570244607, - "markup_range": 0.007125337993884154, - "min_markup": 0.005512029614315782, - "n_close_orders": 6, - "rentry_pprice_dist": 0.040969189750454785, - "rentry_pprice_dist_wallet_exposure_weighting": 9.66648610809972, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/KSMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/KSMUSDT.json deleted file mode 100644 index 6623d5cbc..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/KSMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 491.67370472213344, - "auto_unstuck_ema_dist": -0.03333520590151225, - "auto_unstuck_qty_pct": 0.01759574188657776, - "auto_unstuck_wallet_exposure_threshold": 0.3557653678513413, - "backwards_tp": true, - "ddown_factor": 1.5155713453381439, - "ema_span_0": 763.1274531087291, - "ema_span_1": 604.9571984938061, - "enabled": true, - "initial_eprice_ema_dist": -0.006842045901589304, - "initial_qty_pct": 0.012435039208681126, - "markup_range": 0.0020159207018097015, - "min_markup": 0.0062521750678027595, - "n_close_orders": 14, - "rentry_pprice_dist": 0.036994104867419754, - "rentry_pprice_dist_wallet_exposure_weighting": 1.222990397985032, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 801.9407580114595, - "auto_unstuck_ema_dist": -0.014190933471903595, - "auto_unstuck_qty_pct": 0.010313379205851117, - "auto_unstuck_wallet_exposure_threshold": 0.2511233758697617, - "backwards_tp": true, - "ddown_factor": 0.31574023368334203, - "ema_span_0": 857.135134451504, - "ema_span_1": 773.1264732553607, - "enabled": true, - "initial_eprice_ema_dist": -0.0001582595430693864, - "initial_qty_pct": 0.012724713270943724, - "markup_range": 0.0035660663450992, - "min_markup": 0.005328987333979542, - "n_close_orders": 10, - "rentry_pprice_dist": 0.030530973334552264, - "rentry_pprice_dist_wallet_exposure_weighting": 6.417842653221031, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LDOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LDOUSDT.json deleted file mode 100644 index 99e55a250..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LDOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1259.2222594547807, - "auto_unstuck_ema_dist": -0.0017839632930156271, - "auto_unstuck_qty_pct": 0.02541223198632915, - "auto_unstuck_wallet_exposure_threshold": 0.22937451812506893, - "backwards_tp": true, - "ddown_factor": 1.528138260958659, - "ema_span_0": 705.4985529229147, - "ema_span_1": 595.2513468178071, - "enabled": true, - "initial_eprice_ema_dist": 0.002993727533351603, - "initial_qty_pct": 0.01148113343595019, - "markup_range": 0.004795730669560148, - "min_markup": 0.008722121698237694, - "n_close_orders": 6, - "rentry_pprice_dist": 0.032535217802581604, - "rentry_pprice_dist_wallet_exposure_weighting": 2.7634190288152283, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1131.7683895615776, - "auto_unstuck_ema_dist": -0.021356694848575847, - "auto_unstuck_qty_pct": 0.01947666997831, - "auto_unstuck_wallet_exposure_threshold": 0.5374450610904399, - "backwards_tp": true, - "ddown_factor": 0.45459399495929026, - "ema_span_0": 1036.875051134975, - "ema_span_1": 426.67076837323117, - "enabled": true, - "initial_eprice_ema_dist": -0.025665036257068462, - "initial_qty_pct": 0.010000274511755454, - "markup_range": 0.005912727089012159, - "min_markup": 0.0058486997906525475, - "n_close_orders": 5, - "rentry_pprice_dist": 0.043849635569275215, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3187070718164151, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LEVERUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LEVERUSDT.json deleted file mode 100644 index af91f5c16..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LEVERUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1198.737532352804, - "auto_unstuck_ema_dist": 0.0021918977925421664, - "auto_unstuck_qty_pct": 0.011737438010278886, - "auto_unstuck_wallet_exposure_threshold": 0.26103788036106523, - "backwards_tp": true, - "ddown_factor": 0.9912031563296594, - "ema_span_0": 1043.6852785172005, - "ema_span_1": 140.47129590575383, - "enabled": true, - "initial_eprice_ema_dist": 0.0010962564206719796, - "initial_qty_pct": 0.021125725836593622, - "markup_range": 0.0017367553867170978, - "min_markup": 0.002391490312542033, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032827292692171564, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10738069449979064, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.6006770474733, - "auto_unstuck_ema_dist": -0.006854116150027488, - "auto_unstuck_qty_pct": 0.031644168490077784, - "auto_unstuck_wallet_exposure_threshold": 0.2557531129335714, - "backwards_tp": true, - "ddown_factor": 1.3832185824096965, - "ema_span_0": 1280.9824315832243, - "ema_span_1": 1197.5966306581568, - "enabled": true, - "initial_eprice_ema_dist": -0.04816000304172703, - "initial_qty_pct": 0.010950851120518782, - "markup_range": 0.0008022919858492278, - "min_markup": 0.008683689277631091, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04363476732084077, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4912416058069824, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LINAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LINAUSDT.json deleted file mode 100644 index eb1ef5601..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1430.1668224390223, - "auto_unstuck_ema_dist": -0.05362713067279739, - "auto_unstuck_qty_pct": 0.020551497450486567, - "auto_unstuck_wallet_exposure_threshold": 0.5868761434410041, - "backwards_tp": true, - "ddown_factor": 2.49367560587514, - "ema_span_0": 700.7109127906153, - "ema_span_1": 72.05008311953658, - "enabled": true, - "initial_eprice_ema_dist": -0.06356600773835705, - "initial_qty_pct": 0.011831058904488633, - "markup_range": 0.0012650945306156493, - "min_markup": 0.0028671211460412627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04921412763943395, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4515340185734575, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LINKUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LINKUSDT.json deleted file mode 100644 index 17cf34143..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LINKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1231.6426410653428, - "auto_unstuck_ema_dist": -0.05748370761878396, - "auto_unstuck_qty_pct": 0.028789749824382857, - "auto_unstuck_wallet_exposure_threshold": 0.5079444259373056, - "backwards_tp": true, - "ddown_factor": 2.0637690064248755, - "ema_span_0": 109.69336505104252, - "ema_span_1": 856.6580528313107, - "enabled": true, - "initial_eprice_ema_dist": -0.008767349614441582, - "initial_qty_pct": 0.011176027939568284, - "markup_range": 0.005229384349149898, - "min_markup": 0.0032251654438817836, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027464918695270225, - "rentry_pprice_dist_wallet_exposure_weighting": 2.365643487175211, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1163.7666887890598, - "auto_unstuck_ema_dist": -0.000132176988752781, - "auto_unstuck_qty_pct": 0.014196431422344799, - "auto_unstuck_wallet_exposure_threshold": 0.6178833704992835, - "backwards_tp": true, - "ddown_factor": 2.4162363927264856, - "ema_span_0": 1301.4291548032984, - "ema_span_1": 1210.2408904102049, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.020196845570659296, - "markup_range": 0.0012401572544369862, - "min_markup": 0.00990852417256265, - "n_close_orders": 6, - "rentry_pprice_dist": 0.044351366134989405, - "rentry_pprice_dist_wallet_exposure_weighting": 5.58825902541902, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LITUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LITUSDT.json deleted file mode 100644 index 1dccb9efc..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LITUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1128.3380616056659, - "auto_unstuck_ema_dist": -0.0007577399426855052, - "auto_unstuck_qty_pct": 0.013786578725646186, - "auto_unstuck_wallet_exposure_threshold": 0.4959329936266323, - "backwards_tp": true, - "ddown_factor": 2.31469636815924, - "ema_span_0": 841.1697243967782, - "ema_span_1": 1280.4967226310355, - "enabled": true, - "initial_eprice_ema_dist": -0.007051434231811719, - "initial_qty_pct": 0.011398627782633486, - "markup_range": 0.0046376549791754314, - "min_markup": 0.005048979662629166, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04992477110332881, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6627734940095277, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1271.531033271785, - "auto_unstuck_ema_dist": -0.038154228534943505, - "auto_unstuck_qty_pct": 0.047280184105547435, - "auto_unstuck_wallet_exposure_threshold": 0.5901720670315093, - "backwards_tp": true, - "ddown_factor": 1.3079216310170094, - "ema_span_0": 1381.5924818412232, - "ema_span_1": 1135.8954998708723, - "enabled": true, - "initial_eprice_ema_dist": 0.002890947685082422, - "initial_qty_pct": 0.014597448847657063, - "markup_range": 0.017680410805857423, - "min_markup": 0.004077411619346283, - "n_close_orders": 6, - "rentry_pprice_dist": 0.045231223451802596, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1458776833685183, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LPTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LPTUSDT.json deleted file mode 100644 index 7e2603288..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LPTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1271.4879313633583, - "auto_unstuck_ema_dist": -0.024082866410530816, - "auto_unstuck_qty_pct": 0.022318951758543936, - "auto_unstuck_wallet_exposure_threshold": 0.7172766751814595, - "backwards_tp": true, - "ddown_factor": 0.11528362569022038, - "ema_span_0": 523.4825512807811, - "ema_span_1": 629.5793383896729, - "enabled": true, - "initial_eprice_ema_dist": 0.002999978064602431, - "initial_qty_pct": 0.01063979757807873, - "markup_range": 0.00379708939767112, - "min_markup": 0.0024954155400694835, - "n_close_orders": 13, - "rentry_pprice_dist": 0.034557213097097375, - "rentry_pprice_dist_wallet_exposure_weighting": 2.82137846924448, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 778.4050444128148, - "auto_unstuck_ema_dist": -0.046234187700963436, - "auto_unstuck_qty_pct": 0.020587000340633592, - "auto_unstuck_wallet_exposure_threshold": 0.8440980780103854, - "backwards_tp": true, - "ddown_factor": 0.3597290201625506, - "ema_span_0": 1367.705665487707, - "ema_span_1": 1143.914988418785, - "enabled": true, - "initial_eprice_ema_dist": -0.006151138065125043, - "initial_qty_pct": 0.010201358534327661, - "markup_range": 0.0008282511433073973, - "min_markup": 0.007026727241610112, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03521502346438065, - "rentry_pprice_dist_wallet_exposure_weighting": 19.34284865877356, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LQTYUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LQTYUSDT.json deleted file mode 100644 index e04fc6087..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LQTYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1189.286331700472, - "auto_unstuck_ema_dist": -0.027972942878892803, - "auto_unstuck_qty_pct": 0.012904106128991134, - "auto_unstuck_wallet_exposure_threshold": 0.8521738600901125, - "backwards_tp": true, - "ddown_factor": 1.4721600382065791, - "ema_span_0": 631.788590274504, - "ema_span_1": 507.70507795283646, - "enabled": true, - "initial_eprice_ema_dist": -0.06780536466712907, - "initial_qty_pct": 0.01, - "markup_range": 0.0051530070515828546, - "min_markup": 0.0047356588218692595, - "n_close_orders": 9, - "rentry_pprice_dist": 0.031150624560227946, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2998671254163767, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1235.8840406812374, - "auto_unstuck_ema_dist": -0.037384765739436776, - "auto_unstuck_qty_pct": 0.026966614074800124, - "auto_unstuck_wallet_exposure_threshold": 0.5166328059906422, - "backwards_tp": true, - "ddown_factor": 0.7371953546002349, - "ema_span_0": 1216.4948135634734, - "ema_span_1": 1245.367835709616, - "enabled": true, - "initial_eprice_ema_dist": -0.017957856863499266, - "initial_qty_pct": 0.018890863420461514, - "markup_range": 0.0030102184005238713, - "min_markup": 0.0048451194858340225, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02562385483832836, - "rentry_pprice_dist_wallet_exposure_weighting": 4.409696708127533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LRCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LRCUSDT.json deleted file mode 100644 index 06dc05e90..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LRCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1245.3689807302771, - "auto_unstuck_ema_dist": -0.048893880159856386, - "auto_unstuck_qty_pct": 0.01263497952137548, - "auto_unstuck_wallet_exposure_threshold": 0.4269274676018477, - "backwards_tp": true, - "ddown_factor": 0.6640846821476986, - "ema_span_0": 802.8638169846369, - "ema_span_1": 1011.8946623545947, - "enabled": true, - "initial_eprice_ema_dist": -0.015963108509970812, - "initial_qty_pct": 0.010082685864607121, - "markup_range": 0.0, - "min_markup": 0.00948334096592729, - "n_close_orders": 8, - "rentry_pprice_dist": 0.030262122979023472, - "rentry_pprice_dist_wallet_exposure_weighting": 2.0255169093401957, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 770.6120414764214, - "auto_unstuck_ema_dist": -0.046254362080772084, - "auto_unstuck_qty_pct": 0.04938900293504193, - "auto_unstuck_wallet_exposure_threshold": 0.48072546981362774, - "backwards_tp": true, - "ddown_factor": 0.8487043465970008, - "ema_span_0": 752.6476023708293, - "ema_span_1": 81.09031365118554, - "enabled": true, - "initial_eprice_ema_dist": -0.0003026020361268323, - "initial_qty_pct": 0.010867225221595339, - "markup_range": 0.004024617376947219, - "min_markup": 0.005746977439217133, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04761675209745763, - "rentry_pprice_dist_wallet_exposure_weighting": 5.900241743791237, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LTCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LTCUSDT.json deleted file mode 100644 index b146f4e08..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LTCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 412.76501089247114, - "auto_unstuck_ema_dist": -0.059439321560243945, - "auto_unstuck_qty_pct": 0.023367754137491693, - "auto_unstuck_wallet_exposure_threshold": 0.3045555354190747, - "backwards_tp": true, - "ddown_factor": 2.5342759684884353, - "ema_span_0": 771.2458507511448, - "ema_span_1": 986.9091563792869, - "enabled": true, - "initial_eprice_ema_dist": -0.04594610363561374, - "initial_qty_pct": 0.011119970001968283, - "markup_range": 0.0022155009490971477, - "min_markup": 0.0029076471167654027, - "n_close_orders": 2, - "rentry_pprice_dist": 0.033601727314308175, - "rentry_pprice_dist_wallet_exposure_weighting": 8.480288378040697, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0623219599643, - "auto_unstuck_ema_dist": -0.06558042587730512, - "auto_unstuck_qty_pct": 0.03960929233720307, - "auto_unstuck_wallet_exposure_threshold": 0.1725086924500494, - "backwards_tp": true, - "ddown_factor": 1.50463062827136, - "ema_span_0": 1072.471874728127, - "ema_span_1": 655.4716154163949, - "enabled": true, - "initial_eprice_ema_dist": -0.011939529205335576, - "initial_qty_pct": 0.010653893560365259, - "markup_range": 0.0005271272328020045, - "min_markup": 0.0048450133339425, - "n_close_orders": 6, - "rentry_pprice_dist": 0.042426212439265, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1345034353903136, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/LUNA2USDT.json b/configs/live/single_symbol_optimizations/recursive_grid/LUNA2USDT.json deleted file mode 100644 index 6d3059a48..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/LUNA2USDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 518.0265326010709, - "auto_unstuck_ema_dist": -0.08388871599925407, - "auto_unstuck_qty_pct": 0.06752449575198048, - "auto_unstuck_wallet_exposure_threshold": 0.5168401512588173, - "backwards_tp": true, - "ddown_factor": 0.3927443827349259, - "ema_span_0": 950.0899753161561, - "ema_span_1": 983.2691607353765, - "enabled": true, - "initial_eprice_ema_dist": 0.0021549412363112306, - "initial_qty_pct": 0.018131366763790988, - "markup_range": 0.00016986761883675878, - "min_markup": 0.006055097728559371, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04004550092768956, - "rentry_pprice_dist_wallet_exposure_weighting": 4.6723618831363485, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1088.6605487200968, - "auto_unstuck_ema_dist": -0.05177952023927791, - "auto_unstuck_qty_pct": 0.017055447740243406, - "auto_unstuck_wallet_exposure_threshold": 0.48392389085366433, - "backwards_tp": true, - "ddown_factor": 0.11125530910702261, - "ema_span_0": 402.8319254236336, - "ema_span_1": 149.2448903461325, - "enabled": true, - "initial_eprice_ema_dist": 9.90295282557405e-05, - "initial_qty_pct": 0.021775816107232213, - "markup_range": 0.0025477799390605247, - "min_markup": 0.00443678701866022, - "n_close_orders": 14, - "rentry_pprice_dist": 0.015897177793771835, - "rentry_pprice_dist_wallet_exposure_weighting": 7.062201924037428, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MAGICUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MAGICUSDT.json deleted file mode 100644 index 700ad9131..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MAGICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 755.0872922251828, - "auto_unstuck_ema_dist": -0.02273079978693827, - "auto_unstuck_qty_pct": 0.015248235384753419, - "auto_unstuck_wallet_exposure_threshold": 0.4469573463517241, - "backwards_tp": true, - "ddown_factor": 2.6333243618868143, - "ema_span_0": 1045.0415269413502, - "ema_span_1": 1045.7137054121943, - "enabled": true, - "initial_eprice_ema_dist": -0.0006250004699011116, - "initial_qty_pct": 0.01038862613237722, - "markup_range": 0.003563432566419622, - "min_markup": 0.0029839402302166474, - "n_close_orders": 8, - "rentry_pprice_dist": 0.02813202655924393, - "rentry_pprice_dist_wallet_exposure_weighting": 16.696497401494558, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MANAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MANAUSDT.json deleted file mode 100644 index aafb62728..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MANAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 506.5224882796207, - "auto_unstuck_ema_dist": -0.08475240721685956, - "auto_unstuck_qty_pct": 0.012664869049920266, - "auto_unstuck_wallet_exposure_threshold": 0.6532524345340186, - "backwards_tp": true, - "ddown_factor": 2.430144161947593, - "ema_span_0": 528.5455412023842, - "ema_span_1": 367.38161794220684, - "enabled": true, - "initial_eprice_ema_dist": -0.013085618386841582, - "initial_qty_pct": 0.012478838833229434, - "markup_range": 0.0001686732350185735, - "min_markup": 0.0012139802755085118, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03320301387348368, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3745648206115497, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1158.9325891988399, - "auto_unstuck_ema_dist": -0.010789940658414052, - "auto_unstuck_qty_pct": 0.02170994873799929, - "auto_unstuck_wallet_exposure_threshold": 0.5451983109460394, - "backwards_tp": true, - "ddown_factor": 2.6822609808195828, - "ema_span_0": 152.26969529097894, - "ema_span_1": 1265.869703051127, - "enabled": true, - "initial_eprice_ema_dist": -0.0017969115048086333, - "initial_qty_pct": 0.019134551290597584, - "markup_range": 0.0023521890733515394, - "min_markup": 0.004081655064817033, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03657314514293422, - "rentry_pprice_dist_wallet_exposure_weighting": 0.39108661477178497, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MASKUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MASKUSDT.json deleted file mode 100644 index ce0af2dba..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MASKUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1045.1101349643511, - "auto_unstuck_ema_dist": -0.01571585197546857, - "auto_unstuck_qty_pct": 0.029158649031222936, - "auto_unstuck_wallet_exposure_threshold": 0.46471032498092524, - "backwards_tp": true, - "ddown_factor": 1.3987351225344555, - "ema_span_0": 1439.9999945685292, - "ema_span_1": 1393.465716936036, - "enabled": true, - "initial_eprice_ema_dist": 0.002700537639421378, - "initial_qty_pct": 0.011376273692095484, - "markup_range": 0.000374350179583882, - "min_markup": 0.0021708143140020926, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04765180199403366, - "rentry_pprice_dist_wallet_exposure_weighting": 11.905707228545854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1332.5284809208388, - "auto_unstuck_ema_dist": -0.055012773629239925, - "auto_unstuck_qty_pct": 0.01243283010292201, - "auto_unstuck_wallet_exposure_threshold": 0.7327421690192373, - "backwards_tp": true, - "ddown_factor": 1.9481460506492678, - "ema_span_0": 620.3476293269637, - "ema_span_1": 910.8548132415826, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012116656519558964, - "markup_range": 0.004055257619906556, - "min_markup": 0.0036034915446144767, - "n_close_orders": 8, - "rentry_pprice_dist": 0.049202452844668454, - "rentry_pprice_dist_wallet_exposure_weighting": 19.799473705792675, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MATICUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MATICUSDT.json deleted file mode 100644 index ef5d96ee8..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MATICUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1229.7758528902937, - "auto_unstuck_ema_dist": -0.05914769539771581, - "auto_unstuck_qty_pct": 0.01511902340838162, - "auto_unstuck_wallet_exposure_threshold": 0.6846948705761557, - "backwards_tp": true, - "ddown_factor": 1.8857281633742855, - "ema_span_0": 80.49335874332347, - "ema_span_1": 345.5473243304256, - "enabled": true, - "initial_eprice_ema_dist": -0.005007496036276903, - "initial_qty_pct": 0.012383215418007059, - "markup_range": 0.006375884182639555, - "min_markup": 0.002414722488059609, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029334523491465887, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2189709089235532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.8314242486322, - "auto_unstuck_ema_dist": -0.014109132867766043, - "auto_unstuck_qty_pct": 0.011982754937679857, - "auto_unstuck_wallet_exposure_threshold": 0.5533712695560499, - "backwards_tp": true, - "ddown_factor": 0.8157110446402446, - "ema_span_0": 56.77083987848151, - "ema_span_1": 87.12787490128404, - "enabled": true, - "initial_eprice_ema_dist": -0.001303731885700587, - "initial_qty_pct": 0.010008649130437409, - "markup_range": 0.0018624459240663247, - "min_markup": 0.0041678492617304155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0388560339970892, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9206393347106683, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MAVUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MAVUSDT.json deleted file mode 100644 index d43b13d59..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MAVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 700.4059086427156, - "auto_unstuck_ema_dist": -0.07845595812729256, - "auto_unstuck_qty_pct": 0.015540173980120902, - "auto_unstuck_wallet_exposure_threshold": 0.13678806113154424, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 571.7678101641162, - "ema_span_1": 510.73018023276023, - "enabled": true, - "initial_eprice_ema_dist": 0.001497053787941373, - "initial_qty_pct": 0.033801416538211074, - "markup_range": 0.0017783752531549898, - "min_markup": 0.008500353605879255, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04997520271386973, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6438008415612816e-08, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MDTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MDTUSDT.json deleted file mode 100644 index eafc74c79..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MDTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MINAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MINAUSDT.json deleted file mode 100644 index d5bd77528..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MINAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1243.1791289906107, - "auto_unstuck_ema_dist": -0.06526825263956122, - "auto_unstuck_qty_pct": 0.017294660807244122, - "auto_unstuck_wallet_exposure_threshold": 0.7929374333118815, - "backwards_tp": true, - "ddown_factor": 1.2034708987807525, - "ema_span_0": 125.74744338191452, - "ema_span_1": 219.66637383239686, - "enabled": true, - "initial_eprice_ema_dist": -0.0009210973752075213, - "initial_qty_pct": 0.011299347120695146, - "markup_range": 0.007462764275078035, - "min_markup": 0.006752036620217142, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03372648996475835, - "rentry_pprice_dist_wallet_exposure_weighting": 2.762136840840354, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1239.5398828537122, - "auto_unstuck_ema_dist": 0.0011002178656988298, - "auto_unstuck_qty_pct": 0.040879571278322355, - "auto_unstuck_wallet_exposure_threshold": 0.8965749947588251, - "backwards_tp": true, - "ddown_factor": 1.7047054543885927, - "ema_span_0": 379.214100284615, - "ema_span_1": 1421.6821458320787, - "enabled": true, - "initial_eprice_ema_dist": -0.0003425739829469274, - "initial_qty_pct": 0.014884243887259483, - "markup_range": 0.005591416742867247, - "min_markup": 0.004547267453440362, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04413645431110037, - "rentry_pprice_dist_wallet_exposure_weighting": 7.462635340608269, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MKRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MKRUSDT.json deleted file mode 100644 index 29df36773..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MKRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 773.8833116684218, - "auto_unstuck_ema_dist": -0.04066419632910171, - "auto_unstuck_qty_pct": 0.03133836406362012, - "auto_unstuck_wallet_exposure_threshold": 0.16591083549683788, - "backwards_tp": true, - "ddown_factor": 0.2335859215846803, - "ema_span_0": 751.7198969571075, - "ema_span_1": 885.956846814527, - "enabled": true, - "initial_eprice_ema_dist": -0.07232146076080855, - "initial_qty_pct": 0.018601681811100484, - "markup_range": 0.0003019330862427853, - "min_markup": 0.005476374741607168, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028152697556863584, - "rentry_pprice_dist_wallet_exposure_weighting": 1.4975740770791492, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1352.7617384601358, - "auto_unstuck_ema_dist": -0.040154443514631814, - "auto_unstuck_qty_pct": 0.02900908963136855, - "auto_unstuck_wallet_exposure_threshold": 0.2899041749430625, - "backwards_tp": true, - "ddown_factor": 1.5089685052190727, - "ema_span_0": 960.3471237494703, - "ema_span_1": 191.06072559415443, - "enabled": true, - "initial_eprice_ema_dist": -0.0005078808091562436, - "initial_qty_pct": 0.010863382372596432, - "markup_range": 0.0030134067012862567, - "min_markup": 0.0032142797659246297, - "n_close_orders": 16, - "rentry_pprice_dist": 0.030825226549506, - "rentry_pprice_dist_wallet_exposure_weighting": 0.05271144977332768, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/MTLUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/MTLUSDT.json deleted file mode 100644 index 3d67c4b33..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/MTLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1193.6206872889195, - "auto_unstuck_ema_dist": -0.05579511981364906, - "auto_unstuck_qty_pct": 0.03332696988109261, - "auto_unstuck_wallet_exposure_threshold": 0.4359019572823946, - "backwards_tp": true, - "ddown_factor": 1.8005918156790115, - "ema_span_0": 1413.067973265237, - "ema_span_1": 569.8289959626705, - "enabled": true, - "initial_eprice_ema_dist": 0.0020435183419306004, - "initial_qty_pct": 0.02259657232663932, - "markup_range": 0.002844450604400837, - "min_markup": 0.006232114368637599, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04351715709120132, - "rentry_pprice_dist_wallet_exposure_weighting": 3.1576736117310706, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1285.4776524906954, - "auto_unstuck_ema_dist": -0.0077676671494917235, - "auto_unstuck_qty_pct": 0.023349898448819174, - "auto_unstuck_wallet_exposure_threshold": 0.538307746049205, - "backwards_tp": true, - "ddown_factor": 0.27851794358891974, - "ema_span_0": 1203.3827436384458, - "ema_span_1": 1046.2052272308379, - "enabled": true, - "initial_eprice_ema_dist": 0.0029248734605915047, - "initial_qty_pct": 0.01211897110842163, - "markup_range": 0.0052171750791820065, - "min_markup": 0.0033984141278568998, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03877057805635741, - "rentry_pprice_dist_wallet_exposure_weighting": 10.888312750736782, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/NEARUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/NEARUSDT.json deleted file mode 100644 index 6aad980a4..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/NEARUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 951.0315852128227, - "auto_unstuck_ema_dist": -0.054365266677498955, - "auto_unstuck_qty_pct": 0.0421423594263849, - "auto_unstuck_wallet_exposure_threshold": 0.7632521372395258, - "backwards_tp": true, - "ddown_factor": 1.6362470821758004, - "ema_span_0": 640.9359730460003, - "ema_span_1": 1396.6224135051925, - "enabled": true, - "initial_eprice_ema_dist": 0.0029929210233953607, - "initial_qty_pct": 0.01132983391595697, - "markup_range": 0.0014870664309704945, - "min_markup": 0.0024172128228521737, - "n_close_orders": 15, - "rentry_pprice_dist": 0.02032427535562934, - "rentry_pprice_dist_wallet_exposure_weighting": 1.8719193316561682, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1.133590120987681, - "auto_unstuck_ema_dist": -0.0664767643547855, - "auto_unstuck_qty_pct": 0.018605667048078367, - "auto_unstuck_wallet_exposure_threshold": 0.7742578216478697, - "backwards_tp": true, - "ddown_factor": 0.20278360704213827, - "ema_span_0": 154.5599272358244, - "ema_span_1": 1231.0969620873752, - "enabled": true, - "initial_eprice_ema_dist": -0.046987987454892195, - "initial_qty_pct": 0.011116774912808925, - "markup_range": 4.864205520845488e-05, - "min_markup": 0.0022461444428992575, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03439328327538153, - "rentry_pprice_dist_wallet_exposure_weighting": 11.458435171750244, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/NEOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/NEOUSDT.json deleted file mode 100644 index 5088cb3fa..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/NEOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1072.4684709999347, - "auto_unstuck_ema_dist": -0.08702805926306362, - "auto_unstuck_qty_pct": 0.015973937897812995, - "auto_unstuck_wallet_exposure_threshold": 0.5339435827544488, - "backwards_tp": true, - "ddown_factor": 2.245989468700379, - "ema_span_0": 680.994156336565, - "ema_span_1": 191.04031049174804, - "enabled": true, - "initial_eprice_ema_dist": 0.002888171072358113, - "initial_qty_pct": 0.01083770050277493, - "markup_range": 0.00021279012099618608, - "min_markup": 0.006683935979481397, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04852135590889781, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4688261073789075, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1235.8840406812374, - "auto_unstuck_ema_dist": -0.037384765739436776, - "auto_unstuck_qty_pct": 0.026966614074800124, - "auto_unstuck_wallet_exposure_threshold": 0.5166328059906422, - "backwards_tp": true, - "ddown_factor": 0.7371953546002349, - "ema_span_0": 1216.4948135634734, - "ema_span_1": 1245.367835709616, - "enabled": true, - "initial_eprice_ema_dist": -0.017957856863499266, - "initial_qty_pct": 0.018890863420461514, - "markup_range": 0.0030102184005238713, - "min_markup": 0.0048451194858340225, - "n_close_orders": 7, - "rentry_pprice_dist": 0.02562385483832836, - "rentry_pprice_dist_wallet_exposure_weighting": 4.409696708127533, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/NKNUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/NKNUSDT.json deleted file mode 100644 index bce39f0e1..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/NKNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1426.8432725392668, - "auto_unstuck_ema_dist": -0.0537457052295863, - "auto_unstuck_qty_pct": 0.06845140103384849, - "auto_unstuck_wallet_exposure_threshold": 0.14000629596631145, - "backwards_tp": true, - "ddown_factor": 0.10296237162534044, - "ema_span_0": 1426.5816725177046, - "ema_span_1": 110.82412535626743, - "enabled": true, - "initial_eprice_ema_dist": 0.001676575955512243, - "initial_qty_pct": 0.040718197832064686, - "markup_range": 0.001653235585679397, - "min_markup": 0.008704813107931636, - "n_close_orders": 8, - "rentry_pprice_dist": 0.043154142723672996, - "rentry_pprice_dist_wallet_exposure_weighting": 0.476104660019888, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1082.6400892274617, - "auto_unstuck_ema_dist": -0.010585155761032911, - "auto_unstuck_qty_pct": 0.04915996998746088, - "auto_unstuck_wallet_exposure_threshold": 0.5982035371420024, - "backwards_tp": true, - "ddown_factor": 0.10179595288180976, - "ema_span_0": 1102.6261926650236, - "ema_span_1": 1124.0338321521367, - "enabled": true, - "initial_eprice_ema_dist": -0.0017944130985196077, - "initial_qty_pct": 0.013467836822571955, - "markup_range": 0.003728965471057704, - "min_markup": 0.009108977123561466, - "n_close_orders": 2, - "rentry_pprice_dist": 0.017788364037062722, - "rentry_pprice_dist_wallet_exposure_weighting": 16.965915308317037, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/NMRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/NMRUSDT.json deleted file mode 100644 index 8ba4ce5f5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/NMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/OCEANUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/OCEANUSDT.json deleted file mode 100644 index 731da88f8..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/OCEANUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 13.31934697095056, - "auto_unstuck_ema_dist": -0.00448302250874141, - "auto_unstuck_qty_pct": 0.03363261684054123, - "auto_unstuck_wallet_exposure_threshold": 0.1656593498783332, - "backwards_tp": true, - "ddown_factor": 0.39380233674281934, - "ema_span_0": 374.4757279041412, - "ema_span_1": 1093.2235342195024, - "enabled": true, - "initial_eprice_ema_dist": -0.006236935629947386, - "initial_qty_pct": 0.03838950154285531, - "markup_range": 0.0001382444354598916, - "min_markup": 0.006322530966282984, - "n_close_orders": 4, - "rentry_pprice_dist": 0.047993947848387175, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14726328835842412, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1244.9359735169262, - "auto_unstuck_ema_dist": -0.01897344454943382, - "auto_unstuck_qty_pct": 0.05687419716122635, - "auto_unstuck_wallet_exposure_threshold": 0.3931758427274342, - "backwards_tp": true, - "ddown_factor": 0.3150842595034684, - "ema_span_0": 1077.3250045570653, - "ema_span_1": 1255.1196312319362, - "enabled": true, - "initial_eprice_ema_dist": 0.0022262841978470515, - "initial_qty_pct": 0.015417750770025268, - "markup_range": 0.008072400072075877, - "min_markup": 0.008045625129692213, - "n_close_orders": 6, - "rentry_pprice_dist": 0.015278403347456532, - "rentry_pprice_dist_wallet_exposure_weighting": 10.885973069166619, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/OGNUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/OGNUSDT.json deleted file mode 100644 index b5b66e320..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/OGNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 866.0555776178344, - "auto_unstuck_ema_dist": -0.08637813882718187, - "auto_unstuck_qty_pct": 0.022819162528536243, - "auto_unstuck_wallet_exposure_threshold": 0.5771834554129667, - "backwards_tp": true, - "ddown_factor": 1.9648614534752864, - "ema_span_0": 952.3875613538104, - "ema_span_1": 880.7173065557189, - "enabled": true, - "initial_eprice_ema_dist": 0.0007853457849786724, - "initial_qty_pct": 0.02362232978050586, - "markup_range": 0.003082286136945534, - "min_markup": 0.0021495606550390035, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03436088794986574, - "rentry_pprice_dist_wallet_exposure_weighting": 13.16850082449503, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 611.9463152951042, - "auto_unstuck_ema_dist": -0.014471107561944073, - "auto_unstuck_qty_pct": 0.07603614782813505, - "auto_unstuck_wallet_exposure_threshold": 0.5002808743996622, - "backwards_tp": true, - "ddown_factor": 1.7215017490252502, - "ema_span_0": 1157.317720817149, - "ema_span_1": 729.7557170273177, - "enabled": true, - "initial_eprice_ema_dist": -0.00865507977218391, - "initial_qty_pct": 0.01209633509651921, - "markup_range": 0.0001272449740963948, - "min_markup": 0.0021935587696774, - "n_close_orders": 13, - "rentry_pprice_dist": 0.03738384623209871, - "rentry_pprice_dist_wallet_exposure_weighting": 0.14559704636166715, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/OMGUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/OMGUSDT.json deleted file mode 100644 index aec30f61d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/OMGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 754.3817566760711, - "auto_unstuck_ema_dist": -0.03959689785706191, - "auto_unstuck_qty_pct": 0.05839186716205426, - "auto_unstuck_wallet_exposure_threshold": 0.4665243147969393, - "backwards_tp": true, - "ddown_factor": 0.3892918984394489, - "ema_span_0": 666.0593458341641, - "ema_span_1": 715.4736988281547, - "enabled": true, - "initial_eprice_ema_dist": -0.020047503474721045, - "initial_qty_pct": 0.011967997066845822, - "markup_range": 0.007434691303928223, - "min_markup": 0.007374421800799146, - "n_close_orders": 12, - "rentry_pprice_dist": 0.03758745453753089, - "rentry_pprice_dist_wallet_exposure_weighting": 0.62612044775474, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 663.9082621683893, - "auto_unstuck_ema_dist": -0.029264604761396484, - "auto_unstuck_qty_pct": 0.01028820821909273, - "auto_unstuck_wallet_exposure_threshold": 0.1983137061076403, - "backwards_tp": true, - "ddown_factor": 1.9651840247105272, - "ema_span_0": 79.13725259724187, - "ema_span_1": 40.749166674343826, - "enabled": true, - "initial_eprice_ema_dist": 0.0025600695207464606, - "initial_qty_pct": 0.011047275123784223, - "markup_range": 0.0009398635335428235, - "min_markup": 0.009494696138601521, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04940376968104154, - "rentry_pprice_dist_wallet_exposure_weighting": 0.37247906219716315, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ONEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ONEUSDT.json deleted file mode 100644 index 23a758ab2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ONEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 736.2454867276975, - "auto_unstuck_ema_dist": -0.027524210060849316, - "auto_unstuck_qty_pct": 0.021182413237384255, - "auto_unstuck_wallet_exposure_threshold": 0.505919993088393, - "backwards_tp": true, - "ddown_factor": 0.7492514963293893, - "ema_span_0": 1017.1017345354385, - "ema_span_1": 833.768028465007, - "enabled": true, - "initial_eprice_ema_dist": -0.05654387178988762, - "initial_qty_pct": 0.01293569502512144, - "markup_range": 0.0004206944188103574, - "min_markup": 0.00633400246237213, - "n_close_orders": 12, - "rentry_pprice_dist": 0.041528393554751464, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7495419107434724, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1198.9607272481671, - "auto_unstuck_ema_dist": -0.02050804183184122, - "auto_unstuck_qty_pct": 0.052680472110456844, - "auto_unstuck_wallet_exposure_threshold": 0.493301369541931, - "backwards_tp": true, - "ddown_factor": 1.8306802788287628, - "ema_span_0": 1282.2160839779087, - "ema_span_1": 1101.6491755180095, - "enabled": true, - "initial_eprice_ema_dist": -0.0037450154344589883, - "initial_qty_pct": 0.016230448465565542, - "markup_range": 0.00195777650601029, - "min_markup": 0.005258226256418369, - "n_close_orders": 4, - "rentry_pprice_dist": 0.049476254029580495, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5852521684832502, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ONTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ONTUSDT.json deleted file mode 100644 index 2d293a1ab..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ONTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1326.11565083092, - "auto_unstuck_ema_dist": -0.035847091613266276, - "auto_unstuck_qty_pct": 0.010948146381464515, - "auto_unstuck_wallet_exposure_threshold": 0.582212526726604, - "backwards_tp": true, - "ddown_factor": 0.3516173493929475, - "ema_span_0": 643.3492643631461, - "ema_span_1": 26.309945213582424, - "enabled": true, - "initial_eprice_ema_dist": 0.002527736092960598, - "initial_qty_pct": 0.013295145242377033, - "markup_range": 0.008312405968088233, - "min_markup": 0.007847912113510522, - "n_close_orders": 14, - "rentry_pprice_dist": 0.044200522902569, - "rentry_pprice_dist_wallet_exposure_weighting": 3.3732636321146536, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.0516729249457, - "auto_unstuck_ema_dist": -0.021338228250964944, - "auto_unstuck_qty_pct": 0.041959583333445974, - "auto_unstuck_wallet_exposure_threshold": 0.5843615907440661, - "backwards_tp": true, - "ddown_factor": 1.4381531180839886, - "ema_span_0": 428.0052531046105, - "ema_span_1": 415.3589160279952, - "enabled": true, - "initial_eprice_ema_dist": -0.0010521716521248341, - "initial_qty_pct": 0.010016393403745301, - "markup_range": 0.0005063092824123573, - "min_markup": 0.008346292875921573, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026758342331281937, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9808900950482229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/OPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/OPUSDT.json deleted file mode 100644 index e7f965eb4..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/OPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1302.9531491971718, - "auto_unstuck_ema_dist": -0.04269128350596152, - "auto_unstuck_qty_pct": 0.03701610852863834, - "auto_unstuck_wallet_exposure_threshold": 0.835821071949986, - "backwards_tp": true, - "ddown_factor": 1.8487626908147374, - "ema_span_0": 693.8661020103932, - "ema_span_1": 674.0136350698602, - "enabled": true, - "initial_eprice_ema_dist": -0.0016118273237717277, - "initial_qty_pct": 0.013285910916325555, - "markup_range": 1.2162363349742814e-07, - "min_markup": 0.0028094452663508253, - "n_close_orders": 15, - "rentry_pprice_dist": 0.022327075780436214, - "rentry_pprice_dist_wallet_exposure_weighting": 2.228088694397499, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/PENDLEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/PENDLEUSDT.json deleted file mode 100644 index 8cc516dcd..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/PENDLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1426.8432725392668, - "auto_unstuck_ema_dist": -0.0537457052295863, - "auto_unstuck_qty_pct": 0.06845140103384849, - "auto_unstuck_wallet_exposure_threshold": 0.14000629596631145, - "backwards_tp": true, - "ddown_factor": 0.10296237162534044, - "ema_span_0": 1426.5816725177046, - "ema_span_1": 110.82412535626743, - "enabled": true, - "initial_eprice_ema_dist": 0.001676575955512243, - "initial_qty_pct": 0.040718197832064686, - "markup_range": 0.001653235585679397, - "min_markup": 0.008704813107931636, - "n_close_orders": 8, - "rentry_pprice_dist": 0.043154142723672996, - "rentry_pprice_dist_wallet_exposure_weighting": 0.476104660019888, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1206.2133411330738, - "auto_unstuck_ema_dist": -0.004858782896774686, - "auto_unstuck_qty_pct": 0.02161254894011827, - "auto_unstuck_wallet_exposure_threshold": 0.3943880483965604, - "backwards_tp": true, - "ddown_factor": 2.08981317370495, - "ema_span_0": 813.8799296311918, - "ema_span_1": 1340.681476790241, - "enabled": true, - "initial_eprice_ema_dist": 0.002821365813687315, - "initial_qty_pct": 0.014148098058862366, - "markup_range": 0.007024724434148104, - "min_markup": 0.00514248126088779, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03631649104755646, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5035133630041305, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/PEOPLEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/PEOPLEUSDT.json deleted file mode 100644 index 40ff951d2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/PEOPLEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 941.4323959245721, - "auto_unstuck_ema_dist": 0.0023329875617506602, - "auto_unstuck_qty_pct": 0.0126490136306326, - "auto_unstuck_wallet_exposure_threshold": 0.25259142081462765, - "backwards_tp": true, - "ddown_factor": 1.9679132344408845, - "ema_span_0": 383.4272934679048, - "ema_span_1": 1024.1897294780908, - "enabled": true, - "initial_eprice_ema_dist": 0.002885808542863266, - "initial_qty_pct": 0.016666237623390062, - "markup_range": 0.006212579109507224, - "min_markup": 0.00215945346470992, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04987230688573202, - "rentry_pprice_dist_wallet_exposure_weighting": 8.31253150074425, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/PERPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/PERPUSDT.json deleted file mode 100644 index 595e46069..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/PERPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 624.3089925081796, - "auto_unstuck_ema_dist": -0.0017944000823634481, - "auto_unstuck_qty_pct": 0.02446324280553036, - "auto_unstuck_wallet_exposure_threshold": 0.4269709171398361, - "backwards_tp": true, - "ddown_factor": 2.569052200097769, - "ema_span_0": 76.7157792911941, - "ema_span_1": 272.16118391542665, - "enabled": true, - "initial_eprice_ema_dist": -0.005833778322180691, - "initial_qty_pct": 0.01, - "markup_range": 0.0015830051811291088, - "min_markup": 0.00228714675573091, - "n_close_orders": 9, - "rentry_pprice_dist": 0.04679073998919632, - "rentry_pprice_dist_wallet_exposure_weighting": 2.529935417331788, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/PHBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/PHBUSDT.json deleted file mode 100644 index 80487bf6c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/PHBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.9796909235044, - "auto_unstuck_ema_dist": 0.0004335119523387423, - "auto_unstuck_qty_pct": 0.03419114551949676, - "auto_unstuck_wallet_exposure_threshold": 0.5607912465981395, - "backwards_tp": true, - "ddown_factor": 0.21981978992948273, - "ema_span_0": 684.721853920761, - "ema_span_1": 587.3367515525263, - "enabled": true, - "initial_eprice_ema_dist": -0.011366019759355373, - "initial_qty_pct": 0.013428270540297325, - "markup_range": 0.0044212957130786755, - "min_markup": 0.009020473612600138, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033862980646636835, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6605915676504517, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.7669604640046, - "auto_unstuck_ema_dist": 0.002786919034136599, - "auto_unstuck_qty_pct": 0.03140475838427743, - "auto_unstuck_wallet_exposure_threshold": 0.5574697807190042, - "backwards_tp": true, - "ddown_factor": 1.0498659445078125, - "ema_span_0": 768.3258268178528, - "ema_span_1": 986.7063133340359, - "enabled": true, - "initial_eprice_ema_dist": -0.0185462563652313, - "initial_qty_pct": 0.011031346865379632, - "markup_range": 0.006926949770685151, - "min_markup": 0.0015696813063142627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029295377220877463, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2531454393293293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/QNTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/QNTUSDT.json deleted file mode 100644 index 553165b88..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/QNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1092.7693295717968, - "auto_unstuck_ema_dist": -0.01835440981491446, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.5663047366828919, - "backwards_tp": true, - "ddown_factor": 0.522679800084151, - "ema_span_0": 353.6372947836205, - "ema_span_1": 1440, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.01, - "markup_range": 0.0, - "min_markup": 0.0037724227320637175, - "n_close_orders": 11, - "rentry_pprice_dist": 0.005, - "rentry_pprice_dist_wallet_exposure_weighting": 14.581978360599434, - "wallet_exposure_limit": 1.0}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/QTUMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/QTUMUSDT.json deleted file mode 100644 index aaebe30c2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/QTUMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1368.1756670538243, - "auto_unstuck_ema_dist": -0.07330997354703737, - "auto_unstuck_qty_pct": 0.011747650192491955, - "auto_unstuck_wallet_exposure_threshold": 0.4736214579573272, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 137.81914493525576, - "ema_span_1": 166.34020854290125, - "enabled": true, - "initial_eprice_ema_dist": -0.04653146127912276, - "initial_qty_pct": 0.01461088098227183, - "markup_range": 0.0011177056140842143, - "min_markup": 0.007515669102516649, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039236672231753575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7250832843519701, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.2805822766504, - "auto_unstuck_ema_dist": -0.07325843982155456, - "auto_unstuck_qty_pct": 0.011601745968877869, - "auto_unstuck_wallet_exposure_threshold": 0.6385581801710455, - "backwards_tp": true, - "ddown_factor": 2.8306938968542577, - "ema_span_0": 1288.8845153327145, - "ema_span_1": 977.5412204392641, - "enabled": true, - "initial_eprice_ema_dist": -0.008992067777609157, - "initial_qty_pct": 0.014887565184760691, - "markup_range": 0.0031432760777118838, - "min_markup": 0.0056327302893143675, - "n_close_orders": 8, - "rentry_pprice_dist": 0.04395146835898657, - "rentry_pprice_dist_wallet_exposure_weighting": 7.363705935363582, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RADUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RADUSDT.json deleted file mode 100644 index b66cbae5e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RADUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 904.9947406434911, - "auto_unstuck_ema_dist": -0.09399676690093967, - "auto_unstuck_qty_pct": 0.021741212502926505, - "auto_unstuck_wallet_exposure_threshold": 0.2547265703246677, - "backwards_tp": true, - "ddown_factor": 1.5179851568221148, - "ema_span_0": 1327.4204788153281, - "ema_span_1": 1008.3429496874716, - "enabled": true, - "initial_eprice_ema_dist": -0.014915614832761243, - "initial_qty_pct": 0.011872857032750388, - "markup_range": 0.00441133216828404, - "min_markup": 0.004061302076425527, - "n_close_orders": 12, - "rentry_pprice_dist": 0.0238140555191627, - "rentry_pprice_dist_wallet_exposure_weighting": 0.81116494876772, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RAYUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RAYUSDT.json deleted file mode 100644 index 16dbb7c7d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RAYUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 742.1404818564154, - "auto_unstuck_ema_dist": -0.01521192993059986, - "auto_unstuck_qty_pct": 0.012476707192649691, - "auto_unstuck_wallet_exposure_threshold": 0.14091400283952607, - "backwards_tp": true, - "ddown_factor": 1.4734879768734976, - "ema_span_0": 131.37902439282507, - "ema_span_1": 1232.351302491125, - "enabled": true, - "initial_eprice_ema_dist": -0.087802601615617, - "initial_qty_pct": 0.01063099727645586, - "markup_range": 0.0016299283047896205, - "min_markup": 0.0014272788251111957, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04999771866938603, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2925297562824305, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 479.9248920586266, - "auto_unstuck_ema_dist": -0.01905228639292863, - "auto_unstuck_qty_pct": 0.041483446137165494, - "auto_unstuck_wallet_exposure_threshold": 0.557655390842093, - "backwards_tp": true, - "ddown_factor": 2.147784021517439, - "ema_span_0": 183.7786310952956, - "ema_span_1": 835.8701919148339, - "enabled": true, - "initial_eprice_ema_dist": 0.0011027649608459148, - "initial_qty_pct": 0.012309299975517905, - "markup_range": 0.0006229521848645023, - "min_markup": 0.0033592464959339816, - "n_close_orders": 11, - "rentry_pprice_dist": 0.046556867491589674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16023503516747917, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RDNTUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RDNTUSDT.json deleted file mode 100644 index 5368f3c64..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RDNTUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/REEFUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/REEFUSDT.json deleted file mode 100644 index 2da35b6a2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/REEFUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 700.6357081970953, - "auto_unstuck_ema_dist": -0.052925599076185756, - "auto_unstuck_qty_pct": 0.018516859398697464, - "auto_unstuck_wallet_exposure_threshold": 0.363981944551347, - "backwards_tp": true, - "ddown_factor": 1.8552968911128385, - "ema_span_0": 760.6878645448418, - "ema_span_1": 1140.2129215023758, - "enabled": true, - "initial_eprice_ema_dist": 0.001357827060828643, - "initial_qty_pct": 0.013480610303539475, - "markup_range": 0.0040392739726005985, - "min_markup": 0.005630202834946819, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03291818914453597, - "rentry_pprice_dist_wallet_exposure_weighting": 5.23744332841466, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RENUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RENUSDT.json deleted file mode 100644 index f408c90c7..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1177.6510521610417, - "auto_unstuck_ema_dist": -0.01945484226158934, - "auto_unstuck_qty_pct": 0.015675910909346443, - "auto_unstuck_wallet_exposure_threshold": 0.8602154036354281, - "backwards_tp": true, - "ddown_factor": 0.5023808649126354, - "ema_span_0": 1432.96260451698, - "ema_span_1": 359.79374737515406, - "enabled": true, - "initial_eprice_ema_dist": 0.002512997258852117, - "initial_qty_pct": 0.010983518208347243, - "markup_range": 0.00012430305230505135, - "min_markup": 0.009984324382053445, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04133883183821455, - "rentry_pprice_dist_wallet_exposure_weighting": 5.532389222454727, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1196.1165223580242, - "auto_unstuck_ema_dist": -0.05283200501030064, - "auto_unstuck_qty_pct": 0.04945216602205006, - "auto_unstuck_wallet_exposure_threshold": 0.38451833679428693, - "backwards_tp": true, - "ddown_factor": 0.7230957520217839, - "ema_span_0": 1112.2876634636616, - "ema_span_1": 1246.3866483073696, - "enabled": true, - "initial_eprice_ema_dist": 0.0029602392893604648, - "initial_qty_pct": 0.010151256212909776, - "markup_range": 0.009238668241605234, - "min_markup": 0.009998052020141653, - "n_close_orders": 2, - "rentry_pprice_dist": 0.04323949687393191, - "rentry_pprice_dist_wallet_exposure_weighting": 7.36599302417086, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RLCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RLCUSDT.json deleted file mode 100644 index 6f75d6c8b..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RLCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1393.8905920976713, - "auto_unstuck_ema_dist": -0.016939380558704822, - "auto_unstuck_qty_pct": 0.013976248872787709, - "auto_unstuck_wallet_exposure_threshold": 0.12355339590595218, - "backwards_tp": true, - "ddown_factor": 1.6313938279448297, - "ema_span_0": 530.30246136685, - "ema_span_1": 78.12757254475127, - "enabled": true, - "initial_eprice_ema_dist": 0.0023977030968180646, - "initial_qty_pct": 0.016272006657252217, - "markup_range": 0.008797943762849326, - "min_markup": 0.005388076121193682, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04178642120507141, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003687915791838018, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.6362129078252, - "auto_unstuck_ema_dist": -0.06924517801728552, - "auto_unstuck_qty_pct": 0.02462266924412914, - "auto_unstuck_wallet_exposure_threshold": 0.46664326026802394, - "backwards_tp": true, - "ddown_factor": 0.697030467982081, - "ema_span_0": 185.43593708053575, - "ema_span_1": 753.2896049053888, - "enabled": true, - "initial_eprice_ema_dist": -0.024429212687072155, - "initial_qty_pct": 0.015597461647230004, - "markup_range": 0.003133097075519459, - "min_markup": 0.009716022902753809, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03532954687445271, - "rentry_pprice_dist_wallet_exposure_weighting": 4.650179039739776, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RNDRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RNDRUSDT.json deleted file mode 100644 index 03e9ebca7..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RNDRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 770.6120414764214, - "auto_unstuck_ema_dist": -0.046254362080772084, - "auto_unstuck_qty_pct": 0.04938900293504193, - "auto_unstuck_wallet_exposure_threshold": 0.48072546981362774, - "backwards_tp": true, - "ddown_factor": 0.8487043465970008, - "ema_span_0": 752.6476023708293, - "ema_span_1": 81.09031365118554, - "enabled": true, - "initial_eprice_ema_dist": -0.0003026020361268323, - "initial_qty_pct": 0.010867225221595339, - "markup_range": 0.004024617376947219, - "min_markup": 0.005746977439217133, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04761675209745763, - "rentry_pprice_dist_wallet_exposure_weighting": 5.900241743791237, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ROSEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ROSEUSDT.json deleted file mode 100644 index 2ad9508a9..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ROSEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.3580694829311, - "auto_unstuck_ema_dist": -0.0499130440540471, - "auto_unstuck_qty_pct": 0.011147263389662829, - "auto_unstuck_wallet_exposure_threshold": 0.38876908815985045, - "backwards_tp": true, - "ddown_factor": 2.1932983744435997, - "ema_span_0": 295.34325736350286, - "ema_span_1": 463.19712668719893, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010243943677930595, - "markup_range": 0.001995624564988456, - "min_markup": 0.0031037141845810454, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0329301805607218, - "rentry_pprice_dist_wallet_exposure_weighting": 2.253373217684854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 862.6661701551072, - "auto_unstuck_ema_dist": -0.014013809172232085, - "auto_unstuck_qty_pct": 0.027974202883970792, - "auto_unstuck_wallet_exposure_threshold": 0.2780986519212462, - "backwards_tp": true, - "ddown_factor": 1.9007041583440303, - "ema_span_0": 606.944871366759, - "ema_span_1": 1391.190348573382, - "enabled": true, - "initial_eprice_ema_dist": 0.002782309224266478, - "initial_qty_pct": 0.0165185506817646, - "markup_range": 0.0013193897994286572, - "min_markup": 0.003001063285588497, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03986403808375164, - "rentry_pprice_dist_wallet_exposure_weighting": 17.54429941015617, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RSRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RSRUSDT.json deleted file mode 100644 index 3c08a8aee..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RSRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1250.2126764099833, - "auto_unstuck_ema_dist": -0.06484934336938583, - "auto_unstuck_qty_pct": 0.08967011685000899, - "auto_unstuck_wallet_exposure_threshold": 0.13547358761176562, - "backwards_tp": true, - "ddown_factor": 0.8780899318711353, - "ema_span_0": 1119.6370525177447, - "ema_span_1": 640.4087703364877, - "enabled": true, - "initial_eprice_ema_dist": -0.01039776678713907, - "initial_qty_pct": 0.011479327069111292, - "markup_range": 0.012220041126602398, - "min_markup": 0.009430621442388938, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04968834003121463, - "rentry_pprice_dist_wallet_exposure_weighting": 2.235624056304029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 700.5613696352202, - "auto_unstuck_ema_dist": -0.059072950149775684, - "auto_unstuck_qty_pct": 0.020869976675721807, - "auto_unstuck_wallet_exposure_threshold": 0.40676379197754603, - "backwards_tp": true, - "ddown_factor": 1.4263747857227196, - "ema_span_0": 978.1287120936939, - "ema_span_1": 738.2866828986187, - "enabled": true, - "initial_eprice_ema_dist": 0.0005025554938547656, - "initial_qty_pct": 0.012992525243584368, - "markup_range": 0.0040634477360418555, - "min_markup": 0.008103777563233005, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04734537740402093, - "rentry_pprice_dist_wallet_exposure_weighting": 0.6915333308426989, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RUNEUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RUNEUSDT.json deleted file mode 100644 index dbb9a8838..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RUNEUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1329.3547977286032, - "auto_unstuck_ema_dist": -0.02570232235032514, - "auto_unstuck_qty_pct": 0.036636870792339085, - "auto_unstuck_wallet_exposure_threshold": 0.3504224087334014, - "backwards_tp": true, - "ddown_factor": 0.4356614842040477, - "ema_span_0": 877.5474524205408, - "ema_span_1": 915.2133208065917, - "enabled": true, - "initial_eprice_ema_dist": 0.0021233702796588116, - "initial_qty_pct": 0.010406000938755511, - "markup_range": 0.015722352019257237, - "min_markup": 0.008802024082192172, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04495356639233563, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3238988261801409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1047.388770151157, - "auto_unstuck_ema_dist": -0.07861121428084135, - "auto_unstuck_qty_pct": 0.011477165498259893, - "auto_unstuck_wallet_exposure_threshold": 0.6054281082902808, - "backwards_tp": true, - "ddown_factor": 1.2419148896506769, - "ema_span_0": 1437.4621720486339, - "ema_span_1": 134.89028302123052, - "enabled": true, - "initial_eprice_ema_dist": 0.000991007026715354, - "initial_qty_pct": 0.01, - "markup_range": 0.009404488079389347, - "min_markup": 0.0036691900352486223, - "n_close_orders": 3, - "rentry_pprice_dist": 0.05, - "rentry_pprice_dist_wallet_exposure_weighting": 0.7774192256888247, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/RVNUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/RVNUSDT.json deleted file mode 100644 index 109ac52eb..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/RVNUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1178.2526167985427, - "auto_unstuck_ema_dist": -0.06998222598025104, - "auto_unstuck_qty_pct": 0.03045049872212685, - "auto_unstuck_wallet_exposure_threshold": 0.6696656883737954, - "backwards_tp": true, - "ddown_factor": 1.034334321946488, - "ema_span_0": 681.9927971112224, - "ema_span_1": 433.84130752877667, - "enabled": true, - "initial_eprice_ema_dist": -0.019636613910186257, - "initial_qty_pct": 0.014569396007181377, - "markup_range": 0.00023549653263647174, - "min_markup": 0.004335300496676709, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028709571797075818, - "rentry_pprice_dist_wallet_exposure_weighting": 4.433738552021081, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1080.689421277476, - "auto_unstuck_ema_dist": -0.0006892130223884805, - "auto_unstuck_qty_pct": 0.011243587633196769, - "auto_unstuck_wallet_exposure_threshold": 0.46025009243548076, - "backwards_tp": true, - "ddown_factor": 1.1093171300739098, - "ema_span_0": 972.2236838364724, - "ema_span_1": 963.8295577515664, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.016301641610812333, - "markup_range": 0.0010408932979570494, - "min_markup": 0.002477322800634059, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027091724833210765, - "rentry_pprice_dist_wallet_exposure_weighting": 11.531284875668135, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SANDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SANDUSDT.json deleted file mode 100644 index 52a2d5b34..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SANDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1411.305244971533, - "auto_unstuck_ema_dist": -0.03662185288648545, - "auto_unstuck_qty_pct": 0.031265596102013196, - "auto_unstuck_wallet_exposure_threshold": 0.16649332107752438, - "backwards_tp": true, - "ddown_factor": 2.3173881236434393, - "ema_span_0": 609.0388410099256, - "ema_span_1": 668.9384402462479, - "enabled": true, - "initial_eprice_ema_dist": -0.0004264036698503809, - "initial_qty_pct": 0.01093750731365597, - "markup_range": 0.0014253406180808508, - "min_markup": 0.003671635785794729, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024135680059242506, - "rentry_pprice_dist_wallet_exposure_weighting": 3.9088616148749598, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 479.9248920586266, - "auto_unstuck_ema_dist": -0.01905228639292863, - "auto_unstuck_qty_pct": 0.041483446137165494, - "auto_unstuck_wallet_exposure_threshold": 0.557655390842093, - "backwards_tp": true, - "ddown_factor": 2.147784021517439, - "ema_span_0": 183.7786310952956, - "ema_span_1": 835.8701919148339, - "enabled": true, - "initial_eprice_ema_dist": 0.0011027649608459148, - "initial_qty_pct": 0.012309299975517905, - "markup_range": 0.0006229521848645023, - "min_markup": 0.0033592464959339816, - "n_close_orders": 11, - "rentry_pprice_dist": 0.046556867491589674, - "rentry_pprice_dist_wallet_exposure_weighting": 0.16023503516747917, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SCUSDT.json deleted file mode 100644 index bb9270b55..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.508001379091, - "auto_unstuck_ema_dist": -0.020345722654077445, - "auto_unstuck_qty_pct": 0.01150874756017553, - "auto_unstuck_wallet_exposure_threshold": 0.22260963059354943, - "backwards_tp": true, - "ddown_factor": 1.1338733262238185, - "ema_span_0": 535.805181963809, - "ema_span_1": 1115.5868970331305, - "enabled": true, - "initial_eprice_ema_dist": 0.0027281082321336425, - "initial_qty_pct": 0.010193533565066864, - "markup_range": 5.544594397782226e-05, - "min_markup": 0.006216729057299458, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04686081827468278, - "rentry_pprice_dist_wallet_exposure_weighting": 7.564399677643441, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1406.8745656169467, - "auto_unstuck_ema_dist": -0.002415572848165019, - "auto_unstuck_qty_pct": 0.021897124071165935, - "auto_unstuck_wallet_exposure_threshold": 0.41119356496064, - "backwards_tp": true, - "ddown_factor": 2.213351435149487, - "ema_span_0": 1159.1201793595333, - "ema_span_1": 46.038307681490046, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.012220313524271685, - "markup_range": 0.0008161976715174526, - "min_markup": 0.0016937394514188538, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04121531657985319, - "rentry_pprice_dist_wallet_exposure_weighting": 3.4651980195192236, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SFPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SFPUSDT.json deleted file mode 100644 index e00de5b02..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SFPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1357.3801608411275, - "auto_unstuck_ema_dist": -0.029571927528488334, - "auto_unstuck_qty_pct": 0.014100017403579593, - "auto_unstuck_wallet_exposure_threshold": 0.14127090526133226, - "backwards_tp": true, - "ddown_factor": 2.7350692283836247, - "ema_span_0": 856.1270924014594, - "ema_span_1": 1402.593675148184, - "enabled": true, - "initial_eprice_ema_dist": 0.0013737422222348957, - "initial_qty_pct": 0.016414536813924203, - "markup_range": 0.0040924503706669235, - "min_markup": 0.003984086234753538, - "n_close_orders": 3, - "rentry_pprice_dist": 0.043123850089135864, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9328079300671605, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1053.1021148028399, - "auto_unstuck_ema_dist": -0.048439292968518524, - "auto_unstuck_qty_pct": 0.026775907565393636, - "auto_unstuck_wallet_exposure_threshold": 0.4202734212601313, - "backwards_tp": true, - "ddown_factor": 1.302040269204191, - "ema_span_0": 197.1164066240147, - "ema_span_1": 263.70082613732944, - "enabled": true, - "initial_eprice_ema_dist": -0.04615743272160144, - "initial_qty_pct": 0.012580051183283161, - "markup_range": 0.0016924979303092895, - "min_markup": 0.003381419564290004, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03885121261806521, - "rentry_pprice_dist_wallet_exposure_weighting": 0.2373996778479605, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SKLUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SKLUSDT.json deleted file mode 100644 index ad3790d73..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SKLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1432.9054877991916, - "auto_unstuck_ema_dist": -0.056249317424465824, - "auto_unstuck_qty_pct": 0.010329159326857252, - "auto_unstuck_wallet_exposure_threshold": 0.40120993232564806, - "backwards_tp": true, - "ddown_factor": 0.5912278395641893, - "ema_span_0": 1278.158205997059, - "ema_span_1": 868.6484498245891, - "enabled": true, - "initial_eprice_ema_dist": 0.002918840677533508, - "initial_qty_pct": 0.011078568271797849, - "markup_range": 0.008774107991270793, - "min_markup": 0.0083130089286466, - "n_close_orders": 4, - "rentry_pprice_dist": 0.04419898935777256, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 604.8792153080825, - "auto_unstuck_ema_dist": -0.001853100616287836, - "auto_unstuck_qty_pct": 0.042043272500399693, - "auto_unstuck_wallet_exposure_threshold": 0.7782522851377379, - "backwards_tp": true, - "ddown_factor": 1.4777716987881295, - "ema_span_0": 966.5095626500749, - "ema_span_1": 727.4551973670439, - "enabled": true, - "initial_eprice_ema_dist": -0.0011991006233535897, - "initial_qty_pct": 0.017320199069556924, - "markup_range": 0.005602340433756267, - "min_markup": 0.0076048490905550725, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04527606892552375, - "rentry_pprice_dist_wallet_exposure_weighting": 3.92041258077347, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SNXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SNXUSDT.json deleted file mode 100644 index abefe4c80..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SNXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1364.8193198621389, - "auto_unstuck_ema_dist": 0.0017253847140640455, - "auto_unstuck_qty_pct": 0.01, - "auto_unstuck_wallet_exposure_threshold": 0.39474822355155864, - "backwards_tp": true, - "ddown_factor": 0.32627465006028866, - "ema_span_0": 354.90155594933924, - "ema_span_1": 72.25228338158776, - "enabled": true, - "initial_eprice_ema_dist": -0.08839078915513272, - "initial_qty_pct": 0.012763513528238702, - "markup_range": 0.0040825334505985075, - "min_markup": 0.0075644628067014765, - "n_close_orders": 7, - "rentry_pprice_dist": 0.040219140015152234, - "rentry_pprice_dist_wallet_exposure_weighting": 2.4891561976884797, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1271.761056712382, - "auto_unstuck_ema_dist": -0.025084779833590438, - "auto_unstuck_qty_pct": 0.017048716211641075, - "auto_unstuck_wallet_exposure_threshold": 0.5897008835171786, - "backwards_tp": true, - "ddown_factor": 1.1432909946235097, - "ema_span_0": 1254.1907481955404, - "ema_span_1": 1263.265259486184, - "enabled": true, - "initial_eprice_ema_dist": -0.00043630804538297635, - "initial_qty_pct": 0.010639884333751501, - "markup_range": 0.009224098182760782, - "min_markup": 0.009057822206619751, - "n_close_orders": 4, - "rentry_pprice_dist": 0.045585289890842644, - "rentry_pprice_dist_wallet_exposure_weighting": 12.672423886455041, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SOLUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SOLUSDT.json deleted file mode 100644 index 01fbbef76..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SOLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 570.6642736383709, - "auto_unstuck_ema_dist": -0.0703543641935526, - "auto_unstuck_qty_pct": 0.07958409329343162, - "auto_unstuck_wallet_exposure_threshold": 0.7149579370829199, - "backwards_tp": true, - "ddown_factor": 2.255494725067863, - "ema_span_0": 1196.5371633546483, - "ema_span_1": 1151.161402528516, - "enabled": true, - "initial_eprice_ema_dist": 0.00018210303747758468, - "initial_qty_pct": 0.01885901156979771, - "markup_range": 0.000543474515813044, - "min_markup": 0.006983183992124072, - "n_close_orders": 14, - "rentry_pprice_dist": 0.03442873819551257, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5002120985452094, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1105.0823704359764, - "auto_unstuck_ema_dist": -0.037732677892204754, - "auto_unstuck_qty_pct": 0.01336652282437937, - "auto_unstuck_wallet_exposure_threshold": 0.17028964041107603, - "backwards_tp": true, - "ddown_factor": 2.6637813817235907, - "ema_span_0": 1013.7483874558881, - "ema_span_1": 523.9362447353836, - "enabled": true, - "initial_eprice_ema_dist": -0.0018984902891632756, - "initial_qty_pct": 0.010166833986828638, - "markup_range": 0.0012169099850839584, - "min_markup": 0.004200455243126506, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03320686316073599, - "rentry_pprice_dist_wallet_exposure_weighting": 12.779899554241695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SPELLUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SPELLUSDT.json deleted file mode 100644 index 5368f3c64..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SPELLUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 763.4418181517437, - "auto_unstuck_ema_dist": -0.011293220197681418, - "auto_unstuck_qty_pct": 0.04921989974704013, - "auto_unstuck_wallet_exposure_threshold": 0.6364700579413338, - "backwards_tp": true, - "ddown_factor": 1.7092261845659003, - "ema_span_0": 1042.592433298043, - "ema_span_1": 1245.5459779139494, - "enabled": true, - "initial_eprice_ema_dist": -0.003195233753904795, - "initial_qty_pct": 0.015507429530820536, - "markup_range": 0.010407381877063361, - "min_markup": 0.007914661528328079, - "n_close_orders": 4, - "rentry_pprice_dist": 0.03423731931798797, - "rentry_pprice_dist_wallet_exposure_weighting": 4.48390273174731, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SRMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SRMUSDT.json deleted file mode 100644 index 86a2bf987..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SRMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 985.2017849579449, - "auto_unstuck_ema_dist": -0.023378153401603537, - "auto_unstuck_qty_pct": 0.022070244023777084, - "auto_unstuck_wallet_exposure_threshold": 0.27480787660526457, - "backwards_tp": true, - "ddown_factor": 1.179697567219471, - "ema_span_0": 823.0366469086534, - "ema_span_1": 976.3246152898656, - "enabled": true, - "initial_eprice_ema_dist": -0.0017140863429902474, - "initial_qty_pct": 0.014058525010545098, - "markup_range": 0.00018532931824882223, - "min_markup": 0.002280893908558229, - "n_close_orders": 11, - "rentry_pprice_dist": 0.03205615816903649, - "rentry_pprice_dist_wallet_exposure_weighting": 8.015088960078147, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 851.3786579639075, - "auto_unstuck_ema_dist": -0.05356076870047425, - "auto_unstuck_qty_pct": 0.09122179349519374, - "auto_unstuck_wallet_exposure_threshold": 0.16990946756240455, - "backwards_tp": true, - "ddown_factor": 0.13895769806822006, - "ema_span_0": 593.6994695970742, - "ema_span_1": 346.5178180246216, - "enabled": true, - "initial_eprice_ema_dist": -0.012317695889953148, - "initial_qty_pct": 0.010646978159658043, - "markup_range": 0.0035751412565706857, - "min_markup": 0.004524027198142064, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03097564697553242, - "rentry_pprice_dist_wallet_exposure_weighting": 12.927818997717173, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SSVUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SSVUSDT.json deleted file mode 100644 index b4adcc33a..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SSVUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 854.2754367671164, - "auto_unstuck_ema_dist": -0.05371273315195466, - "auto_unstuck_qty_pct": 0.04107728593133012, - "auto_unstuck_wallet_exposure_threshold": 0.5026792865148697, - "backwards_tp": true, - "ddown_factor": 0.194847872962081, - "ema_span_0": 1142.590040736634, - "ema_span_1": 1299.3458824056447, - "enabled": true, - "initial_eprice_ema_dist": -0.0005804575336994408, - "initial_qty_pct": 0.010007539992559196, - "markup_range": 0.011891847247062642, - "min_markup": 0.00578472464375768, - "n_close_orders": 14, - "rentry_pprice_dist": 0.041801077737243085, - "rentry_pprice_dist_wallet_exposure_weighting": 2.403072412678917, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/STGUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/STGUSDT.json deleted file mode 100644 index 4869177d4..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/STGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 935.5014048895968, - "auto_unstuck_ema_dist": -0.05793007432114491, - "auto_unstuck_qty_pct": 0.034020023849035054, - "auto_unstuck_wallet_exposure_threshold": 0.21273151683759653, - "backwards_tp": true, - "ddown_factor": 1.2621889414343654, - "ema_span_0": 886.320063774315, - "ema_span_1": 529.0373722563329, - "enabled": true, - "initial_eprice_ema_dist": -0.0032858487921914245, - "initial_qty_pct": 0.011398093134326997, - "markup_range": 0.004305612733085813, - "min_markup": 0.005651608238257144, - "n_close_orders": 14, - "rentry_pprice_dist": 0.037283764140798384, - "rentry_pprice_dist_wallet_exposure_weighting": 2.265028732253464, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1407.8314242486322, - "auto_unstuck_ema_dist": -0.014109132867766043, - "auto_unstuck_qty_pct": 0.011982754937679857, - "auto_unstuck_wallet_exposure_threshold": 0.5533712695560499, - "backwards_tp": true, - "ddown_factor": 0.8157110446402446, - "ema_span_0": 56.77083987848151, - "ema_span_1": 87.12787490128404, - "enabled": true, - "initial_eprice_ema_dist": -0.001303731885700587, - "initial_qty_pct": 0.010008649130437409, - "markup_range": 0.0018624459240663247, - "min_markup": 0.0041678492617304155, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0388560339970892, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9206393347106683, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/STMXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/STMXUSDT.json deleted file mode 100644 index b7fc814a5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/STMXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 812.9821416549128, - "auto_unstuck_ema_dist": -0.04734710899966994, - "auto_unstuck_qty_pct": 0.04249052976038317, - "auto_unstuck_wallet_exposure_threshold": 0.21432656964906516, - "backwards_tp": true, - "ddown_factor": 1.309408765574503, - "ema_span_0": 781.9929052703882, - "ema_span_1": 306.5494179409598, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998909103434454, - "initial_qty_pct": 0.01105331050497203, - "markup_range": 0.002998041554042977, - "min_markup": 0.007627399683354676, - "n_close_orders": 14, - "rentry_pprice_dist": 0.04904346914429782, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4597653098423223, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1253.6006770474733, - "auto_unstuck_ema_dist": -0.006854116150027488, - "auto_unstuck_qty_pct": 0.031644168490077784, - "auto_unstuck_wallet_exposure_threshold": 0.2557531129335714, - "backwards_tp": true, - "ddown_factor": 1.3832185824096965, - "ema_span_0": 1280.9824315832243, - "ema_span_1": 1197.5966306581568, - "enabled": true, - "initial_eprice_ema_dist": -0.04816000304172703, - "initial_qty_pct": 0.010950851120518782, - "markup_range": 0.0008022919858492278, - "min_markup": 0.008683689277631091, - "n_close_orders": 6, - "rentry_pprice_dist": 0.04363476732084077, - "rentry_pprice_dist_wallet_exposure_weighting": 0.4912416058069824, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/STORJUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/STORJUSDT.json deleted file mode 100644 index 54e21509a..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/STORJUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1152.559527357442, - "auto_unstuck_ema_dist": -0.08512805070919303, - "auto_unstuck_qty_pct": 0.012152217082469208, - "auto_unstuck_wallet_exposure_threshold": 0.10500174205770166, - "backwards_tp": true, - "ddown_factor": 2.736882867458632, - "ema_span_0": 425.2396028163725, - "ema_span_1": 1227.6579283198496, - "enabled": true, - "initial_eprice_ema_dist": 0.0029314464349996902, - "initial_qty_pct": 0.012547339465654919, - "markup_range": 0.0020852667679600984, - "min_markup": 0.00535581163010827, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04344384582108559, - "rentry_pprice_dist_wallet_exposure_weighting": 1.545650266206948, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/STXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/STXUSDT.json deleted file mode 100644 index 18685f5d0..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/STXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1426.8432725392668, - "auto_unstuck_ema_dist": -0.0537457052295863, - "auto_unstuck_qty_pct": 0.06845140103384849, - "auto_unstuck_wallet_exposure_threshold": 0.14000629596631145, - "backwards_tp": true, - "ddown_factor": 0.10296237162534044, - "ema_span_0": 1426.5816725177046, - "ema_span_1": 110.82412535626743, - "enabled": true, - "initial_eprice_ema_dist": 0.001676575955512243, - "initial_qty_pct": 0.040718197832064686, - "markup_range": 0.001653235585679397, - "min_markup": 0.008704813107931636, - "n_close_orders": 8, - "rentry_pprice_dist": 0.043154142723672996, - "rentry_pprice_dist_wallet_exposure_weighting": 0.476104660019888, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1105.0823704359764, - "auto_unstuck_ema_dist": -0.037732677892204754, - "auto_unstuck_qty_pct": 0.01336652282437937, - "auto_unstuck_wallet_exposure_threshold": 0.17028964041107603, - "backwards_tp": true, - "ddown_factor": 2.6637813817235907, - "ema_span_0": 1013.7483874558881, - "ema_span_1": 523.9362447353836, - "enabled": true, - "initial_eprice_ema_dist": -0.0018984902891632756, - "initial_qty_pct": 0.010166833986828638, - "markup_range": 0.0012169099850839584, - "min_markup": 0.004200455243126506, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03320686316073599, - "rentry_pprice_dist_wallet_exposure_weighting": 12.779899554241695, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SUIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SUIUSDT.json deleted file mode 100644 index def6e9d7a..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SUIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1231.6426410653428, - "auto_unstuck_ema_dist": -0.05748370761878396, - "auto_unstuck_qty_pct": 0.028789749824382857, - "auto_unstuck_wallet_exposure_threshold": 0.5079444259373056, - "backwards_tp": true, - "ddown_factor": 2.0637690064248755, - "ema_span_0": 109.69336505104252, - "ema_span_1": 856.6580528313107, - "enabled": true, - "initial_eprice_ema_dist": -0.008767349614441582, - "initial_qty_pct": 0.011176027939568284, - "markup_range": 0.005229384349149898, - "min_markup": 0.0032251654438817836, - "n_close_orders": 11, - "rentry_pprice_dist": 0.027464918695270225, - "rentry_pprice_dist_wallet_exposure_weighting": 2.365643487175211, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1133.0516729249457, - "auto_unstuck_ema_dist": -0.021338228250964944, - "auto_unstuck_qty_pct": 0.041959583333445974, - "auto_unstuck_wallet_exposure_threshold": 0.5843615907440661, - "backwards_tp": true, - "ddown_factor": 1.4381531180839886, - "ema_span_0": 428.0052531046105, - "ema_span_1": 415.3589160279952, - "enabled": true, - "initial_eprice_ema_dist": -0.0010521716521248341, - "initial_qty_pct": 0.010016393403745301, - "markup_range": 0.0005063092824123573, - "min_markup": 0.008346292875921573, - "n_close_orders": 15, - "rentry_pprice_dist": 0.026758342331281937, - "rentry_pprice_dist_wallet_exposure_weighting": 1.9808900950482229, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SUSHIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SUSHIUSDT.json deleted file mode 100644 index 95425c703..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SUSHIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1158.6043876899034, - "auto_unstuck_ema_dist": -0.020454455381802242, - "auto_unstuck_qty_pct": 0.02643525054800338, - "auto_unstuck_wallet_exposure_threshold": 0.577254858339164, - "backwards_tp": true, - "ddown_factor": 2.999741627773494, - "ema_span_0": 565.4108700494647, - "ema_span_1": 1179.864916183485, - "enabled": true, - "initial_eprice_ema_dist": 0.002039966535125256, - "initial_qty_pct": 0.016215295047991962, - "markup_range": 0.0, - "min_markup": 0.0045716191458825715, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04759115060085173, - "rentry_pprice_dist_wallet_exposure_weighting": 0.07250220870815746, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.531124004601, - "auto_unstuck_ema_dist": -0.014143982181803384, - "auto_unstuck_qty_pct": 0.013108933247628107, - "auto_unstuck_wallet_exposure_threshold": 0.503281705121865, - "backwards_tp": true, - "ddown_factor": 1.4077801165553514, - "ema_span_0": 708.5540243238498, - "ema_span_1": 429.4783039951395, - "enabled": true, - "initial_eprice_ema_dist": 0.0017778527843470464, - "initial_qty_pct": 0.012746146034437219, - "markup_range": 0.004729203207199757, - "min_markup": 0.005741733179453156, - "n_close_orders": 5, - "rentry_pprice_dist": 0.044819353201280644, - "rentry_pprice_dist_wallet_exposure_weighting": 0.15802956604297766, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/SXPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/SXPUSDT.json deleted file mode 100644 index 7cbc8b601..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/SXPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.3580694829311, - "auto_unstuck_ema_dist": -0.0499130440540471, - "auto_unstuck_qty_pct": 0.011147263389662829, - "auto_unstuck_wallet_exposure_threshold": 0.38876908815985045, - "backwards_tp": true, - "ddown_factor": 2.1932983744435997, - "ema_span_0": 295.34325736350286, - "ema_span_1": 463.19712668719893, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010243943677930595, - "markup_range": 0.001995624564988456, - "min_markup": 0.0031037141845810454, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0329301805607218, - "rentry_pprice_dist_wallet_exposure_weighting": 2.253373217684854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1384.857374895113, - "auto_unstuck_ema_dist": -0.024352444081234093, - "auto_unstuck_qty_pct": 0.039827278715047584, - "auto_unstuck_wallet_exposure_threshold": 0.6045513017798055, - "backwards_tp": true, - "ddown_factor": 2.0393724914785993, - "ema_span_0": 1113.7802876732308, - "ema_span_1": 858.6886482052665, - "enabled": true, - "initial_eprice_ema_dist": 0.0019339549901739052, - "initial_qty_pct": 0.010799971806476183, - "markup_range": 0.0018200189743278747, - "min_markup": 0.003124775259214504, - "n_close_orders": 10, - "rentry_pprice_dist": 0.03641976114870019, - "rentry_pprice_dist_wallet_exposure_weighting": 14.811452369911798, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/THETAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/THETAUSDT.json deleted file mode 100644 index 004db5739..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/THETAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 858.9120509049447, - "auto_unstuck_ema_dist": -0.025186318663159925, - "auto_unstuck_qty_pct": 0.010765006854872246, - "auto_unstuck_wallet_exposure_threshold": 0.2617268582249943, - "backwards_tp": true, - "ddown_factor": 0.3191326770188785, - "ema_span_0": 1176.1146877147062, - "ema_span_1": 423.45577642854465, - "enabled": true, - "initial_eprice_ema_dist": -0.08005963311537093, - "initial_qty_pct": 0.012626582262506271, - "markup_range": 0.0032991495754256827, - "min_markup": 0.003375833907375293, - "n_close_orders": 11, - "rentry_pprice_dist": 0.029879667152032163, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9238510481158029, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 770.3927178175928, - "auto_unstuck_ema_dist": -0.079974396187808, - "auto_unstuck_qty_pct": 0.05694204475063293, - "auto_unstuck_wallet_exposure_threshold": 0.1315710846721687, - "backwards_tp": true, - "ddown_factor": 0.5058582405050233, - "ema_span_0": 923.7057782718896, - "ema_span_1": 1386.6845458978403, - "enabled": true, - "initial_eprice_ema_dist": 0.0004323184531561842, - "initial_qty_pct": 0.01610427637647136, - "markup_range": 0.006871434838658023, - "min_markup": 0.008416547049621949, - "n_close_orders": 12, - "rentry_pprice_dist": 0.04238891152022957, - "rentry_pprice_dist_wallet_exposure_weighting": 1.1753109986824162, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/TLMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/TLMUSDT.json deleted file mode 100644 index fd35215ab..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/TLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1252.417244006212, - "auto_unstuck_ema_dist": -0.021418935802747965, - "auto_unstuck_qty_pct": 0.016499001365354968, - "auto_unstuck_wallet_exposure_threshold": 0.5340582783425477, - "backwards_tp": true, - "ddown_factor": 0.47449266679456903, - "ema_span_0": 354.2302388158089, - "ema_span_1": 750.355170444691, - "enabled": true, - "initial_eprice_ema_dist": -0.025835374370999316, - "initial_qty_pct": 0.010639158233023555, - "markup_range": 0.001697074404277472, - "min_markup": 0.00522191633285658, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04105662138057723, - "rentry_pprice_dist_wallet_exposure_weighting": 3.780871214915995, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/TOMOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/TOMOUSDT.json deleted file mode 100644 index 7961ec319..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/TOMOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 968.9885554324641, - "auto_unstuck_ema_dist": -0.040466250595328816, - "auto_unstuck_qty_pct": 0.021646336338545482, - "auto_unstuck_wallet_exposure_threshold": 0.5648550848392668, - "backwards_tp": true, - "ddown_factor": 2.7865650777274107, - "ema_span_0": 694.1160959051064, - "ema_span_1": 1032.4776634516954, - "enabled": true, - "initial_eprice_ema_dist": 0.002927605010827487, - "initial_qty_pct": 0.010143296957502655, - "markup_range": 0.0038366878937663856, - "min_markup": 0.009405260789784488, - "n_close_orders": 12, - "rentry_pprice_dist": 0.049615203593185817, - "rentry_pprice_dist_wallet_exposure_weighting": 11.58409946197559, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 357.92436669278186, - "auto_unstuck_ema_dist": -0.02353128502649557, - "auto_unstuck_qty_pct": 0.08808236739145908, - "auto_unstuck_wallet_exposure_threshold": 0.5968920331844256, - "backwards_tp": true, - "ddown_factor": 0.9261961962753986, - "ema_span_0": 823.6626223695628, - "ema_span_1": 1023.928457392366, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.011315469369144245, - "markup_range": 1.9188657784107906e-08, - "min_markup": 0.004545455719481276, - "n_close_orders": 6, - "rentry_pprice_dist": 0.027754912343113888, - "rentry_pprice_dist_wallet_exposure_weighting": 7.31721652054868, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/TRBUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/TRBUSDT.json deleted file mode 100644 index 35d39a939..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/TRBUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1244.174462451248, - "auto_unstuck_ema_dist": -0.01990627794814956, - "auto_unstuck_qty_pct": 0.05085456625801725, - "auto_unstuck_wallet_exposure_threshold": 0.5972299214739303, - "backwards_tp": true, - "ddown_factor": 1.1484444039154207, - "ema_span_0": 187.821719767993, - "ema_span_1": 475.0326818198221, - "enabled": true, - "initial_eprice_ema_dist": -0.002132753562023076, - "initial_qty_pct": 0.010445748038179046, - "markup_range": 0.0016028342504434462, - "min_markup": 0.003852472689059159, - "n_close_orders": 7, - "rentry_pprice_dist": 0.04743686301440921, - "rentry_pprice_dist_wallet_exposure_weighting": 9.468158349159458, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 497.5906534475687, - "auto_unstuck_ema_dist": -0.040869988463281735, - "auto_unstuck_qty_pct": 0.04035802313752252, - "auto_unstuck_wallet_exposure_threshold": 0.3525969403230897, - "backwards_tp": true, - "ddown_factor": 1.3249219853781622, - "ema_span_0": 1357.516125272833, - "ema_span_1": 882.6627710672166, - "enabled": true, - "initial_eprice_ema_dist": -0.002829104421338118, - "initial_qty_pct": 0.010004022601790714, - "markup_range": 0.0003739165593537279, - "min_markup": 0.003807757153799048, - "n_close_orders": 9, - "rentry_pprice_dist": 0.027800515093534164, - "rentry_pprice_dist_wallet_exposure_weighting": 7.443746602756841, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/TRUUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/TRUUSDT.json deleted file mode 100644 index cbf9a620b..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/TRUUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1340.3580694829311, - "auto_unstuck_ema_dist": -0.0499130440540471, - "auto_unstuck_qty_pct": 0.011147263389662829, - "auto_unstuck_wallet_exposure_threshold": 0.38876908815985045, - "backwards_tp": true, - "ddown_factor": 2.1932983744435997, - "ema_span_0": 295.34325736350286, - "ema_span_1": 463.19712668719893, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.010243943677930595, - "markup_range": 0.001995624564988456, - "min_markup": 0.0031037141845810454, - "n_close_orders": 6, - "rentry_pprice_dist": 0.0329301805607218, - "rentry_pprice_dist_wallet_exposure_weighting": 2.253373217684854, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1369.7756532104097, - "auto_unstuck_ema_dist": -0.014044269301170862, - "auto_unstuck_qty_pct": 0.047477864945509055, - "auto_unstuck_wallet_exposure_threshold": 0.20286896136568175, - "backwards_tp": true, - "ddown_factor": 2.9702143734475817, - "ema_span_0": 915.3740543874582, - "ema_span_1": 1294.804699335215, - "enabled": true, - "initial_eprice_ema_dist": -0.006239803957795685, - "initial_qty_pct": 0.011218032232250512, - "markup_range": 0.0017539437786151823, - "min_markup": 0.009300530544366262, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04092874411878766, - "rentry_pprice_dist_wallet_exposure_weighting": 1.50434712308107, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/TRXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/TRXUSDT.json deleted file mode 100644 index c144ad468..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/TRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1198.737532352804, - "auto_unstuck_ema_dist": 0.0021918977925421664, - "auto_unstuck_qty_pct": 0.011737438010278886, - "auto_unstuck_wallet_exposure_threshold": 0.26103788036106523, - "backwards_tp": true, - "ddown_factor": 0.9912031563296594, - "ema_span_0": 1043.6852785172005, - "ema_span_1": 140.47129590575383, - "enabled": true, - "initial_eprice_ema_dist": 0.0010962564206719796, - "initial_qty_pct": 0.021125725836593622, - "markup_range": 0.0017367553867170978, - "min_markup": 0.002391490312542033, - "n_close_orders": 10, - "rentry_pprice_dist": 0.032827292692171564, - "rentry_pprice_dist_wallet_exposure_weighting": 0.10738069449979064, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1432.4030184941907, - "auto_unstuck_ema_dist": -0.07320861915973527, - "auto_unstuck_qty_pct": 0.01905034857328703, - "auto_unstuck_wallet_exposure_threshold": 0.11227541929160423, - "backwards_tp": true, - "ddown_factor": 0.5340798118427715, - "ema_span_0": 551.399155721459, - "ema_span_1": 153.20519427770577, - "enabled": true, - "initial_eprice_ema_dist": 0.002250154717145872, - "initial_qty_pct": 0.013131818889181211, - "markup_range": 0.0023789798193469057, - "min_markup": 0.004001037949340948, - "n_close_orders": 16, - "rentry_pprice_dist": 0.018620497691417052, - "rentry_pprice_dist_wallet_exposure_weighting": 3.11100367112489, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/TUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/TUSDT.json deleted file mode 100644 index e316cc3fb..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/TUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1334.9796909235044, - "auto_unstuck_ema_dist": 0.0004335119523387423, - "auto_unstuck_qty_pct": 0.03419114551949676, - "auto_unstuck_wallet_exposure_threshold": 0.5607912465981395, - "backwards_tp": true, - "ddown_factor": 0.21981978992948273, - "ema_span_0": 684.721853920761, - "ema_span_1": 587.3367515525263, - "enabled": true, - "initial_eprice_ema_dist": -0.011366019759355373, - "initial_qty_pct": 0.013428270540297325, - "markup_range": 0.0044212957130786755, - "min_markup": 0.009020473612600138, - "n_close_orders": 8, - "rentry_pprice_dist": 0.033862980646636835, - "rentry_pprice_dist_wallet_exposure_weighting": 1.6605915676504517, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.0681424460352, - "auto_unstuck_ema_dist": -0.08076665705882756, - "auto_unstuck_qty_pct": 0.03862089723313794, - "auto_unstuck_wallet_exposure_threshold": 0.43806934099202416, - "backwards_tp": true, - "ddown_factor": 1.623796341781897, - "ema_span_0": 644.5082150739652, - "ema_span_1": 448.5402274469385, - "enabled": true, - "initial_eprice_ema_dist": -0.0007918178559373351, - "initial_qty_pct": 0.014249500974285576, - "markup_range": 0.004660386654482454, - "min_markup": 0.004005921148986976, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03331795706872418, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49562035158752665, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/UMAUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/UMAUSDT.json deleted file mode 100644 index fa32387a2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/UMAUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 746.6776542571158, - "auto_unstuck_ema_dist": 0.00270698163806764, - "auto_unstuck_qty_pct": 0.01164509403324156, - "auto_unstuck_wallet_exposure_threshold": 0.43951937117305057, - "backwards_tp": true, - "ddown_factor": 0.4640094752430136, - "ema_span_0": 1155.178521410779, - "ema_span_1": 254.70812242268124, - "enabled": true, - "initial_eprice_ema_dist": -0.09136401805218175, - "initial_qty_pct": 0.012497267569979277, - "markup_range": 0.0023930943244147946, - "min_markup": 0.0034088058190997607, - "n_close_orders": 13, - "rentry_pprice_dist": 0.018088522041054995, - "rentry_pprice_dist_wallet_exposure_weighting": 4.241519470159921, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 845.6624377098583, - "auto_unstuck_ema_dist": -0.0197307329231879, - "auto_unstuck_qty_pct": 0.022024606630144942, - "auto_unstuck_wallet_exposure_threshold": 0.24394145293594782, - "backwards_tp": true, - "ddown_factor": 0.7004145034734276, - "ema_span_0": 525.3869858616215, - "ema_span_1": 959.8549644648651, - "enabled": true, - "initial_eprice_ema_dist": 0.0014243174536410158, - "initial_qty_pct": 0.03562401385592051, - "markup_range": 0.0036727540965699776, - "min_markup": 0.006906751912677046, - "n_close_orders": 7, - "rentry_pprice_dist": 0.01790310274730634, - "rentry_pprice_dist_wallet_exposure_weighting": 12.679077702687932, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/UNFIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/UNFIUSDT.json deleted file mode 100644 index 16cbd7472..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/UNFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 739.9793485670867, - "auto_unstuck_ema_dist": -0.04726699669646778, - "auto_unstuck_qty_pct": 0.030867522453931567, - "auto_unstuck_wallet_exposure_threshold": 0.45675557567135283, - "backwards_tp": true, - "ddown_factor": 0.5593563404929264, - "ema_span_0": 426.6316366478849, - "ema_span_1": 176.3353916740571, - "enabled": true, - "initial_eprice_ema_dist": -0.0843605136547385, - "initial_qty_pct": 0.013385292768003673, - "markup_range": 0.006489201535921158, - "min_markup": 0.008707892079760745, - "n_close_orders": 10, - "rentry_pprice_dist": 0.04888123178825347, - "rentry_pprice_dist_wallet_exposure_weighting": 3.121664431603514, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 285.6234505056953, - "auto_unstuck_ema_dist": -0.006169634270834493, - "auto_unstuck_qty_pct": 0.08542872503580161, - "auto_unstuck_wallet_exposure_threshold": 0.3438491355889116, - "backwards_tp": true, - "ddown_factor": 2.834198976108729, - "ema_span_0": 1108.4937215052462, - "ema_span_1": 1319.5359981553352, - "enabled": true, - "initial_eprice_ema_dist": -0.012031242038107709, - "initial_qty_pct": 0.02352105540694183, - "markup_range": 0.002220487031831374, - "min_markup": 0.002659176671328884, - "n_close_orders": 15, - "rentry_pprice_dist": 0.027430857785321568, - "rentry_pprice_dist_wallet_exposure_weighting": 0.9884053323911303, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/UNIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/UNIUSDT.json deleted file mode 100644 index 04682810c..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/UNIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1118.1651654657594, - "auto_unstuck_ema_dist": -0.06773303148962292, - "auto_unstuck_qty_pct": 0.022192547833760838, - "auto_unstuck_wallet_exposure_threshold": 0.694763352056688, - "backwards_tp": true, - "ddown_factor": 2.9571522399293446, - "ema_span_0": 964.4382431149039, - "ema_span_1": 1091.8899472695127, - "enabled": true, - "initial_eprice_ema_dist": -0.005237577543248062, - "initial_qty_pct": 0.012073075780244644, - "markup_range": 0.001325264577762037, - "min_markup": 0.0077613054751830045, - "n_close_orders": 5, - "rentry_pprice_dist": 0.03931273043795401, - "rentry_pprice_dist_wallet_exposure_weighting": 6.177745032958001, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 998.7399395019355, - "auto_unstuck_ema_dist": -0.00681840677888219, - "auto_unstuck_qty_pct": 0.01672878952199484, - "auto_unstuck_wallet_exposure_threshold": 0.39426588733714385, - "backwards_tp": true, - "ddown_factor": 2.2284970251056935, - "ema_span_0": 591.48504546644, - "ema_span_1": 1044.3598285854616, - "enabled": true, - "initial_eprice_ema_dist": -0.01145565682254329, - "initial_qty_pct": 0.012751021489975386, - "markup_range": 0.0006298592575542418, - "min_markup": 0.001961877692908044, - "n_close_orders": 6, - "rentry_pprice_dist": 0.03351546249149676, - "rentry_pprice_dist_wallet_exposure_weighting": 0.82690556593115, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/USDCUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/USDCUSDT.json deleted file mode 100644 index e069aee9d..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/USDCUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1329.3547977286032, - "auto_unstuck_ema_dist": -0.02570232235032514, - "auto_unstuck_qty_pct": 0.036636870792339085, - "auto_unstuck_wallet_exposure_threshold": 0.3504224087334014, - "backwards_tp": true, - "ddown_factor": 0.4356614842040477, - "ema_span_0": 877.5474524205408, - "ema_span_1": 915.2133208065917, - "enabled": true, - "initial_eprice_ema_dist": 0.0021233702796588116, - "initial_qty_pct": 0.010406000938755511, - "markup_range": 0.015722352019257237, - "min_markup": 0.008802024082192172, - "n_close_orders": 13, - "rentry_pprice_dist": 0.04495356639233563, - "rentry_pprice_dist_wallet_exposure_weighting": 0.3238988261801409, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1.133590120987681, - "auto_unstuck_ema_dist": -0.0664767643547855, - "auto_unstuck_qty_pct": 0.018605667048078367, - "auto_unstuck_wallet_exposure_threshold": 0.7742578216478697, - "backwards_tp": true, - "ddown_factor": 0.20278360704213827, - "ema_span_0": 154.5599272358244, - "ema_span_1": 1231.0969620873752, - "enabled": true, - "initial_eprice_ema_dist": -0.046987987454892195, - "initial_qty_pct": 0.011116774912808925, - "markup_range": 4.864205520845488e-05, - "min_markup": 0.0022461444428992575, - "n_close_orders": 8, - "rentry_pprice_dist": 0.03439328327538153, - "rentry_pprice_dist_wallet_exposure_weighting": 11.458435171750244, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/VETUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/VETUSDT.json deleted file mode 100644 index a97774466..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/VETUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1010.9617461964966, - "auto_unstuck_ema_dist": -0.0449323418843014, - "auto_unstuck_qty_pct": 0.013686819229151177, - "auto_unstuck_wallet_exposure_threshold": 0.6543131814798637, - "backwards_tp": true, - "ddown_factor": 1.3360937437116451, - "ema_span_0": 337.5583185863284, - "ema_span_1": 540.9651637988226, - "enabled": true, - "initial_eprice_ema_dist": 0.0014899952793059747, - "initial_qty_pct": 0.016377342959578715, - "markup_range": 0.0031271553103385872, - "min_markup": 0.0031949145656978203, - "n_close_orders": 12, - "rentry_pprice_dist": 0.02503333188219508, - "rentry_pprice_dist_wallet_exposure_weighting": 4.148170179549651, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 705.1598139875407, - "auto_unstuck_ema_dist": -0.015790826195680056, - "auto_unstuck_qty_pct": 0.015251349303554573, - "auto_unstuck_wallet_exposure_threshold": 0.6021712984492144, - "backwards_tp": true, - "ddown_factor": 2.8641312781000035, - "ema_span_0": 528.0792345865252, - "ema_span_1": 1427.8569193225999, - "enabled": true, - "initial_eprice_ema_dist": 0.0029859142327868025, - "initial_qty_pct": 0.015831624685142317, - "markup_range": 0.0034417331607668536, - "min_markup": 0.0037124919129803416, - "n_close_orders": 12, - "rentry_pprice_dist": 0.040274614221498035, - "rentry_pprice_dist_wallet_exposure_weighting": 0.003551950736988942, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/WAVESUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/WAVESUSDT.json deleted file mode 100644 index d941bf6c3..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/WAVESUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1211.6068399986273, - "auto_unstuck_ema_dist": 0.0004512353455101662, - "auto_unstuck_qty_pct": 0.022925405626570538, - "auto_unstuck_wallet_exposure_threshold": 0.727862361703627, - "backwards_tp": true, - "ddown_factor": 2.88220745208764, - "ema_span_0": 317.6661820543112, - "ema_span_1": 117.01351808572508, - "enabled": true, - "initial_eprice_ema_dist": 0.0007690926413611972, - "initial_qty_pct": 0.013054522243453867, - "markup_range": 0.000305597414152302, - "min_markup": 0.0024382279640816486, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03459656312182234, - "rentry_pprice_dist_wallet_exposure_weighting": 0.981309916891, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 304.07771995971075, - "auto_unstuck_ema_dist": -0.08809545489701244, - "auto_unstuck_qty_pct": 0.03575623484165844, - "auto_unstuck_wallet_exposure_threshold": 0.8999996510897542, - "backwards_tp": true, - "ddown_factor": 0.9543293241756925, - "ema_span_0": 1018.094340915848, - "ema_span_1": 63.8326835002919, - "enabled": true, - "initial_eprice_ema_dist": 0.0029650488024153166, - "initial_qty_pct": 0.011874346095220277, - "markup_range": 1.0047083276860816e-05, - "min_markup": 0.005090332830166383, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04956327750786398, - "rentry_pprice_dist_wallet_exposure_weighting": 12.845124717596097, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/WLDUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/WLDUSDT.json deleted file mode 100644 index 947938298..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/WLDUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1229.7758528902937, - "auto_unstuck_ema_dist": -0.05914769539771581, - "auto_unstuck_qty_pct": 0.01511902340838162, - "auto_unstuck_wallet_exposure_threshold": 0.6846948705761557, - "backwards_tp": true, - "ddown_factor": 1.8857281633742855, - "ema_span_0": 80.49335874332347, - "ema_span_1": 345.5473243304256, - "enabled": true, - "initial_eprice_ema_dist": -0.005007496036276903, - "initial_qty_pct": 0.012383215418007059, - "markup_range": 0.006375884182639555, - "min_markup": 0.002414722488059609, - "n_close_orders": 5, - "rentry_pprice_dist": 0.029334523491465887, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2189709089235532, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 541.0698095831558, - "auto_unstuck_ema_dist": -0.013305864303072753, - "auto_unstuck_qty_pct": 0.01390306071685173, - "auto_unstuck_wallet_exposure_threshold": 0.5253164974633007, - "backwards_tp": true, - "ddown_factor": 2.4489692021093057, - "ema_span_0": 530.2747886976573, - "ema_span_1": 256.8255394119372, - "enabled": true, - "initial_eprice_ema_dist": -0.006014927404041342, - "initial_qty_pct": 0.012960728593511443, - "markup_range": 0.0029520319726383773, - "min_markup": 0.0021142994042955125, - "n_close_orders": 16, - "rentry_pprice_dist": 0.0283173755441322, - "rentry_pprice_dist_wallet_exposure_weighting": 5.073076194313362, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/WOOUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/WOOUSDT.json deleted file mode 100644 index ac423c752..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/WOOUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 817.3839601148987, - "auto_unstuck_ema_dist": -0.056747177167555, - "auto_unstuck_qty_pct": 0.012467608336580227, - "auto_unstuck_wallet_exposure_threshold": 0.44505116465567496, - "backwards_tp": true, - "ddown_factor": 1.276389127776389, - "ema_span_0": 312.422966055438, - "ema_span_1": 747.3451446818881, - "enabled": true, - "initial_eprice_ema_dist": -0.006776686937736162, - "initial_qty_pct": 0.01, - "markup_range": 0.0044972982347013515, - "min_markup": 0.0012946220207993191, - "n_close_orders": 10, - "rentry_pprice_dist": 0.02877369381592201, - "rentry_pprice_dist_wallet_exposure_weighting": 3.920681694766142, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 663.9082621683893, - "auto_unstuck_ema_dist": -0.029264604761396484, - "auto_unstuck_qty_pct": 0.01028820821909273, - "auto_unstuck_wallet_exposure_threshold": 0.1983137061076403, - "backwards_tp": true, - "ddown_factor": 1.9651840247105272, - "ema_span_0": 79.13725259724187, - "ema_span_1": 40.749166674343826, - "enabled": true, - "initial_eprice_ema_dist": 0.0025600695207464606, - "initial_qty_pct": 0.011047275123784223, - "markup_range": 0.0009398635335428235, - "min_markup": 0.009494696138601521, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04940376968104154, - "rentry_pprice_dist_wallet_exposure_weighting": 0.37247906219716315, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XEMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XEMUSDT.json deleted file mode 100644 index 175885de8..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XEMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 857.9352163512979, - "auto_unstuck_ema_dist": 0.0014175579215003483, - "auto_unstuck_qty_pct": 0.010343324839004193, - "auto_unstuck_wallet_exposure_threshold": 0.14528765565874516, - "backwards_tp": true, - "ddown_factor": 2.9997053680425205, - "ema_span_0": 203.7858595156725, - "ema_span_1": 721.405235407679, - "enabled": true, - "initial_eprice_ema_dist": 0.002943705873177678, - "initial_qty_pct": 0.01356574411908951, - "markup_range": 0.002575633644852081, - "min_markup": 0.006489057687649006, - "n_close_orders": 15, - "rentry_pprice_dist": 0.034405568823008166, - "rentry_pprice_dist_wallet_exposure_weighting": 2.883300831934505, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XLMUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XLMUSDT.json deleted file mode 100644 index e5d3c02d0..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XLMUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 256.2319363270807, - "auto_unstuck_ema_dist": -0.0002188928687004504, - "auto_unstuck_qty_pct": 0.057713734692939805, - "auto_unstuck_wallet_exposure_threshold": 0.34831646610767086, - "backwards_tp": true, - "ddown_factor": 1.5642493325894264, - "ema_span_0": 517.5756797340687, - "ema_span_1": 799.2105916402114, - "enabled": true, - "initial_eprice_ema_dist": -0.0021387106605005837, - "initial_qty_pct": 0.011407558540520906, - "markup_range": 0.0, - "min_markup": 0.001, - "n_close_orders": 8, - "rentry_pprice_dist": 0.027299348659208182, - "rentry_pprice_dist_wallet_exposure_weighting": 8.348029646144358, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 511.1547469706444, - "auto_unstuck_ema_dist": -0.06957948709282034, - "auto_unstuck_qty_pct": 0.011127837053773007, - "auto_unstuck_wallet_exposure_threshold": 0.23167936403762507, - "backwards_tp": true, - "ddown_factor": 2.341353495805216, - "ema_span_0": 743.207939881757, - "ema_span_1": 895.2817823279266, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.014176253228324949, - "markup_range": 0.0017278870795241915, - "min_markup": 0.003807577722098899, - "n_close_orders": 3, - "rentry_pprice_dist": 0.04049578187384283, - "rentry_pprice_dist_wallet_exposure_weighting": 3.837016116012465, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XMRUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XMRUSDT.json deleted file mode 100644 index 37877c33e..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XMRUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1339.1865422605786, - "auto_unstuck_ema_dist": -0.008820788740679682, - "auto_unstuck_qty_pct": 0.0426943188630646, - "auto_unstuck_wallet_exposure_threshold": 0.1635952804712599, - "backwards_tp": true, - "ddown_factor": 0.1681718444888247, - "ema_span_0": 653.6849192955965, - "ema_span_1": 227.5333807116893, - "enabled": true, - "initial_eprice_ema_dist": -0.0030739368686215746, - "initial_qty_pct": 0.02568019576967234, - "markup_range": 8.020159895770236e-18, - "min_markup": 0.005358167510947481, - "n_close_orders": 12, - "rentry_pprice_dist": 0.028331976945844457, - "rentry_pprice_dist_wallet_exposure_weighting": 1.901734260763618, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 21.55836393188097, - "auto_unstuck_ema_dist": -0.0031592729426018836, - "auto_unstuck_qty_pct": 0.06490423002636772, - "auto_unstuck_wallet_exposure_threshold": 0.10151667160345075, - "backwards_tp": true, - "ddown_factor": 2.022489320158654, - "ema_span_0": 1225.72283663952, - "ema_span_1": 1416.3542783184882, - "enabled": true, - "initial_eprice_ema_dist": 0.002916968423894917, - "initial_qty_pct": 0.03575387693572197, - "markup_range": 0.0036818721376397573, - "min_markup": 0.001601105039524659, - "n_close_orders": 15, - "rentry_pprice_dist": 0.018952680698201267, - "rentry_pprice_dist_wallet_exposure_weighting": 6.905760081415692, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XRPUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XRPUSDT.json deleted file mode 100644 index 3a3089141..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XRPUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 719.9872027686143, - "auto_unstuck_ema_dist": -0.022541606308323435, - "auto_unstuck_qty_pct": 0.06270207829324834, - "auto_unstuck_wallet_exposure_threshold": 0.49696955946950716, - "backwards_tp": true, - "ddown_factor": 0.4908205683212454, - "ema_span_0": 851.4823300946229, - "ema_span_1": 283.3880926531075, - "enabled": true, - "initial_eprice_ema_dist": -0.0011106649019491214, - "initial_qty_pct": 0.011064611774235726, - "markup_range": 0.00042112398364548844, - "min_markup": 0.004339088179395441, - "n_close_orders": 7, - "rentry_pprice_dist": 0.010048653902822655, - "rentry_pprice_dist_wallet_exposure_weighting": 11.350702080438928, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1033.3587503162703, - "auto_unstuck_ema_dist": -0.039713763863901505, - "auto_unstuck_qty_pct": 0.014837076462468379, - "auto_unstuck_wallet_exposure_threshold": 0.4108600334286868, - "backwards_tp": true, - "ddown_factor": 0.9664681763521198, - "ema_span_0": 1000.484246728451, - "ema_span_1": 23.56752968494623, - "enabled": true, - "initial_eprice_ema_dist": 0.00016004260672259133, - "initial_qty_pct": 0.01079877076958448, - "markup_range": 0.0005517243667842997, - "min_markup": 0.009240136702262336, - "n_close_orders": 15, - "rentry_pprice_dist": 0.048272245968692555, - "rentry_pprice_dist_wallet_exposure_weighting": 0.0, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XTZUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XTZUSDT.json deleted file mode 100644 index de3c712ce..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XTZUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1019.7280570370905, - "auto_unstuck_ema_dist": 0.003, - "auto_unstuck_qty_pct": 0.04720451954781402, - "auto_unstuck_wallet_exposure_threshold": 0.541337782205087, - "backwards_tp": true, - "ddown_factor": 1.0984124597176057, - "ema_span_0": 1145.1131894215428, - "ema_span_1": 1166.8004174624189, - "enabled": true, - "initial_eprice_ema_dist": -0.00011677048610017664, - "initial_qty_pct": 0.01653909787573966, - "markup_range": 0.0069204364219696895, - "min_markup": 0.005262482253868771, - "n_close_orders": 9, - "rentry_pprice_dist": 0.03354366422901962, - "rentry_pprice_dist_wallet_exposure_weighting": 2.9223261375717757, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1308.0681424460352, - "auto_unstuck_ema_dist": -0.08076665705882756, - "auto_unstuck_qty_pct": 0.03862089723313794, - "auto_unstuck_wallet_exposure_threshold": 0.43806934099202416, - "backwards_tp": true, - "ddown_factor": 1.623796341781897, - "ema_span_0": 644.5082150739652, - "ema_span_1": 448.5402274469385, - "enabled": true, - "initial_eprice_ema_dist": -0.0007918178559373351, - "initial_qty_pct": 0.014249500974285576, - "markup_range": 0.004660386654482454, - "min_markup": 0.004005921148986976, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03331795706872418, - "rentry_pprice_dist_wallet_exposure_weighting": 0.49562035158752665, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XVGUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XVGUSDT.json deleted file mode 100644 index fb0982039..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XVGUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1349.3735257282235, - "auto_unstuck_ema_dist": -0.029689368064183073, - "auto_unstuck_qty_pct": 0.010407942713729097, - "auto_unstuck_wallet_exposure_threshold": 0.2988051835451873, - "backwards_tp": true, - "ddown_factor": 2.8061157114212687, - "ema_span_0": 583.0950479143587, - "ema_span_1": 523.7979322705362, - "enabled": true, - "initial_eprice_ema_dist": 0.0029998555170992797, - "initial_qty_pct": 0.013810869017646372, - "markup_range": 0.0026665960350597145, - "min_markup": 0.0017369156497204807, - "n_close_orders": 11, - "rentry_pprice_dist": 0.023176150715941087, - "rentry_pprice_dist_wallet_exposure_weighting": 0.00010181153818773967, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1028.028578335184, - "auto_unstuck_ema_dist": -0.040154501388253064, - "auto_unstuck_qty_pct": 0.021182087724146734, - "auto_unstuck_wallet_exposure_threshold": 0.2744657639665117, - "backwards_tp": true, - "ddown_factor": 1.3815792724134932, - "ema_span_0": 1326.7432829077384, - "ema_span_1": 1161.0339976410737, - "enabled": true, - "initial_eprice_ema_dist": -0.0011400799244109287, - "initial_qty_pct": 0.014087319892400864, - "markup_range": 0.0061135328802382986, - "min_markup": 0.006452005813818132, - "n_close_orders": 12, - "rentry_pprice_dist": 0.023395653088993513, - "rentry_pprice_dist_wallet_exposure_weighting": 5.590728239685076, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/XVSUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/XVSUSDT.json deleted file mode 100644 index a801adb87..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/XVSUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1368.1756670538243, - "auto_unstuck_ema_dist": -0.07330997354703737, - "auto_unstuck_qty_pct": 0.011747650192491955, - "auto_unstuck_wallet_exposure_threshold": 0.4736214579573272, - "backwards_tp": true, - "ddown_factor": 0.1, - "ema_span_0": 137.81914493525576, - "ema_span_1": 166.34020854290125, - "enabled": true, - "initial_eprice_ema_dist": -0.04653146127912276, - "initial_qty_pct": 0.01461088098227183, - "markup_range": 0.0011177056140842143, - "min_markup": 0.007515669102516649, - "n_close_orders": 8, - "rentry_pprice_dist": 0.039236672231753575, - "rentry_pprice_dist_wallet_exposure_weighting": 1.7250832843519701, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 917.0157232326517, - "auto_unstuck_ema_dist": 0.002584536889395626, - "auto_unstuck_qty_pct": 0.016067830025278666, - "auto_unstuck_wallet_exposure_threshold": 0.17865852417429198, - "backwards_tp": true, - "ddown_factor": 2.5315985008952455, - "ema_span_0": 859.8164633515628, - "ema_span_1": 778.88727913339, - "enabled": true, - "initial_eprice_ema_dist": 0.0029469027371997873, - "initial_qty_pct": 0.011229049152531517, - "markup_range": 0.004301705171347274, - "min_markup": 0.002964225037769906, - "n_close_orders": 5, - "rentry_pprice_dist": 0.047375817041585104, - "rentry_pprice_dist_wallet_exposure_weighting": 6.041978447464432, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/YFIUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/YFIUSDT.json deleted file mode 100644 index 9affdb4b5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/YFIUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1171.3951761180147, - "auto_unstuck_ema_dist": -0.03289594671909857, - "auto_unstuck_qty_pct": 0.03790654480684425, - "auto_unstuck_wallet_exposure_threshold": 0.4662098668657322, - "backwards_tp": true, - "ddown_factor": 0.6431516620733384, - "ema_span_0": 662.8750231341215, - "ema_span_1": 224.01205655366653, - "enabled": true, - "initial_eprice_ema_dist": -0.03972123621558579, - "initial_qty_pct": 0.011879224131437638, - "markup_range": 0.0004001047540495883, - "min_markup": 0.003715370275767813, - "n_close_orders": 8, - "rentry_pprice_dist": 0.024205606296240436, - "rentry_pprice_dist_wallet_exposure_weighting": 0.5472308706945394, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1368.8335638203498, - "auto_unstuck_ema_dist": -0.043282429756453925, - "auto_unstuck_qty_pct": 0.01779968936281008, - "auto_unstuck_wallet_exposure_threshold": 0.13522018932594757, - "backwards_tp": true, - "ddown_factor": 1.3591652041697346, - "ema_span_0": 313.4841439084159, - "ema_span_1": 123.9227286763952, - "enabled": true, - "initial_eprice_ema_dist": -0.06873064547897076, - "initial_qty_pct": 0.012025232844314459, - "markup_range": 0.002064937834169105, - "min_markup": 0.001, - "n_close_orders": 5, - "rentry_pprice_dist": 0.039782252819916285, - "rentry_pprice_dist_wallet_exposure_weighting": 1.2388799134029693, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ZECUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ZECUSDT.json deleted file mode 100644 index ec5da09e2..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ZECUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1140.9507296584932, - "auto_unstuck_ema_dist": -0.013410011874575455, - "auto_unstuck_qty_pct": 0.019463832426420004, - "auto_unstuck_wallet_exposure_threshold": 0.26583349248863536, - "backwards_tp": true, - "ddown_factor": 1.541542513685924, - "ema_span_0": 32.43039734132943, - "ema_span_1": 1366.1449877404782, - "enabled": true, - "initial_eprice_ema_dist": 0.003, - "initial_qty_pct": 0.013227515677854653, - "markup_range": 0.003910496568909102, - "min_markup": 0.00619876116357044, - "n_close_orders": 3, - "rentry_pprice_dist": 0.03871889129599721, - "rentry_pprice_dist_wallet_exposure_weighting": 2.000159658666231, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1102.7669604640046, - "auto_unstuck_ema_dist": 0.002786919034136599, - "auto_unstuck_qty_pct": 0.03140475838427743, - "auto_unstuck_wallet_exposure_threshold": 0.5574697807190042, - "backwards_tp": true, - "ddown_factor": 1.0498659445078125, - "ema_span_0": 768.3258268178528, - "ema_span_1": 986.7063133340359, - "enabled": true, - "initial_eprice_ema_dist": -0.0185462563652313, - "initial_qty_pct": 0.011031346865379632, - "markup_range": 0.006926949770685151, - "min_markup": 0.0015696813063142627, - "n_close_orders": 2, - "rentry_pprice_dist": 0.029295377220877463, - "rentry_pprice_dist_wallet_exposure_weighting": 3.2531454393293293, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ZENUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ZENUSDT.json deleted file mode 100644 index 91112acf1..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ZENUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 973.4987836800872, - "auto_unstuck_ema_dist": -0.039996782660062014, - "auto_unstuck_qty_pct": 0.03776242651222969, - "auto_unstuck_wallet_exposure_threshold": 0.561184882397621, - "backwards_tp": true, - "ddown_factor": 1.0462080118744306, - "ema_span_0": 554.0726084936207, - "ema_span_1": 663.6078651634883, - "enabled": true, - "initial_eprice_ema_dist": -0.08216231317588621, - "initial_qty_pct": 0.012360062283354933, - "markup_range": 0.007432668751650294, - "min_markup": 0.003795695333764403, - "n_close_orders": 5, - "rentry_pprice_dist": 0.04716048268809832, - "rentry_pprice_dist_wallet_exposure_weighting": 2.1025972177785266, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 797.3136358634457, - "auto_unstuck_ema_dist": -0.009699188095678192, - "auto_unstuck_qty_pct": 0.04932898607696818, - "auto_unstuck_wallet_exposure_threshold": 0.45494237294812, - "backwards_tp": true, - "ddown_factor": 0.8718593349459767, - "ema_span_0": 1367.876745719813, - "ema_span_1": 1218.9060965043882, - "enabled": true, - "initial_eprice_ema_dist": -0.004568437617455454, - "initial_qty_pct": 0.020289836039970147, - "markup_range": 0.0069483046163048914, - "min_markup": 0.009726363171258167, - "n_close_orders": 2, - "rentry_pprice_dist": 0.03988249013403799, - "rentry_pprice_dist_wallet_exposure_weighting": 8.083574632184927, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ZILUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ZILUSDT.json deleted file mode 100644 index 8717698ed..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ZILUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1021.5680093130127, - "auto_unstuck_ema_dist": -0.05002309747953149, - "auto_unstuck_qty_pct": 0.010013475520702858, - "auto_unstuck_wallet_exposure_threshold": 0.2971638377636908, - "backwards_tp": true, - "ddown_factor": 2.96132960081668, - "ema_span_0": 174.1594205033277, - "ema_span_1": 398.68010524874234, - "enabled": true, - "initial_eprice_ema_dist": 0.0029424684413642916, - "initial_qty_pct": 0.01682226643092758, - "markup_range": 0.0016008908253024247, - "min_markup": 0.0070160160868757565, - "n_close_orders": 9, - "rentry_pprice_dist": 0.038924382026411, - "rentry_pprice_dist_wallet_exposure_weighting": 4.231601053504647, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 1041.4423249676004, - "auto_unstuck_ema_dist": -0.09225219510315492, - "auto_unstuck_qty_pct": 0.013694695680005711, - "auto_unstuck_wallet_exposure_threshold": 0.47342549197966544, - "backwards_tp": true, - "ddown_factor": 2.0094606131893937, - "ema_span_0": 700.5312562884875, - "ema_span_1": 1303.501987709353, - "enabled": true, - "initial_eprice_ema_dist": -0.00948148612257923, - "initial_qty_pct": 0.019703112069996566, - "markup_range": 0.0014449822914877348, - "min_markup": 0.002196851213094553, - "n_close_orders": 11, - "rentry_pprice_dist": 0.04689218528355256, - "rentry_pprice_dist_wallet_exposure_weighting": 2.3405709108396504, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/live/single_symbol_optimizations/recursive_grid/ZRXUSDT.json b/configs/live/single_symbol_optimizations/recursive_grid/ZRXUSDT.json deleted file mode 100644 index b1197dff5..000000000 --- a/configs/live/single_symbol_optimizations/recursive_grid/ZRXUSDT.json +++ /dev/null @@ -1,36 +0,0 @@ -{"config_name": "recursive_grid_0days", - "logging_level": 0, - "long": {"auto_unstuck_delay_minutes": 1063.0048080085164, - "auto_unstuck_ema_dist": -0.0008476963710074387, - "auto_unstuck_qty_pct": 0.010863338991659335, - "auto_unstuck_wallet_exposure_threshold": 0.35886743910062746, - "backwards_tp": true, - "ddown_factor": 2.100977276332714, - "ema_span_0": 1385.631958690359, - "ema_span_1": 1400.6854124817219, - "enabled": true, - "initial_eprice_ema_dist": 0.002639128644605756, - "initial_qty_pct": 0.010861827041775648, - "markup_range": 0.001953016879765779, - "min_markup": 0.007684738962289304, - "n_close_orders": 6, - "rentry_pprice_dist": 0.02982861293753187, - "rentry_pprice_dist_wallet_exposure_weighting": 5.553882288714319, - "wallet_exposure_limit": 1}, - "short": {"auto_unstuck_delay_minutes": 915.5397371190959, - "auto_unstuck_ema_dist": -0.029248976509503633, - "auto_unstuck_qty_pct": 0.020638500082131365, - "auto_unstuck_wallet_exposure_threshold": 0.13386367450660033, - "backwards_tp": true, - "ddown_factor": 0.34952582364899787, - "ema_span_0": 1175.5306160921696, - "ema_span_1": 1041.7146791905452, - "enabled": true, - "initial_eprice_ema_dist": 0.00019015339879721406, - "initial_qty_pct": 0.01277461866650413, - "markup_range": 0.0053667385960039695, - "min_markup": 0.006929282235168913, - "n_close_orders": 3, - "rentry_pprice_dist": 0.027933268892318112, - "rentry_pprice_dist_wallet_exposure_weighting": 7.159517999931809, - "wallet_exposure_limit": 1}} \ No newline at end of file diff --git a/configs/optimize/multi.hjson b/configs/optimize/multi.hjson index 26ad7be68..496ab3a7b 100644 --- a/configs/optimize/multi.hjson +++ b/configs/optimize/multi.hjson @@ -45,7 +45,7 @@ long_ddown_factor: [0.1, 3.0] long_ema_span_0: [400.0, 1440.0] long_ema_span_1: [400.0, 1440.0] - long_initial_eprice_ema_dist: [-0.1, 0.0] + long_initial_eprice_ema_dist: [-0.1, 0.003] long_initial_qty_pct: [0.01, 0.02] long_markup_range: [0.0, 0.01] long_min_markup: [0.001, 0.01] @@ -56,7 +56,7 @@ short_ddown_factor: [0.1, 3.0] short_ema_span_0: [400.0, 1440.0] short_ema_span_1: [400.0, 1440.0] - short_initial_eprice_ema_dist: [-0.1, 0.0] + short_initial_eprice_ema_dist: [-0.1, 0.003] short_initial_qty_pct: [0.01, 0.02] short_markup_range: [0.0, 0.01] short_min_markup: [0.001, 0.01] diff --git a/configs/template.json b/configs/template.json new file mode 100644 index 000000000..1e01fe540 --- /dev/null +++ b/configs/template.json @@ -0,0 +1,124 @@ +{"backtest": {"base_dir": "backtests", + "end_date": "now", + "exchange": "binance", + "start_date": "2021-05-01", + "starting_balance": 100000.0}, + "bot": {"long": {"close_grid_markup_range": 0.0015976, + "close_grid_min_markup": 0.012839, + "close_grid_qty_pct": 0.8195, + "close_trailing_grid_ratio": 0.042114, + "close_trailing_qty_pct": 1, + "close_trailing_retracement_pct": 0.066097, + "close_trailing_threshold_pct": 0.06726, + "ema_span_0": 469.02, + "ema_span_1": 1118.9, + "entry_grid_double_down_factor": 2.3738, + "entry_grid_spacing_pct": 0.052372, + "entry_grid_spacing_weight": 0.17715, + "entry_initial_ema_dist": -0.0060574, + "entry_initial_qty_pct": 0.019955, + "entry_trailing_grid_ratio": -0.28053, + "entry_trailing_retracement_pct": 0.0024762, + "entry_trailing_threshold_pct": 0.014956, + "n_positions": 9.6662, + "total_wallet_exposure_limit": 0.8536, + "unstuck_close_pct": 0.049593, + "unstuck_ema_dist": -0.051669, + "unstuck_loss_allowance_pct": 0.044329, + "unstuck_threshold": 0.46953}, + "short": {"close_grid_markup_range": 0.028266, + "close_grid_min_markup": 0.013899, + "close_grid_qty_pct": 0.63174, + "close_trailing_grid_ratio": 0.93658, + "close_trailing_qty_pct": 1, + "close_trailing_retracement_pct": 0.098179, + "close_trailing_threshold_pct": -0.059383, + "ema_span_0": 794.32, + "ema_span_1": 1176.7, + "entry_grid_double_down_factor": 2.1256, + "entry_grid_spacing_pct": 0.072906, + "entry_grid_spacing_weight": 0.98867, + "entry_initial_ema_dist": -0.060333, + "entry_initial_qty_pct": 0.066426, + "entry_trailing_grid_ratio": -0.026647, + "entry_trailing_retracement_pct": 0.016626, + "entry_trailing_threshold_pct": 0.052728, + "n_positions": 0.0, + "total_wallet_exposure_limit": 0.0, + "unstuck_close_pct": 0.052992, + "unstuck_ema_dist": -0.0465, + "unstuck_loss_allowance_pct": 0.045415, + "unstuck_threshold": 0.92228}}, + "live": {"approved_coins": [], + "auto_gs": true, + "coin_flags": {}, + "execution_delay_seconds": 2.0, + "filter_by_min_effective_cost": true, + "forced_mode_long": "", + "forced_mode_short": "", + "ignored_coins": ["COIN1", "COIN2"], + "leverage": 10.0, + "max_n_cancellations_per_batch": 5, + "max_n_creations_per_batch": 3, + "minimum_coin_age_days": 30.0, + "noisiness_rolling_mean_window_size": 60, + "pnls_max_lookback_days": 30.0, + "price_distance_threshold": 0.002, + "relative_volume_filter_clip_pct": 0.5, + "time_in_force": "good_till_cancelled", + "user": "bybit_01"}, + "optimize": {"bounds": {"long_close_grid_markup_range": [0.0, 0.03], + "long_close_grid_min_markup": [0.001, 0.03], + "long_close_grid_qty_pct": [0.05, 1.0], + "long_close_trailing_grid_ratio": [-1.0, 1.0], + "long_close_trailing_qty_pct": [0.05, 1.0], + "long_close_trailing_retracement_pct": [0.0, 0.1], + "long_close_trailing_threshold_pct": [-0.1, 0.1], + "long_ema_span_0": [200.0, 1440.0], + "long_ema_span_1": [200.0, 1440.0], + "long_entry_grid_double_down_factor": [0.1, 3.0], + "long_entry_grid_spacing_pct": [0.001, 0.12], + "long_entry_grid_spacing_weight": [0.0, 10.0], + "long_entry_initial_ema_dist": [-0.1, 0.003], + "long_entry_initial_qty_pct": [0.005, 0.1], + "long_entry_trailing_grid_ratio": [-1.0, 1.0], + "long_entry_trailing_retracement_pct": [0.0, 0.1], + "long_entry_trailing_threshold_pct": [-0.1, 0.1], + "long_n_positions": [1.0, 20.0], + "long_total_wallet_exposure_limit": [0.0, 5.0], + "long_unstuck_close_pct": [0.001, 0.1], + "long_unstuck_ema_dist": [-0.1, 0.01], + "long_unstuck_loss_allowance_pct": [0.0, 0.05], + "long_unstuck_threshold": [0.4, 0.95], + "short_close_grid_markup_range": [0.0, 0.03], + "short_close_grid_min_markup": [0.001, 0.03], + "short_close_grid_qty_pct": [0.05, 1.0], + "short_close_trailing_grid_ratio": [-1.0, 1.0], + "short_close_trailing_qty_pct": [0.05, 1.0], + "short_close_trailing_retracement_pct": [0.0, 0.1], + "short_close_trailing_threshold_pct": [-0.1, 0.1], + "short_ema_span_0": [200.0, 1440.0], + "short_ema_span_1": [200.0, 1440.0], + "short_entry_grid_double_down_factor": [0.1, 3.0], + "short_entry_grid_spacing_pct": [0.001, 0.12], + "short_entry_grid_spacing_weight": [0.0, 10.0], + "short_entry_initial_ema_dist": [-0.1, 0.003], + "short_entry_initial_qty_pct": [0.005, 0.1], + "short_entry_trailing_grid_ratio": [-1.0, 1.0], + "short_entry_trailing_retracement_pct": [0.0, 0.1], + "short_entry_trailing_threshold_pct": [-0.1, 0.1], + "short_n_positions": [1.0, 20.0], + "short_total_wallet_exposure_limit": [0.0, 5.0], + "short_unstuck_close_pct": [0.001, 0.1], + "short_unstuck_ema_dist": [-0.1, 0.01], + "short_unstuck_loss_allowance_pct": [0.0, 0.05], + "short_unstuck_threshold": [0.4, 0.95]}, + "crossover_probability": 0.7, + "iters": 30000, + "limits": {"lower_bound_drawdown_worst": 0.25, + "lower_bound_equity_balance_diff_mean": 0.01, + "lower_bound_loss_profit_ratio": 0.6}, + "mutation_probability": 0.2, + "n_cpus": 5, + "population_size": 500, + "scoring": ["mdg", "sharpe_ratio"]}} \ No newline at end of file diff --git a/docs/auto_profit_transfer.md b/docs/auto_profit_transfer.md deleted file mode 100644 index 2f224ed63..000000000 --- a/docs/auto_profit_transfer.md +++ /dev/null @@ -1,14 +0,0 @@ -# Automatic Profit Transfer - -Only Binance and Bybit USDT futures -> spot transfer supported at this time. - -```shell -python3 auto_profit_transfer.py {user_name} -``` -Optional kwarg: `-p/--percentage float`: Set percentage of profit to transfer (per uno, i.e. 0.3==30%). Default is 0.5. - -If transfer is successful, log of IDs of transferred trades is stored in `logs/automatic_profit_transfer_log_{user}.json`. -Delete this file to start from scratch. -It will look max 24h into the past for fills with realized pnl to transfer. -Execution interval is set to 1h. - diff --git a/docs/auto_unstuck.md b/docs/auto_unstuck.md deleted file mode 100644 index a18ede076..000000000 --- a/docs/auto_unstuck.md +++ /dev/null @@ -1,66 +0,0 @@ -# Auto Unstuck - -Passivbot may be configured to realize losses. Applies to recursive and neat grid modes. - -## Parameters - -- `auto_unstuck_wallet_exposure_threshold` -Ratio of exposure to exposure_limit at which auto unstuck (AU) kicks in. -`if wallet_exposure / wallet_exposure_limit > (1 - auto_unstuck_wallet_exposure_threshold): enable AU` -E.g. -`auto_unstuck_wallet_exposure_threshold == 0.0`: auto unstuck is disabled. -`auto_unstuck_wallet_exposure_threshold == 0.1`: auto unstuck kicks in when exposure is 10% away from exposure_limit. -`auto_unstuck_wallet_exposure_threshold == 0.9`: auto unstuck kicks in when exposure is 90% away from exposure_limit. -`auto_unstuck_wallet_exposure_threshold == 1.0`: auto unstuck is always enabled. - -- `auto_unstuck_qty_pct` -How much of max pos size to close. -`close_cost = balance * wallet_exposure_limit * auto_unstuck_qty_pct` -For example, if balance is $1000, `wallet_exposure_limit=0.3` and `auto_unstuck_qty_pct=0.02`: -`close_cost == $1000 * 0.3 * 0.02 == $6`. - -- `ema_span_0`, `ema_span_1` -Bot uses three emas of spans: `[span0, (span0 * span1)**0.5, span1]`, given in minutes. - -- `auto_unstuck_ema_dist` -Close price distance from EMA band. -Lower auto unstuck EMA band is `min(ema0, ema1, ema2) * (1 - auto_unstuck_ema_dist)`. -Upper auto unstuck EMA band is `max(ema0, ema1, ema2) * (1 + auto_unstuck_ema_dist)`. - -- `auto_unstuck_delay_minutes` -Timer for unstuck closes, given in minutes. -`if now - prev_AU_close_ts > auto_unstuck_delay: enable AU` - -## Examples -``` -auto_unstuck_wallet_exposure_threshold = 0.0 -auto_unstuck_qty_pct = 0.0 -auto_unstuck_ema_dist = 0.0 -auto_unstuck_delay_minutes = 0.0 -``` -Auto unstuck is disabled. - -``` -auto_unstuck_wallet_exposure_threshold = 0.5 -auto_unstuck_qty_pct = 0.01 -auto_unstuck_ema_dist = 0.0 -auto_unstuck_delay_minutes = 120.0 -``` -If bot is 50% or more exposed, close 1% of max pos size every two hours at EMA band. - -``` -auto_unstuck_wallet_exposure_threshold = 1.0 -auto_unstuck_qty_pct = 0.1 -auto_unstuck_ema_dist = -1.0 -auto_unstuck_delay_minutes = 20.0 -``` -If there is any position, close 10% of max pos size every 20 minutes at current market price. - -``` -auto_unstuck_wallet_exposure_threshold = 0.2 -auto_unstuck_qty_pct = 0.03 -auto_unstuck_ema_dist = 0.003 -auto_unstuck_delay_minutes = 720.0 -``` -If bot is 20% or more exposed, close 3% of max pos size every six hours 0.3% away from EMA band. - diff --git a/docs/backtesting.md b/docs/backtesting.md index 71bac3ec8..080771069 100644 --- a/docs/backtesting.md +++ b/docs/backtesting.md @@ -1,112 +1,3 @@ # Backtesting -If you want to see how a configuration will perform, you can run it through a backtest that is provided by Passivbot. -While backtesting will not give you a guarantee on the performance for the future, it does give you valuable insight -into how the bot would have performed in the past. - -When you run the backtester, you should receive some output as it begins downloading the necessary price -data from the exchange (using the API keys you provided earlier). The price data is cached on the machine -and can be re-used between backtests and optimize sessions. This also means if you interrupt or close -the process, it will continue downloading price data where it left off. -The bot comes packaged with a downloader that allows the rapid retrieval of price data based upon -provided dates, and works independently of the backtesting unit. - -!!! Warning - The bot runs backtests on trade data, making it as accurate as possible in backtesting. Be aware that other factors - like latency and exchange connection issues can also play a role when you run a bot live. - -## Running a backtest - -To execute a backtest, you can execute the following command from the root folder: - -```shell -python3 backtest.py path/to/config_to_test.json -``` - -Running this command without any arguments other than path to live_config will make the backtester use the details provided in the `configs/backtest/default.hjson` file. -When you first checkout the project, you will need to setup your exchange credentials in the `api-keys.json` (please read [Running live](live.md) for more details). -The backtest needs a connection to the exchange to be able to download the trade data required for the backtest. - -In the `configs/backtest/default.hjson`, the account name (specified in `api-keys.json`) needs to be provided. After updating -the `configs/backtest/default.hjson` with your account name, you should be able to successfully run a backtest. - -Apart from the account name, there are a number of other parameters you can specify in the backtest configuration file: - -* the exchange -* the account name (must match one specified in `api-keys.json`) -* the symbol(s) to backtest on -* the latency to simulate during backtesting -* the starting balance -* the start and end date for the backtest - -### Command-line arguments - -Other than modifying the `default.hjson` file, it is also possible to specify a number of configuration options to use via the commandline. -One or more arguments are provided to the backtester using the following syntax on the command line: - -```shell -python3 backtest.py -``` - -The following options can be provided to the backtester. Note that any argument provided will override a value specified in the backtest configuration file. - -| Key | Description -| --- | ----------- -| --nojit | Disables the use of numba's just in time compiler during backtests -| -b / --backtest_config | The backtest config hjson file to use
**Default value:** configs/backtest/default.hjson -| -d / --download-only | Instructs the backtest to only download the data, but not dump the ticks caches to disk -| -s / --symbol | The symbol(s) to run the backtest on, separated by a `,` -| -u / --user | The name of the account used to download trade data -| --start_date | The starting date of the backtest
**Syntax:** YYYY-MM-DD -| --end_date | The end date of the backtest
**Syntax:** YYYY-MM-DD -| -bd / --base_dir | the base directory to place the output files in
**Default:** `backtests` -| -oh / --ohlcv | use 1m ohlcv instead of 1s tick samples - -## Backtest results - -When the backtest is completed, the results will be shown on the console. This includes things like average daily gain, -maximum time that Passivbot was stuck etc. Apart from showing these results in the terminal, these results are -also stored in `backtests/{exchange}/{symbol}/plots/{datetime}/backtest_result.txt`. This folder will also -include the actual `live_config.json` file that was used for the plot, and several graphical plots. One of these -for example is the `balance_and_equity_sampled_{long/short}.png`, which shows how the balance and equity evolved during the course of -the backtest. - -The file `balance_and_equity.png` will show how the balance and equity progressed during the period being backtested. The -blue line in the graph represents the balance, and the orange line represents the equity. - -Besides this file, `whole_backtest_{long/short}.png` and a number of `backtest_XofY.png` are also created. -The latter represent the entire backtest period, but are split up into separate files for easier inspection and zooming. - -On these plots the blue dashed line is the long position price and the red dashed line is the short position price. -Blue dots are buys (long entries or short closes) and red dots are sells (short entries or long closes). -Red Xs are auto unstuck sells (long closes or short entries), blue Xs are auto unstuck buys (long entries or short closes) -and in static grid mode the secondary entry is a larger green dot. - -The `auto_unstuck_bands_{long/short}.png` plots show the price thresholds at which auto unstucking orders would fill. -`initial_entry_band_{long/short}.png` shows the EMA limited initial entries. - - -## Abbreviations used for some backtest metrics: - -- adg_w_per_exp: average daily gain, recent data weighted heavier - -- adg_per_exp: average daily gain for whole backtest - -- exp_rts_mean: exposure ratios mean: average exposure during backtest - -- hrs_stuck_max: how many hours in a stretch there were no fills - -- pa_dist_mean: price action distance mean: the average distance between position price and market price - -- pa_dist_std: price action distance std: the standard deviation of the distance between position price and market price - -- loss_profit_rt: loss to profit ratio: `abs(sum(losses)) / sum(profit)` - -- eqbal_rt_10_worst_mean: equity to balance ratio, mean of 10 worst from hourly samples - -- eqbal_rt_std: standard deviation of equity to balance ratio - -- n_days: backtest number of days - -- score: used internally by optimizer - +Coming soon... \ No newline at end of file diff --git a/docs/configuration.md b/docs/configuration.md index 39489bea3..a79dd7b2a 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1,72 +1,165 @@ -# Configuration - -In order to configure Passivbot, you will need to provide a json file when starting the bot. -These config files are typically stored in the `configs/live`. - -## Configuration options - -Long and short positions are supported and have each the same parameters. - -**Static grid mode** -| Parameter | Description -| -------------------------- | ------------- | -| `enabled` | Set to false and bot continue as normal, but not make new positions once previous positions have been closed. -| `wallet_exposure_limit` | Position cost to balance ratio limit. -| `eprice_exp_base` | Set to 1.0 and each node in the entry grid will be equally spaced. Any value > 1 and nodes will have wider spacing deeper in the grid. -| `eprice_pprice_diff` | Per uno difference between entry price and resulting pos price. Higher values means lower qtys per node -| `grid_span` | Per uno span from initial entry to last node in primary grid. -| `initial_qty_pct` | Initial entry qty = `balance_in_terms_of_contracts * wallet_exposure_limit * initial_qty_pct` -| `min_markup` | Distance from pos price to first Take-Profit order -| `markup_range` | Distance from first Take-Profit order to last Take-Profit order. -| `max_n_entry_orders` | Max number of nodes in entry grid. -| `n_close_orders` | Max number of nodes in Take-Profit grid. -| `secondary_pprice_diff` | Distance from pos price to secondary entry price. -| `secondary_allocation` | Allocation of wallet_exposure_limit for secondary entry. E.g. 0.4 means 40% to secondary, 60% to primary. - -Secondary entry is independent of primary entry grid, intended to catch abnormally deep dips. - -Here is a diagram summarizing the parameters (without EMA): - -![Grid Parameters](images/passivbot_grid_parameters.jpeg) -[Full image](images/passivbot_grid_parameters.jpeg) - -**Recursive grid mode** - -See `docs/passivbot_modes.md` - - -**EMAs** - -Since Passivbot 5.3, EMA are introduced to allow: -* limit initial entries at peak of pump/dump -* auto unstuck position -The mechanism is described in this chapter : (https://github.com/enarjord/passivbot/blob/master/docs/auto_unstuck.md) - - -**Backwards TP** - -Since passivbot v5.6 parameter "backwards_tp: true/false" is added. - -The backwards tp mode works like this: - -(considering long pos, short pos is same but flipped) - -1) get close prices evenly spaced `linspace(pprice * (1 + min_markup), pprice * (1 + min_markup + markup_range), n_close_orders)` e.g. pprice=100, min_markup=0.002, markup_range=0.018, n_close_orders=10 -> `[100.2, 100.4, 100.6, 100.8, 101.0, 101.2, 101.4, 101.6, 101.8, 102.0]` - -2) filter out prices lower than current lowest ask - -3) calc full psize, i.e. psize when wallet_exposure==wallet_exposure_limit: `full_psize = (wallet_exposure_limit * balance) / pprice` (linear) - -4) calc qty per close: `qty_per_close = max(min_qty, round_up(full_psize / len(close_prices), qty_step))` - -5) for each TP node backwards, add qty until psize is spent - -Say full_psize=10 and actual psize is 3. qty per close is 10 / 10 == 1. -Given TP prices `[100.2, 100.4, 100.6, 100.8, 101.0, 101.2, 101.4, 101.6, 101.8, 102.0]`, -fill them up starting backwards: `[1@102.0, 1@101.8, 1@101.6]`, -break when sum(qtys) == psize - -Say full_psize=20 and actual psize is 15. qty per close is 20 / 10 == 2. -Given TP prices `[100.2, 100.4, 100.6, 100.8, 101.0, 101.2, 101.4, 101.6, 101.8, 102.0]`, -fill them up starting backwards: `[2@102.0, 2@101.8, 2@101.6, 2@101.4, 2@101.2, 2@101.0, 2@100.8, 1@100.6]`, -break when sum(qtys) == psize +# Passivbot Parameters Explanation + +Here follows an overview of the parameters found in `config/template.json` + +## Backtest Settings +- `base_dir`: location to save backtest results +- `end_date`: end date of backtest, e.g. 2024-06-23. Set to 'now' to use today's date as end date +- `exchange`: exchange from which to fetch 1m ohlcv data. Default is Binance +- `start_date`: start date of backtest +- `starting_balance`: starting balance in USD at beginning of backtest +- `symbols`: coins to backtest. If left empty, will use all exchange's coins. + +## Bot Settings +### General Parameters for Long and Short +- `ema_span_0`, `ema_span_1`: + - spans are given in minutes + - `next_EMA = prev_EMA * (1 - alpha) + new_val * alpha` + - where `alpha = 2 / (span + 1)` + - one more EMA span is added in between span_0 and span_1: + - `EMA_spans = [ema_span_0, (ema_span_0 * ema_span_1)**0.5, ema_span_1]` + - these three EMAs are used to make an upper and a lower EMA band: + - `ema_band_lower = min(emas)` + - `ema_band_upper = max(emas)` + - which are used for initial entries and auto unstuck closes +- `n_positions`: max number of positions to open. Set to zero to disable long/short +- `total_wallet_exposure_limit`: maximum exposure allowed. + - E.g. total_wallet_exposure_limit = 0.75 means 75% of (unleveraged) wallet balance is used. + - E.g. total_wallet_exposure_limit = 1.6 means 160% of (unleveraged) wallet balance is used. + - Each position is given equal share of total exposure limit, i.e. `wallet_exposure_limit = total_wallet_exposure_limit / n_positions`. + - See more: docs/risk_management.md + +### Grid Entry Parameters +Passivbot may be configured to make a grid of entry orders, the prices and quantities of which are determined by the following parameters: +- `entry_grid_double_down_factor`: + - quantity of next grid entry is position size times double down factor. E.g. if position size is 1.4 and double_down_factor is 0.9, then next entry quantity is `1.4 * 0.9 == 1.26`. + - also applies to trailing entries. +- `entry_grid_spacing_pct`, `entry_grid_spacing_weight`: + - grid re-entry prices are determined as follows: + - `next_reentry_price_long = pos_price * (1 - entry_grid_spacing_pct * modifier)` + - `next_reentry_price_short = pos_price * (1 + entry_grid_spacing_pct * modifier)` + - where `modifier = (1 + ratio * entry_grid_spacing_weight)` + - and where `ratio = wallet_exposure / wallet_exposure_limit` +- `entry_initial_ema_dist`: + - offset from lower/upper ema band. + - long_initial_entry/short_unstuck_close prices are lower ema band minus offset + - short_initial_entry/long_unstuck_close prices are upper ema band plus offset + - See ema_span_0/ema_span_1 +- `entry_initial_qty_pct`: + - `initial_entry_cost = balance * wallet_exposure_limit * initial_qty_pct` + +### Trailing Parameters + +The same logic applies to both trailing entries and trailing closes. +- `trailing_grid_ratio`: + - set trailing and grid allocations. + - if `trailing_grid_ratio==0.0`, grid orders only. + - if `trailing_grid_ratio==1.0 or trailing_grid_ratio==-1.0`, trailing orders only. + - if `trailing_grid_ratio>0.0`, trailing orders first, then grid orders. + - if `trailing_grid_ratio<0.0`, grid orders first, then trailing orders. + - e.g. `trailing_grid_ratio = 0.3`: trailing orders until position is 30% full, then grid orders for the rest. + - e.g. `trailing_grid_ratio = -0.9`: grid orders until position is (1 - 0.9) == 10% full, then trailing orders for the rest. + - e.g. `trailing_grid_ratio = -0.12`: grid orders until position is (1 - 0.12) == 88% full, then trailing orders for the rest. +- `trailing_retracement_pct`, `trailing_threshold_pct`: + - there are two conditions to trigger a trailing order: 1) threshold and 2) retracement. + - if `trailing_threshold_pct <= 0.0`, threshold condition is always triggered. + - otherwise, the logic is as follows, considering long positions: + - `if highest price since position open > position price * (1 + trailing_threshold_pct)`: 1st condition is met + - and `if lowest price since highest price < highest price since position open * (1 - trailing_retracement_pct)`: 2nd condition is met. Make order. + +### Grid Close Parameters +- `close_grid_markup_range`, `close_grid_min_markup`, `close_grid_qty_pct`: + - Take Profit (TP) prices are spread out from + - `pos_price * (1 + min_markup)` to `pos_price * (1 + min_markup + markup_range)` for long + - `pos_price * (1 - min_markup)` to `pos_price * (1 - min_markup - markup_range)` for short + - e.g. if `pos_price==100`, `min_markup=0.01`, `markup_range=0.02` and `close_grid_qty_pct=0.2`, TP prices are [101, 101.5, 102, 102.5, 103] + - qty per order is `full pos size * close_grid_qty_pct` + - the TP grid is built from the top down: + - first TP at 103 up to 20% of full pos size, + - next TP at 102.5 from 20% to 40% of full pos size, + - next TP at 102.0 from 40% to 60% of full pos size, + - etc. + +### Trailing Close Parameters + +- `close_trailing_grid_ratio`: see Trailing Parameters above +- `close_trailing_qty_pct`: close qty is `full pos size * close_trailing_qty_pct` +- `close_trailing_retracement_pct`: see Trailing Parameters above +- `close_trailing_threshold_pct`: see Trailing Parameters above + +### Unstuck Parameters + +If a position is stuck, bot will use profits made on other positions to realize losses for the stuck position. If multiple positions are stuck, the stuck position whose price action distance is the lowest is selected for unstucking. + +- `unstuck_close_pct`: + - percentage of full pos size to close for each unstucking order +- `unstuck_ema_dist`: + - distance from EMA band to place unstucking order: + - `long_unstuck_close_price = upper_EMA_band * (1 + unstuck_ema_dist)` + - `short_unstuck_close_price = lower_EMA_band * (1 - unstuck_ema_dist)` +- `unstuck_loss_allowance_pct`: + - percentage below past peak balance to allow losses. + - e.g. if past peak balance was $10,000 and `unstuck_loss_allowance_pct = 0.02`, the bot will stop taking losses when balance reaches `$10,000 * (1 - 0.02) == $9,800` +- `unstuck_threshold`: + - if a position is bigger than a threshold, consider it stuck and activate unstucking. + - `if wallet_exposure / wallet_exposure_limit > unstuck_threshold: unstucking enabled` + - e.g. if a position size is $500 and max allowed position size is $1000, then position is 50% full. If unstuck_threshold==0.45, then unstuck the position until its size is $450. + +## Live Trading Settings +- `approved_coins`: list of coins approved for trading. If empty, all coins are approved. +- `auto_gs`: automatically enable graceful stop for positions on disapproved coins + - graceful stop means the bot will continue trading as normal, but not open a new position after current position is fully closed. +- `coin_flags`: + - Specify flags for individual coins, overriding values from bot config. + - E.g. `coin_flags: {"ETH": "-sm n -lm gs", "XRP": "-lm p -lc path/to/other_config.json"}` will force short mode to normal, and long mode to graceful stop for ETH; will set long mode to panic and use other config for XRP. + - Flags: + - `-lm` or `-sm` long or short mode. Choices: [n (normal), m (manual), gs (graceful_stop), p (panic), t (take_profit_only)]. + - normal mode: passivbot manages the position as normal + - manual mode: passivbot ignores the position + - graceful stop: if there is a position, passivbot will manage it, otherwise passivbot will not make new positions + - take profit only: passivbot will only manage closing orders + - `-lw` or `-sw` long or short wallet exposure limit. + - `-lev` leverage. + - `-lc` path to live config. Load most of the bot parameters from another config. +- `execution_delay_seconds`: wait x seconds after executing to exchange +- `filter_by_min_effective_cost`: if true, will disallow coins where balance * WE_limit * initial_qty_pct < min_effective_cost + - e.g. if exchange's effective min cost for a coin is $5, but bot wants to make an order of $2, disallow that coin. +- `forced_mode_long`, `forced_mode_short`: force all long positions to a given mode + - Choices: [n (normal), m (manual), gs (graceful_stop), p (panic), t (take_profit_only)]. +- `ignored_coins`: list of coins bot will not make positions on. If there are positions on that coin, turn on graceful stop +- `leverage`: leverage set on exchange. Default 10. +- `max_n_cancellations_per_batch`: will cancel n open orders per execution +- `max_n_creations_per_batch`: will create n new orders per execution +- `minimum_market_age_days`: disallow coins younger than a given number of days +- `noisiness_rolling_mean_window_size`: number of minutes to look into the past to compute noisiness + - noisiness is normalized relative range of 1m ohlcvs: `mean((high - low) / close)` + - in forager mode, bot will select coins with highest noisiness for opening positions +- `pnls_max_lookback_days`: how far into the past to fetch pnl history +- `price_distance_threshold`: minimum distance to current price action required for EMA based limit orders +- `relative_volume_filter_clip_pct`: Volume filter: disapprove the lowest relative volume coins. Default 0.1 == 10%. Set to zero to allow all. +- `time_in_force`: default is good-till-cancelled +- `user`: fetch API key/secret from api-keys.json + +## Optimization Settings +### Bounds + +When optimizing, parameter values are within the lower and upper bounds. + +### Other Optimization Parameters +- `crossover_probability`: +- `iters`: number of backtests per optimize session +- `mutation_probability`: +- `n_cpus`: number of CPU cores utilized in parallel +- `population_size`: size of population for genetic optimization algorithm +- `scoring`: + - the optimizer uses two objectives and finds the pareto front, + - finally choosing the optimal candidate based on lowest euclidian distance to ideal point. + - default values are median daily gain and sharpe ratio + +### Optimization Limits + +The optimizer will penalize backtests whose metrics exceed the given values. + +- `lower_bound_drawdown_worst`: lowest drawdown during backtest +- `lower_bound_equity_balance_diff_mean`: mean of the difference between equity and balance +- `lower_bound_loss_profit_ratio`: `abs(sum(losses)) / sum(profit)` diff --git a/docs/developers.md b/docs/developers.md deleted file mode 100644 index 2fa0d61e9..000000000 --- a/docs/developers.md +++ /dev/null @@ -1,40 +0,0 @@ -# Developers guide - -If you're a developer and would like to contribute to Passivbot development, welcome! -There's a lot of active development going on, but there's always more to do and more great ideas to -implement. If you want to get in touch on ways you can contribute, or have a great idea and want to discuss -before starting to implement it, feel free to get in touch on [this Discord server](https://discord.gg/QAF2H2UmzZ). - -## Pull requests - -To add new functionality, you will need to create a fork on Github. After doing so, you can make the required changes -on a new feature branch. After pushing these to your fork, you can create a pull request to have the changes merged -into the original repository. - -When you create a pull request, make sure you think about the following things: - -* Are any changes needed to the documentation implemented? -* Is the functionality properly tested by yourself before offering it up for review? -* Did you set the right target branch on the pull request? -* If possible, write a short description of the change(s) offered, so it's easier for reviewers to understand - -After creating your pull request, it will either be merged, or you will receive feedback on where to improve. Be -assured that any efforts are most appreciated, even if you receive feedback on things to improve! - -## Pledges - -If there is specific functionality that users would like to receive, they can pledge a bounty to whoever implements -this functionality properly in Passivbot. If you want to create a pledge, or get an overview of the current pledges -that have been made, join [this Discord server](https://discord.gg/QAF2H2UmzZ). - -In order to create a pledge, just declare your pledge formally in the appropriate Discord channel, for example something like: - -``` -############ - -I hereby pledge a bounty of $X to be paid to whoever implements functionality Y. {optional description of the requested functionality} - -May my reputation be tarnished in the eyes of the members of this here discord group should I not pay the promised $50 to the one who fulfils this bounty - -############ -``` \ No newline at end of file diff --git a/docs/forager.md b/docs/forager.md deleted file mode 100644 index 91bb5f2fd..000000000 --- a/docs/forager.md +++ /dev/null @@ -1,66 +0,0 @@ -# Forager - -Moves passivbots around to wherever volatility is highest. - -## How it works - -The script does the following: -- fetch min costs for all symbols -- filter symbols by min cost -- get ohlcvs for all approved symbols -- filter symbols by volume, unilateralness, noisiness -- get the account's currently active bots -- generate and dump yaml file with new bots and old bots with graceful-stop -- sleep for 60 secs to avoid API rate limiting due to many calls to fetch ohlcvs -- kill previous tmux session -- use tmuxp to load new tmux session -- sleep for one hour -- repeat - -The script is also useful for starting a static set of bots, similar to the manager (see docs/manager.md). -Add kwarg `-n/--noloop` to stop the forager script after one iteration. - - -## Usage -```shell -python3 forager.py configs/forager/config_file.hjson -``` - -## Requirements -In addition to requirements.txt, tmux and tmuxp are needed. Install with `apt install tmuxp` - -## Config - -A template example config is found in configs/forager/example_config.hjson - -| Parameter | Description | -| ----------------------------------| ------------- | -| `user` | User as defined in api-keys.json. -| `twe_long` | Total Wallet Exposure Long. WE_limit per bot is TWE / n_bots. -| `twe_short` | Total Wallet Exposure Short. WE_limit per bot is TWE / n_bots. -| `n_longs` | Number of long bots. -| `n_shorts` | Number of short bots. -| `max_min_cost` | Exclude symbols whose min_cost > max_min_cost. -| `n_ohlcvs` | Number of ohlcvs to fetch (100 candles of 15m is 25 hours). -| `ohlcv_interval` | Default is 15m. -| `leverage` | Set leverage. -| `price_distance_threshold` | Don't make limit orders whose price is further away from market price than price_distance_threshold. -| `volume_clip_threshold` | Include x% of the highest volume coins. -| `unilateralness_clip_threshold` | Include x% of symbols with lowest unilateralness. -| `max_n_panes` | Max number of panes per tmux window. -| `default_config_path` | Default config to use. -| `symbols_to_ignore` | Don't create bots for these symbols. -| `approved_symbols_long` | If empty, allow all symbols for long. -| `approved_symbols_short` | If empty, allow all symbols for short. -| `live_configs_dir_{long/short}` | Search this directory for live configs whose filename contains symbol name. Leave as empty string to disable. If multiple matches, the first alphabetically sorted is selected. -| `live_configs_map` | Live configs to use with particular symbols. -| `live_configs_map_{long/short}` | Overrides symbols from live_configs_map and live_configs_dir. - -Configs are chosen in the following priority: -- `live_configs_map_{long/short}`, -- `live_configs_map` -- `live_configs_dir_{long/short}` -- `default_config_path` - - - diff --git a/docs/glossary.md b/docs/glossary.md deleted file mode 100644 index 1cb5e3413..000000000 --- a/docs/glossary.md +++ /dev/null @@ -1,21 +0,0 @@ -# Passivbot Glossary - -Here follows a glossary for terms relevant to Passivbot (WIP) - - -- position: holding x contracts at price y. Long or short. Passivbot may hold both long and short position in the same coin at the same time. For example: A long position of 0.002 BTCUSDT @ 41,000 is equivalent to buying 0.002 BTC at price $41,000 per bitcoin. -- long position: equivalent to using USDT to buy and hold a coin. The long position profits when price goes up, and loses when price goes down. -- short position: equivalent to borrowing the coin, with USDT as collateral, and selling the coin. The short position profits when price goes down, and loses when price goes up. -- wallet exposure: the ratio of position size to account balance. For example: 0.2 ETHUSDT @ 2,250 with a wallet balance of $1,200, means a wallet exposure of (0.2 * $2,250) / $1,200 == $450 / $1,200 == 0.375 or 37.5%. Wallet exposure may be greater than 1.0 or 100%, by using leverage. -- wallet exposure limit: the highest wallet exposure the bot will allow for a position. -- total wallet exposure limit: the sum of the wallet exposure limits for each coin being traded. -- initial_qty_pct (initial quantity percent): the percentage of a bot's allocated balance to be used for the initial entry. Typically in the 0.5-2% range. If an exchange's minimum cost per order is greater than balance * WE_limit * initial_qty_pct, the bot will not work properly. -- adg: average daily gain. E.g. adg = 0.0025 == average 0.25% gain daily. -- sharpe ratio: mean of daily gains divided by standard deviation of daily gains. -- drawdown: distance between equity peak to equity trough. E.g. if equity peak was $1000 and equity dropped to $700, then drawdown was `(1000 - 700) / 1000 == 0.3 == 30%`. -- ddown_factor (double down factor): quantity of next grid entry is position size times double down factor. E.g. if position size is 1.4 and down_factor is 0.9, then next entry quantity is 1.4 * 0.9 == 1.26. -- min_markup (minimum markup): the distance from position price to lowest take-profit price. E.g. long position price is 30.0 and min_markup is 0.005, then lowest take-profit price is `30 * (1 + 0.005) == 30.15` -- markup_range: passivbot makes a grid of TP orders from position_price + min_markup to position_price + min_markup + markup_range. E.g. if `pos_price==100`, `min_markup=0.02`, `markup_range=0.03` and `n_close_orders=7`, TP prices are [102, 102.5, 103, 103.5, 104, 104.5, 105] -- n_close_orders (number of take-profit orders): number of orders in take-profit grid. -- EMA: exponential moving average -- EMA_span: span of exponential moving average. Given in minutes. diff --git a/docs/handtuning.md b/docs/handtuning.md deleted file mode 100644 index 5f978c32e..000000000 --- a/docs/handtuning.md +++ /dev/null @@ -1,34 +0,0 @@ -# Tuning config by hand - -The most advised way to create a profitable and resilient configuration is by using the automated -optimizer to find the best configuration. Besides this automated proces, there is also a hand-tuner -provided, which allows the user to manually tune & visualize a configuration. - -## Running the hand-tuner - -The hand-tuner is provided as a jupyter notebook, which you can easily run from a browser. -In order to run this, you first need to install jupyter labs using the following command: - -```shell -pip3 install jupyterlab -``` - -After this is installed, you need to start jupyter from the terminal using the command `jupyter lab`. -This will open a browser window with jupyter. On the left hand side you will see a file tree. -By clicking on the file `hand_tuner.ipynb` you will open the hand tuner in the right side of the screen. - -Before executing the hand-tuner, you need to fill in the appropriate account name in one of the cells. -Simply look for `self.user` the find the right place to put your account name. - -After updating the account name, you can execute the hand-tuner by pressing the `play` icon at the -top of the screen. You can execute the individual steps manually one by one, or you can use `shift` -to run multiple steps at once. - -## Tuning - -Once you are able to run the entire hand-tuner script from the browser, you will see that the script -produces multiple plots and data along the way. In order to find the configuration you are after, -you can change the configuration parameters and rerun the script. The configuration parameters used -for plotting are exactly identical to a regular configuration file, which means can simply copy the -config file in the browser and run it. By making modifications to the parameters you will be able -to get a feel for the impact they have, and by inspecting the graphs you can change it to your needs \ No newline at end of file diff --git a/docs/how-it-works.md b/docs/how-it-works.md deleted file mode 100644 index ef7f1a892..000000000 --- a/docs/how-it-works.md +++ /dev/null @@ -1,75 +0,0 @@ -# How it works - -A python script is given access to user's exchange account and listens to websocket stream of live trades in the selected market, automatically creating and cancelling limit buy and sell orders. - -It works in futures and spot markets. If exchange allows it, hedge mode is used to allow simultaneous long and short positions. -In spot markets bot mimicks futures behavior, allowing only long positions with max 1x leverage. - -The bot bases its decisions on account's positions, open orders and balance, and multiple EMAs of different spans. - -The EMAs are used to smoothe initial entries and stop loss orders. - -Bot's live behavior is deterministic and may be simulated on historical price data, using the included backtester. - -Its behavior is changed by adjusting the configuration to suit a particular market and user's preference. - -Configuration's parameters may be optimized to a given period of historical data by backtesting up to thousands of candidates, converging upon the config whose backtest result best satisfy specified criteria. - -## Grid Trading - -Passivbot may be described as a market making DCA scalping grid trader. - -- Market maker: passivbot is a pure maker. It never takes orders, only makes them. - -- DCA: Dollar Cost Averaging. It will typically make up to several reentries after an initial entry, in an attempt to acheive better average entry price, similar to a Martingale betting system. - -- Scalping: It will typically close positions at small markups, in the range of 0.1-2.0% - -- Grid trading: Its reentries may be calculated in advance and put on the books, thus making a grid of orders. - - -## Noise Harvesting - -There are price fluctuations in most markets, and the price noise may be "harvested". Ideally passivbot functions like a wind turbine or solar panel, passively gathering energy (money) from the environment (market). - -For version specific information about configuring or using your version of the bot, refer to your version's -documentation using the version popup at the bottom of the website. - -## Wallet exposure - -In futures markets bot uses cross mode, so entire wallet is used as margin to any position. This means that one bad position -may potentially liquidate entire wallet. - -The bot does not use leverage in its internal logic, rather position-cost-to-balance-ratio called wallet_exposure, -which is position size in terms of margin token divided by unleveraged wallet balance. - -For example, 10% of available leveraged balance in a position at cross 20x leverage is equivalent to wallet_exposure==2.0, -or 100% of available leveraged balance in a position at cross 2x leverage. - -Upon startup bot will automatically set leverage to a high enough value to prevent insufficient margin errors. Other than that, -leverage is irrelevant. - -wallet_exposure == 1.0 means 100% of unleveraged balance is in a position. -wallet_exposure == 2.0 means 200% of unleveraged balance is in a position. -wallet_exposure == 0.15 means 15% of unleveraged balance is in a position. - -Bot will not allow a position's wallet_exposure to grow higher than wallet_exposure_limit. -When a position's wallet_exposure crosses wallet_exposure_limit, bot reduces position down to the specified wallet_exposure_limit. - -The part of the position lower than or equal to wallet_exposure_limit is closed normally with a given markup percentage, while the part of -the position exceeding wallet_exposure_limit is closed at the EMA bands (more on this elsewhere) at a potential loss. - -You can prevent a position exceeding, say, 10% of unleveraged balance by making sure that -wallet_exposure_limit + wallet_exposure_stop_loss parameters do not exceed 0.1 (==10%). If the price of the symbol would drop to 0, you'd lose -a maximum of 10% of your wallet. - -It is possible to run multiple pairs on the same account. -For example, if wallet_exposure_limit + wallet_exposure_stop_loss were set such that their sum was 0.05 on 10 bots, all of them combined will not expose -more than 50% of the account's unleveraged balance. - -Another option available is to use the configuration parameter `cross_wallet_pct` to limit the amount of the wallet that is available -in absolute terms. - -!!! Info - Please check the [Configuration](configuration.md) page for an in-depth description of the configuration parameters available. - diff --git a/docs/index.md b/docs/index.md deleted file mode 100644 index 01c0c5bc3..000000000 --- a/docs/index.md +++ /dev/null @@ -1,106 +0,0 @@ -# Welcome to Passivbot! - -![Passivbot](images/pbot_logo_full.svg) - -Star -Fork - -!!! Warning - **Use at your own risk! You should never trade with money you cannot or are afraid to miss.** - - YOU ALONE ARE RESPONSIBLE FOR HOW THE BOT BEHAVES, AND FOR ANY LOSSES THAT MAY BE A RESULT OF USING THE BOT! - - If you don't understand how the bot works, you should not use it. You are always welcome to ask for help or get more - information on how it works exactly if the documentation does not provide enough information. - -## Overview - -Passivbot is a fully automated trading bot built in Python. The goal of Passivbot is to provide a stable, low-risk -trading bot that is able to accumulate profit over time without manual actions. - -Passivbot trades in futures and spot markets, using an advanced form of grid trading to place opening and closing orders. - -It provides support for automatically optimize configurations, backtest using historic data, and running in live mode. - -## Supported exchanges - -Currently the exchanges -**Binance USDT and Coin margined Futures** -**Binance Spot** -**Binance US** -**Bitget USDT and Coin margined Futures** -**OKX USDT margined perpetuals** -**Kucoin USDT margined perpetuals** -**Bybit Derivatives** -**Bybit Spot** -**BingX USDT margined perpetuals** -**Hyperliquid USDC margined perpetuals** -are implemented and supported. - -Not all functionality is supported on all exchanges, depending on the APIs that exchanges expose and development efforts. - -!!! Info - If you would like to have support added for an exchange not supported yet, - you can always get in touch to see what the options are. - -## Software Requirements - -The following requirements are applicable for installing Passivbot: - -- Git 2.17 or above -- Python 3.8.x and higher -- Supported OS: - - Mac - - Linux - - Windows - -## Hardware requirements - -Passivbot is a very lightweight bot, and can easily be run live on a single-core machine with 1GB of RAM. -Bots are typically run on a VPS, and even the cheapest ones can run 50+ bots when extra swap space is added. -While the hardware requirements are very low, you may run into issues when running it on things like a Raspberry Pi. -In case you do, please let us know so we can help out & improve the bot! - -The hardware requirements for the backtester and optimizer are significantly greater than for the live bot, -but not greater than what a normal laptop or desktop computer can handle. The optimizer supports parallel execution. - -!!! Warning - It should be very possible to run multiple bots on a single machine. Be aware however that you may run into other - limitations like rate limiting of exchanges. - -## Support - -In case you run into trouble, have questions or would just like to get in touch with the community, you can find -us at [this Discord server](https://discord.gg/QAF2H2UmzZ) or at [this Telegram channel](https://t.me/passivbot_futures). - -[![Discord](https://img.shields.io/badge/Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/QAF2H2UmzZ) - -[![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/passivbot_futures) - -## Referrals and Tip Jar - -https://accounts.binance.me/en/register?ref=TII4B07C -https://partner.bybit.com/b/passivbot -https://partner.bitget.com/bg/Y8FU1W -https://www.okx.com/join/PASSIVBOT (20% rebate) - -https://www.buymeacoffee.com/enarjord - -Tether USD (USDT): -- USDT Solana: -9hUCHBQA261PU6rUSbwgMoxn8nrdcXPAYgbASRgA8dtm -- USDT Binance Smart Chain BEP20: -0x574cad69595fe80c6424ea21988ca0e504cd90cc -- USDT Matic Polygon: -0x574cad69595fe80c6424ea21988ca0e504cd90cc - -Monero (XMR): -49gUQ1jasDK23tJTMCvP4mQUUwndeLWAwSgdCFn6ovmRKXZAjQnVp2JZ2K4UuDDdYMNam1HE8ELZoWdeJPRfYEa9QSEK6XZ - -Bitcoin (BTC): -bc1qcc3kr9gudg35gnsljg64zeaurt0y24pfej36w6 - -## License - -Passivbot is released freely without conditions. Anybody may copy, distribute, modify, use or misuse for commercial, non-commercial, -educational or non-educational purposes, censor, claim as one's own or otherwise do whatever without permission from anybody. diff --git a/docs/installation.md b/docs/installation.md index db44a04d6..032690114 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -1,138 +1,13 @@ # Installing passivbot -Passivbot can be installed and used either by installing it manually, or by starting it using Docker. -This page contains a description of both installation methods, and a step-by-step walkthrough. +## Troubleshooting -## Manual install +If there's an error running the command `maturin develop --release`: `error: linker cc not found`, try this: -Since Passivbot is written in Python, the easiest way to start it is by simply running it as a Python program. -The next sections describe what you will need to install & be able to run Passivbot, and how to get it installed. +`apt update` +`apt install build-essential` +`apt install python3-dev` -### Initial install +and try again. -When installing the bot for the first time, you can simply clone the repository using the following command from a terminal: - -```shell -git clone https://github.com/enarjord/passivbot.git -``` - -This will create a folder `passivbot`, with the code checkout on the master branch (this is the default where all stable & verified updates are pushed to). -After the code has been checked out, you will need to install the python dependencies using the following commands: - -```shell -cd passivbot -pip install -r requirements.txt -``` - -### Upgrading - -Updating the bot is as straightforward as getting the latest version, and stopping and starting the bot. -Before starting an upgrade, please make sure your bot is in an acceptable state to upgrade (e.g. does it have a position open that will be time-critical). - -If you've installed the bot using the git clone instructions above, please follow these steps to upgrade: -1) Shutdown the bot as described in [Running live](live.md) -2) Pull the latest version of the bot by issueing `git pull` from the terminal. -3) Run `pip install -r requirements.txt` from the passivbot root directory to update the python requirements. -4) Start the bot again using the command described in [Running live](live.md) * - -!!! Warning - Take care when upgrading, as configs from different bot versions are highly likely to be incompatible and can result in unexpected results or severe losses - -### Different versions - -When you are working with the bot for a longer period of time, there is a chance you may want to stick to a specific -version for a while, even though the `master` branch may have some breaking changes since you last upgraded. - -In cases this happens, you can simply switch to the appropriate branch using git. If you are not familiar with using git, -you can learn more about it on [this website](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging). - -## Docker - -At the moment, the Docker image is not built automatically yet. For now you can build the Docker image locally and push -it into your local Docker image repository using the following command from the root folder: - -```shell -docker build -t passivbot . -``` - -After building the docker image and having added it to your local container registry, you can use this image to -create a container to run commands in. These instructions assume you have a recent working version of Docker installed -on the machine where this is executed from. - -### Starting live mode - -In order to start passivbot live with Docker, you'll need to mount the config folder in order to make the required information available. -To start passivbot in live mode, you can issue the following command from the root folder of passivbot: - -```bash -docker run --name passivbot -d -v $PASSIVBOT_ROOT/config:/passivbot/config passivbot -``` - -!!! Info - The $PASSIVBOT_ROOT should be replaced with the location of your passivbot-folder (e.g. /home/passivbot) - -For more detailed information on how to run a docker container, please check the [Docker documentation](https://docs.docker.com/engine/reference/commandline/run/). - -## Installing on a Raspberry Pi - -!!! Warning - This process currently only installs the requirements to run the bot live. You will need to do the backtesting and optimising on different (more powerful) hardware. - -!!! Info - Tested on a Raspberry Pi 3b with Raspberry Pi OS Kernel version 5.10. - -Raspberry Pi OS currently uses Python2.7 and Python3.7, we need Python3.8.x. If you already have python3.8 installed, you can skip ahead to `Installing the requirements`. - -### Installing python3.8 - -To install the dependencies for Python3.8 run the following: - -```shell -sudo apt-get update -sudo apt-get install -y build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev -``` - -To download, unpack and install Python3.8 run the following (this might take a long time): - -```shell -wget https://www.python.org/ftp/python/3.8.11/Python-3.8.11.tgz -sudo tar zxf Python-3.8.11.tgz -cd Python-3.8.11 -sudo ./configure --enable-optimizations -sudo make -j 4 -sudo make altinstall -``` - -Upgrade pip and setuptools: - -```shell -sudo pip3.8 install --upgrade pip -pip3.8 install setuptools --upgrade -``` - -### Installing the requirements - -Clone the repository: - -```shell -git clone https://github.com/enarjord/passivbot.git -cd passivbot -``` - -Install llvmlite: - -```shell -sudo apt install llvm-9 -LLVM_CONFIG=llvm-config-9 pip3.8 install llvmlite -``` - -Install the requirements: - -```shell -python3.8 -m pip install -r requirements_liveonly.txt -``` - -That's it, you're ready to run the bot live. - -!!! Info - When [Running live](live.md) you will need to start the bot with `python3.8`. +More info coming soon... diff --git a/docs/live.md b/docs/live.md index 5c410f3ca..d828295cf 100644 --- a/docs/live.md +++ b/docs/live.md @@ -1,92 +1,3 @@ # Running the bot live -Once you've installed and configured the bot as desired, it's time to start your bot in live mode. This page explains -how you can start your bot, and anything relating to keeping the system running unattended. - -## Usage - -In order to start the bot in live mode, you will need two things: -1) setup your API-keys in the `api-keys.json` file in the root folder. - The template file `api-keys.example.json` can be copied as a starting file. -2) have the config file you want to use in live mode readily available for the bot (typically placed in `configs/live`) - -!!! Warning - Make sure you enable `futures` on the API key. Also, be aware that on Binance you have to complete a quiz before you - can trade futures. Apart from that, you need to make sure there are funds present in the futures wallet. - -You can use your favorite text editor to setup the account details in the `api-keys.json` file. There's a sample template -already available when you check out the repository, so you can simply put the required information in the expected places. - -Please make not of the account name that is written in the `api-keys.json` file at the root level, you will need this for the next -step (e.g. `binance_01` in the template for example). - -!!! Info - You can name the account any way you want, just make sure you make of what you set it to, as it's used in both live mode, backtesting and optimize - -To actually start the bot, you can use the following command: - -```shell -python3 passivbot.py {account_name} {symbol} {path/to/config.json} -``` - -An actual command with the values filled in could look like this for example: - -```shell -python3 passivbot.py binance_01 XMRUSDT configs/live/binance_xmrusdt.json -``` - -### Default configurations - -There are a number of configurations provided by default in the repository. These configurations are optimized and -backtested over a longer period of time, and provide a good starting point for setting up your own perfect -configuration. You can find these configurations in the [configs/live](https://github.com/enarjord/passivbot/tree/master/configs/live) directory. - -There is also a public repository available with a lot of optimized & backtested configurations on multiple coins at -[this](https://github.com/JohnKearney1/PassivBot-Configurations) github repository. - -If you found a good config and want to share this configuration, please feel free to get in touch with the community to do so! - -## Controlling the bot - -It is possible to control the bot using the following CLI options: - -- `-lm LONG_MODE` (or `-sm SHORT_MODE` for shorts): specify one of the following modes: [n (normal), m (manual), gs (graceful_stop), p (panic), t (tp_only)] - - `n` (normal); normal operation - - `m` (manual): bot neither creates nor cancels orders. - - `gs` (graceful stop): let the bot continue as normal until all positions are fully closed, then not open any more positions. - - `p` (panic): bot will close positions asap using limit orders - - `t` (TP-only): bot only manages TP grid and will not cancel or create any entries. -- `-lw 0.12` (or `-sw 0.12` for shorts): specify long wallet exposure limit, overriding value from live config -- `-lw -0` (or `sw -0` for shorts): disable and remove all reentries. Bot still manages TP. - -You can use the command for shorts and long in the same line. -Example to set pbr = 0.1 for longs, 0.05 for shorts, normal mode for longs and manual mode for shorts: -```shell -python3 passivbot.py binance_01 XMRUSDT configs/live/binance_xmrusdt.json -lw 0.1 -sw 0.05 -lm n -sm m -``` -## Startup checks - -When Passivbot is started, it will (if possible) set the position mode to `hedge` on the exchange, and set the leverage -to such a level that you do not run into errors about insufficient margin. To accomplish this, the configuration parameter -`wallet_exposure_limit` is taken into account to determine the appropriate leverage to set on the exchange. - -## Stopping bot - -!!! Warning - Before stopping the bot, please make sure it is in an appropriate state, e.g. make sure there are no positions or orders open that will cause problems if left open for a longer period - -If you want to stop, you can achieve this by pressing `ctrl+c` in the terminal - -!!! Info - Please note that shutting down the bot properly may take a couple of seconds, as it needs time to properly detach from the websocket and shutdown the bot. - -## Running unattended - -Currently there is no active support for running passivbot as a service. Future development is likely to include this, -but for now for Unix-based systems it should be fairly straight forward to set this up. There are numerous tutorials -available on Google if you search for 'linux running python as a service'. - -If you want to leave the bot running without requiring to have the terminal window open all the time, you can use tools -like [tmux](https://github.com/tmux/tmux), [screen](http://www.gnu.org/software/screen/manual/screen.html) or a similar utility. - -In case you need any help, feel freee to reach out for help via one of the channels described in [Home](index.md). +Coming soon... \ No newline at end of file diff --git a/docs/manager.md b/docs/manager.md deleted file mode 100644 index f6df8ed0a..000000000 --- a/docs/manager.md +++ /dev/null @@ -1,366 +0,0 @@ -# Passivbot instances manager - -* [Getting started](#getting-started) - * [Create config file](#create-config-file) - * [Configure instances](#configure-your-instances) - * [Start instances](#start-instances) -* [Available commands](#available-commands) -* [Configuration](#configuration) - * [Sections of a config file](#sections-of-a-config-file) - * [Overrides](#overrides) - * [Listing symbols](#listing-symbols) -* [FAQ](#faq) - -Manager is a tool that allows you to easily configure and run multiple passivbot instances in parallel without installing any additional tools or libraries - - - -## Getting started - -### Create config file -Following command will create a `config.yaml` file where you can configure your instances -```sh -manager init -``` -### Configure your instances -Go to the newly created `config.yaml` to manage your instances. Read the [configuration](#configuration) section for details -```sh -nano config.yaml -# or -vim config.yaml -# or any other editor of your choice -``` -### Start instances -Following command will launch all the instances from your config -```sh -manager start -a -``` - - -## Available Commands - -### `manager sync` -Syncs all the instances with the config - -**WARNING:** all passivbot instances that are running on your machine in the moment of running of this command will be stopped.The only instances that will be started again, are the onces that you have in your config - -Supports queries and following flags: `-s`, `-y` - -### `manager start` -Starts specified instances. To see the instance logs go to `[passivbot path]/logs/[user]/[symbol].log`. The file will contain passivbot output logs and errors, unless you start the instance with the `-s` flag, in which case logs file will not be created. - -Supports queries and following flags: `-a`, `-s`, `-y`, `-m` -### `manager stop` -Stops specified instances - -Supports queries and following flags: `-a`, `-u`, `-f`, `-y` - -### `manager restart` -Restarts specified instances - -Supports queries and following flags: `-a`, `-u`, `-f`, `-y`, `-m` - -### `manager list` -List in the terminal all the instances that run on your machine at this moment - -Supports queries - -### `manager info` -Get the detailed info about a passivbot instance - -Requires a query. If a query matches multiple instances, the first matched instance will be displayed - -### `manager init` -Create a config file for the manager. Provide an argument to create a config file with a non-default name - -Supports filename argument - -### `manager help` -Show a list of all available commands. Will show info about a single command, if command's name will be passed as an argument - - -Refer to this [section](#how-to-write-queries), to get an idea on how to write queries - - - -## Flags - -### `-a` (aliased as `--all`) -Perform an action on all running instances - -### `-u` (aliased as `--unsynced`) -Perform an action on unsynced instances - -### `-f` (aliased as `--force`) -Only supported by commands that stop system processes. Makes a supported command to force stop a process - -### `-y` (aliased as `--yes`) -Skip the confirmation step for an action and perform it immediately - -### `-s` (aliased as `--silent`) -Start the affected instances without the output logs - -### `-m` (aliased as `--modify`) -**EXPERIMENTAL** API will probably change in the future - -Override flags of starting instances, hypothetically allows you to set any flags that passivbot supports. Again: it *overrides* the values that you set in you config. There is currently no way to track the consequences of this flag within the manager cli, so use with caution - -### `-c` (aliased as `--config`) -Specify a path to a config file that you want to use with the manager. Should be absolute - -### `-h` (aliased as `--help`) -Get help for a command - - - -## Configuration -When you just start to use the manager, your config will look very similar to this: -```yaml -version: 2 - -defaults: - config: config.yaml - # ... other settings - -instances: - - user: binance_01 - symbols: - - BTCUSDT - - ETHUSDT -``` - -Such config will generate two instances for the `binance_01` user, one for each symbol under the `symbols:` section. This is how they will look in the processes tree: -```sh -pid cmd - 1 python passivbot.py binance_01 BTCUSDT /config.json - 2 python passivbot.py binance_01 ETHUSDT /config.json -``` - -You can have as many users and symbols as you want: -```yaml -instances: - - user: binance_01 - symbols: - - BTCUSDT - - ETHUSDT - - SOLUSDT - - - user: bybit_01 - symbols: - - ... - - - user: binance_spot_01 - symbols: - - ... -``` - ---- - -### Sections of a config file -By the time you read this, you might already be familiar with the sections of a manager config file, but in case you are not there are two main section in a manager config file: -* `defaults` - serves as a top level settings scope, in other words: contains settings that all instances fall back to, when don't have a closer scoped settings -* `instances` - contains a list of instances groups - -Every instance entry should have a user and a list of symbols, following instances won't work: -```yaml -instances: - # does not have a user - - symbols: - - BTCUSDT - - - user: binance_01 - # does not have symbols - - # does not specify a user and a list of symbols - - BTCUSDT -``` - ---- - -### Listing symbols -There are two ways to provide a list of symbols for a group of instances: - -```yaml -# as a list -symbols: - - BTCUSDT - - ETHUSDT - -# as an object -symbols: - BTCUSDT: - ETHUSDT: -``` - -These syntaxes can not be intermixed, as it won't be a valid yaml anymore. You can not list symbols as follows: - -```yaml -symbols: - # not valid: mixed items types - - BTCUSDT - ETHUSDT: - - NANOUSDT -``` - -So what's the difference between the two of those syntaxes, you might be asking? - -The difference is that with the objects syntax you can define the symbol-specific settings: - -```yaml -symbols: - BTCUSDT: - cfg: slow.json - lw: 0.5 - - ETHUSDT: - cfg: eth.json - lw: 0.15 -``` - -In-depth explanation of the symbol-specific settings is covered in the [overrides](#overrides) section - -With symbols listed as objects you can also use a shorthand to provide symbol-specific config files: - -```yaml -symbols: - BTCUSDT: slow.json - ETHUSDT: eth.json -``` - -But do not mix the settings overrides and the shorthand config file definition, as it will lead to an invalid yaml syntax: - -```yaml -syymbols: - # not valid yaml: lw does not belong to any object - BTCUSDT: slow.json - lw: 0.3 -``` - -If you want to provide both scoped settings and a scoped config, then you should use the `cfg` setting: - -```yaml -symbols: - # now yaml parser is happy - BTCUSDT: - cfg: slow.json - lw: 0.3 -``` - ---- - -### Overrides - -Every instance always falls back to the closest scope of settings - -`default` section of a config file, being the top level settings scope, defines the default settings for all instances - -The next level of scope is the `user` level instance the `instances` section - -And the closest scope that an instance can have is the symbol scoped settings - -You can visualize the settings lookup logic as follows: - -``` -symbol -> user -> defaults -``` - -When an instance gets created, and it looks for, let's take, the `long_exposure` setting, it first looks at the symbol scope, then it goes to the user scope and to the defaults scope at last. At every step an instance checks if the `long_exposure` setting is defined inside a scope. Once the setting definition was found, instance stores the value and starts looking for the next setting. If none of the available scopes contained the setting, then it will remain blank for that instance - -Let's look at an example. Imagine you have the following config: - -```yaml -defaults: - long_mode: gs - short_mode: m - ... - -instances: - - user: binance_01 - symbols: - BTCUSDT: - - SOLUSDT: sol.json - - ETHUSDT: - lm: p - sm: gs - - config: override.json -``` - -This is what's going on up there: -* `BTC`'s settings: - * `override.json` as a config from user scope - * `m` for shorts from default scope - * `gs` for longs from default scope - -* `SOL`'s settings: - * `sol.json` as a config from symbol scope - * `m` for shorts from default scope - * `gs` for longs from default scope - -* `ETH`'s settings: - * `override.json` as a config from user scope - * `gs` for shorts from symbol scope - * `p` for longs from symbol scope - -## FAQ - ---- - -### Where are instance logs located? - -Instance logs are located inside the `logs` folder in the root of a passivbot directory - -### How to write queries? - -Imagine we have the following configuration: -```yaml -defaults: - ... -instances: - - user: binance_01 - symbols: - - BTCUSDT - - ETHUSDT - - XMRUSDT - - - user: test-btc - symbols: - - BTCUSDT -``` -Now we want to stop all the instances that trade BTC, and for that we run: -```sh -python3 manager stop symbol=BTC -``` - -Or if we want to start all instances for the `binance_01` user: -```sh -python3 manager start user=binance_01 -``` - -Search parameters can be combined: -```sh -python3 manager start user=binance_01 symbol=BTCUSDT -``` - -Queries do not require parameter identifiers, but it is recommended to use them. Otherwise, "collisions" can occur: -```shell -python3 manager start btc -# starts all instances with the `BTC` symbol -# AND -# all instances with "btc" is user name -``` - -### How to use modifiers? - -Config modifiers is an experimental flag that allows you to override all settings of any instance via the cli. - -To apply a modifier, you should use the `-m` flag when using the start or restart command: -```sh -manager start user=binance_01 -m "-lw 0.3 -lm n" -``` - -Use this flag with caution and at your own risk as at the moment manager will not let you know if there are any modifiers applied to an instance, which can lead to an unexpected outcome. - -Modifiers certainly support key-value pairs, such as `-lm n` or `-ab 100`. Flags that do not require a value are not yet supported, those are the `-gs` and `-tm` flag diff --git a/docs/optimize.md b/docs/optimize.md deleted file mode 100644 index 16e2a2c59..000000000 --- a/docs/optimize.md +++ /dev/null @@ -1,89 +0,0 @@ -# Optimize - -Configs may be optimized with harmony search or particle swarm optimization algorithms. -Tens, hundreds or thousands of backtests with different configs are performed, -new candidate configs determined based on the backtest result of the previous iterations. More iterations lead to more optimal configs. - -Too little historical data to optimize on may lead to overfitting. -Set bounds for config parameters in `configs/optimize/default.hjson`. - -Once the necessary price data has been downloaded, the optimizer will begin with optional starting candidate(s), -test against the price history, and continue iterating through the ranges for each variable. - -!!! Warning - The optimizer is resource greedy and may take hours and days to converge, depending on number of symbols and time span. - - -Due to the heuristic nature of these optimization algorithms, repeated optimize runs do not necessarily return the exact same result. - -## Running an optimize session - -To execute an optimize, execute the following command from the root folder: - -```shell -python3 optimize.py -``` - -Note: the default market is Futures. Use one of the keys to define spot market if you want that. - -!!! Info - This page assumes you have already performed configuration to execute a backtest (like setting up your account). - If you have not done so, you can read the instructions [here](backtesting.md). - -Besides the `configs/backtest/default.hjson` file as input, the optimize process sets up the search space using -the parameters defined in `configs/optimize/default.hjson` - -The search parameters that can be specified for the optimize process are as follows. - -| Parameter | Description -| ---------- | ----------- -| `algorithm` | Particle Swarm Optimization or Harmony Search -| `iters` | The number of iterations to perform during optimize -| `n_cpus` | The number of cores used to perform the optimize. Using more cores will speed up the optimize -| `do_long` | Indicates if the optimize should perform long positions -| `do_short` | Indicates if the optimize should perform short positions - -...see more parameters and descriptions in config file - -Other than the parameters specified in the table above, the parameters found in the live config file are also specified -as a range. For a description of each of those individual parameters, please see [Running live](live.md) - -!!! Info - If you find that an optimize execution is taking longer than you expected, you can kill it using `ctrl+c` from the command-line. - After doing so, you can still find the best result the optimize achieved so far by looking in - `results_harmony_search_{recursive/static/neat/clock}` or `results_particle_swarm_optimization_{recursive/static/neat/clock}`. - -### Command-line arguments - -Other than modifying the `configs/backtest/default.hjson` and `configs/optimize/default.hjson` files, it is also possible -to specify a number of configuration options to use via the commandline. -One or more arguments are provided to the optimizer using the following syntax on the command line: - -```shell -python3 optimize.py -``` - -The following options can be provided to the backtester. Note that any argument provided will override a value specified in the backtest configuration file. - -| Key | Description -| --- | ----------- -| -t / --start | Specifies one specific live config (.json) file, a directory with multiple config files to use as starting point for optimizing or a harmony memory (hm_xxxxxx.json) -| --nojit | Disables the use of numba's just in time compiler during backtests -| -b / --backtest_config | The backtest config hjson file to use
**Default value:** configs/backtest/default.hjson -| -o / --optimize_config | The optimize config hjson file to use
**Default value:** configs/optimize/default.hjson -| -d / --download-only | Instructs the backtest to only download the data, but not dump the ticks caches to disk -| -s / --symbol | A CSV specifying the symbol(s) to optimize -| -u / --user | The name of the account used to download trade data -| --start_date | The starting date of the backtest
**Syntax:** YYYY-MM-DD -| --end_date | The end date of the backtest
**Syntax:** YYYY-MM-DD -| -bd / --base_dir | The base directory to place the output files -| -m spot / --market_type spot | Sets the market to spot instead of the default Futures -| -pm / --passivbot_mode | choices [r/recursive, s/static], static or recursive passivbot mode -| -oh / --ohlcv | if given, will use 1m ohlcv instead of 1s sampled ticks - - -Run -```shell -python3 optimize.py --help -``` -for more info. diff --git a/docs/optimizing.md b/docs/optimizing.md new file mode 100644 index 000000000..73b6c3fd0 --- /dev/null +++ b/docs/optimizing.md @@ -0,0 +1,3 @@ +# Optimizing + +Coming soon... \ No newline at end of file diff --git a/docs/passivbot_modes.md b/docs/passivbot_modes.md deleted file mode 100644 index 2e85f3c37..000000000 --- a/docs/passivbot_modes.md +++ /dev/null @@ -1,129 +0,0 @@ -# Passivbot Modes - -Passivbot has three different ways of calculating entries: -Recursive Grid Mode, Neat Grid Mode and Clock Mode. - -Neat grid mode builds a grid with a pre-specified span. -Recursive grid mode builds the grid recursively, based on expected new position after previous grid node fill. -Clock mode builds no grids, but instead waits a duration of time between entries. - - -## Common Parameters - -- ema_span_0: float -- ema_span_1: float - - spans are given in minutes - - `next_EMA = prev_EMA * (1 - alpha) + new_val * alpha` - - where `alpha = 2 / (span + 1)` - - one more EMA span is added in between span_0 and span_1: - - `EMA_spans = [ema_span_0, (ema_span_0 * ema_span_1)**0.5, ema_span_1]` - - these three EMAs are used to make an upper and a lower EMA band: - - `ema_band_lower = min(emas)` - - `ema_band_upper = max(emas)` -- enabled: bool -- min_markup: float -- markup_range: float -- n_close_orders: int (if float: int(round(x))) - - Take Profit (TP) prices are spread out from - - `pos_price * (1 + min_markup)` to `pos_price * (1 + min_markup + markup_range)` for long - - `pos_price * (1 - min_markup)` to `pos_price * (1 - min_markup - markup_range)` for short - - e.g. if `pos_price==100`, `min_markup=0.02`, `markup_range=0.03` and `n_close_orders=7`, TP prices are [102, 102.5, 103, 103.5, 104, 104.5, 105] - - qty per order is pos size divided by n_close_orders - - say long, if one TP ask is filled and afterwards price dips below that price level, bot recreates TP grid with reduced qty on each price level -- wallet_exposure_limit: float - - bot limits pos size to `wallet_balance_in_contracts * wallet_exposure_limit` - - See more in `docs/risk_management.md` -- backwards_tp: bool - - fills the TP grid "backwards" instead of frontwards: - - using TP prices from the example above, bot will build the TP grid starting with 105, then 104.g and so on, instead of starting with 102, then 102.5 and so on. - - -## Parameters common to Neat and Recursive grid modes -- initial_eprice_ema_dist: float - - if no pos, initial entry price is - - `ema_band_lower * (1 - initial_eprice_ema_dist)` for long - - `ema_band_upper * (1 + initial_eprice_ema_dist)` for short -- initial_qty_pct: float - - `initial_entry_cost = balance * wallet_exposure_limit * initial_qty_pct` -- auto_unstuck parameters: float - - See `docs/auto_unstuck.md` - - -## Neat Grid Mode Parameters - -- grid_span - - per uno (0.32 == 32%) distance from initial entry price to last node's price -- eprice_exp_base - - if 1.0, spacing between all nodes' prices is equal - - higher than 1.0 and spacing will increase deeper in the grid -- eqty_exp_base - - if 1.0, qtys will increase linearly deeper in the grid - - if > 1.0, qtys will increase exponentially deeper in the grid - -It is called neat grid mode because the grid is made in a "neat" way. - -## Recursive Grid Mode Parameters - -- ddown_factor - - `next_reentry_qty = pos_size * ddown_factor` - - in recursive grid mode ddown factor is static; in neat grid mode ddown factor becomes dynamic -- rentry_pprice_dist -- rentry_pprice_dist_wallet_exposure_weighting - - if set to zero, spacing between nodes will be approximately the same - - if > zero, spacing between nodes will increase in some proportion to wallet_exposure - - given long, - - `next_reentry_price = pos_price * (1 - rentry_pprice_diff * modifier)` - - where `modifier = (1 + ratio * rentry_pprice_dist_wallet_exposure_weighting)` - - and where `ratio = wallet_exposure / wallet_exposure_limit` - -It is called recursive grid mode because the grid is defined recusively by computing each node as if the previous node were filled. - - -## Clock Mode Parameters - -- delay_between_fills_minutes_entry/close - - delay between entries/closes given in minutes - - entry delay resets after full pos close -- delay_weight_entry/close - - delay between clock orders may be reduced, but not increased. - - if pos size is zero, the timer is reset for entries, but not for closes. - - - the formula is: - - `modified_delay = delay_between_fills * min(1, (1 - pprice_diff * delay_weight))` - - where for bids (long entries and short closes): - - `pprice_diff = (pos_price / market_price - 1)` - - and for asks (short entries and long closes): - - `pprice_diff = (market_price / pos_price - 1)` - - this means (given delay_weights > 0): - ``` - if market_price > pprice_long (upnl is green): - entry_delay is unchanged and close_delay reduced - if market_price < pprice_long (upnl is red): - entry_delay is reduced and close_delay is unchanged - - if market_price < pprice_short (upnl is green): - entry_delay is unchanged and close_delay is reduced - if market_price > pprice_short (upnl is red): - entry_delay is reduced and close_delay is unchanged - ``` - -- ema_dist_entry/close - - offset from lower/upper ema band. - - long_entry/short_close price is lower ema band minus offset - - short_entry/long_close price is upper ema band plus offset - - `clock_bid_price = min(emas) * (1 - ema_dist_lower)` - - `clock_ask_price = max(emas) * (1 + ema_dist_upper)` - - See ema_span_0/ema_span_1 -- qty_pct_entry/close - - basic formula is `entry_cost = balance * wallet_exposure_limit * qty_pct` -- we_multiplier_entry/close - - similar in function to Recursive Grid mode's ddown_factor - - entry cost is modified according to: - - `entry_cost = balance * wallet_exposure_limit * qty_pct * (1 + ratio * we_multiplier)` - - where `ratio = wallet_exposure / wallet_exposure_limit` - -Clock mode uses the take-profit grid common to the other passivbot modes. -There is no entry grid and no separate auto unstucking mechanism for clock mode. -It is called Clock Mode because entries and closes are on a timer. - - diff --git a/docs/passivbot_multi.md b/docs/passivbot_multi.md deleted file mode 100644 index 65e63575a..000000000 --- a/docs/passivbot_multi.md +++ /dev/null @@ -1,35 +0,0 @@ -# Passivbot Multisymbol - -Passivbot may be run in multi symbol mode, where one bot handles multiple symbols in the same instance. - -- only recursive grid mode is supported. -- only USDT margined perpetual futures is supported. -- supported exchanges: Bitget, OKX, Bybit, Binance, BingX and Hyperliquid. -- backtesting and optimizing is supported with backtest_multi.py and optimize_multi.py. -- bot will automatically set positions not under active management to graceful stop mode. - -## Usage - -Use configs/live/example_config.hjson as template and run: -```shell -python3 passivbot_multi.py configs/live/{config_name}.hjson -``` - -## Multi symbol auto unstuck - -- if a position is stuck, bot will use profits made on other markets to realize losses for the stuck position. -- if multiple positions are stuck, the stuck position whose price action distance is the lowest is selected for unstucking. -- each live config's individual timer based auto unstuck mechanism is disabled. -- only recursive grid configs are supported. -- bot behavior remains the same otherwise - -## Backtesting - -Modify `configs/backtest/multi.hjson` and run -```shell -python3 backtest_multi.py -``` - -## Optimizing - -Not yet supported. \ No newline at end of file diff --git a/docs/quick_start.md b/docs/quick_start.md deleted file mode 100644 index a144b23fb..000000000 --- a/docs/quick_start.md +++ /dev/null @@ -1,90 +0,0 @@ -# Passivbot Quick Start - -Here follows a quick start guide for passivbot installation - -## Exchange account and API access - -Passivbot works on Binance, Binance.US, Bybit, Bitget, OKX, Kucoin, BingX and Hyperliquid. -US residents are advised to use Hyperliquid with a VPN because, at the time of writing, Hyperliquid does not require KYC verification for derivatives trading. - -Create an API key with trading permissions. Some exchanges will use only a key and secret, some will use a key, secret and passphrase. - -Deposit some USDT and make an internal transfer to the trading or derivatives account. - -## VPS - -The bot can run on a local computer, but the general recommendation is to use a VPS (Virtual Private Server). - -Digital Ocean is one of many usable VPSs. -Referral for 60 days free usage: -https://m.do.co/c/10996bead65a - -Passivbot is lightweight, and 50+ bot instances can be run on the cheapest droplet ($4 per month as of this writing), as long as swap space is added (see below). - -Most exchanges have servers located in Asia, so choosing Singapore as droplet server location will probably give the lowest latency, but low latency is not critical for passivbot performance. - -The bot can be installed on a Windows server, but in this guide it is assumed that a Ubuntu 22.04 x64 droplet is used. - -Access the VPS via SSH, web browser console, PuTTY or whatever method is preferred (if in doubt, the simplest is to click on "Access Console" -> "Launch Droplet Console" and a pop-up window will appear). - -If running more than one or two bot instances on the cheapest droplet with 500mb RAM, adding swap space is needed. See this guide: -https://www.digitalocean.com/community/tutorials/how-to-add-swap-space-on-ubuntu-20-04 - -4GB swap is sufficient for most cases; add more if needed. - -## Step by step passivbot installation instructions - -* Log into the VPS (see above) -* Perform system update and upgrade: `sudo apt update; sudo apt upgrade` and choose default values if prompted. -* Install python package manager: `sudo apt install python3-pip` -* Clone the github repository: `git clone https://github.com/enarjord/passivbot.git` -* Navigate into the passivbot directory: `cd passivbot` -* Install passivbot's dependencies: `pip install -r requirements_liveonly.txt` - -The bot needs access to the exchange account, which it gets via the API key and secret (and passphrase if required). -There needs to be added a new file with the filename `api-keys.json` into which the key and secret is pasted. A template file `api-keys.example.json` is included. -A simple way to achieve this is the following: -* Copy the contents of this file `https://github.com/enarjord/passivbot/blob/master/api-keys.example.json` into a simple text editor of choice. -* Edit the relevant part of the file like this: -``` - "{exchange_name}_01" : { - "exchange": "{exchange_name}", - "key": "1234abc", - "secret": "4567xyz", - "passphrase": "9876abc" - }, - ``` -...and copy the entire file to the clipboard. -* Type this command: `cat > api-keys.json` and hit enter. -* Now paste the clipboard content (right click and 'paste' might be necessary). -* Hit enter again, then control+d. -* Verify the file was written correctly: `cat api-keys.json`, which should output the content which was pasted. - -Now the installation is complete and bots may be launched. - -A bot needs a live config whose parameters tell the bot how to behave. There are a few example configs included in the dir `configs/live/`. -More live configs may be found here: https://github.com/JohnKearney1/PassivBot-Configurations or here https://pbconfigdb.scud.dedyn.io/ or elsewhere. - -Live configs are typically optimized on a single token's price history. To copy a config into the VPS, use the same procedure as when pasting the API key/secret: -`cat > configs/live/{config_name}.json`, paste, hit enter, then control+d. - -A passivbot instance must be started in a way which allows it to run in the background after the console is closed. -There are multiple options: the included passivbot manager, screen or tmux. -See here for instructions to use the manager: `https://github.com/enarjord/passivbot/blob/master/docs/manager.md` - -Alternatively, use screen or tmux, which work similarly, but with different commands. Here follow instructions for tmux: -* Start a new tmux session: `tmux new -s {name}` where `{name}` is an arbitrary name chosen, for example `bot1` or `xrp`. -A green line at the bottom indicates one is inside a tmux session. Tmux sessions can be compared to browser tabs. -* Now a passivbot instance may be started: `python3 passivbot.py {exchange_name}_01 SYMUSDT configs/live/{config_name}.json`, -where `{exchange_name}_01` must match the entry inside `api-keys.json` and `configs/live/{config_name}.json` must match the live config name file. -If started without any additional arguments, default settings are used. Run `python3 passivbot.py --help` to see all command options. -For example, to start a bot with shorts disabled and long wallet exposure limit set to 0.5, run -`python3 passivbot.py {exchange_name}_01 SYMUSDT configs/live/{config_name}.json -sm gs -lw 0.5` - -Now the console may be closed without stopping the bot. - -See the tmux documentation (or google "tmux cheatsheet") to learn how to attach and detach from sessions, create new sessions, navigate between sessions, create multiple windows inside the same session and so on. - - - - diff --git a/docs/spot.md b/docs/spot.md deleted file mode 100644 index 46a8848b5..000000000 --- a/docs/spot.md +++ /dev/null @@ -1,26 +0,0 @@ -# Spot trading - -Passivbot works on Binance and Bybit spot markets. - -Example command: -`python3 passivbot.py binance_01 ETHBTC path/to/live_config.json -m spot -ab 0.1` - -Start the bot normally by running the script passivbot.py. -Specify the user as normal, e.g. `binance_01`. -Specify the symbol. Symbols may be quoted in USDT/BUSD/BTC/ETH/BNB and so on. Any spot symbol. -Direct the bot to desired live config. -Specify that the market type is spot and not futures with `--market_type spot` or `-m spot`. - -It is recommended to add kwarg `--assigned_balance x` or `-ab x` in order to fix wallet balance to a given value. -This because in spot trading there are no positions, no wallet balance and no unrealized PnL. There is only plain buy and sell. -So wallet balance and position must be simulated by looking in past user trade history. -Total spot wallet balance fetched thru REST API is total wallet equity. -What is needed is wallet_balance defined as `quote_balance + coin_balance * pos_price`. -Multiple spot bots sharing same wallet will be unaware of other spot bots' positions. -As a patch for this issue, instead of computing wallet_balance by fetching info from exchange, one may set wallet_balance to some desired static value, typically slightly less than quote balance plus value in terms of quote token of all spot positions. - -For example, if spot wallet has 2.5 ETH and one wants to start 5 ETH quoted spot bots, -start 5 bots with different ETH quoted symbols: -`python3 passivbot.py binance_01 XXXETH path/to/live_config.json -m spot -ab 2.45` - -Also note that sum of wallet_exposure_limits of all spot bots sharing same quote token shouldn't exceed 1.0. diff --git a/docs/walkthrough.md b/docs/walkthrough.md deleted file mode 100644 index fe1f4d9f7..000000000 --- a/docs/walkthrough.md +++ /dev/null @@ -1,104 +0,0 @@ -# Example walkthrough of using the bot - -The documentation provides detailed descriptions on each individual functionality the bot provides, like -installing, backtesting, optimizing and running the bot live. Because these scattered sections can be -overwhelming to somebody that is new to using Passivbot, this chapter provides a general walkthrough of -getting the bot set up, and the steps after that to using it. - -This page is aimed at first-time users to help them get started, without diving into all the details straight away. - -!!! Info - These instructions are merely an example to help inexperienced users get started. Feel free to set things up the way you - want if you're an experienced user! - -## Prerequisites - -In order to get Passivbot setup, you'll need a server to install it on. You can either host a server -at home, or rent a server on a VPS-provider like digitalocean, vultr or a similar provider. For setting -up a server, please refer to the instructions of the specific VPS you want to run the bot on. The smallest server -available is expected to be enough to run the bot. - -The instructions in this tutorial will assume you are running an Ubuntu-server and are logged in to the terminal. - -## Installing - -Run the following commands to install git, python and Passivbot: - -```shell -sudo apt install tmux -sudo apt install python -sudo apt install git python -git clone https://github.com/enarjord/passivbot.git -cd passivbot -pip install -r requirements.txt -``` - -## Configuration - -After running the installation commands above, you need to create an API key on the exchange you want to run. -This will provide you with a key and a secret, that you need to fill out in the `api-keys.json`. You first need to -create this file by copying the template file `api-keys.example.json`. -The instructions below assume your key is `{X}` and your secret is `{Y}`. - -!!! Warning - Make sure you enable `futures` on the API key. Also, be aware that on Binance you have to complete a quiz before you - can trade futures. Apart from that, you need to make sure there are funds present in the futures wallet. - -## Run the optimizer for a config - -!!! Warning - For running the optimizer, a minimum of 8gb is recommended, and 16gb is be advisable. - -Once you've set up your account, you can try to find a good config using [the optimizer](optimize.md). If you want, you can limit the -search space by modifying by creating your own optimize configuration. You can do so by copying and modifying the default -optimize configuration file: - -```shell -cp configs/optimize/default.hjson configs/optimize/myconfig.hjson -vi configs/optimize/myconfig.hjson - -:wq -``` - -!!! Info - To learn about the different search space parameters, please refer to the [Configuration](configuration.md) page. - -After this, you can start an optimize run on a symbol (XLMUSDT in this example): - -```shell -python3 harmony_search.py -u binance_01 -s XLMUSDT -o configs/optimize/myconfig.hjson --start_date 2021-06-01 --end_date 2021-07-01 -``` - -## Run the backtest for a config - -After the optimizer finishes, you can backtest the best config produced: - -```shell -python3 backtest.py results_harmony_search/{date}XXX/xxxxxx_best_config_{long/short}.json -u binance_01 -s XLMUSDT --start_date 2021-06-01 --end_date 2021-07-01 -``` - -If you're happy with the config, copy it over to your live config file: - -```shell -cp backtests/binance/XLMUSDT/plots/{date}/live_config.json configs/live/myconfig.json -``` - -## Starting the bot - -To allow the bot to keep on running after you've disconnected, start a new tmux session: - -```shell -tmux new -s mypassivbot -``` - -Once you're satisfied with the configuration, start the bot: - -```shell -python3 passivbot.py binance_01 XLMUSDT configs/live/myconfig.json -``` - -If the bot started successfully, you should receive a message **Passivbot started!**. After this, you can disconnect -from the tmux session by pressing `ctrl+b`, following by pressing `d`. - -!!! Info - To stop the bot, hit `ctrl+c` diff --git a/exchanges/binance.py b/exchanges/binance.py deleted file mode 100644 index e48ee1a78..000000000 --- a/exchanges/binance.py +++ /dev/null @@ -1,834 +0,0 @@ -import asyncio -import hashlib -import hmac -import json -import traceback -from time import time, time_ns -from urllib.parse import urlencode - -import aiohttp -import numpy as np - -from passivbot import Bot, logging -from procedures import print_, print_async_exception -from pure_funcs import ts_to_date, sort_dict_keys, format_float - - -class BinanceBot(Bot): - def __init__(self, config: dict): - self.exchange = "binance" - self.max_n_orders_per_batch = 5 - self.max_n_cancellations_per_batch = 10 - super().__init__(config) - self.session = aiohttp.ClientSession() - self.base_endpoint = "" - self.headers = {"X-MBX-APIKEY": self.key} - - async def public_get(self, url: str, params: dict = {}, base_endpoint=None) -> dict: - try: - async with self.session.get( - (self.base_endpoint if base_endpoint is None else base_endpoint) + url, - params=params, - ) as response: - result = await response.text() - return json.loads(result) - except Exception as e: - print(f"error with public get {url} {params}") - traceback.print_exc() - return {} - - async def private_( - self, type_: str, base_endpoint: str, url: str, params: dict = {}, data_: bool = False - ) -> dict: - def stringify(x): - if isinstance(x, bool): - return "true" if x else "false" - elif isinstance(x, float): - return format_float(x) - elif isinstance(x, int): - return str(x) - elif isinstance(x, list): - return json.dumps([stringify(y) for y in x]).replace(" ", "") - elif isinstance(x, dict): - return {k: stringify(v) for k, v in x.items()} - else: - return x - - try: - timestamp = int(time() * 1000) - params.update({"timestamp": timestamp, "recvWindow": 5000}) - for k in params: - params[k] = stringify(params[k]) - if isinstance(params[k], dict): - params[k] = json.dumps(params[k]).replace(" ", "") - params = sort_dict_keys(params) - params["signature"] = hmac.new( - self.secret.encode("utf-8"), - urlencode(params).encode("utf-8"), - hashlib.sha256, - ).hexdigest() - if data_: - async with getattr(self.session, type_)( - base_endpoint + url, data=params, headers=self.headers - ) as response: - result = await response.text() - else: - params_encoded = urlencode(params) - async with getattr(self.session, type_)( - base_endpoint + url, params=params_encoded, headers=self.headers - ) as response: - result = await response.text() - - return json.loads(result) - except Exception as e: - print(f"error with private {type_} {base_endpoint} {url} {params}") - traceback.print_exc() - return {} - - async def private_get(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict: - return await self.private_( - "get", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def private_post( - self, url: str, params: dict = {}, base_endpoint: str = None, data_: bool = False - ) -> dict: - return await self.private_( - "post", self.base_endpoint if base_endpoint is None else base_endpoint, url, params, data_ - ) - - async def private_put(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict: - return await self.private_( - "put", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def private_delete( - self, url: str, params: dict = {}, base_endpoint: str = None, data_: bool = False - ) -> dict: - return await self.private_( - "delete", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - data_, - ) - - async def init_market_type(self): - fapi_endpoint = "https://fapi.binance.com" - dapi_endpoint = "https://dapi.binance.com" - fws_endpoint = "wss://fstream.binance.com" - dws_endpoint = "wss://dstream.binance.com" - spot_base_endpoint = "https://api.binance.com" - - self.exchange_info = None - if self.test_mode: - fapi_endpoint = "https://testnet.binancefuture.com" - dapi_endpoint = "https://testnet.binancefuture.com" - fws_endpoint = "wss://stream.binancefuture.com" - dws_endpoint = "wss://dstream.binancefuture.com" - spot_base_endpoint = "https://testnet.binance.vision" - - try: - self.exchange_info = await self.public_get( - "/fapi/v1/exchangeInfo", base_endpoint=fapi_endpoint - ) - if self.symbol in {e["symbol"] for e in self.exchange_info["symbols"]}: - print("linear perpetual") - self.market_type += "_linear_perpetual" - self.inverse = self.config["inverse"] = False - self.base_endpoint = fapi_endpoint - self.endpoints = { - "time": "/fapi/v1/time", - "position": "/fapi/v2/positionRisk", - "balance": "/fapi/v2/balance", - "exchange_info": "/fapi/v1/exchangeInfo", - "leverage_bracket": "/fapi/v1/leverageBracket", - "open_orders": "/fapi/v1/openOrders", - "ticker": "/fapi/v1/ticker/bookTicker", - "fills": "/fapi/v1/userTrades", - "fills_detailed": "/fapi/v1/allOrders", - "income": "/fapi/v1/income", - "create_order": "/fapi/v1/order", - "cancel_order": "/fapi/v1/order", - "ticks": "/fapi/v1/aggTrades", - "ohlcvs": "/fapi/v1/klines", - "margin_type": "/fapi/v1/marginType", - "leverage": "/fapi/v1/leverage", - "position_side": "/fapi/v1/positionSide/dual", - "websocket": (ws := f"{fws_endpoint}/ws/"), - "websocket_market": ws + f"{self.symbol.lower()}@aggTrade", - "websocket_user": ws, - "listen_key": "/fapi/v1/listenKey", - "batch_orders": "/fapi/v1/batchOrders", - } - else: - self.exchange_info = await self.public_get( - "/dapi/v1/exchangeInfo", base_endpoint=dapi_endpoint - ) - if self.symbol in {e["symbol"] for e in self.exchange_info["symbols"]}: - print("inverse coin margined") - self.base_endpoint = dapi_endpoint - self.market_type += "_inverse_coin_margined" - self.inverse = self.config["inverse"] = True - self.endpoints = { - "time": "/dapi/v1/time", - "position": "/dapi/v1/positionRisk", - "balance": "/dapi/v1/balance", - "exchange_info": "/dapi/v1/exchangeInfo", - "leverage_bracket": "/dapi/v1/leverageBracket", - "open_orders": "/dapi/v1/openOrders", - "ticker": "/dapi/v1/ticker/bookTicker", - "fills": "/dapi/v1/userTrades", - "fills_detailed": "/dapi/v1/allOrders", - "income": "/dapi/v1/income", - "create_order": "/dapi/v1/order", - "cancel_order": "/dapi/v1/order", - "ticks": "/dapi/v1/aggTrades", - "ohlcvs": "/dapi/v1/klines", - "margin_type": "/dapi/v1/marginType", - "leverage": "/dapi/v1/leverage", - "position_side": "/dapi/v1/positionSide/dual", - "websocket": (ws := f"{dws_endpoint}/ws/"), - "websocket_market": ws + f"{self.symbol.lower()}@aggTrade", - "websocket_user": ws, - "listen_key": "/dapi/v1/listenKey", - "batch_orders": "/dapi/v1/batchOrders", - } - else: - raise Exception(f"unknown symbol {self.symbol}") - except Exception as e: - logging.error(f"error initiating market type {e}") - print_async_exception(self.exchange_info) - traceback.print_exc() - raise Exception("stopping bot") - - self.spot_base_endpoint = spot_base_endpoint - self.endpoints["transfer"] = "/sapi/v1/asset/transfer" - self.endpoints["futures_transfer"] = "/sapi/v1/futures/transfer" - self.endpoints["account"] = "/api/v3/account" - self.endpoints["server_time"] = "/api/v3/time" - - async def _init(self): - await self.init_market_type() - for e in self.exchange_info["symbols"]: - if e["symbol"] == self.symbol: - self.coin = e["baseAsset"] - self.quote = e["quoteAsset"] - self.margin_coin = e["marginAsset"] - self.pair = e["pair"] - if "inverse_coin_margined" in self.market_type: - self.c_mult = self.config["c_mult"] = float(e["contractSize"]) - for q in e["filters"]: - if q["filterType"] == "LOT_SIZE": - self.min_qty = self.config["min_qty"] = float(q["minQty"]) - elif q["filterType"] == "MARKET_LOT_SIZE": - self.qty_step = self.config["qty_step"] = float(q["stepSize"]) - elif q["filterType"] == "PRICE_FILTER": - self.price_step = self.config["price_step"] = float(q["tickSize"]) - elif q["filterType"] == "MIN_NOTIONAL": - self.min_cost = self.config["min_cost"] = float(q["notional"]) - try: - z = self.min_cost - except AttributeError: - self.min_cost = self.config["min_cost"] = 0.0 - break - - await super()._init() - await self.init_order_book() - await self.update_position() - - async def get_server_time(self): - now = await self.public_get( - self.endpoints["server_time"], base_endpoint=self.spot_base_endpoint - ) - return now["serverTime"] - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - return await self.private_post( - self.endpoints["futures_transfer"], - {"asset": coin, "amount": amount, "type": 2}, - base_endpoint=self.spot_base_endpoint, - ) - - async def execute_leverage_change(self): - lev = self.leverage - return await self.private_post( - self.endpoints["leverage"], {"symbol": self.symbol, "leverage": lev} - ) - - async def init_exchange_config(self) -> bool: - try: - print_( - [ - await self.private_post( - self.endpoints["margin_type"], - {"symbol": self.symbol, "marginType": "CROSSED"}, - ) - ] - ) - except Exception as e: - print(e) - try: - print_([await self.execute_leverage_change()]) - except Exception as e: - print(e) - try: - print_( - [ - await self.private_post( - self.endpoints["position_side"], {"dualSidePosition": "true"} - ) - ] - ) - except Exception as e: - if '"code":-4059' not in e.args[0]: - print(e) - print("unable to set hedge mode, aborting") - raise Exception("failed to set hedge mode") - - async def init_order_book(self): - ticker = None - try: - ticker = await self.public_get(self.endpoints["ticker"], {"symbol": self.symbol}) - if "inverse_coin_margined" in self.market_type: - ticker = ticker[0] - self.ob = [float(ticker["bidPrice"]), float(ticker["askPrice"])] - self.price = np.random.choice(self.ob) - return True - except Exception as e: - logging.error(f"error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - open_orders = None - try: - open_orders = await self.private_get( - self.endpoints["open_orders"], {"symbol": self.symbol} - ) - return [ - { - "order_id": int(e["orderId"]), - "symbol": e["symbol"], - "price": float(e["price"]), - "qty": float(e["origQty"]), - "type": e["type"].lower(), - "side": e["side"].lower(), - "position_side": e["positionSide"].lower().replace("short", "short"), - "timestamp": int(e["time"]), - } - for e in open_orders - ] - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(open_orders) - traceback.print_exc() - return False - - async def fetch_position(self) -> dict: - positions, balance = None, None - try: - positions, balance = await asyncio.gather( - self.private_get( - self.endpoints["position"], - ( - {"symbol": self.symbol} - if "linear_perpetual" in self.market_type - else {"pair": self.pair} - ), - ), - self.private_get(self.endpoints["balance"], {}), - ) - assert all( - key in positions[0] for key in ["symbol", "positionAmt", "entryPrice"] - ), "faulty position fetch" - assert all( - key in balance[0] for key in ["asset", "balance", "crossUnPnl"] - ), "faulty balance fetch" - positions = [e for e in positions if e["symbol"] == self.symbol] - position = { - "long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": 0.0, - "equity": 0.0, - } - if positions: - for p in positions: - if p["positionSide"] == "LONG": - position["long"] = { - "size": float(p["positionAmt"]), - "price": float(p["entryPrice"]), - "liquidation_price": float(p["liquidationPrice"]), - } - elif p["positionSide"] == "SHORT": - position["short"] = { - "size": float(p["positionAmt"]), - "price": float(p["entryPrice"]), - "liquidation_price": float(p["liquidationPrice"]), - } - for e in balance: - if e["asset"] == ( - self.quote if "linear_perpetual" in self.market_type else self.coin - ): - position["wallet_balance"] = float(e["balance"]) - position["equity"] = position["wallet_balance"] + float(e["crossUnPnl"]) - break - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(positions) - print_async_exception(balance) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - if len(orders) == 0: - return [] - if len(orders) == 1: - return [await self.execute_order(orders[0])] - return await self.execute_batch_orders(orders) - - async def execute_order(self, order: dict) -> dict: - o = None - try: - params = { - "symbol": self.symbol, - "side": order["side"].upper(), - "positionSide": order["position_side"].replace("short", "short").upper(), - "type": order["type"].upper(), - "quantity": str(order["qty"]), - } - if params["type"] == "LIMIT": - params["timeInForce"] = "GTX" - params["price"] = order["price"] - params["newClientOrderId"] = order["custom_id"] - o = await self.private_post(self.endpoints["create_order"], params) - return { - "symbol": self.symbol, - "side": o["side"].lower(), - "position_side": o["positionSide"].lower().replace("short", "short"), - "type": o["type"].lower(), - "qty": float(o["origQty"]), - "order_id": int(o["orderId"]), - "price": float(o["price"]), - } - except Exception as e: - print(f"error executing order {order} {e}") - print_async_exception(o) - traceback.print_exc() - return {} - - async def execute_batch_orders(self, orders: [dict]) -> [dict]: - executed = None - try: - to_execute = [] - for order in orders: - params = { - "symbol": self.symbol, - "side": order["side"].upper(), - "positionSide": order["position_side"].replace("short", "short").upper(), - "type": order["type"].upper(), - "quantity": str(order["qty"]), - } - if params["type"] == "LIMIT": - params["timeInForce"] = "GTX" - params["price"] = order["price"] - params["newClientOrderId"] = order["custom_id"] - to_execute.append(params) - executed = await self.private_post( - self.endpoints["batch_orders"], {"batchOrders": to_execute}, data_=True - ) - return [ - { - "symbol": self.symbol, - "side": ex["side"].lower(), - "position_side": ex["positionSide"].lower().replace("short", "short"), - "type": ex["type"].lower(), - "qty": float(ex["origQty"]), - "order_id": int(ex["orderId"]), - "price": float(ex["price"]), - } - for ex in executed - ] - except Exception as e: - print(f"error executing order {executed} {e}") - print_async_exception(executed) - traceback.print_exc() - return [] - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - symbol = orders[0]["symbol"] if "symbol" in orders[0] else self.symbol - try: - cancellations = await self.private_delete( - self.endpoints["batch_orders"], - {"symbol": symbol, "orderIdList": str([order["order_id"] for order in orders])}, - data_=True, - ) - return [ - { - "symbol": symbol, - "side": cancellation["side"].lower(), - "order_id": int(cancellation["orderId"]), - "position_side": cancellation["positionSide"].lower().replace("short", "short"), - "qty": float(cancellation["origQty"]), - "price": float(cancellation["price"]), - } - for cancellation in cancellations - ] - except Exception as e: - logging.error(f"error cancelling orders {orders} {e}") - print_async_exception(cancellations) - traceback.print_exc() - return [] - - async def fetch_latest_fills(self, start_time=None): - params = {"symbol": self.symbol, "limit": 100 if self.inverse else 1000} - if start_time is None: - if self.inverse: - # fetch for last 24h because inverse has limit of 100 items per call - start_time = params["startTime"] = int(self.server_time - 1000 * 60 * 60 * 24) - else: - params["startTime"] = start_time - fetched = None - fills = [] - max_n_fetches = 20 - k = 0 - while True: - try: - if fetched: - params["startTime"] = fills[-1]["timestamp"] - fetched = await self.private_get(self.endpoints["fills_detailed"], params) - # print('debug', fetched[-1]['time'], len(fetched)) - fills += [ - { - "order_id": elm["orderId"], - "symbol": elm["symbol"], - "status": elm["status"].lower(), - "custom_id": elm["clientOrderId"], - "price": float(elm["avgPrice"]), - "qty": float(elm["executedQty"]), - "original_qty": float(elm["origQty"]), - "type": elm["type"].lower(), - "reduce_only": elm["reduceOnly"], - "side": elm["side"].lower(), - "position_side": elm["positionSide"].lower(), - "timestamp": elm["time"], - } - for elm in fetched - ] - fillsd = {f["order_id"]: f for f in fills} - fills = sorted(fillsd.values(), key=lambda x: x["order_id"]) - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - if start_time is None or len(fetched) != int(params["limit"]): - break - k += 1 - if k >= max_n_fetches: - print( - f"\nwarning: fetched order history more than {max_n_fetches} times. Clock mode timing might not include latest fills and thus be inaccurate" - ) - break - # exclude partial fills where qty / original_qty <= 10% - return [x for x in fills if x["original_qty"] != 0.0 and x["qty"] / x["original_qty"] > 0.1] - - async def fetch_fills( - self, - symbol=None, - limit: int = 1000, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - params = { - "symbol": self.symbol if symbol is None else symbol, - "limit": min(100, limit) if self.inverse else limit, - } - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(min(end_time, start_time + 1000 * 60 * 60 * 24 * 6.99)) - try: - fetched = await self.private_get(self.endpoints["fills"], params) - fills = [ - { - "symbol": x["symbol"], - "id": int(x["id"]), - "order_id": int(x["orderId"]), - "side": x["side"].lower(), - "price": float(x["price"]), - "qty": float(x["qty"]), - "realized_pnl": float(x["realizedPnl"]), - "cost": float(x["baseQty"]) if self.inverse else float(x["quoteQty"]), - "fee_paid": float(x["commission"]), - "fee_token": x["commissionAsset"], - "timestamp": int(x["time"]), - "position_side": x["positionSide"].lower().replace("short", "short"), - "is_maker": x["maker"], - } - for x in fetched - ] - except Exception as e: - print("error fetching fills", e) - traceback.print_exc() - return [] - return fills - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "realized_pnl", - end_time: int = None, - ): - income = [] - while True: - fetched = await self.fetch_income( - symbol=symbol, - start_time=start_time, - income_type=income_type, - limit=1000, - ) - print_(["fetched income", ts_to_date(fetched[0]["timestamp"])]) - if fetched == income[-len(fetched) :]: - break - income += fetched - if len(fetched) < 1000: - break - start_time = income[-1]["timestamp"] - income_d = {e["transaction_id"]: e for e in income} - return sorted(income_d.values(), key=lambda x: x["timestamp"]) - - async def fetch_income( - self, - symbol: str = None, - income_type: str = None, - limit: int = 1000, - start_time: int = None, - end_time: int = None, - ): - params = {"limit": limit} - if symbol is not None: - params["symbol"] = symbol - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(end_time) - if income_type is not None: - params["incomeType"] = income_type.upper() - try: - fetched = await self.private_get(self.endpoints["income"], params) - return [ - { - "symbol": e["symbol"], - "income_type": e["incomeType"].lower(), - "income": float(e["income"]), - "token": e["asset"], - "timestamp": float(e["time"]), - "info": e["info"], - "transaction_id": float(e["tranId"]), - "trade_id": float(e["tradeId"]) if e["tradeId"] != "" else 0, - } - for e in fetched - ] - except Exception as e: - print("error fetching income: ", e) - traceback.print_exc() - return [] - return income - - async def fetch_account(self): - try: - return await self.private_get( - self.endpoints["account"], base_endpoint=self.spot_base_endpoint - ) - except Exception as e: - print("error fetching account: ", e) - return {"balances": []} - - async def fetch_ticks( - self, - from_id: int = None, - start_time: int = None, - end_time: int = None, - do_print: bool = True, - ): - params = {"symbol": self.symbol, "limit": 1000} - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(end_time) - try: - fetched = await self.public_get(self.endpoints["ticks"], params) - except Exception as e: - print("error fetching ticks a", e) - traceback.print_exc() - return [] - try: - ticks = [ - { - "trade_id": int(t["a"]), - "price": float(t["p"]), - "qty": float(t["q"]), - "timestamp": int(t["T"]), - "is_buyer_maker": t["m"], - } - for t in fetched - ] - if do_print: - print_( - [ - "fetched ticks", - self.symbol, - ticks[0]["trade_id"], - ts_to_date(float(ticks[0]["timestamp"]) / 1000), - ] - ) - except Exception as e: - print("error fetching ticks b", e, fetched) - ticks = [] - if do_print: - print_(["fetched no new ticks", self.symbol]) - return ticks - - async def fetch_ticks_time(self, start_time: int, end_time: int = None, do_print: bool = True): - return await self.fetch_ticks(start_time=start_time, end_time=end_time, do_print=do_print) - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=1500 - ): - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_map = { - "1m": 1, - "3m": 3, - "5m": 5, - "15m": 15, - "30m": 30, - "1h": 60, - "2h": 120, - "4h": 240, - "6h": 360, - "12h": 720, - "1d": 60 * 60 * 24, - "1w": 60 * 60 * 24 * 7, - "1M": 60 * 60 * 24 * 30, - } - assert interval in interval_map - params = { - "symbol": self.symbol if symbol is None else symbol, - "interval": interval, - "limit": limit, - } - if start_time is not None: - params["startTime"] = int(start_time) - params["endTime"] = params["startTime"] + interval_map[interval] * 60 * 1000 * limit - try: - fetched = await self.public_get(self.endpoints["ohlcvs"], params) - return [ - { - **{"timestamp": int(e[0])}, - **{ - k: float(e[i + 1]) - for i, k in enumerate(["open", "high", "low", "close", "volume"]) - }, - } - for e in fetched - ] - except Exception as e: - print("error fetching ohlcvs", fetched, e) - traceback.print_exc() - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - params = {"type": type_.upper(), "amount": amount, "asset": asset} - return await self.private_post( - self.endpoints["transfer"], params, base_endpoint=self.spot_base_endpoint - ) - - def standardize_market_stream_event(self, data: dict) -> [dict]: - try: - return [ - { - "timestamp": int(data["T"]), - "price": float(data["p"]), - "qty": float(data["q"]), - "is_buyer_maker": data["m"], - } - ] - except Exception as e: - print("error in websocket tick", e, data) - return [] - - async def beat_heart_user_stream(self) -> None: - while True: - await asyncio.sleep(60 + np.random.randint(60 * 9, 60 * 14)) - await self.init_user_stream() - - async def init_user_stream(self) -> None: - try: - response = await self.private_post(self.endpoints["listen_key"]) - self.listen_key = response["listenKey"] - self.endpoints["websocket_user"] = self.endpoints["websocket"] + self.listen_key - except Exception as e: - traceback.print_exc() - print_(["error fetching listen key", e]) - - def standardize_user_stream_event(self, event: dict) -> dict: - standardized = {} - if "e" in event: - if event["e"] == "ACCOUNT_UPDATE": - if "a" in event and "B" in event["a"]: - for x in event["a"]["B"]: - if x["a"] == self.margin_coin: - standardized["wallet_balance"] = float(x["cw"]) - if event["a"]["m"] == "ORDER": - for x in event["a"]["P"]: - if x["s"] != self.symbol: - standardized["other_symbol"] = x["s"] - standardized["other_type"] = "account_update" - continue - if x["ps"] == "LONG": - standardized["psize_long"] = float(x["pa"]) - standardized["pprice_long"] = float(x["ep"]) - elif x["ps"] == "SHORT": - standardized["psize_short"] = float(x["pa"]) - standardized["pprice_short"] = float(x["ep"]) - elif event["e"] == "ORDER_TRADE_UPDATE": - if event["o"]["s"] == self.symbol: - if event["o"]["X"] == "NEW": - standardized["new_open_order"] = { - "order_id": int(event["o"]["i"]), - "symbol": event["o"]["s"], - "price": float(event["o"]["p"]), - "qty": float(event["o"]["q"]), - "type": event["o"]["o"].lower(), - "side": event["o"]["S"].lower(), - "position_side": event["o"]["ps"].lower().replace("short", "short"), - "timestamp": int(event["o"]["T"]), - } - elif event["o"]["X"] in ["CANCELED", "EXPIRED"]: - standardized["deleted_order_id"] = int(event["o"]["i"]) - elif event["o"]["X"] == "FILLED": - standardized["deleted_order_id"] = int(event["o"]["i"]) - standardized["filled"] = True - elif event["o"]["X"] == "PARTIALLY_FILLED": - standardized["deleted_order_id"] = int(event["o"]["i"]) - standardized["partially_filled"] = True - else: - standardized["other_symbol"] = event["o"]["s"] - standardized["other_type"] = "order_update" - return standardized diff --git a/exchanges/binance_spot.py b/exchanges/binance_spot.py deleted file mode 100644 index 92985133a..000000000 --- a/exchanges/binance_spot.py +++ /dev/null @@ -1,785 +0,0 @@ -import asyncio -import hashlib -import hmac -import json -import traceback -from time import time -from urllib.parse import urlencode - -import aiohttp -import numpy as np - -from njit_funcs import ( - round_dn, - round_up, - calc_pnl_long, - calc_min_entry_qty, - qty_to_cost, - calc_upnl, - calc_diff, -) -from passivbot import Bot -from procedures import print_, print_async_exception -from pure_funcs import ( - ts_to_date, - sort_dict_keys, - calc_pprice_long, - format_float, - get_position_fills, - spotify_config, -) - - -class BinanceBotSpot(Bot): - def __init__(self, config: dict): - if config["exchange"] == "binance_us": - self.exchange = "binance_us" - else: - self.exchange = "binance_spot" - self.balance = {} - super().__init__(spotify_config(config)) - self.spot = self.config["spot"] = True - self.inverse = self.config["inverse"] = False - self.hedge_mode = self.config["hedge_mode"] = False - self.do_short = self.config["do_short"] = self.config["short"]["enabled"] = False - self.session = aiohttp.ClientSession() - self.headers = {"X-MBX-APIKEY": self.key} - self.base_endpoint = "" - self.force_update_interval = 40 - self.max_n_orders_per_batch = 5 - self.max_n_cancellations_per_batch = 10 - - async def public_get(self, url: str, params: dict = {}) -> dict: - async with self.session.get(self.base_endpoint + url, params=params) as response: - result = await response.text() - return json.loads(result) - - async def private_(self, type_: str, base_endpoint: str, url: str, params: dict = {}) -> dict: - timestamp = int(time() * 1000) - params.update({"timestamp": timestamp, "recvWindow": 5000}) - for k in params: - if type(params[k]) == bool: - params[k] = "true" if params[k] else "false" - elif type(params[k]) == float: - params[k] = format_float(params[k]) - params = sort_dict_keys(params) - params["signature"] = hmac.new( - self.secret.encode("utf-8"), - urlencode(params).encode("utf-8"), - hashlib.sha256, - ).hexdigest() - async with getattr(self.session, type_)( - base_endpoint + url, params=params, headers=self.headers - ) as response: - result = await response.text() - return json.loads(result) - - async def post_listen_key(self): - async with self.session.post( - self.base_endpoint + self.endpoints["listen_key"], - params={}, - headers=self.headers, - ) as response: - result = await response.text() - return json.loads(result) - - async def private_get(self, url: str, params: dict = {}) -> dict: - return await self.private_("get", self.base_endpoint, url, params) - - async def private_post(self, url: str, params: dict = {}) -> dict: - return await self.private_("post", self.base_endpoint, url, params) - - async def private_delete(self, url: str, params: dict = {}) -> dict: - return await self.private_("delete", self.base_endpoint, url, params) - - def init_market_type(self): - print("spot market") - if "spot" not in self.market_type: - self.market_type += "_spot" - self.inverse = self.config["inverse"] = False - self.spot = True - self.hedge_mode = False - self.pair = self.symbol - self.endpoints = { - "balance": "/api/v3/account", - "exchange_info": "/api/v3/exchangeInfo", - "open_orders": "/api/v3/openOrders", - "ticker": "/api/v3/ticker/bookTicker", - "fills": "/api/v3/myTrades", - "fills_detailed": "/api/v3/allOrders", - "create_order": "/api/v3/order", - "cancel_order": "/api/v3/order", - "ticks": "/api/v3/aggTrades", - "ohlcvs": "/api/v3/klines", - "listen_key": "/api/v3/userDataStream", - "server_time": "/api/v3/time", - } - - self.endpoints["transfer"] = "/sapi/v1/asset/transfer" - self.endpoints["account"] = "/api/v3/account" - if self.exchange == "binance_us": - self.base_endpoint = "https://api.binance.us" - self.endpoints["websocket"] = "wss://stream.binance.us:9443/ws/" - else: - self.base_endpoint = "https://api.binance.com" - self.endpoints["websocket"] = "wss://stream.binance.com/ws/" - self.endpoints["websocket_market"] = ( - self.endpoints["websocket"] + f"{self.symbol.lower()}@aggTrade" - ) - self.endpoints["websocket_user"] = self.endpoints["websocket"] - - async def _init(self): - self.init_market_type() - exchange_info = await self.public_get(self.endpoints["exchange_info"]) - for e in exchange_info["symbols"]: - if e["symbol"] == self.symbol: - self.coin = e["baseAsset"] - self.quote = self.margin_coin = e["quoteAsset"] - for q in e["filters"]: - if q["filterType"] == "LOT_SIZE": - self.min_qty = self.config["min_qty"] = float(q["minQty"]) - self.qty_step = self.config["qty_step"] = float(q["stepSize"]) - elif q["filterType"] == "PRICE_FILTER": - self.price_step = self.config["price_step"] = float(q["tickSize"]) - self.min_price = float(q["minPrice"]) - self.max_price = float(q["maxPrice"]) - elif q["filterType"] == "PERCENT_PRICE_BY_SIDE": - self.price_multiplier_up = min( - float(q["bidMultiplierUp"]), float(q["askMultiplierUp"]) - ) - self.price_multiplier_dn = max( - float(q["bidMultiplierDown"]), float(q["askMultiplierDown"]) - ) - elif q["filterType"] in ["MIN_NOTIONAL", "NOTIONAL"]: - self.min_cost = self.config["min_cost"] = float(q["minNotional"]) - try: - z = self.min_cost - except AttributeError: - self.min_cost = self.config["min_cost"] = 0.0 - break - - await super()._init() - await self.init_order_book() - await self.update_position() - - async def get_server_time(self): - now = await self.public_get(self.endpoints["server_time"]) - return now["serverTime"] - - def calc_orders(self): - default_orders = super().calc_orders() - orders = [] - remaining_cost = self.balance[self.quote]["onhand"] - for order in sorted(default_orders, key=lambda x: calc_diff(x["price"], self.price)): - if order["price"] > min( - self.max_price, - round_dn(self.price * self.price_multiplier_up, self.price_step), - ): - print(f'price {order["price"]} too high') - continue - if order["price"] < max( - self.min_price, - round_up(self.price * self.price_multiplier_dn, self.price_step), - ): - print(f'price {order["price"]} too low') - continue - if order["side"] == "buy": - cost = qty_to_cost(order["qty"], order["price"], self.inverse, self.c_mult) - if cost > remaining_cost: - adjusted_qty = round_dn(remaining_cost / order["price"], self.qty_step) - min_entry_qty = calc_min_entry_qty( - order["price"], - self.inverse, - self.c_mult, - self.qty_step, - self.min_qty, - self.min_cost, - ) - if adjusted_qty >= min_entry_qty: - orders.append({**order, **{"qty": adjusted_qty}}) - remaining_cost = 0.0 - else: - orders.append(order) - remaining_cost -= cost - else: - # TODO: ensure sell qty is greater than min qty - orders.append(order) - return orders - - async def check_if_other_positions(self, abort=True): - pass - # todo... - - async def execute_leverage_change(self): - pass - - async def init_exchange_config(self): - await self.check_if_other_positions() - - async def init_order_book(self): - ticker = None - try: - ticker = await self.public_get(self.endpoints["ticker"], {"symbol": self.symbol}) - self.ob = [float(ticker["bidPrice"]), float(ticker["askPrice"])] - self.price = np.random.choice(self.ob) - return True - except Exception as e: - print(f"error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - return [ - { - "order_id": int(e["orderId"]), - "custom_id": e["clientOrderId"], - "symbol": e["symbol"], - "price": float(e["price"]), - "qty": float(e["origQty"]), - "type": e["type"].lower(), - "side": e["side"].lower(), - "position_side": "long", - "timestamp": int(e["time"]), - } - for e in await self.private_get(self.endpoints["open_orders"], {"symbol": self.symbol}) - ] - - async def fetch_position(self) -> dict: - balances, _ = await asyncio.gather( - self.private_get(self.endpoints["balance"]), self.update_fills() - ) - balance = {} - for elm in balances["balances"]: - balance[elm["asset"]] = {"free": float(elm["free"])} - balance[elm["asset"]]["locked"] = float(elm["locked"]) - balance[elm["asset"]]["onhand"] = ( - balance[elm["asset"]]["free"] + balance[elm["asset"]]["locked"] - ) - if "BNB" in balance: - balance["BNB"]["onhand"] = max(0.0, balance["BNB"]["onhand"] - 0.01) - self.balance = balance - return self.calc_simulated_position(self.balance, self.fills) - - def calc_simulated_position(self, balance: dict, long_fills: [dict]) -> dict: - """ - balance = {'BTC': {'free': float, 'locked': float, 'onhand': float}, ...} - long_pfills = [{order...}, ...] - """ - psize_long = round_dn(balance[self.coin]["onhand"], self.qty_step) - long_pfills, short_pfills = get_position_fills(psize_long, 0.0, self.fills) - pprice_long = calc_pprice_long(psize_long, long_pfills) if psize_long else 0.0 - if psize_long * pprice_long < self.min_cost: - psize_long, pprice_long, long_pfills = 0.0, 0.0, [] - position = { - "long": { - "size": psize_long, - "price": pprice_long, - "liquidation_price": 0.0, - }, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": balance[self.quote]["onhand"] - + balance[self.coin]["onhand"] * pprice_long, - } - return position - - async def execute_orders(self, orders: [dict]) -> [dict]: - if not orders: - return [] - creations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - creation = None - try: - creation = asyncio.create_task(self.execute_order(order)) - creations.append((order, creation)) - except Exception as e: - print(f"error creating order {order} {e}") - print_async_exception(creation) - traceback.print_exc() - results = [] - for creation in creations: - result = None - try: - result = await creation[1] - if "code" in result and result["code"] == -1013: - print("error:", result) - results.append(result) - except Exception as e: - print(f"error creating order {creation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - cancellation = None - try: - cancellation = asyncio.create_task(self.execute_cancellation(order)) - cancellations.append((order, cancellation)) - except Exception as e: - print(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - results = [] - for cancellation in cancellations: - result = None - try: - result = await cancellation[1] - results.append(result) - except Exception as e: - print(f"error cancelling order {cancellation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_order(self, order: dict) -> dict: - params = { - "symbol": self.symbol, - "side": order["side"].upper(), - "type": order["type"].upper(), - "quantity": format_float(order["qty"]), - } - if params["type"] == "LIMIT": - params["timeInForce"] = "GTC" - params["price"] = format_float(order["price"]) - params["newClientOrderId"] = order["custom_id"] - o = await self.private_post(self.endpoints["create_order"], params) - if "side" in o: - return { - "symbol": self.symbol, - "side": o["side"].lower(), - "position_side": "long", - "type": o["type"].lower(), - "qty": float(o["origQty"]), - "order_id": int(o["orderId"]), - "price": float(o["price"]), - } - else: - return o - - async def execute_cancellation(self, order: dict) -> [dict]: - cancellation = None - try: - cancellation = await self.private_delete( - self.endpoints["cancel_order"], - {"symbol": self.symbol, "orderId": order["order_id"]}, - ) - return { - "symbol": self.symbol, - "side": cancellation["side"].lower(), - "position_side": "long", - "order_id": int(cancellation["orderId"]), - "qty": float(cancellation["origQty"]), - "price": float(cancellation["price"]), - } - except Exception as e: - print(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - self.ts_released["force_update"] = 0.0 - return {} - - async def get_all_fills(self, symbol: str = None, start_time: int = None): - fills = [] - i = 0 - while True: - i += 1 - if i >= 15: - print("\nWarning: more than 15 calls to fetch_fills(), breaking") - break - fetched = await self.fetch_fills(symbol=symbol, start_time=start_time) - print_(["fetched fills", ts_to_date(fetched[0]["timestamp"])]) - if fetched == fills[-len(fetched) :]: - break - fills += fetched - if len(fetched) < 1000: - break - start_time = fills[-1]["timestamp"] - fills_d = {e["id"]: e for e in fills} - return sorted(fills_d.values(), key=lambda x: x["timestamp"]) - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "realized_pnl", - end_time: int = None, - ): - fills = await self.get_all_fills(symbol=symbol, start_time=start_time) - - income = [] - psize, pprice = 0.0, 0.0 - for fill in fills: - if fill["side"] == "buy": - new_psize = psize + fill["qty"] - pprice = pprice * (psize / new_psize) + fill["price"] * (fill["qty"] / new_psize) - psize = new_psize - elif psize > 0.0: - income.append( - { - "symbol": fill["symbol"], - "income_type": "realized_pnl", - "income": calc_pnl_long(pprice, fill["price"], fill["qty"], False, 1.0), - "token": self.quote, - "timestamp": fill["timestamp"], - "info": 0, - "transaction_id": fill["id"], - "trade_id": fill["id"], - } - ) - psize = max(0.0, psize - fill["qty"]) - return income - - async def fetch_fills( - self, - symbol: str = None, - limit: int = 1000, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - params = { - "symbol": (self.symbol if symbol is None else symbol), - "limit": min(1000, max(500, limit)), - } - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(min(end_time, start_time + 1000 * 60 * 60 * 23.99)) - try: - fetched = await self.private_get(self.endpoints["fills"], params) - fills = [ - { - "symbol": x["symbol"], - "id": int(x["id"]), - "order_id": int(x["orderId"]), - "side": "buy" if x["isBuyer"] else "sell", - "price": float(x["price"]), - "qty": float(x["qty"]), - "realized_pnl": 0.0, - "cost": float(x["quoteQty"]), - "fee_paid": float(x["commission"]), - "fee_token": x["commissionAsset"], - "timestamp": (ts := int(x["time"])), - "position_side": "long", - "datetime": ts_to_date(ts), - "is_maker": x["isMaker"], - } - for x in fetched - ] - except Exception as e: - print("error fetching fills a", e) - traceback.print_exc() - return [] - return fills - - async def fetch_latest_fills(self): - params = {"symbol": self.symbol, "limit": 100} - fetched = None - try: - fetched = await self.private_get(self.endpoints["fills_detailed"], params) - fills = [ - { - "order_id": elm["orderId"], - "symbol": elm["symbol"], - "status": elm["status"].lower(), - "custom_id": elm["clientOrderId"], - "price": float(elm["price"]), - "qty": float(elm["executedQty"]), - "original_qty": float(elm["origQty"]), - "type": elm["type"].lower(), - "reduce_only": None, - "side": elm["side"].lower(), - "position_side": "long", - "timestamp": elm["time"], - } - for elm in fetched - if "FILLED" in elm["status"] - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def fetch_income( - self, - symbol: str = None, - limit: int = 1000, - start_time: int = None, - end_time: int = None, - ): - print("fetch income not implemented in spot") - return [] - - async def fetch_account(self): - try: - return await self.private_get(self.endpoints["balance"]) - except Exception as e: - print("error fetching account: ", e) - return {"balances": []} - - async def fetch_ticks( - self, - from_id: int = None, - start_time: int = None, - end_time: int = None, - do_print: bool = True, - ): - params = {"symbol": self.symbol, "limit": 1000} - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = start_time - if end_time is not None: - params["endTime"] = end_time - try: - fetched = await self.public_get(self.endpoints["ticks"], params) - except Exception as e: - print("error fetching ticks a", e) - return [] - try: - ticks = [ - { - "trade_id": int(t["a"]), - "price": float(t["p"]), - "qty": float(t["q"]), - "timestamp": int(t["T"]), - "is_buyer_maker": t["m"], - } - for t in fetched - ] - if do_print: - print_( - [ - "fetched ticks", - self.symbol, - ticks[0]["trade_id"], - ts_to_date(float(ticks[0]["timestamp"]) / 1000), - ] - ) - except Exception as e: - print("error fetching ticks b", e, fetched) - ticks = [] - if do_print: - print_(["fetched no new ticks", self.symbol]) - return ticks - - async def fetch_ticks_time(self, start_time: int, end_time: int = None, do_print: bool = True): - return await self.fetch_ticks(start_time=start_time, end_time=end_time, do_print=do_print) - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=1000 - ): - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_map = { - "1m": 1, - "3m": 3, - "5m": 5, - "15m": 15, - "30m": 30, - "1h": 60, - "2h": 120, - "4h": 240, - "6h": 360, - "12h": 720, - "1d": 60 * 60 * 24, - "1w": 60 * 60 * 24 * 7, - "1M": 60 * 60 * 24 * 30, - } - assert interval in interval_map - params = { - "symbol": self.symbol if symbol is None else symbol, - "interval": interval, - "limit": limit, - } - if start_time is not None: - params["startTime"] = int(start_time) - params["endTime"] = params["startTime"] + interval_map[interval] * 60 * 1000 * limit - try: - fetched = await self.public_get(self.endpoints["ohlcvs"], params) - return [ - { - **{"timestamp": int(e[0])}, - **{ - k: float(e[i + 1]) - for i, k in enumerate(["open", "high", "low", "close", "volume"]) - }, - } - for e in fetched - ] - except Exception as e: - print("error fetching ohlcvs", fetched, e) - traceback.print_exc() - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - print("transfer not implemented in spot") - return - - def standardize_market_stream_event(self, data: dict) -> [dict]: - try: - return [ - { - "timestamp": int(data["T"]), - "price": float(data["p"]), - "qty": float(data["q"]), - "is_buyer_maker": data["m"], - } - ] - except Exception as e: - print("error in websocket tick", e) - return [] - - async def beat_heart_user_stream(self) -> None: - while True: - await asyncio.sleep(60 + np.random.randint(60 * 9, 60 * 14)) - await self.init_user_stream() - - async def init_user_stream(self) -> None: - try: - response = await self.post_listen_key() - self.listen_key = response["listenKey"] - self.endpoints["websocket_user"] = self.endpoints["websocket"] + self.listen_key - except Exception as e: - traceback.print_exc() - print_(["error fetching listen key", e]) - - async def on_user_stream_event(self, event: dict) -> None: - try: - pos_change = False - if "balance" in event: - onhand_change = False - for token in event["balance"]: - self.balance[token]["free"] = event["balance"][token]["free"] - self.balance[token]["locked"] = event["balance"][token]["locked"] - onhand = event["balance"][token]["free"] + event["balance"][token]["locked"] - if token in [self.quote, self.coin] and ( - "onhand" not in self.balance[token] or self.balance[token]["onhand"] != onhand - ): - onhand_change = True - if token == "BNB": - onhand = max(0.0, onhand - 0.01) - self.balance[token]["onhand"] = onhand - if onhand_change: - self.position = self.calc_simulated_position(self.balance, self.fills) - self.position["wallet_balance"] = self.adjust_wallet_balance( - self.position["wallet_balance"] - ) - self.position = self.add_wallet_exposures_to_pos(self.position) - pos_change = True - if "filled" in event: - if event["filled"]["order_id"] not in {fill["order_id"] for fill in self.fills}: - self.fills = sorted(self.fills + [event["filled"]], key=lambda x: x["order_id"]) - self.position = self.calc_simulated_position(self.balance, self.fills) - self.position["wallet_balance"] = self.adjust_wallet_balance( - self.position["wallet_balance"] - ) - self.position = self.add_wallet_exposures_to_pos(self.position) - pos_change = True - elif "partially_filled" in event: - await asyncio.sleep(0.01) - await asyncio.gather(self.update_position(), self.update_open_orders()) - pos_change = True - if "new_open_order" in event: - if event["new_open_order"]["order_id"] not in { - x["order_id"] for x in self.open_orders - }: - self.open_orders.append(event["new_open_order"]) - elif "deleted_order_id" in event: - for i, o in enumerate(self.open_orders): - if o["order_id"] == event["deleted_order_id"]: - self.open_orders = self.open_orders[:i] + self.open_orders[i + 1 :] - break - if pos_change: - self.position["equity"] = self.position["wallet_balance"] + calc_upnl( - self.position["long"]["size"], - self.position["long"]["price"], - self.position["short"]["size"], - self.position["short"]["price"], - self.price, - self.inverse, - self.c_mult, - ) - await asyncio.sleep( - 0.01 - ) # sleep 10 ms to catch both pos update and open orders update - await self.cancel_and_create() - except Exception as e: - print(["error handling user stream event", e]) - traceback.print_exc() - - def standardize_user_stream_event(self, event: dict) -> dict: - standardized = {} - if "e" in event: - if event["e"] == "outboundAccountPosition": - standardized["balance"] = {} - for e in event["B"]: - standardized["balance"][e["a"]] = { - "free": float(e["f"]), - "locked": float(e["l"]), - } - elif event["e"] == "executionReport": - if event["X"] == "NEW": - if event["s"] == self.symbol: - standardized["new_open_order"] = { - "order_id": int(event["i"]), - "symbol": event["s"], - "price": float(event["p"]), - "qty": float(event["q"]), - "type": event["o"].lower(), - "side": event["S"].lower(), - "position_side": "long", - "timestamp": int(event["T"]), - } - else: - standardized["other_symbol"] = event["s"] - standardized["other_type"] = "new_open_order" - elif event["X"] in ["CANCELED", "EXPIRED", "REJECTED"]: - if event["s"] == self.symbol: - standardized["deleted_order_id"] = int(event["i"]) - else: - standardized["other_symbol"] = event["s"] - standardized["other_type"] = event["X"].lower() - elif event["X"] == "FILLED": - if event["s"] == self.symbol: - price = fp if (fp := float(event["p"])) != 0.0 else float(event["L"]) - standardized["filled"] = { - "order_id": int(event["i"]), - "symbol": event["s"], - "price": price, - "qty": float(event["q"]), - "type": event["o"].lower(), - "side": event["S"].lower(), - "position_side": "long", - "timestamp": int(event["T"]), - } - standardized["deleted_order_id"] = standardized["filled"]["order_id"] - else: - standardized["other_symbol"] = event["s"] - standardized["other_type"] = "filled" - elif event["X"] == "PARTIALLY_FILLED": - if event["s"] == self.symbol: - price = fp if (fp := float(event["p"])) != 0.0 else float(event["L"]) - standardized["partially_filled"] = { - "order_id": int(event["i"]), - "symbol": event["s"], - "price": price, - "qty": float(event["q"]), - "type": event["o"].lower(), - "side": event["S"].lower(), - "position_side": "long", - "timestamp": int(event["T"]), - } - standardized["deleted_order_id"] = standardized["partially_filled"][ - "order_id" - ] - else: - standardized["other_symbol"] = event["s"] - standardized["other_type"] = "partially_filled" - - return standardized diff --git a/exchanges/bingx.py b/exchanges/bingx.py deleted file mode 100644 index 253aafd29..000000000 --- a/exchanges/bingx.py +++ /dev/null @@ -1,576 +0,0 @@ -import asyncio -import traceback -import os -import json -import numpy as np - -from uuid import uuid4 -from njit_funcs import calc_diff, round_ -from passivbot import Bot, logging -from procedures import print_async_exception, utc_ms, make_get_filepath -from pure_funcs import determine_pos_side_ccxt, floatify, calc_hash, ts_to_date_utc, date_to_ts2 - -import ccxt.async_support as ccxt - -from procedures import load_ccxt_version - -ccxt_version_req = load_ccxt_version() -assert ( - ccxt.__version__ == ccxt_version_req -), f"Currently ccxt {ccxt.__version__} is installed. Please pip reinstall requirements.txt or install ccxt v{ccxt_version_req} manually" - - -class BingXBot(Bot): - def __init__(self, config: dict): - self.exchange = "bingx" - self.market_type = config["market_type"] = "linear_perpetual" - self.inverse = config["inverse"] = False - - self.max_n_orders_per_batch = 7 - self.max_n_cancellations_per_batch = 10 - - super().__init__(config) - self.cc = getattr(ccxt, "bingx")( - { - "apiKey": self.key, - "secret": self.secret, - "headers": {"X-SOURCE-KEY": self.broker_code} if self.broker_code else {}, - } - ) - self.custom_id_max_length = 40 - - def init_market_type(self): - if not self.symbol.endswith("USDT"): - raise Exception(f"unsupported symbol {self.symbol}") - - async def fetch_market_info_from_cache(self): - fname = make_get_filepath(f"caches/bingx_market_info.json") - info = None - try: - if os.path.exists(fname): - info = json.load(open(fname)) - logging.info("loaded market info from cache") - if info is None or utc_ms() - info["dump_ts"] > 1000 * 60 * 60 * 24: - info = {"info": await self.cc.fetch_markets(), "dump_ts": utc_ms()} - json.dump(info, open(fname, "w")) - logging.info("dumped market info to cache") - except Exception as e: - logging.error(f"failed to load market info from cache {e}") - traceback.print_exc() - print_async_exception(info) - if info is None: - info = {"info": await self.cc.fetch_markets(), "dump_ts": utc_ms()} - return info["info"] - - async def _init(self): - info = await self.fetch_market_info_from_cache() - self.symbol_id = self.symbol - self.symbol_id_map = {elm["id"]: elm["symbol"] for elm in info if elm["type"] == "swap"} - for elm in info: - if elm["baseId"] + elm["quoteId"] == self.symbol_id and elm["type"] == "swap": - break - else: - raise Exception(f"unsupported symbol {self.symbol}") - self.symbol_id = elm["id"] - self.symbol = elm["symbol"] - self.max_leverage = elm["limits"]["leverage"]["max"] - self.coin = elm["base"] - self.quote = elm["quote"] - self.price_step = self.config["price_step"] = round( - 1.0 / (10 ** elm["precision"]["price"]), 12 - ) - self.qty_step = self.config["qty_step"] = round(1.0 / (10 ** elm["precision"]["amount"]), 12) - self.min_qty = self.config["min_qty"] = elm["contractSize"] - self.min_cost = self.config["min_cost"] = ( - 2.2 if elm["limits"]["cost"]["min"] is None else elm["limits"]["cost"]["min"] - ) - min_qty_overrides = [("OCEAN", 8)] - for coin, qty in min_qty_overrides: - if coin in self.symbol: - self.min_qty = self.config["min_qty"] = max(qty, self.min_qty) - self.margin_coin = self.quote - self.cache_path_open_orders = make_get_filepath( - f"caches/bingx_cache/open_orders_{self.user}_{self.symbol_id}.json" - ) - self.cache_path_fills = make_get_filepath( - f"caches/bingx_cache/fills_{self.user}_{self.symbol_id}.json" - ) - await super()._init() - - async def fetch_ticker(self, symbol=None): - fetched = None - try: - fetched = await self.cc.swap_v2_public_get_quote_depth( - params={"symbol": self.symbol_id, "limit": 5} - ) - ticker = { - "bid": sorted(floatify(fetched["data"]["bids"]))[-1][0], - "ask": sorted(floatify(fetched["data"]["asks"]))[0][0], - } - ticker["last"] = np.random.choice([ticker["bid"], ticker["ask"]]) - return ticker - except Exception as e: - logging.error(f"error fetching ticker {e}") - print_async_exception(fetched) - return None - - async def init_order_book(self): - return await self.update_ticker() - - async def fetch_order_details(self, order_ids, cache_path, cache=True, max_n_fetches=10): - # fetch order details for given order_ids, using cache - if len(order_ids) == 0: - return [] - if isinstance(order_ids[0], dict): - for key in ["id", "orderId", "order_id"]: - if key in order_ids[0]: - break - order_ids = [elm[key] for elm in order_ids] - cached_orders = [] - if cache: - try: - if os.path.exists(cache_path): - cached_orders = json.load(open(cache_path)) - except Exception as e: - logging.error(f"error loading cache {cache_path} {e}") - ids_cached = set([elm["orderId"] for elm in cached_orders]) - ids_to_fetch = [id_ for id_ in order_ids if id_ not in ids_cached] - - # split into multiple tasks - sublists = [ - ids_to_fetch[i : i + max_n_fetches] for i in range(0, len(ids_to_fetch), max_n_fetches) - ] - all_fetched = [] - order_details = [x for x in cached_orders if x["orderId"] in order_ids] - order_details = sorted( - {x["orderId"]: x for x in order_details}.values(), key=lambda x: float(x["orderId"]) - ) - for sublist in sublists: - logging.info( - f"debug fetch order details sublist {cache_path} n fetches: {len(ids_to_fetch) - len(all_fetched)}" - ) - fetched = await asyncio.gather( - *[ - self.cc.swap_v2_private_get_trade_order( - params={"symbol": self.symbol_id, "orderId": id_} - ) - for id_ in sublist - ] - ) - fetched = [x["data"]["order"] for x in fetched] - fetched = [{**floatify(x), **{"orderId": x["orderId"]}} for x in fetched] - all_fetched += fetched - order_details = [x for x in order_details + all_fetched if x["orderId"] in order_ids] - # dedup - order_details = sorted( - {x["orderId"]: x for x in order_details}.values(), key=lambda x: float(x["orderId"]) - ) - if cache: - try: - json.dump(order_details, open(cache_path, "w")) - except Exception as e: - logging.error(f"error dumping cache {cache_path} {e}") - return order_details - - async def fetch_open_orders(self) -> [dict]: - open_orders = None - try: - open_orders = await self.cc.fetch_open_orders(symbol=self.symbol, limit=50) - if len(open_orders) == 50: - # fetch more - pass - order_details = await self.fetch_order_details(open_orders, self.cache_path_open_orders) - order_details = {elm["orderId"]: elm for elm in order_details} - for i in range(len(open_orders)): - try: - open_orders[i]["clientOrderId"] = order_details[open_orders[i]["id"]][ - "clientOrderId" - ] - except: - return order_details, open_orders - return [ - { - "order_id": elm["id"], - "custom_id": elm["clientOrderId"], - "symbol": elm["symbol"], - "price": elm["price"], - "qty": elm["amount"], - "type": elm["type"], - "side": elm["side"], - "position_side": elm["info"]["positionSide"].lower(), - "timestamp": elm["timestamp"], - } - for elm in open_orders - ] - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(open_orders) - traceback.print_exc() - return False - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - return - - async def fetch_server_time(self): - return self.get_server_time() - - async def get_server_time(self): - server_time = None - try: - server_time = await self.cc.fetch_time() - return server_time - except Exception as e: - logging.error(f"error fetching server time {e}") - print_async_exception(server_time) - traceback.print_exc() - - async def fetch_position(self) -> dict: - positions, balance = None, None - try: - positions, balance = await asyncio.gather( - self.cc.fetch_positions(params={"symbol": self.symbol_id}), - self.cc.swap_v2_private_get_user_balance(), - ) - positions = floatify([e for e in positions if e["symbol"] == self.symbol]) - position = { - "long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": 0.0, - "equity": 0.0, - } - if positions: - for p in positions: - if p["side"] == "long": - position["long"] = { - "size": p["notional"], - "price": 0.0 if p["entryPrice"] is None else p["entryPrice"], - "liquidation_price": ( - p["liquidationPrice"] if p["liquidationPrice"] else 0.0 - ), - } - elif p["side"] == "short": - position["short"] = { - "size": -abs(p["notional"]), - "price": 0.0 if p["entryPrice"] is None else p["entryPrice"], - "liquidation_price": ( - p["liquidationPrice"] if p["liquidationPrice"] else 0.0 - ), - } - position["wallet_balance"] = float(balance["data"]["balance"]["balance"]) - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(positions) - print_async_exception(balance) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - executed_orders = await self.execute_multiple( - orders, self.execute_order, "creations", self.max_n_orders_per_batch - ) - # dump to open orders cache - to_dump = [] - for elm in executed_orders: - if "info" in elm and "clientOrderID" in elm["info"]: - # bingx inconsistent naming: "ID" and "Id" - elm["info"]["clientOrderId"] = elm["info"]["clientOrderID"] - to_dump.append(elm["info"].copy()) - if to_dump: - try: - cached_orders = json.load(open(self.cache_path_open_orders)) - except Exception as e: - logging.error(f"error loading cached open orders {e}") - traceback.print_exc() - cached_orders = [] - cached_orders.extend(to_dump) - try: - json.dump(cached_orders, open(self.cache_path_open_orders, "w")) - except Exception as e: - logging.error(f"error dumping cached open orders {e}") - traceback.print_exc() - return executed_orders - - async def execute_order(self, order: dict) -> dict: - executed = None - try: - executed = await self.cc.create_limit_order( - symbol=order["symbol"] if "symbol" in order else self.symbol, - side=order["side"].upper(), - amount=abs(order["qty"]), - price=order["price"], - params={ - "positionSide": order["position_side"].upper(), - "clientOrderID": order["custom_id"], - }, - ) - if "symbol" not in executed or executed["symbol"] is None: - executed["symbol"] = order["symbol"] if "symbol" in order else self.symbol - for key in ["side", "position_side", "qty", "price"]: - if key not in executed or executed[key] is None: - executed[key] = order[key] - return executed - except Exception as e: - if '"code":101400' in str(e): - new_min_qty = round_(max(self.min_qty, order["qty"]) + self.qty_step, self.qty_step) - logging.info( - f"successfully caught order size error, code 101400. Adjusting min_qty from {self.min_qty} to {new_min_qty}..." - ) - self.min_qty = self.xk["min_qty"] = self.config["min_qty"] = new_min_qty - logging.error(f"{order} {e}") - return {} - logging.error(f"error executing order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def execute_multiple(self, orders: [dict], func, type_: str, max_n_executions: int): - if not orders: - return [] - executions = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price))[ - :max_n_executions - ]: - execution = None - try: - execution = asyncio.create_task(func(order)) - executions.append((order, execution)) - except Exception as e: - logging.error(f"error executing {type_} {order} {e}") - print_async_exception(execution) - traceback.print_exc() - results = [] - for execution in executions: - result = None - try: - result = await execution[1] - results.append(result) - except Exception as e: - logging.error(f"error executing {type_} {execution} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) > self.max_n_cancellations_per_batch: - # prioritize cancelling reduce-only orders - try: - reduce_only_orders = [x for x in orders if x["reduce_only"]] - rest = [x for x in orders if not x["reduce_only"]] - orders = (reduce_only_orders + rest)[:max_n_cancellations_per_batch] - except Exception as e: - logging.error("debug filter cancellations {e}") - return await self.execute_multiple( - orders, self.execute_cancellation, "cancellations", self.max_n_cancellations_per_batch - ) - - async def execute_cancellation(self, order: dict) -> dict: - executed = None - try: - executed = await self.cc.cancel_order(id=order["order_id"], symbol=self.symbol) - return { - "symbol": executed["symbol"], - "side": order["side"], - "order_id": executed["id"], - "position_side": order["position_side"], - "qty": order["qty"], - "price": order["price"], - } - except Exception as e: - logging.error(f"error cancelling order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def fetch_account(self): - return - - async def fetch_ticks(self, from_id: int = None, do_print: bool = True): - return - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=1440 - ): - ohlcvs = None - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_set = { - "1m", - "3m", - "5m", - "15m", - "30m", - "1h", - "2h", - "4h", - "6h", - "8h", - "12h", - "1d", - "3d", - "1w", - "1M", - } - # endTime is respected first - assert interval in interval_set, f"unsupported timeframe {interval}" - end_time = int(await self.get_server_time() + 1000 * 60) - params = {"endTime": end_time} - if start_time is not None: - params["startTime"] = int(start_time) - try: - ohlcvs = await self.cc.fetch_ohlcv( - symbol=self.symbol if symbol is None else symbol, - timeframe=interval, - limit=limit, - params=params, - ) - keys = ["timestamp", "open", "high", "low", "close", "volume"] - return [{k: elm[i] for i, k in enumerate(keys)} for elm in ohlcvs] - except Exception as e: - logging.error(f"error fetching ohlcv {e}") - print_async_exception(ohlcvs) - traceback.print_exc() - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "Trade", - end_time: int = None, - ): - return await self.fetch_income(symbol=symbol, start_time=start_time, end_time=end_time) - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - transferred = None - try: - transferred = await self.cc.transfer(coin, amount, "CONTRACT", "SPOT") - return transferred - except: - logging.error(f"error transferring from derivatives to spot {e}") - print_async_exception(transferred) - traceback.print_exc() - - async def fetch_income( - self, - symbol: str = None, - start_time: int = None, - end_time: int = None, - ): - fetched = None - incomed = {} - try: - limit = 100 - params = {"category": "linear", "limit": limit} - if symbol is not None: - params["symbol"] = symbol - if end_time is not None: - params["endTime"] = int(end_time) - fetched = await self.cc.private_get_v5_position_closed_pnl(params) - fetched["result"]["list"] = floatify(fetched["result"]["list"]) - while True: - if fetched["result"]["list"] == []: - break - for elm in fetched["result"]["list"]: - incomed[calc_hash(elm)] = elm - if start_time is None: - break - if fetched["result"]["list"][-1]["updatedTime"] <= start_time: - break - params["cursor"] = fetched["result"]["nextPageCursor"] - fetched = await self.cc.private_get_v5_position_closed_pnl(params) - fetched["result"]["list"] = floatify(fetched["result"]["list"]) - logging.debug( - f"fetching income {ts_to_date_utc(fetched['result']['list'][-1]['updatedTime'])}" - ) - return [ - { - "symbol": elm["symbol"], - "income": elm["closedPnl"], - "token": "USDT", - "timestamp": elm["updatedTime"], - "info": elm, - "transaction_id": elm["orderId"], - "trade_id": elm["orderId"], - } - for elm in sorted(incomed.values(), key=lambda x: x["updatedTime"]) - ] - return sorted(incomed.values(), key=lambda x: x["updatedTime"]) - except Exception as e: - logging.error(f"error fetching income {e}") - print_async_exception(fetched) - traceback.print_exc() - return [] - - async def fetch_latest_fills(self, cache=True): - fetched = None - try: - age_limit = int(utc_ms() - 1000 * 60 * 60 * 48) - fetched = await self.cc.fetch_my_trades(symbol=self.symbol, since=age_limit) - fetched = [ - elm - for elm in fetched - if date_to_ts2(elm["info"]["filledTm"]) > age_limit - and elm["info"]["symbol"] == self.symbol_id - ] - order_details = await self.fetch_order_details( - [elm["info"]["orderId"] for elm in fetched], self.cache_path_fills - ) - fills = [ - { - "order_id": elm["orderId"], - "symbol": self.symbol_id_map[elm["symbol"]], - "custom_id": elm["clientOrderId"], - "price": elm["avgPrice"], - "qty": elm["executedQty"], - "type": elm["type"].lower(), - "reduce_only": None, - "side": elm["side"].lower(), - "position_side": elm["positionSide"].lower(), - "timestamp": float(elm["updateTime"]), - } - for elm in order_details - ] - return sorted(fills, key=lambda x: x["timestamp"]) - except Exception as e: - logging.error(f"error fetching latest fills {e}") - print_async_exception(fetched) - traceback.print_exc() - - async def fetch_fills( - self, - limit: int = 200, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - return [] - - async def init_exchange_config(self): - try: - res = await self.cc.swap_v2_private_post_trade_margintype( - params={"symbol": self.symbol_id, "marginType": "CROSSED"} - ) - logging.info(f"cross mode set {res}") - except Exception as e: - logging.error(f"error setting cross mode: {e}") - """ - # no hedge mode with bingx - try: - res = await self.cc.set_position_mode(hedged=True) - logging.info(f"hedge mode set {res}") - except Exception as e: - logging.error(f"error setting hedge mode: {e}") - """ - try: - res = await self.cc.swap_v2_private_post_trade_leverage( - params={"symbol": self.symbol_id, "side": "LONG", "leverage": 7} - ) - logging.info(f"leverage set long {res}") - except Exception as e: - logging.error(f"error setting leverage long: {e}") - try: - res = await self.cc.swap_v2_private_post_trade_leverage( - params={"symbol": self.symbol_id, "side": "SHORT", "leverage": 7} - ) - logging.info(f"leverage set short {res}") - except Exception as e: - logging.error(f"error setting leverage short: {e}") diff --git a/exchanges/bitget.py b/exchanges/bitget.py deleted file mode 100644 index e82522af6..000000000 --- a/exchanges/bitget.py +++ /dev/null @@ -1,1020 +0,0 @@ -import asyncio -import hashlib -import hmac -import json -import traceback -from time import time -from typing import Union, List, Dict -from urllib.parse import urlencode -from uuid import uuid4 - -import aiohttp -import base64 -import numpy as np -import pprint -import os - -from njit_funcs import round_ -from passivbot import Bot, logging -from procedures import print_async_exception, print_, utc_ms, make_get_filepath -from pure_funcs import ( - ts_to_date, - sort_dict_keys, - date_to_ts, - format_float, - flatten, - shorten_custom_id, -) - - -def first_capitalized(s: str): - return s[0].upper() + s[1:].lower() - - -def truncate_float(x: float, d: int) -> float: - if x is None: - return 0.0 - multiplier = 10**d - return int(x * multiplier) / multiplier - - -class BitgetBot(Bot): - def __init__(self, config: dict): - self.is_logged_into_user_stream = False - self.exchange = "bitget" - self.max_n_orders_per_batch = 50 - self.max_n_cancellations_per_batch = 60 - super().__init__(config) - self.base_endpoint = "https://api.bitget.com" - self.endpoints = { - "exchange_info": "/api/mix/v1/market/contracts", - "funds_transfer": "/api/spot/v1/wallet/transfer-v2", - "position": "/api/mix/v1/position/singlePosition", - "balance": "/api/mix/v1/account/accounts", - "ticker": "/api/mix/v1/market/ticker", - "tickers": "/api/mix/v1/market/tickers", - "open_orders": "/api/mix/v1/order/current", - "open_orders_all": "/api/mix/v1/order/marginCoinCurrent", - "create_order": "/api/mix/v1/order/placeOrder", - "batch_orders": "/api/mix/v1/order/batch-orders", - "batch_cancel_orders": "/api/mix/v1/order/cancel-batch-orders", - "cancel_order": "/api/mix/v1/order/cancel-order", - "ticks": "/api/mix/v1/market/fills", - "fills": "/api/mix/v1/order/fills", - "fills_detailed": "/api/mix/v1/order/history", - "ohlcvs": "/api/mix/v1/market/candles", - "websocket_market": "wss://ws.bitget.com/mix/v1/stream", - "websocket_user": "wss://ws.bitget.com/mix/v1/stream", - "set_margin_mode": "/api/mix/v1/account/setMarginMode", - "set_leverage": "/api/mix/v1/account/setLeverage", - } - self.order_side_map = { - "buy": {"long": "open_long", "short": "close_short"}, - "sell": {"long": "close_long", "short": "open_short"}, - } - self.fill_side_map = { - "burst_close_long": "sell", - "burst_close_short": "buy", - "close_long": "sell", - "open_long": "buy", - "close_short": "buy", - "open_short": "sell", - } - self.session = aiohttp.ClientSession() - self.custom_id_max_length = 64 - - def init_market_type(self): - self.symbol_stripped = self.symbol - if self.symbol.endswith("USDT"): - print("linear perpetual") - self.symbol += "_UMCBL" - self.market_type += "_linear_perpetual" - self.product_type = "umcbl" - self.inverse = self.config["inverse"] = False - self.min_cost = self.config["min_cost"] = 5.5 - elif self.symbol.endswith("USD"): - print("inverse perpetual") - self.symbol += "_DMCBL" - self.market_type += "_inverse_perpetual" - self.product_type = "dmcbl" - self.inverse = self.config["inverse"] = False - self.min_cost = self.config["min_cost"] = ( - 6.0 # will complain with $5 even if order cost > $5 - ) - else: - raise NotImplementedError("not yet implemented") - - async def _init(self): - self.init_market_type() - info = await self.fetch_exchange_info() - for e in info["data"]: - if e["symbol"] == self.symbol: - break - else: - raise Exception(f"symbol missing {self.symbol}") - self.coin = e["baseCoin"] - self.quote = e["quoteCoin"] - self.price_step = self.config["price_step"] = round_( - (10 ** (-int(e["pricePlace"]))) * int(e["priceEndStep"]), 1e-12 - ) - self.price_rounding = int(e["pricePlace"]) - self.qty_step = self.config["qty_step"] = float(e["sizeMultiplier"]) - self.min_qty = self.config["min_qty"] = float(e["minTradeNum"]) - self.margin_coin = self.coin if self.product_type == "dmcbl" else self.quote - await super()._init() - await self.init_order_book() - await self.update_position() - - async def fetch_exchange_info(self): - info = await self.public_get( - self.endpoints["exchange_info"], params={"productType": self.product_type} - ) - return info - - async def fetch_ticker(self, symbol=None): - ticker = await self.public_get( - self.endpoints["ticker"], params={"symbol": self.symbol if symbol is None else symbol} - ) - return { - "symbol": ticker["data"]["symbol"], - "bid": float(ticker["data"]["bestBid"]), - "ask": float(ticker["data"]["bestAsk"]), - "last": float(ticker["data"]["last"]), - } - - async def fetch_tickers(self, product_type=None): - tickers = await self.public_get( - self.endpoints["tickers"], - params={"productType": self.product_type if product_type is None else product_type}, - ) - return [ - { - "symbol": ticker["symbol"], - "bid": 0.0 if ticker["bestBid"] is None else float(ticker["bestBid"]), - "ask": 0.0 if ticker["bestAsk"] is None else float(ticker["bestAsk"]), - "last": 0.0 if ticker["last"] is None else float(ticker["last"]), - } - for ticker in tickers["data"] - ] - - async def init_order_book(self): - ticker = None - try: - ticker = await self.fetch_ticker() - self.ob = [ - ticker["bid"], - ticker["ask"], - ] - self.price = ticker["last"] - return True - except Exception as e: - logging.error(f"error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - fetched = await self.private_get(self.endpoints["open_orders"], {"symbol": self.symbol}) - return [ - { - "order_id": elm["orderId"], - "custom_id": elm["clientOid"], - "symbol": elm["symbol"], - "price": float(elm["price"]), - "qty": float(elm["size"]), - "side": "buy" if elm["side"] in ["close_short", "open_long"] else "sell", - "position_side": elm["posSide"], - "timestamp": float(elm["cTime"]), - } - for elm in fetched["data"] - ] - - async def fetch_open_orders_all(self) -> [dict]: - fetched = await self.private_get( - self.endpoints["open_orders_all"], {"productType": self.product_type} - ) - return [ - { - "order_id": elm["orderId"], - "custom_id": elm["clientOid"], - "symbol": elm["symbol"], - "price": float(elm["price"]), - "qty": float(elm["size"]), - "side": "buy" if elm["side"] in ["close_short", "open_long"] else "sell", - "position_side": elm["posSide"], - "timestamp": float(elm["cTime"]), - } - for elm in fetched["data"] - ] - - async def public_get(self, url: str, params: dict = {}) -> dict: - result = None - response_ = None - try: - async with self.session.get(self.base_endpoint + url, params=params) as response: - response_ = response - result = await response.text() - return json.loads(result) - except Exception as e: - logging.error(f"error with json decoding {url} {params} {e}") - traceback.print_exc() - print_async_exception(result) - print_async_exception(response_) - raise Exception - - async def private_( - self, type_: str, base_endpoint: str, url: str, params: dict = {}, json_: bool = False - ) -> dict: - def stringify(x): - if type(x) == bool: - return "true" if x else "false" - elif type(x) == float: - return format_float(x) - elif type(x) == int: - return str(x) - elif type(x) == list: - return [stringify(y) for y in x] - elif type(x) == dict: - return {k: stringify(v) for k, v in x.items()} - else: - return x - - timestamp = int(time() * 1000) - params = {k: stringify(v) for k, v in params.items()} - if type_ == "get": - url = url + "?" + urlencode(sort_dict_keys(params)) - to_sign = str(timestamp) + type_.upper() + url - elif type_ == "post": - to_sign = str(timestamp) + type_.upper() + url + json.dumps(params) - signature = base64.b64encode( - hmac.new( - self.secret.encode("utf-8"), - to_sign.encode("utf-8"), - digestmod="sha256", - ).digest() - ).decode("utf-8") - header = { - "Content-Type": "application/json", - "locale": "en-US", - "ACCESS-KEY": self.key, - "ACCESS-SIGN": signature, - "ACCESS-TIMESTAMP": str(timestamp), - "ACCESS-PASSPHRASE": self.passphrase, - } - if type_ == "post": - async with getattr(self.session, type_)( - base_endpoint + url, headers=header, data=json.dumps(params) - ) as response: - result = await response.text() - elif type_ == "get": - async with getattr(self.session, type_)(base_endpoint + url, headers=header) as response: - result = await response.text() - return json.loads(result) - - async def private_get(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict: - return await self.private_( - type_="get", - base_endpoint=self.base_endpoint if base_endpoint is None else base_endpoint, - url=url, - params=params, - ) - - async def private_post(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict: - return await self.private_( - type_="post", - base_endpoint=self.base_endpoint if base_endpoint is None else base_endpoint, - url=url, - params=params, - ) - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - params = { - "coin": "USDT", - "amount": str(amount), - "from_account_type": "mix_usdt", - "to_account_type": "spot", - } - return await self.private_( - "post", self.base_endpoint, self.endpoints["funds_transfer"], params=params, json_=True - ) - - async def get_server_time(self): - now = await self.public_get("/api/spot/v1/public/time") - return float(now["data"]) - - async def fetch_position(self) -> dict: - """ - returns {"long": {"size": float, "price": float, "liquidation_price": float}, - "short": {...}, - "wallet_balance": float} - """ - position = { - "long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": 0.0, - } - fetched_pos, fetched_balance = None, None - try: - fetched_pos, fetched_balance = await asyncio.gather( - self.private_get( - self.endpoints["position"], - {"symbol": self.symbol, "marginCoin": self.margin_coin}, - ), - self.private_get(self.endpoints["balance"], {"productType": self.product_type}), - ) - for elm in fetched_pos["data"]: - if elm["holdSide"] == "long": - position["long"] = { - "size": round_(float(elm["total"]), self.qty_step), - "price": ( - 0.0 if elm["averageOpenPrice"] is None else float(elm["averageOpenPrice"]) - ), - "liquidation_price": ( - 0.0 if elm["liquidationPrice"] is None else float(elm["liquidationPrice"]) - ), - } - - elif elm["holdSide"] == "short": - position["short"] = { - "size": -abs(round_(float(elm["total"]), self.qty_step)), - "price": ( - 0.0 if elm["averageOpenPrice"] is None else float(elm["averageOpenPrice"]) - ), - "liquidation_price": ( - 0.0 if elm["liquidationPrice"] is None else float(elm["liquidationPrice"]) - ), - } - for elm in fetched_balance["data"]: - if elm["marginCoin"] == self.margin_coin: - if self.product_type == "dmcbl": - # convert balance to usd using mean of emas as price - all_emas = list(self.emas_long) + list(self.emas_short) - if any(ema == 0.0 for ema in all_emas): - # catch case where any ema is zero - all_emas = self.ob - position["wallet_balance"] = float(elm["available"]) * np.mean(all_emas) - else: - position["wallet_balance"] = float(elm["available"]) - break - - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(fetched_pos) - print_async_exception(fetched_balance) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - if len(orders) == 0: - return [] - if len(orders) == 1: - return [await self.execute_order(orders[0])] - return await self.execute_batch_orders(orders) - - async def execute_order(self, order: dict) -> dict: - o = None - try: - params = { - "symbol": self.symbol, - "marginCoin": self.margin_coin, - "size": str(order["qty"]), - "side": self.order_side_map[order["side"]][order["position_side"]], - "orderType": order["type"], - "presetTakeProfitPrice": "", - "presetStopLossPrice": "", - } - if params["orderType"] == "limit": - params["timeInForceValue"] = "post_only" - params["price"] = str(order["price"]) - else: - params["timeInForceValue"] = "normal" - params["clientOid"] = order["custom_id"] - o = await self.private_post(self.endpoints["create_order"], params) - # print('debug create order', o, order) - if o["data"]: - # print('debug execute order', o) - return { - "symbol": self.symbol, - "side": order["side"], - "order_id": o["data"]["orderId"], - "position_side": order["position_side"], - "type": order["type"], - "qty": order["qty"], - "price": order["price"], - } - else: - return o, order - except Exception as e: - print(f"error executing order {order} {e}") - print_async_exception(o) - traceback.print_exc() - return {} - - async def execute_batch_orders(self, orders: [dict]) -> [dict]: - executed = None - try: - to_execute = [] - orders_with_custom_ids = [] - for order in orders: - params = { - "size": str(order["qty"]), - "side": self.order_side_map[order["side"]][order["position_side"]], - "orderType": order["type"], - "presetTakeProfitPrice": "", - "presetStopLossPrice": "", - } - if params["orderType"] == "limit": - params["timeInForceValue"] = "post_only" - params["price"] = str(order["price"]) - else: - params["timeInForceValue"] = "normal" - params["clientOid"] = order["custom_id"] - orders_with_custom_ids.append({**order, **{"symbol": self.symbol}}) - to_execute.append(params) - executed = await self.private_post( - self.endpoints["batch_orders"], - {"symbol": self.symbol, "marginCoin": self.margin_coin, "orderDataList": to_execute}, - ) - formatted = [] - for ex in executed["data"]["orderInfo"]: - to_add = {"order_id": ex["orderId"], "custom_id": ex["clientOid"]} - for elm in orders_with_custom_ids: - if elm["custom_id"] == ex["clientOid"]: - to_add.update(elm) - formatted.append(to_add) - break - # print('debug execute batch orders', executed, orders, formatted) - return formatted - except Exception as e: - print(f"error executing order {executed} {e}") - print_async_exception(executed) - traceback.print_exc() - return [] - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - symbol = orders[0]["symbol"] if "symbol" in orders[0] else self.symbol - try: - cancellations = await self.private_post( - self.endpoints["batch_cancel_orders"], - { - "symbol": symbol, - "marginCoin": self.margin_coin, - "orderIds": [order["order_id"] for order in orders], - }, - ) - - formatted = [] - for oid in cancellations["data"]["order_ids"]: - to_add = {"order_id": oid} - for order in orders: - if order["order_id"] == oid: - to_add.update(order) - formatted.append(to_add) - break - # print('debug cancel batch orders', cancellations, orders, formatted) - return formatted - except Exception as e: - logging.error(f"error cancelling orders {orders} {e}") - print_async_exception(cancellations) - traceback.print_exc() - return [] - - async def fetch_account(self): - raise NotImplementedError("not implemented") - try: - resp = await self.private_get( - self.endpoints["spot_balance"], base_endpoint=self.spot_base_endpoint - ) - return resp["result"] - except Exception as e: - print("error fetching account: ", e) - return {"balances": []} - - async def fetch_ticks(self, from_id: int = None, do_print: bool = True): - params = {"symbol": self.symbol, "limit": 100} - try: - ticks = await self.public_get(self.endpoints["ticks"], params) - except Exception as e: - print("error fetching ticks", e) - return [] - try: - trades = [ - { - "trade_id": int(tick["tradeId"]), - "price": float(tick["price"]), - "qty": float(tick["size"]), - "timestamp": float(tick["timestamp"]), - "is_buyer_maker": tick["side"] == "sell", - } - for tick in ticks["data"] - ] - if do_print: - print_( - [ - "fetched trades", - self.symbol, - trades[0]["trade_id"], - ts_to_date(float(trades[0]["timestamp"]) / 1000), - ] - ) - except: - trades = [] - if do_print: - print_(["fetched no new trades", self.symbol]) - return trades - - async def fetch_ohlcvs(self, symbol: str = None, start_time: int = None, interval="1m"): - # m -> minutes, h -> hours, d -> days, w -> weeks - interval_map = { - "1m": ("1m", 60), - "3m": ("3m", 60 * 3), - "5m": ("5m", 60 * 5), - "15m": ("15m", 60 * 15), - "30m": ("30m", 60 * 30), - "1h": ("1H", 60 * 60), - "2h": ("2H", 60 * 60 * 2), - "4h": ("4H", 60 * 60 * 4), - "6h": ("6H", 60 * 60 * 4), - "12h": ("12H", 60 * 60 * 12), - "1d": ("1D", 60 * 60 * 24), - "3d": ("3D", 60 * 60 * 24 * 3), - "1w": ("1W", 60 * 60 * 24 * 7), - "1M": ("1M", 60 * 60 * 24 * 30), - } - assert interval in interval_map, f"unsupported interval {interval}" - params = { - "symbol": self.symbol if symbol is None else symbol, - "granularity": interval_map[interval][0], - } - limit = 100 - seconds = float(interval_map[interval][1]) - if start_time is None: - server_time = await self.get_server_time() - params["startTime"] = int(round(float(server_time)) - 1000 * seconds * limit) - else: - params["startTime"] = int(round(start_time)) - params["endTime"] = int(round(params["startTime"] + 1000 * seconds * limit)) - fetched = await self.public_get(self.endpoints["ohlcvs"], params) - return [ - { - "timestamp": float(e[0]), - "open": float(e[1]), - "high": float(e[2]), - "low": float(e[3]), - "close": float(e[4]), - "volume": float(e[5]), - } - for e in fetched - ] - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - end_time: int = None, - ): - if end_time is None: - end_time = utc_ms() + 1000 * 60 * 60 * 6 - if start_time is None: - start_time = utc_ms() - 1000 * 60 * 60 * 24 * 3 - all_fills = [] - all_fills_ids = set() - while True: - fills = await self.fetch_fills(symbol=symbol, start_time=start_time, end_time=end_time) - # latest fills returned first - if not fills: - break - new_fills = [] - for elm in fills: - if elm["id"] not in all_fills_ids: - new_fills.append(elm) - all_fills_ids.add(elm["id"]) - if not new_fills: - break - end_time = fills[-1]["timestamp"] - all_fills += new_fills - income = [ - { - "symbol": elm["symbol"], - "transaction_id": elm["id"], - "income": elm["realized_pnl"], - "token": self.quote, - "timestamp": elm["timestamp"], - } - for elm in all_fills - ] - return sorted([elm for elm in income if elm["income"] != 0.0], key=lambda x: x["timestamp"]) - - async def fetch_income( - self, - symbol: str = None, - start_time: int = None, - end_time: int = None, - ): - raise NotImplementedError - - async def fetch_latest_fills_new(self): - cached = None - fname = make_get_filepath(f"logs/fills_cached_bitget/{self.user}_{self.symbol}.json") - try: - if os.path.exists(fname): - cached = json.load(open(fname)) - else: - cached = [] - except Exception as e: - logging.error("error loading fills cache", e) - traceback.print_exc() - cached = [] - fetched = None - lookback_since = int( - utc_ms() - max(flatten([v for k, v in self.xk.items() if "delay_between_fills_ms" in k])) - ) - try: - params = { - "symbol": self.symbol, - "startTime": lookback_since, - "endTime": int(utc_ms() + 1000 * 60 * 60 * 2), - "pageSize": 100, - } - fetched = await self.private_get(self.endpoints["fills_detailed"], params) - if ( - fetched["code"] == "00000" - and fetched["msg"] == "success" - and fetched["data"]["orderList"] is None - ): - return [] - fetched = fetched["data"]["orderList"] - k = 0 - while fetched and float(fetched[-1]["cTime"]) > utc_ms() - 1000 * 60 * 60 * 24 * 3: - k += 1 - if k > 5: - break - params["endTime"] = int(float(fetched[-1]["cTime"])) - fetched2 = (await self.private_get(self.endpoints["fills_detailed"], params))["data"][ - "orderList" - ] - if fetched2[-1] == fetched[-1]: - break - fetched_d = {x["orderId"]: x for x in fetched + fetched2} - fetched = sorted(fetched_d.values(), key=lambda x: float(x["cTime"]), reverse=True) - fills = [ - { - "order_id": elm["orderId"], - "symbol": elm["symbol"], - "status": elm["state"], - "custom_id": elm["clientOid"], - "price": float(elm["priceAvg"]), - "qty": float(elm["filledQty"]), - "original_qty": float(elm["size"]), - "type": elm["orderType"], - "reduce_only": elm["reduceOnly"], - "side": "buy" if elm["side"] in ["close_short", "open_long"] else "sell", - "position_side": elm["posSide"], - "timestamp": float(elm["cTime"]), - } - for elm in fetched - if "filled" in elm["state"] - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def fetch_latest_fills(self): - fetched = None - try: - params = { - "symbol": self.symbol, - "startTime": int(utc_ms() - 1000 * 60 * 60 * 24 * 6), - "endTime": int(utc_ms() + 1000 * 60 * 60 * 2), - "pageSize": 100, - } - fetched = await self.private_get(self.endpoints["fills_detailed"], params) - if ( - fetched["code"] == "00000" - and fetched["msg"] == "success" - and fetched["data"]["orderList"] is None - ): - return [] - fetched = fetched["data"]["orderList"] - k = 0 - while fetched and float(fetched[-1]["cTime"]) > utc_ms() - 1000 * 60 * 60 * 24 * 3: - k += 1 - if k > 5: - break - params["endTime"] = int(float(fetched[-1]["cTime"])) - fetched2 = (await self.private_get(self.endpoints["fills_detailed"], params))["data"][ - "orderList" - ] - if fetched2[-1] == fetched[-1]: - break - fetched_d = {x["orderId"]: x for x in fetched + fetched2} - fetched = sorted(fetched_d.values(), key=lambda x: float(x["cTime"]), reverse=True) - fills = [ - { - "order_id": elm["orderId"], - "symbol": elm["symbol"], - "status": elm["state"], - "custom_id": elm["clientOid"], - "price": float(elm["priceAvg"]), - "qty": float(elm["filledQty"]), - "original_qty": float(elm["size"]), - "type": elm["orderType"], - "reduce_only": elm["reduceOnly"], - "side": "buy" if elm["side"] in ["close_short", "open_long"] else "sell", - "position_side": elm["posSide"], - "timestamp": float(elm["cTime"]), - } - for elm in fetched - if "filled" in elm["state"] - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def fetch_fills( - self, - symbol=None, - limit: int = 100, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - params = {"symbol": self.symbol if symbol is None else symbol} - if from_id is not None: - params["lastEndId"] = max(0, from_id - 1) - if start_time is None: - server_time = await self.get_server_time() - params["startTime"] = int(round(server_time - 1000 * 60 * 60 * 24)) - else: - params["startTime"] = int(round(start_time)) - - if end_time is None: - params["endTime"] = int(round(time() + 60 * 60 * 24) * 1000) - else: - params["endTime"] = int(round(end_time + 1)) - try: - fetched = await self.private_get(self.endpoints["fills"], params) - fills = [ - { - "symbol": x["symbol"], - "id": int(x["tradeId"]), - "order_id": int(x["orderId"]), - "side": self.fill_side_map[x["side"]], - "price": float(x["price"]), - "qty": float(x["sizeQty"]), - "realized_pnl": float(x["profit"]), - "cost": float(x["fillAmount"]), - "fee_paid": float(x["fee"]), - "fee_token": self.quote, - "timestamp": int(x["cTime"]), - "position_side": "long" if "long" in x["side"] else "short", - "is_maker": "unknown", - } - for x in fetched["data"] - ] - except Exception as e: - print("error fetching fills", e) - traceback.print_exc() - return [] - return fills - - async def init_exchange_config(self): - try: - # set margin mode - res = await self.private_post( - self.endpoints["set_margin_mode"], - params={ - "symbol": self.symbol, - "marginCoin": self.margin_coin, - "marginMode": "crossed", - }, - ) - print(res) - # set leverage - res = await self.private_post( - self.endpoints["set_leverage"], - params={ - "symbol": self.symbol, - "marginCoin": self.margin_coin, - "leverage": self.leverage, - }, - ) - print(res) - except Exception as e: - print("error initiating exchange config", e) - - def standardize_market_stream_event(self, data: dict) -> [dict]: - if "action" not in data or data["action"] != "update": - return [] - ticks = [] - for e in data["data"]: - try: - ticks.append( - { - "timestamp": int(e[0]), - "price": float(e[1]), - "qty": float(e[2]), - "is_buyer_maker": e[3] == "sell", - } - ) - except Exception as ex: - print("error in websocket tick", e, ex) - return ticks - - async def beat_heart_user_stream(self) -> None: - while True: - await asyncio.sleep(27) - try: - await self.ws_user.send(json.dumps({"op": "ping"})) - except Exception as e: - traceback.print_exc() - print_(["error sending heartbeat user", e]) - - async def beat_heart_market_stream(self) -> None: - while True: - await asyncio.sleep(27) - try: - await self.ws_market.send(json.dumps({"op": "ping"})) - except Exception as e: - traceback.print_exc() - print_(["error sending heartbeat market", e]) - - async def subscribe_to_market_stream(self, ws): - res = await ws.send( - json.dumps( - { - "op": "subscribe", - "args": [ - { - "instType": "mc", - "channel": "trade", - "instId": self.symbol_stripped, - } - ], - } - ) - ) - - async def subscribe_to_user_streams(self, ws): - res = await ws.send( - json.dumps( - { - "op": "subscribe", - "args": [ - { - "instType": self.product_type.upper(), - "channel": "account", - "instId": "default", - } - ], - } - ) - ) - print(res) - res = await ws.send( - json.dumps( - { - "op": "subscribe", - "args": [ - { - "instType": self.product_type.upper(), - "channel": "positions", - "instId": "default", - } - ], - } - ) - ) - print(res) - res = await ws.send( - json.dumps( - { - "op": "subscribe", - "args": [ - { - "channel": "orders", - "instType": self.product_type.upper(), - "instId": "default", - } - ], - } - ) - ) - print(res) - - async def subscribe_to_user_stream(self, ws): - if self.is_logged_into_user_stream: - await self.subscribe_to_user_streams(ws) - else: - await self.login_to_user_stream(ws) - - async def login_to_user_stream(self, ws): - timestamp = int(time()) - signature = base64.b64encode( - hmac.new( - self.secret.encode("utf-8"), - f"{timestamp}GET/user/verify".encode("utf-8"), - digestmod="sha256", - ).digest() - ).decode("utf-8") - res = await ws.send( - json.dumps( - { - "op": "login", - "args": [ - { - "apiKey": self.key, - "passphrase": self.passphrase, - "timestamp": timestamp, - "sign": signature, - } - ], - } - ) - ) - print(res) - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - return {"code": "-1", "msg": "Transferring funds not supported for Bitget"} - - def standardize_user_stream_event( - self, event: Union[List[Dict], Dict] - ) -> Union[List[Dict], Dict]: - events = [] - if "event" in event and event["event"] == "login": - self.is_logged_into_user_stream = True - return {"logged_in": True} - # logging.info(f"debug 0 {event}") - if "arg" in event and "data" in event and "channel" in event["arg"]: - if event["arg"]["channel"] == "orders": - for elm in event["data"]: - if elm["instId"] == self.symbol and "status" in elm: - standardized = {} - if elm["status"] == "cancelled": - standardized["deleted_order_id"] = elm["ordId"] - elif elm["status"] == "new": - standardized["new_open_order"] = { - "order_id": elm["ordId"], - "symbol": elm["instId"], - "price": float(elm["px"]), - "qty": float(elm["sz"]), - "type": elm["ordType"], - "side": elm["side"], - "position_side": elm["posSide"], - "timestamp": elm["uTime"], - } - elif elm["status"] == "partial-fill": - standardized["deleted_order_id"] = elm["ordId"] - standardized["partially_filled"] = True - elif elm["status"] == "full-fill": - standardized["deleted_order_id"] = elm["ordId"] - standardized["filled"] = True - events.append(standardized) - if event["arg"]["channel"] == "positions": - long_pos = {"psize_long": 0.0, "pprice_long": 0.0} - short_pos = {"psize_short": 0.0, "pprice_short": 0.0} - for elm in event["data"]: - if elm["instId"] == self.symbol and "averageOpenPrice" in elm: - if elm["holdSide"] == "long": - long_pos["psize_long"] = round_(abs(float(elm["total"])), self.qty_step) - long_pos["pprice_long"] = truncate_float( - elm["averageOpenPrice"], self.price_rounding - ) - elif elm["holdSide"] == "short": - short_pos["psize_short"] = -abs( - round_(abs(float(elm["total"])), self.qty_step) - ) - short_pos["pprice_short"] = truncate_float( - elm["averageOpenPrice"], self.price_rounding - ) - # absence of elemet means no pos - events.append(long_pos) - events.append(short_pos) - - if event["arg"]["channel"] == "account": - for elm in event["data"]: - if elm["marginCoin"] == self.quote: - events.append({"wallet_balance": float(elm["available"])}) - return events - - def format_custom_ids(self, orders: [dict]) -> [dict]: - # bitget needs broker code plus '#' at the beginning of the custom_id - new_orders = [] - for order in orders: - order["custom_id"] = ( - self.broker_code - + "#" - + shorten_custom_id(order["custom_id"] if "custom_id" in order else "") - + uuid4().hex - )[: self.custom_id_max_length] - new_orders.append(order) - return new_orders diff --git a/exchanges/bybit.py b/exchanges/bybit.py deleted file mode 100644 index ac8c9f230..000000000 --- a/exchanges/bybit.py +++ /dev/null @@ -1,480 +0,0 @@ -import asyncio -import traceback -import os -import json - -from uuid import uuid4 -from njit_funcs import calc_diff -from passivbot import Bot, logging -from procedures import print_async_exception, utc_ms, make_get_filepath -from pure_funcs import determine_pos_side_ccxt, floatify, calc_hash, ts_to_date_utc - -import ccxt.async_support as ccxt - -from procedures import load_ccxt_version - -ccxt_version_req = load_ccxt_version() -assert ( - ccxt.__version__ == ccxt_version_req -), f"Currently ccxt {ccxt.__version__} is installed. Please pip reinstall requirements.txt or install ccxt v{ccxt_version_req} manually" - - -class BybitBot(Bot): - def __init__(self, config: dict): - self.exchange = "bybit" - self.market_type = config["market_type"] = "linear_perpetual" - self.inverse = config["inverse"] = False - - self.max_n_orders_per_batch = 7 - self.max_n_cancellations_per_batch = 10 - - super().__init__(config) - self.cc = getattr(ccxt, "bybit")( - { - "apiKey": self.key, - "secret": self.secret, - "headers": {"referer": self.broker_code} if self.broker_code else {}, - } - ) - - def init_market_type(self): - if not self.symbol.endswith("USDT"): - raise Exception(f"unsupported symbol {self.symbol}") - - async def fetch_market_info_from_cache(self): - fname = make_get_filepath(f"caches/bybit_market_info.json") - info = None - try: - if os.path.exists(fname): - info = json.load(open(fname)) - logging.info("loaded market info from cache") - if info is None or utc_ms() - info["dump_ts"] > 1000 * 60 * 60 * 24: - info = {"info": await self.cc.fetch_markets(), "dump_ts": utc_ms()} - json.dump(info, open(fname, "w")) - logging.info("dumped market info to cache") - except Exception as e: - logging.error(f"failed to load market info from cache {e}") - traceback.print_exc() - print_async_exception(info) - if info is None: - info = {"info": await self.cc.fetch_markets(), "dump_ts": utc_ms()} - json.dump(info, open(fname, "w")) - logging.info("dumped market info to cache") - return info["info"] - - async def _init(self): - info = await self.fetch_market_info_from_cache() - self.symbol_id = self.symbol - for elm in info: - if elm["id"] == self.symbol_id and elm["type"] == "swap": - break - else: - raise Exception(f"unsupported symbol {self.symbol}") - self.symbol = elm["symbol"] - self.max_leverage = elm["limits"]["leverage"]["max"] - self.coin = elm["base"] - self.quote = elm["quote"] - self.price_step = self.config["price_step"] = elm["precision"]["price"] - self.qty_step = self.config["qty_step"] = elm["precision"]["amount"] - self.min_qty = self.config["min_qty"] = elm["limits"]["amount"]["min"] - self.min_cost = self.config["min_cost"] = ( - 0.1 if elm["limits"]["cost"]["min"] is None else elm["limits"]["cost"]["min"] - ) - self.margin_coin = self.quote - await super()._init() - - async def fetch_ticker(self, symbol=None): - ticker = None - try: - ticker = await self.cc.fetch_ticker(symbol=self.symbol if symbol is None else symbol) - return ticker - except Exception as e: - logging.error(f"error fetching ticker {e}") - print_async_exception(ticker) - return None - - async def init_order_book(self): - return await self.update_ticker() - - async def fetch_open_orders(self) -> [dict]: - open_orders = None - try: - open_orders = await self.cc.fetch_open_orders(symbol=self.symbol, limit=50) - if len(open_orders) == 50: - # fetch more - pass - return [ - { - "order_id": e["id"], - "custom_id": e["clientOrderId"], - "symbol": e["symbol"], - "price": e["price"] if e["price"] is not None else self.price, - "qty": e["amount"], - "type": e["type"], - "side": e["side"], - "position_side": determine_pos_side_ccxt(e), - "timestamp": e["timestamp"], - } - for e in open_orders - ] - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(open_orders) - traceback.print_exc() - return False - - async def get_server_time(self): - server_time = None - try: - server_time = await self.cc.fetch_time() - return server_time - except Exception as e: - logging.error(f"error fetching server time {e}") - print_async_exception(server_time) - traceback.print_exc() - - async def fetch_position(self) -> dict: - positions, balance = None, None - position = { - "long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": 0.0, - "equity": 0.0, - } - try: - positions, balance = await asyncio.gather( - self.cc.fetch_positions(self.symbol), self.cc.fetch_balance() - ) - positions = [e for e in positions if e["symbol"] == self.symbol] - if positions: - for p in positions: - if p["side"] == "long": - position["long"] = { - "size": p["contracts"], - "price": 0.0 if p["entryPrice"] is None else p["entryPrice"], - "liquidation_price": ( - p["liquidationPrice"] if p["liquidationPrice"] else 0.0 - ), - } - elif p["side"] == "short": - position["short"] = { - "size": -abs(p["contracts"]), - "price": 0.0 if p["entryPrice"] is None else p["entryPrice"], - "liquidation_price": ( - p["liquidationPrice"] if p["liquidationPrice"] else 0.0 - ), - } - position["wallet_balance"] = balance[self.quote]["total"] - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(positions) - print_async_exception(balance) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - return await self.execute_multiple( - orders, self.execute_order, "creations", self.max_n_orders_per_batch - ) - - async def execute_order(self, order: dict) -> dict: - executed = None - try: - executed = await self.cc.create_limit_order( - symbol=order["symbol"] if "symbol" in order else self.symbol, - side=order["side"], - amount=abs(order["qty"]), - price=order["price"], - params={ - "positionIdx": 1 if order["position_side"] == "long" else 2, - "timeInForce": "postOnly", - "orderLinkId": order["custom_id"], - }, - ) - if "symbol" not in executed or executed["symbol"] is None: - executed["symbol"] = order["symbol"] if "symbol" in order else self.symbol - for key in ["side", "position_side", "qty", "price"]: - if key not in executed or executed[key] is None: - executed[key] = order[key] - return executed - except Exception as e: - logging.error(f"error executing order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def execute_multiple(self, orders: [dict], func, type_: str, max_n_executions: int): - if not orders: - return [] - executions = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price))[ - :max_n_executions - ]: - execution = None - try: - execution = asyncio.create_task(func(order)) - executions.append((order, execution)) - except Exception as e: - logging.error(f"error executing {type_} {order} {e}") - print_async_exception(execution) - traceback.print_exc() - results = [] - for execution in executions: - result = None - try: - result = await execution[1] - results.append(result) - except Exception as e: - logging.error(f"error executing {type_} {execution} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) > self.max_n_cancellations_per_batch: - # prioritize cancelling reduce-only orders - try: - reduce_only_orders = [x for x in orders if x["reduce_only"]] - rest = [x for x in orders if not x["reduce_only"]] - orders = (reduce_only_orders + rest)[:max_n_cancellations_per_batch] - except Exception as e: - logging.error("debug filter cancellations {e}") - return await self.execute_multiple( - orders, self.execute_cancellation, "cancellations", self.max_n_cancellations_per_batch - ) - - async def execute_cancellation(self, order: dict) -> dict: - executed = None - try: - executed = await self.cc.cancel_order(order["order_id"], symbol=self.symbol) - return { - "symbol": executed["symbol"], - "side": order["side"], - "order_id": executed["id"], - "position_side": order["position_side"], - "qty": order["qty"], - "price": order["price"], - } - except Exception as e: - logging.error(f"error cancelling order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def fetch_account(self): - return - - async def fetch_ticks(self, from_id: int = None, do_print: bool = True): - return - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=1000 - ): - ohlcvs = None - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_map = { - "1m": 1, - "3m": 3, - "5m": 5, - "15m": 15, - "30m": 30, - "1h": 60, - "2h": 120, - "4h": 240, - "6h": 360, - "12h": 720, - "1d": "D", - "1w": "W", - "1M": "M", - } - assert interval in interval_map, f"unsupported timeframe {interval}" - try: - ohlcvs = await self.cc.fetch_ohlcv( - self.symbol if symbol is None else symbol, - timeframe=interval_map[interval], - limit=limit, - params={} if start_time is None else {"startTime": int(start_time)}, - ) - keys = ["timestamp", "open", "high", "low", "close", "volume"] - return [{k: elm[i] for i, k in enumerate(keys)} for elm in ohlcvs] - except Exception as e: - logging.error(f"error fetching ohlcv {e}") - print_async_exception(ohlcvs) - traceback.print_exc() - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - transferred = None - try: - transferred = await self.cc.private_post_v5_asset_transfer_inter_transfer( - params={ - "transferId": str(uuid4()), - "coin": coin, - "amount": str(amount), - "fromAccountType": "CONTRACT", - "toAccountType": "SPOT", - } - ) - return transferred - except Exception as e: - logging.error(f"error transferring from derivatives to spot {e}") - print_async_exception(transferred) - traceback.print_exc() - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "Trade", - end_time: int = None, - ): - if start_time is not None: - week = 1000 * 60 * 60 * 24 * 7 - income = [] - if end_time is None: - end_time = int(utc_ms() + 1000 * 60 * 60 * 24) - # bybit has limit of 7 days per pageinated fetch - # fetch multiple times - i = 1 - while i < 52: # limit n fetches to 52 (one year) - sts = end_time - week * i - ets = sts + week - sts = max(sts, start_time) - fetched = await self.fetch_income(symbol=symbol, start_time=sts, end_time=ets) - income.extend(fetched) - if sts <= start_time: - break - i += 1 - logging.debug(f"fetching income for more than a week {ts_to_date_utc(sts)}") - # print(f"fetching income for more than a week {ts_to_date_utc(sts)}") - return sorted( - {calc_hash(elm): elm for elm in income}.values(), key=lambda x: x["timestamp"] - ) - else: - return await self.fetch_income(symbol=symbol, start_time=start_time, end_time=end_time) - - async def fetch_income( - self, - symbol: str = None, - start_time: int = None, - end_time: int = None, - ): - fetched = None - income_d = {} - limit = 100 - try: - params = {"category": "linear", "limit": limit} - if symbol is not None: - params["symbol"] = symbol - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(end_time) - fetched = await self.cc.private_get_v5_position_closed_pnl(params) - fetched["result"]["list"] = sorted( - floatify(fetched["result"]["list"]), key=lambda x: x["updatedTime"] - ) - while True: - if fetched["result"]["list"] == []: - break - # print(f"fetching income {ts_to_date_utc(fetched['result']['list'][-1]['updatedTime'])}") - logging.debug( - f"fetching income {ts_to_date_utc(fetched['result']['list'][-1]['updatedTime'])}" - ) - if ( - calc_hash(fetched["result"]["list"][0]) in income_d - and calc_hash(fetched["result"]["list"][-1]) in income_d - ): - break - for elm in fetched["result"]["list"]: - income_d[calc_hash(elm)] = elm - if start_time is None: - break - if fetched["result"]["list"][0]["updatedTime"] <= start_time: - break - if not fetched["result"]["nextPageCursor"]: - break - params["cursor"] = fetched["result"]["nextPageCursor"] - fetched = await self.cc.private_get_v5_position_closed_pnl(params) - fetched["result"]["list"] = sorted( - floatify(fetched["result"]["list"]), key=lambda x: x["updatedTime"] - ) - return [ - { - "symbol": elm["symbol"], - "income": elm["closedPnl"], - "token": "USDT", - "timestamp": elm["updatedTime"], - "date": ts_to_date_utc(elm["updatedTime"]), - "info": elm, - "transaction_id": elm["orderId"], - "trade_id": elm["orderId"], - "position_side": determine_pos_side_ccxt(elm), - } - for elm in sorted(income_d.values(), key=lambda x: x["updatedTime"]) - ] - except Exception as e: - logging.error(f"error fetching income {e}") - print_async_exception(fetched) - traceback.print_exc() - return [] - - async def fetch_latest_fills(self): - fetched = None - try: - fetched = await self.cc.fetch_my_trades(symbol=self.symbol) - fills = [ - { - "order_id": elm["id"], - "symbol": elm["symbol"], - "custom_id": elm["info"]["orderLinkId"], - "price": elm["price"], - "qty": elm["amount"], - "type": elm["type"], - "reduce_only": None, - "side": elm["side"].lower(), - "position_side": determine_pos_side_ccxt(elm), - "timestamp": elm["timestamp"], - } - for elm in fetched - if elm["amount"] != 0.0 and elm["type"] is not None - ] - return sorted(fills, key=lambda x: x["timestamp"]) - except Exception as e: - logging.error(f"error fetching latest fills {e}") - print_async_exception(fetched) - traceback.print_exc() - - async def fetch_fills( - self, - limit: int = 200, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - return [] - - async def init_exchange_config(self): - try: - res = await self.cc.set_margin_mode( - marginMode="cross", symbol=self.symbol, params={"leverage": self.leverage} - ) - logging.info(f"cross mode set {res}") - except Exception as e: - if "margin mode is not modified" in str(e): - logging.info(str(e)) - else: - logging.error(f"error setting cross mode: {e}") - try: - res = await self.cc.set_position_mode(hedged=True) - logging.info(f"hedge mode set {res}") - except Exception as e: - logging.error(f"error setting hedge mode: {e}") - try: - res = await self.cc.set_leverage(int(self.leverage), symbol=self.symbol) - logging.info(f"leverage set {res}") - except Exception as e: - if "leverage not modified" in str(e): - logging.info(str(e)) - else: - logging.error(f"error setting leverage: {e}") diff --git a/exchanges/bybit_old.py b/exchanges/bybit_old.py deleted file mode 100644 index b7658130e..000000000 --- a/exchanges/bybit_old.py +++ /dev/null @@ -1,988 +0,0 @@ -import asyncio -import hashlib -import hmac -import json -import traceback -from time import time -from typing import Union, List, Dict -from urllib.parse import urlencode -from uuid import uuid4 - -import aiohttp -import numpy as np - -from njit_funcs import round_, calc_diff -from passivbot import Bot, logging -from procedures import print_async_exception, print_ -from pure_funcs import ts_to_date, sort_dict_keys, date_to_ts - - -def first_capitalized(s: str): - return s[0].upper() + s[1:].lower() - - -def determine_pos_side(o: dict) -> str: - if o["side"].lower() == "buy": - if "reduce_only" in o: - if o["reduce_only"]: - return "short" - else: - return "long" - if "closed_size" in o: - if o["closed_size"] != 0.0: - return "short" - else: - return "long" - if "entry" in o["order_link_id"]: - return "long" - elif "close" in o["order_link_id"]: - return "short" - else: - return "both" - else: - if "reduce_only" in o: - if o["reduce_only"]: - return "long" - else: - return "short" - if "closed_size" in o: - if o["closed_size"] != 0.0: - return "long" - else: - return "short" - if "entry" in o["order_link_id"]: - return "short" - elif "close" in o["order_link_id"]: - return "long" - else: - return "both" - - -class BybitBot(Bot): - def __init__(self, config: dict): - self.exchange = "bybit" - self.min_notional = 1.0 - self.max_n_orders_per_batch = 5 - self.max_n_cancellations_per_batch = 10 - super().__init__(config) - self.base_endpoint = "https://api.bybit.com" - if self.test_mode: - self.base_endpoint = "https://api-testnet.bybit.com" - self.endpoints = { - "balance": "/v2/private/wallet/balance", - "exchange_info": "/v2/public/symbols", - "ticker": "/v2/public/tickers", - "funds_transfer": "/asset/v1/private/transfer", - } - self.session = aiohttp.ClientSession( - headers=({"referer": self.broker_code} if self.broker_code else {}) - ) - - def init_market_type(self): - websockets_base_endpoint = "wss://stream.bybit.com" - if self.test_mode: - websockets_base_endpoint = "wss://stream-testnet.bybit.com" - - if self.symbol.endswith("USDT"): - print("linear perpetual") - self.market_type += "_linear_perpetual" - self.inverse = self.config["inverse"] = False - self.endpoints = { - "position": "/private/linear/position/list", - "open_orders": "/private/linear/order/search", - "create_order": "/private/linear/order/create", - "cancel_order": "/private/linear/order/cancel", - "ticks": "/public/linear/recent-trading-records", - "fills": "/private/linear/trade/execution/list", - "ohlcvs": "/public/linear/kline", - "websocket_market": f"{websockets_base_endpoint}/realtime_public", - "websocket_user": f"{websockets_base_endpoint}/realtime_private", - "income": "/private/linear/trade/closed-pnl/list", - "created_at_key": "created_time", - } - - else: - self.inverse = self.config["inverse"] = True - if self.symbol.endswith("USD"): - print("inverse perpetual") - self.market_type += "_inverse_perpetual" - self.endpoints = { - "position": "/v2/private/position/list", - "open_orders": "/v2/private/order", - "create_order": "/v2/private/order/create", - "cancel_order": "/v2/private/order/cancel", - "ticks": "/v2/public/trading-records", - "fills": "/v2/private/execution/list", - "ohlcvs": "/v2/public/kline/list", - "websocket_market": f"{websockets_base_endpoint}/realtime", - "websocket_user": f"{websockets_base_endpoint}/realtime", - "income": "/v2/private/trade/closed-pnl/list", - "created_at_key": "created_at", - } - - self.hedge_mode = self.config["hedge_mode"] = False - else: - print("inverse futures") - self.market_type += "_inverse_futures" - self.endpoints = { - "position": "/futures/private/position/list", - "open_orders": "/futures/private/order", - "create_order": "/futures/private/order/create", - "cancel_order": "/futures/private/order/cancel", - "ticks": "/v2/public/trading-records", - "fills": "/futures/private/execution/list", - "ohlcvs": "/v2/public/kline/list", - "websocket_market": f"{websockets_base_endpoint}/realtime", - "websocket_user": f"{websockets_base_endpoint}/realtime", - "income": "/futures/private/trade/closed-pnl/list", - "created_at_key": "created_at", - } - - self.spot_base_endpoint = "https://api.bybit.com" - if self.test_mode: - self.spot_base_endpoint = "https://api-testnet.bybit.com" - - self.endpoints["spot_balance"] = "/spot/v1/account" - self.endpoints["balance"] = "/v2/private/wallet/balance" - self.endpoints["exchange_info"] = "/v2/public/symbols" - self.endpoints["ticker"] = "/v2/public/tickers" - self.endpoints["funds_transfer"] = "/asset/v1/private/transfer" - - async def _init(self): - info = await self.public_get(self.endpoints["exchange_info"]) - for e in info["result"]: - if e["name"] == self.symbol: - break - else: - raise Exception(f"symbol missing {self.symbol}") - self.max_leverage = e["leverage_filter"]["max_leverage"] - self.coin = e["base_currency"] - self.quote = e["quote_currency"] - self.price_step = self.config["price_step"] = float(e["price_filter"]["tick_size"]) - self.qty_step = self.config["qty_step"] = float(e["lot_size_filter"]["qty_step"]) - self.min_qty = self.config["min_qty"] = float(e["lot_size_filter"]["min_trading_qty"]) - self.min_cost = self.config["min_cost"] = 1.0 - self.init_market_type() - self.margin_coin = self.coin if self.inverse else self.quote - await super()._init() - await self.init_order_book() - await self.update_position() - - async def init_order_book(self): - ticker = None - try: - ticker = await self.private_get(self.endpoints["ticker"], {"symbol": self.symbol}) - self.ob = [ - float(ticker["result"][0]["bid_price"]), - float(ticker["result"][0]["ask_price"]), - ] - self.price = float(ticker["result"][0]["last_price"]) - return True - except Exception as e: - logging.error(f"error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - fetched = await self.private_get(self.endpoints["open_orders"], {"symbol": self.symbol}) - return [ - { - "order_id": elm["order_id"], - "custom_id": elm["order_link_id"], - "symbol": elm["symbol"], - "price": float(elm["price"]), - "qty": float(elm["qty"]), - "side": elm["side"].lower(), - "position_side": determine_pos_side(elm), - "timestamp": date_to_ts(elm[self.endpoints["created_at_key"]]), - } - for elm in fetched["result"] - ] - - async def public_get(self, url: str, params: dict = {}) -> dict: - result = None - async with self.session.get(self.base_endpoint + url, params=params) as response: - result = await response.text() - try: - return json.loads(result) - except Exception as e: - print("error with public_get", e) - print(result) - raise Exception - - async def private_( - self, type_: str, base_endpoint: str, url: str, params: dict = {}, json_: bool = False - ) -> dict: - timestamp = int(time() * 1000) - params.update({"api_key": self.key, "timestamp": timestamp}) - for k in params: - if type(params[k]) == bool: - params[k] = "true" if params[k] else "false" - elif type(params[k]) == float: - params[k] = str(params[k]) - params["sign"] = hmac.new( - self.secret.encode("utf-8"), - urlencode(sort_dict_keys(params)).encode("utf-8"), - hashlib.sha256, - ).hexdigest() - result = None - if json_: - async with getattr(self.session, type_)(base_endpoint + url, json=params) as response: - result = await response.text() - else: - async with getattr(self.session, type_)(base_endpoint + url, params=params) as response: - result = await response.text() - try: - return json.loads(result) - except Exception as e: - print(f"error with private_{type_}", e) - print(result) - raise Exception - - async def private_get(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict: - return await self.private_( - "get", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def private_post(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict: - return await self.private_( - "post", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - params = { - "coin": coin, - "amount": str(amount), - "from_account_type": "CONTRACT", - "to_account_type": "SPOT", - "transfer_id": str(uuid4()), - } - return await self.private_( - "post", self.base_endpoint, self.endpoints["funds_transfer"], params=params, json_=True - ) - - async def get_server_time(self): - now = await self.public_get("/v2/public/time") - return float(now["time_now"]) * 1000 - - async def fetch_position(self) -> dict: - position = {} - fetched, bal = None, None - try: - if "linear_perpetual" in self.market_type: - fetched, bal = await asyncio.gather( - self.private_get(self.endpoints["position"], {"symbol": self.symbol}), - self.private_get(self.endpoints["balance"], {"coin": self.quote}), - ) - long_pos = [e for e in fetched["result"] if e["side"] == "Buy"][0] - short_pos = [e for e in fetched["result"] if e["side"] == "Sell"][0] - position["wallet_balance"] = float(bal["result"][self.quote]["wallet_balance"]) - else: - fetched, bal = await asyncio.gather( - self.private_get(self.endpoints["position"], {"symbol": self.symbol}), - self.private_get(self.endpoints["balance"], {"coin": self.coin}), - ) - position["wallet_balance"] = float(bal["result"][self.coin]["wallet_balance"]) - if "inverse_perpetual" in self.market_type: - if fetched["result"]["side"] == "Buy": - long_pos = fetched["result"] - short_pos = {"size": 0.0, "entry_price": 0.0, "liq_price": 0.0} - else: - long_pos = {"size": 0.0, "entry_price": 0.0, "liq_price": 0.0} - short_pos = fetched["result"] - elif "inverse_futures" in self.market_type: - long_pos = [ - e["data"] for e in fetched["result"] if e["data"]["position_idx"] == 1 - ][0] - short_pos = [ - e["data"] for e in fetched["result"] if e["data"]["position_idx"] == 2 - ][0] - else: - raise Exception("unknown market type") - - position["long"] = { - "size": round_(float(long_pos["size"]), self.qty_step), - "price": float(long_pos["entry_price"]), - "liquidation_price": float(long_pos["liq_price"]), - } - position["short"] = { - "size": -round_(float(short_pos["size"]), self.qty_step), - "price": float(short_pos["entry_price"]), - "liquidation_price": float(short_pos["liq_price"]), - } - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(fetched) - print_async_exception(bal) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - if not orders: - return [] - creations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - creation = None - try: - creation = asyncio.create_task(self.execute_order(order)) - creations.append((order, creation)) - except Exception as e: - print(f"error creating order {order} {e}") - print_async_exception(creation) - traceback.print_exc() - results = [] - for creation in creations: - result = None - try: - result = await creation[1] - results.append(result) - except Exception as e: - print(f"error creating order {creation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_order(self, order: dict) -> dict: - o = None - try: - params = { - "symbol": self.symbol, - "side": first_capitalized(order["side"]), - "order_type": first_capitalized(order["type"]), - "qty": ( - float(order["qty"]) - if "linear_perpetual" in self.market_type - else int(order["qty"]) - ), - "close_on_trigger": False, - } - if self.hedge_mode: - params["position_idx"] = 1 if order["position_side"] == "long" else 2 - if "linear_perpetual" in self.market_type: - params["reduce_only"] = "close" in order["custom_id"] - else: - params["position_idx"] = 0 - params["reduce_only"] = "close" in order["custom_id"] - if params["order_type"] == "Limit": - params["time_in_force"] = "PostOnly" - params["price"] = str(order["price"]) - else: - params["time_in_force"] = "GoodTillCancel" - params["order_link_id"] = ( - f"{order['custom_id']}_{str(int(time() * 1000))[8:]}_{int(np.random.random() * 1000)}" - ) - o = await self.private_post(self.endpoints["create_order"], params) - if o["result"]: - return { - "symbol": o["result"]["symbol"], - "side": o["result"]["side"].lower(), - "order_id": o["result"]["order_id"], - "position_side": order["position_side"], - "type": o["result"]["order_type"].lower(), - "qty": o["result"]["qty"], - "price": o["result"]["price"], - } - else: - return o, order - except Exception as e: - print(f"error executing order {order} {e}") - print_async_exception(o) - traceback.print_exc() - return {} - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - cancellation = None - try: - cancellation = asyncio.create_task(self.execute_cancellation(order)) - cancellations.append((order, cancellation)) - except Exception as e: - print(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - results = [] - for cancellation in cancellations: - result = None - try: - result = await cancellation[1] - results.append(result) - except Exception as e: - print(f"error cancelling order {cancellation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_cancellation(self, order: dict) -> dict: - cancellation = None - try: - cancellation = await self.private_post( - self.endpoints["cancel_order"], - {"symbol": self.symbol, "order_id": order["order_id"]}, - ) - return { - "symbol": self.symbol, - "side": order["side"], - "order_id": cancellation["result"]["order_id"], - "position_side": order["position_side"], - "qty": order["qty"], - "price": order["price"], - } - except Exception as e: - if ( - cancellation is not None - and "ret_code" in cancellation - and cancellation["ret_code"] == 20001 - ): - error_cropped = { - k: v for k, v in cancellation.items() if k in ["ret_msg", "ret_code"] - } - logging.error( - f"error cancelling order {error_cropped} {order}" - ) # neater error message - else: - print(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - self.ts_released["force_update"] = 0.0 - return {} - - async def fetch_account(self): - try: - resp = await self.private_get( - self.endpoints["spot_balance"], base_endpoint=self.spot_base_endpoint - ) - return resp["result"] - except Exception as e: - print("error fetching account: ", e) - return {"balances": []} - - async def fetch_ticks(self, from_id: int = None, do_print: bool = True): - params = {"symbol": self.symbol, "limit": 1000} - if from_id is not None: - params["from"] = max(0, from_id) - try: - ticks = await self.public_get(self.endpoints["ticks"], params) - except Exception as e: - print("error fetching ticks", e) - return [] - try: - trades = [ - { - "trade_id": int(tick["id"]), - "price": float(tick["price"]), - "qty": float(tick["qty"]), - "timestamp": date_to_ts(tick["time"]), - "is_buyer_maker": tick["side"] == "Sell", - } - for tick in ticks["result"] - ] - if do_print: - print_( - [ - "fetched trades", - self.symbol, - trades[0]["trade_id"], - ts_to_date(float(trades[0]["timestamp"]) / 1000), - ] - ) - except: - trades = [] - if do_print: - print_(["fetched no new trades", self.symbol]) - return trades - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=200 - ): - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_map = { - "1m": 1, - "3m": 3, - "5m": 5, - "15m": 15, - "30m": 30, - "1h": 60, - "2h": 120, - "4h": 240, - "6h": 360, - "12h": 720, - "1d": "D", - "1w": "W", - "1M": "M", - } - assert interval in interval_map - params = { - "symbol": self.symbol if symbol is None else symbol, - "interval": interval_map[interval], - "limit": limit, - } - if start_time is None: - server_time = await self.public_get("/v2/public/time") - if type(interval_map[interval]) == str: - minutes = {"D": 1, "W": 7, "M": 30}[interval_map[interval]] * 60 * 24 - else: - minutes = interval_map[interval] - params["from"] = int(round(float(server_time["time_now"]))) - 60 * minutes * limit - else: - params["from"] = int(start_time / 1000) - fetched = await self.public_get(self.endpoints["ohlcvs"], params) - return [ - { - **{"timestamp": e["open_time"] * 1000}, - **{k: float(e[k]) for k in ["open", "high", "low", "close", "volume"]}, - } - for e in fetched["result"] - ] - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "Trade", - end_time: int = None, - ): - if symbol is None: - all_income = [] - all_positions = await self.private_get(self.endpoints["position"], params={"symbol": ""}) - symbols = sorted( - set( - [ - x["data"]["symbol"] - for x in all_positions["result"] - if float(x["data"]["size"]) > 0 - ] - ) - ) - for symbol in symbols: - all_income += await self.get_all_income( - symbol=symbol, start_time=start_time, income_type=income_type, end_time=end_time - ) - return sorted(all_income, key=lambda x: x["timestamp"]) - limit = 50 - income = [] - page = 1 - while True: - fetched = await self.fetch_income( - symbol=symbol, - start_time=start_time, - income_type=income_type, - limit=limit, - page=page, - ) - if len(fetched) == 0: - break - print_(["fetched income", symbol, ts_to_date(fetched[0]["timestamp"])]) - if fetched == income[-len(fetched) :]: - break - income += fetched - if len(fetched) < limit: - break - page += 1 - income_d = {e["transaction_id"]: e for e in income} - return sorted(income_d.values(), key=lambda x: x["timestamp"]) - - async def fetch_income( - self, - symbol: str = None, - income_type: str = None, - limit: int = 50, - start_time: int = None, - end_time: int = None, - page=None, - ): - params = {"limit": limit, "symbol": self.symbol if symbol is None else symbol} - if start_time is not None: - params["start_time"] = int(start_time / 1000) - if end_time is not None: - params["end_time"] = int(end_time / 1000) - if income_type is not None: - params["exec_type"] = first_capitalized(income_type) - if page is not None: - params["page"] = page - fetched = None - try: - fetched = await self.private_get(self.endpoints["income"], params) - if fetched["result"]["data"] is None: - return [] - return sorted( - [ - { - "symbol": e["symbol"], - "income_type": e["exec_type"].lower(), - "income": float(e["closed_pnl"]), - "token": self.margin_coin, - "timestamp": float(e["created_at"]) * 1000, - "info": {"page": fetched["result"]["current_page"]}, - "transaction_id": float(e["id"]), - "trade_id": e["order_id"], - } - for e in fetched["result"]["data"] - ], - key=lambda x: x["timestamp"], - ) - except Exception as e: - print("error fetching income: ", e) - traceback.print_exc() - print_async_exception(fetched) - return [] - - async def fetch_latest_fills(self): - fetched = None - try: - fetched = await self.private_get( - self.endpoints["fills"], - { - "symbol": self.symbol, - "limit": 200, - "start_time": int((time() - 60 * 60 * 24) * 1000), - }, - ) - if "inverse_perpetual" in self.market_type: - fetched_data = fetched["result"]["trade_list"] - elif "linear_perpetual" in self.market_type: - fetched_data = fetched["result"]["data"] - if fetched_data is None and fetched["ret_code"] == 0 and fetched["ret_msg"] == "OK": - return [] - fills = [ - { - "order_id": elm["order_id"], - "symbol": elm["symbol"], - "status": elm["exec_type"].lower(), - "custom_id": elm["order_link_id"], - "price": float(elm["exec_price"]), - "qty": float(elm["exec_qty"]), - "original_qty": float(elm["order_qty"]), - "type": elm["order_type"].lower(), - "reduce_only": None, - "side": elm["side"].lower(), - "position_side": determine_pos_side(elm), - "timestamp": elm["trade_time_ms"], - } - for elm in fetched_data - if elm["exec_type"] == "Trade" - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def fetch_fills( - self, - limit: int = 200, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - fetched = None - try: - if start_time is None: - start_time = int((time() - 60 * 60 * 24) * 1000) - if end_time is None: - end_time = int((time() + 60 * 60 * 2) * 1000) - fills = [] - page = 1 - last_order = None - while True: - fetched = await self.private_get( - self.endpoints["fills"], - { - "symbol": self.symbol, - "limit": 200, - "start_time": start_time, - "end_time": end_time, - "exec_type": "Trade", - "page": page, - }, - ) - fetched = fetched["result"][ - "data" if "linear_perpetual" in self.market_type else "trade_list" - ] - if fetched is None: - break - if fetched == []: - break - if fetched[-1] == last_order: - break - fills += fetched - if fetched[-1]["trade_time_ms"] >= end_time: - break - last_order = fetched[-1] - page += 1 - print(last_order) - fills_f = [] - for k, elm in {x["order_id"]: x for x in fills}.items(): - fills_f.append( - { - "order_id": elm["order_id"], - "symbol": elm["symbol"], - "status": elm["exec_type"].lower(), - "custom_id": elm["order_link_id"], - "price": float(elm["exec_price"]), - "qty": float(elm["exec_qty"]), - "original_qty": float(elm["order_qty"]), - "type": elm["order_type"].lower(), - "reduce_only": None, - "side": elm["side"].lower(), - "position_side": determine_pos_side(elm), - "timestamp": elm["trade_time_ms"], - } - ) - return sorted(fills_f, key=lambda x: x["timestamp"], reverse=False) - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def init_exchange_config(self): - try: - # set cross mode - if "inverse_futures" in self.market_type: - res = await asyncio.gather( - self.private_post( - "/futures/private/position/leverage/save", - { - "symbol": self.symbol, - "buy_leverage": self.leverage, - "sell_leverage": self.leverage, - }, - ), - self.private_post( - "/futures/private/position/switch-isolated", - { - "symbol": self.symbol, - "is_isolated": False, - "buy_leverage": self.leverage, - "sell_leverage": self.leverage, - }, - ), - ) - print(res) - res = await self.private_post( - "/futures/private/position/switch-mode", - {"symbol": self.symbol, "mode": 3}, - ) - print(res) - elif "linear_perpetual" in self.market_type: - res = await self.private_post( - "/private/linear/position/switch-mode", - { - "symbol": self.symbol, - "mode": "BothSide", - }, - ) - print(res) - res = await self.private_post( - "/private/linear/position/switch-isolated", - { - "symbol": self.symbol, - "is_isolated": False, - "buy_leverage": self.leverage, - "sell_leverage": self.leverage, - }, - ) - print(res) - res = await self.private_post( - "/private/linear/position/set-leverage", - { - "symbol": self.symbol, - "buy_leverage": self.leverage, - "sell_leverage": self.leverage, - }, - ) - print(res) - elif "inverse_perpetual" in self.market_type: - res = await self.private_post( - "/v2/private/position/switch-isolated", - { - "symbol": self.symbol, - "is_isolated": False, - "buy_leverage": self.leverage, - "sell_leverage": self.leverage, - }, - ) - print("1", res) - res = await self.private_post( - "/v2/private/position/leverage/save", - {"symbol": self.symbol, "leverage": self.leverage, "leverage_only": True}, - ) - print("2", res) - except Exception as e: - print(e) - - def standardize_market_stream_event(self, data: dict) -> [dict]: - ticks = [] - for e in data["data"]: - try: - ticks.append( - { - "timestamp": int(e["trade_time_ms"]), - "price": float(e["price"]), - "qty": float(e["size"]), - "is_buyer_maker": e["side"] == "Sell", - } - ) - except Exception as ex: - print("error in websocket tick", e, ex) - return ticks - - async def beat_heart_user_stream(self) -> None: - while True: - await asyncio.sleep(27) - try: - await self.ws_user.send(json.dumps({"op": "ping"})) - except Exception as e: - traceback.print_exc() - print_(["error sending heartbeat user", e]) - - async def subscribe_to_market_stream(self, ws): - await ws.send(json.dumps({"op": "subscribe", "args": ["trade." + self.symbol]})) - - async def subscribe_to_user_stream(self, ws): - expires = int((time() + 1) * 1000) - signature = str( - hmac.new( - bytes(self.secret, "utf-8"), - bytes(f"GET/realtime{expires}", "utf-8"), - digestmod="sha256", - ).hexdigest() - ) - await ws.send(json.dumps({"op": "auth", "args": [self.key, expires, signature]})) - await asyncio.sleep(1) - await ws.send( - json.dumps( - { - "op": "subscribe", - "args": ["position", "execution", "wallet", "order"], - } - ) - ) - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - return {"code": "-1", "msg": "Transferring funds not supported for Bybit"} - - def standardize_user_stream_event( - self, event: Union[List[Dict], Dict] - ) -> Union[List[Dict], Dict]: - events = [] - if "topic" in event: - if event["topic"] == "order": - for elm in event["data"]: - if elm["symbol"] == self.symbol: - if elm["order_status"] == "Created": - pass - elif elm["order_status"] == "Rejected": - pass - elif elm["order_status"] == "New": - new_open_order = { - "order_id": elm["order_id"], - "symbol": elm["symbol"], - "price": float(elm["price"]), - "qty": float(elm["qty"]), - "type": elm["order_type"].lower(), - "side": (side := elm["side"].lower()), - "timestamp": date_to_ts( - elm["timestamp" if self.inverse else "update_time"] - ), - } - if "inverse_perpetual" in self.market_type: - if self.position["long"]["size"] == 0.0: - if self.position["short"]["size"] == 0.0: - new_open_order["position_side"] = ( - "long" if new_open_order["side"] == "buy" else "short" - ) - else: - new_open_order["position_side"] = "short" - else: - new_open_order["position_side"] = "long" - elif "inverse_futures" in self.market_type: - new_open_order["position_side"] = determine_pos_side(elm) - else: - new_open_order["position_side"] = ( - "long" - if ( - ( - new_open_order["side"] == "buy" - and elm["create_type"] == "CreateByUser" - ) - or ( - new_open_order["side"] == "sell" - and elm["create_type"] == "CreateByClosing" - ) - ) - else "short" - ) - events.append({"new_open_order": new_open_order}) - elif elm["order_status"] == "PartiallyFilled": - events.append( - { - "deleted_order_id": elm["order_id"], - "partially_filled": True, - } - ) - elif elm["order_status"] == "Filled": - events.append({"deleted_order_id": elm["order_id"], "filled": True}) - elif elm["order_status"] == "Cancelled": - events.append({"deleted_order_id": elm["order_id"]}) - elif elm["order_status"] == "PendingCancel": - pass - else: - events.append( - { - "other_symbol": elm["symbol"], - "other_type": event["topic"], - } - ) - elif event["topic"] == "execution": - for elm in event["data"]: - if elm["symbol"] == self.symbol: - if elm["exec_type"] == "Trade": - # already handled by "order" - pass - else: - events.append( - { - "other_symbol": elm["symbol"], - "other_type": event["topic"], - } - ) - elif event["topic"] == "position": - for elm in event["data"]: - if elm["symbol"] == self.symbol: - standardized = {} - if elm["side"] == "Buy": - standardized["psize_long"] = round_(float(elm["size"]), self.qty_step) - standardized["pprice_long"] = float(elm["entry_price"]) - elif elm["side"] == "Sell": - standardized["psize_short"] = -round_( - abs(float(elm["size"])), self.qty_step - ) - standardized["pprice_short"] = float(elm["entry_price"]) - - events.append(standardized) - if self.inverse: - events.append({"wallet_balance": float(elm["wallet_balance"])}) - else: - events.append( - { - "other_symbol": elm["symbol"], - "other_type": event["topic"], - } - ) - elif not self.inverse and event["topic"] == "wallet": - for elm in event["data"]: - events.append({"wallet_balance": float(elm["wallet_balance"])}) - return events diff --git a/exchanges/bybit_spot.py b/exchanges/bybit_spot.py deleted file mode 100644 index 6171c59f0..000000000 --- a/exchanges/bybit_spot.py +++ /dev/null @@ -1,654 +0,0 @@ -import asyncio -import hashlib -import hmac -import json -import traceback -from time import time -from urllib.parse import urlencode - -import aiohttp -import numpy as np - -from njit_funcs import ( - calc_diff, - round_dn, - round_up, - qty_to_cost, - calc_min_entry_qty, - calc_pnl_long, -) -from passivbot import Bot -from procedures import print_async_exception, print_ -from pure_funcs import ( - sort_dict_keys, - spotify_config, - get_position_fills, - calc_pprice_long, - format_float, - ts_to_date, -) - - -class BybitBotSpot(Bot): - def __init__(self, config: dict): - self.exchange = "bybit_spot" - self.balance = {} - super().__init__(spotify_config(config)) - self.spot = self.config["spot"] = True - self.inverse = self.config["inverse"] = False - self.hedge_mode = self.config["hedge_mode"] = False - self.do_short = self.config["do_short"] = self.config["short"]["enabled"] = False - self.session = aiohttp.ClientSession( - headers=({"referer": self.broker_code} if self.broker_code else {}), - connector=aiohttp.TCPConnector(resolver=aiohttp.AsyncResolver()), - ) - self.base_endpoint = "https://api.bybit.com" - self.force_update_interval = 40 - self.max_n_orders_per_batch = 5 - self.max_n_cancellations_per_batch = 10 - self.endpoints = None - - async def public_get(self, url: str, params=None) -> dict: - if params is None: - params = {} - async with self.session.get(self.base_endpoint + url, params=params) as response: - result = await response.text() - return json.loads(result) - - async def private_( - self, - type_: str, - base_endpoint: str, - url: str, - params: dict = None, - json_: bool = False, - ) -> dict: - if params is None: - params = {} - timestamp = int(time() * 1000) - params.update({"api_key": self.key, "timestamp": timestamp, "recv_window": 10000}) - for k in params: - if type(params[k]) == bool: - params[k] = "true" if params[k] else "false" - elif type(params[k]) == float: - params[k] = str(params[k]) - params["sign"] = hmac.new( - self.secret.encode("utf-8"), - urlencode(sort_dict_keys(params)).encode("utf-8"), - hashlib.sha256, - ).hexdigest() - if json_: - async with getattr(self.session, type_)(base_endpoint + url, json=params) as response: - result = await response.text() - else: - async with getattr(self.session, type_)(base_endpoint + url, params=params) as response: - result = await response.text() - result_dict = json.loads(result) - return result_dict - - async def private_get(self, url: str, params=None, base_endpoint: str = None) -> dict: - if params is None: - params = {} - return await self.private_( - "get", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def private_post(self, url: str, params=None, base_endpoint: str = None) -> dict: - if params is None: - params = {} - return await self.private_( - "post", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def get_server_time(self): - now = await self.public_get("/v2/public/time") - return float(now["time_now"]) * 1000 - - def init_market_type(self): - print("Spot market") - if "spot" not in self.market_type: - self.market_type += "_spot" - self.inverse = self.config["inverse"] = False - self.spot = True - self.hedge_mode = False - self.endpoints = { - "balance": "/spot/v3/private/account", - "exchange_info": "/spot/v3/public/symbols", - "open_orders": "/spot/v3/private/open-orders", - "ticker": "/spot/v3/public/quote/ticker/bookTicker", - "fills": "/spot/v3/private/my-trades", - "fills_detailed": "/spot/v3/private/my-trades", - "create_order": "/spot/v3/private/order", - "cancel_order": "/spot/v3/private/cancel-order", - "ticks": "/spot/v3/public/quote/trades", - "ohlcvs": "/spot/v3/public/quote/kline", - } - self.endpoints["transfer"] = "" - self.endpoints["account"] = "/spot/v3/private/account" - - async def _init(self): - self.init_market_type() - exchange_info = await self.public_get(self.endpoints["exchange_info"]) - for e in exchange_info["result"]["list"]: - if e["name"] == self.symbol: - self.coin = e["baseCoin"] - self.quote = self.margin_coin = e["quoteCoin"] - self.min_qty = self.config["min_qty"] = float(e["minTradeQty"]) - self.qty_step = self.config["qty_step"] = float(e["basePrecision"]) - self.price_step = self.config["price_step"] = float(e["minPricePrecision"]) - self.min_price = 0 # TODO Fix - self.max_price = 1000000000 # TODO Fix - self.min_cost = self.config["min_cost"] = 0.0 - self.price_multiplier_up = 5 - self.price_multiplier_dn = 0.2 - break - else: - raise Exception(f"unknown symbol {self.symbol}") - - await super()._init() - await self.init_order_book() - await self.update_position() - - def calc_orders(self): - default_orders = super().calc_orders() - orders = [] - remaining_cost = self.balance[self.quote]["onhand"] - for order in sorted(default_orders, key=lambda x: calc_diff(x["price"], self.price)): - if order["price"] > min( - self.max_price, - round_dn(self.price * self.price_multiplier_up, self.price_step), - ): - print(f'price {order["price"]} too high') - continue - if order["price"] < max( - self.min_price, - round_up(self.price * self.price_multiplier_dn, self.price_step), - ): - print(f'price {order["price"]} too low') - continue - if order["side"] == "buy": - cost = qty_to_cost(order["qty"], order["price"], self.inverse, self.c_mult) - if cost > remaining_cost: - adjusted_qty = round_dn(remaining_cost / order["price"], self.qty_step) - min_entry_qty = calc_min_entry_qty( - order["price"], - self.inverse, - self.c_mult, - self.qty_step, - self.min_qty, - self.min_cost, - ) - if adjusted_qty >= min_entry_qty: - orders.append({**order, **{"qty": adjusted_qty}}) - remaining_cost = 0.0 - else: - orders.append(order) - remaining_cost -= cost - else: - # TODO: ensure sell qty is greater than min qty - orders.append(order) - return orders - - async def check_if_other_positions(self, abort=True): - pass - - async def execute_leverage_change(self): - pass - - async def init_exchange_config(self): - await self.check_if_other_positions() - - async def init_order_book(self): - ticker = None - try: - ticker = await self.public_get(self.endpoints["ticker"], {"symbol": self.symbol}) - ticker = ticker["result"] - self.ob = [float(ticker["bidPrice"]), float(ticker["askPrice"])] - self.price = np.random.choice(self.ob) - return True - except Exception as e: - print(f"{self.symbol} error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - try: - open_orders = await self.private_get( - self.endpoints["open_orders"], {"symbol": self.symbol} - ) - open_orders = open_orders["result"]["list"] - except KeyError: - open_orders = [] - return [ - { - "order_id": int(e["orderId"]), - "custom_id": e["orderLinkId"], - "symbol": e["symbol"], - "price": float(e["orderPrice"]), - "qty": float(e["orderQty"]), - "type": e["orderType"].lower(), # TODO - "side": e["side"].lower(), - "position_side": "long", - "timestamp": int(e["createTime"]), - } - for e in open_orders - ] - - async def fetch_position(self) -> dict: - balances, _ = await asyncio.gather( - self.private_get(self.endpoints["balance"]), self.update_fills() - ) - balances = balances["result"]["balances"] - balance = {} - for elm in balances: - balance[elm["coin"]] = {"free": float(elm["free"])} - balance[elm["coin"]]["locked"] = float(elm["locked"]) - balance[elm["coin"]]["onhand"] = ( - balance[elm["coin"]]["free"] + balance[elm["coin"]]["locked"] - ) - self.balance = balance - return self.calc_simulated_position(self.balance, self.fills) - - def calc_simulated_position(self, balance: dict, long_fills: [dict]) -> dict: - """ - balance = {'BTC': {'free': float, 'locked': float, 'onhand': float}, ...} - long_pfills = [{order...}, ...] - """ - if self.coin in balance: - psize_long = round_dn(balance[self.coin]["onhand"], self.qty_step) - long_pfills, short_pfills = get_position_fills(psize_long, 0.0, self.fills) - pprice_long = calc_pprice_long(psize_long, long_pfills) if psize_long else 0.0 - if psize_long * pprice_long < self.min_cost: - psize_long, pprice_long, long_pfills = 0.0, 0.0, [] - wallet_balance = ( - balance[self.quote]["onhand"] + balance[self.coin]["onhand"] * pprice_long - ) - else: - psize_long = 0.0 - pprice_long = 0.0 - wallet_balance = balance[self.quote]["onhand"] - - position = { - "long": { - "size": psize_long, - "price": pprice_long, - "liquidation_price": 0.0, - }, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": wallet_balance, - } - return position - - async def execute_orders(self, orders: [dict]) -> [dict]: - if not orders: - return [] - creations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - creation = None - try: - creation = asyncio.create_task(self.execute_order(order)) - creations.append((order, creation)) - except Exception as e: - print(f"error creating order {order} {e}") - print_async_exception(creation) - traceback.print_exc() - results = [] - for creation in creations: - result = None - try: - result = await creation[1] - results.append(result) - except Exception as e: - print(f"error creating order {creation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - cancellation = None - try: - cancellation = asyncio.create_task(self.execute_cancellation(order)) - cancellations.append((order, cancellation)) - except Exception as e: - print(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - results = [] - for cancellation in cancellations: - result = None - try: - result = await cancellation[1] - results.append(result) - except Exception as e: - print(f"error cancelling order {cancellation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_order(self, order: dict) -> dict: - params = { - "symbol": self.symbol, - "side": order["side"].upper(), - "orderType": order["type"].upper(), - "orderQty": format_float(order["qty"]), - } - if params["orderType"] == "LIMIT": - params["timeInForce"] = "GTC" - params["orderPrice"] = format_float(order["price"]) - params["orderLinkId"] = order["custom_id"] - o = await self.private_post(self.endpoints["create_order"], params) - o = o["result"] - if "side" in o: - return { - "symbol": self.symbol, - "side": o["side"].lower(), - "position_side": "long", - "type": o["orderType"].lower(), - "qty": float(o["orderQty"]), - "order_id": int(o["orderId"]), - "price": float(o["orderPrice"]), - } - else: - return o - - async def execute_cancellation(self, order: dict) -> [dict]: - cancellation = None - try: - cancellation = await self.private_post( - self.endpoints["cancel_order"], - {"symbol": self.symbol, "orderId": order["order_id"]}, - ) - cancellation = cancellation["result"] - return { - "symbol": self.symbol, - "side": cancellation["side"].lower(), - "position_side": "long", - "order_id": int(cancellation["orderId"]), - "qty": float(cancellation["orderQty"]), - "price": float(cancellation["orderPrice"]), - } - except Exception as e: - print(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - self.ts_released["force_update"] = 0.0 - return {} - - async def get_all_fills(self, symbol: str = None, start_time: int = None): - fills = [] - i = 0 - while True: - i += 1 - if i >= 15: - print("\nWarning: more than 15 calls to fetch_fills(), breaking") - break - fetched = await self.fetch_fills(symbol=symbol, start_time=start_time) - print_(["fetched fills", ts_to_date(fetched[0]["timestamp"])]) - if fetched == fills[-len(fetched) :]: - break - fills += fetched - if len(fetched) < 1000: - break - start_time = fills[-1]["timestamp"] - fills_d = {e["id"]: e for e in fills} - return sorted(fills_d.values(), key=lambda x: x["timestamp"]) - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - # income_type: str = "realized_pnl", - # end_time: int = None, - ): - fills = await self.get_all_fills(symbol=symbol, start_time=start_time) - - income = [] - psize, pprice = 0.0, 0.0 - for fill in fills: - if fill["side"] == "buy": - new_psize = psize + fill["qty"] - pprice = pprice * (psize / new_psize) + fill["price"] * (fill["qty"] / new_psize) - psize = new_psize - elif psize > 0.0: - income.append( - { - "symbol": fill["symbol"], - "income_type": "realized_pnl", - "income": calc_pnl_long(pprice, fill["price"], fill["qty"], False, 1.0), - "token": self.quote, - "timestamp": fill["timestamp"], - "info": 0, - "transaction_id": fill["id"], - "trade_id": fill["id"], - } - ) - psize = max(0.0, psize - fill["qty"]) - return income - - async def fetch_fills( - self, - symbol: str = None, - limit: int = 1000, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - params = { - "symbol": (self.symbol if symbol is None else symbol), - "limit": min(1000, max(500, limit)), - } - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(min(end_time, start_time + 1000 * 60 * 60 * 23.99)) - try: - fetched = await self.private_get(self.endpoints["fills"], params) - fetched = fetched["result"]["list"] - fills = [ - { - "symbol": x["symbol"], - "id": int(x["id"]), - "order_id": int(x["orderId"]), - "side": "buy" if x["isBuyer"] == "0" else "sell", - "price": float(x["orderPrice"]), - "qty": float(x["orderQty"]), - "realized_pnl": 0.0, - "cost": float(x["orderQty"]) * float(x["orderPrice"]), - "fee_paid": float(x["execFee"]), - "fee_token": x["feeTokenId"], - "timestamp": (ts := int(x["executionTime"])), - "position_side": "long", - "datetime": ts_to_date(ts), - "is_maker": x["isMaker"], - } - for x in fetched - ] - except Exception as e: - print(f"error fetching fills a: {e}") - return [] - return fills - - async def fetch_latest_fills(self): - params = {"symbol": self.symbol, "limit": 100} - fetched = None - fills = [] - try: - fetched = await self.private_get(self.endpoints["fills_detailed"], params) - fills = [ - { - "order_id": elm["orderId"], - "symbol": elm["symbol"], - "status": "filled", - "custom_id": elm["orderId"], - "price": elm["orderPrice"], - "qty": float(elm["orderQty"]), - "original_qty": float(elm["orderQty"]), - "type": "limit", - "reduce_only": None, - "side": "buy" if elm["isBuyer"] == "0" else "sell", - "position_side": "long", - "timestamp": elm["creatTime"], - } - for elm in fetched["result"]["list"] - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return fills - - async def fetch_income( - self, - # symbol: str = None, - # limit: int = 1000, - # start_time: int = None, - # end_time: int = None, - ): - print("fetch income not implemented in spot") - return [] - - async def fetch_account(self): - try: - return await self.private_get(self.endpoints["balance"]) - except Exception as e: - print("error fetching account: ", e) - return {"balances": []} - - async def fetch_ticks( - self, - from_id: int = None, - start_time: int = None, - end_time: int = None, - do_print: bool = True, - ): - params = {"symbol": self.symbol, "limit": 1000} - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = start_time - if end_time is not None: - params["endTime"] = end_time - try: - fetched = await self.public_get(self.endpoints["ticks"], params) - except Exception as e: - print("error fetching ticks a", e) - return [] - try: - ticks = [ - { - "trade_id": int(t["time"]), - "price": float(t["price"]), - "qty": float(t["qty"]), - "timestamp": int(t["time"]), - "is_buyer_maker": t["isBuyerMaker"], - } - for t in fetched["results"]["list"] - ] - if do_print: - print_( - [ - "fetched ticks", - self.symbol, - ticks[0]["trade_id"], - ts_to_date(float(ticks[0]["timestamp"]) / 1000), - ] - ) - except Exception as e: - print("error fetching ticks b", e, fetched) - ticks = [] - if do_print: - print_(["fetched no new ticks", self.symbol]) - return ticks - - async def fetch_ticks_time(self, start_time: int, end_time: int = None, do_print: bool = True): - return await self.fetch_ticks(start_time=start_time, end_time=end_time, do_print=do_print) - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=1000 - ): - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_map = { - "1m": 1, - "3m": 3, - "5m": 5, - "15m": 15, - "30m": 30, - "1h": 60, - "2h": 120, - "4h": 240, - "6h": 360, - "12h": 720, - "1d": 60 * 60 * 24, - "1w": 60 * 60 * 24 * 7, - "1M": 60 * 60 * 24 * 30, - } - assert interval in interval_map - params = { - "symbol": self.symbol if symbol is None else symbol, - "interval": interval, - "limit": limit, - } - if start_time is not None: - params["startTime"] = int(start_time) - params["endTime"] = params["startTime"] + interval_map[interval] * 60 * 1000 * limit - try: - fetched = await self.public_get(self.endpoints["ohlcvs"], params) - return [ - { - **{"timestamp": int(e["t"])}, - **{"open": float(e["o"])}, - **{"high": float(e["h"])}, - **{"low": float(e["l"])}, - **{"close": float(e["c"])}, - **{"volume": float(e["v"])}, - } - for e in fetched["result"]["list"] - ] - except Exception as e: - traceback.print_exc() - print(f"error fetching ohlcvs: {e}") - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - print("transfer not implemented in spot") - return - - def standardize_market_stream_event(self, data: dict) -> [dict]: - raise NotImplementedError - try: - return [ - { - "timestamp": int(data["T"]), - "price": float(data["p"]), - "qty": float(data["q"]), - "is_buyer_maker": data["m"], - } - ] - except Exception as e: - print("error in websocket tick", e) - return [] - - async def beat_heart_user_stream(self) -> None: - raise NotImplementedError - while True: - await asyncio.sleep(60 + np.random.randint(60 * 9, 60 * 14)) - await self.init_user_stream() - - async def init_user_stream(self) -> None: - raise NotImplementedError - - async def on_user_stream_event(self, event: dict) -> None: - raise NotImplementedError - - def standardize_user_stream_event(self, event: dict) -> dict: - raise NotImplementedError diff --git a/exchanges/kucoin.py b/exchanges/kucoin.py deleted file mode 100644 index 9e5341786..000000000 --- a/exchanges/kucoin.py +++ /dev/null @@ -1,689 +0,0 @@ -import asyncio -import base64 -import hashlib -import hmac -import json -import traceback -from time import time -from typing import Union, List, Dict -import uuid - -import aiohttp - -from njit_funcs import round_, calc_diff -from passivbot import Bot, logging -from procedures import print_async_exception, print_ - - -def determine_pos_side(o: dict) -> str: - if o["side"] == "buy": - if "reduceOnly" in o: - if o["reduceOnly"]: - return "short" - else: - return "long" - if "closeOrder" in o: - if o["closeOrder"]: - return "short" - else: - return "long" - if "entry" in o["clientOid"]: - return "long" - elif "close" in o["clientOid"]: - return "short" - else: - return "both" - else: - if "reduceOnly" in o: - if o["reduceOnly"]: - return "long" - else: - return "short" - if "closeOrder" in o: - if o["closeOrder"]: - return "long" - else: - return "short" - if "entry" in o["clientOid"]: - return "short" - elif "close" in o["clientOid"]: - return "long" - else: - return "both" - - -class KuCoinBot(Bot): - def __init__(self, config: dict): - self.exchange = "kucoin" - self.max_n_orders_per_batch = 5 - self.max_n_cancellations_per_batch = 10 - super().__init__(config) - self.base_endpoint = "https://api-futures.kucoin.com" - self.endpoints = { - "balance": "/api/v1/account-overview", - "exchange_info": "/api/v1/contracts/active", - "ticker": "/api/v1/ticker", - "funds_transfer": "/api/v3/transfer-out", - } - self.session = aiohttp.ClientSession() - self.custom_id_max_length = 32 - - def init_market_type(self): - if self.symbol.endswith("USDT"): - self.symbol += "M" - logging.info("linear perpetual") - self.market_type += "_linear_perpetual" - self.inverse = self.config["inverse"] = False - self.endpoints = { - "position": "/api/v1/position", - "open_orders": "/api/v1/orders", - "create_order": "/api/v1/orders", - "cancel_order": "/api/v1/orders", - "ohlcvs": "/api/v1/kline/query", - "public_token_ws": "/api/v1/bullet-public", - "private_token_ws": "/api/v1/bullet-private", - "income": "/api/v1/recentFills", - "server_time": "/api/v1/timestamp", - "recent_orders": "/api/v1/recentDoneOrders", - } - self.hedge_mode = self.config["hedge_mode"] = False - else: - raise "Not implemented" - - self.endpoints["spot_balance"] = "/api/v1/accounts" - self.endpoints["balance"] = "/api/v1/account-overview" - self.endpoints["exchange_info"] = "/api/v1/contracts/active" - self.endpoints["ticker"] = "/api/v1/ticker" - self.endpoints["funds_transfer"] = "/asset/v1/private/transfer" # TODO - - async def _init(self): - self.init_market_type() - info = await self.public_get(self.endpoints["exchange_info"]) - for elm in info["data"]: - if elm["symbol"] == self.symbol: - break - else: - raise Exception(f"symbol missing {self.symbol}") - self.coin = elm["baseCurrency"] - self.quote = elm["quoteCurrency"] - self.price_step = self.config["price_step"] = float(elm["tickSize"]) - self.qty_step = self.config["qty_step"] = float(elm["lotSize"]) - self.min_qty = self.config["min_qty"] = 1.0 - self.min_cost = self.config["min_cost"] = 0.0 - self.c_mult = self.config["c_mult"] = float(elm["multiplier"]) - self.leverage = self.config["leverage"] - await super()._init() - await self.init_order_book() - await self.update_position() - - async def init_order_book(self): - ticker = None - try: - ticker = await self.private_get(self.endpoints["ticker"], {"symbol": self.symbol}) - self.ob = [ - float(ticker["data"]["bestBidPrice"]), - float(ticker["data"]["bestAskPrice"]), - ] - self.price = float(ticker["data"]["price"]) - return True - except Exception as e: - logging.error(f"error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - open_orders = None - try: - open_orders = await self.private_get( - self.endpoints["open_orders"], {"symbol": self.symbol, "status": "active"} - ) - return [ - { - "order_id": elm["id"], - "custom_id": elm["clientOid"], - "symbol": elm["symbol"], - "price": float(elm["price"]), - "qty": float(elm["size"]), - "side": elm["side"], - "position_side": determine_pos_side(elm), - "timestamp": elm["createdAt"], - } - for elm in open_orders["data"]["items"] - ] - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(open_orders) - traceback.print_exc() - return False - - async def public_get(self, url: str, params=None) -> dict: - if params is None: - params = {} - async with self.session.get(self.base_endpoint + url, params=params) as response: - result = await response.text() - return json.loads(result) - - async def private_( - self, - type_: str, - base_endpoint: str, - url: str, - params=None, - ) -> dict: - if params is None: - params = {} - data_json = None - timestamp = int(time() * 1000) - if type_ == "get" or "delete" in type_: - if len(params) > 0: - url += "?" - for param in params: - url += f"{param}={params[param]}&" - str_to_sign = f"{str(timestamp)}{type_.upper()}{url}" - elif type_ == "post": - data_json = json.dumps(params, separators=(",", ":"), ensure_ascii=False) - str_to_sign = f"{str(timestamp)}{type_.upper()}{url}{data_json}" - else: - logging.error(f"not implemented") - return - - signature = base64.b64encode( - hmac.new( - self.secret.encode("utf-8"), str_to_sign.encode("utf-8"), hashlib.sha256 - ).digest() - ) - - passphrase = base64.b64encode( - hmac.new( - self.secret.encode("utf-8"), - self.passphrase.encode("utf-8"), - hashlib.sha256, - ).digest() - ) - headers = { - "KC-API-SIGN": signature.decode("utf-8"), - "KC-API-TIMESTAMP": str(timestamp), - "KC-API-KEY": self.key, - "KC-API-PASSPHRASE": passphrase.decode("utf-8"), - "KC-API-KEY-VERSION": "2", - } - - if "get" in type_ or "delete" in type_: - async with getattr(self.session, type_)(base_endpoint + url, headers=headers) as response: - result = await response.text() - return json.loads(result) - - elif "post" in type_ and data_json: - headers["Content-Type"] = "application/json" - async with getattr(self.session, type_)( - base_endpoint + url, headers=headers, data=data_json - ) as response: - result = await response.text() - return json.loads(result) - - async def private_get(self, url: str, params=None, base_endpoint: str = None) -> dict: - if params is None: - params = {} - return await self.private_( - "get", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def private_delete(self, url: str, params=None, base_endpoint: str = None) -> dict: - if params is None: - params = {} - return await self.private_( - "delete", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def private_post(self, url: str, params=None, base_endpoint: str = None) -> dict: - if params is None: - params = {} - return await self.private_( - "post", - self.base_endpoint if base_endpoint is None else base_endpoint, - url, - params, - ) - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - raise "Not implemented" - - async def get_server_time(self): - server_time = await self.public_get(self.endpoints["server_time"]) - return server_time["data"] - - async def fetch_position(self) -> dict: - positions, balance = None, None - try: - positions, balance = await asyncio.gather( - self.private_get(self.endpoints["position"], {"symbol": self.symbol}), - self.private_get(self.endpoints["balance"], {"currency": self.quote}), - ) - position = { - "long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": 0.0, - "equity": 0.0, - } - if positions["data"]["currentQty"] > 0.0: - position["long"]["size"] = positions["data"]["currentQty"] - position["long"]["price"] = positions["data"]["avgEntryPrice"] - position["long"]["liquidation_price"] = positions["data"]["liquidationPrice"] - elif positions["data"]["currentQty"] < 0.0: - position["short"]["size"] = positions["data"]["currentQty"] - position["short"]["price"] = positions["data"]["avgEntryPrice"] - position["short"]["liquidation_price"] = positions["data"]["liquidationPrice"] - position["wallet_balance"] = balance["data"]["marginBalance"] - # if false, enable auto margin deposit - if not positions["data"]["autoDeposit"]: - logging.info("enabling auto margin deposit") - ret = None - try: - ret = await self.private_post( - "/api/v1/position/margin/auto-deposit-status", - {"symbol": self.symbol, "status": True}, - ) - logging.info(f"{ret}") - except Exception as exx: - logging.error(f"failed to enable auto margin deposit {exx}") - print_async_exception(ret) - traceback.print_exc() - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(positions) - print_async_exception(balance) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - if not orders: - return [] - creations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - creation = None - try: - creation = asyncio.create_task(self.execute_order(order)) - creations.append((order, creation)) - except Exception as e: - longging.error(f"error creating order {order} {e}") - print_async_exception(creation) - traceback.print_exc() - results = [] - for creation in creations: - result = None - try: - result = await creation[1] - results.append(result) - except Exception as e: - logging.error(f"error creating order {creation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_order(self, order: dict) -> dict: - executed = None - try: - params = { - "symbol": self.symbol, - "side": order["side"], - "type": order["type"], - "leverage": str(self.leverage), - "size": int(order["qty"]), - "reduceOnly": order["reduce_only"], - } - if order["type"] == "limit": - params["postOnly"] = True - params["price"] = str(order["price"]) - params["clientOid"] = order["custom_id"] - executed = await self.private_post(self.endpoints["create_order"], params) - if "code" in executed and executed["code"] == "200000": - return { - "symbol": self.symbol, - "side": order["side"], - "order_id": executed["data"]["orderId"], - "position_side": order["position_side"], - "type": order["type"], - "qty": int(order["qty"]), - "price": order["price"], - } - raise Exception - except Exception as e: - logging.error(f"error executing order {executed} {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return None - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - for order in sorted(orders, key=lambda x: calc_diff(x["price"], self.price)): - cancellation = None - try: - cancellation = asyncio.create_task(self.execute_cancellation(order)) - cancellations.append((order, cancellation)) - except Exception as e: - logging.error(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - results = [] - for cancellation in cancellations: - result = None - try: - result = await cancellation[1] - results.append(result) - except Exception as e: - logging.error(f"error cancelling order {cancellation} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def execute_cancellation(self, order: dict) -> dict: - cancellation = None - try: - cancellation = await self.private_delete( - f"{self.endpoints['cancel_order']}/{order['order_id']}", {} - ) - return { - "symbol": self.symbol, - "side": order["side"], - "order_id": cancellation["data"]["cancelledOrderIds"][0], - "position_side": order["position_side"], - "qty": order["qty"], - "price": order["price"], - } - except Exception as e: - logging.error(f"error cancelling order {order} {e}") - print_async_exception(cancellation) - traceback.print_exc() - self.ts_released["force_update"] = 0.0 - return {} - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=200 - ): - # m -> minutes; h -> hours; d -> days; w -> weeks; M -> months - interval_map = { - "1m": 1, - "3m": 3, - "5m": 5, - "15m": 15, - "30m": 30, - "1h": 60, - "2h": 120, - "4h": 240, - "6h": 360, - "12h": 720, - "1d": "D", - "1w": "W", - "1M": "M", - } - assert interval in interval_map - params = { - "symbol": self.symbol if symbol is None else symbol, - "granularity": interval_map[interval], - } - fetched = await self.public_get(self.endpoints["ohlcvs"], params) - ohlcvs = [] - for e in fetched["data"]: - ohlcv = { - "timestamp": float(e[0]), - "high": float(e[1]), - "low": float(e[2]), - "close": float(e[3]), - "volume": float(e[4]), - } - ohlcvs.append(ohlcv) - return ohlcvs - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "Trade", - end_time: int = None, - ): - raise "Not implemented" - - async def fetch_income( - self, - symbol: str = None, - income_type: str = None, - limit: int = 50, - start_time: int = None, - end_time: int = None, - page=None, - ): - raise "Not implemented" - - async def fetch_fills( - self, - limit: int = 200, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - return [] - - async def fetch_latest_fills(self): - fetched = None - try: - fetched = await self.private_get(self.endpoints["recent_orders"], {"symbol": self.symbol}) - return [ - { - "order_id": elm["id"], - "symbol": elm["symbol"], - "type": elm["type"], - "status": elm["status"], - "custom_id": elm["clientOid"], - "price": float(elm["price"]), - "qty": float(elm["filledSize"]), - "original_qty": float(elm["size"]), - "reduce_only": elm["reduceOnly"], - "side": elm["side"], - "position_side": determine_pos_side(elm), - "timestamp": float(elm["createdAt"]), - } - for elm in fetched["data"] - if elm["symbol"] == self.symbol and not elm["cancelExist"] and not elm["isActive"] - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def init_exchange_config(self): - try: - res = await self.private_post( - "/api/v1/position/risk-limit-level/change", - { - "symbol": self.symbol, - "level": 1, - }, - ) - logging.info(f"risk limit level set {res}") - except Exception as e: - logging.error(f"error setting risk limit level: {e}") - try: - res = await self.private_post( - "/api/v1/position/margin/auto-deposit-status", - { - "symbol": self.symbol, - "status": True, - }, - ) - logging.info(f"set auto deposit margin {res}") - except Exception as e: - logging.error(f"error setting auto deposit margin: {e}") - - def standardize_market_stream_event(self, data: dict) -> [dict]: - try: - return [ - { - "timestamp": int(data["data"]["ts"]), - "price": float(data["data"]["price"]), - "qty": float(data["data"]["size"]), - "is_buyer_maker": data["data"]["side"] == "sell", - } - ] - except Exception as ex: - logging.error(f"error in websocket tick {ex}") - return [] - - async def beat_heart_user_stream(self) -> None: - while True: - await asyncio.sleep(27) - try: - await self.ws_user.send(json.dumps({"type": "ping"})) - except Exception as e: - traceback.print_exc() - logging.error(f"error sending heartbeat user {e}") - - async def init_user_stream(self) -> None: - res = await self.private_post(self.endpoints["private_token_ws"], {}) - logging.info(f"init user stream {res}") - self.endpoints["websocket_user"] = ( - f"{res['data']['instanceServers'][0]['endpoint']}?token={res['data']['token']}" - ) - - async def init_market_stream(self): - res = await self.private_post(self.endpoints["public_token_ws"], {}) - logging.info(f"init market stream {res}") - self.endpoints["websocket_market"] = ( - f"{res['data']['instanceServers'][0]['endpoint']}?token={res['data']['token']}" - ) - - async def subscribe_to_market_stream(self, ws): - await ws.send( - json.dumps( - { - "type": "subscribe", - "topic": f"/contractMarket/execution:{self.symbol}", - "response": True, - } - ) - ) - - async def subscribe_to_user_stream(self, ws): - await ws.send(json.dumps({"type": "openTunnel", "newTunnelId": "order", "response": True})) - await ws.send(json.dumps({"type": "openTunnel", "newTunnelId": "wallet", "response": True})) - await ws.send(json.dumps({"type": "openTunnel", "newTunnelId": "position", "response": True})) - - await ws.send( - json.dumps( - { - "type": "subscribe", - "topic": f"/contractMarket/tradeOrders:{self.symbol}", - "response": True, - "privateChannel": True, - "tunnelId": "order", - } - ) - ) - await ws.send( - json.dumps( - { - "type": "subscribe", - "topic": f"/contractAccount/wallet", - "response": True, - "privateChannel": True, - "tunnelId": "wallet", - } - ) - ) - await ws.send( - json.dumps( - { - "type": "subscribe", - "topic": f"/contract/position:{self.symbol}", - "response": True, - "privateChannel": True, - "tunnelId": "position", - } - ) - ) - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - raise "Not implemented" - - def standardize_user_stream_event( - self, event: Union[List[Dict], Dict] - ) -> Union[List[Dict], Dict]: - events = [] - if "tunnelId" not in event: - return events - if event["tunnelId"] == "order": - if event["data"]["type"] == "open": - new_open_order = { - "order_id": event["data"]["orderId"], - "symbol": event["data"]["symbol"], - "price": float(event["data"]["price"]), - "qty": float(int(event["data"]["size"])), - "type": "limit", - "side": event["data"]["side"].lower(), - "timestamp": event["data"]["orderTime"], - } - if new_open_order["side"] == "buy": - if self.position["long"]["size"] == 0.0: - if self.position["short"]["size"] == 0.0: - new_open_order["position_side"] = "long" - else: - new_open_order["position_side"] = "short" - else: - new_open_order["position_side"] = "long" - elif new_open_order["side"] == "sell": - if self.position["short"]["size"] == 0.0: - if self.position["long"]["size"] == 0.0: - new_open_order["position_side"] = "short" - else: - new_open_order["position_side"] = "long" - else: - new_open_order["position_side"] = "short" - else: - raise Exception(f"unknown pos side {event}") - events.append({"new_open_order": new_open_order}) - elif event["data"]["type"] in ["match", "filled"]: - events.append({"deleted_order_id": event["data"]["orderId"], "filled": True}) - elif event["data"]["type"] in ["canceled", "update"]: - events.append({"deleted_order_id": event["data"]["orderId"]}) - elif event["tunnelId"] == "position": - if ( - event["data"]["symbol"] == self.symbol - and event["data"]["changeReason"] != "markPriceChange" - ): - standardized = {} - if event["data"]["changeReason"] == "positionChange": - standardized["psize_long"] = 0.0 - standardized["pprice_long"] = 0.0 - standardized["psize_short"] = 0.0 - standardized["pprice_short"] = 0.0 - if event["data"]["currentQty"] > 0.0: - standardized["psize_long"] = event["data"]["currentQty"] - standardized["pprice_long"] = event["data"]["avgEntryPrice"] - elif event["data"]["currentQty"] < 0.0: - standardized["psize_short"] = event["data"]["currentQty"] - standardized["pprice_short"] = event["data"]["avgEntryPrice"] - events.append(standardized) - - elif event["tunnelId"] == "wallet" and event["subject"] == "availableBalance.change": - """ - events.append( - { - "wallet_balance": float(event["data"]["availableBalance"]) - + float(event["data"]["holdBalance"]) - } - ) - """ - # updates too often, would cause spam to exchange, will work without - pass - - return events diff --git a/exchanges/okx.py b/exchanges/okx.py deleted file mode 100644 index d1de3519f..000000000 --- a/exchanges/okx.py +++ /dev/null @@ -1,601 +0,0 @@ -import asyncio -import hashlib -import hmac -import json -import traceback -from time import time, time_ns -from urllib.parse import urlencode -from uuid import uuid4 - -import aiohttp -import numpy as np -import ccxt.async_support as ccxt - -from procedures import load_ccxt_version - -ccxt_version_req = load_ccxt_version() -assert ( - ccxt.__version__ == ccxt_version_req -), f"Currently ccxt {ccxt.__version__} is installed. Please pip reinstall requirements.txt or install ccxt v{ccxt_version_req} manually" -import uuid - -from passivbot import Bot, logging -from procedures import print_, print_async_exception -from pure_funcs import ts_to_date, sort_dict_keys, format_float, shorten_custom_id - - -class OKXBot(Bot): - def __init__(self, config: dict): - self.exchange = "okx" - self.ohlcv = True # TODO implement websocket - self.max_n_orders_per_batch = 20 - self.max_n_cancellations_per_batch = 20 - super().__init__(config) - self.okx = getattr(ccxt, "okx")( - {"apiKey": self.key, "secret": self.secret, "password": self.passphrase} - ) - self.custom_id_max_length = 32 - - async def init_market_type(self): - self.markets = None - try: - self.markets = await self.okx.fetch_markets() - self.market_type = "linear perpetual swap" - if self.symbol.endswith("USDT"): - self.symbol = f"{self.symbol[:self.symbol.find('USDT')]}/USDT:USDT" - else: - # TODO implement inverse - raise NotImplementedError(f"not implemented for {self.symbol}") - except Exception as e: - logging.error(f"error initiating market type {e}") - print_async_exception(self.markets) - traceback.print_exc() - raise Exception("stopping bot") - - async def _init(self): - await self.init_market_type() - for elm in self.markets: - if elm["symbol"] == self.symbol: - break - else: - raise Exception(f"symbol {self.symbol} not found") - self.inst_id = elm["info"]["instId"] - self.inst_type = elm["info"]["instType"] - self.coin = elm["base"] - self.quote = elm["quote"] - self.margin_coin = elm["quote"] - self.c_mult = self.config["c_mult"] = elm["contractSize"] - self.min_qty = self.config["min_qty"] = ( - elm["limits"]["amount"]["min"] if elm["limits"]["amount"]["min"] else 0.0 - ) - self.min_cost = self.config["min_cost"] = ( - elm["limits"]["cost"]["min"] if elm["limits"]["cost"]["min"] else 0.0 - ) - self.qty_step = self.config["qty_step"] = elm["precision"]["amount"] - self.price_step = self.config["price_step"] = elm["precision"]["price"] - self.inverse = self.config["inverse"] = False - await super()._init() - await self.init_order_book() - await self.update_position() - - async def get_server_time(self): - # millis - return await self.okx.fetch_time() - - async def transfer_from_derivatives_to_spot(self, coin: str, amount: float): - return - return await self.private_post( - self.endpoints["futures_transfer"], - {"asset": coin, "amount": amount, "type": 2}, - base_endpoint=self.spot_base_endpoint, - ) - - async def execute_leverage_change(self): - return await self.okx.set_leverage( - self.leverage, symbol=self.symbol, params={"mgnMode": "cross"} - ) - - async def init_exchange_config(self) -> bool: - try: - logging.info( - str( - await self.okx.set_margin_mode( - "cross", symbol=self.symbol, params={"lever": self.leverage} - ) - ) - ) - except Exception as e: - print(e) - try: - logging.info(str(await self.execute_leverage_change())) - except Exception as e: - print(e) - try: - logging.info(str(await self.okx.set_position_mode(True))) - except Exception as e: - print(e) - - async def init_order_book(self): - ticker = None - try: - ticker = await self.okx.fetch_ticker(symbol=self.symbol) - self.ob = [ticker["bid"], ticker["ask"]] - self.price = np.random.choice(self.ob) - return True - except Exception as e: - logging.error(f"error updating order book {e}") - print_async_exception(ticker) - return False - - async def fetch_open_orders(self) -> [dict]: - open_orders = None - try: - open_orders = await self.okx.fetch_open_orders(symbol=self.symbol) - return [ - { - "order_id": e["id"], - "symbol": e["symbol"], - "price": e["price"], - "qty": e["amount"], - "type": e["type"], - "side": e["side"], - "position_side": e["info"]["posSide"], - "timestamp": e["timestamp"], - } - for e in open_orders - ] - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(open_orders) - traceback.print_exc() - return False - - async def fetch_position(self) -> dict: - positions, balance = None, None - try: - positions, balance = await asyncio.gather( - self.okx.fetch_positions(), - self.okx.fetch_balance(), - ) - positions = [ - e for e in positions if e["symbol"] == self.symbol and e["marginMode"] == "cross" - ] - position = { - "long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0}, - "wallet_balance": 0.0, - "equity": 0.0, - } - if positions: - for p in positions: - if p["side"] == "long": - position["long"] = { - "size": p["contracts"], - "price": p["entryPrice"], - "liquidation_price": ( - p["liquidationPrice"] if p["liquidationPrice"] else 0.0 - ), - } - elif p["side"] == "short": - position["short"] = { - "size": p["contracts"], - "price": p["entryPrice"], - "liquidation_price": ( - p["liquidationPrice"] if p["liquidationPrice"] else 0.0 - ), - } - for elm in balance["info"]["data"]: - for elm2 in elm["details"]: - if elm2["ccy"] == self.quote: - position["wallet_balance"] = float(elm2["cashBal"]) - break - return position - except Exception as e: - logging.error(f"error fetching pos or balance {e}") - print_async_exception(positions) - print_async_exception(balance) - traceback.print_exc() - return None - - async def execute_orders(self, orders: [dict]) -> [dict]: - if len(orders) == 0: - return [] - executed = None - try: - to_execute = [] - for order in orders: - params = { - "instId": self.inst_id, - "tdMode": "cross", - "side": order["side"], - "posSide": order["position_side"], - "sz": int(order["qty"]), - "reduceOnly": order["reduce_only"], - "tag": self.broker_code, - } - if order["type"] == "limit": - params["ordType"] = "post_only" - params["px"] = order["price"] - - params["clOrdId"] = order["custom_id"] - # print('debug client order id', params['clOrdId']) - # print('debug execute order', params) - to_execute.append(params) - executed = await self.okx.private_post_trade_batch_orders(params=to_execute) - to_return = [] - for elm in executed["data"]: - for to_ex in to_execute: - if elm["clOrdId"] == to_ex["clOrdId"] and elm["sCode"] == "0": - to_return.append( - { - "symbol": self.symbol, - "side": to_ex["side"], - "position_side": to_ex["posSide"], - "type": to_ex["ordType"], - "qty": to_ex["sz"], - "order_id": int(elm["ordId"]), - "custom_id": elm["clOrdId"], - "price": to_ex["px"], - } - ) - break - return to_return - except Exception as e: - print(f"error executing order {executed} {orders} {e}") - print_async_exception(executed) - traceback.print_exc() - return [] - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if not orders: - return [] - cancellations = [] - try: - cancellations = await self.okx.private_post_trade_cancel_batch_orders( - params=[{"instId": self.inst_id, "ordId": str(order["order_id"])} for order in orders] - ) - to_return = [] - for elm in cancellations["data"]: - for order in orders: - if elm["ordId"] == order["order_id"] and elm["sCode"] == "0": - to_return.append( - { - "symbol": self.symbol, - "side": order["side"], - "position_side": order["position_side"], - "type": order["type"], - "qty": order["qty"], - "order_id": int(elm["ordId"]), - "price": order["price"], - } - ) - break - return to_return - except Exception as e: - logging.error(f"error cancelling orders {orders} {e}") - print_async_exception(cancellations) - traceback.print_exc() - return [] - - async def fetch_latest_fills(self): - fetched = None - try: - params = {"instType": self.inst_type, "instId": self.inst_id} - fetched = await self.okx.private_get_trade_fills(params=params) - fills = [ - { - "order_id": elm["ordId"], - "symbol": self.symbol, - "status": None, - "custom_id": elm["clOrdId"], - "price": float(elm["fillPx"]), - "qty": float(elm["fillSz"]), - "original_qty": None, - "type": None, - "reduce_only": None, - "side": elm["side"], - "position_side": elm["posSide"], - "timestamp": float(elm["ts"]), - } - for elm in fetched["data"] - ] - except Exception as e: - print("error fetching latest fills", e) - print_async_exception(fetched) - traceback.print_exc() - return [] - return fills - - async def fetch_all_fills( - self, - symbol=None, - limit: int = 1000, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - fetched = self.okx.private_get_trade_fills_history({"instType": self.inst_type}) - fillsd = {} - while True: - if len(fetched["data"]) == 0: - break - new_fills = [elm for elm in fetched["data"] if elm["billId"] not in fillsd] - if not new_fills: - break - fillsd.update({elm["billId"]: elm for elm in new_fills}) - end_time = int(new_fills[-1]["fillTime"]) - fetched = self.okx.private_get_trade_fills_history( - {"instType": self.inst_type, "end": end_time} - ) - return sorted(fillsd.values(), key=lambda x: x["fillTime"]) - - def fetch_all_fills_(start_time: int): - fetched = okx.private_get_trade_fills_history({"instType": "SWAP"}) - fillsd = {} - while True: - if len(fetched["data"]) == 0: - break - new_fills = [elm for elm in fetched["data"] if elm["billId"] not in fillsd] - if not new_fills: - break - fillsd.update({elm["billId"]: elm for elm in new_fills}) - end_time = int(new_fills[-1]["fillTime"]) - fetched = okx.private_get_trade_fills_history({"instType": "SWAP", "end": end_time}) - print(end_time) - return sorted(fillsd.values(), key=lambda x: x["fillTime"]) - - async def fetch_fills( - self, - symbol=None, - limit: int = 1000, - from_id: int = None, - start_time: int = None, - end_time: int = None, - ): - return [] - - async def get_all_income( - self, - symbol: str = None, - start_time: int = None, - income_type: str = "realized_pnl", - end_time: int = None, - ): - income = [] - while True: - fetched = await self.fetch_income( - symbol=symbol, - start_time=start_time, - income_type=income_type, - limit=1000, - ) - print_(["fetched income", ts_to_date(fetched[0]["timestamp"])]) - if fetched == income[-len(fetched) :]: - break - income += fetched - if len(fetched) < 1000: - break - start_time = income[-1]["timestamp"] - income_d = {e["transaction_id"]: e for e in income} - return sorted(income_d.values(), key=lambda x: x["timestamp"]) - - async def fetch_income( - self, - symbol: str = None, - income_type: str = None, - limit: int = 1000, - start_time: int = None, - end_time: int = None, - ): - params = {"limit": limit} - if symbol is not None: - params["symbol"] = symbol - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(end_time) - if income_type is not None: - params["incomeType"] = income_type.upper() - try: - fetched = await self.private_get(self.endpoints["income"], params) - return [ - { - "symbol": e["symbol"], - "income_type": e["incomeType"].lower(), - "income": float(e["income"]), - "token": e["asset"], - "timestamp": float(e["time"]), - "info": e["info"], - "transaction_id": float(e["tranId"]), - "trade_id": float(e["tradeId"]) if e["tradeId"] != "" else 0, - } - for e in fetched - ] - except Exception as e: - print("error fetching income: ", e) - traceback.print_exc() - return [] - return income - - async def fetch_account(self): - try: - return await self.private_get( - self.endpoints["account"], base_endpoint=self.spot_base_endpoint - ) - except Exception as e: - print("error fetching account: ", e) - return {"balances": []} - - async def fetch_ticks( - self, - from_id: int = None, - start_time: int = None, - end_time: int = None, - do_print: bool = True, - ): - raise NotImplementedError - params = {"symbol": self.symbol, "limit": 1000} - if from_id is not None: - params["fromId"] = max(0, from_id) - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(end_time) - try: - fetched = await self.public_get(self.endpoints["ticks"], params) - except Exception as e: - print("error fetching ticks a", e) - traceback.print_exc() - return [] - try: - ticks = [ - { - "trade_id": int(t["a"]), - "price": float(t["p"]), - "qty": float(t["q"]), - "timestamp": int(t["T"]), - "is_buyer_maker": t["m"], - } - for t in fetched - ] - if do_print: - print_( - [ - "fetched ticks", - self.symbol, - ticks[0]["trade_id"], - ts_to_date(float(ticks[0]["timestamp"]) / 1000), - ] - ) - except Exception as e: - print("error fetching ticks b", e, fetched) - ticks = [] - if do_print: - print_(["fetched no new ticks", self.symbol]) - return ticks - - async def fetch_ticks_time(self, start_time: int, end_time: int = None, do_print: bool = True): - raise NotImplementedError - return await self.fetch_ticks(start_time=start_time, end_time=end_time, do_print=do_print) - - async def fetch_ohlcvs( - self, symbol: str = None, start_time: int = None, interval="1m", limit=100 - ): - interval = interval.replace("h", "H") - intervals = ["1m", "3m", "5m", "15m", "30m", "1H", "2H", "4H"] - assert interval in intervals, f"{interval} {intervals}" - params = {"instId": self.inst_id, "bar": interval, "limit": limit} - if start_time is not None: - params["after"] = str(start_time) - try: - fetched = await self.okx.public_get_market_history_candles(params) - return [ - { - **{"timestamp": int(elm[0])}, - **{ - k: float(elm[i + 1]) - for i, k in enumerate(["open", "high", "low", "close", "volume"]) - }, - } - for elm in fetched["data"] - ] - except Exception as e: - print("error fetching ohlcvs", fetched, e) - traceback.print_exc() - - async def transfer(self, type_: str, amount: float, asset: str = "USDT"): - raise NotImplementedError - params = {"type": type_.upper(), "amount": amount, "asset": asset} - return await self.private_post( - self.endpoints["transfer"], params, base_endpoint=self.spot_base_endpoint - ) - - def standardize_market_stream_event(self, data: dict) -> [dict]: - raise NotImplementedError - try: - return [ - { - "timestamp": int(data["T"]), - "price": float(data["p"]), - "qty": float(data["q"]), - "is_buyer_maker": data["m"], - } - ] - except Exception as e: - print("error in websocket tick", e, data) - return [] - - async def beat_heart_user_stream(self) -> None: - raise NotImplementedError - while True: - await asyncio.sleep(60 + np.random.randint(60 * 9, 60 * 14)) - await self.init_user_stream() - - async def init_user_stream(self) -> None: - raise NotImplementedError - try: - response = await self.private_post(self.endpoints["listen_key"]) - self.listen_key = response["listenKey"] - self.endpoints["websocket_user"] = self.endpoints["websocket"] + self.listen_key - except Exception as e: - traceback.print_exc() - print_(["error fetching listen key", e]) - - def standardize_user_stream_event(self, event: dict) -> dict: - raise NotImplementedError - standardized = {} - if "e" in event: - if event["e"] == "ACCOUNT_UPDATE": - if "a" in event and "B" in event["a"]: - for x in event["a"]["B"]: - if x["a"] == self.margin_coin: - standardized["wallet_balance"] = float(x["cw"]) - if event["a"]["m"] == "ORDER": - for x in event["a"]["P"]: - if x["s"] != self.symbol: - standardized["other_symbol"] = x["s"] - standardized["other_type"] = "account_update" - continue - if x["ps"] == "LONG": - standardized["psize_long"] = float(x["pa"]) - standardized["pprice_long"] = float(x["ep"]) - elif x["ps"] == "SHORT": - standardized["psize_short"] = float(x["pa"]) - standardized["pprice_short"] = float(x["ep"]) - elif event["e"] == "ORDER_TRADE_UPDATE": - if event["o"]["s"] == self.symbol: - if event["o"]["X"] == "NEW": - standardized["new_open_order"] = { - "order_id": int(event["o"]["i"]), - "symbol": event["o"]["s"], - "price": float(event["o"]["p"]), - "qty": float(event["o"]["q"]), - "type": event["o"]["o"].lower(), - "side": event["o"]["S"].lower(), - "position_side": event["o"]["ps"].lower().replace("short", "short"), - "timestamp": int(event["o"]["T"]), - } - elif event["o"]["X"] in ["CANCELED", "EXPIRED"]: - standardized["deleted_order_id"] = int(event["o"]["i"]) - elif event["o"]["X"] == "FILLED": - standardized["deleted_order_id"] = int(event["o"]["i"]) - standardized["filled"] = True - elif event["o"]["X"] == "PARTIALLY_FILLED": - standardized["deleted_order_id"] = int(event["o"]["i"]) - standardized["partially_filled"] = True - else: - standardized["other_symbol"] = event["o"]["s"] - standardized["other_type"] = "order_update" - return standardized - - def format_custom_ids(self, orders: [dict]) -> [dict]: - # okx needs broker code at the beginning of the custom_id - new_orders = [] - for order in orders: - order["custom_id"] = ( - self.broker_code - + shorten_custom_id(order["custom_id"] if "custom_id" in order else "") - + uuid4().hex - )[: self.custom_id_max_length] - new_orders.append(order) - return new_orders diff --git a/exchanges_multi/binance.py b/exchanges_multi/binance.py deleted file mode 100644 index c4e65a0a0..000000000 --- a/exchanges_multi/binance.py +++ /dev/null @@ -1,424 +0,0 @@ -from passivbot_multi import Passivbot, logging -from uuid import uuid4 -from njit_funcs import round_ -import ccxt.pro as ccxt_pro -import ccxt.async_support as ccxt_async -import pprint -import asyncio -import traceback -import numpy as np -from pure_funcs import floatify, ts_to_date_utc, calc_hash, determine_pos_side_ccxt -from procedures import print_async_exception, utc_ms, assert_correct_ccxt_version - -assert_correct_ccxt_version(ccxt=ccxt_async) - - -class BinanceBot(Passivbot): - def __init__(self, config: dict): - super().__init__(config) - self.ccp = getattr(ccxt_pro, "binanceusdm")( - { - "apiKey": self.user_info["key"], - "secret": self.user_info["secret"], - "password": self.user_info["passphrase"], - } - ) - self.cca = getattr(ccxt_async, "binanceusdm")( - { - "apiKey": self.user_info["key"], - "secret": self.user_info["secret"], - "password": self.user_info["passphrase"], - "headers": {"referer": self.broker_code} if self.broker_code else {}, - } - ) - - def set_market_specific_settings(self): - super().set_market_specific_settings() - for symbol in self.markets_dict: - elm = self.markets_dict[symbol] - self.min_costs[symbol] = ( - 0.1 if elm["limits"]["cost"]["min"] is None else elm["limits"]["cost"]["min"] - ) - self.min_qtys[symbol] = elm["limits"]["amount"]["min"] - for felm in elm["info"]["filters"]: - if felm["filterType"] == "PRICE_FILTER": - self.price_steps[symbol] = float(felm["tickSize"]) - elif felm["filterType"] == "MARKET_LOT_SIZE": - self.qty_steps[symbol] = float(felm["stepSize"]) - self.c_mults[symbol] = elm["contractSize"] - - async def get_active_symbols(self): - # get symbols with open orders and/or positions - positions, balance = await self.fetch_positions() - return sorted(set(elm["symbol"] for elm in positions)) - # open_orders = await self.fetch_open_orders(all=True) - # return sorted(set([elm["symbol"] for elm in positions + open_orders])) - - async def start_websockets(self): - await asyncio.gather( - self.watch_balance(), - self.watch_orders(), - self.watch_tickers(), - ) - - async def watch_balance(self): - while True: - try: - if self.stop_websocket: - break - res = await self.ccp.watch_balance() - self.handle_balance_update(res) - except Exception as e: - print(f"exception watch_balance", e) - traceback.print_exc() - await asyncio.sleep(1) - - async def watch_orders(self): - while True: - try: - if self.stop_websocket: - break - res = await self.ccp.watch_orders() - for i in range(len(res)): - res[i]["position_side"] = res[i]["info"]["ps"].lower() - res[i]["qty"] = res[i]["amount"] - self.handle_order_update(res) - except Exception as e: - print(f"exception watch_orders", e) - traceback.print_exc() - await asyncio.sleep(1) - - async def watch_tickers(self): - self.prev_active_symbols = set() - while not self.stop_websocket: - try: - res = await self.ccp.watch_tickers(self.active_symbols) - res = res[next(iter(res))] - res["bid"] = round_( - res["last"] - self.price_steps[res["symbol"]], self.price_steps[res["symbol"]] - ) - res["ask"] = round_( - res["last"] + self.price_steps[res["symbol"]], self.price_steps[res["symbol"]] - ) - if (actives := set(self.active_symbols)) != self.prev_active_symbols: - for symbol in actives - self.prev_active_symbols: - logging.info(f"Started watching ticker for symbol: {symbol}") - for symbol in self.prev_active_symbols - actives: - logging.info(f"Stopped watching ticker for symbol: {symbol}") - self.prev_active_symbols = actives - self.handle_ticker_update(res) - except Exception as e: - logging.error( - f"Exception in watch_tickers: {e}, active symbols: {len(self.active_symbols)}" - ) - traceback.print_exc() - await asyncio.sleep(1) - - async def watch_tickers_old(self, symbols=None): - self.prev_active_symbols = set() - while not self.stop_websocket: - try: - res = await self.ccp.watch_bids_asks(self.active_symbols) - if (actives := set(self.active_symbols)) != self.prev_active_symbols: - for symbol in actives - self.prev_active_symbols: - logging.info(f"Started watching ticker for symbol: {symbol}") - for symbol in self.prev_active_symbols - actives: - logging.info(f"Stopped watching ticker for symbol: {symbol}") - self.prev_active_symbols = actives - self.handle_ticker_update(res) - except Exception as e: - logging.error( - f"Exception in watch_tickers: {e}, active symbols: {len(self.active_symbols)}" - ) - traceback.print_exc() - await asyncio.sleep(1) - - async def fetch_open_orders(self, symbol: str = None, all=False) -> [dict]: - fetched = None - open_orders = {} - try: - # binance has expensive fetch_open_orders without specified symbol - if all: - self.cca.options["warnOnFetchOpenOrdersWithoutSymbol"] = False - logging.info(f"fetching all open orders for binance") - fetched = await self.cca.fetch_open_orders() - self.cca.options["warnOnFetchOpenOrdersWithoutSymbol"] = True - else: - if hasattr(self, "active_symbols") and self.active_symbols: - symbols_ = self.active_symbols - else: - symbols_ = sorted(set(self.positions)) - fetched = await asyncio.gather( - *[self.cca.fetch_open_orders(symbol=symbol) for symbol in symbols_] - ) - fetched = [x for sublist in fetched for x in sublist] - for elm in fetched: - elm["position_side"] = elm["info"]["positionSide"].lower() - elm["qty"] = elm["amount"] - open_orders[elm["id"]] = elm - return sorted(open_orders.values(), key=lambda x: x["timestamp"]) - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def fetch_positions(self) -> ([dict], float): - # also fetches balance - fetched = None - try: - fetched = await self.cca.fetch_balance() - fetched = floatify(fetched) - positions = [] - for elm in fetched["info"]["positions"]: - if elm["positionAmt"] == 0.0: - continue - positions.append( - { - "symbol": self.symbol_ids_inv[elm["symbol"]], - "position_side": elm["positionSide"].lower(), - "size": elm["positionAmt"], - "price": elm["entryPrice"], - } - ) - balance = [x for x in fetched["info"]["assets"] if x["asset"] == self.quote][0][ - "walletBalance" - ] - return positions, balance - except Exception as e: - logging.error(f"error fetching positions {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def fetch_tickers(self): - fetched = None - try: - fetched = await self.cca.fapipublic_get_ticker_bookticker() - tickers = { - self.symbol_ids_inv[elm["symbol"]]: { - "bid": float(elm["bidPrice"]), - "ask": float(elm["askPrice"]), - } - for elm in fetched - if elm["symbol"] in self.symbol_ids_inv - } - for sym in tickers: - tickers[sym]["last"] = np.random.choice([tickers[sym]["bid"], tickers[sym]["ask"]]) - return tickers - except Exception as e: - logging.error(f"error fetching tickers {e}") - print_async_exception(fetched) - traceback.print_exc() - if "bybit does not have market symbol" in str(e): - # ccxt is raising bad symbol error - # restart might help... - raise Exception("ccxt gives bad symbol error... attempting bot restart") - return False - - async def fetch_ohlcv(self, symbol: str, timeframe="1m"): - # intervals: 1,3,5,15,30,60,120,240,360,720,D,M,W - fetched = None - try: - fetched = await self.cca.fetch_ohlcv(symbol, timeframe=timeframe, limit=1000) - return fetched - except Exception as e: - logging.error(f"error fetching ohlcv for {symbol} {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def fetch_pnls( - self, - symbol: str = None, - start_time: int = None, - end_time: int = None, - ): - limit = 1000 - if start_time is None and end_time is None: - return await self.fetch_pnl(symbol=symbol) - all_fetched = {} - while True: - fetched = await self.fetch_pnl(symbol=symbol, start_time=start_time, end_time=end_time) - if fetched == []: - break - for elm in fetched: - all_fetched[elm["tranId"]] = elm - if len(fetched) < limit: - break - logging.info(f"debug fetching income {ts_to_date_utc(fetched[-1]['timestamp'])}") - start_time = fetched[-1]["timestamp"] - return sorted(all_fetched.values(), key=lambda x: x["timestamp"]) - - async def fetch_pnl( - self, - symbol: str = None, - start_time: int = None, - end_time: int = None, - ): - fetched = None - try: - params = {"incomeType": "REALIZED_PNL", "limit": 1000} - if symbol is not None: - params["symbol"] = symbol - if start_time is not None: - params["startTime"] = int(start_time) - if end_time is not None: - params["endTime"] = int(end_time) - fetched = floatify(await self.cca.fapiprivate_get_income(params=params)) - for i in range(len(fetched)): - fetched[i]["pnl"] = fetched[i]["income"] - fetched[i]["timestamp"] = fetched[i]["time"] - fetched[i]["id"] = fetched[i]["tranId"] - return sorted(fetched, key=lambda x: x["time"]) - except Exception as e: - logging.error(f"error fetching income {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def execute_cancellation(self, order: dict) -> dict: - executed = None - try: - executed = await self.cca.cancel_order(order["id"], symbol=order["symbol"]) - if "code" in executed and executed["code"] == -2011: - logging.info(f"{executed}") - return {} - return { - "symbol": executed["symbol"], - "side": executed["side"], - "id": executed["id"], - "position_side": executed["info"]["positionSide"].lower(), - "qty": executed["amount"], - "price": executed["price"], - } - except Exception as e: - logging.error(f"error cancelling order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) == 0: - return [] - if len(orders) == 1: - return [await self.execute_cancellation(orders[0])] - return await self.execute_multiple( - orders, "execute_cancellation", self.config["max_n_cancellations_per_batch"] - ) - - async def execute_order(self, order: dict) -> dict: - executed = None - try: - executed = await self.cca.create_limit_order( - symbol=order["symbol"], - side=order["side"], - amount=abs(order["qty"]), - price=order["price"], - params={ - "positionSide": order["position_side"].upper(), - "newClientOrderId": order["custom_id"], - "timeInForce": "GTX", - }, - ) - if ( - "info" in executed - and "code" in executed["info"] - and executed["info"]["code"] == "-5022" - ): - logging.info(f"{executed['info']['msg']}") - return {} - elif "status" in executed and executed["status"] == "open": - executed["position_side"] = executed["info"]["positionSide"].lower() - executed["qty"] = executed["amount"] - executed["reduce_only"] = executed["reduceOnly"] - return executed - except Exception as e: - logging.error(f"error executing order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def execute_orders(self, orders: [dict]) -> [dict]: - if len(orders) == 0: - return [] - if len(orders) == 1: - return [await self.execute_order(orders[0])] - to_execute = [] - for order in orders[: self.config["max_n_creations_per_batch"]]: - to_execute.append( - { - "type": "limit", - "symbol": order["symbol"], - "side": order["side"], - "amount": abs(order["qty"]), - "price": order["price"], - "params": { - "positionSide": order["position_side"].upper(), - "newClientOrderId": order["custom_id"], - "timeInForce": "GTX", - }, - } - ) - executed = None - try: - executed = await self.cca.create_orders(to_execute) - for i in range(len(executed)): - if ( - "info" in executed[i] - and "code" in executed[i]["info"] - and executed[i]["info"]["code"] == "-5022" - ): - logging.info(f"{executed[i]['info']['msg']}") - executed[i] = {} - elif "status" in executed[i] and executed[i]["status"] == "open": - executed[i]["position_side"] = executed[i]["info"]["positionSide"].lower() - executed[i]["qty"] = executed[i]["amount"] - executed[i]["reduce_only"] = executed[i]["reduceOnly"] - return executed - except Exception as e: - logging.error(f"error executing orders {orders} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def update_exchange_config_by_symbols(self, symbols): - coros_to_call_lev, coros_to_call_margin_mode = {}, {} - for symbol in symbols: - try: - coros_to_call_margin_mode[symbol] = asyncio.create_task( - self.cca.set_margin_mode("cross", symbol=symbol) - ) - except Exception as e: - logging.error(f"{symbol}: error setting cross mode {e}") - try: - coros_to_call_lev[symbol] = asyncio.create_task( - self.cca.set_leverage(int(self.live_configs[symbol]["leverage"]), symbol=symbol) - ) - except Exception as e: - logging.error(f"{symbol}: a error setting leverage {e}") - for symbol in symbols: - res = None - to_print = "" - try: - res = await coros_to_call_lev[symbol] - to_print += f"set leverage {res} " - except Exception as e: - logging.error(f"{symbol}: b error setting leverage {e}") - try: - res = await coros_to_call_margin_mode[symbol] - to_print += f"set cross mode {res}" - except: - logging.error(f"error setting cross mode {res}") - if to_print: - logging.info(f"{symbol}: {to_print}") - - async def update_exchange_config(self): - try: - res = await self.cca.set_position_mode(True) - logging.info(f"set hedge mode {res}") - except Exception as e: - if '"code":-4059' in e.args[0]: - logging.info(f"hedge mode: {e}") - else: - logging.error(f"error setting hedge mode {e}") diff --git a/exchanges_multi/bingx.py b/exchanges_multi/bingx.py deleted file mode 100644 index 327521100..000000000 --- a/exchanges_multi/bingx.py +++ /dev/null @@ -1,378 +0,0 @@ -from passivbot_multi import Passivbot, logging -from uuid import uuid4 -import ccxt.pro as ccxt_pro -import ccxt.async_support as ccxt_async -import pprint -import asyncio -import traceback -import numpy as np -from pure_funcs import ( - multi_replace, - floatify, - ts_to_date_utc, - calc_hash, - determine_pos_side_ccxt, -) -from njit_funcs import calc_diff, round_ -from procedures import print_async_exception, utc_ms, assert_correct_ccxt_version - -assert_correct_ccxt_version(ccxt=ccxt_async) - - -class BingXBot(Passivbot): - def __init__(self, config: dict): - super().__init__(config) - self.ccp = getattr(ccxt_pro, self.exchange)( - { - "apiKey": self.user_info["key"], - "secret": self.user_info["secret"], - "headers": {"X-SOURCE-KEY": self.broker_code} if self.broker_code else {}, - } - ) - self.ccp.options["defaultType"] = "swap" - self.cca = getattr(ccxt_async, self.exchange)( - { - "apiKey": self.user_info["key"], - "secret": self.user_info["secret"], - "headers": {"X-SOURCE-KEY": self.broker_code} if self.broker_code else {}, - } - ) - self.cca.options["defaultType"] = "swap" - self.custom_id_max_length = 40 - - def set_market_specific_settings(self): - super().set_market_specific_settings() - for symbol in self.markets_dict: - elm = self.markets_dict[symbol] - self.symbol_ids[symbol] = elm["id"] - self.price_steps[symbol] = round(1.0 / (10 ** elm["precision"]["price"]), 12) - self.qty_steps[symbol] = round(1.0 / (10 ** elm["precision"]["amount"]), 12) - self.min_qtys[symbol] = elm["limits"]["amount"]["min"] - self.min_costs[symbol] = elm["limits"]["cost"]["min"] - self.c_mults[symbol] = 1.0 - - async def start_websockets(self): - await asyncio.gather( - self.watch_balance(), - self.watch_orders(), - self.watch_tickers(), - ) - - async def watch_balance(self): - res = None - while True: - try: - if self.stop_websocket: - break - res = await self.ccp.watch_balance() - if "info" in res: - if "data" in res["info"] and "balance" in res["info"]["data"]: - res[self.quote]["total"] = float(res["info"]["data"]["balance"]["balance"]) - else: - for elm in res["info"]: - if elm["a"] == self.quote: - res[self.quote]["total"] = float(elm["wb"]) - break - self.handle_balance_update(res) - except Exception as e: - print(f"exception watch_balance", e) - print_async_exception(res) - traceback.print_exc() - await asyncio.sleep(1) - - async def watch_orders(self): - while True: - try: - if self.stop_websocket: - break - res = await self.ccp.watch_orders() - for i in range(len(res)): - res[i]["position_side"] = res[i]["info"]["ps"].lower() - res[i]["qty"] = res[i]["amount"] - self.handle_order_update(res) - except Exception as e: - print(f"exception watch_orders", e) - traceback.print_exc() - await asyncio.sleep(1) - - async def watch_tickers(self): - self.WS_ticker_tasks = {} - while not self.stop_websocket: - current_symbols = set(self.active_symbols) - started_symbols = set(self.WS_ticker_tasks.keys()) - - # Start watch_ticker tasks for new symbols - for symbol in current_symbols - started_symbols: - task = asyncio.create_task(self.watch_ticker(symbol)) - self.WS_ticker_tasks[symbol] = task - logging.info(f"Started watching ticker for symbol: {symbol}") - - # Cancel tasks for symbols that are no longer active - for symbol in started_symbols - current_symbols: - self.WS_ticker_tasks[symbol].cancel() - del self.WS_ticker_tasks[symbol] - logging.info(f"Stopped watching ticker for symbol: {symbol}") - - # Wait a bit before checking again - await asyncio.sleep(1) # Adjust sleep time as needed - - async def watch_ticker(self, symbol): - while not self.stop_websocket and symbol in self.active_symbols: - try: - res = await self.ccp.watch_ticker(symbol) - self.handle_ticker_update(res) - except Exception as e: - logging.error(f"exception watch_ticker {symbol} {str(e)}") - traceback.print_exc() - await asyncio.sleep(1) - await asyncio.sleep(0.01) - - async def fetch_open_orders(self, symbol: str = None): - fetched = None - open_orders = [] - try: - fetched = await self.cca.swap_v2_private_get_trade_openorders() - fetched = self.cca.parse_orders( - fetched["data"]["orders"], market={"spot": False, "quote": self.quote, "symbol": None} - ) - for i in range(len(fetched)): - fetched[i]["position_side"] = fetched[i]["info"]["positionSide"].lower() - fetched[i]["qty"] = float(fetched[i]["amount"]) - fetched[i]["price"] = float(fetched[i]["price"]) - fetched[i]["timestamp"] = float(fetched[i]["timestamp"]) - fetched[i]["reduce_only"] = ( - fetched[i]["side"] == "sell" and fetched[i]["position_side"] == "long" - ) or (fetched[i]["side"] == "buy" and fetched[i]["position_side"] == "short") - return sorted(fetched, key=lambda x: x["timestamp"]) - except Exception as e: - logging.error(f"error fetching open orders {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def fetch_positions(self) -> ([dict], float): - # also fetches balance - fetched_positions, fetched_balance = None, None - try: - fetched_positions, fetched_balance = await asyncio.gather( - self.cca.fetch_positions(), - self.cca.fetch_balance(), - ) - balance = float(fetched_balance["info"]["data"]["balance"]["balance"]) - fetched_positions = [x for x in fetched_positions if x["marginMode"] == "cross"] - for i in range(len(fetched_positions)): - fetched_positions[i]["position_side"] = fetched_positions[i]["side"] - fetched_positions[i]["size"] = fetched_positions[i]["contracts"] - fetched_positions[i]["price"] = fetched_positions[i]["entryPrice"] - return fetched_positions, balance - except Exception as e: - logging.error(f"error fetching positions and balance {e}") - print_async_exception(fetched_positions) - print_async_exception(fetched_balance) - traceback.print_exc() - return False - - async def fetch_tickers(self): - fetched = None - try: - fetched = await self.cca.fetch_tickers() - return fetched - except Exception as e: - logging.error(f"error fetching tickers {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def fetch_ohlcv(self, symbol: str, timeframe="1m"): - # intervals: 1,3,5,15,30,60,120,240,360,720,D,M,W - fetched = None - try: - fetched = await self.cca.fetch_ohlcv(symbol, timeframe=timeframe, limit=1000) - return fetched - except Exception as e: - logging.error(f"error fetching ohlcv for {symbol} {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def fetch_pnls( - self, - start_time: int = None, - end_time: int = None, - ): - limit = 1000 - if start_time is None and end_time is None: - return await self.fetch_pnl() - all_fetched = {} - while True: - fetched = await self.fetch_pnl(start_time=start_time, end_time=end_time) - if fetched == []: - break - for elm in fetched: - all_fetched[elm["id"]] = elm - if fetched[0]["timestamp"] <= start_time: - break - if len(fetched) < limit: - break - logging.info(f"debug fetching income {ts_to_date_utc(fetched[-1]['timestamp'])}") - end_time = fetched[0]["timestamp"] - return sorted(all_fetched.values(), key=lambda x: x["timestamp"]) - - async def fetch_pnl( - self, - start_time: int = None, - end_time: int = None, - ): - fetched = None - # if there are more fills in timeframe than 100, it will fetch latest - try: - if end_time is None: - end_time = utc_ms() + 1000 * 60 * 60 * 24 - if start_time is None: - start_time = end_time - 1000 * 60 * 60 * 24 * 6.99 - start_time = max(start_time, end_time - 1000 * 60 * 60 * 24 * 6.99) # max 7 days fetch - params = {"startTime": int(start_time), "endTime": int(end_time), "limit": 1000} - fetched = await self.cca.swap_v2_private_get_trade_allorders(params=params) - fetched = floatify(fetched["data"]["orders"]) - for i in range(len(fetched)): - fetched[i]["pnl"] = fetched[i]["profit"] - fetched[i]["timestamp"] = fetched[i]["updateTime"] - fetched[i]["id"] = fetched[i]["orderId"] - fetched[i]["symbol_id"] = fetched[i]["symbol"] - fetched[i]["symbol"] = self.symbol_ids_inv[fetched[i]["symbol"]] - return sorted(fetched, key=lambda x: x["timestamp"]) - except Exception as e: - logging.error(f"error fetching pnl {e}") - print_async_exception(fetched) - traceback.print_exc() - return False - - async def execute_cancellation(self, order: dict) -> dict: - executed = None - try: - executed = await self.cca.cancel_order(order["id"], symbol=order["symbol"]) - for key in ["symbol", "side", "position_side", "qty", "price"]: - if key not in executed or executed[key] is None: - executed[key] = order[key] - return executed - except Exception as e: - if '"sCode":"51400"' in e.args[0]: - logging.info(e.args[0]) - return {} - logging.error(f"error cancelling order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) > self.config["max_n_cancellations_per_batch"]: - # prioritize cancelling reduce-only orders - try: - reduce_only_orders = [x for x in orders if x["reduce_only"]] - rest = [x for x in orders if not x["reduce_only"]] - orders = (reduce_only_orders + rest)[: self.config["max_n_cancellations_per_batch"]] - except Exception as e: - logging.error(f"debug filter cancellations {e}") - return await self.execute_multiple( - orders, "execute_cancellation", self.config["max_n_cancellations_per_batch"] - ) - - async def execute_order(self, order: dict) -> dict: - executed = None - try: - executed = await self.cca.create_limit_order( - symbol=order["symbol"], - side=order["side"], - amount=order["qty"], - price=order["price"], - params={ - "positionSide": order["position_side"].upper(), - "clientOrderID": order["custom_id"], - "timeInForce": "PostOnly", - }, - ) - if "symbol" not in executed or executed["symbol"] is None: - executed["symbol"] = order["symbol"] - for key in ["side", "position_side", "qty", "price"]: - if key not in executed or executed[key] is None: - executed[key] = order[key] - return executed - except Exception as e: - if '"code":101400' in str(e): - sym = order["symbol"] - new_min_qty = round_( - max(self.min_qtys[sym], order["qty"]) + self.qty_steps[sym], self.qty_steps[sym] - ) - logging.info( - f"successfully caught order size error, code 101400. Adjusting min_qty from {self.min_qtys[sym]} to {new_min_qty}..." - ) - self.min_qtys[sym] = new_min_qty - logging.error(f"{order} {e}") - return {} - logging.error(f"error executing order {order} {e}") - print_async_exception(executed) - traceback.print_exc() - return {} - - async def execute_orders(self, orders: [dict]) -> [dict]: - return await self.execute_multiple( - orders, "execute_order", self.config["max_n_creations_per_batch"] - ) - - async def update_exchange_config_by_symbols(self, symbols): - - coros_to_call_lev, coros_to_call_margin_mode = {}, {} - for symbol in symbols: - try: - coros_to_call_margin_mode[symbol] = asyncio.create_task( - self.cca.set_margin_mode( - "cross", - symbol=symbol, - ) - ) - except Exception as e: - logging.error(f"{symbol}: error setting cross mode {e}") - try: - coros_to_call_lev[symbol] = asyncio.create_task( - self.cca.set_leverage( - int(self.live_configs[symbol]["leverage"]), - symbol=symbol, - params={"side": "LONG"}, - ) - ) - except Exception as e: - logging.error(f"{symbol}: a error setting leverage long {e}") - try: - coros_to_call_lev[symbol] = asyncio.create_task( - self.cca.set_leverage( - int(self.live_configs[symbol]["leverage"]), - symbol=symbol, - params={"side": "SHORT"}, - ) - ) - except Exception as e: - logging.error(f"{symbol}: a error setting leverage short {e}") - for symbol in symbols: - res = None - to_print = "" - try: - res = await coros_to_call_lev[symbol] - to_print += f" set leverage {res} " - except Exception as e: - if '"retCode":110043' in e.args[0]: - to_print += f" leverage: {e}" - else: - logging.error(f"{symbol} error setting leverage {e}") - try: - res = await coros_to_call_margin_mode[symbol] - to_print += f"set cross mode {res}" - except Exception as e: - if '"retCode":110026' in e.args[0]: - to_print += f" set cross mode: {res} {e}" - else: - logging.error(f"{symbol} error setting cross mode {res} {e}") - if to_print: - logging.info(f"{symbol}: {to_print}") - - async def update_exchange_config(self): - pass diff --git a/hand_tuner_clock.ipynb b/hand_tuner_clock.ipynb deleted file mode 100644 index d2b3529e1..000000000 --- a/hand_tuner_clock.ipynb +++ /dev/null @@ -1,383 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "id": "5d04cc5b-ff14-4d8a-8b01-36d4935897ca", - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "38c240d7-c65b-457b-a10f-7a8f24dccf96", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "from backtest import backtest\n", - "from plotting import plot_fills, make_table\n", - "from downloader import load_hlc_cache\n", - "from pure_funcs import (\n", - " denumpyize,\n", - " numpyize,\n", - " candidate_to_live_config,\n", - " calc_spans,\n", - " analyze_fills,\n", - " round_dynamic,\n", - " round_values,\n", - " sort_dict_keys,\n", - ")\n", - "from procedures import (\n", - " dump_live_config,\n", - " load_live_config,\n", - " add_argparse_args,\n", - " prepare_backtest_config,\n", - " make_get_filepath,\n", - ")\n", - "from time import time\n", - "import sys\n", - "import argparse\n", - "import pprint\n", - "import matplotlib.pyplot as plt\n", - "import json\n", - "import pandas as pd\n", - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c81212aa-6395-46b5-9b57-f6a8d7faa245", - "metadata": {}, - "outputs": [], - "source": [ - "plt.rcParams[\"figure.figsize\"] = [24, 13.5]\n", - "plt.rcParams[\"figure.facecolor\"] = \"w\"\n", - "pd.set_option(\"display.precision\", 10)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "457aed4f-fa83-4cd9-bd74-d6c89b4e269d", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "class Args:\n", - " def __init__(self):\n", - " self.backtest_config_path = \"configs/backtest/default.hjson\"\n", - " self.exchange = \"binance\"\n", - " self.symbols = \"XMRUSDT\"\n", - " self.market_type = \"futures\"\n", - " self.user = \"binance_01\"\n", - " self.start_date = \"2021-05-01\"\n", - " self.end_date = \"now\"\n", - " self.starting_balance = 10000.0\n", - " self.starting_configs = \"\"\n", - " self.base_dir = \"backtests\"\n", - "\n", - "\n", - "config = prepare_backtest_config(Args())\n", - "config[\"adg_n_subdivisions\"] = 10 # see configs/backtest/default.hjson for details\n", - "config[\"inverse\"] = False\n", - "\n", - "sts = time()\n", - "data = await load_hlc_cache(\n", - " config[\"symbol\"],\n", - " config[\"inverse\"],\n", - " config[\"start_date\"],\n", - " config[\"end_date\"],\n", - " base_dir=config[\"base_dir\"],\n", - " spot=config[\"spot\"],\n", - " exchange=config[\"exchange\"],\n", - ")\n", - "prices = data[:, 3]\n", - "highs = data[:, 1]\n", - "lows = data[:, 2]\n", - "closes = data[:, 3]\n", - "timestamps = data[:, 0]\n", - "config[\"n_days\"] = (timestamps[-1] - timestamps[0]) / (1000 * 60 * 60 * 24)\n", - "\n", - "print(f\"millis to load {len(prices)} ticks {(time() - sts) * 1000:.0f}ms\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f38d8fd3-ccf4-4465-837b-24abaa121cee", - "metadata": {}, - "outputs": [], - "source": [ - "df = pd.DataFrame({\"timestamp\": timestamps, \"price\": prices}).set_index(\"timestamp\")\n", - "df.price.iloc[::100].plot(title=\"Coin Price\", xlabel=\"Time\", ylabel=\"Price\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a44cb695-002e-4cd4-b652-36d40f8008c5", - "metadata": {}, - "outputs": [], - "source": [ - "hand_tuned = {\n", - " \"config_name\": \"emas_0days\",\n", - " \"long\": {\n", - " \"delay_between_fills_minutes_close\": 703.3,\n", - " \"delay_between_fills_minutes_entry\": 187.5,\n", - " \"delay_weight_close\": 3.989,\n", - " \"delay_weight_entry\": 8.921,\n", - " \"ema_dist_entry\": 0.0008584,\n", - " \"ema_dist_close\": 0.007752,\n", - " \"ema_span_0\": 954.0,\n", - " \"ema_span_1\": 124.3,\n", - " \"enabled\": True,\n", - " \"markup_range\": 0.06996,\n", - " \"min_markup\": 0.02848,\n", - " \"n_close_orders\": 14,\n", - " \"qty_pct_close\": 0.09392,\n", - " \"qty_pct_entry\": 0.01674,\n", - " \"wallet_exposure_limit\": 1.0,\n", - " \"we_multiplier_close\": 7.798,\n", - " \"we_multiplier_entry\": 6.95,\n", - " },\n", - " \"short\": {\n", - " \"delay_between_fills_minutes_close\": 1172.0,\n", - " \"delay_between_fills_minutes_entry\": 1351.0,\n", - " \"delay_weight_close\": 2.832,\n", - " \"delay_weight_entry\": 15.12,\n", - " \"ema_dist_entry\": 0.004033,\n", - " \"ema_dist_close\": 0.005519,\n", - " \"ema_span_0\": 1251.0,\n", - " \"ema_span_1\": 1830.0,\n", - " \"enabled\": True,\n", - " \"markup_range\": 0.06225,\n", - " \"min_markup\": 0.06723,\n", - " \"n_close_orders\": 5,\n", - " \"qty_pct_close\": 0.06165,\n", - " \"qty_pct_entry\": 0.01561,\n", - " \"wallet_exposure_limit\": 1.0,\n", - " \"we_multiplier_close\": 9.278,\n", - " \"we_multiplier_entry\": 49.73,\n", - " },\n", - "}\n", - "\n", - "config_to_test = {**config, **hand_tuned}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "063edb35-27ff-4dd0-a03e-7996f2bfa9e1", - "metadata": {}, - "outputs": [], - "source": [ - "sts = time()\n", - "fills_long, fills_short, stats = backtest(config_to_test, data)\n", - "elapsed = time() - sts\n", - "print(f\"seconds elapsed {elapsed:.4f}\")\n", - "longs, shorts, sdf, analysis = analyze_fills(fills_long, fills_short, stats, config_to_test)\n", - "table = make_table({**config_to_test, **analysis})\n", - "print(table)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1c2d6679-1ee7-4016-8c25-9c1163870bf7", - "metadata": {}, - "outputs": [], - "source": [ - "sdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c9d89e7e-8d14-4722-b5ad-4346dc120b6a", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.balance_long.plot()\n", - "sdf.equity_long.plot(title=\"Balance and equity long\", xlabel=\"Time\", ylabel=\"Balance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "53c3110a-f9d4-4df7-9335-67900e47529f", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.balance_short.plot()\n", - "sdf.equity_short.plot(title=\"Balance and equity short\", xlabel=\"Time\", ylabel=\"Balance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "32b2dc74-24e4-487b-bdcb-d30281e3cf12", - "metadata": {}, - "outputs": [], - "source": [ - "if len(longs) > 0:\n", - " plot_fills(df, longs, plot_whole_df=True, title=\"Overview Fills Long\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7df6ee86-4e63-4e14-bb9f-fb9abf9a06e2", - "metadata": {}, - "outputs": [], - "source": [ - "if len(shorts) > 0:\n", - " plot_fills(df, shorts, plot_whole_df=True, title=\"Overview Fills Short\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4aa9d609-ccd2-4ae5-862e-0d8758ee4953", - "metadata": {}, - "outputs": [], - "source": [ - "wes = pd.DataFrame(\n", - " {\"WE_short\": (sdf.wallet_exposure_short.abs() * -1), \"WE_long\": sdf.wallet_exposure_long}\n", - ")\n", - "wes.plot(title=\"Wallet exposures\", xlabel=\"Time\", ylabel=\"Wallet Exposure\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9cad96ab-9268-4b08-9d08-e77d8b46e140", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.price.plot(title=\"Average entry price\", xlabel=\"Time\", ylabel=\"Price\")\n", - "sdf[sdf.psize_long != 0].pprice_long.replace(0.0, np.nan).plot()\n", - "sdf[sdf.psize_short != 0].pprice_short.replace(0.0, np.nan).plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3ff902c7-a17a-4a48-8069-55f9c1c6e05d", - "metadata": {}, - "outputs": [], - "source": [ - "lpprices = sdf[sdf.psize_long != 0.0]\n", - "spprices = sdf[sdf.psize_short != 0.0]\n", - "\n", - "PADistance_long = (lpprices.pprice_long - lpprices.price).abs() / lpprices.price\n", - "PADistance_short = ((spprices.pprice_short - spprices.price).abs() / spprices.price) * -1\n", - "print(f\"Mean price action distance long {PADistance_long.mean():.6f} std {PADistance_long.std():.6f}\")\n", - "print(\n", - " f\"Mean price action distance short {PADistance_short.mean():.6f} std {PADistance_short.std():.6f}\"\n", - ")\n", - "\n", - "PADistance_long.plot()\n", - "PADistance_short.plot(title=\"Price action distance\", xlabel=\"Time\", ylabel=\"Price action distance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d8450bf0-0eeb-4ac7-8ba9-7ed385c8656f", - "metadata": {}, - "outputs": [], - "source": [ - "spans_long = sorted(\n", - " [\n", - " config_to_test[\"long\"][\"ema_span_0\"],\n", - " (config_to_test[\"long\"][\"ema_span_0\"] * config_to_test[\"long\"][\"ema_span_1\"]) ** 0.5,\n", - " config_to_test[\"long\"][\"ema_span_1\"],\n", - " ]\n", - ")\n", - "emas_long = pd.DataFrame(\n", - " {f\"ema_{span}\": df.price.ewm(span=span, adjust=False).mean() for span in spans_long},\n", - " index=df.index,\n", - ")\n", - "ema_bands_long = pd.DataFrame(\n", - " {\n", - " \"ema_band_lower\": emas_long.min(axis=1) * (1 - config_to_test[\"long\"][\"ema_dist_entry\"]),\n", - " \"ema_band_upper\": emas_long.max(axis=1) * (1 + config_to_test[\"long\"][\"ema_dist_close\"]),\n", - " },\n", - " index=df.index,\n", - ")\n", - "df_emas_long = df.join(ema_bands_long)\n", - "df_emas_long.price.plot(style=\"y-\")\n", - "df_emas_long.ema_band_lower.plot(style=\"b--\")\n", - "df_emas_long.ema_band_upper.plot(style=\"r--\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4aaf8c0f-0921-4850-8a78-bbbaee24e70c", - "metadata": {}, - "outputs": [], - "source": [ - "spans_short = sorted(\n", - " [\n", - " config_to_test[\"short\"][\"ema_span_0\"],\n", - " (config_to_test[\"short\"][\"ema_span_0\"] * config_to_test[\"short\"][\"ema_span_1\"]) ** 0.5,\n", - " config_to_test[\"short\"][\"ema_span_1\"],\n", - " ]\n", - ")\n", - "emas_short = pd.DataFrame(\n", - " {f\"ema_{span}\": df.price.ewm(span=span, adjust=False).mean() for span in spans_short},\n", - " index=df.index,\n", - ")\n", - "ema_bands_short = pd.DataFrame(\n", - " {\n", - " \"ema_band_lower\": emas_short.min(axis=1) * (1 - config_to_test[\"short\"][\"ema_dist_close\"]),\n", - " \"ema_band_upper\": emas_short.max(axis=1) * (1 + config_to_test[\"short\"][\"ema_dist_entry\"]),\n", - " },\n", - " index=df.index,\n", - ")\n", - "df_emas_short = df.join(ema_bands_short)\n", - "df_emas_short.price.plot(style=\"y-\")\n", - "df_emas_short.ema_band_lower.plot(style=\"b--\")\n", - "df_emas_short.ema_band_upper.plot(style=\"r--\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "288301c3-fbec-4546-8fd2-ce2fa7da9a9a", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.16" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hand_tuner_neat_grid.ipynb b/hand_tuner_neat_grid.ipynb deleted file mode 100644 index 6409c9a93..000000000 --- a/hand_tuner_neat_grid.ipynb +++ /dev/null @@ -1,604 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "id": "5d04cc5b-ff14-4d8a-8b01-36d4935897ca", - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "38c240d7-c65b-457b-a10f-7a8f24dccf96", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "from njit_funcs import *\n", - "from njit_funcs_neat_grid import *\n", - "from backtest import backtest\n", - "from plotting import plot_fills, make_table\n", - "from downloader import Downloader, load_hlc_cache\n", - "from pure_funcs import (\n", - " denumpyize,\n", - " numpyize,\n", - " candidate_to_live_config,\n", - " calc_spans,\n", - " analyze_fills,\n", - " create_xk,\n", - " round_dynamic,\n", - " round_values,\n", - " sort_dict_keys,\n", - ")\n", - "from procedures import (\n", - " dump_live_config,\n", - " load_live_config,\n", - " add_argparse_args,\n", - " prepare_backtest_config,\n", - " make_get_filepath,\n", - ")\n", - "from time import time\n", - "import sys\n", - "import argparse\n", - "import pprint\n", - "import matplotlib.pyplot as plt\n", - "import json\n", - "import pandas as pd\n", - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c81212aa-6395-46b5-9b57-f6a8d7faa245", - "metadata": {}, - "outputs": [], - "source": [ - "plt.rcParams[\"figure.figsize\"] = [24, 13.5]\n", - "plt.rcParams[\"figure.facecolor\"] = \"w\"\n", - "pd.set_option(\"display.precision\", 10)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "457aed4f-fa83-4cd9-bd74-d6c89b4e269d", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "class Args:\n", - " def __init__(self):\n", - " self.backtest_config_path = \"configs/backtest/default.hjson\"\n", - " self.exchange = \"binance\"\n", - " self.symbols = \"XMRUSDT\"\n", - " self.market_type = \"futures\"\n", - " self.user = \"binance_01\"\n", - " self.start_date = \"2021-05-01\"\n", - " self.end_date = \"now\"\n", - " self.starting_balance = 10000.0\n", - " self.starting_configs = \"\"\n", - " self.base_dir = \"backtests\"\n", - " self.ohlcv = \"y\" # set to \"n\" to use 1s candles\n", - "\n", - "\n", - "config = prepare_backtest_config(Args())\n", - "\n", - "config[\"adg_n_subdivisions\"] = 10 # see configs/backtest/default.hjson for details\n", - "config[\"inverse\"] = False\n", - "sts = time()\n", - "if config[\"ohlcv\"]:\n", - " data = await load_hlc_cache(\n", - " config[\"symbol\"],\n", - " config[\"inverse\"],\n", - " config[\"start_date\"],\n", - " config[\"end_date\"],\n", - " base_dir=config[\"base_dir\"],\n", - " spot=config[\"spot\"],\n", - " exchange=config[\"exchange\"],\n", - " )\n", - " prices = data[:, 3]\n", - " highs = data[:, 1]\n", - " lows = data[:, 2]\n", - " closes = data[:, 3]\n", - "else:\n", - " downloader = Downloader(config)\n", - " data = await downloader.get_sampled_ticks()\n", - " prices = data[:, 2]\n", - " highs = data[:, 2]\n", - " lows = data[:, 2]\n", - " closes = data[:, 2]\n", - "timestamps = data[:, 0]\n", - "config[\"n_days\"] = (timestamps[-1] - timestamps[0]) / (1000 * 60 * 60 * 24)\n", - "\n", - "print(f\"millis to load {len(prices)} ticks {(time() - sts) * 1000:.0f}ms\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f38d8fd3-ccf4-4465-837b-24abaa121cee", - "metadata": {}, - "outputs": [], - "source": [ - "df = pd.DataFrame({\"timestamp\": timestamps, \"price\": prices}).set_index(\"timestamp\")\n", - "df.price.iloc[::100].plot(title=\"Coin Price\", xlabel=\"Time\", ylabel=\"Price\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7239f8ed-1096-41ba-809b-00bb188ceb97", - "metadata": {}, - "outputs": [], - "source": [ - "# choose a slice on which to test\n", - "wsize_days = 3650\n", - "ts = int(data[-1][0] - 60 * 60 * 24 * 1000 * wsize_days)\n", - "idx = np.argmax(data[:, 0] >= ts)\n", - "dataslice = data[idx:]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "93168599-63a4-40d0-b9df-bd15a62657ac", - "metadata": {}, - "outputs": [], - "source": [ - "hand_tuned = {\n", - " \"config_name\": \"hand_tuned\",\n", - " \"logging_level\": 0,\n", - " \"long\": {\n", - " \"enabled\": True,\n", - " \"ema_span_0\": 1000, # in minutes\n", - " \"ema_span_1\": 1400,\n", - " \"eprice_exp_base\": 1.05,\n", - " \"eqty_exp_base\": 2.5,\n", - " \"grid_span\": 0.16,\n", - " \"initial_qty_pct\": 0.007,\n", - " \"initial_eprice_ema_dist\": -0.08, # negative is closer; positive is further away\n", - " \"markup_range\": 0.018,\n", - " \"max_n_entry_orders\": 8,\n", - " \"min_markup\": 0.002,\n", - " \"n_close_orders\": 9,\n", - " \"wallet_exposure_limit\": 1.0,\n", - " \"auto_unstuck_wallet_exposure_threshold\": 0.03, # percentage of wallet_exposure_limit to trigger auto unstuck.\n", - " \"auto_unstuck_ema_dist\": 0.01,\n", - " \"auto_unstuck_qty_pct\": 0.04,\n", - " \"auto_unstuck_delay_minutes\": 1000.0,\n", - " \"backwards_tp\": True,\n", - " }, # positive is further away; negative is closer\n", - " \"short\": {\n", - " \"enabled\": True,\n", - " \"ema_span_0\": 1440, # in minutes\n", - " \"ema_span_1\": 4320,\n", - " \"eprice_exp_base\": 1.05,\n", - " \"eqty_exp_base\": 1.8,\n", - " \"grid_span\": 0.16,\n", - " \"initial_qty_pct\": 0.009,\n", - " \"initial_eprice_ema_dist\": -0.07, # negative is closer; positive is further away\n", - " \"markup_range\": 0.018,\n", - " \"max_n_entry_orders\": 12,\n", - " \"min_markup\": 0.002,\n", - " \"n_close_orders\": 9,\n", - " \"wallet_exposure_limit\": 1.0,\n", - " \"auto_unstuck_wallet_exposure_threshold\": 0.04,\n", - " \"auto_unstuck_ema_dist\": 0.01,\n", - " \"auto_unstuck_qty_pct\": 0.04,\n", - " \"auto_unstuck_delay_minutes\": 1000.0,\n", - " \"backwards_tp\": True,\n", - " },\n", - "}\n", - "\n", - "# hand_tuned = load_live_config('configs/live/allround.json')\n", - "# hand_tuned['short']['enabled'] = True\n", - "config[\"starting_balance\"] = Args().starting_balance\n", - "config[\"latency_simulation_ms\"] = 1000\n", - "config_to_test = {**config, **numpyize(hand_tuned)}\n", - "dump_live_config(config_to_test, make_get_filepath(f\"tmp/hand_tuned.json\"))\n", - "hand_tuned" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ae548255-251f-42cc-a7d9-e7d7b8460a16", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "sts = time()\n", - "fills_long, fills_short, stats = backtest(config_to_test, dataslice)\n", - "elapsed = time() - sts\n", - "print(f\"seconds elapsed {elapsed:.4f}\")\n", - "longs, shorts, sdf, analysis = analyze_fills(fills_long, fills_short, stats, config_to_test)\n", - "table = make_table({**config_to_test, **analysis})\n", - "print(table)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1c2d6679-1ee7-4016-8c25-9c1163870bf7", - "metadata": {}, - "outputs": [], - "source": [ - "sdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c9d89e7e-8d14-4722-b5ad-4346dc120b6a", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.balance_long.plot()\n", - "sdf.equity_long.plot(title=\"Balance and equity long\", xlabel=\"Time\", ylabel=\"Balance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ab833d5b-0865-47fa-9792-264015d4e01a", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.balance_short.plot()\n", - "sdf.equity_short.plot(title=\"Balance and equity short\", xlabel=\"Time\", ylabel=\"Balance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "32b2dc74-24e4-487b-bdcb-d30281e3cf12", - "metadata": {}, - "outputs": [], - "source": [ - "if len(longs) > 0:\n", - " plot_fills(df, longs, plot_whole_df=True, title=\"Overview Fills Long\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "021dae7c-b8c1-4f0e-856e-e727957e79be", - "metadata": {}, - "outputs": [], - "source": [ - "if len(shorts) > 0:\n", - " plot_fills(df, shorts, plot_whole_df=True, title=\"Overview Fills Short\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2c20ee0b-1bd9-4290-967c-0b20770e8781", - "metadata": {}, - "outputs": [], - "source": [ - "wes = pd.DataFrame(\n", - " {\"WE_short\": (sdf.wallet_exposure_short.abs() * -1), \"WE_long\": sdf.wallet_exposure_long}\n", - ")\n", - "wes.plot(title=\"Wallet exposures\", xlabel=\"Time\", ylabel=\"Wallet Exposure\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9cad96ab-9268-4b08-9d08-e77d8b46e140", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.price.plot(title=\"Average entry price\", xlabel=\"Time\", ylabel=\"Price\")\n", - "sdf.pprice_long.replace(0.0, np.nan).plot()\n", - "sdf.pprice_short.replace(0.0, np.nan).plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3ff902c7-a17a-4a48-8069-55f9c1c6e05d", - "metadata": {}, - "outputs": [], - "source": [ - "lpprices = sdf[sdf.psize_long != 0.0]\n", - "spprices = sdf[sdf.psize_short != 0.0]\n", - "\n", - "PADistance_long = (lpprices.pprice_long - lpprices.price).abs() / lpprices.price\n", - "PADistance_short = ((spprices.pprice_short - spprices.price).abs() / spprices.price) * -1\n", - "print(f\"Mean price action distance long {PADistance_long.mean():.6f} std {PADistance_long.std():.6f}\")\n", - "print(\n", - " f\"Mean price action distance short {PADistance_short.mean():.6f} std {PADistance_short.std():.6f}\"\n", - ")\n", - "\n", - "PADistance_long.plot()\n", - "PADistance_short.plot(title=\"Price action distance\", xlabel=\"Time\", ylabel=\"Price action distance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bc9a54ff-d102-4765-9f95-1bb0c399ed72", - "metadata": {}, - "outputs": [], - "source": [ - "# Inspect long EMAs\n", - "# blue: lower unstucking; red: upper unstucking; green: initial entry\n", - "spans = [\n", - " config_to_test[\"long\"][\"ema_span_0\"],\n", - " (config_to_test[\"long\"][\"ema_span_0\"] * config_to_test[\"long\"][\"ema_span_1\"]) ** 0.5,\n", - " config_to_test[\"long\"][\"ema_span_1\"],\n", - "]\n", - "print(\n", - " f\"spans in minutes {spans}\",\n", - " f\"n_days {(df.index[-1] - df.index[0]) / 1000 / 60 / 60 / 24:.1f}\",\n", - ")\n", - "spans_multiplier = 60 / ((timestamps[1] - timestamps[0]) / 1000)\n", - "for i in range(3):\n", - " # change to seconds\n", - " spans[i] = max(1.0, spans[i] * spans_multiplier)\n", - "emas = pd.DataFrame({str(span): df.price.ewm(span=span, adjust=False).mean() for span in spans})\n", - "ema_band_lower = emas.min(axis=1)\n", - "unstucking_band_lower = ema_band_lower * (1 - config_to_test[\"long\"][\"auto_unstuck_ema_dist\"])\n", - "ema_band_upper = emas.max(axis=1)\n", - "unstucking_band_upper = ema_band_upper * (1 + config_to_test[\"long\"][\"auto_unstuck_ema_dist\"])\n", - "long_ientry_band = ema_band_lower * (1 - config_to_test[\"long\"][\"initial_eprice_ema_dist\"])\n", - "df.iloc[::100].price.plot(style=\"y-\", title=\"Unstucking Bands and Initial Entry Band\")\n", - "unstucking_band_lower.iloc[::100].plot(\n", - " style=\"b--\",\n", - ")\n", - "unstucking_band_upper.iloc[::100].plot(style=\"r--\")\n", - "long_ientry_band.iloc[::100].plot(style=\"g-.\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "649a0610-84cb-4012-997c-b1a5c6c21228", - "metadata": {}, - "outputs": [], - "source": [ - "# Inspect short EMAs\n", - "# blue: lower unstucking; red: upper unstucking; green: initial entry\n", - "spans = [\n", - " config_to_test[\"short\"][\"ema_span_0\"],\n", - " (config_to_test[\"short\"][\"ema_span_0\"] * config_to_test[\"short\"][\"ema_span_1\"]) ** 0.5,\n", - " config_to_test[\"short\"][\"ema_span_1\"],\n", - "]\n", - "print(\n", - " f\"spans in minutes {spans}\",\n", - " f\"n_days {(df.index[-1] - df.index[0]) / 1000 / 60 / 60 / 24:.1f}\",\n", - ")\n", - "spans_multiplier = 60 / ((timestamps[1] - timestamps[0]) / 1000)\n", - "for i in range(3):\n", - " # change to seconds\n", - " spans[i] = max(1.0, spans[i] * spans_multiplier)\n", - "emas = pd.DataFrame({str(span): df.price.ewm(span=span, adjust=False).mean() for span in spans})\n", - "ema_band_lower = emas.min(axis=1)\n", - "unstucking_band_lower = ema_band_lower * (1 - config_to_test[\"short\"][\"auto_unstuck_ema_dist\"])\n", - "ema_band_upper = emas.max(axis=1)\n", - "unstucking_band_upper = ema_band_upper * (1 + config_to_test[\"short\"][\"auto_unstuck_ema_dist\"])\n", - "short_ientry_band = ema_band_upper * (1 + config_to_test[\"short\"][\"initial_eprice_ema_dist\"])\n", - "df.iloc[::100].price.plot(style=\"y-\", title=\"Unstucking Bands and Initial Entry Band\")\n", - "unstucking_band_lower.iloc[::100].plot(style=\"b--\")\n", - "unstucking_band_upper.iloc[::100].plot(style=\"r--\")\n", - "short_ientry_band.iloc[::100].plot(style=\"g-.\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d03397cb-a36d-4b93-b16e-c89e0704a898", - "metadata": {}, - "outputs": [], - "source": [ - "balance = config_to_test[\"starting_balance\"]\n", - "highest_bid = df.price.iloc[-1]\n", - "\n", - "inverse = config_to_test[\"inverse\"]\n", - "do_long = True\n", - "qty_step = config_to_test[\"qty_step\"]\n", - "price_step = config_to_test[\"price_step\"]\n", - "min_qty = config_to_test[\"min_qty\"]\n", - "min_cost = config_to_test[\"min_cost\"]\n", - "c_mult = config_to_test[\"c_mult\"]\n", - "\n", - "grid_span = config_to_test[\"long\"][\"grid_span\"]\n", - "wallet_exposure_limit = config_to_test[\"long\"][\"wallet_exposure_limit\"]\n", - "max_n_entry_orders = config_to_test[\"long\"][\"max_n_entry_orders\"]\n", - "initial_qty_pct = config_to_test[\"long\"][\"initial_qty_pct\"]\n", - "eqty_exp_base = config_to_test[\"long\"][\"eqty_exp_base\"]\n", - "eprice_exp_base = config_to_test[\"long\"][\"eprice_exp_base\"]\n", - "\n", - "grid = calc_whole_neat_entry_grid_long(\n", - " balance,\n", - " highest_bid,\n", - " inverse,\n", - " qty_step,\n", - " price_step,\n", - " min_qty,\n", - " min_cost,\n", - " c_mult,\n", - " grid_span,\n", - " wallet_exposure_limit,\n", - " max_n_entry_orders,\n", - " initial_qty_pct,\n", - " eqty_exp_base,\n", - " eprice_exp_base,\n", - ")\n", - "gdf = pd.DataFrame(grid, columns=[\"qty\", \"price\", \"psize\", \"pprice\", \"wallet_exposure\"])\n", - "\n", - "gdf.loc[:, \"eprice_pprice_diff\"] = abs(gdf.price - gdf.pprice) / gdf.price\n", - "gdf.loc[:, \"ddown_factor\"] = gdf.qty / gdf.psize.shift()\n", - "gdf.loc[:, \"bkr_price\"] = gdf.apply(\n", - " lambda x: calc_bankruptcy_price(balance, x.psize, x.pprice, 0.0, 0.0, inverse, c_mult),\n", - " axis=1,\n", - ")\n", - "colors = \"rbygcmk\"\n", - "\n", - "# Display grid on graph\n", - "# -- = pprice = new position price\n", - "# - = price = DCA entry\n", - "timedt = pd.to_datetime(timestamps, unit=\"ms\")\n", - "dfx = pd.DataFrame({\"timestamp\": timedt, \"price\": prices}).set_index(\"timestamp\")\n", - "lastdayfrom = pd.to_datetime(Args().end_date)\n", - "# lastdayfrom = pd.Timestamp('2021-05-21')\n", - "plt = (\n", - " dfx.price.loc[lastdayfrom - pd.Timedelta(days=280) : lastdayfrom]\n", - " .iloc[::100]\n", - " .plot(title=\"Grid position\", xlabel=\"Time\", ylabel=\"Price\")\n", - ")\n", - "for i, e in enumerate(gdf.itertuples()):\n", - " plt.axhline(y=e.price, color=f\"{colors[i%len(colors)]}\", linestyle=\"-\")\n", - " # plt.axhline(y=e.pprice, color=f\"{colors[i%len(colors)]}\", linestyle=\"--\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "59ab95c9-de49-416a-b6a5-e633e2faf2c0", - "metadata": {}, - "outputs": [], - "source": [ - "a = (1 - gdf.iloc[[0, -1]][\"price\"].iat[-1] / gdf.iloc[[0, -1]][\"price\"].iat[0]) * 100\n", - "print(\"\\nLong Grid Span = {:.2f} %\\n\".format(round(a, 2)))\n", - "gdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "25a76968-1de8-44cf-b50b-8124c2b3917c", - "metadata": {}, - "outputs": [], - "source": [ - "balance = config_to_test[\"starting_balance\"]\n", - "lowest_ask = df.price.iloc[-1]\n", - "\n", - "inverse = config_to_test[\"inverse\"]\n", - "do_short = True\n", - "qty_step = config_to_test[\"qty_step\"]\n", - "price_step = config_to_test[\"price_step\"]\n", - "min_qty = config_to_test[\"min_qty\"]\n", - "min_cost = config_to_test[\"min_cost\"]\n", - "c_mult = config_to_test[\"c_mult\"]\n", - "\n", - "grid_span = config_to_test[\"short\"][\"grid_span\"]\n", - "wallet_exposure_limit = config_to_test[\"short\"][\"wallet_exposure_limit\"]\n", - "max_n_entry_orders = config_to_test[\"short\"][\"max_n_entry_orders\"]\n", - "initial_qty_pct = config_to_test[\"short\"][\"initial_qty_pct\"]\n", - "eqty_exp_base = config_to_test[\"short\"][\"eqty_exp_base\"]\n", - "eprice_exp_base = config_to_test[\"short\"][\"eprice_exp_base\"]\n", - "\n", - "grid = calc_whole_neat_entry_grid_short(\n", - " balance,\n", - " lowest_ask,\n", - " inverse,\n", - " qty_step,\n", - " price_step,\n", - " min_qty,\n", - " min_cost,\n", - " c_mult,\n", - " grid_span,\n", - " wallet_exposure_limit,\n", - " max_n_entry_orders,\n", - " initial_qty_pct,\n", - " eqty_exp_base,\n", - " eprice_exp_base,\n", - ")\n", - "gdf = pd.DataFrame(grid, columns=[\"qty\", \"price\", \"psize\", \"pprice\", \"wallet_exposure\"])\n", - "\n", - "gdf.loc[:, \"eprice_pprice_diff\"] = abs(gdf.price - gdf.pprice) / gdf.price\n", - "gdf.loc[:, \"ddown_factor\"] = gdf.qty / gdf.psize.shift()\n", - "gdf.loc[:, \"bkr_price\"] = gdf.apply(\n", - " lambda x: calc_bankruptcy_price(balance, x.psize, x.pprice, 0.0, 0.0, inverse, c_mult),\n", - " axis=1,\n", - ")\n", - "colors = \"rbygcmk\"\n", - "\n", - "# Display grid on graph\n", - "# -- = pprice = new position price\n", - "# - = price = DCA entry\n", - "timedt = pd.to_datetime(timestamps, unit=\"ms\")\n", - "dfx = pd.DataFrame({\"timestamp\": timedt, \"price\": prices}).set_index(\"timestamp\")\n", - "lastdayfrom = pd.to_datetime(Args().end_date)\n", - "# lastdayfrom = pd.Timestamp('2021-05-21')\n", - "plt = (\n", - " dfx.price.loc[lastdayfrom - pd.Timedelta(days=280) : lastdayfrom]\n", - " .iloc[::100]\n", - " .plot(title=\"Grid position\", xlabel=\"Time\", ylabel=\"Price\")\n", - ")\n", - "for i, e in enumerate(gdf.itertuples()):\n", - " plt.axhline(y=e.price, color=f\"{colors[i%len(colors)]}\", linestyle=\"-\")\n", - " # plt.axhline(y=e.pprice, color=f\"{colors[i%len(colors)]}\", linestyle=\"--\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ab479aaf-abfb-4f2a-86ae-328b3d6418cb", - "metadata": {}, - "outputs": [], - "source": [ - "a = (1 - gdf.iloc[[0, -1]][\"price\"].iat[-1] / gdf.iloc[[0, -1]][\"price\"].iat[0]) * 100\n", - "print(\"\\nShort Grid Span = {:.2f} %\\n\".format(round(a, 2)))\n", - "gdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d72b36d8-43b1-4d8f-a3c7-c0b50d9f21f1", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "84ea02bc-930d-4197-89b7-2e8cfd9ca30b", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2dad6216-d8ca-4d7f-9705-bc6e62ee097b", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.16" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hand_tuner_recursive_grid.ipynb b/hand_tuner_recursive_grid.ipynb deleted file mode 100644 index c385c21eb..000000000 --- a/hand_tuner_recursive_grid.ipynb +++ /dev/null @@ -1,545 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "id": "5d04cc5b-ff14-4d8a-8b01-36d4935897ca", - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "38c240d7-c65b-457b-a10f-7a8f24dccf96", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "from njit_funcs_recursive_grid import *\n", - "from backtest import backtest\n", - "from plotting import plot_fills, make_table\n", - "from downloader import Downloader, load_hlc_cache\n", - "from pure_funcs import (\n", - " denumpyize,\n", - " numpyize,\n", - " candidate_to_live_config,\n", - " calc_spans,\n", - " analyze_fills,\n", - " create_xk,\n", - " round_dynamic,\n", - " round_values,\n", - " sort_dict_keys,\n", - ")\n", - "from procedures import (\n", - " dump_live_config,\n", - " load_live_config,\n", - " add_argparse_args,\n", - " prepare_backtest_config,\n", - " make_get_filepath,\n", - ")\n", - "from time import time\n", - "import sys\n", - "import argparse\n", - "import pprint\n", - "import matplotlib.pyplot as plt\n", - "import json\n", - "import pandas as pd\n", - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c81212aa-6395-46b5-9b57-f6a8d7faa245", - "metadata": {}, - "outputs": [], - "source": [ - "plt.rcParams[\"figure.figsize\"] = [24, 13.5]\n", - "plt.rcParams[\"figure.facecolor\"] = \"w\"\n", - "pd.set_option(\"display.precision\", 10)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "457aed4f-fa83-4cd9-bd74-d6c89b4e269d", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "class Args:\n", - " def __init__(self):\n", - " self.backtest_config_path = \"configs/backtest/default.hjson\"\n", - " self.exchange = \"binance\"\n", - " self.symbols = \"XMRUSDT\"\n", - " self.market_type = \"futures\"\n", - " self.user = \"binance_01\"\n", - " self.start_date = \"2021-05-01\"\n", - " self.end_date = \"now\"\n", - " self.starting_balance = 10000.0\n", - " self.starting_configs = \"\"\n", - " self.base_dir = \"backtests\"\n", - " self.ohlcv = \"y\" # set to \"n\" to use 1s candles\n", - "\n", - "\n", - "config = prepare_backtest_config(Args())\n", - "\n", - "config[\"adg_n_subdivisions\"] = 10 # see configs/backtest/default.hjson for details\n", - "config[\"inverse\"] = False\n", - "sts = time()\n", - "if config[\"ohlcv\"]:\n", - " data = await load_hlc_cache(\n", - " config[\"symbol\"],\n", - " config[\"inverse\"],\n", - " config[\"start_date\"],\n", - " config[\"end_date\"],\n", - " base_dir=config[\"base_dir\"],\n", - " spot=config[\"spot\"],\n", - " exchange=config[\"exchange\"],\n", - " )\n", - " prices = data[:, 3]\n", - " highs = data[:, 1]\n", - " lows = data[:, 2]\n", - " closes = data[:, 3]\n", - "else:\n", - " downloader = Downloader(config)\n", - " data = await downloader.get_sampled_ticks()\n", - " prices = data[:, 2]\n", - " highs = data[:, 2]\n", - " lows = data[:, 2]\n", - " closes = data[:, 2]\n", - "timestamps = data[:, 0]\n", - "config[\"n_days\"] = (timestamps[-1] - timestamps[0]) / (1000 * 60 * 60 * 24)\n", - "\n", - "print(f\"millis to load {len(prices)} ticks {(time() - sts) * 1000:.0f}ms\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f38d8fd3-ccf4-4465-837b-24abaa121cee", - "metadata": {}, - "outputs": [], - "source": [ - "df = pd.DataFrame({\"timestamp\": timestamps, \"price\": prices}).set_index(\"timestamp\")\n", - "df.price.iloc[::100].plot(title=\"Coin Price\", xlabel=\"Time\", ylabel=\"Price\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7239f8ed-1096-41ba-809b-00bb188ceb97", - "metadata": {}, - "outputs": [], - "source": [ - "# choose a slice on which to test\n", - "wsize_days = 3650\n", - "ts = int(data[-1][0] - 60 * 60 * 24 * 1000 * wsize_days)\n", - "idx = np.argmax(data[:, 0] >= ts)\n", - "dataslice = data[idx:]\n", - "len(dataslice)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a44cb695-002e-4cd4-b652-36d40f8008c5", - "metadata": {}, - "outputs": [], - "source": [ - "hand_tuned = {\n", - " \"long\": {\n", - " \"enabled\": True,\n", - " \"ema_span_0\": 700,\n", - " \"ema_span_1\": 1440,\n", - " \"initial_qty_pct\": 0.01,\n", - " \"initial_eprice_ema_dist\": -0.02,\n", - " \"wallet_exposure_limit\": 1.0,\n", - " \"ddown_factor\": 0.6,\n", - " \"rentry_pprice_dist\": 0.015,\n", - " \"rentry_pprice_dist_wallet_exposure_weighting\": 15,\n", - " \"min_markup\": 0.002,\n", - " \"markup_range\": 0.018,\n", - " \"n_close_orders\": 16,\n", - " \"auto_unstuck_wallet_exposure_threshold\": 0.15,\n", - " \"auto_unstuck_ema_dist\": 0.001,\n", - " \"auto_unstuck_qty_pct\": 0.04,\n", - " \"auto_unstuck_delay_minutes\": 1000.0,\n", - " \"backwards_tp\": True,\n", - " },\n", - " \"short\": {\n", - " \"enabled\": True,\n", - " \"ema_span_0\": 1440,\n", - " \"ema_span_1\": 2880,\n", - " \"initial_qty_pct\": 0.01,\n", - " \"initial_eprice_ema_dist\": 0.02,\n", - " \"wallet_exposure_limit\": 1.0,\n", - " \"ddown_factor\": 0.19,\n", - " \"rentry_pprice_dist\": 0.015,\n", - " \"rentry_pprice_dist_wallet_exposure_weighting\": 23,\n", - " \"min_markup\": 0.002,\n", - " \"markup_range\": 0.018,\n", - " \"n_close_orders\": 16,\n", - " \"auto_unstuck_wallet_exposure_threshold\": 0.05,\n", - " \"auto_unstuck_ema_dist\": 0.001,\n", - " \"auto_unstuck_qty_pct\": 0.04,\n", - " \"auto_unstuck_delay_minutes\": 1000.0,\n", - " \"backwards_tp\": True,\n", - " },\n", - "}\n", - "config_to_test = {**config, **hand_tuned}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "74c7f771-3b72-49b2-8210-8e92ca667fd9", - "metadata": {}, - "outputs": [], - "source": [ - "grid_long = calc_recursive_entries_long(\n", - " Args().starting_balance,\n", - " 0.0,\n", - " 0.0,\n", - " df.price.iloc[-1],\n", - " df.price.iloc[-1],\n", - " config_to_test[\"inverse\"],\n", - " config_to_test[\"qty_step\"],\n", - " config_to_test[\"price_step\"],\n", - " config_to_test[\"min_qty\"],\n", - " config_to_test[\"min_cost\"],\n", - " config_to_test[\"c_mult\"],\n", - " config_to_test[\"long\"][\"initial_qty_pct\"],\n", - " config_to_test[\"long\"][\"initial_eprice_ema_dist\"],\n", - " config_to_test[\"long\"][\"ddown_factor\"],\n", - " config_to_test[\"long\"][\"rentry_pprice_dist\"],\n", - " config_to_test[\"long\"][\"rentry_pprice_dist_wallet_exposure_weighting\"],\n", - " config_to_test[\"long\"][\"wallet_exposure_limit\"],\n", - " config_to_test[\"long\"][\"auto_unstuck_ema_dist\"],\n", - " config_to_test[\"long\"][\"auto_unstuck_wallet_exposure_threshold\"],\n", - " config_to_test[\"long\"][\"auto_unstuck_delay_minutes\"]\n", - " or config_to_test[\"long\"][\"auto_unstuck_qty_pct\"],\n", - " whole_grid=True,\n", - ")\n", - "\n", - "grid_short = calc_recursive_entries_short(\n", - " Args().starting_balance,\n", - " 0.0,\n", - " 0.0,\n", - " df.price.iloc[-1],\n", - " df.price.iloc[-1],\n", - " config_to_test[\"inverse\"],\n", - " config_to_test[\"qty_step\"],\n", - " config_to_test[\"price_step\"],\n", - " config_to_test[\"min_qty\"],\n", - " config_to_test[\"min_cost\"],\n", - " config_to_test[\"c_mult\"],\n", - " config_to_test[\"short\"][\"initial_qty_pct\"],\n", - " config_to_test[\"short\"][\"initial_eprice_ema_dist\"],\n", - " config_to_test[\"short\"][\"ddown_factor\"],\n", - " config_to_test[\"short\"][\"rentry_pprice_dist\"],\n", - " config_to_test[\"short\"][\"rentry_pprice_dist_wallet_exposure_weighting\"],\n", - " config_to_test[\"short\"][\"wallet_exposure_limit\"],\n", - " config_to_test[\"short\"][\"auto_unstuck_ema_dist\"],\n", - " config_to_test[\"short\"][\"auto_unstuck_wallet_exposure_threshold\"],\n", - " config_to_test[\"short\"][\"auto_unstuck_delay_minutes\"]\n", - " or config_to_test[\"short\"][\"auto_unstuck_qty_pct\"],\n", - " whole_grid=True,\n", - ")\n", - "\n", - "gdf_long = pd.DataFrame(\n", - " grid_long, columns=[\"qty\", \"price\", \"type\", \"psize\", \"pprice\", \"wallet_exposure\"]\n", - ")\n", - "gdf_long.loc[:, \"eprice_pprice_diff\"] = abs(gdf_long.price - gdf_long.pprice) / gdf_long.price\n", - "gdf_long.loc[:, \"ddown_factor\"] = gdf_long.qty / gdf_long.psize.shift()\n", - "gdf_long.loc[:, \"bkr_price\"] = gdf_long.apply(\n", - " lambda x: calc_bankruptcy_price(\n", - " Args().starting_balance,\n", - " x.psize,\n", - " x.pprice,\n", - " 0.0,\n", - " 0.0,\n", - " config_to_test[\"inverse\"],\n", - " config_to_test[\"c_mult\"],\n", - " ),\n", - " axis=1,\n", - ")\n", - "gdf_short = pd.DataFrame(\n", - " grid_short, columns=[\"qty\", \"price\", \"type\", \"psize\", \"pprice\", \"wallet_exposure\"]\n", - ")\n", - "gdf_short.loc[:, \"eprice_pprice_diff\"] = abs(gdf_short.price - gdf_short.pprice) / gdf_short.price\n", - "gdf_short.loc[:, \"ddown_factor\"] = gdf_short.qty / gdf_short.psize.shift()\n", - "gdf_short.loc[:, \"bkr_price\"] = gdf_short.apply(\n", - " lambda x: calc_bankruptcy_price(\n", - " Args().starting_balance,\n", - " x.psize,\n", - " x.pprice,\n", - " 0.0,\n", - " 0.0,\n", - " config_to_test[\"inverse\"],\n", - " config_to_test[\"c_mult\"],\n", - " ),\n", - " axis=1,\n", - ")\n", - "\n", - "# Display grid on graph\n", - "n_ticks = 60 * 60 * 24 * 14 # 14 days\n", - "dfx = pd.DataFrame(\n", - " {\n", - " \"timestamp\": pd.to_datetime(timestamps[-n_ticks:], unit=\"ms\"),\n", - " \"price\": prices[-n_ticks:],\n", - " }\n", - ").set_index(\"timestamp\")\n", - "lastdayfrom = pd.to_datetime(Args().end_date)\n", - "# lastdayfrom = pd.Timestamp('2021-05-21')\n", - "fig = (\n", - " dfx.price.loc[lastdayfrom - pd.Timedelta(days=180) : lastdayfrom]\n", - " .iloc[::100]\n", - " .plot(title=\"Grid position\", xlabel=\"Time\", ylabel=\"Price\")\n", - ")\n", - "if config_to_test[\"long\"][\"enabled\"]:\n", - " for i, e in enumerate(gdf_long.itertuples()):\n", - " fig.axhline(y=e.price, color=\"b\", linestyle=\"-\")\n", - " print(f\"\\nGrid Span Long = {-(gdf_long.price.iloc[-1] / gdf_long.price.iloc[0] - 1) * 100:.2f}%\")\n", - "\n", - "if config_to_test[\"short\"][\"enabled\"]:\n", - " for i, e in enumerate(gdf_short.itertuples()):\n", - " fig.axhline(y=e.price, color=\"r\", linestyle=\"-\")\n", - " print(f\"Grid Span Short = {(gdf_short.price.iloc[-1] / gdf_short.price.iloc[0] - 1) * 100:.2f}%\")\n", - "\n", - "pd.concat([gdf_long, gdf_short]).sort_values(\"price\", ascending=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "063edb35-27ff-4dd0-a03e-7996f2bfa9e1", - "metadata": {}, - "outputs": [], - "source": [ - "sts = time()\n", - "fills_long, fills_short, stats = backtest(config_to_test, dataslice)\n", - "elapsed = time() - sts\n", - "print(f\"seconds elapsed {elapsed:.4f}\")\n", - "longs, shorts, sdf, analysis = analyze_fills(fills_long, fills_short, stats, config_to_test)\n", - "table = make_table({**config_to_test, **analysis})\n", - "print(table)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1c2d6679-1ee7-4016-8c25-9c1163870bf7", - "metadata": {}, - "outputs": [], - "source": [ - "sdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c9d89e7e-8d14-4722-b5ad-4346dc120b6a", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.balance_long.plot()\n", - "sdf.equity_long.plot(title=\"Balance and equity long\", xlabel=\"Time\", ylabel=\"Balance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "53c3110a-f9d4-4df7-9335-67900e47529f", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.balance_short.plot()\n", - "sdf.equity_short.plot(title=\"Balance and equity short\", xlabel=\"Time\", ylabel=\"Balance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "32b2dc74-24e4-487b-bdcb-d30281e3cf12", - "metadata": {}, - "outputs": [], - "source": [ - "if len(longs) > 0:\n", - " plot_fills(df, longs, plot_whole_df=True, title=\"Overview Fills Long\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7df6ee86-4e63-4e14-bb9f-fb9abf9a06e2", - "metadata": {}, - "outputs": [], - "source": [ - "if len(shorts) > 0:\n", - " plot_fills(df, shorts, plot_whole_df=True, title=\"Overview Fills Short\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4aa9d609-ccd2-4ae5-862e-0d8758ee4953", - "metadata": {}, - "outputs": [], - "source": [ - "wes = pd.DataFrame(\n", - " {\"WE_short\": (sdf.wallet_exposure_short.abs() * -1), \"WE_long\": sdf.wallet_exposure_long}\n", - ")\n", - "wes.plot(title=\"Wallet exposures\", xlabel=\"Time\", ylabel=\"Wallet Exposure\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9cad96ab-9268-4b08-9d08-e77d8b46e140", - "metadata": {}, - "outputs": [], - "source": [ - "sdf.price.plot(title=\"Average entry price\", xlabel=\"Time\", ylabel=\"Price\")\n", - "sdf[sdf.psize_long != 0].pprice_long.replace(0.0, np.nan).plot()\n", - "sdf[sdf.psize_short != 0].pprice_short.replace(0.0, np.nan).plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3ff902c7-a17a-4a48-8069-55f9c1c6e05d", - "metadata": {}, - "outputs": [], - "source": [ - "lpprices = sdf[sdf.psize_long != 0.0]\n", - "spprices = sdf[sdf.psize_short != 0.0]\n", - "\n", - "PADistance_long = (lpprices.pprice_long - lpprices.price).abs() / lpprices.price\n", - "PADistance_short = ((spprices.pprice_short - spprices.price).abs() / spprices.price) * -1\n", - "print(f\"Mean price action distance long {PADistance_long.mean():.6f} std {PADistance_long.std():.6f}\")\n", - "print(\n", - " f\"Mean price action distance short {PADistance_short.mean():.6f} std {PADistance_short.std():.6f}\"\n", - ")\n", - "\n", - "PADistance_long.plot()\n", - "PADistance_short.plot(title=\"Price action distance\", xlabel=\"Time\", ylabel=\"Price action distance\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bc9a54ff-d102-4765-9f95-1bb0c399ed72", - "metadata": {}, - "outputs": [], - "source": [ - "# Inspect long EMAs\n", - "# blue: lower unstucking; red: upper unstucking; green: initial entry\n", - "spans = [\n", - " config_to_test[\"long\"][\"ema_span_0\"],\n", - " (config_to_test[\"long\"][\"ema_span_0\"] * config_to_test[\"long\"][\"ema_span_1\"]) ** 0.5,\n", - " config_to_test[\"long\"][\"ema_span_1\"],\n", - "]\n", - "print(\n", - " f\"spans in minutes {spans}\",\n", - " f\"n_days {(df.index[-1] - df.index[0]) / 1000 / 60 / 60 / 24:.1f}\",\n", - ")\n", - "\n", - "spans_multiplier = 60 / ((timestamps[1] - timestamps[0]) / 1000)\n", - "for i in range(3):\n", - " # change to seconds\n", - " spans[i] = max(1.0, spans[i] * spans_multiplier)\n", - "emas = pd.DataFrame({str(span): df.price.ewm(span=span, adjust=False).mean() for span in spans})\n", - "ema_band_lower = emas.min(axis=1)\n", - "unstucking_band_lower = ema_band_lower * (1 - config_to_test[\"long\"][\"auto_unstuck_ema_dist\"])\n", - "ema_band_upper = emas.max(axis=1)\n", - "unstucking_band_upper = ema_band_upper * (1 + config_to_test[\"long\"][\"auto_unstuck_ema_dist\"])\n", - "long_ientry_band = ema_band_lower * (1 - config_to_test[\"long\"][\"initial_eprice_ema_dist\"])\n", - "df.iloc[::100].price.plot(style=\"y-\", title=\"Unstucking Bands and Initial Entry Band\")\n", - "unstucking_band_lower.iloc[::100].plot(\n", - " style=\"b--\",\n", - ")\n", - "unstucking_band_upper.iloc[::100].plot(style=\"r--\")\n", - "long_ientry_band.iloc[::100].plot(style=\"g-.\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "649a0610-84cb-4012-997c-b1a5c6c21228", - "metadata": {}, - "outputs": [], - "source": [ - "# Inspect short EMAs\n", - "# blue: lower unstucking; red: upper unstucking; green: initial entry\n", - "spans = [\n", - " config_to_test[\"short\"][\"ema_span_0\"],\n", - " (config_to_test[\"short\"][\"ema_span_0\"] * config_to_test[\"short\"][\"ema_span_1\"]) ** 0.5,\n", - " config_to_test[\"short\"][\"ema_span_1\"],\n", - "]\n", - "print(\n", - " f\"spans in minutes {spans}\",\n", - " f\"n_days {(df.index[-1] - df.index[0]) / 1000 / 60 / 60 / 24:.1f}\",\n", - ")\n", - "\n", - "spans_multiplier = 60 / ((timestamps[1] - timestamps[0]) / 1000)\n", - "for i in range(3):\n", - " # change to seconds\n", - " spans[i] = max(1.0, spans[i] * spans_multiplier)\n", - "emas = pd.DataFrame({str(span): df.price.ewm(span=span, adjust=False).mean() for span in spans})\n", - "ema_band_lower = emas.min(axis=1)\n", - "unstucking_band_lower = ema_band_lower * (1 - config_to_test[\"short\"][\"auto_unstuck_ema_dist\"])\n", - "ema_band_upper = emas.max(axis=1)\n", - "unstucking_band_upper = ema_band_upper * (1 + config_to_test[\"short\"][\"auto_unstuck_ema_dist\"])\n", - "short_ientry_band = ema_band_upper * (1 + config_to_test[\"short\"][\"initial_eprice_ema_dist\"])\n", - "df.iloc[::100].price.plot(style=\"y-\", title=\"Unstucking Bands and Initial Entry Band\")\n", - "unstucking_band_lower.iloc[::100].plot(style=\"b--\")\n", - "unstucking_band_upper.iloc[::100].plot(style=\"r--\")\n", - "short_ientry_band.iloc[::100].plot(style=\"g-.\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d8450bf0-0eeb-4ac7-8ba9-7ed385c8656f", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4aaf8c0f-0921-4850-8a78-bbbaee24e70c", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.16" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/harmony_search.py b/harmony_search.py deleted file mode 100644 index 0b3dc6f42..000000000 --- a/harmony_search.py +++ /dev/null @@ -1,434 +0,0 @@ -import os - -os.environ["NOJIT"] = "false" - -import argparse -import asyncio -import json -import numpy as np -import traceback -from copy import deepcopy -from backtest import backtest -from multiprocessing import Pool, shared_memory -from njit_funcs import round_dynamic -from pure_funcs import ( - analyze_fills, - denumpyize, - get_template_live_config, - ts_to_date, - ts_to_date_utc, - date_to_ts, - tuplify, - sort_dict_keys, - determine_passivbot_mode, - get_empty_analysis, - calc_scores, -) -from procedures import ( - add_argparse_args, - prepare_optimize_config, - load_live_config, - make_get_filepath, - prepare_backtest_config, - dump_live_config, - utc_ms, -) -from time import sleep, time -import logging -import logging.config - -logging.config.dictConfig({"version": 1, "disable_existing_loggers": True}) - - -class HarmonySearch: - def __init__(self, config: dict, backtest_wrap, pool=None): - self.backtest_wrap = backtest_wrap - self.config = config - self.do_long = config["long"]["enabled"] - self.do_short = config["short"]["enabled"] - self.n_harmonies = max(config["n_harmonies"], len(config["starting_configs"])) - self.starting_configs = config["starting_configs"] - self.hm_considering_rate = config["hm_considering_rate"] - self.bandwidth = config["bandwidth"] - self.pitch_adjusting_rate = config["pitch_adjusting_rate"] - self.iters = config["iters"] - self.n_cpus = config["n_cpus"] - self.pool = Pool(processes=config["n_cpus"]) if pool is None else pool - self.long_bounds = sort_dict_keys(config[f"bounds_{self.config['passivbot_mode']}"]["long"]) - self.short_bounds = sort_dict_keys(config[f"bounds_{self.config['passivbot_mode']}"]["short"]) - self.symbols = config["symbols"] - self.results_fpath = make_get_filepath(config["results_fpath"]) - self.exchange_name = config["exchange"] + ("_spot" if config["market_type"] == "spot" else "") - self.market_specific_settings = { - s: json.load( - open( - os.path.join( - self.config["base_dir"], - self.exchange_name, - s, - "caches", - "market_specific_settings.json", - ) - ) - ) - for s in self.symbols - } - self.date_range = f"{self.config['start_date']}_{self.config['end_date']}" - self.bt_dir = os.path.join(self.config["base_dir"], self.exchange_name) - self.ticks_cache_fname = ( - f"caches/{self.date_range}{'_ohlcv_cache.npy' if config['ohlcv'] else '_ticks_cache.npy'}" - ) - """ - self.ticks_caches = ( - {s: np.load(f"{self.bt_dir}/{s}/{self.ticks_cache_fname}") for s in self.symbols} - if self.n_harmonies > len(self.symbols) - else {} - ) - """ - self.ticks_caches = config["ticks_caches"] - self.current_best_config = None - - # [{'config': dict, 'task': process, 'id_key': tuple}] - self.workers = [None for _ in range(self.n_cpus)] - - # hm = {hm_key: str: {'long': {'score': float, 'config': dict}, 'short': {...}}} - self.hm = {} - - # {identifier: {'config': dict, - # 'single_results': {symbol_finished: single_backtest_result}, - # 'in_progress': set({symbol_in_progress}))} - self.unfinished_evals = {} - - self.iter_counter = 0 - - def post_process(self, wi: int): - # a worker has finished a job; process it - cfg = deepcopy(self.workers[wi]["config"]) - id_key = self.workers[wi]["id_key"] - symbol = cfg["symbol"] - self.unfinished_evals[id_key]["single_results"][symbol] = self.workers[wi]["task"].get() - self.unfinished_evals[id_key]["in_progress"].remove(symbol) - results = deepcopy(self.unfinished_evals[id_key]["single_results"]) - for s in results: - results[s]["timestamp_finished"] = utc_ms() - if set(results) == set(self.symbols): - # completed multisymbol iter - scores_res = calc_scores(self.config, results) - scores, means, raws, keys = ( - scores_res["scores"], - scores_res["means"], - scores_res["raws"], - scores_res["keys"], - ) - # check whether initial eval or new harmony - if "initial_eval_key" in cfg: - self.hm[cfg["initial_eval_key"]]["long"]["score"] = scores["long"] - self.hm[cfg["initial_eval_key"]]["short"]["score"] = scores["short"] - else: - # check if better than worst in harmony memory - worst_key_long = sorted( - self.hm, - key=lambda x: ( - self.hm[x]["long"]["score"] - if type(self.hm[x]["long"]["score"]) != str - else -np.inf - ), - )[-1] - if ( - self.do_long - and not isinstance(self.hm[worst_key_long]["long"]["score"], str) - and scores["long"] < self.hm[worst_key_long]["long"]["score"] - ): - self.hm[worst_key_long]["long"] = { - "config": deepcopy(cfg["long"]), - "score": scores["long"], - } - json.dump( - self.hm, - open(f"{self.results_fpath}hm_{cfg['config_no']:06}.json", "w"), - indent=4, - sort_keys=True, - ) - worst_key_short = sorted( - self.hm, - key=lambda x: ( - self.hm[x]["short"]["score"] - if type(self.hm[x]["short"]["score"]) != str - else -np.inf - ), - )[-1] - if ( - self.do_short - and not isinstance(self.hm[worst_key_short]["short"]["score"], str) - and scores["short"] < self.hm[worst_key_short]["short"]["score"] - ): - self.hm[worst_key_short]["short"] = { - "config": deepcopy(cfg["short"]), - "score": scores["short"], - } - json.dump( - self.hm, - open(f"{self.results_fpath}hm_{cfg['config_no']:06}.json", "w"), - indent=4, - sort_keys=True, - ) - best_key_long = sorted( - self.hm, - key=lambda x: ( - self.hm[x]["long"]["score"] - if type(self.hm[x]["long"]["score"]) != str - else np.inf - ), - )[0] - best_key_short = sorted( - self.hm, - key=lambda x: ( - self.hm[x]["short"]["score"] - if type(self.hm[x]["short"]["score"]) != str - else np.inf - ), - )[0] - best_config = { - "long": deepcopy(self.hm[best_key_long]["long"]["config"]), - "short": deepcopy(self.hm[best_key_short]["short"]["config"]), - } - best_config["result"] = { - "symbol": f"{len(self.symbols)}_symbols", - "exchange": self.config["exchange"], - "start_date": self.config["start_date"], - "end_date": self.config["end_date"], - } - tmp_fname = f"{self.results_fpath}{cfg['config_no']:06}_best_config" - is_better = False - if ( - self.do_long - and not isinstance(self.hm[best_key_long]["long"]["score"], str) - and scores["long"] <= self.hm[best_key_long]["long"]["score"] - ): - is_better = True - line = f"i{cfg['config_no']} - new best config long, score {round_dynamic(scores['long'], 12)} " - for key, _ in keys: - line += f"{key} {round_dynamic(raws['long'][key], 4)} " - logging.info(line) - tmp_fname += "_long" - json.dump( - results, - open(f"{self.results_fpath}{cfg['config_no']:06}_result_long.json", "w"), - indent=4, - sort_keys=True, - ) - if ( - self.do_short - and not isinstance(self.hm[best_key_short]["short"]["score"], str) - and scores["short"] <= self.hm[best_key_short]["short"]["score"] - ): - is_better = True - line = f"i{cfg['config_no']} - new best config short, score {round_dynamic(scores['short'], 12)} " - for key, _ in keys: - line += f"{key} {round_dynamic(raws['short'][key], 4)} " - logging.info(line) - tmp_fname += "_short" - json.dump( - results, - open(f"{self.results_fpath}{cfg['config_no']:06}_result_short.json", "w"), - indent=4, - sort_keys=True, - ) - if is_better: - dump_live_config(best_config, tmp_fname + ".json") - elif cfg["config_no"] % 25 == 0: - logging.info(f"i{cfg['config_no']}") - results["config_no"] = cfg["config_no"] - with open(self.results_fpath + "all_results.txt", "a") as f: - f.write( - json.dumps( - {"config": {"long": cfg["long"], "short": cfg["short"]}, "results": results} - ) - + "\n" - ) - del self.unfinished_evals[id_key] - self.workers[wi] = None - - def start_new_harmony(self, wi: int): - self.iter_counter += 1 # up iter counter on each new config started - template = get_template_live_config(self.config["passivbot_mode"]) - new_harmony = { - **{ - "long": deepcopy(template["long"]), - "short": deepcopy(template["short"]), - }, - **{k: self.config[k] for k in self.config["keys_to_include"]}, - **{"symbol": self.symbols[0], "config_no": self.iter_counter}, - } - for side in ["long", "short"]: - new_harmony[side]["enabled"] = getattr(self, f"do_{side}") - new_harmony[side]["backwards_tp"] = self.config[f"backwards_tp_{side}"] - for key in self.long_bounds: - if np.random.random() < self.hm_considering_rate: - # take note randomly from harmony memory - new_note_long = self.hm[np.random.choice(list(self.hm))]["long"]["config"][key] - new_note_short = self.hm[np.random.choice(list(self.hm))]["short"]["config"][key] - if np.random.random() < self.pitch_adjusting_rate: - # tweak note - new_note_long = new_note_long + self.bandwidth * (np.random.random() - 0.5) * abs( - self.long_bounds[key][0] - self.long_bounds[key][1] - ) - new_note_short = new_note_short + self.bandwidth * ( - np.random.random() - 0.5 - ) * abs(self.short_bounds[key][0] - self.short_bounds[key][1]) - # ensure note is within bounds - new_note_long = max( - self.long_bounds[key][0], min(self.long_bounds[key][1], new_note_long) - ) - new_note_short = max( - self.short_bounds[key][0], min(self.short_bounds[key][1], new_note_short) - ) - else: - # new random note - new_note_long = np.random.uniform(self.long_bounds[key][0], self.long_bounds[key][1]) - new_note_short = np.random.uniform( - self.short_bounds[key][0], self.short_bounds[key][1] - ) - new_harmony["long"][key] = new_note_long - new_harmony["short"][key] = new_note_short - logging.debug( - f"starting new harmony {new_harmony['config_no']} - long " - + " ".join([str(round_dynamic(e[1], 3)) for e in sorted(new_harmony["long"].items())]) - + " - short: " - + " ".join([str(round_dynamic(e[1], 3)) for e in sorted(new_harmony["short"].items())]) - ) - - new_harmony["market_specific_settings"] = self.market_specific_settings[new_harmony["symbol"]] - new_harmony["ticks_cache_fname"] = ( - f"{self.bt_dir}/{new_harmony['symbol']}/{self.ticks_cache_fname}" - ) - new_harmony["passivbot_mode"] = self.config["passivbot_mode"] - self.workers[wi] = { - "config": deepcopy(new_harmony), - "task": self.pool.apply_async( - self.backtest_wrap, args=(deepcopy(new_harmony), self.ticks_caches) - ), - "id_key": new_harmony["config_no"], - } - self.unfinished_evals[new_harmony["config_no"]] = { - "config": deepcopy(new_harmony), - "single_results": {}, - "in_progress": set([self.symbols[0]]), - } - - def start_new_initial_eval(self, wi: int, hm_key: str): - self.iter_counter += 1 # up iter counter on each new config started - config = { - **{ - "long": deepcopy(self.hm[hm_key]["long"]["config"]), - "short": deepcopy(self.hm[hm_key]["short"]["config"]), - }, - **{k: self.config[k] for k in self.config["keys_to_include"]}, - **{"symbol": self.symbols[0], "initial_eval_key": hm_key, "config_no": self.iter_counter}, - } - line = f"starting new initial eval {config['config_no']} of {self.n_harmonies} " - logging.info(line) - - config["market_specific_settings"] = self.market_specific_settings[config["symbol"]] - config["ticks_cache_fname"] = f"{self.bt_dir}/{config['symbol']}/{self.ticks_cache_fname}" - config["passivbot_mode"] = self.config["passivbot_mode"] - self.workers[wi] = { - "config": deepcopy(config), - "task": self.pool.apply_async( - self.backtest_wrap, args=(deepcopy(config), self.ticks_caches) - ), - "id_key": config["config_no"], - } - self.unfinished_evals[config["config_no"]] = { - "config": deepcopy(config), - "single_results": {}, - "in_progress": set([self.symbols[0]]), - } - self.hm[hm_key]["long"]["score"] = "in_progress" - self.hm[hm_key]["short"]["score"] = "in_progress" - - def run(self): - # initialize harmony memory - for _ in range(self.n_harmonies): - cfg_long = deepcopy(self.config["long"]) - cfg_short = deepcopy(self.config["short"]) - for k in self.long_bounds: - cfg_long[k] = np.random.uniform(self.long_bounds[k][0], self.long_bounds[k][1]) - cfg_short[k] = np.random.uniform(self.short_bounds[k][0], self.short_bounds[k][1]) - hm_key = str(time()) + str(np.random.random()) - self.hm[hm_key] = { - "long": {"score": "not_started", "config": cfg_long}, - "short": {"score": "not_started", "config": cfg_short}, - } - - # add starting configs - for side in ["long", "short"]: - hm_keys = list(self.hm) - bounds = getattr(self, f"{side}_bounds") - for cfg in self.starting_configs: - cfg = {k: max(bounds[k][0], min(bounds[k][1], cfg[side][k])) for k in bounds} - cfg["enabled"] = getattr(self, f"do_{side}") - cfg["backwards_tp"] = self.config[f"backwards_tp_{side}"] - if cfg not in [self.hm[k][side]["config"] for k in self.hm]: - self.hm[hm_keys.pop()][side]["config"] = deepcopy(cfg) - - # start main loop - while True: - # first check for finished jobs - for wi in range(len(self.workers)): - if self.workers[wi] is not None and self.workers[wi]["task"].ready(): - self.post_process(wi) - if self.iter_counter >= self.iters + self.n_harmonies: - if all(worker is None for worker in self.workers): - # break when all work is finished - break - else: - # check for idle workers - for wi in range(len(self.workers)): - if self.workers[wi] is not None: - continue - # a worker is idle; give it a job - for id_key in self.unfinished_evals: - # check if unfinished evals - missing_symbols = set(self.symbols) - ( - set(self.unfinished_evals[id_key]["single_results"]) - | self.unfinished_evals[id_key]["in_progress"] - ) - if missing_symbols: - # start eval for missing symbol - symbol = sorted(missing_symbols)[0] - config = deepcopy(self.unfinished_evals[id_key]["config"]) - config["symbol"] = symbol - config["market_specific_settings"] = self.market_specific_settings[ - config["symbol"] - ] - config["ticks_cache_fname"] = ( - f"{self.bt_dir}/{config['symbol']}/{self.ticks_cache_fname}" - ) - config["passivbot_mode"] = self.config["passivbot_mode"] - self.workers[wi] = { - "config": config, - "task": self.pool.apply_async( - self.backtest_wrap, args=(config, self.ticks_caches) - ), - "id_key": id_key, - } - self.unfinished_evals[id_key]["in_progress"].add(symbol) - break - else: - # means all symbols are accounted for in all unfinished evals; start new eval - for hm_key in self.hm: - if self.hm[hm_key]["long"]["score"] == "not_started": - # means initial evals not yet done - self.start_new_initial_eval(wi, hm_key) - break - else: - # means initial evals are done; start new harmony - self.start_new_harmony(wi) - sleep(0.0001) - - -if __name__ == "__main__": - from optimize import main as main_ - - asyncio.run(main_(algorithm="harmony_search")) diff --git a/manager/.gitignore b/manager/.gitignore deleted file mode 100644 index c4f4db32c..000000000 --- a/manager/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -config.yaml -!config/ \ No newline at end of file diff --git a/manager/__init__.py b/manager/__init__.py deleted file mode 100644 index 503a7ce3c..000000000 --- a/manager/__init__.py +++ /dev/null @@ -1,124 +0,0 @@ -from manager.constants import INSTANCE_SIGNATURE_BASE -from typing import List, Dict, Union, Callable, Tuple -from manager.config.parser import ConfigParser -from manager.instance import Instance -from manager.pm import ProcessManager -from itertools import groupby - - -class Manager: - def __init__(self, config_path: str = None): - self.instances = None - self.config_path = config_path - self.config_parser = ConfigParser(self.config_path) - - def load_instances(self): - """Sync manger with instances in the config and unsynced ones""" - self.instances = self.config_parser.get_instances() - - for instance in self.find_unsynced_instances(): - iid = instance.get_id() - if self.instances.get(iid) is None: - instance.is_in_config(False) - self.instances[iid] = instance - - def get_instances(self) -> List[Instance]: - if self.instances is None: - self.load_instances() - - return self.instances.values() - - def filter_instances(self, filter) -> List[Instance]: - if not callable(filter): - return [] - - instances = [] - for instance in self.get_instances(): - if filter(instance): - instances.append(instance) - - return instances - - def get_running_instances(self) -> List[Instance]: - return self.filter_instances(lambda i: i.is_running()) - - def count(self, filter_fn: Callable, instances: List[Instance] = None) -> Tuple[int, int]: - iterable = instances - if iterable is None: - iterable = self.get_instances() - - return len(list(filter(filter_fn, iterable))), len(iterable) - - def count_running(self, instances: List[Instance] = None, format=False) -> Union[int, str]: - def filter(i): return i.is_running() - running, total = self.count(filter, instances) - - if not format: - return running - - return f"{running}/{total} running" - - def count_unsynced(self, instances: List[Instance] = None, format: bool = False) -> Union[int, str]: - def filter(i): return not i.is_in_config() - unsynced, total = self.count(filter, instances) - - if not format: - return unsynced - - return f"{unsynced}/{total} unsynced" - - def get_synced_instances(self) -> List[Instance]: - return self.filter_instances(lambda i: i.is_in_config()) - - def get_unsynced_instances(self) -> List[Instance]: - return self.filter_instances(lambda i: not i.is_in_config()) - - def query_instances(self, query: List[str]) -> List[Instance]: - """Query instances by query string""" - instances = [] - for instance in self.get_instances(): - if instance.match(query): - instances.append(instance) - - return instances - - def find_unsynced_instances(self) -> List[Instance]: - """Get all passivbot instances running on this machine""" - signature = f"^{' '.join(INSTANCE_SIGNATURE_BASE)}" - pids = ProcessManager.get_pid(signature, all_matches=True) - if len(pids) == 0: - return [] - - instances_cmds = [ProcessManager.info(pid) for pid in pids] - instanaces = [] - for cmd in instances_cmds: - args = cmd.split(" ") - if len(args) <= 3: - continue - - args = args[3:] - user = args[0] - symbol = args[1] - config = args[2] - flags = {} - - if len(args[3:]) > 0: - it = iter(args[3:]) - flags = dict(zip(it, it)) - - instance = Instance({ - "user": user, - "symbol": symbol, - "config": config, - "flags": flags - }) - if instance.is_running(): - instanaces.append(instance) - - return instanaces - - def group_instances_by_user(self, instances: List[Instance]) -> Dict[str, List[Instance]]: - groups = {} - for key, group in groupby(instances, lambda i: i.get_user()): - groups[key] = list(group) - return groups diff --git a/manager/__main__.py b/manager/__main__.py deleted file mode 100644 index a7e57a4b0..000000000 --- a/manager/__main__.py +++ /dev/null @@ -1,6 +0,0 @@ -from cli import ManagerCLI -from sys import argv - - -if __name__ == "__main__": - ManagerCLI().run(argv[1:]) diff --git a/manager/cli/__init__.py b/manager/cli/__init__.py deleted file mode 100644 index 49048a98f..000000000 --- a/manager/cli/__init__.py +++ /dev/null @@ -1,50 +0,0 @@ -from sys import path, argv -path.append(".") - -from .cli import CLI -from .commands.init import Init -from .commands.help import Help -from .commands.list import List -from .commands.info import Info -from .commands.sync import Sync -from .commands.stop import Stop -from .commands.start import Start -from .commands.restart import Restart - - -class ManagerCLI(CLI): - def __init__(self) -> None: - super().__init__() - self.add_command("start", Start) - self.add_command("stop", Stop) - self.add_command("restart", Restart) - self.add_command("sync", Sync) - self.add_command("list", List) - self.add_command("info", Info) - self.add_command("init", Init) - self.add_command("help", Help) - - self.add_flag("all", ["-a", "--all"], - "perform action on all instances") - - self.add_flag("unsynced", ["-u", "--unsynced"], - "perform action on unsynced instances") - - self.add_flag("yes", ["-y", "--yes"], "skip confirmation") - - self.add_flag("silent", ["-s", "--silent"], - "disiable logging for affected instances") - - self.add_flag("force", ["-f", "--force"], "force an action") - - self.add_flag("modifiers", ["-m", "--modify"], - "modify flags of affected instances", type=str) - - self.add_flag("config_path", ["-c", "--config"], - "specify an absolute path to a manager config", type=str) - - self.add_flag("help", ["-h", "--help"], "show help for a command") - - -if __name__ == "__main__": - ManagerCLI().run(argv[1:]) diff --git a/manager/cli/cli.py b/manager/cli/cli.py deleted file mode 100644 index 71c1057a1..000000000 --- a/manager/cli/cli.py +++ /dev/null @@ -1,254 +0,0 @@ -from typing import Dict, List, Any, Callable, Union, Type -from manager.cli.progress import Progress -from manager.instance import Instance -from manager.constants import logger -from manager.cli.color import Color -from argparse import ArgumentParser -from manager import Manager -from threading import Event - - -class CLI: - def __init__(self) -> None: - self.commands_available: Dict[str, CLICommand] = {} - self.flags_available: Dict[str, Dict] = {} - - self.args = [] - self.flags = {} - - self.threads_: List[Progress] = [] - self.manager_: Union[Manager, None] = None - - def parse_input(self, input=[]) -> Dict[str, Any]: - - def base_parser() -> ArgumentParser: - parser = ArgumentParser(add_help=False, allow_abbrev=False) - return parser - - parser = base_parser() - parser.add_argument("args", nargs="*") - parsed_args = vars(parser.parse_known_args()[0]) - parsed_args = parsed_args.get("args") - - args = [] - if len(parsed_args) > 1: - args = parsed_args[1:] - - parser = base_parser() - for name, flag in self.flags_available.items(): - variants = flag.get("variants", []) - if len(variants) == 0: - continue - - type = flag.get("type") - if type: - parser.add_argument(*variants, type=type, dest=name) - else: - parser.add_argument(*variants, action="store_true", dest=name) - - flags = parser.parse_known_args()[0] - - return {"args": args, "flags": vars(flags)} - - def add_command(self, command: str, executor: "CLICommand"): - self.commands_available[command] = executor - - def add_flag(self, name: str, variants: List[str], doc: str, type: Type = None): - self.flags_available[name] = { - "variants": variants, - "doc": doc, - "type": type, - } - - def add_progress(self, initial_message: str = "") -> Progress: - thread = Progress(Event(), initial_message) - self.threads_.append(thread) - return thread - - def run_command(self, command: str): - executor = self.commands_available.get(command) - if executor is None: - logger.info(f"Unknown command: {command}") - return - - try: - executor.run(self) - except KeyboardInterrupt: - self.on_exit() - logger.info("\nAborted") - except: - self.on_exit() - logger.error( - "\nSomething went wrong, there should be possible reasons above") - - def run(self, args: List): - if len(args) == 0: - return - - parsed_input = self.parse_input(args[1:]) - self.flags = parsed_input.get("flags") - self.args = parsed_input.get("args") - self.run_command(args[0]) - - def on_exit(self): - for thread in self.threads_: - if not thread.is_alive(): - continue - - thread.finished.set() - thread.join() - - # ---------------------------------------------------------------------------- # - # utilities # - # ---------------------------------------------------------------------------- # - - def format_instnaces(self, instances: List[Instance], **kwargs) -> List[str]: - if len(instances) == 0: - return [] - - lines = [] - title = kwargs.get("title") - - if title: - lines.append(f"{title}:") - - groups = self.manager.group_instances_by_user(instances) - for user, group in groups.items(): - running = self.manager.count_running(group, format=True) - user = Color.apply(Color.CYAN, user) - lines.append(f"- {user} ({running})") - lines.extend([self.format_instance(instance) - for instance in group]) - - return lines - - def format_instance_like(self, *args) -> str: - return " {:1} {:<15}".format(*args) - - def format_instance(self, instance: Instance) -> str: - color = Color.RED - if instance.is_running(): - color = Color.GREEN - - status = Color.apply(color, "●") - symbol = instance.get_symbol() - return self.format_instance_like(status, symbol) - - def get_instances_for_action(self, filter: Callable = None) -> List[Instance]: - if len(self.manager.get_instances()) == 0: - logger.info("You have no instances configured") - return [] - - if self.flags.get("all", False): - instances = self.manager.get_instances() - elif self.flags.get("unsynced", False): - instances = self.manager.get_unsynced_instances() - else: - instances = self.manager.query_instances(self.args) - - if callable(filter): - instances = [ - instance for instance in instances if filter(instance)] - - if len(instances) == 0: - logger.warn( - f"No instances matched the given arguments: {' '.join(self.args)}") - - return instances - - def confirm_action(self, action, instances) -> bool: - if len(instances) == 0: - return False - - if self.flags.get("yes", False): - return True - - def action_message(message): - return f"Action \"{action}\" will be performed on {message}" - - logger.info(action_message(f"{len(instances)} instance(s). Continue?")) - - def variant(text: str) -> str: - return Color.apply(Color.LIGHT_PURPLE, text) - - while True: - try: - prompts = [ - f"{variant('yes')} or {variant('y')} to confirm", - f"{variant('list')} or {variant('l')} to see affected instances", - f"{variant('no')}, {variant('n')} or Ctrl+C to abort:", - ] - raw_answer = input("\n".join(prompts)) - except KeyboardInterrupt: - logger.info("\nAborted") - return False - - answer = raw_answer.lower() - - if answer in ["yes", "y"]: - return True - elif answer in ["list", "l"]: - lines = self.format_instnaces( - instances, title=f"\n{action_message('these instances')}") - for line in lines: - logger.info(line) - elif answer in ["no", "n"]: - logger.info("Aborted") - return False - - # ---------------------------------------------------------------------------- # - # properties # - # ---------------------------------------------------------------------------- # - - @property - def manager(self) -> Manager: - if self.manager_ is None: - config_path = self.flags.get("config_path", None) - self.manager_ = Manager(config_path) - - return self.manager_ - - @property - def modifiers(self) -> Dict[str, Any]: - flag_value = self.flags.get("modifiers") - if flag_value is None: - return {} - - it = iter(flag_value.split(" ")) - return dict(zip(it, it)) - - -class CLICommand: - doc: str - args_required: List[str] - args_optional: List[str] - flags: List[str] - - @staticmethod - def run(cli: CLI): - pass - - @classmethod - def get_docs(self) -> List[str]: - lines = [] - - if self.doc != "": - lines.extend([f"{line.strip()}" - for line in self.doc.split("\n")]) - - args_line = [] - if hasattr(self, "args_required") and len(self.args_required) > 0: - args_line.extend([f"<{arg.strip()}>" - for arg in self.args_required]) - - if hasattr(self, "args_optional") and len(self.args_optional) > 0: - args_line.extend([f"[ {arg.strip()} ]" - for arg in self.args_optional]) - - if len(args_line) > 0: - lines.append(f"Args: {' '.join(args_line)}") - - if hasattr(self, "flags") and len(self.flags) > 0: - lines.append(f"Flags: [ {' ] [ '.join(self.flags)} ]") - - return lines diff --git a/manager/cli/color.py b/manager/cli/color.py deleted file mode 100644 index d16612cfb..000000000 --- a/manager/cli/color.py +++ /dev/null @@ -1,35 +0,0 @@ -from typing import Union, List - - -class Color: - BLACK = "\033[0;30m" - RED = "\033[0;31m" - GREEN = "\033[0;32m" - BROWN = "\033[0;33m" - BLUE = "\033[0;34m" - PURPLE = "\033[0;35m" - CYAN = "\033[0;36m" - LIGHT_GRAY = "\033[0;37m" - DARK_GRAY = "\033[1;30m" - LIGHT_RED = "\033[1;31m" - LIGHT_GREEN = "\033[1;32m" - YELLOW = "\033[1;33m" - LIGHT_BLUE = "\033[1;34m" - LIGHT_PURPLE = "\033[1;35m" - LIGHT_CYAN = "\033[1;36m" - LIGHT_WHITE = "\033[1;37m" - BOLD = "\033[1m" - FAINT = "\033[2m" - ITALIC = "\033[3m" - UNDERLINE = "\033[4m" - BLINK = "\033[5m" - NEGATIVE = "\033[7m" - CROSSED = "\033[9m" - END = "\033[0m" - - @staticmethod - def apply(color: str, *text: str) -> Union[str, List[str]]: - if len(text) == 1: - return color + text[0] + Color.END - - return [color + t + Color.END for t in text] diff --git a/manager/cli/commands/__init__.py b/manager/cli/commands/__init__.py deleted file mode 100644 index a69b829b1..000000000 --- a/manager/cli/commands/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from sys import path -path.append("..") \ No newline at end of file diff --git a/manager/cli/commands/help.py b/manager/cli/commands/help.py deleted file mode 100644 index c63d9f62c..000000000 --- a/manager/cli/commands/help.py +++ /dev/null @@ -1,47 +0,0 @@ -from manager.cli.cli import CLICommand -from manager.constants import logger - - -class Help(CLICommand): - doc = "Show help" - args_optional = ["command"] - - @staticmethod - def run(cli): - if len(cli.commands_available) == 0: - logger.info("There are no avilable commands") - return - - if len(cli.args) > 0: - name = cli.commands_available.get(cli.args[0]) - if name is None: - logger.info(f"There is no available command: {cli.args[0]}") - return - - logger.info(f"Help for {cli.args[0]}:") - for line in Help.get_docs(): - logger.info(line) - return - - logger.info("Available commands:") - - lines = [ - "Usage: manager [args]", - "\n CLI for managing instances of PassivBot\n", - "Commands:", - ] - - for name, command in cli.commands_available.items(): - doc_lines = command.get_docs() - - lines.append(f" {name:<8} - {doc_lines[0]}") - for line in doc_lines[1:]: - lines.append(f" {'':<10} {line}") - - lines.append("\nFlags:") - for flag in cli.flags_available.values(): - variants = ", ".join(flag["variants"]) - lines.append(f" {variants:<15} - {flag.get('doc')}") - - for line in lines: - logger.info(line) diff --git a/manager/cli/commands/info.py b/manager/cli/commands/info.py deleted file mode 100644 index e3875e4cd..000000000 --- a/manager/cli/commands/info.py +++ /dev/null @@ -1,46 +0,0 @@ -from manager.cli.cli import CLICommand -from manager.constants import logger -from manager.cli.color import Color - - -class Info(CLICommand): - doc = """Get detailed info about an instance. - If multiple instances are matched, - only the first one will be shown.""" - args_required = ["query"] - - @staticmethod - def run(cli): - instances = cli.get_instances_for_action() - if len(instances) == 0: - return - - instance = instances[0] - flags = instance.get_flags() - - status_text = "stopped" - status_color = Color.RED - if instance.is_running(): - status_text = "running" - status_color = Color.GREEN - status = Color.apply(status_color, status_text) - - lines = [] - lines.extend( - [ - f"id: {instance.get_id()}:", - f"user: {instance.get_user()}", - f"symbol: {instance.get_symbol()}", - f"status: {status}", - f"pid: {instance.get_pid_str()}", - f"config: {instance.get_config()}", - ] - ) - - if len(flags) > 0: - lines.append("\nFlags:") - lines.extend([f" {flags[i]}: { flags[i + 1]}" - for i in range(0, len(flags), 2)]) - - for line in lines: - logger.info(line) diff --git a/manager/cli/commands/init.py b/manager/cli/commands/init.py deleted file mode 100644 index 78eea3de5..000000000 --- a/manager/cli/commands/init.py +++ /dev/null @@ -1,27 +0,0 @@ -from manager.constants import logger, MANAGER_PATH -from manager.cli.cli import CLICommand -from shutil import copyfile -from os import path - - -class Init(CLICommand): - doc = """Create a config file. - Provide a filename argument to create - a config file with non-default name""" - args_optional = ["filename"] - - @staticmethod - def run(cli): - filename = "config.yaml" - if len(cli.args) > 0: - filename = f"{cli.args[0]}.yaml" - - source = path.join(MANAGER_PATH, "config.example.yaml") - target = path.join(MANAGER_PATH, filename) - - if path.exists(target): - logger.info(f"Config file already exists -> {target}") - return - - copyfile(source, target) - logger.info(f"Created a config file -> {target}") diff --git a/manager/cli/commands/list.py b/manager/cli/commands/list.py deleted file mode 100644 index fa890d24d..000000000 --- a/manager/cli/commands/list.py +++ /dev/null @@ -1,40 +0,0 @@ -from manager.cli.cli import CLICommand -from manager.constants import logger - - -class List(CLICommand): - doc = """List instances that match the arguments. - List all if no arguments given.""" - args_optional = ["query"] - - @staticmethod - def run(cli): - instances = cli.get_instances_for_action() - lines = [] - - if len(instances) == 0: - return - - instances_synced = [] - instances_unsynced = [] - for instance in instances: - if instance.is_in_config(): - instances_synced.append(instance) - else: - instances_unsynced.append(instance) - - if len(instances_synced) > 0: - lines.extend(cli.format_instnaces( - instances_synced, title="Instances")) - - if len(instances_unsynced) > 0: - lines.extend(cli.format_instnaces( - instances_unsynced, title="\nUnsynced")) - - lines.append(f"\n{cli.manager.count_running(instances, format=True)}") - lines.append(f"{cli.manager.count_unsynced(instances, format=True)}") - lines.append( - '\nUse "manager info" to get more info about a particular instance') - - for line in lines: - logger.info(line) diff --git a/manager/cli/commands/restart.py b/manager/cli/commands/restart.py deleted file mode 100644 index e03accf82..000000000 --- a/manager/cli/commands/restart.py +++ /dev/null @@ -1,43 +0,0 @@ -from manager.cli.cli import CLICommand -from manager.constants import logger - - -class Restart(CLICommand): - doc = """Restart instances that match the arguments.""" - args_optional = ["query"] - flags = ["-a", "-u", "-s", "-y", "-f", "-m"] - - @staticmethod - def run(cli): - force = cli.flags.get("force", False) - silent = cli.flags.get("silent", False) - - logger.info("Looking for matching instances...") - - instances_to_restart = cli.get_instances_for_action() - if len(instances_to_restart) == 0: - return - - if cli.confirm_action("restart", instances_to_restart) != True: - return - - logger.info("Restarting instances. It may take a while...") - restarted_instances = [] - failed = [] - progress = cli.add_progress(f"restarted 0/{len(instances_to_restart)}") - for instance in instances_to_restart: - instance.apply_flags(cli.modifiers) - if instance.restart(force, silent): - restarted_instances.append(instance.get_id()) - else: - failed.append(instance.get_id()) - - progress.update( - f"restarted {len(restarted_instances)}/{len(instances_to_restart)}") - - progress.finish(f"Restarted {len(restarted_instances)} instance(s)") - - if len(failed) > 0: - logger.info(f"Failed to restart {len(failed)} instances:") - for id in failed: - logger.info(f"- {id}") diff --git a/manager/cli/commands/start.py b/manager/cli/commands/start.py deleted file mode 100644 index 60fe50aa1..000000000 --- a/manager/cli/commands/start.py +++ /dev/null @@ -1,40 +0,0 @@ -from manager.cli.cli import CLICommand -from manager.constants import logger - - -class Start(CLICommand): - doc = """Start instances that match the arguments.""" - args_optional = ["query"] - flags = ["-a", "-s", "-y", "-m"] - - @staticmethod - def run(cli): - silent = cli.flags.get("silent", False) - - logger.info("Looking for stopped instances...") - - instances_to_start = cli.get_instances_for_action( - lambda i: not i.is_running()) - if len(instances_to_start) == 0: - return - - if cli.confirm_action("start", instances_to_start) != True: - return - - logger.info("Starting instances...") - started_instances = [] - failed = [] - for instance in instances_to_start: - instance.apply_flags(cli.modifiers) - started = instance.start(silent) - if started: - started_instances.append(instance.get_id()) - else: - failed.append(instance.get_id()) - - logger.info(f"Started {len(started_instances)} instance(s)") - - if len(failed) > 0: - logger.info(f"Failed to start {len(failed)} instances:") - for id in failed: - logger.info(f"- {id}") diff --git a/manager/cli/commands/stop.py b/manager/cli/commands/stop.py deleted file mode 100644 index 3867484d4..000000000 --- a/manager/cli/commands/stop.py +++ /dev/null @@ -1,43 +0,0 @@ -from manager.cli.progress import Progress -from manager.cli.cli import CLICommand -from manager.constants import logger - - -class Stop(CLICommand): - doc = """Start instances that match the arguments.""" - args_optional = ["query"] - flags = ["-a", "-u", "-s", "-y", "-f"] - - @staticmethod - def run(cli): - force = cli.flags.get("force", False) - - logger.info("Seeking for running instances...") - - instances_to_stop = cli.get_instances_for_action( - lambda i: i.is_running()) - if len(instances_to_stop) == 0: - return - - if cli.confirm_action("stop", instances_to_stop) != True: - return - - logger.info("Stopping instances. It may take a while...") - stopped_instances = [] - failed = [] - progress = cli.add_progress(f"stopped 0/{len(instances_to_stop)}") - for instance in instances_to_stop: - if instance.stop(force): - stopped_instances.append(instance.get_id()) - else: - failed.append(instance.get_id()) - - progress.update( - f"stopped {len(stopped_instances)}/{len(instances_to_stop)}") - - progress.finish(f"Stopped {len(stopped_instances)} instance(s)") - - if len(failed) > 0: - logger.info(f"Failed to stop {len(failed)} instances:") - for id in failed: - logger.info(f"- {id}") diff --git a/manager/cli/commands/sync.py b/manager/cli/commands/sync.py deleted file mode 100644 index a0dad6b3b..000000000 --- a/manager/cli/commands/sync.py +++ /dev/null @@ -1,42 +0,0 @@ -from manager.cli.cli import CLICommand -from manager.constants import logger -from manager.cli.color import Color - - -class Sync(CLICommand): - doc = f"""Sync instances with config. - {Color.apply(Color.YELLOW, "CAUTION:")} - {Color.apply(Color.UNDERLINE, "all")} instances that are currently running will be - forcefully stopped, and only the ones that are - currently in the config will be started again.""" - - args_optional = ["query"] - flags = ["-y", "-s"] - - @staticmethod - def run(cli): - cli.flags["all"] = True - cli.flags["force"] = True - - logger.info(f"{Color.apply(Color.YELLOW, 'CAUTION:')}") - logger.info( - "you are about to stop all instances that are currently running.") - logger.info( - "Only the instances that are currently in the config file will be started again.") - if cli.confirm_action("sync", cli.manager.get_instances()) != True: - return - - cli.flags["yes"] = True - - delimiter = "-" * 30 - logger.info("Syncing instances...") - logger.info(delimiter) - cli.run_command("stop") - logger.info(delimiter) - cli.manager.load_instances() - cli.run_command("start") - - logger.info(delimiter) - logger.info("Sync complete") - logger.info(delimiter) - cli.run_command("list") diff --git a/manager/cli/progress.py b/manager/cli/progress.py deleted file mode 100644 index 24e2395a6..000000000 --- a/manager/cli/progress.py +++ /dev/null @@ -1,36 +0,0 @@ -from threading import Thread, Event -from itertools import cycle -from time import sleep -from sys import stdout - - -class Progress(Thread): - def __init__(self, event: Event, initial_message: str = "") -> None: - super().__init__() - - self.states = ["⠷", "⠯", "⠟", "⠻", "⠽", "⠾"] - self.message = "" - self.finished = event - - if initial_message is not None: - self.update(initial_message) - - def run(self): - for char in cycle(self.states): - if self.finished.is_set(): - break - - stdout.write(f"\r{char} {self.message}") - stdout.flush() - sleep(0.2) - - def update(self, message: str): - if not self.is_alive(): - self.start() - - self.message = message - - def finish(self, message: str = "Finished"): - self.finished.set() - stdout.write(f"\r{message}\n") - stdout.flush() diff --git a/manager/config.example.v1.yaml b/manager/config.example.v1.yaml deleted file mode 100644 index 074d0990e..000000000 --- a/manager/config.example.v1.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# -# copy this to manager/config.yaml and edit -# structure: -# -defaults: - # name of a file in the config/live directory - live_config_name: "matic.json" - - # absolute path. Will be auto-generated if empty - live_config_path: "" - market_type: "futures" # futures | spot - - # 0 means no limit - assigned_balance: 0 - - long_wallet_exposure_limit: 0 - long_min_markup: 0 - long_markup_range: 0 - - short_wallet_exposure_limit: 0 - short_min_markup: 0 - short_markup_range: 0 - - # modes: # n | m | gs | p | t - # modes info: https://www.passivbot.com/en/latest/live/#controlling-the-bot - long_mode: "n" - short_mode: "m" - -instances: - - user: "binance_01" - symbols: - - "ALICEUSDT" - - "HBARUSDT" - - "GTCUSDT" - # all default settings may be overridden: - live_config_name: "risky.json" - # ... - - # you may have multiple entries for the same user - - user: "binance_01" - symbols: - - "ETHUSDT" - - "BTCUSDT" diff --git a/manager/config.example.yaml b/manager/config.example.yaml deleted file mode 100644 index 3a337dc48..000000000 --- a/manager/config.example.yaml +++ /dev/null @@ -1,33 +0,0 @@ -version: 2 - -defaults: - # name of a file in the config/live directory - # or an absolute path to a config file - config: "latest.json" - - # uncomment settings to enable them - - # absolute path to a keys file - # api_keys: /home/ubuntu/passivbot/api-keys.json - - # assigned_balance: 0 - # market_type: "futures" - # leverage: 7 - - # long_mode: "n" - # long_exposure: 0 - # long_min_markup: 0 - # long_markup_range: 0 - - # short_mode: "m" - # short_exposure: 0 - # short_min_markup: 0 - # short_markup_range: 0 - -# it is highly recommended to read the docs/manager.md -# for the advanced instances configuration -instances: - - user: "binance_0x" - symbols: - - "BTCUSDT" - - "ETHUSDT" diff --git a/manager/config.settings.yaml b/manager/config.settings.yaml deleted file mode 100644 index 8bffa430d..000000000 --- a/manager/config.settings.yaml +++ /dev/null @@ -1,116 +0,0 @@ -arguments: - - name: config - aliases: - - cfg - - config - - live_config_name - - live_config_path - -flags: - # ----------------------------------- misc ----------------------------------- # - - - name: assigned_balance - flag: -ab - aliases: - - ab - - assigned_balance - - - name: market_type - flag: -m - aliases: - - m - - mt - - market_type - - - name: price_distance_threshold - flag: -pt - aliases: - - pt - - price_distance_threshold - - - name: api_keys - flag: -ak - aliases: - - ak - - api_keys - - - name: leverage - flag: -lev - aliases: - - lev - - leverage - - - name: ohlcv - flag: -oh - aliases: - - oh - - ohlcv - - - name: price_precision - flag: -pp - aliases: - - pp - - price_precision - - - name: price_step_custom - flag: -ps - aliases: - - ps - - price_step - - price_step_custom - - # ----------------------------------- longs ---------------------------------- # - - - name: long_mode - flag: -lm - aliases: - - lm - - long_mode - - - name: long_exposure - flag: -lw - aliases: - - lw - - lwe - - long_exposure - - long_wallet_exposure_limit - - - name: long_min_markup - flag: -lmm - aliases: - - lmm - - long_min_markup - - - name: long_markup_range - flag: -lmr - aliases: - - lmr - - long_markup_range - - # ---------------------------------- shorts ---------------------------------- # - - - name: short_mode - flag: -sm - aliases: - - sm - - short_mode - - - name: short_exposure - flag: -sw - aliases: - - sw - - swe - - short_exposure - - short_wallet_exposure_limit - - - name: short_min_markup - flag: -smm - aliases: - - smm - - short_min_markup - - - name: short_markup_range - flag: -smr - aliases: - - smr - - short_markup_range diff --git a/manager/config/parser.py b/manager/config/parser.py deleted file mode 100644 index 22065e36f..000000000 --- a/manager/config/parser.py +++ /dev/null @@ -1,68 +0,0 @@ -from constants import MANAGER_CONFIG_PATH, MANAGER_CONFIG_SETTINGS_PATH, logger -from yaml import load, FullLoader, YAMLError -from .v2 import ConfigParserV2 -from .v1 import ConfigParserV1 -from instance import Instance -from typing import Dict -from sys import exit -from os import path - - -class ConfigParser: - def __init__(self, config_path: str = None) -> None: - self.config = None - self.config_settings = None - self.config_path = MANAGER_CONFIG_PATH - if config_path is not None: - self.config_path = config_path - - def preload(self): - self.get_config() - self.get_config_settings() - - def load_yaml(self, filepath: str) -> Dict: - if not path.exists(filepath): - logger.error(f"Path does not exist: {filepath}") - exit(1) - - try: - with open(filepath, "r") as f: - yaml = load(f, Loader=FullLoader) - except YAMLError as error: - logger.error("Error while parsing YAML file:") - - if not hasattr(error, 'problem_mark'): - exit(1) - - logger.error(f" {str(error.problem_mark)}") - - if error.context is not None: - logger.error(f" {str(error.problem)} {str(error.context)}") - - logger.error(f" {str(error.problem)}") - exit(1) - - return yaml - - def get_config(self) -> Dict: - if self.config is None: - self.config = self.load_yaml(self.config_path) - - return self.config - - def get_config_settings(self) -> Dict: - if self.config_settings is None: - self.config_settings = self.load_yaml(MANAGER_CONFIG_SETTINGS_PATH) - - return self.config_settings - - def get_instances(self) -> Dict[str, Instance]: - config = self.get_config() - settings = self.get_config_settings() - version = config.get("version") - - parser = ConfigParserV1 - if version == 2: - parser = ConfigParserV2 - - return parser(config, settings).get_instances() diff --git a/manager/config/v.py b/manager/config/v.py deleted file mode 100644 index b13f01894..000000000 --- a/manager/config/v.py +++ /dev/null @@ -1,110 +0,0 @@ -from constants import CONFIGS_PATH, PASSIVBOT_PATH, logger -from typing import Dict, List, Union -from instance import Instance -from os import path - - -class ConfigParserVersion: - def __init__(self, config: Dict, settings: Dict) -> None: - self.config = config - self.config_settings = settings - self.defaults = None - self.system_paths_cache = {} - - def get_config(self) -> Dict: - return self.config - - def get_config_settings(self) -> Dict: - return self.config_settings - - def get_config_available_arguments(self) -> List[Dict]: - return self.get_config_settings().get("arguments") - - def get_config_available_flags(self) -> List[Dict]: - return self.get_config_settings().get("flags") - - def get_defaults(self) -> Dict: - if self.defaults is None: - self.defaults = self.parse_scoped_settings( - self.get_config().get("defaults")) - - return self.defaults.copy() - - def get_instances(self) -> Dict[str, Instance]: - return {} - - def narrow_config(self, scoped_config: Dict, source=None) -> Dict: - if type(source) is not dict: - source = self.get_defaults() - - scoped_settings = self.parse_scoped_settings(scoped_config) - scoped_settings["flags"] = dict(source.get( - "flags"), **scoped_settings.get("flags")) - return dict(source, **scoped_settings) - - def try_aliases(self, config: Dict, aliases: List[str]): - if type(aliases) is not list: - return None - - for alias in aliases: - if config.get(alias) is not None: - return config.get(alias) - - return None - - def validate_path(self, file_path: str, absolute_prepend: str) -> Union[str, None]: - if file_path is None or file_path == "": - return None - - existing = self.system_paths_cache.get(file_path) - if existing is not None: - return existing - - full_config_path = path.join(absolute_prepend, file_path) - check_in = { - full_config_path: file_path, - file_path: file_path - } - - for full_path, partial_path in check_in.items(): - if path.exists(full_path): - self.system_paths_cache[full_path] = full_path - self.system_paths_cache[partial_path] = full_path - return full_config_path - - return None - - def parse_scoped_settings(self, scoped_config: Dict) -> Dict: - config = { - "flags": {} - } - - for arg in self.get_config_available_arguments(): - value = self.try_aliases(scoped_config, arg.get("aliases")) - if value is not None: - config[arg.get("name")] = value - - for flag in self.get_config_available_flags(): - value = self.try_aliases(scoped_config, flag.get("aliases")) - if value is not None: - config["flags"][flag.get("flag")] = value - - return config - - def generate_instance(self, config: Dict) -> Instance: - config = config.copy() - - full_config_path = self.validate_path( - config.get("config"), CONFIGS_PATH) - if full_config_path is None: - logger.error( - f"{config.get('user')}-{config.get('symbol')}: config does not exist") - else: - config["config"] = full_config_path - - full_api_keys_path = self.validate_path( - config.get("flags").get("api_keys"), PASSIVBOT_PATH) - if full_config_path is not None: - config["api_keys"] = full_api_keys_path - - return Instance(config) diff --git a/manager/config/v1.py b/manager/config/v1.py deleted file mode 100644 index 1dfb45871..000000000 --- a/manager/config/v1.py +++ /dev/null @@ -1,63 +0,0 @@ -from .v import ConfigParserVersion -from instance import Instance -from typing import Dict, List - - -class ConfigParserV1(ConfigParserVersion): - def __init__(self, config: Dict, settings: Dict) -> None: - super().__init__(config, settings) - - def get_instances(self) -> Dict[str, Instance]: - result = {} - for user in self.get_config().get("instances", []): - result.update(self.parse_user(user)) - - return result - - def parse_user(self, user_config: Dict) -> Dict[str, Instance]: - if type(user_config) is not dict: - return {} - - config = self.narrow_config(user_config) - config = self.make_backwards_compatible(config) - config["user"] = user_config.get("user") - - instances = {} - symbols = user_config.get("symbols") - instances.update(self.parse_symbols(symbols, config)) - return instances - - def parse_symbols(self, symbols: List, user_config: Dict) -> Dict[str, Instance]: - instances = {} - for symbol in symbols: - config = user_config.copy() - config["symbol"] = symbol - instance = self.generate_instance(config) - instances[instance.get_id()] = instance - - return instances - - def make_backwards_compatible(self, config: Dict) -> Dict: - def not_zero(v): return v > 0.0 - rules = { - "-m": lambda v: v != "futures", - "-lm": lambda v: v != "n", - "-sm": lambda v: v != "m", - "-lw": not_zero, - "-sw": not_zero, - "-ab": not_zero, - "-lmm": not_zero, - "-lmr": not_zero, - "-smm": not_zero, - "-smr": not_zero, - } - - flags = {} - for key, value in config.get("flags").items(): - rule = rules.get(key) - if rule is not None and rule(value): - flags[key] = value - - config["flags"] = flags - - return config diff --git a/manager/config/v2.py b/manager/config/v2.py deleted file mode 100644 index 4a035149a..000000000 --- a/manager/config/v2.py +++ /dev/null @@ -1,65 +0,0 @@ -from .v import ConfigParserVersion -from typing import Dict, List -from instance import Instance - - -class ConfigParserV2(ConfigParserVersion): - def __init__(self, config: Dict, settings: Dict) -> None: - super().__init__(config, settings) - - def get_instances(self) -> Dict[str, Instance]: - result = {} - for user in self.get_config().get("instances", []): - result.update(self.parse_user(user)) - - return result - - def parse_user(self, user_config: Dict) -> Dict[str, Instance]: - if type(user_config) is not dict: - return {} - - config = self.narrow_config(user_config) - config["user"] = user_config.get("user") - - instances = {} - symbols = user_config.get("symbols") - instances.update(self.parse_symbols(symbols, config)) - return instances - - def parse_symbols(self, symbols: List, user_config: Dict) -> Dict[str, Instance]: - symbols_type = type(symbols) - if symbols_type is list: - return self.parse_symbols_list(symbols, user_config) - - if symbols_type is dict: - return self.parse_symbols_dict(symbols, user_config) - - return {} - - def parse_symbols_list(self, symbols: List, user_config: Dict) -> Dict[str, Instance]: - instances = {} - for symbol in symbols: - config = user_config.copy() - config["symbol"] = symbol - instance = self.generate_instance(config) - instances[instance.get_id()] = instance - - return instances - - def parse_symbols_dict(self, symbols: Dict, user_config: Dict) -> Dict[str, Instance]: - instances = {} - for symbol, scoped_config in symbols.items(): - config = user_config.copy() - - scoped_config_type = type(scoped_config) - if scoped_config_type is str: - config["config"] = scoped_config - - elif scoped_config_type is dict: - config.update(self.narrow_config(scoped_config, config)) - - config["symbol"] = symbol - instance = self.generate_instance(config) - instances[instance.get_id()] = instance - - return instances diff --git a/manager/constants.py b/manager/constants.py deleted file mode 100644 index 77daeef15..000000000 --- a/manager/constants.py +++ /dev/null @@ -1,40 +0,0 @@ -from getpass import getuser -import logging -import sys -import os - - -logger = logging -logger.basicConfig(stream=sys.stdout, level=logging.INFO, - format="%(message)s") - - -def get_python_executable(): - if sys.version_info[0] == 3: - return "python3" - return None - - -PYTHON_EXC_ALIAS = get_python_executable() -if PYTHON_EXC_ALIAS is None: - logging.error("Unsupported python version") - sys.exit(1) - - -MANAGER_PATH = os.path.dirname(os.path.abspath(__file__)) -MANAGER_CONFIG_PATH = os.path.join(MANAGER_PATH, "config.yaml") -MANAGER_CONFIG_SETTINGS_PATH = os.path.join( - MANAGER_PATH, "config.settings.yaml") - -PASSIVBOT_PATH = os.path.dirname(MANAGER_PATH) -USER = getuser() -if USER == "root": - logging.error("Do not run this script as root") - sys.exit(1) - -# relative to passivbot.py -CONFIGS_PATH = os.path.join(PASSIVBOT_PATH, "configs/live") -SERVICES_PATH = "/etc/systemd/system" - -INSTANCE_SIGNATURE_BASE = [PYTHON_EXC_ALIAS, "-u", - os.path.join(PASSIVBOT_PATH, "passivbot.py")] diff --git a/manager/instance.py b/manager/instance.py deleted file mode 100644 index c1b2f7632..000000000 --- a/manager/instance.py +++ /dev/null @@ -1,163 +0,0 @@ -from constants import INSTANCE_SIGNATURE_BASE, PASSIVBOT_PATH -from typing import Dict, List, Any -from pm import ProcessManager -import os - - -class Instance: - def __init__(self, config: Dict): - self.user = config.get("user") - self.symbol = config.get("symbol") - self.config = config.get("config") - - self.flags = config.get("flags", {}) - - self.is_in_config_ = bool(config.get("is_in_config", True)) - self.is_running_ = None - self.pid_ = None - - def get_args(self) -> List[str]: - return [self.user, self.symbol, self.config] - - def get_flags(self) -> List[str]: - flags = [] - for k, v in self.flags.items(): - if v is not None: - flags.extend([k, str(v)]) - - return flags - - def get_id(self) -> str: - return f"{self.get_user()}-{self.get_symbol()}" - - def get_symbol(self) -> str: - return self.symbol - - def get_user(self) -> str: - return self.user - - def get_config(self) -> str: - return self.config - - def get_pid_signature(self) -> str: - signature = INSTANCE_SIGNATURE_BASE.copy() - signature.extend([self.user, self.symbol]) - return f"^{' '.join(signature)}" - - def get_pid(self) -> int: - if self.pid_ is None: - self.pid_ = ProcessManager.get_pid(self.get_pid_signature()) - - return self.pid_ - - def get_pid_str(self) -> str: - pid = self.get_pid() - return str(pid) if pid is not None else "-" - - def get_cmd(self) -> List[str]: - cmd = INSTANCE_SIGNATURE_BASE.copy() - cmd.extend(self.get_args()) - cmd.extend(self.get_flags()) - return cmd - - def get_status(self) -> str: - return "running" if self.is_running() else "stopped" - - def is_running(self) -> bool: - if self.is_running_ is None: - self.is_running_ = ProcessManager.is_running( - self.get_pid_signature()) - - return self.is_running_ - - def is_in_config(self, value=None) -> bool: - if value is not None: - self.is_in_config_ = bool(value) - - return self.is_in_config_ - - def match(self, query: List[str], exact: bool = False) -> bool: - parameters = { - "id": self.get_id(), - "pid": self.get_pid_str(), - "symbol": self.get_symbol(), - "user": self.get_user(), - "status": self.get_status(), - } - - if not exact: - parameters = {k: v.lower() for k, v in parameters.items()} - query = [q.lower() for q in query] - - matches = 0 - for condition in query: - if "=" in condition: - k, v = condition.split("=") - if k in parameters and parameters[k].startswith(v): - matches += 1 - continue - - if any(condition in v for v in parameters.values()): - matches += 1 - - return matches == len(query) - - def apply_flags(self, flags: Dict[str, Any]): - if flags is None: - return - - for key, value in flags.items(): - self.flags[key] = value - - # ---------------------------------------------------------------------------- # - # state methods # - # ---------------------------------------------------------------------------- # - - def reset_state(self): - self.is_running_ = None - self.pid_ = None - - def start(self, silent: bool = False) -> bool: - self.reset_state() - - log_file = os.path.join( - PASSIVBOT_PATH, f"logs/{self.get_user()}/{self.get_symbol()}.log") - - try: - if not os.path.exists(os.path.dirname(log_file)): - os.makedirs(os.path.dirname(log_file)) - except: - return False - - cmd = self.get_cmd() - - if silent is True: - log_file = "/dev/null" - - ProcessManager.add_nohup_process(cmd, log_file) - self.proc_id = ProcessManager.wait_pid_start(self.get_pid_signature()) - if self.proc_id is None: - return False - - return True - - def stop(self, force=False) -> bool: - self.reset_state() - if not self.is_running(): - return False - - pid = ProcessManager.get_pid(self.get_pid_signature()) - if pid is None: - return False - - ProcessManager.kill(pid, force) - return True - - def restart(self, force=False, silent=False) -> bool: - self.reset_state() - if self.is_running(): - stopped = self.stop(force) - if not stopped: - return False - - return self.start(silent) diff --git a/manager/pm.py b/manager/pm.py deleted file mode 100644 index eee3a91e1..000000000 --- a/manager/pm.py +++ /dev/null @@ -1,119 +0,0 @@ -from typing import List, Union -from constants import USER -from time import sleep -import subprocess -import os - - -class ProcessManager: - @staticmethod - def add(command: List[str]) -> int: - """ - Launch a new process with the given command. - :param command: The command to run. - :return: Error code of the add command. - """ - return os.system(" ".join(command)) - - @staticmethod - def add_nohup_process(command: List[str], log_file_path: str = None) -> int: - """ - Launch a new no hang up process with the given target script path. - :param target_script_path: The path to the target script. - :param log_file_path: The path to the log file. - :return: Error code of the add command. - - man: https://linux.die.net/man/1/nohup - """ - nohup_command = ["nohup"] - nohup_command.extend(command) - if log_file_path is not None: - nohup_command.extend([">", log_file_path, "2>&1", "&"]) - else: - nohup_command.extend([">", "/dev/null", "2>&1", "&"]) - return ProcessManager.add(nohup_command) - - @staticmethod - def get_pid(signature: str, all_matches: bool = False) -> Union[int, None, List[int]]: - """ - Use pgrep to get the process id of the process with the given query string. - :param signature: The signature to search for. - :return: The process id of the process with the given query string. - - man: https://man7.org/linux/man-pages/man1/pgrep.1.html - """ - try: - cmd = ["pgrep", "-U", USER, "-f", signature] - pids = subprocess.check_output(cmd).decode("utf-8").strip() - except subprocess.CalledProcessError: - if all_matches: - return [] - - return None - - matches = pids.split("\n") - if len(matches) == 0: - if all_matches: - return [] - - return None - - if all_matches: - return [int(pid) for pid in matches] - else: - return int(matches[0]) - - @staticmethod - def wait_pid_start(signature: str, retries: int = 5, cooldown: float = 0.5) -> Union[int, None]: - for i in range(0, retries): - pid = ProcessManager.get_pid(signature) - if pid is not None: - return pid - - sleep(cooldown) - - return None - - @staticmethod - def is_running(signature: str) -> bool: - """ - Check if the process with the given signature is running. - :param signature: The signature to check. - :return: True if the process with the given signature is running. - """ - return ProcessManager.get_pid(signature) is not None - - @staticmethod - def info(pid: int) -> str: - """ - Get the info of the process with the given pid. - :param pid: The process id of the process to get the info of. - :return: The info of the process with the given pid. - """ - cmd = ["ps", "-p", str(pid), "-o", "args="] - try: - return subprocess.check_output(cmd).decode("utf-8").strip() - except subprocess.CalledProcessError: - return None - - @staticmethod - def kill(pid: int, force: bool = False, max_retries: int = -1) -> bool: - """ - Kill the process with the given pid. - :param pid: The process id of the process to kill. - :param force: If True, kill the process with the given pid with SIGKILL. - :return: The error code of the kill command. - """ - cmd = ["kill"] - if force: - cmd.append("-9") - - cmd.append(str(pid)) - os.system(" ".join(cmd)) - while ProcessManager.info(pid) is not None: - sleep(0.15) - max_retries -= 1 - if max_retries == 0: - return False - - return True diff --git a/mkdocs.yml b/mkdocs.yml index 001a7316e..d16e2deb7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -4,20 +4,11 @@ repo_url: https://github.com/enarjord/passivbot use_directory_urls: True docs_dir: docs nav: - - Home: index.md - - How it works: how-it-works.md - - Installation: installation.md + - Home: README.md - Configuration: configuration.md - Running live: live.md - Backtesting: backtesting.md - - Optimizer: optimize.md - - Tuning by hand: handtuning.md - - Auto Profit Transfer Script: auto_profit_transfer.md - - Auto Unstuck: auto_unstuck.md - - Live Bot Manager: manager.md - - Different Passivbot Modes: passivbot_modes.md - - First-time users: walkthrough.md - - Developers: developers.md + - Optimizing: optimizing.md theme: name: material logo: 'images/logo.png' diff --git a/notebooks/notebook_setup.py b/notebooks/notebook_setup.py new file mode 100644 index 000000000..bf22fc729 --- /dev/null +++ b/notebooks/notebook_setup.py @@ -0,0 +1,15 @@ +import os +import sys + +# Change to the project root directory +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) +os.chdir(project_root) + +# Add the project root and src directories to Python's path +if project_root not in sys.path: + sys.path.insert(0, project_root) +if os.path.join(project_root, "src") not in sys.path: + sys.path.insert(0, os.path.join(project_root, "src")) + +print(f"Working directory set to: {os.getcwd()}") +print(f"Python path: {sys.path}") diff --git a/notebooks/notes_backtest.ipynb b/notebooks/notes_backtest.ipynb new file mode 100644 index 000000000..e38df4e9a --- /dev/null +++ b/notebooks/notes_backtest.ipynb @@ -0,0 +1,160 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "6a925c67-ca70-4352-a481-ab08a57122f9", + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2\n", + "%run notebook_setup.py" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c351e684-c495-465a-bfde-7e03888aff15", + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "import os\n", + "from backtest import *" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "97f846a3-874c-48f4-93d8-829edc0b4bce", + "metadata": {}, + "outputs": [], + "source": [ + "config = load_config('configs/template.json')\n", + "{k: config[k] for k in ['backtest', 'bot', 'live']}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4b7b1beb-b661-4871-9750-687d8eeafd3f", + "metadata": {}, + "outputs": [], + "source": [ + "config['backtest']['symbols'] = config['backtest']['symbols'][:30]\n", + "symbols = config['backtest']['symbols']\n", + "symbols, hlcvs, mss, results_path = await prepare_hlcvs_mss(config)\n", + "hlcs = hlcvs[:,:,:3]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "896e5b9f-e71f-4abb-b33d-085065fbd3eb", + "metadata": {}, + "outputs": [], + "source": [ + "#config['live']['relative_volume_filter_clip_pct'] = 0.5\n", + "preferred_coins = calc_preferred_coins(hlcvs, config)\n", + "preferred_coins.shape" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef8d0f05-37ab-4a56-ab17-07a3cd0d70b7", + "metadata": {}, + "outputs": [], + "source": [ + "fills, equities, analysis = run_backtest(hlcs, preferred_coins, mss, config)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b3ce4490-63ad-4e1f-8477-d188cc058fa4", + "metadata": {}, + "outputs": [], + "source": [ + "sts = utc_ms()\n", + "fdf = process_forager_fills(fills)\n", + "print(f'elapsed {utc_ms() - sts}')\n", + "sts = utc_ms()\n", + "equities = pd.Series(equities)\n", + "analysis_py, balance_and_equity = analyze_fills_forager(config['backtest']['symbols'], hlcs, fdf, equities)\n", + "for k in analysis_py:\n", + " if k not in analysis:\n", + " analysis[k] = analysis_py[k]\n", + "print(f'elapsed {utc_ms() - sts}')\n", + "pprint.pprint(analysis)\n", + "balance_and_equity.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7aa52402-c254-4ffa-8393-cef7f9428b1c", + "metadata": {}, + "outputs": [], + "source": [ + "syms_sorted_by_volume = fdf.groupby('symbol').fee_paid.sum().sort_values().index.to_list()\n", + "for i, symbol in enumerate(syms_sorted_by_volume[:5]):\n", + " print(f\"Plotting fills for {symbol}\")\n", + " hlcs_df = pd.DataFrame(hlcs[:, symbols.index(symbol), :], columns=[\"high\", \"low\", \"close\"])\n", + " fdfc = fdf[fdf.symbol == symbol]\n", + " plt.clf()\n", + " plot_fills_forager(fdfc, hlcs_df)\n", + " plt.title(f\"Fills {symbol}\")\n", + " plt.xlabel = \"time\"\n", + " plt.ylabel = \"price\"\n", + " plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9f424466-4fd1-4e87-a7fe-c33f29e9f435", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "55019c75-93fc-459b-9a7d-4fd3a1f0d18a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "65367064-6d79-47ca-93e0-94f5b8067518", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python (venv)", + "language": "python", + "name": "venv" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.18" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notes_multisymbol_backtest.ipynb b/notes_multisymbol_backtest.ipynb deleted file mode 100644 index f7298db97..000000000 --- a/notes_multisymbol_backtest.ipynb +++ /dev/null @@ -1,507 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "id": "4b8f94ee-5f04-430e-adc4-2024f41fa7ab", - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "83bef78e-9790-496c-9ba0-41c5a9e7e271", - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "\n", - "# uncomment to disable numba\n", - "# os.environ['NOJIT'] = 'true'\n", - "\n", - "import matplotlib.pyplot as plt\n", - "import pandas as pd\n", - "import numpy as np\n", - "import json\n", - "import pprint\n", - "from njit_multisymbol import *\n", - "from procedures import utc_ms, load_live_config, fetch_market_specific_settings, make_get_filepath\n", - "from pure_funcs import (\n", - " date_to_ts2,\n", - " ts_to_date_utc,\n", - " tuplify,\n", - " numpyize,\n", - " stats_multi_to_df,\n", - " fills_multi_to_df,\n", - " calc_drawdowns,\n", - " calc_sharpe_ratio,\n", - " analyze_fills_multi,\n", - " live_config_dict_to_list_recursive_grid,\n", - ")\n", - "from njit_funcs import round_dynamic\n", - "from plotting import plot_fills_multi, plot_pnls_long_short, plot_pnls_separate, plot_pnls_stuck\n", - "from numba import njit\n", - "from downloader import load_hlc_cache, prepare_multsymbol_data\n", - "from backtest_multi import prep_hlcs_mss_config, prep_config_multi, args2config" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "48c3f7cb-d0d4-4690-b6e1-1cdf708ec836", - "metadata": {}, - "outputs": [], - "source": [ - "plt.rcParams[\"figure.figsize\"] = [24, 13.5]\n", - "plt.rcParams[\"figure.facecolor\"] = \"w\"\n", - "pd.set_option(\"display.precision\", 10)" - ] - }, - { - "cell_type": "markdown", - "id": "febb9a6b-3aa5-4910-9e92-6e9ea722492b", - "metadata": {}, - "source": [ - "### multi symbol backtest with lossless auto unstuck\n", - "\n", - "- if a position is stuck, bot will use profits made on other markets to realize losses for the stuck position\n", - "- if multiple positions are stuck, select the stuck pos whose price action distance is the lowest\n", - "- each live config's individual auto unstuck is disabled" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "27c24a78-1e60-439d-b150-daa358c1d9dc", - "metadata": {}, - "outputs": [], - "source": [ - "cfg = {\n", - " \"global\": {\n", - " \"TWE_long\": 1.9628217193346074,\n", - " \"TWE_short\": 8.873613532492868,\n", - " \"loss_allowance_pct\": 0.007057868173311633,\n", - " \"stuck_threshold\": 0.8214753608753934,\n", - " \"unstuck_close_pct\": 0.0011074274412150183,\n", - " },\n", - " \"long\": {\n", - " \"ddown_factor\": 1.3552241067565591,\n", - " \"ema_span_0\": 1251.5875524266064,\n", - " \"ema_span_1\": 604.1687419843032,\n", - " \"enabled\": True,\n", - " \"initial_eprice_ema_dist\": -0.020367702184693325,\n", - " \"initial_qty_pct\": 0.013372380921445446,\n", - " \"markup_range\": 0.003390533528629384,\n", - " \"min_markup\": 0.005905020194249954,\n", - " \"n_close_orders\": 2.1233372580530903,\n", - " \"rentry_pprice_dist\": 0.049046697381191565,\n", - " \"rentry_pprice_dist_wallet_exposure_weighting\": 0.5612700282178685,\n", - " \"wallet_exposure_limit\": 0.39256434386692146,\n", - " },\n", - " \"short\": {\n", - " \"ddown_factor\": 0.3907245872883093,\n", - " \"ema_span_0\": 1103.2107410642989,\n", - " \"ema_span_1\": 1370.6087776402064,\n", - " \"enabled\": False,\n", - " \"initial_eprice_ema_dist\": 0.0017511634241226537,\n", - " \"initial_qty_pct\": 0.044680299514502905,\n", - " \"markup_range\": 0.0017555611262703857,\n", - " \"min_markup\": 0.007697306221784713,\n", - " \"n_close_orders\": 12.949796081895949,\n", - " \"rentry_pprice_dist\": 0.02703134258902625,\n", - " \"rentry_pprice_dist_wallet_exposure_weighting\": 2.4981211753897754,\n", - " \"wallet_exposure_limit\": 1.7747227064985736,\n", - " },\n", - "}\n", - "starting_balance = 1000000\n", - "symbols = [\"BALUSDT\", \"BANDUSDT\", \"CELRUSDT\", \"OMGUSDT\", \"SKLUSDT\"]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "b145c92f-de5b-41a8-b7ab-0a6606bea9a0", - "metadata": {}, - "outputs": [], - "source": [ - "class Args:\n", - " def __init__(self):\n", - " self.symbols = symbols\n", - " self.symbols = {s: \"\" for s in self.symbols}\n", - " self.user = \"binance_01\"\n", - " self.start_date = \"2021-05-01\"\n", - " self.end_date = \"now\"\n", - " self.starting_balance = starting_balance\n", - " self.long_enabled = cfg[\"long\"][\"enabled\"]\n", - " self.short_enabled = cfg[\"short\"][\"enabled\"]\n", - " self.TWE_long = cfg[\"global\"][\"TWE_long\"]\n", - " self.TWE_short = cfg[\"global\"][\"TWE_short\"]\n", - "\n", - "\n", - "args = Args()\n", - "config = args2config(args)\n", - "config[\"base_dir\"] = \"backtests\"\n", - "config[\"exchange\"] = \"binance\"\n", - "config[\"symbols\"] = tuple(sorted(set(config[\"symbols\"])))\n", - "hlcs, mss, config = await prep_hlcs_mss_config(config)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "64df6915-9365-4b18-800d-8d9dfd866df9", - "metadata": {}, - "outputs": [], - "source": [ - "symbols = tuple(sorted(set(config[\"symbols\"])))\n", - "\n", - "# specify live configs for each symbol. Use a single live config, or load separately for each symbol.\n", - "# live_configs = {symbol: load_live_config(f\"configs/live/multisymbol/no_AU/{symbol}.json\") for symbol in symbols}\n", - "live_configs = {symbol: cfg for symbol in symbols}\n", - "for s in live_configs:\n", - " live_configs[s][\"long\"][\"wallet_exposure_limit\"] = cfg[\"global\"][\"TWE_long\"] / len(symbols)\n", - " live_configs[s][\"short\"][\"wallet_exposure_limit\"] = cfg[\"global\"][\"TWE_short\"] / len(symbols)\n", - "live_configs_np = numpyize(\n", - " [live_config_dict_to_list_recursive_grid(live_configs[s]) for s in symbols]\n", - ")\n", - "\n", - "do_longs = tuplify([cfg[\"long\"][\"enabled\"] for s in config[\"symbols\"]])\n", - "do_shorts = tuplify([cfg[\"short\"][\"enabled\"] for s in config[\"symbols\"]])\n", - "qty_steps = tuplify([mss[symbol][\"qty_step\"] for symbol in config[\"symbols\"]])\n", - "price_steps = tuplify([mss[symbol][\"price_step\"] for symbol in config[\"symbols\"]])\n", - "min_costs = tuplify([mss[symbol][\"min_cost\"] for symbol in config[\"symbols\"]])\n", - "min_qtys = tuplify([mss[symbol][\"min_qty\"] for symbol in config[\"symbols\"]])\n", - "c_mults = tuplify([mss[symbol][\"c_mult\"] for symbol in config[\"symbols\"]])\n", - "maker_fee = next(iter(mss.values()))[\"maker\"]\n", - "starting_balance = config[\"starting_balance\"]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9c33fb11-4bbb-4b8b-830a-a0be61a971bb", - "metadata": {}, - "outputs": [], - "source": [ - "hlcs_clipped = hlcs # [:,0:60000] # to backtest on subset on data\n", - "# will compile JIT on the first run, then be faster on subsequent runs\n", - "sts = utc_ms()\n", - "res = backtest_multisymbol_recursive_grid(\n", - " hlcs_clipped,\n", - " starting_balance,\n", - " maker_fee,\n", - " do_longs,\n", - " do_shorts,\n", - " c_mults,\n", - " symbols,\n", - " qty_steps,\n", - " price_steps,\n", - " min_costs,\n", - " min_qtys,\n", - " live_configs_np,\n", - " cfg[\"global\"][\"loss_allowance_pct\"],\n", - " cfg[\"global\"][\"stuck_threshold\"],\n", - " cfg[\"global\"][\"unstuck_close_pct\"],\n", - ")\n", - "print(f\"time elapsed for backtest {(utc_ms() - sts) / 1000:.6f}s\")\n", - "fills, stats = res" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d0e11000-61c4-4bdb-8a90-6f14f11bca25", - "metadata": {}, - "outputs": [], - "source": [ - "sts = utc_ms()\n", - "fdf = fills_multi_to_df(fills, symbols, c_mults)\n", - "sdf = stats_multi_to_df(stats, symbols, c_mults)\n", - "print(f\"time elapsed for analysis {(utc_ms() - sts) / 1000:.6f}s\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c04f913b-1a34-4c4b-84fe-2e3ebe93493a", - "metadata": {}, - "outputs": [], - "source": [ - "params = {\"TWE_long\": cfg[\"global\"][\"TWE_long\"], \"TWE_short\": cfg[\"global\"][\"TWE_short\"]}\n", - "params = cfg[\"global\"]\n", - "analysis = analyze_fills_multi(sdf, fdf, params)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c9c0f4cd-930d-412e-896e-f3ec3111c1b3", - "metadata": {}, - "outputs": [], - "source": [ - "mkl = max([len(k) for k in analysis])\n", - "for k, v in analysis.items():\n", - " if isinstance(v, dict):\n", - " continue\n", - " mkls = max([len(s) for s in v])\n", - " for symbol in v:\n", - " mkl1 = max([len(k) for k in v[symbol]])\n", - " for k1, v1 in v[symbol].items():\n", - " print(f\" {symbol: <{mkls}} {k1: <{mkl1}} {round_dynamic(v1, 6)}\")\n", - " print()\n", - " else:\n", - " print(f\"{k: <{mkl}} {round_dynamic(v, 6)}\")\n", - "adf = pd.DataFrame({k: v for k, v in analysis[\"individual_analyses\"].items()})\n", - "adf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d19f2af8-8c79-4066-b27d-43667f174a61", - "metadata": {}, - "outputs": [], - "source": [ - "if not adf.T.upnl_pct_min_long.isna().all():\n", - " print(\"upnl pct min long\")\n", - " print(adf.T.upnl_pct_min_long.sort_values())\n", - " print()\n", - "if not adf.T.upnl_pct_min_short.isna().all():\n", - " print(\"upnl pct min short\")\n", - " print(adf.T.upnl_pct_min_short.sort_values())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "08b8fd86-00bf-49ad-957f-3a03e8cfb101", - "metadata": {}, - "outputs": [], - "source": [ - "if not (adf.T.loss_profit_ratio_long == 1.0).all():\n", - " print(\"loss_profit_ratio_long\")\n", - " print(adf.T.loss_profit_ratio_long.sort_values(ascending=False))\n", - " print()\n", - "if not (adf.T.loss_profit_ratio_short == 1.0).all():\n", - " print(\"loss_profit_ratio_short\")\n", - " print(adf.T.loss_profit_ratio_short.sort_values(ascending=False))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9e15b8b4-4f23-4f83-ad42-c5f609d39c00", - "metadata": {}, - "outputs": [], - "source": [ - "adf.T.pnl_ratio.sort_values()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6271c145-b321-4dd2-90a1-a182af9c106b", - "metadata": {}, - "outputs": [], - "source": [ - "# find worst performers\n", - "worsts = []\n", - "clip = 0.4\n", - "for x in [\n", - " adf.T.pnl_ratio.sort_values(),\n", - " # adf.T.loss_profit_ratio_short.sort_values(ascending=False),\n", - " adf.T.loss_profit_ratio_long.sort_values(ascending=False),\n", - " # adf.T.upnl_pct_min_short.sort_values(),\n", - " # adf.T.upnl_pct_min_long.sort_values(),\n", - "]:\n", - " worsts.append(list(dict(x.iloc[: int(len(x) * clip)])))\n", - "to_drop = [x for x in worsts[0] if all([x in w for w in worsts])]\n", - "to_drop" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8b5c7218-482c-4d83-aeb9-201233caa15c", - "metadata": {}, - "outputs": [], - "source": [ - "sdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1539d10f-3e9c-47e9-b770-2094615222bc", - "metadata": {}, - "outputs": [], - "source": [ - "fdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "88ff94bb-c813-44af-9646-e5171df994fc", - "metadata": {}, - "outputs": [], - "source": [ - "# plot drawdowns\n", - "min_multiplier = 60 * 24\n", - "drawdowns = calc_drawdowns(sdf.equity)\n", - "drawdowns_daily = drawdowns.groupby(drawdowns.index // min_multiplier * min_multiplier).min()\n", - "drawdowns_ten_worst = drawdowns_daily.sort_values().iloc[:10]\n", - "print(drawdowns_ten_worst)\n", - "drawdowns_ten_worst.plot(style=\"ro\")\n", - "drawdowns.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7e3eb28f-cfb9-4be3-9596-dd77980e3dce", - "metadata": {}, - "outputs": [], - "source": [ - "plot_pnls_stuck(sdf, fdf, start_pct=0.0, end_pct=1.0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bfb98601-253b-4bb8-86cf-87ebffa6863a", - "metadata": {}, - "outputs": [], - "source": [ - "plot_pnls_separate(sdf, fdf)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "98fb948d-dff6-47c5-b733-bc2b46d9d18c", - "metadata": {}, - "outputs": [], - "source": [ - "plot_pnls_long_short(sdf, fdf)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "71507db2-3198-449f-aaac-75f70b2b8b12", - "metadata": {}, - "outputs": [], - "source": [ - "# inspect two months before and two months after location of worst drawdown\n", - "drawdowns = calc_drawdowns(sdf.equity)\n", - "worst_drawdown_loc = drawdowns.sort_values().iloc[:1].index[0]\n", - "wdls = worst_drawdown_loc - 60 * 24 * 30 * 2\n", - "wdle = worst_drawdown_loc + 60 * 24 * 30 * 2\n", - "sdfc = sdf.loc[wdls:wdle]\n", - "sdfc.balance.plot()\n", - "sdfc.equity.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1c10cdc8-8963-4343-8321-67afc4a35b71", - "metadata": {}, - "outputs": [], - "source": [ - "# inspect for each symbol\n", - "for symbol in symbols:\n", - " print(symbol)\n", - " plot_fills_multi(symbol, sdf.loc[wdls:wdle], fdf.loc[wdls:wdle]).show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "db32cfb6-9e36-430f-ab9b-86720bfb31ba", - "metadata": {}, - "outputs": [], - "source": [ - "# inspect individual lowest drawdowns\n", - "upnl_pct_mins = sdf[[c for c in sdf.columns if \"upnl\" in c]].min().sort_values()\n", - "print(upnl_pct_mins)\n", - "print()\n", - "n = 60 * 24 * 60\n", - "upnl_pct_idxs = dict(sdf[[c for c in sdf.columns if \"upnl\" in c]].idxmin())\n", - "for sym in dict(upnl_pct_mins):\n", - " idx = upnl_pct_idxs[sym]\n", - " if np.isnan(idx):\n", - " continue\n", - " print(sym, idx)\n", - " plot_fills_multi(\n", - " sym[: sym.find(\"_\")], sdf.loc[idx - n : idx + n], fdf.loc[idx - n : idx + n]\n", - " ).show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "249dbbc9-bb6c-4ab0-8f67-98b92c106be9", - "metadata": {}, - "outputs": [], - "source": [ - "# exposures\n", - "sdf[[c for c in sdf.columns if \"WE\" in c]].sum(axis=1).plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d06c6963-f3c2-49de-b9e0-53b63c65a05f", - "metadata": {}, - "outputs": [], - "source": [ - "# find worst realized losses for each symbol\n", - "wdds = {}\n", - "mins_before_and_after = 60 * 24 * 30 * 1\n", - "for symbol in symbols:\n", - " wdd = calc_drawdowns(fdf[fdf.symbol == symbol].pnl.cumsum() + sdf.balance.iloc[0])\n", - " wdds[symbol] = [abs(wdd.min()), wdd.idxmin()]\n", - "for symbol, wdd in sorted(wdds.items(), key=lambda x: x[1][0], reverse=True):\n", - " print(symbol, f\"pct loss: {wdd[0] * 100:.2f}% n_days: {wdd[1] / (60 * 24):.2f}\")\n", - " fdfc = fdf.loc[wdd[1] - mins_before_and_after : wdd[1] + mins_before_and_after]\n", - " sdfc = sdf.loc[wdd[1] - mins_before_and_after : wdd[1] + mins_before_and_after]\n", - " plot_fills_multi(symbol, sdfc, fdfc).show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "775d12cc-fb1d-400c-bbb9-3131df23b0e4", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.16" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/optimize.py b/optimize.py deleted file mode 100644 index 6e6993ab8..000000000 --- a/optimize.py +++ /dev/null @@ -1,525 +0,0 @@ -import os - -os.environ["NOJIT"] = "false" - -from downloader import Downloader, load_hlc_cache -import argparse -import asyncio -import json -import numpy as np -import traceback -from copy import deepcopy -from backtest import backtest -from multiprocessing import Pool, shared_memory -from njit_funcs import round_dynamic -from pure_funcs import ( - analyze_fills_slim, - denumpyize, - numpyize, - make_compatible, - get_template_live_config, - ts_to_date, - ts_to_date_utc, - date_to_ts, - tuplify, - sort_dict_keys, - determine_passivbot_mode, - get_empty_analysis, - calc_scores, - analyze_fills, -) -from procedures import ( - add_argparse_args, - prepare_optimize_config, - load_live_config, - make_get_filepath, - load_exchange_key_secret_passphrase, - prepare_backtest_config, - dump_live_config, - utc_ms, -) -from time import sleep, time -import logging -import logging.config - -logging.config.dictConfig({"version": 1, "disable_existing_loggers": True}) - - -def calc_metrics_mean(analyses: dict): - """ - take list of analyses and return either min, first, max or mean for each item - """ - mins = [ - "closest_bkr_long", - "closest_bkr_short", - "eqbal_ratio_mean_of_10_worst_long", - "eqbal_ratio_mean_of_10_worst_short", - "eqbal_ratio_min_long", - "eqbal_ratio_min_short", - ] - firsts = [ - "n_days", - "exchange", - "adg_long", - "adg_per_exposure_long", - "adg_weighted_long", - "adg_weighted_per_exposure_long", - "adg_short", - "adg_per_exposure_short", - "adg_weighted_short", - "adg_weighted_per_exposure_short", - "fee_sum_long", - "fee_sum_short", - "final_balance_long", - "final_balance_short", - "final_equity_long", - "final_equity_short", - "gain_long", - "gain_short", - "loss_sum_long", - "loss_sum_short", - "n_closes_long", - "n_closes_short", - "n_days", - "n_entries_long", - "n_entries_short", - "n_fills_long", - "n_fills_short", - "n_ientries_long", - "n_ientries_short", - "n_normal_closes_long", - "n_normal_closes_short", - "n_rentries_long", - "n_rentries_short", - "n_unstuck_closes_long", - "n_unstuck_closes_short", - "n_unstuck_entries_long", - "n_unstuck_entries_short", - "net_pnl_plus_fees_long", - "net_pnl_plus_fees_short", - "pnl_sum_long", - "pnl_sum_short", - "profit_sum_long", - "profit_sum_short", - "starting_balance", - "pa_distance_1pct_worst_mean_long", - "pa_distance_1pct_worst_mean_short", - "symbol", - "volume_quote_long", - "volume_quote_short", - "drawdown_max_long", - "drawdown_max_short", - "drawdown_1pct_worst_mean_long", - "drawdown_1pct_worst_mean_short", - "sharpe_ratio_long", - "sharpe_ratio_short", - ] - maxs = [ - "hrs_stuck_max_long", - "hrs_stuck_max_short", - ] - analysis_combined = {} - for key in mins: - if key in analyses[0]: - analysis_combined[key] = min([a[key] for a in analyses]) - for key in firsts: - if key in analyses[0]: - analysis_combined[key] = analyses[0][key] - for key in maxs: - if key in analyses[0]: - analysis_combined[key] = max([a[key] for a in analyses]) - for key in analyses[0]: - if key not in analysis_combined: - try: - analysis_combined[key] = np.mean([a[key] for a in analyses]) - except: - analysis_combined[key] = analyses[0][key] - return analysis_combined - - -def backtest_wrap(config_: dict, ticks_caches: dict): - """ - loads historical data from disk, runs backtest and returns relevant metrics - """ - config = { - **{"long": deepcopy(config_["long"]), "short": deepcopy(config_["short"])}, - **{ - k: config_[k] - for k in [ - "starting_balance", - "latency_simulation_ms", - "symbol", - "market_type", - "config_no", - "adg_n_subdivisions", - "n_backtest_slices", - "slim_analysis", - ] - }, - **{k: v for k, v in config_["market_specific_settings"].items()}, - } - if config["symbol"] in ticks_caches: - ticks = ticks_caches[config["symbol"]] - else: - ticks = np.load(config_["ticks_cache_fname"]) - try: - assert "adg_n_subdivisions" in config - analyses = [] - n_slices = max(1, config["n_backtest_slices"]) - slices = [(0, len(ticks))] - if n_slices > 2: - slices += [ - ( - int(len(ticks) * (i / n_slices)), - min(len(ticks), int(len(ticks) * ((i + 2) / n_slices))), - ) - for i in range(max(1, n_slices - 1)) - ] - for ia, ib in slices: - data = ticks[ia:ib] - fills_long, fills_short, stats = backtest(config, data) - if config["slim_analysis"]: - analysis = analyze_fills_slim(fills_long, fills_short, stats, config) - else: - longs, shorts, sdf, analysis = analyze_fills(fills_long, fills_short, stats, config) - analyses.append(analysis.copy()) - analysis = calc_metrics_mean(analyses) - except Exception as e: - analysis = get_empty_analysis() - logging.error(f'error with {config["symbol"]} {e}') - logging.error("config") - traceback.print_exc() - with open(make_get_filepath("tmp/optimize_errors.txt"), "a") as f: - f.write(json.dumps([time(), "error", str(e), denumpyize(config)]) + "\n") - return analysis - - -async def main(algorithm=None): - logging.basicConfig(format="", level=os.environ.get("LOGLEVEL", "INFO")) - - parser = argparse.ArgumentParser( - prog="Optimize multi symbol", description="Optimize passivbot config multi symbol" - ) - parser.add_argument( - "-oc", - "--optimize_config", - type=str, - required=False, - dest="optimize_config_path", - default="configs/optimize/default.hjson", - help="optimize config hjson file", - ) - parser.add_argument( - "-o", - "--output_path", - type=str, - required=False, - dest="optimize_output_path", - default=None, - help="optimize results directory. Defaults to 'results_{algorithm}_{passivbot_mode}/", - ) - parser.add_argument( - "-t", - "--start", - type=str, - required=False, - dest="starting_configs", - default=None, - help="start with given live configs. single json file or dir with multiple json files", - ) - parser.add_argument( - "-i", "--iters", type=int, required=False, dest="iters", default=None, help="n optimize iters" - ) - parser.add_argument( - "-c", "--n_cpus", type=int, required=False, dest="n_cpus", default=None, help="n cpus" - ) - parser.add_argument( - "-le", - "--long", - type=str, - required=False, - dest="long_enabled", - default=None, - help="long enabled: [y/n]", - ) - parser.add_argument( - "-se", - "--short", - type=str, - required=False, - dest="short_enabled", - default=None, - help="short enabled: [y/n]", - ) - parser.add_argument( - "-pm", - "--passivbot_mode", - "--passivbot-mode", - type=str, - required=False, - dest="passivbot_mode", - default=None, - help="passivbot mode options: [r/recursive_grid, n/neat_grid, c/clock]", - ) - parser.add_argument( - "-a", - "--algo", - "--algorithm", - type=str, - required=False, - dest="algorithm", - default=None, - help="optimization algorithm options: [p/pso/particle_swarm_optimization, h/hs/harmony_search]", - ) - parser.add_argument( - "-ct", - "--clip-threshold", - "--clip_threshold", - type=float, - required=False, - dest="clip_threshold", - default=None, - help="clip_threshold (see opt config for details)", - ) - parser.add_argument( - "-ser", "--serial", help="optimize symbols singly, not multi opt", action="store_true" - ) - parser.add_argument( - "-sm", - "--skip_multicoin", - "--skip-multicoin", - type=str, - required=False, - dest="skip_multicoin", - default=None, - help="y/n when using --start dir/, skip multicoin configs (see opt config for details)", - ) - parser.add_argument( - "-ss", - "--skip_singlecoin", - "--skip-singlecoin", - type=str, - required=False, - dest="skip_singlecoin", - default=None, - help="y/n when using --start dir/, skip single coin configs (see opt config for details)", - ) - parser.add_argument( - "-sns", - "--skip_non_matching_single_coin", - "--skip-non-matching-single-coin", - type=str, - required=False, - dest="skip_non_matching_single_coin", - default=None, - help="y/n when using --start dir/, skip configs of other symbols (see opt config for details)", - ) - parser.add_argument( - "-sms", - "--skip_matching_single_coin", - "--skip-matching-single-coin", - type=str, - required=False, - dest="skip_matching_single_coin", - default=None, - help="y/n when using --start dir/, skip configs of same symbol (see opt config for details)", - ) - parser = add_argparse_args(parser) - args = parser.parse_args() - config = prepare_optimize_config(args) - args = parser.parse_args() - pool = Pool(processes=config["n_cpus"]) - if algorithm is not None: - args.algorithm = algorithm - if args.serial: - all_symbols = config["symbols"].copy() - print(f"running single coin optimizations serially for symbols {all_symbols}") - for symbol in all_symbols: - args.symbols = symbol - config = prepare_optimize_config(args) - config["pool"] = pool - await run_opt(args, config) - else: - config["pool"] = pool - await run_opt(args, config) - - -async def run_opt(args, config): - try: - config.update(get_template_live_config(config["passivbot_mode"])) - config["long"]["backwards_tp"] = config["backwards_tp_long"] - config["short"]["backwards_tp"] = config["backwards_tp_short"] - config["exchange"] = load_exchange_key_secret_passphrase(config["user"])[0] - if args.long_enabled is None: - config["long"]["enabled"] = config["do_long"] - else: - if "y" in args.long_enabled.lower(): - config["long"]["enabled"] = config["do_long"] = True - elif "n" in args.long_enabled.lower(): - config["long"]["enabled"] = config["do_long"] = False - else: - raise Exception("please specify y/n with kwarg -le/--long") - if args.short_enabled is None: - config["short"]["enabled"] = config["do_short"] - else: - if "y" in args.short_enabled.lower(): - config["short"]["enabled"] = config["do_short"] = True - elif "n" in args.short_enabled.lower(): - config["short"]["enabled"] = config["do_short"] = False - else: - raise Exception("please specify y/n with kwarg -le/--short") - if args.symbols is not None: - config["symbols"] = args.symbols.split(",") - if args.n_cpus is not None: - config["n_cpus"] = args.n_cpus - if args.base_dir is not None: - config["base_dir"] = args.base_dir - if config["passivbot_mode"] == "clock": - config["ohlcv"] = True - print() - lines = [ - (k, config[k]) - for k in config - if any(isinstance(config[k], type_) for type_ in [str, float, int]) - ] - for line in lines: - logging.info(f"{line[0]: <{max([len(x[0]) for x in lines]) + 2}} {line[1]}") - print() - - # download ticks .npy file if missing - if config["ohlcv"]: - cache_fname = f"{config['start_date']}_{config['end_date']}_ohlcv_cache.npy" - else: - cache_fname = f"{config['start_date']}_{config['end_date']}_ticks_cache.npy" - exchange_name = config["exchange"] + ("_spot" if config["market_type"] == "spot" else "") - config["symbols"] = sorted(config["symbols"]) - config["ticks_caches"] = {} - config["shared_memories"] = {} - for symbol in config["symbols"]: - cache_dirpath = os.path.join(config["base_dir"], exchange_name, symbol, "caches", "") - # if config["ohlcv"] or ( - if not os.path.exists(cache_dirpath + cache_fname) or not os.path.exists( - cache_dirpath + "market_specific_settings.json" - ): - logging.info(f"fetching data {symbol}") - args.symbols = symbol - tmp_cfg = prepare_backtest_config(args) - if config["ohlcv"]: - data = await load_hlc_cache( - symbol, - tmp_cfg["inverse"], - tmp_cfg["start_date"], - config["end_date"], - base_dir=config["base_dir"], - spot=tmp_cfg["spot"], - exchange=tmp_cfg["exchange"], - ) - """ - config["shared_memories"][symbol] = shared_memory.SharedMemory( - create=True, size=data.nbytes - ) - config["ticks_caches"][symbol] = np.ndarray( - data.shape, dtype=data.dtype, buffer=config["shared_memories"][symbol].buf - ) - config["ticks_caches"][symbol][:] = data[:] - """ - else: - downloader = Downloader({**config, **tmp_cfg}) - await downloader.get_sampled_ticks() - - # prepare starting configs - cfgs = [] - if args.starting_configs is not None: - if os.path.exists(args.starting_configs): - if os.path.isdir(args.starting_configs): - # a directory was passed as starting config - fnames = [f for f in os.listdir(args.starting_configs) if f.endswith(".json")] - - if "skip_multicoin" in config["starting_configs_filtering_conditions"]: - fnames = [f for f in fnames if "symbols" not in f] - if "skip_singlecoin" in config["starting_configs_filtering_conditions"]: - fnames = [f for f in fnames if "symbols" in f] - if ( - "skip_non_matching_single_coin" - in config["starting_configs_filtering_conditions"] - ): - fnames = [f for f in fnames if "symbols" in f or config["symbols"][0] in f] - if "skip_matching_single_coin" in config["starting_configs_filtering_conditions"]: - fnames = [ - f for f in fnames if "symbols" in f or config["symbols"][0] not in f - ] - - for fname in fnames: - try: - cfg = load_live_config(os.path.join(args.starting_configs, fname)) - assert ( - determine_passivbot_mode(cfg) == config["passivbot_mode"] - ), "wrong passivbot mode" - cfgs.append(cfg) - logging.info(f"successfully loaded config {fname}") - - except Exception as e: - logging.error(f"error loading config {fname}: {e}") - elif args.starting_configs.endswith(".json"): - hm_load_failed = True - if "hm_" in args.starting_configs: - try: - hm = json.load(open(args.starting_configs)) - for k in hm: - cfg = { - "long": hm[k]["long"]["config"], - "short": hm[k]["short"]["config"], - } - cfg = sort_dict_keys(numpyize(make_compatible(cfg))) - assert ( - determine_passivbot_mode(cfg) == config["passivbot_mode"] - ), "wrong passivbot mode in harmony memory" - cfgs.append(cfg) - logging.info(f"loaded harmony memory {args.starting_configs}") - hm_load_failed = False - except Exception as e: - logging.error( - f"error loading harmony memory {args.starting_configs}: {e}" - ) - if hm_load_failed: - try: - cfg = load_live_config(args.starting_configs) - assert ( - determine_passivbot_mode(cfg) == config["passivbot_mode"] - ), "wrong passivbot mode" - cfgs.append(cfg) - logging.info(f"successfully loaded config {args.starting_configs}") - except Exception as e: - logging.error(f"error loading config {args.starting_configs}: {e}") - - config["starting_configs"] = cfgs - config["keys_to_include"] = [ - "starting_balance", - "latency_simulation_ms", - "market_type", - "adg_n_subdivisions", - "n_backtest_slices", - "slim_analysis", - ] - - if config["algorithm"] == "particle_swarm_optimization": - from particle_swarm_optimization import ParticleSwarmOptimization - - particle_swarm_optimization = ParticleSwarmOptimization( - config, backtest_wrap, config["pool"] - ) - particle_swarm_optimization.run() - elif config["algorithm"] == "harmony_search": - from harmony_search import HarmonySearch - - harmony_search = HarmonySearch(config, backtest_wrap, config["pool"]) - harmony_search.run() - finally: - if "shared_memories" in config: - for symbol in config["shared_memories"]: - config["shared_memories"][symbol].close() - config["shared_memories"][symbol].unlink() - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/optimize_multi.py b/optimize_multi.py deleted file mode 100644 index eee4864df..000000000 --- a/optimize_multi.py +++ /dev/null @@ -1,606 +0,0 @@ -import asyncio -import random -import multiprocessing -import pprint -import numpy as np -import pandas as pd -import json -import logging -import argparse -import signal -import sys -import traceback -import os -from deap import base, creator, tools, algorithms -from procedures import utc_ms, make_get_filepath, load_hjson_config -from multiprocessing import shared_memory -from copy import deepcopy - -from pure_funcs import ( - live_config_dict_to_list_recursive_grid, - numpyize, - calc_drawdowns, - ts_to_date_utc, - denumpyize, - tuplify, - calc_hash, - symbol2coin, -) -from backtest_multi import backtest_multi, prep_config_multi, prep_hlcs_mss_config -from njit_multisymbol import backtest_multisymbol_recursive_grid - - -def mutPolynomialBoundedWrapper(individual, eta, low, up, indpb): - """ - A wrapper around DEAP's mutPolynomialBounded function to pre-process - bounds and handle the case where lower and upper bounds may be equal. - - Args: - individual: Sequence individual to be mutated. - eta: Crowding degree of the mutation. - low: A value or sequence of values that is the lower bound of the search space. - up: A value or sequence of values that is the upper bound of the search space. - indpb: Independent probability for each attribute to be mutated. - - Returns: - A tuple of one individual, mutated with consideration for equal lower and upper bounds. - """ - # Convert low and up to numpy arrays for easier manipulation - low_array = np.array(low) - up_array = np.array(up) - - # Identify dimensions where lower and upper bounds are equal - equal_bounds_mask = low_array == up_array - - # Temporarily adjust bounds for those dimensions - # This adjustment is arbitrary and won't affect the outcome since the mutation - # won't be effective in these dimensions - temp_low = np.where(equal_bounds_mask, low_array - 1e-6, low_array) - temp_up = np.where(equal_bounds_mask, up_array + 1e-6, up_array) - - # Call the original mutPolynomialBounded function with the temporarily adjusted bounds - tools.mutPolynomialBounded(individual, eta, list(temp_low), list(temp_up), indpb) - - # Reset values in dimensions with originally equal bounds to ensure they remain unchanged - for i, equal in enumerate(equal_bounds_mask): - if equal: - individual[i] = low[i] - - return (individual,) - - -def cxSimulatedBinaryBoundedWrapper(ind1, ind2, eta, low, up): - """ - A wrapper around DEAP's cxSimulatedBinaryBounded function to pre-process - bounds and handle the case where lower and upper bounds are equal. - - Args: - ind1: The first individual participating in the crossover. - ind2: The second individual participating in the crossover. - eta: Crowding degree of the crossover. - low: A value or sequence of values that is the lower bound of the search space. - up: A value or sequence of values that is the upper bound of the search space. - - Returns: - A tuple of two individuals after crossover operation. - """ - # Convert low and up to numpy arrays for easier manipulation - low_array = np.array(low) - up_array = np.array(up) - - # Identify dimensions where lower and upper bounds are equal - equal_bounds_mask = low_array == up_array - - # Temporarily adjust bounds for those dimensions to prevent division by zero - # This adjustment is arbitrary and won't affect the outcome since the crossover - # won't modify these dimensions - low_array[equal_bounds_mask] -= 1e-6 - up_array[equal_bounds_mask] += 1e-6 - - # Call the original cxSimulatedBinaryBounded function with adjusted bounds - tools.cxSimulatedBinaryBounded(ind1, ind2, eta, list(low_array), list(up_array)) - - # Ensure that values in dimensions with originally equal bounds are reset - # to the bound value (since they should not be modified) - for i, equal in enumerate(equal_bounds_mask): - if equal: - ind1[i] = low[i] - ind2[i] = low[i] - - return ind1, ind2 - - -def signal_handler(signal, frame): - print("\nOptimization interrupted by user. Exiting gracefully...") - sys.exit(0) - - -def calc_pa_dist_mean(stats): - elms = [] - for x in stats: - for lp, sp, p in zip(x[1], x[2], x[3]): - if p == 0.0: - continue - if lp[1]: - elms.append(abs(lp[1] - p) / p) - if sp[1]: - elms.append(abs(sp[1] - p) / p) - return (sum(elms) / len(elms)) if elms else 1.0 - - -def analyze_fills_opti(fills, stats, config): - starting_balance = config["starting_balance"] - stats_eqs = [(x[0], x[5]) for x in stats] - fills_eqs = [(x[0], x[5]) for x in fills] - - all_eqs = pd.DataFrame(stats_eqs + fills_eqs).set_index(0).sort_index()[1] - drawdowns_all = calc_drawdowns(all_eqs) - worst_drawdown = abs(drawdowns_all.min()) - - eq_threshold = starting_balance * 1e-4 - stats_eqs_df = pd.DataFrame(stats_eqs).set_index(0) - eqs_daily = stats_eqs_df.groupby(stats_eqs_df.index // 1440).last()[1] - n_days = len(eqs_daily) - drawdowns_daily = calc_drawdowns(eqs_daily) - drawdowns_daily_mean = abs(drawdowns_daily.mean()) - eqs_daily_pct_change = eqs_daily.pct_change() - if eqs_daily.iloc[-1] <= eq_threshold: - # ensure adg is negative if final equity is low - adg = (max(eq_threshold, eqs_daily.iloc[-1]) / starting_balance) ** (1.0 / n_days) - 1.0 - adg_weighted = adg - else: - # weigh adg to prefer higher adg closer to present - adgs = [ - eqs_daily_pct_change.iloc[int(len(eqs_daily_pct_change) * (1 - 1 / i)) :].mean() - for i in range(1, 11) - ] - adg = adgs[0] - adg_weighted = np.mean(adgs) - eqs_daily_pct_change_std = eqs_daily_pct_change.std() - sharpe_ratio = adg / eqs_daily_pct_change_std if eqs_daily_pct_change_std else 0.0 - - price_action_distance_mean = calc_pa_dist_mean(stats) - - loss_sum_long, profit_sum_long = 0.0, 0.0 - loss_sum_short, profit_sum_short = 0.0, 0.0 - pnls_by_symbol = {symbol: 0.0 for symbol in config["symbols"]} - for x in fills: - pnls_by_symbol[x[1]] += x[2] - if "long" in x[10]: - if x[2] > 0.0: - profit_sum_long += x[2] - elif x[2] < 0.0: - loss_sum_long += x[2] - elif "short" in x[10]: - if x[2] > 0.0: - profit_sum_short += x[2] - elif x[2] < 0.0: - loss_sum_short += x[2] - loss_profit_ratio_long = abs(loss_sum_long) / profit_sum_long if profit_sum_long > 0.0 else 1.0 - loss_profit_ratio_short = ( - abs(loss_sum_short) / profit_sum_short if profit_sum_short > 0.0 else 1.0 - ) - loss_profit_ratio = ( - abs(loss_sum_long + loss_sum_short) / (profit_sum_long + profit_sum_short) - if (profit_sum_long + profit_sum_short) > 0.0 - else 1.0 - ) - pnl_long = profit_sum_long + loss_sum_long - pnl_short = profit_sum_short + loss_sum_short - pnl_sum = pnl_long + pnl_short - pnl_ratio_long_short = pnl_long / pnl_sum if pnl_sum else 0.0 - pnl_ratios_symbols = { - symbol: pnls_by_symbol[symbol] / pnl_sum if pnl_sum else 0.0 for symbol in config["symbols"] - } - pnl_ratios_symbols = {k: v for k, v in sorted(pnl_ratios_symbols.items(), key=lambda x: x[1])} - - worst_drawdown_mod = ( - max(config["worst_drawdown_lower_bound"], worst_drawdown) - - config["worst_drawdown_lower_bound"] - ) * 10**1 - return { - "w_adg_weighted": worst_drawdown_mod - adg_weighted, - "w_price_action_distance_mean": worst_drawdown_mod + price_action_distance_mean, - "w_loss_profit_ratio": worst_drawdown_mod + loss_profit_ratio, - "w_sharpe_ratio": worst_drawdown_mod - sharpe_ratio, - "w_drawdowns_daily_mean": worst_drawdown_mod + drawdowns_daily_mean, - "worst_drawdown": worst_drawdown, - "n_days": n_days, - "drawdowns_daily_mean": drawdowns_daily_mean, - "price_action_distance_mean": price_action_distance_mean, - "adg_weighted": adg_weighted, - "adg": adg, - "sharpe_ratio": sharpe_ratio, - "loss_profit_ratio": loss_profit_ratio, - "loss_profit_ratio_long": loss_profit_ratio_long, - "loss_profit_ratio_short": loss_profit_ratio_short, - "pnl_ratio_long_short": pnl_ratio_long_short, - "pnl_ratios_symbols": pnl_ratios_symbols, - } - - -class Evaluator: - def __init__(self, hlcs, config): - self.hlcs = hlcs - self.shared_hlcs = shared_memory.SharedMemory(create=True, size=self.hlcs.nbytes) - self.shared_hlcs_np = np.ndarray( - self.hlcs.shape, dtype=self.hlcs.dtype, buffer=self.shared_hlcs.buf - ) - np.copyto(self.shared_hlcs_np, self.hlcs) - del self.hlcs - self.results_cache_fname = config["results_cache_fname"] - self.config = { - key: config[key] - for key in [ - "start_date", - "end_date", - "long_enabled", - "short_enabled", - "starting_balance", - "maker_fee", - "do_longs", - "do_shorts", - "c_mults", - "symbols", - "exchange", - "qty_steps", - "price_steps", - "min_costs", - "min_qtys", - "worst_drawdown_lower_bound", - "selected_metrics", - ] - } - - def evaluate(self, individual): - # individual is a list of floats - config_ = self.config.copy() - live_configs = individual_to_live_configs(individual, config_["symbols"]) - for key in [ - "loss_allowance_pct", - "stuck_threshold", - "unstuck_close_pct", - ]: - config_[key] = live_configs[key] - - config_["live_configs"] = numpyize( - [ - live_config_dict_to_list_recursive_grid(live_configs[symbol]) - for symbol in config_["symbols"] - ] - ) - res = backtest_multi(self.shared_hlcs_np, config_) - fills, stats = res - analysis = analyze_fills_opti(fills, stats, config_) - - to_dump = { - "analysis": analysis, - "live_config": decode_individual(individual), - "args": { - "symbols": self.config["symbols"], - "start_date": self.config["start_date"], - "end_date": self.config["end_date"], - "starting_balance": self.config["starting_balance"], - "exchange": self.config["exchange"], - "long_enabled": self.config["long_enabled"], - "short_enabled": self.config["short_enabled"], - "worst_drawdown_lower_bound": self.config["worst_drawdown_lower_bound"], - }, - } - with open(self.results_cache_fname, "a") as f: - f.write(json.dumps(denumpyize(to_dump)) + "\n") - return tuple([analysis[k] for k in self.config["selected_metrics"]]) - - def cleanup(self): - # Close and unlink the shared memory - self.shared_hlcs.close() - self.shared_hlcs.unlink() - - -def get_individual_keys(): - return [ - "global_TWE_long", - "global_TWE_short", - "global_loss_allowance_pct", - "global_stuck_threshold", - "global_unstuck_close_pct", - "long_ddown_factor", - "long_ema_span_0", - "long_ema_span_1", - "long_initial_eprice_ema_dist", - "long_initial_qty_pct", - "long_markup_range", - "long_min_markup", - "long_n_close_orders", - "long_rentry_pprice_dist", - "long_rentry_pprice_dist_wallet_exposure_weighting", - "short_ddown_factor", - "short_ema_span_0", - "short_ema_span_1", - "short_initial_eprice_ema_dist", - "short_initial_qty_pct", - "short_markup_range", - "short_min_markup", - "short_n_close_orders", - "short_rentry_pprice_dist", - "short_rentry_pprice_dist_wallet_exposure_weighting", - ] - - -def config_to_individual(config): - if "live_config" in config and all( - [x in config["live_config"] for x in ["global", "long", "short"]] - ): - config_ = deepcopy(config["live_config"]) - else: - config_ = deepcopy(config) - keys = get_individual_keys() - individual = [0.0 for _ in range(len(keys))] - for i, key in enumerate(keys): - key_ = key[key.find("_") + 1 :] - if key.startswith("global"): - if key_ in config_: - individual[i] = config_[key_] - elif "global" in config_ and key_ in config_["global"]: - individual[i] = config_["global"][key_] - else: - raise Exception(f"error: '{key}' missing from config. ") - else: - pside = key[: key.find("_")] - individual[i] = config_[pside][key_] - return individual - - -def decode_individual(individual): - decoded = {"global": {}, "long": {}, "short": {}} - for i, key in enumerate(get_individual_keys()): - for k0 in decoded: - if key.startswith(k0): - decoded[k0][key.replace(k0 + "_", "")] = individual[i] - break - return decoded - - -def individual_to_live_configs(individual, symbols): - keys = get_individual_keys() - assert len(keys) == len(individual) - live_configs = {symbol: {"long": {}, "short": {}} for symbol in symbols} - for i, key in enumerate(keys): - if key.startswith("global"): - if "TWE" in key: - pside = key[key.find("TWE") + 4 :] - for symbol in live_configs: - live_configs[symbol][pside]["wallet_exposure_limit"] = individual[i] / len( - symbols - ) - else: - live_configs[key.replace("global_", "")] = individual[i] - else: - for symbol in symbols: - if key.startswith("long"): - live_configs[symbol]["long"][key.replace("long_", "")] = individual[i] - elif key.startswith("short"): - live_configs[symbol]["short"][key.replace("short_", "")] = individual[i] - for symbol in symbols: - for key, val in [ - ("auto_unstuck_delay_minutes", 0.0), - ("auto_unstuck_ema_dist", 0.0), - ("auto_unstuck_qty_pct", 0.0), - ("auto_unstuck_wallet_exposure_threshold", 0.0), - ("backwards_tp", 1.0), - ("enabled", 1.0), - ]: - live_configs[symbol]["long"][key] = val - live_configs[symbol]["short"][key] = val - return live_configs - - -def backtest_multi(hlcs, config): - res = backtest_multisymbol_recursive_grid( - hlcs, - config["starting_balance"], - config["maker_fee"], - config["do_longs"], - config["do_shorts"], - config["c_mults"], - config["symbols"], - config["qty_steps"], - config["price_steps"], - config["min_costs"], - config["min_qtys"], - config["live_configs"], - config["loss_allowance_pct"], - config["stuck_threshold"], - config["unstuck_close_pct"], - ) - return res - - -def get_starting_configs(config): - if config["starting_configs"] is None: - return [] - cfgs = [] - if os.path.isdir(config["starting_configs"]): - filenames = [f for f in os.listdir(config["starting_configs"])] - else: - filenames = [config["starting_configs"]] - for f in filenames: - path = os.path.join(config["starting_configs"], f) - try: - cfgs.append(load_hjson_config(path)) - except Exception as e: - logging.error(f"failed to load live config {path} {e}") - return cfgs - - -def cfgs2individuals(cfgs): - inds = {} - for cfg in cfgs: - try: - individual = config_to_individual(cfg) - inds[calc_hash(individual)] = individual - except Exception as e: - logging.error(f"error with config_to_individual {e}") - return list(inds.values()) - - -async def main(): - signal.signal(signal.SIGINT, signal_handler) - logging.basicConfig( - format="%(asctime)s %(levelname)-8s %(message)s", - level=logging.INFO, - datefmt="%Y-%m-%dT%H:%M:%S", - ) - parser = argparse.ArgumentParser(prog="optimize_multi", description="run multisym optimize") - parser.add_argument( - "-oc", - "--optimize_config", - type=str, - required=False, - dest="optimize_config_path", - default="configs/optimize/multi.hjson", - help="optimize config hjson file", - ) - parser_items = [ - ("c", "n_cpus", "n_cpus", int, ""), - ("i", "iters", "iters", int, ""), - ("wd", "worst_drawdown_lower_bound", "worst_drawdown_lower_bound", float, ""), - ] - for k0, k1, d, t, h in parser_items: - parser.add_argument( - *[f"-{k0}", f"--{k1}"] + ([f"--{k1.replace('_', '-')}"] if "_" in k1 else []), - type=t, - required=False, - dest=d, - default=None, - help=f"specify {k1}{h}, overriding value from hjson config.", - ) - parser.add_argument( - "-t", - "--start", - type=str, - required=False, - dest="starting_configs", - default=None, - help="start with given live configs. single json file or dir with multiple json files", - ) - config = prep_config_multi(parser) - config["symbols"] = {k: v for k, v in sorted(config["symbols"].items())} - coins = [symbol2coin(s) for s in config["symbols"]] - coins_fname = "_".join(coins) if len(coins) <= 6 else f"{len(coins)}_coins" - date_fname = ts_to_date_utc(utc_ms())[:19].replace(":", "_") - config["results_cache_fname"] = make_get_filepath( - f"results_multi/{date_fname}_{coins_fname}_all_results.txt" - ) - for key, default_val in [("worst_drawdown_lower_bound", 0.25)]: - if key not in config: - config[key] = default_val - - hlcs, mss, config = await prep_hlcs_mss_config(config) - config["qty_steps"] = tuplify([mss[symbol]["qty_step"] for symbol in config["symbols"]]) - config["price_steps"] = tuplify([mss[symbol]["price_step"] for symbol in config["symbols"]]) - config["min_costs"] = tuplify([mss[symbol]["min_cost"] for symbol in config["symbols"]]) - config["min_qtys"] = tuplify([mss[symbol]["min_qty"] for symbol in config["symbols"]]) - config["c_mults"] = tuplify([mss[symbol]["c_mult"] for symbol in config["symbols"]]) - config["do_longs"] = tuplify([config["long_enabled"] for _ in config["symbols"]]) - config["do_shorts"] = tuplify([config["short_enabled"] for _ in config["symbols"]]) - config["maker_fee"] = next(iter(mss.values()))["maker"] - config["symbols"] = tuple(sorted(config["symbols"])) - - config["selected_metrics"] = ("w_adg_weighted", "w_sharpe_ratio") - - try: - evaluator = Evaluator(hlcs, config) - - NUMBER_OF_VARIABLES = len(config["bounds"]) - BOUNDS = [(x[0], x[1]) for x in config["bounds"].values()] - n_cpus = max(1, config["n_cpus"]) # Specify the number of CPUs to use - - # Define the problem as a multi-objective optimization - weights = (-1.0, -1.0) # minimize - creator.create("FitnessMulti", base.Fitness, weights=weights) - creator.create("Individual", list, fitness=creator.FitnessMulti) - - # Toolbox initialization - toolbox = base.Toolbox() - - # Attribute generator - generates one float for each parameter with unique bounds - def create_individual(): - return [random.uniform(BOUND_LOW, BOUND_UP) for BOUND_LOW, BOUND_UP in BOUNDS] - - # Structure initializers - toolbox.register("individual", tools.initIterate, creator.Individual, create_individual) - toolbox.register("population", tools.initRepeat, list, toolbox.individual) - - toolbox.register("evaluate", evaluator.evaluate) - toolbox.register( - "mate", - cxSimulatedBinaryBoundedWrapper, - low=[bound[0] for bound in BOUNDS], - up=[bound[1] for bound in BOUNDS], - eta=20.0, - ) - toolbox.register( - "mutate", - mutPolynomialBoundedWrapper, - low=[bound[0] for bound in BOUNDS], - up=[bound[1] for bound in BOUNDS], - eta=20.0, - indpb=1.0 / NUMBER_OF_VARIABLES, - ) - toolbox.register("select", tools.selNSGA2) - - # Parallelization setup - pool = multiprocessing.Pool(processes=n_cpus) - toolbox.register("map", pool.map) - - # Population setup - starting_individuals = cfgs2individuals(get_starting_configs(config)) - pop_size = 100 - if len(starting_individuals) > pop_size: - pop_size = len(starting_individuals) - logging.info(f"increasing population size: {pop_size} -> {len(starting_individuals)}") - pop = toolbox.population(n=pop_size) - if starting_individuals: - for i in range(len(starting_individuals)): - adjusted = [ - max(min(x, BOUNDS[z][1]), BOUNDS[z][0]) - for z, x in enumerate(starting_individuals[i]) - ] - pop[i] = creator.Individual(adjusted) - hof = tools.HallOfFame(1) - stats = tools.Statistics(lambda ind: ind.fitness.values) - stats.register("avg", np.mean, axis=0) - stats.register("std", np.std, axis=0) - stats.register("min", np.min, axis=0) - stats.register("max", np.max, axis=0) - logging.info(f"starting optimize") - # Run the algorithm - algorithms.eaMuPlusLambda( - pop, - toolbox, - mu=pop_size, - lambda_=pop_size, - cxpb=0.7, - mutpb=0.3, - ngen=max(1, int(config["iters"] / pop_size)), - stats=stats, - halloffame=hof, - verbose=True, - ) - except Exception as e: - print(e) - traceback.print_exc() - finally: - # Close the pool - logging.info(f"attempting clean shutdown...") - evaluator.cleanup() - sys.exit(0) - # pool.close() - # pool.join() - - return pop, stats, hof - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/particle_swarm_optimization.py b/particle_swarm_optimization.py deleted file mode 100644 index 2a5663a2b..000000000 --- a/particle_swarm_optimization.py +++ /dev/null @@ -1,448 +0,0 @@ -import os - -os.environ["NOJIT"] = "false" - -import argparse -import asyncio -import json -import numpy as np -import traceback -from copy import deepcopy -from backtest import backtest -from multiprocessing import Pool, shared_memory -from njit_funcs import round_dynamic -from pure_funcs import ( - analyze_fills, - denumpyize, - get_template_live_config, - ts_to_date, - ts_to_date_utc, - date_to_ts, - tuplify, - sort_dict_keys, - determine_passivbot_mode, - get_empty_analysis, - calc_scores, -) -from procedures import ( - add_argparse_args, - prepare_optimize_config, - load_live_config, - make_get_filepath, - prepare_backtest_config, - dump_live_config, - utc_ms, -) -from time import sleep, time -import logging -import logging.config - -logging.config.dictConfig({"version": 1, "disable_existing_loggers": True}) - - -class ParticleSwarmOptimization: - def __init__(self, config: dict, backtest_wrap, pool=None): - self.backtest_wrap = backtest_wrap - self.config = config - self.do_long = config["long"]["enabled"] - self.do_short = config["short"]["enabled"] - self.n_particles = max(config["n_particles"], len(config["starting_configs"])) - self.w = config["w"] - self.c0 = config["c0"] - self.c1 = config["c1"] - self.starting_configs = config["starting_configs"] - self.iters = config["iters"] - self.n_cpus = config["n_cpus"] - self.pool = Pool(processes=config["n_cpus"]) if pool is None else pool - self.long_bounds = sort_dict_keys(config[f"bounds_{self.config['passivbot_mode']}"]["long"]) - self.short_bounds = sort_dict_keys(config[f"bounds_{self.config['passivbot_mode']}"]["short"]) - self.symbols = config["symbols"] - self.results_fpath = make_get_filepath(config["results_fpath"]) - self.exchange_name = config["exchange"] + ("_spot" if config["market_type"] == "spot" else "") - self.market_specific_settings = { - s: json.load( - open( - os.path.join( - self.config["base_dir"], - self.exchange_name, - s, - "caches", - "market_specific_settings.json", - ) - ) - ) - for s in self.symbols - } - self.date_range = f"{self.config['start_date']}_{self.config['end_date']}" - self.bt_dir = os.path.join(self.config["base_dir"], self.exchange_name) - self.ticks_cache_fname = ( - f"caches/{self.date_range}{'_ohlcv_cache.npy' if config['ohlcv'] else '_ticks_cache.npy'}" - ) - self.ticks_caches = config["ticks_caches"] - self.current_best_config = None - - # [{'config': dict, 'task': process, 'id_key': tuple}] - self.workers = [None for _ in range(self.n_cpus)] - - # swarm = {swarm_key: str: {'long': {'score': float, 'config': dict}, 'short': {...}}} - self.swarm = {} - - # velocities_long/short = {swarm_key: {k: for k in bounds}} - self.velocities_long = {} - self.velocities_short = {} - # lbests_long/short = {swarm_key: {'config': dict, 'score': float}} - self.lbests_long = {} - self.lbests_short = {} - self.gbest_long = None - self.gbest_short = None - - # {identifier: {'config': dict, - # 'single_results': {symbol_finished: single_backtest_result}, - # 'in_progress': set({symbol_in_progress}))} - self.unfinished_evals = {} - - self.iter_counter = 0 - - def post_process(self, wi: int): - # a worker has finished a job; process it - cfg = deepcopy(self.workers[wi]["config"]) - id_key = self.workers[wi]["id_key"] - swarm_key = cfg["swarm_key"] - symbol = cfg["symbol"] - self.unfinished_evals[id_key]["single_results"][symbol] = self.workers[wi]["task"].get() - self.unfinished_evals[id_key]["in_progress"].remove(symbol) - results = deepcopy(self.unfinished_evals[id_key]["single_results"]) - for s in results: - results[s]["timestamp_finished"] = utc_ms() - with open(self.results_fpath + "positions.txt", "a") as f: - f.write( - json.dumps({"long": cfg["long"], "short": cfg["short"], "swarm_key": swarm_key}) - + "\n" - ) - if set(results) == set(self.symbols): - # completed multisymbol iter - scores_res = calc_scores(self.config, results) - scores, means, raws, keys = ( - scores_res["scores"], - scores_res["means"], - scores_res["raws"], - scores_res["keys"], - ) - - self.swarm[swarm_key]["long"]["score"] = scores["long"] - self.swarm[swarm_key]["short"]["score"] = scores["short"] - # check if better than lbest long - if ( - type(self.lbests_long[swarm_key]["score"]) == str - or scores["long"] < self.lbests_long[swarm_key]["score"] - ): - self.lbests_long[swarm_key] = deepcopy( - {"config": cfg["long"], "score": scores["long"]} - ) - # check if better than lbest short - if ( - type(self.lbests_short[swarm_key]["score"]) == str - or scores["short"] < self.lbests_short[swarm_key]["score"] - ): - self.lbests_short[swarm_key] = deepcopy( - {"config": cfg["short"], "score": scores["short"]} - ) - tmp_fname = f"{self.results_fpath}{cfg['config_no']:06}_best_config" - is_better = False - # check if better than gbest long - if self.gbest_long is None or scores["long"] < self.gbest_long["score"]: - self.gbest_long = deepcopy({"config": cfg["long"], "score": scores["long"]}) - is_better = True - line = f"i{cfg['config_no']} - new best config long, score {round_dynamic(scores['long'], 12)} " - for key, _ in keys: - line += f"{key} {round_dynamic(raws['long'][key], 4)} " - logging.info(line) - tmp_fname += "_long" - json.dump( - results, - open(f"{self.results_fpath}{cfg['config_no']:06}_result_long.json", "w"), - indent=4, - sort_keys=True, - ) - # check if better than gbest short - if self.gbest_short is None or scores["short"] < self.gbest_short["score"]: - self.gbest_short = deepcopy({"config": cfg["short"], "score": scores["short"]}) - is_better = True - line = f"i{cfg['config_no']} - new best config short, score {round_dynamic(scores['short'], 12)} " - for key, _ in keys: - line += f"{key} {round_dynamic(raws['short'][key], 4)} " - logging.info(line) - tmp_fname += "_short" - json.dump( - results, - open(f"{self.results_fpath}{cfg['config_no']:06}_result_short.json", "w"), - indent=4, - sort_keys=True, - ) - if is_better: - best_config = { - "long": deepcopy(self.gbest_long["config"]), - "short": deepcopy(self.gbest_short["config"]), - } - best_config["result"] = { - "symbol": f"{len(self.symbols)}_symbols", - "exchange": self.config["exchange"], - "start_date": self.config["start_date"], - "end_date": self.config["end_date"], - } - dump_live_config(best_config, tmp_fname + ".json") - elif cfg["config_no"] % 25 == 0: - logging.info(f"i{cfg['config_no']}") - results["config_no"] = cfg["config_no"] - with open(self.results_fpath + "all_results.txt", "a") as f: - f.write( - json.dumps( - {"config": {"long": cfg["long"], "short": cfg["short"]}, "results": results} - ) - + "\n" - ) - del self.unfinished_evals[id_key] - self.workers[wi] = None - - def start_new_particle_position(self, wi: int): - self.iter_counter += 1 # up iter counter on each new config started - swarm_key = self.swarm_keys[self.iter_counter % self.n_particles] - template = get_template_live_config(self.config["passivbot_mode"]) - new_position = { - **{ - "long": deepcopy(template["long"]), - "short": deepcopy(template["short"]), - }, - **{k: self.config[k] for k in self.config["keys_to_include"]}, - **{"symbol": self.symbols[0], "config_no": self.iter_counter}, - } - for side in ["long", "short"]: - new_position[side]["enabled"] = getattr(self, f"do_{side}") - new_position[side]["backwards_tp"] = self.config[f"backwards_tp_{side}"] - for key in self.long_bounds: - # get new velocities from gbest and lbest - self.velocities_long[swarm_key][key] = ( - self.w * self.velocities_long[swarm_key][key] - + self.c0 - * np.random.random() - * ( - self.lbests_long[swarm_key]["config"][key] - - self.swarm[swarm_key]["long"]["config"][key] - ) - + self.c1 - * np.random.random() - * (self.gbest_long["config"][key] - self.swarm[swarm_key]["long"]["config"][key]) - ) - new_position["long"][key] = max( - min( - self.swarm[swarm_key]["long"]["config"][key] - + self.velocities_long[swarm_key][key], - self.long_bounds[key][1], - ), - self.long_bounds[key][0], - ) - self.velocities_short[swarm_key][key] = ( - self.w * self.velocities_short[swarm_key][key] - + self.c0 - * np.random.random() - * ( - self.lbests_short[swarm_key]["config"][key] - - self.swarm[swarm_key]["short"]["config"][key] - ) - + self.c1 - * np.random.random() - * (self.gbest_short["config"][key] - self.swarm[swarm_key]["short"]["config"][key]) - ) - new_position["short"][key] = max( - min( - self.swarm[swarm_key]["short"]["config"][key] - + self.velocities_short[swarm_key][key], - self.short_bounds[key][1], - ), - self.short_bounds[key][0], - ) - self.swarm[swarm_key]["long"] = { - "config": deepcopy(new_position["long"]), - "score": "in_progress", - } - self.swarm[swarm_key]["short"] = { - "config": deepcopy(new_position["short"]), - "score": "in_progress", - } - logging.debug( - f"starting new position {new_position['config_no']} - long " - + " ".join([str(round_dynamic(e[1], 3)) for e in sorted(new_position["long"].items())]) - + " - short: " - + " ".join([str(round_dynamic(e[1], 3)) for e in sorted(new_position["short"].items())]) - ) - - new_position["market_specific_settings"] = self.market_specific_settings[ - new_position["symbol"] - ] - new_position["ticks_cache_fname"] = ( - f"{self.bt_dir}/{new_position['symbol']}/{self.ticks_cache_fname}" - ) - new_position["passivbot_mode"] = self.config["passivbot_mode"] - new_position["swarm_key"] = swarm_key - self.workers[wi] = { - "config": deepcopy(new_position), - "task": self.pool.apply_async( - self.backtest_wrap, args=(deepcopy(new_position), self.ticks_caches) - ), - "id_key": new_position["config_no"], - } - self.unfinished_evals[new_position["config_no"]] = { - "config": deepcopy(new_position), - "single_results": {}, - "in_progress": set([self.symbols[0]]), - } - - def start_new_initial_eval(self, wi: int, swarm_key: str): - self.iter_counter += 1 # up iter counter on each new config started - config = { - **{ - "long": deepcopy(self.swarm[swarm_key]["long"]["config"]), - "short": deepcopy(self.swarm[swarm_key]["short"]["config"]), - }, - **{k: self.config[k] for k in self.config["keys_to_include"]}, - **{ - "symbol": self.symbols[0], - "initial_eval_key": swarm_key, - "config_no": self.iter_counter, - "swarm_key": swarm_key, - }, - } - line = f"starting new initial eval {config['config_no']} of {self.n_particles} " - logging.info(line) - - config["market_specific_settings"] = self.market_specific_settings[config["symbol"]] - config["ticks_cache_fname"] = f"{self.bt_dir}/{config['symbol']}/{self.ticks_cache_fname}" - config["passivbot_mode"] = self.config["passivbot_mode"] - - self.workers[wi] = { - "config": deepcopy(config), - "task": self.pool.apply_async( - self.backtest_wrap, args=(deepcopy(config), self.ticks_caches) - ), - "id_key": config["config_no"], - } - self.unfinished_evals[config["config_no"]] = { - "config": deepcopy(config), - "single_results": {}, - "in_progress": set([self.symbols[0]]), - } - self.swarm[swarm_key]["long"]["score"] = "in_progress" - self.swarm[swarm_key]["short"]["score"] = "in_progress" - - def run(self): - try: - self.run_() - finally: - pass - - def run_(self): - # initialize ticks cache - """ - if self.n_cpus >= len(self.symbols) or ( - "cache_ticks" in self.config and self.config["cache_ticks"] - ): - """ - # initialize swarm - for _ in range(self.n_particles): - cfg_long = deepcopy(self.config["long"]) - cfg_short = deepcopy(self.config["short"]) - swarm_key = str(time()) + str(np.random.random()) - self.velocities_long[swarm_key] = {} - self.velocities_short[swarm_key] = {} - for k in self.long_bounds: - cfg_long[k] = np.random.uniform(self.long_bounds[k][0], self.long_bounds[k][1]) - cfg_short[k] = np.random.uniform(self.short_bounds[k][0], self.short_bounds[k][1]) - self.velocities_long[swarm_key][k] = np.random.uniform( - -abs(self.long_bounds[k][0] - self.long_bounds[k][1]), - abs(self.long_bounds[k][0] - self.long_bounds[k][1]), - ) - self.velocities_short[swarm_key][k] = np.random.uniform( - -abs(self.short_bounds[k][0] - self.short_bounds[k][1]), - abs(self.short_bounds[k][0] - self.short_bounds[k][1]), - ) - self.swarm[swarm_key] = { - "long": {"score": "not_started", "config": cfg_long}, - "short": {"score": "not_started", "config": cfg_short}, - } - self.lbests_long[swarm_key] = deepcopy(self.swarm[swarm_key]["long"]) - self.lbests_short[swarm_key] = deepcopy(self.swarm[swarm_key]["short"]) - self.gbest_long = deepcopy({"config": cfg_long, "score": np.inf}) - self.gbest_short = deepcopy({"config": cfg_short, "score": np.inf}) - self.swarm_keys = sorted(self.swarm) - - # add starting configs - for side in ["long", "short"]: - swarm_keys = sorted(self.swarm) - bounds = getattr(self, f"{side}_bounds") - for cfg in self.starting_configs: - cfg = {k: max(bounds[k][0], min(bounds[k][1], cfg[side][k])) for k in bounds} - cfg["enabled"] = getattr(self, f"do_{side}") - cfg["backwards_tp"] = self.config[f"backwards_tp_{side}"] - if cfg not in [self.swarm[k][side]["config"] for k in self.swarm]: - self.swarm[swarm_keys.pop()][side]["config"] = deepcopy(cfg) - - # start main loop - while True: - # first check for finished jobs - for wi in range(len(self.workers)): - if self.workers[wi] is not None and self.workers[wi]["task"].ready(): - self.post_process(wi) - if self.iter_counter >= self.iters + self.n_particles: - if all(worker is None for worker in self.workers): - # break when all work is finished - break - else: - # check for idle workers - for wi in range(len(self.workers)): - if self.workers[wi] is not None: - continue - # a worker is idle; give it a job - for id_key in self.unfinished_evals: - # check if unfinished evals - missing_symbols = set(self.symbols) - ( - set(self.unfinished_evals[id_key]["single_results"]) - | self.unfinished_evals[id_key]["in_progress"] - ) - if missing_symbols: - # start eval for missing symbol - symbol = sorted(missing_symbols)[0] - config = deepcopy(self.unfinished_evals[id_key]["config"]) - config["symbol"] = symbol - config["market_specific_settings"] = self.market_specific_settings[ - config["symbol"] - ] - config["ticks_cache_fname"] = ( - f"{self.bt_dir}/{config['symbol']}/{self.ticks_cache_fname}" - ) - config["passivbot_mode"] = self.config["passivbot_mode"] - self.workers[wi] = { - "config": config, - "task": self.pool.apply_async( - self.backtest_wrap, args=(config, self.ticks_caches) - ), - "id_key": id_key, - } - self.unfinished_evals[id_key]["in_progress"].add(symbol) - break - else: - # means all symbols are accounted for in all unfinished evals; start new eval - for swarm_key in self.swarm: - if self.swarm[swarm_key]["long"]["score"] == "not_started": - # means initial evals not yet done - self.start_new_initial_eval(wi, swarm_key) - break - else: - # means initial evals are done; start new position - self.start_new_particle_position(wi) - sleep(0.0001) - - -if __name__ == "__main__": - from optimize import main as main_ - - asyncio.run(main_(algorithm="particle_swarm_optimization")) diff --git a/passivbot-rust/Cargo.lock b/passivbot-rust/Cargo.lock new file mode 100644 index 000000000..a71c50a4b --- /dev/null +++ b/passivbot-rust/Cargo.lock @@ -0,0 +1,374 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "autocfg" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" + +[[package]] +name = "bitflags" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "indoc" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" + +[[package]] +name = "libc" +version = "0.2.155" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" + +[[package]] +name = "lock_api" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "matrixmultiply" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2" +dependencies = [ + "autocfg", + "rawpointer", +] + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "ndarray" +version = "0.15.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32" +dependencies = [ + "matrixmultiply", + "num-complex", + "num-integer", + "num-traits", + "rawpointer", +] + +[[package]] +name = "num-complex" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "numpy" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4" +dependencies = [ + "libc", + "ndarray", + "num-complex", + "num-integer", + "num-traits", + "pyo3", + "rustc-hash", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "parking_lot" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets", +] + +[[package]] +name = "passivbot_rust" +version = "0.1.0" +dependencies = [ + "ndarray", + "numpy", + "pyo3", +] + +[[package]] +name = "portable-atomic" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" + +[[package]] +name = "proc-macro2" +version = "1.0.84" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "pyo3" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8" +dependencies = [ + "cfg-if", + "indoc", + "libc", + "memoffset", + "parking_lot", + "portable-atomic", + "pyo3-build-config", + "pyo3-ffi", + "pyo3-macros", + "unindent", +] + +[[package]] +name = "pyo3-build-config" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50" +dependencies = [ + "once_cell", + "target-lexicon", +] + +[[package]] +name = "pyo3-ffi" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403" +dependencies = [ + "libc", + "pyo3-build-config", +] + +[[package]] +name = "pyo3-macros" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c" +dependencies = [ + "proc-macro2", + "pyo3-macros-backend", + "quote", + "syn", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c" +dependencies = [ + "heck", + "proc-macro2", + "pyo3-build-config", + "quote", + "syn", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rawpointer" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" + +[[package]] +name = "redox_syscall" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" +dependencies = [ + "bitflags", +] + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "smallvec" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" + +[[package]] +name = "syn" +version = "2.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "target-lexicon" +version = "0.12.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unindent" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" + +[[package]] +name = "windows-targets" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" diff --git a/passivbot-rust/Cargo.toml b/passivbot-rust/Cargo.toml new file mode 100644 index 000000000..8a4163dad --- /dev/null +++ b/passivbot-rust/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "passivbot_rust" +version = "0.1.0" +edition = "2021" + +[lib] +name = "passivbot_rust" +crate-type = ["cdylib"] + +[dependencies] +pyo3 = { version = "0.21.2", features = ["extension-module"] } +ndarray = "0.15.6" +numpy = "0.21.0" diff --git a/passivbot-rust/src/backtest.rs b/passivbot-rust/src/backtest.rs new file mode 100644 index 000000000..80c02604e --- /dev/null +++ b/passivbot-rust/src/backtest.rs @@ -0,0 +1,2165 @@ +use crate::closes::{ + calc_closes_long, calc_closes_short, calc_next_close_long, calc_next_close_short, +}; +use crate::constants::{CLOSE, HIGH, LONG, LOW, NO_POS, SHORT}; +use crate::entries::{ + calc_entries_long, calc_entries_short, calc_min_entry_qty, calc_next_entry_long, + calc_next_entry_short, +}; +use crate::types::{ + Analysis, BacktestParams, BotParams, BotParamsPair, EMABands, ExchangeParams, Fill, Order, + OrderBook, OrderType, Position, Positions, StateParams, TrailingPriceBundle, +}; +use crate::utils::{ + calc_auto_unstuck_allowance, calc_new_psize_pprice, calc_pnl_long, calc_pnl_short, + calc_pprice_diff_int, calc_wallet_exposure, cost_to_qty, qty_to_cost, round_, round_dn, + round_up, +}; +use ndarray::s; +use ndarray::{Array1, Array2, Array3, Array4}; +use std::cmp::Ordering; +use std::collections::{HashMap, HashSet}; + +#[derive(Clone, Default, Copy, Debug)] +pub struct EmaAlphas { + pub long: Alphas, + pub short: Alphas, +} + +#[derive(Clone, Default, Copy, Debug)] +pub struct Alphas { + pub alphas: [f64; 3], + pub alphas_inv: [f64; 3], +} + +#[derive(Debug)] +pub struct EMAs { + pub long: [f64; 3], + pub short: [f64; 3], +} +impl EMAs { + pub fn compute_bands(&self, pside: usize) -> EMABands { + let (upper, lower) = match pside { + LONG => ( + *self + .long + .iter() + .max_by(|a, b| a.partial_cmp(b).unwrap()) + .unwrap_or(&f64::MIN), + *self + .long + .iter() + .min_by(|a, b| a.partial_cmp(b).unwrap()) + .unwrap_or(&f64::MAX), + ), + SHORT => ( + *self + .short + .iter() + .max_by(|a, b| a.partial_cmp(b).unwrap()) + .unwrap_or(&f64::MIN), + *self + .short + .iter() + .min_by(|a, b| a.partial_cmp(b).unwrap()) + .unwrap_or(&f64::MAX), + ), + _ => panic!("Invalid pside"), + }; + EMABands { upper, lower } + } +} + +#[derive(Debug, Default)] +pub struct OpenOrders { + pub long: HashMap, + pub short: HashMap, +} + +#[derive(Debug, Default)] +pub struct OpenOrdersNew { + pub long: HashMap, + pub short: HashMap, +} + +#[derive(Debug, Default)] +pub struct OpenOrderBundleNew { + pub entries: Vec, + pub closes: Vec, +} + +#[derive(Debug, Default)] +pub struct OpenOrderBundle { + pub entry: Order, + pub close: Order, +} + +#[derive(Default, Debug)] +pub struct Actives { + long: HashSet, + short: HashSet, +} + +#[derive(Default, Debug)] +pub struct IsStuck { + long: HashSet, + short: HashSet, +} + +#[derive(Default, Debug)] +pub struct TrailingPrices { + pub long: HashMap, + pub short: HashMap, +} + +pub struct TrailingEnabled { + long: bool, + short: bool, +} + +pub struct TradingEnabled { + long: bool, + short: bool, +} + +pub struct Backtest { + hlcs: Array3, // 3D array: (n_timesteps, n_markets, 3) + preferred_coins: Array2, // 2D array: (n_timesteps, n_markets) + bot_params_pair: BotParamsPair, + exchange_params_list: Vec, + backtest_params: BacktestParams, + balance: f64, + n_markets: usize, + ema_alphas: EmaAlphas, + emas: Vec, + positions: Positions, + open_orders: OpenOrders, // keys are symbol indices + open_orders_new: OpenOrdersNew, + trailing_prices: TrailingPrices, + actives: Actives, + pnl_cumsum_running: f64, + pnl_cumsum_max: f64, + fills: Vec, + is_stuck: IsStuck, + trading_enabled: TradingEnabled, + trailing_enabled: TrailingEnabled, + equities: Vec, + delist_timestamps: HashMap, + did_fill_long: HashSet, + did_fill_short: HashSet, +} + +impl Backtest { + pub fn new( + hlcs: Array3, + preferred_coins: Array2, + bot_params_pair: BotParamsPair, + exchange_params_list: Vec, + backtest_params: &BacktestParams, + ) -> Self { + let n_markets = hlcs.shape()[1]; + let initial_emas = (0..n_markets) + .map(|i| { + let close_price = hlcs[[0, i, CLOSE]]; + EMAs { + long: [close_price; 3], + short: [close_price; 3], + } + }) + .collect(); + let mut equities = Vec::::new(); + equities.push(backtest_params.starting_balance); + let mut bot_params_pair_cloned = bot_params_pair.clone(); + bot_params_pair_cloned.long.n_positions = n_markets.min(bot_params_pair.long.n_positions); + bot_params_pair_cloned.short.n_positions = n_markets.min(bot_params_pair.short.n_positions); + Backtest { + hlcs, + preferred_coins, + bot_params_pair: bot_params_pair_cloned, + exchange_params_list, + backtest_params: backtest_params.clone(), + balance: backtest_params.starting_balance, + n_markets, + ema_alphas: calc_ema_alphas(&bot_params_pair), + emas: initial_emas, + positions: Positions::default(), + open_orders: OpenOrders::default(), + open_orders_new: OpenOrdersNew::default(), + trailing_prices: TrailingPrices::default(), + actives: Actives::default(), + pnl_cumsum_running: 0.0, + pnl_cumsum_max: 0.0, + fills: Vec::new(), + is_stuck: IsStuck::default(), + trading_enabled: TradingEnabled { + long: bot_params_pair.long.wallet_exposure_limit != 0.0 + && bot_params_pair.long.n_positions > 0, + short: bot_params_pair.short.wallet_exposure_limit != 0.0 + && bot_params_pair.short.n_positions > 0, + }, + trailing_enabled: TrailingEnabled { + long: bot_params_pair.long.close_trailing_grid_ratio != 0.0 + || bot_params_pair.long.entry_trailing_grid_ratio != 0.0, + short: bot_params_pair.short.close_trailing_grid_ratio != 0.0 + || bot_params_pair.short.entry_trailing_grid_ratio != 0.0, + }, + equities: equities, + delist_timestamps: HashMap::new(), + did_fill_long: HashSet::new(), + did_fill_short: HashSet::new(), + } + } + + pub fn run(&mut self) -> (Vec, Vec) { + let check_points: Vec = (0..7).map(|i| i * 60 * 24).collect(); + let n_timesteps = self.hlcs.shape()[0]; + + for idx in 0..self.n_markets { + self.trailing_prices + .long + .insert(idx, TrailingPriceBundle::default()); + self.trailing_prices + .short + .insert(idx, TrailingPriceBundle::default()); + + // check if the coin was delisted at any point + if n_timesteps > *check_points.last().unwrap() { + let last_hlc_close = self.hlcs[[n_timesteps - 1, idx, CLOSE]]; + if check_points.iter().all(|&point| { + self.hlcs[[n_timesteps - 1 - point, idx, HIGH]] == last_hlc_close + && self.hlcs[[n_timesteps - 1 - point, idx, LOW]] == last_hlc_close + && self.hlcs[[n_timesteps - 1 - point, idx, CLOSE]] == last_hlc_close + }) { + // was delisted. Find timestamp of delisting + let mut i = n_timesteps - check_points.last().unwrap(); + while i > 0 + && self.hlcs[[i, idx, HIGH]] == last_hlc_close + && self.hlcs[[i, idx, LOW]] == last_hlc_close + && self.hlcs[[i, idx, CLOSE]] == last_hlc_close + { + i -= 1; + } + if i > 1 { + self.delist_timestamps.insert(idx, i); + } + } + } + } + for k in 1..(n_timesteps - 1) { + self.check_for_fills(k); + self.update_emas(k); + self.update_open_orders(k); + self.update_equities(k); + } + (self.fills.clone(), self.equities.clone()) + } + + fn create_state_params(&self, k: usize, idx: usize, pside: usize) -> StateParams { + let close_price = self.hlcs[[k, idx, CLOSE]]; + StateParams { + balance: self.balance, + order_book: OrderBook { + bid: close_price, + ask: close_price, + }, + ema_bands: self.emas[idx].compute_bands(pside), + } + } + + fn get_position(&self, idx: usize, pside: usize) -> Position { + match pside { + LONG => self.positions.long.get(&idx).cloned().unwrap_or_default(), + SHORT => self.positions.short.get(&idx).cloned().unwrap_or_default(), + _ => panic!("Invalid pside"), + } + } + + fn update_equities(&mut self, k: usize) { + let mut equity = self.balance; + // Calculate unrealized PnL for long positions + for (&idx, position) in &self.positions.long { + let current_price = self.hlcs[[k, idx, CLOSE]]; + let upnl = calc_pnl_long( + position.price, + current_price, + position.size, + self.exchange_params_list[idx].c_mult, + ); + equity += upnl; + } + // Calculate unrealized PnL for short positions + for (&idx, position) in &self.positions.short { + let current_price = self.hlcs[[k, idx, CLOSE]]; + let upnl = calc_pnl_short( + position.price, + current_price, + position.size, + self.exchange_params_list[idx].c_mult, + ); + equity += upnl; + } + self.equities.push(equity); + } + + fn update_actives(&mut self, k: usize, pside: usize) -> Vec { + let (actives, positions, n_positions) = match pside { + LONG => ( + &mut self.actives.long, + &self.positions.long, + self.bot_params_pair.long.n_positions, + ), + SHORT => ( + &mut self.actives.short, + &self.positions.short, + self.bot_params_pair.short.n_positions, + ), + _ => panic!("Invalid pside"), + }; + let mut actives_without_pos = Vec::with_capacity(n_positions); + actives.clear(); + for &market_idx in positions.keys() { + actives.insert(market_idx); + } + // Add additional markets based on preferred_coins + for &market_idx in self.preferred_coins.row(k).iter() { + let market_idx = market_idx as usize; + if actives.len() < n_positions { + if actives.insert(market_idx) { + // Only add to actives_without_pos if it's a new insertion + actives_without_pos.push(market_idx); + } + } else { + break; + } + } + actives_without_pos + } + + fn check_for_fills(&mut self, k: usize) { + self.did_fill_long.clear(); + self.did_fill_short.clear(); + if self.trading_enabled.long { + let mut open_orders_keys_long: Vec = + self.open_orders_new.long.keys().cloned().collect(); + open_orders_keys_long.sort(); + for idx in open_orders_keys_long { + // Process close fills long + if !self.open_orders_new.long[&idx].closes.is_empty() { + let mut closes_to_process = Vec::new(); + { + for close_order in &self.open_orders_new.long[&idx].closes { + if self.order_filled(k, idx, close_order) { + closes_to_process.push(close_order.clone()); + } + } + } + for order in closes_to_process { + //if order.qty != 0.0 && self.positions.long.contains_key(&idx) && self.positions.long.contains_key(&idx) + //if order.qty != 0.0 && self.get_position + if self.positions.long.contains_key(&idx) { + self.did_fill_long.insert(idx); + self.reset_trailing_prices(idx, LONG); + self.process_close_fill_long_new(k, idx, &order); + } + } + } + // Process entry fills long + if !self.open_orders_new.long[&idx].entries.is_empty() { + let mut entries_to_process = Vec::new(); + { + for entry_order in &self.open_orders_new.long[&idx].entries { + if self.order_filled(k, idx, entry_order) { + entries_to_process.push(entry_order.clone()); + } + } + } + for order in entries_to_process { + self.did_fill_long.insert(idx); + self.reset_trailing_prices(idx, LONG); + self.process_entry_fill_long_new(k, idx, &order); + } + } + } + } + if self.trading_enabled.short { + let mut open_orders_keys_short: Vec = + self.open_orders_new.short.keys().cloned().collect(); + open_orders_keys_short.sort(); + for idx in open_orders_keys_short { + // Process close fills short + if !self.open_orders_new.short[&idx].closes.is_empty() { + let mut closes_to_process = Vec::new(); + { + for close_order in &self.open_orders_new.short[&idx].closes { + if self.order_filled(k, idx, close_order) { + closes_to_process.push(close_order.clone()); + } + } + } + for order in closes_to_process { + if self.positions.short.contains_key(&idx) { + self.did_fill_short.insert(idx); + self.reset_trailing_prices(idx, SHORT); + self.process_close_fill_short_new(k, idx, &order); + } + } + } + // Process entry fills short + if !self.open_orders_new.short[&idx].entries.is_empty() { + let mut entries_to_process = Vec::new(); + { + for entry_order in &self.open_orders_new.short[&idx].entries { + if self.order_filled(k, idx, entry_order) { + entries_to_process.push(entry_order.clone()); + } + } + } + for order in entries_to_process { + self.did_fill_short.insert(idx); + self.reset_trailing_prices(idx, SHORT); + self.process_entry_fill_short_new(k, idx, &order); + } + } + } + } + } + + fn check_for_fills_old(&mut self, k: usize) { + self.did_fill_long.clear(); + self.did_fill_short.clear(); + if self.trading_enabled.long { + let mut open_orders_keys_long: Vec = + self.open_orders.long.keys().cloned().collect(); + open_orders_keys_long.sort(); + for idx in open_orders_keys_long { + // check if coin is delisted + if let Some(&delist_timestamp) = self.delist_timestamps.get(&idx) { + if k >= delist_timestamp && self.positions.long.contains_key(&idx) { + self.open_orders.long.get_mut(&idx).unwrap().close = Order { + qty: -self.positions.long[&idx].size, + price: round_( + f64::min( + self.hlcs[[k, idx, HIGH]] + - self.exchange_params_list[idx].price_step, + self.positions.long[&idx].price, + ), + self.exchange_params_list[idx].price_step, + ), + order_type: OrderType::CloseUnstuckLong, + }; + } + } + // Process close fills + while self.open_orders.long[&idx].close.qty != 0.0 + && self.hlcs[[k, idx, HIGH]] > self.open_orders.long[&idx].close.price + { + self.did_fill_long.insert(idx); + self.reset_trailing_prices(idx, LONG); + self.process_close_fill_long(k, idx); + if !self.positions.long.contains_key(&idx) { + break; + } else if self.open_orders.long[&idx].close.order_type + == OrderType::CloseGridLong + { + let next_long_close = self.calc_grid_close_long(k - 1, idx); + if next_long_close.order_type == OrderType::CloseTrailingLong { + break; + } + self.open_orders.long.get_mut(&idx).unwrap().close = next_long_close; + } else { + break; + } + } + + // Process entry fills + while self.open_orders.long[&idx].entry.qty != 0.0 + && self.hlcs[[k, idx, LOW]] < self.open_orders.long[&idx].entry.price + { + self.did_fill_long.insert(idx); + self.reset_trailing_prices(idx, LONG); + self.process_entry_fill_long(k, idx); + if self.open_orders.long[&idx].entry.order_type + == OrderType::EntryGridNormalLong + || self.open_orders.long[&idx].entry.order_type + == OrderType::EntryInitialNormalLong + { + let next_grid_entry = self.calc_next_grid_entry_long(k - 1, idx); + if next_grid_entry.qty == 0.0 + || next_grid_entry.price >= self.open_orders.long[&idx].entry.price + || next_grid_entry.order_type == OrderType::EntryTrailingNormalLong + || next_grid_entry.order_type == OrderType::EntryTrailingCroppedLong + { + break; + } + self.open_orders.long.get_mut(&idx).unwrap().entry = next_grid_entry; + } else { + break; + } + } + } + } + if self.trading_enabled.short { + let mut open_orders_keys_short: Vec = + self.open_orders.short.keys().cloned().collect(); + open_orders_keys_short.sort(); + for idx in open_orders_keys_short { + // check if coin is delisted + if let Some(&delist_timestamp) = self.delist_timestamps.get(&idx) { + if k >= delist_timestamp && self.positions.short.contains_key(&idx) { + self.open_orders.short.get_mut(&idx).unwrap().close = Order { + qty: self.positions.short[&idx].size.abs(), + price: round_( + f64::max( + self.hlcs[[k, idx, LOW]] + + self.exchange_params_list[idx].price_step, + self.positions.short[&idx].price, + ), + self.exchange_params_list[idx].price_step, + ), + order_type: OrderType::CloseUnstuckShort, + }; + } + } + // Process close fills + while self.open_orders.short[&idx].close.qty != 0.0 + && self.hlcs[[k, idx, LOW]] < self.open_orders.short[&idx].close.price + { + self.did_fill_short.insert(idx); + self.reset_trailing_prices(idx, SHORT); + self.process_close_fill_short(k, idx); + + if !self.positions.short.contains_key(&idx) { + break; + } else if self.open_orders.short[&idx].close.order_type + == OrderType::CloseGridShort + { + let next_short_close = self.calc_grid_close_short(k - 1, idx); + if next_short_close.order_type == OrderType::CloseTrailingShort { + break; + } + self.open_orders.short.get_mut(&idx).unwrap().close = next_short_close; + } else { + break; + } + } + + // Process entry fills + while self.open_orders.short[&idx].entry.qty != 0.0 + && self.hlcs[[k, idx, HIGH]] > self.open_orders.short[&idx].entry.price + { + self.did_fill_short.insert(idx); + self.reset_trailing_prices(idx, SHORT); + self.process_entry_fill_short(k, idx); + + if self.open_orders.short[&idx].entry.order_type + == OrderType::EntryGridNormalShort + || self.open_orders.short[&idx].entry.order_type + == OrderType::EntryInitialNormalShort + { + let next_grid_entry = self.calc_next_grid_entry_short(k - 1, idx); + if next_grid_entry.qty == 0.0 + || next_grid_entry.price <= self.open_orders.short[&idx].entry.price + || next_grid_entry.order_type == OrderType::EntryTrailingNormalShort + || next_grid_entry.order_type == OrderType::EntryTrailingCroppedShort + { + break; + } + self.open_orders.short.get_mut(&idx).unwrap().entry = next_grid_entry; + } else { + break; + } + } + } + } + } + + fn update_stuck_status(&mut self, idx: usize, pside: usize) { + match pside { + LONG => { + if self.positions.long.contains_key(&idx) { + let wallet_exposure = calc_wallet_exposure( + self.exchange_params_list[idx].c_mult, + self.balance, + self.positions.long[&idx].size, + self.positions.long[&idx].price, + ); + if wallet_exposure / self.bot_params_pair.long.wallet_exposure_limit + > self.bot_params_pair.long.unstuck_threshold + { + self.is_stuck.long.insert(idx); + } else { + self.is_stuck.long.remove(&idx); + } + } else { + self.is_stuck.long.remove(&idx); + } + } + SHORT => { + if self.positions.short.contains_key(&idx) { + let wallet_exposure = calc_wallet_exposure( + self.exchange_params_list[idx].c_mult, + self.balance, + self.positions.short[&idx].size.abs(), + self.positions.short[&idx].price, + ); + if wallet_exposure / self.bot_params_pair.short.wallet_exposure_limit + > self.bot_params_pair.short.unstuck_threshold + { + self.is_stuck.short.insert(idx); + } else { + self.is_stuck.short.remove(&idx); + } + } else { + self.is_stuck.short.remove(&idx); + } + } + _ => panic!("Invalid pside in update_stuck_status"), + } + } + + fn process_close_fill_long_new(&mut self, k: usize, idx: usize, close_fill: &Order) { + let mut new_psize = round_( + self.positions.long[&idx].size + close_fill.qty, + self.exchange_params_list[idx].qty_step, + ); + let mut adjusted_close_qty = close_fill.qty; + if new_psize < 0.0 { + println!("warning: close qty greater than psize long"); + println!("symbol: {}", self.backtest_params.symbols[idx]); + println!("new_psize: {}", new_psize); + println!("close order: {:?}", close_fill); + new_psize = 0.0; + adjusted_close_qty = -self.positions.long[&idx].size; + } + let fee_paid = -qty_to_cost( + adjusted_close_qty, + close_fill.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + let pnl = calc_pnl_long( + self.positions.long[&idx].price, + close_fill.price, + adjusted_close_qty, + self.exchange_params_list[idx].c_mult, + ); + self.pnl_cumsum_running += pnl; + self.pnl_cumsum_max = self.pnl_cumsum_max.max(self.pnl_cumsum_running); + self.balance += pnl + fee_paid; + + let current_pprice = self.positions.long[&idx].price; + if new_psize == 0.0 { + self.positions.long.remove(&idx); + } else { + self.positions.long.get_mut(&idx).unwrap().size = new_psize; + } + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: adjusted_close_qty, // fill qty + fill_price: close_fill.price, // fill price + position_size: new_psize, // psize after fill + position_price: current_pprice, // pprice after fill + order_type: close_fill.order_type.clone(), // fill type + }); + } + + fn process_close_fill_long(&mut self, k: usize, idx: usize) { + let mut new_psize = round_( + self.positions.long[&idx].size + self.open_orders.long[&idx].close.qty, + self.exchange_params_list[idx].qty_step, + ); + if new_psize < 0.0 { + println!("warning: close qty greater than psize long"); + println!("symbol: {}", self.backtest_params.symbols[idx]); + println!("new_psize: {}", new_psize); + println!("close order: {:?}", self.open_orders.long[&idx].close); + new_psize = 0.0; + self.open_orders.long.get_mut(&idx).unwrap().close = Order::new( + -self.positions.long[&idx].size, + self.open_orders.long[&idx].close.price, + self.open_orders.long[&idx].close.order_type.clone(), + ); + } + let fee_paid = -qty_to_cost( + self.open_orders.long[&idx].close.qty, + self.open_orders.long[&idx].close.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + let pnl = calc_pnl_long( + self.positions.long[&idx].price, + self.open_orders.long[&idx].close.price, + self.open_orders.long[&idx].close.qty, + self.exchange_params_list[idx].c_mult, + ); + self.pnl_cumsum_running += pnl; + self.pnl_cumsum_max = self.pnl_cumsum_max.max(self.pnl_cumsum_running); + self.balance += pnl + fee_paid; + + let current_pprice = self.positions.long[&idx].price; + if new_psize == 0.0 { + self.positions.long.remove(&idx); + } else { + self.positions.long.get_mut(&idx).unwrap().size = new_psize; + } + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: self.open_orders.long[&idx].close.qty, // fill qty + fill_price: self.open_orders.long[&idx].close.price, // fill price + position_size: new_psize, // psize after fill + position_price: current_pprice, // pprice after fill + order_type: self.open_orders.long[&idx].close.order_type.clone(), // fill type + }); + } + + fn process_close_fill_short_new(&mut self, k: usize, idx: usize, order: &Order) { + let mut new_psize = round_( + self.positions.short[&idx].size + order.qty, + self.exchange_params_list[idx].qty_step, + ); + let mut adjusted_close_qty = order.qty; + if new_psize > 0.0 { + println!("warning: close qty greater than psize short"); + println!("symbol: {}", self.backtest_params.symbols[idx]); + println!("new_psize: {}", new_psize); + println!("close order: {:?}", order); + new_psize = 0.0; + adjusted_close_qty = self.positions.short[&idx].size.abs(); + } + let fee_paid = -qty_to_cost( + adjusted_close_qty, + order.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + let pnl = calc_pnl_short( + self.positions.short[&idx].price, + order.price, + adjusted_close_qty, + self.exchange_params_list[idx].c_mult, + ); + self.pnl_cumsum_running += pnl; + self.pnl_cumsum_max = self.pnl_cumsum_max.max(self.pnl_cumsum_running); + self.balance += pnl + fee_paid; + + let current_pprice = self.positions.short[&idx].price; + if new_psize == 0.0 { + self.positions.short.remove(&idx); + } else { + self.positions.short.get_mut(&idx).unwrap().size = new_psize; + } + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: adjusted_close_qty, // fill qty + fill_price: order.price, // fill price + position_size: new_psize, // psize after fill + position_price: current_pprice, // pprice after fill + order_type: order.order_type.clone(), // fill type + }); + } + + fn process_close_fill_short(&mut self, k: usize, idx: usize) { + let mut new_psize = round_( + self.positions.short[&idx].size + self.open_orders.short[&idx].close.qty, + self.exchange_params_list[idx].qty_step, + ); + if new_psize > 0.0 { + println!("warning: close qty greater than psize short"); + println!("symbol: {}", self.backtest_params.symbols[idx]); + println!("new_psize: {}", new_psize); + println!("close order: {:?}", self.open_orders.short[&idx].close); + new_psize = 0.0; + self.open_orders.short.get_mut(&idx).unwrap().close = Order::new( + self.positions.short[&idx].size.abs(), + self.open_orders.short[&idx].close.price, + self.open_orders.short[&idx].close.order_type.clone(), + ); + } + let fee_paid = -qty_to_cost( + self.open_orders.short[&idx].close.qty, + self.open_orders.short[&idx].close.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + let pnl = calc_pnl_short( + self.positions.short[&idx].price, + self.open_orders.short[&idx].close.price, + self.open_orders.short[&idx].close.qty, + self.exchange_params_list[idx].c_mult, + ); + self.pnl_cumsum_running += pnl; + self.pnl_cumsum_max = self.pnl_cumsum_max.max(self.pnl_cumsum_running); + self.balance += pnl + fee_paid; + + let current_pprice = self.positions.short[&idx].price; + if new_psize == 0.0 { + self.positions.short.remove(&idx); + } else { + self.positions.short.get_mut(&idx).unwrap().size = new_psize; + } + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: self.open_orders.short[&idx].close.qty, // fill qty + fill_price: self.open_orders.short[&idx].close.price, // fill price + position_size: new_psize, // psize after fill + position_price: current_pprice, // pprice after fill + order_type: self.open_orders.short[&idx].close.order_type.clone(), // fill type + }); + } + + fn process_entry_fill_long_new(&mut self, k: usize, idx: usize, order: &Order) { + // long entry fill + let fee_paid = -qty_to_cost( + order.qty, + order.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + self.balance += fee_paid; + let position_entry = self + .positions + .long + .entry(idx) + .or_insert(Position::default()); + let (new_psize, new_pprice) = calc_new_psize_pprice( + position_entry.size, + position_entry.price, + order.qty, + order.price, + self.exchange_params_list[idx].qty_step, + ); + self.positions.long.get_mut(&idx).unwrap().size = new_psize; + self.positions.long.get_mut(&idx).unwrap().price = new_pprice; + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl: 0.0, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: order.qty, // fill qty + fill_price: order.price, // fill price + position_size: self.positions.long[&idx].size, // psize after fill + position_price: self.positions.long[&idx].price, // pprice after fill + order_type: order.order_type.clone(), // fill type + }); + } + + fn process_entry_fill_long(&mut self, k: usize, idx: usize) { + // long entry fill + let fee_paid = -qty_to_cost( + self.open_orders.long[&idx].entry.qty, + self.open_orders.long[&idx].entry.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + self.balance += fee_paid; + let position_entry = self + .positions + .long + .entry(idx) + .or_insert(Position::default()); + let (new_psize, new_pprice) = calc_new_psize_pprice( + position_entry.size, + position_entry.price, + self.open_orders.long[&idx].entry.qty, + self.open_orders.long[&idx].entry.price, + self.exchange_params_list[idx].qty_step, + ); + self.positions.long.get_mut(&idx).unwrap().size = new_psize; + self.positions.long.get_mut(&idx).unwrap().price = new_pprice; + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl: 0.0, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: self.open_orders.long[&idx].entry.qty, // fill qty + fill_price: self.open_orders.long[&idx].entry.price, // fill price + position_size: self.positions.long[&idx].size, // psize after fill + position_price: self.positions.long[&idx].price, // pprice after fill + order_type: self.open_orders.long[&idx].entry.order_type.clone(), // fill type + }); + } + + fn process_entry_fill_short_new(&mut self, k: usize, idx: usize, order: &Order) { + // short entry fill + let fee_paid = -qty_to_cost( + order.qty, + order.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + self.balance += fee_paid; + let position_entry = self + .positions + .short + .entry(idx) + .or_insert(Position::default()); + let (new_psize, new_pprice) = calc_new_psize_pprice( + position_entry.size, + position_entry.price, + order.qty, + order.price, + self.exchange_params_list[idx].qty_step, + ); + self.positions.short.get_mut(&idx).unwrap().size = new_psize; + self.positions.short.get_mut(&idx).unwrap().price = new_pprice; + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl: 0.0, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: order.qty, // fill qty + fill_price: order.price, // fill price + position_size: self.positions.short[&idx].size, // psize after fill + position_price: self.positions.short[&idx].price, // pprice after fill + order_type: order.order_type.clone(), // fill type + }); + } + + fn process_entry_fill_short(&mut self, k: usize, idx: usize) { + // short entry fill + let fee_paid = -qty_to_cost( + self.open_orders.short[&idx].entry.qty, + self.open_orders.short[&idx].entry.price, + self.exchange_params_list[idx].c_mult, + ) * self.backtest_params.maker_fee; + self.balance += fee_paid; + let position_entry = self + .positions + .short + .entry(idx) + .or_insert(Position::default()); + let (new_psize, new_pprice) = calc_new_psize_pprice( + position_entry.size, + position_entry.price, + self.open_orders.short[&idx].entry.qty, + self.open_orders.short[&idx].entry.price, + self.exchange_params_list[idx].qty_step, + ); + self.positions.short.get_mut(&idx).unwrap().size = new_psize; + self.positions.short.get_mut(&idx).unwrap().price = new_pprice; + self.fills.push(Fill { + index: k, // index minute + symbol: self.backtest_params.symbols[idx].clone(), // symbol + pnl: 0.0, // realized pnl + fee_paid, // fee paid + balance: self.balance, // balance after fill + fill_qty: self.open_orders.short[&idx].entry.qty, // fill qty + fill_price: self.open_orders.short[&idx].entry.price, // fill price + position_size: self.positions.short[&idx].size, // psize after fill + position_price: self.positions.short[&idx].price, // pprice after fill + order_type: self.open_orders.short[&idx].entry.order_type.clone(), // fill type + }); + } + + fn calc_next_grid_entry_long(&self, k: usize, idx: usize) -> Order { + let state_params = self.create_state_params(k, idx, LONG); + let binding = Position::default(); + let position = self.positions.long.get(&idx).unwrap_or(&binding); + calc_next_entry_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + position, + &self.trailing_prices.long[&idx], + ) + } + + fn calc_next_grid_entry_short(&self, k: usize, idx: usize) -> Order { + let state_params = self.create_state_params(k, idx, SHORT); + let binding = Position::default(); + let position = self.positions.short.get(&idx).unwrap_or(&binding); + calc_next_entry_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + position, + &self.trailing_prices.short[&idx], + ) + } + + fn calc_grid_close_long(&self, k: usize, idx: usize) -> Order { + let state_params = self.create_state_params(k, idx, LONG); + let binding = Position::default(); + let position = self.positions.long.get(&idx).unwrap_or(&binding); + calc_next_close_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ) + } + + fn calc_grid_close_short(&self, k: usize, idx: usize) -> Order { + let state_params = self.create_state_params(k, idx, SHORT); + let binding = Position::default(); + let position = self.positions.short.get(&idx).unwrap_or(&binding); + calc_next_close_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ) + } + + fn reset_trailing_prices(&mut self, idx: usize, pside: usize) { + let trailing_price_bundle = if pside == LONG { + self.trailing_prices.long.entry(idx).or_default() + } else { + self.trailing_prices.short.entry(idx).or_default() + }; + *trailing_price_bundle = TrailingPriceBundle::default(); + } + + fn update_trailing_prices(&mut self, k: usize, idx: usize, pside: usize) { + let trailing_price_bundle = if pside == LONG { + self.trailing_prices.long.entry(idx).or_default() + } else { + self.trailing_prices.short.entry(idx).or_default() + }; + if self.hlcs[[k, idx, LOW]] < trailing_price_bundle.min_since_open { + trailing_price_bundle.min_since_open = self.hlcs[[k, idx, LOW]]; + trailing_price_bundle.max_since_min = self.hlcs[[k, idx, CLOSE]]; + } else { + trailing_price_bundle.max_since_min = trailing_price_bundle + .max_since_min + .max(self.hlcs[[k, idx, HIGH]]); + } + if self.hlcs[[k, idx, HIGH]] > trailing_price_bundle.max_since_open { + trailing_price_bundle.max_since_open = self.hlcs[[k, idx, HIGH]]; + trailing_price_bundle.min_since_max = self.hlcs[[k, idx, CLOSE]]; + } else { + trailing_price_bundle.min_since_max = trailing_price_bundle + .min_since_max + .min(self.hlcs[[k, idx, LOW]]); + } + } + + fn has_next_grid_order(&mut self, order: &Order, pside: usize) -> bool { + match pside { + LONG => { + if order.qty == 0.0 { + false + } else if order.qty > 0.0 { + order.order_type == OrderType::EntryGridNormalLong + || order.order_type == OrderType::EntryInitialNormalLong + || order.order_type == OrderType::EntryInitialPartialLong + } else { + order.order_type == OrderType::CloseGridLong + } + } + SHORT => { + if order.qty == 0.0 { + false + } else if order.qty < 0.0 { + order.order_type == OrderType::EntryGridNormalShort + || order.order_type == OrderType::EntryInitialNormalShort + || order.order_type == OrderType::EntryInitialPartialShort + } else { + order.order_type == OrderType::CloseGridShort + } + } + _ => panic!("Invalid pside"), + } + } + + fn update_open_orders_long_single_new(&mut self, k: usize, idx: usize) { + let state_params = self.create_state_params(k, idx, LONG); + let position = self + .positions + .long + .get(&idx) + .cloned() + .unwrap_or(Position::default()); + + // check if coin is delisted; if so, close pos as unstuck close + if let Some(&delist_timestamp) = self.delist_timestamps.get(&idx) { + if k >= delist_timestamp && self.positions.long.contains_key(&idx) { + self.open_orders_new.long.get_mut(&idx).unwrap().closes = [Order { + qty: -self.positions.long[&idx].size, + price: round_( + f64::min( + self.hlcs[[k, idx, HIGH]] - self.exchange_params_list[idx].price_step, + self.positions.long[&idx].price, + ), + self.exchange_params_list[idx].price_step, + ), + order_type: OrderType::CloseUnstuckLong, + }] + .to_vec(); + self.open_orders_new.long.entry(idx).or_default().entries = Vec::new(); + return; + } + } + let next_entry_order = calc_next_entry_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ); + // if initial entry or grid, peek next candle to see if order will fill + if self.order_filled(k + 1, idx, &next_entry_order) + && self.has_next_grid_order(&next_entry_order, LONG) + { + self.open_orders_new.long.entry(idx).or_default().entries = calc_entries_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ); + } else { + self.open_orders_new.long.entry(idx).or_default().entries = [next_entry_order].to_vec(); + } + let next_close_order = calc_next_close_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ); + // if initial entry or grid, peek next candle to see if order will fill + if self.order_filled(k + 1, idx, &next_close_order) + && self.has_next_grid_order(&next_close_order, LONG) + { + self.open_orders_new.long.entry(idx).or_default().closes = calc_closes_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ); + } else { + self.open_orders_new.long.entry(idx).or_default().closes = [next_close_order].to_vec(); + } + } + + fn update_open_orders_short_single_new(&mut self, k: usize, idx: usize) { + let state_params = self.create_state_params(k, idx, SHORT); + let position = self + .positions + .short + .get(&idx) + .cloned() + .unwrap_or(Position::default()); + + // check if coin is delisted; if so, close pos as unstuck close + if let Some(&delist_timestamp) = self.delist_timestamps.get(&idx) { + if k >= delist_timestamp && self.positions.short.contains_key(&idx) { + self.open_orders_new.short.get_mut(&idx).unwrap().closes = [Order { + qty: self.positions.short[&idx].size.abs(), + price: round_( + f64::max( + self.hlcs[[k, idx, LOW]] + self.exchange_params_list[idx].price_step, + self.positions.short[&idx].price, + ), + self.exchange_params_list[idx].price_step, + ), + order_type: OrderType::CloseUnstuckLong, + }] + .to_vec(); + self.open_orders_new.short.entry(idx).or_default().entries = Vec::new(); + return; + } + } + let next_entry_order = calc_next_entry_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ); + // if initial entry or grid, peek next candle to see if order will fill + if self.order_filled(k + 1, idx, &next_entry_order) + && self.has_next_grid_order(&next_entry_order, SHORT) + { + self.open_orders_new.short.entry(idx).or_default().entries = calc_entries_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ); + } else { + self.open_orders_new.short.entry(idx).or_default().entries = + [next_entry_order].to_vec(); + } + + let next_close_order = calc_next_close_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ); + // if initial entry or grid, peek next candle to see if order will fill + if self.order_filled(k + 1, idx, &next_close_order) + && self.has_next_grid_order(&next_close_order, SHORT) + { + self.open_orders_new.short.entry(idx).or_default().closes = calc_closes_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ); + } else { + self.open_orders_new.short.entry(idx).or_default().closes = [next_close_order].to_vec() + } + } + + fn order_filled(&self, k: usize, idx: usize, order: &Order) -> bool { + // check if will fill in next candle + if order.qty > 0.0 { + self.hlcs[[k, idx, LOW]] < order.price + } else if order.qty < 0.0 { + self.hlcs[[k, idx, HIGH]] > order.price + } else { + false + } + } + + fn update_open_orders_long_single(&mut self, k: usize, idx: usize) { + let default_position = Position::default(); + let state_params = self.create_state_params(k, idx, LONG); + let position = self + .positions + .long + .get(&idx) + .cloned() + .unwrap_or(default_position); + let order_bundle = self + .open_orders + .long + .entry(idx) + .or_insert_with(OpenOrderBundle::default); + order_bundle.entry = calc_next_entry_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ); + order_bundle.close = calc_next_close_long( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.long, + &position, + &self.trailing_prices.long[&idx], + ); + } + + fn update_open_orders_short_single(&mut self, k: usize, idx: usize) { + let default_position = Position::default(); + let state_params = self.create_state_params(k, idx, SHORT); + let position = self + .positions + .short + .get(&idx) + .cloned() + .unwrap_or(default_position); + let order_bundle = self + .open_orders + .short + .entry(idx) + .or_insert_with(OpenOrderBundle::default); + order_bundle.entry = calc_next_entry_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ); + order_bundle.close = calc_next_close_short( + &self.exchange_params_list[idx], + &state_params, + &self.bot_params_pair.short, + &position, + &self.trailing_prices.short[&idx], + ); + } + + fn calc_unstucking_close(&mut self, k: usize) -> (usize, usize, Order) { + let mut stuck_positions = Vec::new(); + let mut unstuck_allowances = (0.0, 0.0); + + if self.bot_params_pair.long.unstuck_loss_allowance_pct > 0.0 { + unstuck_allowances.0 = calc_auto_unstuck_allowance( + self.balance, + self.bot_params_pair.long.unstuck_loss_allowance_pct, + self.pnl_cumsum_max, + self.pnl_cumsum_running, + ); + if unstuck_allowances.0 > 0.0 { + // Check long positions + for (&idx, position) in &self.positions.long { + let wallet_exposure = calc_wallet_exposure( + self.exchange_params_list[idx].c_mult, + self.balance, + position.size, + position.price, + ); + if wallet_exposure / self.bot_params_pair.long.wallet_exposure_limit + > self.bot_params_pair.long.unstuck_threshold + { + let pprice_diff = + calc_pprice_diff_int(LONG, position.price, self.hlcs[[k, idx, CLOSE]]); + stuck_positions.push((idx, LONG, pprice_diff)); + } + } + } + } + + if self.bot_params_pair.short.unstuck_loss_allowance_pct > 0.0 { + unstuck_allowances.1 = calc_auto_unstuck_allowance( + self.balance, + self.bot_params_pair.short.unstuck_loss_allowance_pct, + self.pnl_cumsum_max, + self.pnl_cumsum_running, + ); + if unstuck_allowances.1 > 0.0 { + // Check short positions + for (&idx, position) in &self.positions.short { + let wallet_exposure = calc_wallet_exposure( + self.exchange_params_list[idx].c_mult, + self.balance, + position.size, + position.price, + ); + if wallet_exposure / self.bot_params_pair.short.wallet_exposure_limit + > self.bot_params_pair.short.unstuck_threshold + { + let pprice_diff = + calc_pprice_diff_int(SHORT, position.price, self.hlcs[[k, idx, CLOSE]]); + stuck_positions.push((idx, SHORT, pprice_diff)); + } + } + } + } + if stuck_positions.is_empty() { + return (NO_POS, NO_POS, Order::default()); + } + // Sort stuck positions by pprice_diff + stuck_positions.sort_by(|a, b| a.2.partial_cmp(&b.2).unwrap_or(Ordering::Equal)); + for (idx, pside, _) in stuck_positions { + match pside { + LONG => { + let close_price = f64::max( + self.hlcs[[k, idx, CLOSE]], + round_up( + self.emas[idx].compute_bands(LONG).upper + * (1.0 + self.bot_params_pair.long.unstuck_ema_dist), + self.exchange_params_list[idx].price_step, + ), + ); + if self.open_orders.long[&idx].close.qty == 0.0 + || close_price < self.open_orders.long[&idx].close.price + { + let close_qty = -f64::min( + self.positions.long[&idx].size, + f64::max( + calc_min_entry_qty(close_price, &self.exchange_params_list[idx]), + round_dn( + cost_to_qty( + self.balance + * self.bot_params_pair.long.wallet_exposure_limit + * self.bot_params_pair.long.unstuck_close_pct, + close_price, + self.exchange_params_list[idx].c_mult, + ), + self.exchange_params_list[idx].qty_step, + ), + ), + ); + if close_qty != 0.0 { + return ( + idx, + LONG, + Order { + qty: close_qty, + price: close_price, + order_type: OrderType::CloseUnstuckLong, + }, + ); + } + } + } + SHORT => { + let close_price = f64::min( + self.hlcs[[k, idx, CLOSE]], + round_dn( + self.emas[idx].compute_bands(SHORT).lower + * (1.0 - self.bot_params_pair.short.unstuck_ema_dist), + self.exchange_params_list[idx].price_step, + ), + ); + if self.open_orders.short[&idx].close.qty == 0.0 + || close_price > self.open_orders.short[&idx].close.price + { + let close_qty = f64::min( + self.positions.short[&idx].size.abs(), + f64::max( + calc_min_entry_qty(close_price, &self.exchange_params_list[idx]), + round_dn( + cost_to_qty( + self.balance + * self.bot_params_pair.short.wallet_exposure_limit + * self.bot_params_pair.short.unstuck_close_pct, + close_price, + self.exchange_params_list[idx].c_mult, + ), + self.exchange_params_list[idx].qty_step, + ), + ), + ); + if close_qty != 0.0 { + return ( + idx, + SHORT, + Order { + qty: close_qty, + price: close_price, + order_type: OrderType::CloseUnstuckShort, + }, + ); + } + } + } + _ => panic!("Invalid pside"), + }; + } + + (NO_POS, NO_POS, Order::default()) + } + + fn calc_unstucking_close_new(&mut self, k: usize) -> (usize, usize, Order) { + let mut stuck_positions = Vec::new(); + let mut unstuck_allowances = (0.0, 0.0); + + if self.bot_params_pair.long.unstuck_loss_allowance_pct > 0.0 { + unstuck_allowances.0 = calc_auto_unstuck_allowance( + self.balance, + self.bot_params_pair.long.unstuck_loss_allowance_pct, + self.pnl_cumsum_max, + self.pnl_cumsum_running, + ); + if unstuck_allowances.0 > 0.0 { + // Check long positions + for (&idx, position) in &self.positions.long { + let wallet_exposure = calc_wallet_exposure( + self.exchange_params_list[idx].c_mult, + self.balance, + position.size, + position.price, + ); + if wallet_exposure / self.bot_params_pair.long.wallet_exposure_limit + > self.bot_params_pair.long.unstuck_threshold + { + let pprice_diff = + calc_pprice_diff_int(LONG, position.price, self.hlcs[[k, idx, CLOSE]]); + stuck_positions.push((idx, LONG, pprice_diff)); + } + } + } + } + + if self.bot_params_pair.short.unstuck_loss_allowance_pct > 0.0 { + unstuck_allowances.1 = calc_auto_unstuck_allowance( + self.balance, + self.bot_params_pair.short.unstuck_loss_allowance_pct, + self.pnl_cumsum_max, + self.pnl_cumsum_running, + ); + if unstuck_allowances.1 > 0.0 { + // Check short positions + for (&idx, position) in &self.positions.short { + let wallet_exposure = calc_wallet_exposure( + self.exchange_params_list[idx].c_mult, + self.balance, + position.size, + position.price, + ); + if wallet_exposure / self.bot_params_pair.short.wallet_exposure_limit + > self.bot_params_pair.short.unstuck_threshold + { + let pprice_diff = + calc_pprice_diff_int(SHORT, position.price, self.hlcs[[k, idx, CLOSE]]); + stuck_positions.push((idx, SHORT, pprice_diff)); + } + } + } + } + if stuck_positions.is_empty() { + return (NO_POS, NO_POS, Order::default()); + } + // Sort stuck positions by pprice_diff + stuck_positions.sort_by(|a, b| a.2.partial_cmp(&b.2).unwrap_or(Ordering::Equal)); + for (idx, pside, _) in stuck_positions { + match pside { + LONG => { + let close_price = f64::max( + self.hlcs[[k, idx, CLOSE]], + round_up( + self.emas[idx].compute_bands(LONG).upper + * (1.0 + self.bot_params_pair.long.unstuck_ema_dist), + self.exchange_params_list[idx].price_step, + ), + ); + if self.open_orders_new.long[&idx].closes.is_empty() + || self.open_orders_new.long[&idx].closes[0].qty == 0.0 + || close_price < self.open_orders_new.long[&idx].closes[0].price + { + let close_qty = -f64::min( + self.positions.long[&idx].size, + f64::max( + calc_min_entry_qty(close_price, &self.exchange_params_list[idx]), + round_dn( + cost_to_qty( + self.balance + * self.bot_params_pair.long.wallet_exposure_limit + * self.bot_params_pair.long.unstuck_close_pct, + close_price, + self.exchange_params_list[idx].c_mult, + ), + self.exchange_params_list[idx].qty_step, + ), + ), + ); + if close_qty != 0.0 { + return ( + idx, + LONG, + Order { + qty: close_qty, + price: close_price, + order_type: OrderType::CloseUnstuckLong, + }, + ); + } + } + } + SHORT => { + let close_price = f64::min( + self.hlcs[[k, idx, CLOSE]], + round_dn( + self.emas[idx].compute_bands(SHORT).lower + * (1.0 - self.bot_params_pair.short.unstuck_ema_dist), + self.exchange_params_list[idx].price_step, + ), + ); + if self.open_orders_new.short[&idx].closes.is_empty() + || self.open_orders_new.short[&idx].closes[0].qty == 0.0 + || close_price > self.open_orders_new.short[&idx].closes[0].price + { + let close_qty = f64::min( + self.positions.short[&idx].size.abs(), + f64::max( + calc_min_entry_qty(close_price, &self.exchange_params_list[idx]), + round_dn( + cost_to_qty( + self.balance + * self.bot_params_pair.short.wallet_exposure_limit + * self.bot_params_pair.short.unstuck_close_pct, + close_price, + self.exchange_params_list[idx].c_mult, + ), + self.exchange_params_list[idx].qty_step, + ), + ), + ); + if close_qty != 0.0 { + return ( + idx, + SHORT, + Order { + qty: close_qty, + price: close_price, + order_type: OrderType::CloseUnstuckShort, + }, + ); + } + } + } + _ => panic!("Invalid pside"), + }; + } + + (NO_POS, NO_POS, Order::default()) + } + + fn update_open_orders_any_fill_new(&mut self, k: usize) { + if self.trading_enabled.long { + if self.trailing_enabled.long { + let positions_long_indices: Vec = + self.positions.long.keys().cloned().collect(); + for idx in &positions_long_indices { + if !self.did_fill_long.contains(&idx) { + self.update_trailing_prices(k, *idx, LONG); + } + } + } + self.update_actives(k, LONG); + self.open_orders + .long + .retain(|&idx, _| self.actives.long.contains(&idx)); + let active_long_indices: Vec = self.actives.long.iter().cloned().collect(); + for &idx in &active_long_indices { + self.update_stuck_status(idx, LONG); + self.update_open_orders_long_single_new(k, idx); + } + } + if self.trading_enabled.short { + if self.trailing_enabled.short { + let positions_short_indices: Vec = + self.positions.short.keys().cloned().collect(); + for idx in &positions_short_indices { + if !self.did_fill_short.contains(&idx) { + self.update_trailing_prices(k, *idx, SHORT); + } + } + } + self.update_actives(k, SHORT); + self.open_orders + .short + .retain(|&idx, _| self.actives.short.contains(&idx)); + let active_short_indices: Vec = self.actives.short.iter().cloned().collect(); + for &idx in &active_short_indices { + self.update_stuck_status(idx, SHORT); + self.update_open_orders_short_single_new(k, idx); + } + } + let (unstucking_idx, unstucking_pside, unstucking_close) = + self.calc_unstucking_close_new(k); + if unstucking_idx != NO_POS { + match unstucking_pside { + LONG => { + self.open_orders_new + .long + .get_mut(&unstucking_idx) + .unwrap() + .closes = [unstucking_close].to_vec(); + } + SHORT => { + self.open_orders_new + .short + .get_mut(&unstucking_idx) + .unwrap() + .closes = [unstucking_close].to_vec(); + } + _ => panic!("Invalid unstucking_pside"), + } + } + } + + fn update_open_orders_any_fill(&mut self, k: usize) { + if self.trading_enabled.long { + if self.trailing_enabled.long { + let positions_long_indices: Vec = + self.positions.long.keys().cloned().collect(); + for idx in &positions_long_indices { + if !self.did_fill_long.contains(&idx) { + self.update_trailing_prices(k, *idx, LONG); + } + } + } + self.update_actives(k, LONG); + self.open_orders + .long + .retain(|&idx, _| self.actives.long.contains(&idx)); + let active_long_indices: Vec = self.actives.long.iter().cloned().collect(); + for &idx in &active_long_indices { + self.update_stuck_status(idx, LONG); + self.update_open_orders_long_single(k, idx); + } + } + if self.trading_enabled.short { + if self.trailing_enabled.short { + let positions_short_indices: Vec = + self.positions.short.keys().cloned().collect(); + for idx in &positions_short_indices { + if !self.did_fill_short.contains(&idx) { + self.update_trailing_prices(k, *idx, SHORT); + } + } + } + self.update_actives(k, SHORT); + self.open_orders + .short + .retain(|&idx, _| self.actives.short.contains(&idx)); + let active_short_indices: Vec = self.actives.short.iter().cloned().collect(); + for &idx in &active_short_indices { + self.update_stuck_status(idx, SHORT); + self.update_open_orders_short_single(k, idx); + } + } + let (unstucking_idx, unstucking_pside, unstucking_close) = self.calc_unstucking_close(k); + if unstucking_idx != NO_POS { + match unstucking_pside { + LONG => { + self.open_orders + .long + .get_mut(&unstucking_idx) + .unwrap() + .close = unstucking_close; + } + SHORT => { + self.open_orders + .short + .get_mut(&unstucking_idx) + .unwrap() + .close = unstucking_close; + } + _ => panic!("Invalid unstucking_pside"), + } + } + } + + fn update_open_orders_no_fill_new(&mut self, k: usize) { + // Update selectively: + // - actives if len(positions) < n_positions + // - unstuck close if any stuck + // - entries for symbols with open trailing entries + // - closes for symbols with open trailing closes + if self.trading_enabled.long { + let positions_long_indices: Vec = self.positions.long.keys().cloned().collect(); + if self.trailing_enabled.long { + for idx in &positions_long_indices { + if !self.did_fill_long.contains(idx) { + self.update_trailing_prices(k, *idx, LONG); + } + } + } + let mut actives_without_pos = Vec::::new(); + if positions_long_indices.len() < self.bot_params_pair.long.n_positions { + actives_without_pos = self.update_actives(k, LONG); + self.open_orders_new + .long + .retain(|&idx, _| self.actives.long.contains(&idx)); + } + let active_long_indices: Vec = self.actives.long.iter().cloned().collect(); + + for idx in active_long_indices { + if actives_without_pos.contains(&idx) + || self.open_orders_new.long.get(&idx).map_or(false, |orders| { + orders.closes.iter().any(|order| { + order.order_type == OrderType::CloseUnstuckLong + || order.order_type == OrderType::CloseTrailingLong + }) || orders.entries.iter().any(|order| { + order.order_type == OrderType::EntryTrailingNormalLong + || order.order_type == OrderType::EntryTrailingCroppedLong + }) + }) + { + self.update_open_orders_long_single_new(k, idx); + } + } + } + + if self.trading_enabled.short { + let positions_short_indices: Vec = + self.positions.short.keys().cloned().collect(); + if self.trailing_enabled.short { + for idx in &positions_short_indices { + if !self.did_fill_short.contains(idx) { + self.update_trailing_prices(k, *idx, SHORT); + } + } + } + let mut actives_without_pos = Vec::::new(); + if positions_short_indices.len() < self.bot_params_pair.short.n_positions { + actives_without_pos = self.update_actives(k, SHORT); + self.open_orders_new + .short + .retain(|&idx, _| self.actives.short.contains(&idx)); + } + let active_short_indices: Vec = self.actives.short.iter().cloned().collect(); + for idx in active_short_indices { + if actives_without_pos.contains(&idx) + || self + .open_orders_new + .short + .get(&idx) + .map_or(false, |orders| { + orders.closes.iter().any(|order| { + order.order_type == OrderType::CloseUnstuckShort + || order.order_type == OrderType::CloseTrailingShort + }) || orders.entries.iter().any(|order| { + order.order_type == OrderType::EntryTrailingNormalShort + || order.order_type == OrderType::EntryTrailingCroppedShort + }) + }) + { + self.update_open_orders_short_single_new(k, idx); + } + } + } + + if !self.is_stuck.long.is_empty() || !self.is_stuck.short.is_empty() { + let (unstucking_idx, unstucking_pside, unstucking_close) = + self.calc_unstucking_close_new(k); + if unstucking_idx != NO_POS { + match unstucking_pside { + LONG => { + if let Some(orders) = self.open_orders_new.long.get_mut(&unstucking_idx) { + orders.closes = vec![unstucking_close]; + } + } + SHORT => { + if let Some(orders) = self.open_orders_new.short.get_mut(&unstucking_idx) { + orders.closes = vec![unstucking_close]; + } + } + _ => panic!("Invalid unstucking_pside"), + } + } + } + } + + fn update_open_orders_no_fill(&mut self, k: usize) { + // update selectively: + // - actives if len(positions) < n_positions + // - unstuck close if any stuck + // - entries for symbols with open trailing entries + // - closes for symbols with open trailing closes + if self.trading_enabled.long { + let positions_long_indices: Vec = self.positions.long.keys().cloned().collect(); + if self.trailing_enabled.long { + for idx in &positions_long_indices { + if !self.did_fill_long.contains(&idx) { + self.update_trailing_prices(k, *idx, LONG); + } + } + } + let mut actives_without_pos = Vec::::new(); + if positions_long_indices.len() < self.bot_params_pair.long.n_positions { + actives_without_pos = self.update_actives(k, LONG); + self.open_orders + .long + .retain(|&idx, _| self.actives.long.contains(&idx)); + } + let active_long_indices: Vec = self.actives.long.iter().cloned().collect(); + for idx in active_long_indices { + if actives_without_pos.contains(&idx) + || self.open_orders.long[&idx].close.order_type == OrderType::CloseUnstuckLong + || self.open_orders.long[&idx].entry.order_type + == OrderType::EntryTrailingNormalLong + || self.open_orders.long[&idx].entry.order_type + == OrderType::EntryTrailingCroppedLong + || self.open_orders.long[&idx].close.order_type == OrderType::CloseTrailingLong + { + self.update_open_orders_long_single(k, idx); + } + } + } + if self.trading_enabled.short { + let positions_short_indices: Vec = + self.positions.short.keys().cloned().collect(); + if self.trailing_enabled.short { + for idx in &positions_short_indices { + if !self.did_fill_short.contains(&idx) { + self.update_trailing_prices(k, *idx, SHORT); + } + } + } + let mut actives_without_pos = Vec::::new(); + if positions_short_indices.len() < self.bot_params_pair.short.n_positions { + actives_without_pos = self.update_actives(k, SHORT); + self.open_orders + .short + .retain(|&idx, _| self.actives.short.contains(&idx)); + } + let active_short_indices: Vec = self.actives.short.iter().cloned().collect(); + for idx in active_short_indices { + if actives_without_pos.contains(&idx) + || self.open_orders.short[&idx].close.order_type == OrderType::CloseUnstuckShort + || self.open_orders.short[&idx].entry.order_type + == OrderType::EntryTrailingNormalShort + || self.open_orders.short[&idx].entry.order_type + == OrderType::EntryTrailingCroppedShort + || self.open_orders.short[&idx].close.order_type + == OrderType::CloseTrailingShort + { + self.update_open_orders_short_single(k, idx); + } + } + } + if !self.is_stuck.long.is_empty() || !self.is_stuck.short.is_empty() { + let (unstucking_idx, unstucking_pside, unstucking_close) = + self.calc_unstucking_close(k); + if unstucking_idx != NO_POS { + match unstucking_pside { + LONG => { + self.open_orders + .long + .get_mut(&unstucking_idx) + .unwrap() + .close = unstucking_close; + } + SHORT => { + self.open_orders + .short + .get_mut(&unstucking_idx) + .unwrap() + .close = unstucking_close; + } + _ => panic!("Invalid unstucking_pside"), + } + } + } + } + + fn update_open_orders(&mut self, k: usize) { + if (!self.did_fill_long.is_empty() || !self.did_fill_short.is_empty()) { + self.update_open_orders_any_fill_new(k); + } else { + self.update_open_orders_no_fill_new(k); + } + } + + fn update_open_orders_old(&mut self, k: usize) { + if (!self.did_fill_long.is_empty() || !self.did_fill_short.is_empty()) { + self.update_open_orders_any_fill(k); + } else { + self.update_open_orders_no_fill(k); + } + } + + #[inline] + fn update_emas(&mut self, k: usize) { + for i in 0..self.n_markets { + let close_price = self.hlcs[[k, i, CLOSE]]; + + let long_alphas = &self.ema_alphas.long.alphas; + let long_alphas_inv = &self.ema_alphas.long.alphas_inv; + let short_alphas = &self.ema_alphas.short.alphas; + let short_alphas_inv = &self.ema_alphas.short.alphas_inv; + + let emas = &mut self.emas[i]; + + for z in 0..3 { + emas.long[z] = close_price * long_alphas[z] + emas.long[z] * long_alphas_inv[z]; + emas.short[z] = close_price * short_alphas[z] + emas.short[z] * short_alphas_inv[z]; + } + } + } +} + +fn calc_ema_alphas(bot_params_pair: &BotParamsPair) -> EmaAlphas { + let mut ema_spans_long = [ + bot_params_pair.long.ema_span_0, + bot_params_pair.long.ema_span_1, + (bot_params_pair.long.ema_span_0 * bot_params_pair.long.ema_span_1).sqrt(), + ]; + ema_spans_long.sort_by(|a, b| a.partial_cmp(b).unwrap()); + + let mut ema_spans_short = [ + bot_params_pair.short.ema_span_0, + bot_params_pair.short.ema_span_1, + (bot_params_pair.short.ema_span_0 * bot_params_pair.short.ema_span_1).sqrt(), + ]; + ema_spans_short.sort_by(|a, b| a.partial_cmp(b).unwrap()); + + let ema_alphas_long = ema_spans_long.map(|x| 2.0 / (x + 1.0)); + let ema_alphas_long_inv = ema_alphas_long.map(|x| 1.0 - x); + + let ema_alphas_short = ema_spans_short.map(|x| 2.0 / (x + 1.0)); + let ema_alphas_short_inv = ema_alphas_short.map(|x| 1.0 - x); + + EmaAlphas { + long: Alphas { + alphas: ema_alphas_long, + alphas_inv: ema_alphas_long_inv, + }, + short: Alphas { + alphas: ema_alphas_short, + alphas_inv: ema_alphas_short_inv, + }, + } +} + +pub fn analyze_backtest(fills: &[Fill], equities: &Vec) -> Analysis { + // Calculate daily equities + let mut daily_eqs = Vec::new(); + let mut current_day = 0; + let mut sum = 0.0; + let mut count = 0; + for (i, &equity) in equities.iter().enumerate() { + let day = i / 1440; + if day > current_day { + daily_eqs.push(sum / count as f64); + current_day = day; + sum = equity; + count = 1; + } else { + sum += equity; + count += 1; + } + } + if count > 0 { + daily_eqs.push(sum / count as f64); + } + + // Calculate daily percentage changes + let daily_eqs_pct_change: Vec = + daily_eqs.windows(2).map(|w| (w[1] - w[0]) / w[0]).collect(); + + // Calculate ADG and Sharpe ratio + let adg = daily_eqs_pct_change.iter().sum::() / daily_eqs_pct_change.len() as f64; + // Calculate MDG + let mut sorted_pct_change = daily_eqs_pct_change.clone(); + sorted_pct_change.sort_by(|a, b| a.partial_cmp(b).unwrap_or(Ordering::Equal)); + let mdg = if sorted_pct_change.len() % 2 == 0 { + (sorted_pct_change[sorted_pct_change.len() / 2 - 1] + + sorted_pct_change[sorted_pct_change.len() / 2]) + / 2.0 + } else { + sorted_pct_change[sorted_pct_change.len() / 2] + }; + // Calculate Sharpe Ratio + let variance = daily_eqs_pct_change + .iter() + .map(|&x| (x - adg).powi(2)) + .sum::() + / daily_eqs_pct_change.len() as f64; + let sharpe_ratio = adg / variance.sqrt(); + + // Calculate drawdowns + let drawdowns = calc_drawdowns(&equities); + let drawdown_worst = drawdowns + .iter() + .fold(f64::NEG_INFINITY, |a, &b| f64::max(a, b.abs())); + + // Calculate equity-balance differences + let mut bal_eq = Vec::with_capacity(equities.len()); + let mut fill_iter = fills.iter().peekable(); + let mut last_balance = fills[0].balance; + + for (i, &equity) in equities.iter().enumerate() { + while let Some(fill) = fill_iter.peek() { + if fill.index <= i { + last_balance = fill.balance; + fill_iter.next(); + } else { + break; + } + } + bal_eq.push((equity, last_balance)); + } + + let (equity_balance_diff_sum, equity_balance_diff_max) = + bal_eq + .iter() + .fold((0.0, 0.0), |(sum, max), &(equity, balance)| { + let diff = (balance - equity).abs() / ((equity + balance) / 2.0); + (sum + diff, f64::max(max, diff)) + }); + let equity_balance_diff_mean = equity_balance_diff_sum / bal_eq.len() as f64; + + // Calculate profit factor + let (total_profit, total_loss) = fills.iter().fold((0.0, 0.0), |(profit, loss), fill| { + if fill.pnl > 0.0 { + (profit + fill.pnl, loss) + } else { + (profit, loss + fill.pnl.abs()) + } + }); + let loss_profit_ratio = if total_profit == 0.0 { + f64::INFINITY + } else { + total_loss / total_profit + }; + + Analysis { + adg, + mdg, + sharpe_ratio, + drawdown_worst, + equity_balance_diff_mean, + equity_balance_diff_max, + loss_profit_ratio, + } +} + +fn calc_drawdowns(equity_series: &[f64]) -> Vec { + let mut cumulative_returns = vec![1.0]; + let mut cumulative_max = vec![1.0]; + + for window in equity_series.windows(2) { + let pct_change = (window[1] - window[0]) / window[0]; + let new_return = cumulative_returns.last().unwrap() * (1.0 + pct_change); + cumulative_returns.push(new_return); + cumulative_max.push(f64::max(*cumulative_max.last().unwrap(), new_return)); + } + + cumulative_returns + .iter() + .zip(cumulative_max.iter()) + .map(|(&ret, &max)| (ret - max) / max) + .collect() +} + +pub fn calc_noisiness(hlcs: &Array3, window: usize) -> Array2 { + let (n_minutes, n_coins, _) = hlcs.dim(); + + // Calculate Normalized Relative Range (NRR) + let nrrs = + (&hlcs.slice(s![.., .., 0]) - &hlcs.slice(s![.., .., 1])) / &hlcs.slice(s![.., .., 2]); + + let mut noisiness = Array2::::zeros((n_minutes, n_coins)); + let mut sums = vec![0.0; n_coins]; + + for i in 1..n_minutes { + let idx_start = i.saturating_sub(window); + + for j in 0..n_coins { + sums[j] += nrrs[[i - 1, j]]; + + if idx_start > 0 { + sums[j] -= nrrs[[idx_start - 1, j]]; + noisiness[[i, j]] = sums[j] / window as f64; + } else { + noisiness[[i, j]] = sums[j] / i as f64; + } + } + } + noisiness +} + +pub fn calc_volumes(hlcvs: &Array3, window: usize) -> Array2 { + let (n_minutes, n_coins, _) = hlcvs.dim(); + + // Calculate volume in quote currency (close * volume) + let quote_volumes = &hlcvs.slice(s![.., .., 2]) * &hlcvs.slice(s![.., .., 3]); + + let mut rolling_volumes = Array2::::zeros((n_minutes, n_coins)); + let mut sums = vec![0.0; n_coins]; + + for i in 0..n_minutes { + let idx_start = i.saturating_sub(window); + for j in 0..n_coins { + sums[j] += quote_volumes[[i, j]]; + if i >= window { + sums[j] -= quote_volumes[[idx_start, j]]; + rolling_volumes[[i, j]] = sums[j]; + } else { + rolling_volumes[[i, j]] = sums[j]; + } + } + } + + rolling_volumes +} diff --git a/passivbot-rust/src/closes.rs b/passivbot-rust/src/closes.rs new file mode 100644 index 000000000..eec61a9da --- /dev/null +++ b/passivbot-rust/src/closes.rs @@ -0,0 +1,701 @@ +use crate::constants::{CLOSE, LONG, NO_POS, SHORT}; +use crate::entries::calc_min_entry_qty; +use crate::types::{ + BotParams, BotParamsPair, EMABands, ExchangeParams, Order, OrderType, Position, Positions, + StateParams, TrailingPriceBundle, +}; +use crate::utils::{ + calc_pprice_diff_int, calc_wallet_exposure, cost_to_qty, round_, round_dn, round_up, +}; +use ndarray::{Array1, Array2}; +use std::collections::HashMap; + +pub fn calc_close_qty( + exchange_params: &ExchangeParams, + bot_params: &BotParams, + position: &Position, + close_qty_pct: f64, + balance: f64, + close_price: f64, +) -> f64 { + let full_psize = cost_to_qty( + balance * bot_params.wallet_exposure_limit, + position.price, + exchange_params.c_mult, + ); + let position_size_abs = position.size.abs(); + let leftover = f64::max(0.0, position_size_abs - full_psize); + f64::min( + round_(position_size_abs, exchange_params.qty_step), + f64::max( + calc_min_entry_qty(close_price, &exchange_params), + round_up( + full_psize * close_qty_pct + leftover, + exchange_params.qty_step, + ), + ), + ) +} + +pub fn calc_grid_close_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, +) -> Order { + if position.size <= 0.0 { + return Order::default(); + } + if bot_params.close_grid_markup_range <= 0.0 + || bot_params.close_grid_qty_pct < 0.0 + || bot_params.close_grid_qty_pct >= 1.0 + { + return Order { + qty: -round_(position.size, exchange_params.qty_step), + price: f64::max( + state_params.order_book.ask, + round_up( + position.price * (1.0 + bot_params.close_grid_min_markup), + exchange_params.price_step, + ), + ), + order_type: OrderType::CloseGridLong, + }; + } + let close_prices_start = round_up( + position.price * (1.0 + bot_params.close_grid_min_markup), + exchange_params.price_step, + ); + let close_prices_end = round_up( + position.price + * (1.0 + bot_params.close_grid_min_markup + bot_params.close_grid_markup_range), + exchange_params.price_step, + ); + if close_prices_start == close_prices_end { + return Order { + qty: -round_(position.size, exchange_params.qty_step), + price: f64::max(state_params.order_book.ask, close_prices_start), + order_type: OrderType::CloseGridLong, + }; + } + let n_steps = ((close_prices_end - close_prices_start) / exchange_params.price_step).ceil(); + let close_grid_qty_pct_modified = f64::max(bot_params.close_grid_qty_pct, 1.0 / n_steps); + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position.size, + position.price, + ); + let wallet_exposure_ratio = f64::min(1.0, wallet_exposure / bot_params.wallet_exposure_limit); + let close_price = f64::max( + round_up( + position.price + * (1.0 + + bot_params.close_grid_min_markup + + bot_params.close_grid_markup_range * (1.0 - wallet_exposure_ratio)), + exchange_params.price_step, + ), + state_params.order_book.ask, + ); + let close_qty = -calc_close_qty( + &exchange_params, + &bot_params, + &position, + close_grid_qty_pct_modified, + state_params.balance, + close_price, + ); + Order { + qty: close_qty, + price: close_price, + order_type: OrderType::CloseGridLong, + } +} + +pub fn calc_trailing_close_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + if position.size == 0.0 { + return Order::default(); + } + if bot_params.close_trailing_threshold_pct <= 0.0 { + // means trailing close immediately from pos open + if bot_params.close_trailing_retracement_pct > 0.0 + && trailing_price_bundle.min_since_max + < trailing_price_bundle.max_since_open + * (1.0 - bot_params.close_trailing_retracement_pct) + { + Order { + qty: -calc_close_qty( + &exchange_params, + &bot_params, + &position, + bot_params.close_trailing_qty_pct, + state_params.balance, + state_params.order_book.ask, + ), + price: state_params.order_book.ask, + order_type: OrderType::CloseTrailingLong, + } + } else { + Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::CloseTrailingLong, + } + } + } else { + // means trailing close will activate only after a threshold + if bot_params.close_trailing_retracement_pct <= 0.0 { + // close at threshold + let close_price = f64::max( + state_params.order_book.ask, + round_up( + position.price * (1.0 + bot_params.close_trailing_threshold_pct), + exchange_params.price_step, + ), + ); + Order { + qty: -calc_close_qty( + &exchange_params, + &bot_params, + &position, + bot_params.close_trailing_qty_pct, + state_params.balance, + close_price, + ), + price: close_price, + order_type: OrderType::CloseTrailingLong, + } + } else { + // close if both conditions are met + if trailing_price_bundle.max_since_open + > position.price * (1.0 + bot_params.close_trailing_threshold_pct) + && trailing_price_bundle.min_since_max + < trailing_price_bundle.max_since_open + * (1.0 - bot_params.close_trailing_retracement_pct) + { + let close_price = f64::max( + state_params.order_book.ask, + round_up( + position.price + * (1.0 + bot_params.close_trailing_threshold_pct + - bot_params.close_trailing_retracement_pct), + exchange_params.price_step, + ), + ); + Order { + qty: -calc_close_qty( + &exchange_params, + &bot_params, + &position, + bot_params.close_trailing_qty_pct, + state_params.balance, + close_price, + ), + price: close_price, + order_type: OrderType::CloseTrailingLong, + } + } else { + Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::CloseTrailingLong, + } + } + } + } +} + +pub fn calc_next_close_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + if position.size == 0.0 { + // no position + return Order::default(); + } + if bot_params.close_trailing_grid_ratio >= 1.0 || bot_params.close_trailing_grid_ratio <= -1.0 { + // return trailing only + return calc_trailing_close_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + } + if bot_params.close_trailing_grid_ratio == 0.0 { + // return grid only + return calc_grid_close_long(&exchange_params, &state_params, &bot_params, &position); + } + let wallet_exposure_ratio = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position.size, + position.price, + ) / bot_params.wallet_exposure_limit; + if bot_params.close_trailing_grid_ratio > 0.0 { + // trailing first + if wallet_exposure_ratio < bot_params.close_trailing_grid_ratio { + // return trailing order + calc_trailing_close_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ) + } else { + // return grid order, but leave full_psize * close_trailing_grid_ratio for trailing close + let trailing_allocation = cost_to_qty( + state_params.balance + * bot_params.wallet_exposure_limit + * bot_params.close_trailing_grid_ratio, + position.price, + exchange_params.c_mult, + ); + let grid_allocation = round_( + position.size - trailing_allocation, + exchange_params.qty_step, + ); + let position_mod = Position { + size: f64::min( + position.size, + f64::max( + grid_allocation, + calc_min_entry_qty(position.price, &exchange_params), + ), + ), + price: position.price, + }; + calc_grid_close_long(&exchange_params, &state_params, &bot_params, &position_mod) + } + } else { + // grid first + if wallet_exposure_ratio < 1.0 + bot_params.close_trailing_grid_ratio { + // return grid order, closing whole position + calc_grid_close_long(&exchange_params, &state_params, &bot_params, &position) + } else { + // return trailing order, but leave full_psize * (1.0 + close_trailing_grid_ratio) for grid close + let grid_allocation = cost_to_qty( + state_params.balance + * bot_params.wallet_exposure_limit + * (1.0 + bot_params.close_trailing_grid_ratio), + position.price, + exchange_params.c_mult, + ); + let trailing_allocation = + round_(position.size - grid_allocation, exchange_params.qty_step); + let position_mod = Position { + size: f64::min( + position.size, + f64::max( + trailing_allocation, + calc_min_entry_qty(position.price, &exchange_params), + ), + ), + price: position.price, + }; + calc_trailing_close_long( + &exchange_params, + &state_params, + &bot_params, + &position_mod, + &trailing_price_bundle, + ) + } + } +} + +pub fn calc_grid_close_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, +) -> Order { + let position_size_abs = position.size.abs(); + if position_size_abs == 0.0 { + return Order::default(); + } + if bot_params.close_grid_markup_range <= 0.0 + || bot_params.close_grid_qty_pct < 0.0 + || bot_params.close_grid_qty_pct >= 1.0 + { + return Order { + qty: round_(position_size_abs, exchange_params.qty_step), + price: f64::min( + state_params.order_book.bid, + round_dn( + position.price * (1.0 - bot_params.close_grid_min_markup), + exchange_params.price_step, + ), + ), + order_type: OrderType::CloseGridShort, + }; + } + let close_prices_start = round_dn( + position.price * (1.0 - bot_params.close_grid_min_markup), + exchange_params.price_step, + ); + let close_prices_end = round_dn( + position.price + * (1.0 - bot_params.close_grid_min_markup - bot_params.close_grid_markup_range), + exchange_params.price_step, + ); + if close_prices_start == close_prices_end { + return Order { + qty: round_(position_size_abs, exchange_params.qty_step), + price: f64::min(state_params.order_book.bid, close_prices_start), + order_type: OrderType::CloseGridShort, + }; + } + let n_steps = ((close_prices_start - close_prices_end) / exchange_params.price_step).ceil(); + let close_grid_qty_pct_modified = f64::max(bot_params.close_grid_qty_pct, 1.0 / n_steps); + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position_size_abs, + position.price, + ); + let wallet_exposure_ratio = f64::min(1.0, wallet_exposure / bot_params.wallet_exposure_limit); + let close_price = f64::min( + round_dn( + position.price + * (1.0 + - bot_params.close_grid_min_markup + - bot_params.close_grid_markup_range * (1.0 - wallet_exposure_ratio)), + exchange_params.price_step, + ), + state_params.order_book.bid, + ); + let close_qty = calc_close_qty( + &exchange_params, + &bot_params, + &position, + close_grid_qty_pct_modified, + state_params.balance, + close_price, + ); + Order { + qty: close_qty, + price: close_price, + order_type: OrderType::CloseGridShort, + } +} + +pub fn calc_trailing_close_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + let position_size_abs = position.size.abs(); + if position_size_abs == 0.0 { + return Order::default(); + } + if bot_params.close_trailing_threshold_pct <= 0.0 { + // means trailing stop immediately from pos open + if bot_params.close_trailing_retracement_pct > 0.0 + && trailing_price_bundle.max_since_min + > trailing_price_bundle.min_since_open + * (1.0 + bot_params.close_trailing_retracement_pct) + { + Order { + qty: calc_close_qty( + &exchange_params, + &bot_params, + &position, + bot_params.close_trailing_qty_pct, + state_params.balance, + state_params.order_book.bid, + ), + price: state_params.order_book.bid, + order_type: OrderType::CloseTrailingShort, + } + } else { + Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::CloseTrailingShort, + } + } + } else { + // means trailing stop will activate only after a threshold + if bot_params.close_trailing_retracement_pct <= 0.0 { + // close at threshold + let close_price = f64::min( + state_params.order_book.bid, + round_dn( + position.price * (1.0 - bot_params.close_trailing_threshold_pct), + exchange_params.price_step, + ), + ); + Order { + qty: calc_close_qty( + &exchange_params, + &bot_params, + &position, + bot_params.close_trailing_qty_pct, + state_params.balance, + close_price, + ), + price: close_price, + order_type: OrderType::CloseTrailingShort, + } + } else { + if trailing_price_bundle.min_since_open + < position.price * (1.0 - bot_params.close_trailing_threshold_pct) + && trailing_price_bundle.max_since_min + > trailing_price_bundle.min_since_open + * (1.0 + bot_params.close_trailing_retracement_pct) + { + let close_price = f64::min( + state_params.order_book.bid, + round_dn( + position.price + * (1.0 - bot_params.close_trailing_threshold_pct + + bot_params.close_trailing_retracement_pct), + exchange_params.price_step, + ), + ); + Order { + qty: calc_close_qty( + &exchange_params, + &bot_params, + &position, + bot_params.close_trailing_qty_pct, + state_params.balance, + close_price, + ), + price: close_price, + order_type: OrderType::CloseTrailingShort, + } + } else { + Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::CloseTrailingShort, + } + } + } + } +} + +pub fn calc_next_close_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + let position_size_abs = position.size.abs(); + if position_size_abs == 0.0 { + // no position + return Order::default(); + } + if bot_params.close_trailing_grid_ratio >= 1.0 || bot_params.close_trailing_grid_ratio <= -1.0 { + // return trailing only + return calc_trailing_close_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + } + if bot_params.close_trailing_grid_ratio == 0.0 { + // return grid only + return calc_grid_close_short(&exchange_params, &state_params, &bot_params, &position); + } + let wallet_exposure_ratio = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position_size_abs, + position.price, + ) / bot_params.wallet_exposure_limit; + if bot_params.close_trailing_grid_ratio > 0.0 { + // trailing first + if wallet_exposure_ratio < bot_params.close_trailing_grid_ratio { + // return trailing order, closing whole pos + calc_trailing_close_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ) + } else { + // return grid order, but leave full_psize * close_trailing_grid_ratio for trailing close + let trailing_allocation = cost_to_qty( + state_params.balance + * bot_params.wallet_exposure_limit + * bot_params.close_trailing_grid_ratio, + position.price, + exchange_params.c_mult, + ); + let grid_allocation = round_( + position_size_abs - trailing_allocation, + exchange_params.qty_step, + ); + let position_mod = Position { + size: -f64::min( + position_size_abs, + f64::max( + grid_allocation, + calc_min_entry_qty(position.price, &exchange_params), + ), + ), + price: position.price, + }; + calc_grid_close_short(&exchange_params, &state_params, &bot_params, &position_mod) + } + } else { + if wallet_exposure_ratio < 1.0 + bot_params.close_trailing_grid_ratio { + // return grid order, closing whole position + return calc_grid_close_short(&exchange_params, &state_params, &bot_params, &position); + } else { + // return trailing order, but leave full_psize * (1.0 + close_trailing_grid_ratio) for grid close + let grid_allocation = cost_to_qty( + state_params.balance + * bot_params.wallet_exposure_limit + * (1.0 + bot_params.close_trailing_grid_ratio), + position.price, + exchange_params.c_mult, + ); + let trailing_allocation = round_( + position_size_abs - grid_allocation, + exchange_params.qty_step, + ); + let position_mod = Position { + size: -f64::min( + position_size_abs, + f64::max( + trailing_allocation, + calc_min_entry_qty(position.price, &exchange_params), + ), + ), + price: position.price, + }; + calc_trailing_close_short( + &exchange_params, + &state_params, + &bot_params, + &position_mod, + &trailing_price_bundle, + ) + } + } +} + +pub fn calc_closes_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Vec { + let mut closes = Vec::::new(); + let mut psize = position.size; + let mut ask = state_params.order_book.ask; + for _ in 0..500 { + let position_mod = Position { + size: psize, + price: position.price, + }; + let mut state_params_mod = state_params.clone(); + state_params_mod.order_book.ask = ask; + let close = calc_next_close_long( + exchange_params, + &state_params_mod, + bot_params, + &position_mod, + &trailing_price_bundle, + ); + if close.qty == 0.0 { + break; + } + psize = round_(psize + close.qty, exchange_params.qty_step); + ask = ask.max(close.price); + if !closes.is_empty() { + if close.order_type == OrderType::CloseTrailingLong { + break; + } + if closes[closes.len() - 1].price == close.price { + let previous_close = closes.pop(); + let merged_close = Order { + qty: round_( + previous_close.unwrap().qty + close.qty, + exchange_params.qty_step, + ), + price: close.price, + order_type: close.order_type, + }; + closes.push(merged_close); + continue; + } + } + closes.push(close); + } + closes +} + +pub fn calc_closes_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Vec { + let mut closes = Vec::::new(); + let mut psize = position.size; + let mut bid = state_params.order_book.bid; + for _ in 0..500 { + let position_mod = Position { + size: psize, + price: position.price, + }; + let mut state_params_mod = state_params.clone(); + state_params_mod.order_book.bid = bid; + let close = calc_next_close_short( + exchange_params, + &state_params_mod, + bot_params, + &position_mod, + &trailing_price_bundle, + ); + if close.qty == 0.0 { + break; + } + psize = round_(psize + close.qty, exchange_params.qty_step); + bid = bid.min(close.price); + if !closes.is_empty() { + if close.order_type == OrderType::CloseTrailingShort { + break; + } + if closes[closes.len() - 1].price == close.price { + let previous_close = closes.pop(); + let merged_close = Order { + qty: round_( + previous_close.unwrap().qty + close.qty, + exchange_params.qty_step, + ), + price: close.price, + order_type: close.order_type, + }; + closes.push(merged_close); + continue; + } + } + closes.push(close); + } + closes +} diff --git a/passivbot-rust/src/constants.rs b/passivbot-rust/src/constants.rs new file mode 100644 index 000000000..fc495db0a --- /dev/null +++ b/passivbot-rust/src/constants.rs @@ -0,0 +1,7 @@ +pub const HIGH: usize = 0; +pub const LOW: usize = 1; +pub const CLOSE: usize = 2; + +pub const LONG: usize = 3; +pub const SHORT: usize = 4; +pub const NO_POS: usize = 5; diff --git a/passivbot-rust/src/entries.rs b/passivbot-rust/src/entries.rs new file mode 100644 index 000000000..a82466602 --- /dev/null +++ b/passivbot-rust/src/entries.rs @@ -0,0 +1,1003 @@ +use crate::types::{ + BotParams, ExchangeParams, Order, OrderType, Position, StateParams, TrailingPriceBundle, +}; +use crate::utils::{ + calc_ema_price_ask, calc_ema_price_bid, calc_new_psize_pprice, calc_wallet_exposure, + calc_wallet_exposure_if_filled, cost_to_qty, interpolate, round_, round_dn, round_up, +}; + +pub fn calc_initial_entry_qty( + exchange_params: &ExchangeParams, + bot_params: &BotParams, + balance: f64, + entry_price: f64, +) -> f64 { + f64::max( + calc_min_entry_qty(entry_price, &exchange_params), + round_( + cost_to_qty( + balance * bot_params.wallet_exposure_limit * bot_params.entry_initial_qty_pct, + entry_price, + exchange_params.c_mult, + ), + exchange_params.qty_step, + ), + ) +} + +pub fn calc_min_entry_qty(entry_price: f64, exchange_params: &ExchangeParams) -> f64 { + f64::max( + exchange_params.min_qty, + round_up( + cost_to_qty( + exchange_params.min_cost, + entry_price, + exchange_params.c_mult, + ), + exchange_params.qty_step, + ), + ) +} + +pub fn calc_cropped_reentry_qty( + exchange_params: &ExchangeParams, + bot_params: &BotParams, + position: &Position, + wallet_exposure: f64, + balance: f64, + entry_qty: f64, + entry_price: f64, +) -> (f64, f64) { + let position_size_abs = position.size.abs(); + let entry_qty_abs = entry_qty.abs(); + let wallet_exposure_if_filled = calc_wallet_exposure_if_filled( + balance, + position_size_abs, + position.price, + entry_qty_abs, + entry_price, + &exchange_params, + ); + let min_entry_qty = calc_min_entry_qty(entry_price, &exchange_params); + if wallet_exposure_if_filled > bot_params.wallet_exposure_limit * 1.01 { + // reentry too big. Crop current reentry qty. + let entry_qty_abs = interpolate( + bot_params.wallet_exposure_limit, + &[wallet_exposure, wallet_exposure_if_filled], + &[position_size_abs, position_size_abs + entry_qty_abs], + ) - position_size_abs; + ( + wallet_exposure_if_filled, + f64::max( + round_(entry_qty_abs, exchange_params.qty_step), + min_entry_qty, + ), + ) + } else { + ( + wallet_exposure_if_filled, + f64::max(entry_qty_abs, min_entry_qty), + ) + } +} + +pub fn calc_reentry_qty( + entry_price: f64, + balance: f64, + position_size: f64, + exchange_params: &ExchangeParams, + bot_params: &BotParams, +) -> f64 { + f64::max( + calc_min_entry_qty(entry_price, &exchange_params), + round_( + f64::max( + position_size.abs() * bot_params.entry_grid_double_down_factor, + cost_to_qty(balance, entry_price, exchange_params.c_mult) + * bot_params.wallet_exposure_limit + * bot_params.entry_initial_qty_pct, + ), + exchange_params.qty_step, + ), + ) +} + +fn calc_reentry_price_bid( + position_price: f64, + wallet_exposure: f64, + order_book_bid: f64, + exchange_params: &ExchangeParams, + bot_params: &BotParams, +) -> f64 { + let multiplier = + (wallet_exposure / bot_params.wallet_exposure_limit) * bot_params.entry_grid_spacing_weight; + let reentry_price = f64::min( + round_dn( + position_price * (1.0 - bot_params.entry_grid_spacing_pct * (1.0 + multiplier)), + exchange_params.price_step, + ), + order_book_bid, + ); + if reentry_price <= exchange_params.price_step { + 0.0 + } else { + reentry_price + } +} + +fn calc_reentry_price_ask( + position_price: f64, + wallet_exposure: f64, + order_book_ask: f64, + exchange_params: &ExchangeParams, + bot_params: &BotParams, +) -> f64 { + let multiplier = + (wallet_exposure / bot_params.wallet_exposure_limit) * bot_params.entry_grid_spacing_weight; + let reentry_price = f64::max( + round_up( + position_price * (1.0 + bot_params.entry_grid_spacing_pct * (1.0 + multiplier)), + exchange_params.price_step, + ), + order_book_ask, + ); + if reentry_price <= exchange_params.price_step { + 0.0 + } else { + reentry_price + } +} + +pub fn calc_grid_entry_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, +) -> Order { + if bot_params.wallet_exposure_limit == 0.0 || state_params.balance <= 0.0 { + return Order::default(); + } + let initial_entry_price = calc_ema_price_bid( + exchange_params.price_step, + state_params.order_book.bid, + state_params.ema_bands.lower, + bot_params.entry_initial_ema_dist, + ); + if initial_entry_price <= exchange_params.price_step { + return Order::default(); + } + let initial_entry_qty = calc_initial_entry_qty( + exchange_params, + bot_params, + state_params.balance, + initial_entry_price, + ); + if position.size == 0.0 { + return Order { + qty: initial_entry_qty, + price: initial_entry_price, + order_type: OrderType::EntryInitialNormalLong, + }; + } else if position.size < initial_entry_qty * 0.8 { + return Order { + qty: f64::max( + calc_min_entry_qty(initial_entry_price, &exchange_params), + round_dn(initial_entry_qty - position.size, exchange_params.qty_step), + ), + price: initial_entry_price, + order_type: OrderType::EntryInitialPartialLong, + }; + } + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position.size, + position.price, + ); + if wallet_exposure >= bot_params.wallet_exposure_limit * 0.999 { + return Order::default(); + } + + // normal re-entry + let reentry_price = calc_reentry_price_bid( + position.price, + wallet_exposure, + state_params.order_book.bid, + exchange_params, + bot_params, + ); + if reentry_price <= 0.0 { + return Order::default(); + } + let reentry_qty = f64::max( + calc_reentry_qty( + reentry_price, + state_params.balance, + position.size, + exchange_params, + bot_params, + ), + initial_entry_qty, + ); + let (wallet_exposure_if_filled, reentry_qty_cropped) = calc_cropped_reentry_qty( + exchange_params, + bot_params, + position, + wallet_exposure, + state_params.balance, + reentry_qty, + reentry_price, + ); + if reentry_qty_cropped < reentry_qty { + return Order { + qty: reentry_qty_cropped, + price: reentry_price, + order_type: OrderType::EntryGridCroppedLong, + }; + } + // preview next order to check if reentry qty is to be inflated + let (psize_if_filled, pprice_if_filled) = calc_new_psize_pprice( + position.size, + position.price, + reentry_qty, + reentry_price, + exchange_params.qty_step, + ); + let next_reentry_price = calc_reentry_price_bid( + pprice_if_filled, + wallet_exposure_if_filled, + state_params.order_book.bid, + exchange_params, + bot_params, + ); + let next_reentry_qty = f64::max( + calc_reentry_qty( + next_reentry_price, + state_params.balance, + psize_if_filled, + exchange_params, + bot_params, + ), + initial_entry_qty, + ); + let (next_wallet_exposure_if_filled, next_reentry_qty_cropped) = calc_cropped_reentry_qty( + exchange_params, + bot_params, + &Position { + size: psize_if_filled, + price: pprice_if_filled, + }, + wallet_exposure_if_filled, + state_params.balance, + next_reentry_qty, + next_reentry_price, + ); + let effective_double_down_factor = next_reentry_qty_cropped / psize_if_filled; + if effective_double_down_factor < bot_params.entry_grid_double_down_factor * 0.25 { + // next reentry too small. Inflate current reentry. + let new_entry_qty = interpolate( + bot_params.wallet_exposure_limit, + &[wallet_exposure, wallet_exposure_if_filled], + &[position.size, position.size + reentry_qty], + ) - position.size; + Order { + qty: round_(new_entry_qty, exchange_params.qty_step), + price: reentry_price, + order_type: OrderType::EntryGridInflatedLong, + } + } else { + Order { + qty: reentry_qty, + price: reentry_price, + order_type: OrderType::EntryGridNormalLong, + } + } +} + +pub fn calc_next_entry_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + // determines whether trailing or grid order, returns Order + if bot_params.wallet_exposure_limit == 0.0 || state_params.balance <= 0.0 { + // no orders + return Order::default(); + } + if bot_params.entry_trailing_grid_ratio >= 1.0 || bot_params.entry_trailing_grid_ratio <= -1.0 { + // return trailing only + return calc_trailing_entry_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + } else if bot_params.entry_trailing_grid_ratio == 0.0 { + // return grid only + return calc_grid_entry_long(&exchange_params, &state_params, &bot_params, &position); + } + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position.size, + position.price, + ); + let wallet_exposure_ratio = wallet_exposure / bot_params.wallet_exposure_limit; + if bot_params.entry_trailing_grid_ratio > 0.0 { + // trailing first + if wallet_exposure_ratio < bot_params.entry_trailing_grid_ratio { + // return trailing order, but crop to max bot_params.wallet_exposure_limit * bot_params.entry_trailing_grid_ratio + 1% + if wallet_exposure == 0.0 { + calc_trailing_entry_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ) + } else { + let mut bot_params_modified = bot_params.clone(); + bot_params_modified.wallet_exposure_limit = + bot_params.wallet_exposure_limit * bot_params.entry_trailing_grid_ratio * 1.01; + calc_trailing_entry_long( + &exchange_params, + &state_params, + &bot_params_modified, + &position, + &trailing_price_bundle, + ) + } + } else { + // return grid order + calc_grid_entry_long(&exchange_params, &state_params, &bot_params, &position) + } + } else { + // grid first + if wallet_exposure_ratio < 1.0 + bot_params.entry_trailing_grid_ratio { + // return grid order, but crop to max bot_params.wallet_exposure_limit * (1.0 + bot_params.entry_trailing_grid_ratio) + 1% + if wallet_exposure == 0.0 { + calc_grid_entry_long(&exchange_params, &state_params, &bot_params, &position) + } else { + let mut bot_params_modified = bot_params.clone(); + if wallet_exposure != 0.0 { + bot_params_modified.wallet_exposure_limit = bot_params.wallet_exposure_limit + * (1.0 + bot_params.entry_trailing_grid_ratio) + * 1.01; + } + calc_grid_entry_long( + &exchange_params, + &state_params, + &bot_params_modified, + &position, + ) + } + } else { + calc_trailing_entry_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ) + } + } +} + +pub fn calc_trailing_entry_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + let initial_entry_price = calc_ema_price_bid( + exchange_params.price_step, + state_params.order_book.bid, + state_params.ema_bands.lower, + bot_params.entry_initial_ema_dist, + ); + if initial_entry_price <= exchange_params.price_step { + return Order::default(); + } + let initial_entry_qty = calc_initial_entry_qty( + exchange_params, + bot_params, + state_params.balance, + initial_entry_price, + ); + if position.size == 0.0 { + // normal initial entry + return Order { + qty: initial_entry_qty, + price: initial_entry_price, + order_type: OrderType::EntryInitialNormalLong, + }; + } else if position.size < initial_entry_qty * 0.8 { + return Order { + qty: f64::max( + calc_min_entry_qty(initial_entry_price, &exchange_params), + round_dn(initial_entry_qty - position.size, exchange_params.qty_step), + ), + price: initial_entry_price, + order_type: OrderType::EntryInitialPartialLong, + }; + } + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position.size, + position.price, + ); + if wallet_exposure > bot_params.wallet_exposure_limit * 0.999 { + return Order::default(); + } + let mut entry_triggered = false; + let mut reentry_price = 0.0; + if bot_params.entry_trailing_threshold_pct <= 0.0 { + // means trailing entry immediately from pos change + if bot_params.entry_trailing_retracement_pct > 0.0 + && trailing_price_bundle.max_since_min + > trailing_price_bundle.min_since_open + * (1.0 + bot_params.entry_trailing_retracement_pct) + { + entry_triggered = true; + reentry_price = state_params.order_book.bid; + } + } else { + // means trailing entry will activate only after a threshold + if bot_params.entry_trailing_retracement_pct <= 0.0 { + // close at threshold + entry_triggered = true; + reentry_price = f64::min( + state_params.order_book.bid, + round_dn( + position.price * (1.0 - bot_params.entry_trailing_threshold_pct), + exchange_params.price_step, + ), + ); + } else { + // enter if both conditions are met + if trailing_price_bundle.min_since_open + < position.price * (1.0 - bot_params.entry_trailing_threshold_pct) + && trailing_price_bundle.max_since_min + > trailing_price_bundle.min_since_open + * (1.0 + bot_params.entry_trailing_retracement_pct) + { + entry_triggered = true; + reentry_price = f64::min( + state_params.order_book.bid, + round_dn( + position.price + * (1.0 - bot_params.entry_trailing_threshold_pct + + bot_params.entry_trailing_retracement_pct), + exchange_params.price_step, + ), + ); + } + } + } + if !entry_triggered { + return Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::EntryTrailingNormalLong, + }; + } + let reentry_qty = f64::max( + calc_reentry_qty( + reentry_price, + state_params.balance, + position.size, + &exchange_params, + &bot_params, + ), + initial_entry_qty, + ); + let (wallet_exposure_if_filled, reentry_qty_cropped) = calc_cropped_reentry_qty( + exchange_params, + bot_params, + position, + wallet_exposure, + state_params.balance, + reentry_qty, + reentry_price, + ); + if reentry_qty_cropped < reentry_qty { + Order { + qty: reentry_qty_cropped, + price: reentry_price, + order_type: OrderType::EntryTrailingCroppedLong, + } + } else { + Order { + qty: reentry_qty, + price: reentry_price, + order_type: OrderType::EntryTrailingNormalLong, + } + } +} + +pub fn calc_grid_entry_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, +) -> Order { + if bot_params.wallet_exposure_limit == 0.0 || state_params.balance <= 0.0 { + return Order::default(); + } + let initial_entry_price = calc_ema_price_ask( + exchange_params.price_step, + state_params.order_book.ask, + state_params.ema_bands.upper, + bot_params.entry_initial_ema_dist, + ); + if initial_entry_price <= exchange_params.price_step { + return Order::default(); + } + let initial_entry_qty = calc_initial_entry_qty( + exchange_params, + bot_params, + state_params.balance, + initial_entry_price, + ); + let position_size_abs = position.size.abs(); + if position_size_abs == 0.0 { + return Order { + qty: -initial_entry_qty, + price: initial_entry_price, + order_type: OrderType::EntryInitialNormalShort, + }; + } else if position_size_abs < initial_entry_qty * 0.8 { + return Order { + qty: -f64::max( + calc_min_entry_qty(initial_entry_price, &exchange_params), + round_dn( + initial_entry_qty - position_size_abs, + exchange_params.qty_step, + ), + ), + price: initial_entry_price, + order_type: OrderType::EntryInitialPartialShort, + }; + } + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position_size_abs, + position.price, + ); + if wallet_exposure >= bot_params.wallet_exposure_limit * 0.999 { + return Order::default(); + } + + // normal re-entry + let reentry_price = calc_reentry_price_ask( + position.price, + wallet_exposure, + state_params.order_book.ask, + exchange_params, + bot_params, + ); + if reentry_price <= 0.0 { + return Order::default(); + } + let reentry_qty = f64::max( + calc_reentry_qty( + reentry_price, + state_params.balance, + position_size_abs, + exchange_params, + bot_params, + ), + initial_entry_qty, + ); + let (wallet_exposure_if_filled, reentry_qty_cropped) = calc_cropped_reentry_qty( + exchange_params, + bot_params, + position, + wallet_exposure, + state_params.balance, + reentry_qty, + reentry_price, + ); + if reentry_qty_cropped < reentry_qty { + return Order { + qty: -reentry_qty_cropped, + price: reentry_price, + order_type: OrderType::EntryGridCroppedShort, + }; + } + // preview next order to check if reentry qty is to be inflated + let (psize_if_filled, pprice_if_filled) = calc_new_psize_pprice( + position_size_abs, + position.price, + reentry_qty, + reentry_price, + exchange_params.qty_step, + ); + let next_reentry_price = calc_reentry_price_ask( + pprice_if_filled, + wallet_exposure_if_filled, + state_params.order_book.ask, + exchange_params, + bot_params, + ); + let next_reentry_qty = f64::max( + calc_reentry_qty( + next_reentry_price, + state_params.balance, + psize_if_filled, + exchange_params, + bot_params, + ), + initial_entry_qty, + ); + let (next_wallet_exposure_if_filled, next_reentry_qty_cropped) = calc_cropped_reentry_qty( + exchange_params, + bot_params, + &Position { + size: psize_if_filled, + price: pprice_if_filled, + }, + wallet_exposure_if_filled, + state_params.balance, + next_reentry_qty, + next_reentry_price, + ); + let effective_double_down_factor = next_reentry_qty_cropped / psize_if_filled; + if effective_double_down_factor < bot_params.entry_grid_double_down_factor * 0.25 { + // next reentry too small. Inflate current reentry. + let new_entry_qty = interpolate( + bot_params.wallet_exposure_limit, + &[wallet_exposure, wallet_exposure_if_filled], + &[position_size_abs, position_size_abs + reentry_qty], + ) - position_size_abs; + Order { + qty: -round_(new_entry_qty, exchange_params.qty_step), + price: reentry_price, + order_type: OrderType::EntryGridInflatedShort, + } + } else { + Order { + qty: -reentry_qty, + price: reentry_price, + order_type: OrderType::EntryGridNormalShort, + } + } +} + +pub fn calc_trailing_entry_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + let initial_entry_price = calc_ema_price_ask( + exchange_params.price_step, + state_params.order_book.ask, + state_params.ema_bands.upper, + bot_params.entry_initial_ema_dist, + ); + if initial_entry_price <= exchange_params.price_step { + return Order::default(); + } + let initial_entry_qty = calc_initial_entry_qty( + exchange_params, + bot_params, + state_params.balance, + initial_entry_price, + ); + let position_size_abs = position.size.abs(); + if position_size_abs == 0.0 { + // normal initial entry + return Order { + qty: -initial_entry_qty, + price: initial_entry_price, + order_type: OrderType::EntryInitialNormalShort, + }; + } else if position_size_abs < initial_entry_qty * 0.8 { + return Order { + qty: -f64::max( + calc_min_entry_qty(initial_entry_price, &exchange_params), + round_dn( + initial_entry_qty - position_size_abs, + exchange_params.qty_step, + ), + ), + price: initial_entry_price, + order_type: OrderType::EntryInitialPartialShort, + }; + } + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position_size_abs, + position.price, + ); + if wallet_exposure > bot_params.wallet_exposure_limit * 0.999 { + return Order::default(); + } + let mut entry_triggered = false; + let mut reentry_price = 0.0; + if bot_params.entry_trailing_threshold_pct <= 0.0 { + // means trailing entry immediately from pos change + if bot_params.entry_trailing_retracement_pct > 0.0 + && trailing_price_bundle.min_since_max + < trailing_price_bundle.max_since_open + * (1.0 - bot_params.entry_trailing_retracement_pct) + { + entry_triggered = true; + reentry_price = state_params.order_book.ask; + } + } else { + // means trailing entry will activate only after a threshold + if bot_params.entry_trailing_retracement_pct <= 0.0 { + // enter at threshold + entry_triggered = true; + reentry_price = f64::max( + state_params.order_book.ask, + round_up( + position.price * (1.0 + bot_params.entry_trailing_threshold_pct), + exchange_params.price_step, + ), + ); + } else { + // enter if both conditions are met + if trailing_price_bundle.max_since_open + > position.price * (1.0 + bot_params.entry_trailing_threshold_pct) + && trailing_price_bundle.min_since_max + < trailing_price_bundle.max_since_open + * (1.0 - bot_params.entry_trailing_retracement_pct) + { + entry_triggered = true; + reentry_price = f64::max( + state_params.order_book.ask, + round_up( + position.price + * (1.0 + bot_params.entry_trailing_threshold_pct + - bot_params.entry_trailing_retracement_pct), + exchange_params.price_step, + ), + ); + } + } + } + if !entry_triggered { + return Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::EntryTrailingNormalShort, + }; + } + let reentry_qty = f64::max( + calc_reentry_qty( + reentry_price, + state_params.balance, + position_size_abs, + &exchange_params, + &bot_params, + ), + initial_entry_qty, + ); + let (wallet_exposure_if_filled, reentry_qty_cropped) = calc_cropped_reentry_qty( + exchange_params, + bot_params, + position, + wallet_exposure, + state_params.balance, + reentry_qty, + reentry_price, + ); + if reentry_qty_cropped < reentry_qty { + Order { + qty: -reentry_qty_cropped, + price: reentry_price, + order_type: OrderType::EntryTrailingCroppedShort, + } + } else { + Order { + qty: -reentry_qty, + price: reentry_price, + order_type: OrderType::EntryTrailingNormalShort, + } + } +} + +pub fn calc_next_entry_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Order { + // determines whether trailing or grid order, returns Order + if bot_params.wallet_exposure_limit == 0.0 || state_params.balance <= 0.0 { + // no orders + return Order::default(); + } + if bot_params.entry_trailing_grid_ratio >= 1.0 || bot_params.entry_trailing_grid_ratio <= -1.0 { + // return trailing only + return calc_trailing_entry_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + } else if bot_params.entry_trailing_grid_ratio == 0.0 { + // return grid only + return calc_grid_entry_short(&exchange_params, &state_params, &bot_params, &position); + } + let wallet_exposure = calc_wallet_exposure( + exchange_params.c_mult, + state_params.balance, + position.size.abs(), + position.price, + ); + let wallet_exposure_ratio = wallet_exposure / bot_params.wallet_exposure_limit; + if bot_params.entry_trailing_grid_ratio > 0.0 { + // trailing first + if wallet_exposure_ratio < bot_params.entry_trailing_grid_ratio { + if wallet_exposure == 0.0 { + calc_trailing_entry_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ) + } else { + // return trailing order, but crop to max bot_params.wallet_exposure_limit * bot_params.entry_trailing_grid_ratio + 1% + let mut bot_params_modified = bot_params.clone(); + bot_params_modified.wallet_exposure_limit = + bot_params.wallet_exposure_limit * bot_params.entry_trailing_grid_ratio * 1.01; + calc_trailing_entry_short( + &exchange_params, + &state_params, + &bot_params_modified, + &position, + &trailing_price_bundle, + ) + } + } else { + // return grid order + calc_grid_entry_short(&exchange_params, &state_params, &bot_params, &position) + } + } else { + // grid first + if wallet_exposure_ratio < 1.0 + bot_params.entry_trailing_grid_ratio { + // return grid order, but crop to max bot_params.wallet_exposure_limit * (1.0 + bot_params.entry_trailing_grid_ratio) + 1% + if wallet_exposure == 0.0 { + calc_grid_entry_short(&exchange_params, &state_params, &bot_params, &position) + } else { + let mut bot_params_modified = bot_params.clone(); + if wallet_exposure != 0.0 { + bot_params_modified.wallet_exposure_limit = bot_params.wallet_exposure_limit + * (1.0 + bot_params.entry_trailing_grid_ratio) + * 1.01; + } + calc_grid_entry_short( + &exchange_params, + &state_params, + &bot_params_modified, + &position, + ) + } + } else { + calc_trailing_entry_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ) + } + } +} + +pub fn calc_entries_long( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Vec { + let mut entries = Vec::::new(); + let mut psize = position.size; + let mut pprice = position.price; + let mut bid = state_params.order_book.bid; + for _ in 0..500 { + let position_mod = Position { + size: psize, + price: pprice, + }; + let mut state_params_mod = state_params.clone(); + state_params_mod.order_book.bid = bid; + let entry = calc_next_entry_long( + exchange_params, + &state_params_mod, + bot_params, + &position_mod, + &trailing_price_bundle, + ); + if entry.qty == 0.0 { + break; + } + if !entries.is_empty() { + if entry.order_type == OrderType::EntryTrailingNormalLong + || entry.order_type == OrderType::EntryTrailingCroppedLong + { + break; + } + if entries[entries.len() - 1].price == entry.price { + break; + } + } + (psize, pprice) = calc_new_psize_pprice( + psize, + pprice, + entry.qty, + entry.price, + exchange_params.qty_step, + ); + bid = bid.min(entry.price); + entries.push(entry); + } + entries +} + +pub fn calc_entries_short( + exchange_params: &ExchangeParams, + state_params: &StateParams, + bot_params: &BotParams, + position: &Position, + trailing_price_bundle: &TrailingPriceBundle, +) -> Vec { + let mut entries = Vec::::new(); + let mut psize = position.size; + let mut pprice = position.price; + let mut ask = state_params.order_book.ask; + for _ in 0..500 { + let position_mod = Position { + size: psize, + price: pprice, + }; + let mut state_params_mod = state_params.clone(); + state_params_mod.order_book.ask = ask; + let entry = calc_next_entry_short( + exchange_params, + &state_params_mod, + bot_params, + &position_mod, + &trailing_price_bundle, + ); + if entry.qty == 0.0 { + break; + } + if !entries.is_empty() { + if entry.order_type == OrderType::EntryTrailingNormalShort + || entry.order_type == OrderType::EntryTrailingCroppedShort + { + break; + } + if entries[entries.len() - 1].price == entry.price { + break; + } + } + (psize, pprice) = calc_new_psize_pprice( + psize, + pprice, + entry.qty, + entry.price, + exchange_params.qty_step, + ); + ask = ask.max(entry.price); + entries.push(entry); + } + entries +} diff --git a/passivbot-rust/src/lib.rs b/passivbot-rust/src/lib.rs new file mode 100644 index 000000000..5e98f6676 --- /dev/null +++ b/passivbot-rust/src/lib.rs @@ -0,0 +1,44 @@ +mod backtest; +mod closes; +mod constants; +mod entries; +mod python; +mod types; +mod utils; + +use backtest::*; +use closes::*; +use entries::*; +use pyo3::prelude::*; +use pyo3::wrap_pyfunction; +use python::*; +use utils::*; + +/// A Python module implemented in Rust. +#[pymodule] +fn passivbot_rust(m: &Bound<'_, PyModule>) -> PyResult<()> { + m.add_function(wrap_pyfunction!(round_, m)?)?; + m.add_function(wrap_pyfunction!(round_up, m)?)?; + m.add_function(wrap_pyfunction!(round_dn, m)?)?; + m.add_function(wrap_pyfunction!(calc_diff, m)?)?; + m.add_function(wrap_pyfunction!(qty_to_cost, m)?)?; + m.add_function(wrap_pyfunction!(cost_to_qty, m)?)?; + m.add_function(wrap_pyfunction!(calc_wallet_exposure, m)?)?; + m.add_function(wrap_pyfunction!(calc_new_psize_pprice, m)?)?; + m.add_function(wrap_pyfunction!(calc_grid_entry_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_trailing_entry_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_next_entry_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_trailing_close_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_grid_close_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_next_close_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_entries_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_next_entry_short_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_next_close_short_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_entries_short_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_closes_long_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_closes_short_py, m)?)?; + m.add_function(wrap_pyfunction!(run_backtest, m)?)?; + m.add_function(wrap_pyfunction!(calc_noisiness_py, m)?)?; + m.add_function(wrap_pyfunction!(calc_volumes_py, m)?)?; + Ok(()) +} diff --git a/passivbot-rust/src/python.rs b/passivbot-rust/src/python.rs new file mode 100644 index 000000000..1b3db2871 --- /dev/null +++ b/passivbot-rust/src/python.rs @@ -0,0 +1,1033 @@ +use crate::backtest::{analyze_backtest, calc_noisiness, calc_volumes, Backtest}; +use crate::closes::{ + calc_closes_long, calc_closes_short, calc_grid_close_long, calc_next_close_long, + calc_next_close_short, calc_trailing_close_long, +}; +use crate::entries::{ + calc_entries_long, calc_entries_short, calc_grid_entry_long, calc_next_entry_long, + calc_next_entry_short, calc_trailing_entry_long, +}; +use crate::types::{ + Analysis, BacktestParams, BotParams, BotParamsPair, EMABands, ExchangeParams, Order, OrderBook, + Position, StateParams, TrailingPriceBundle, +}; +use ndarray::{Array1, Array2, Array3, Array4, ArrayBase, ArrayD}; +use numpy::{ + IntoPyArray, PyArray1, PyArray2, PyArray3, PyArray4, PyReadonlyArray2, PyReadonlyArray3, + PyReadonlyArray4, +}; +use pyo3::exceptions::PyValueError; +use pyo3::prelude::*; +use pyo3::types::{PyDict, PyList}; +use pyo3::wrap_pyfunction; + +#[pyfunction] +pub fn calc_volumes_py(hlcvs: PyReadonlyArray3, window: usize) -> PyResult>> { + // Convert PyReadonlyArray3 to owned Array3 + let hlcvs_rust: Array3 = hlcvs.as_array().to_owned(); + + // Call the existing calc_volumes function + let volumes = calc_volumes(&hlcvs_rust, window); + + // Convert the result back to a PyArray + Python::with_gil(|py| Ok(volumes.into_pyarray(py).to_owned())) +} + +#[pyfunction] +pub fn calc_noisiness_py( + hlcs: PyReadonlyArray3, + window: usize, +) -> PyResult>> { + // Convert PyReadonlyArray3 to owned Array3 + let hlcs_rust: Array3 = hlcs.as_array().to_owned(); + + // Call the existing calc_noisiness function + let noisiness = calc_noisiness(&hlcs_rust, window); + + // Convert the result back to a PyArray + Python::with_gil(|py| Ok(noisiness.into_pyarray(py).to_owned())) +} + +#[pyfunction] +pub fn run_backtest( + hlcs: PyReadonlyArray3, + preferred_coins: &PyAny, + bot_params_pair_dict: &PyDict, + exchange_params_list: &PyAny, + backtest_params_dict: &PyDict, +) -> PyResult<(Py>, Py>, Py)> { + let hlcs_rust = hlcs.as_array(); + + let preferred_coins_rust: Array2 = + if let Ok(arr) = preferred_coins.downcast::>() { + unsafe { arr.as_array().to_owned() } + } else if let Ok(arr) = preferred_coins.downcast::>() { + let preferred_coins_i64: ArrayBase<_, _> = unsafe { arr.as_array() }; + preferred_coins_i64.mapv(|x| x as i32) + } else { + return Err(PyValueError::new_err( + "Unsupported data type for preferred_coins", + )); + }; + + let bot_params_pair = bot_params_pair_from_dict(bot_params_pair_dict)?; + let exchange_params = { + let mut params_vec = Vec::new(); + if let Ok(py_list) = exchange_params_list.downcast::() { + for py_dict in py_list.iter() { + if let Ok(dict) = py_dict.downcast::() { + let params = exchange_params_from_dict(dict)?; + params_vec.push(params); + } else { + return Err(PyValueError::new_err( + "Unsupported data type in exchange_params_list", + )); + } + } + } else { + return Err(PyValueError::new_err( + "Unsupported data type for exchange_params_list", + )); + } + params_vec + }; + + let backtest_params = backtest_params_from_dict(backtest_params_dict)?; + + let mut backtest = Backtest::new( + hlcs_rust.to_owned(), + preferred_coins_rust, + bot_params_pair, + exchange_params, + &backtest_params, + ); + + // Run the backtest and get fills and equities + Python::with_gil(|py| { + let (fills, equities) = backtest.run(); + let analysis = analyze_backtest(&fills, &equities); + let py_analysis = PyDict::new(py); + py_analysis.set_item("adg", analysis.adg)?; + py_analysis.set_item("mdg", analysis.mdg)?; + py_analysis.set_item("sharpe_ratio", analysis.sharpe_ratio)?; + py_analysis.set_item("drawdown_worst", analysis.drawdown_worst)?; + py_analysis.set_item( + "equity_balance_diff_mean", + analysis.equity_balance_diff_mean, + )?; + py_analysis.set_item("equity_balance_diff_max", analysis.equity_balance_diff_max)?; + py_analysis.set_item("loss_profit_ratio", analysis.loss_profit_ratio)?; + + // Convert fills to a 2D array with mixed types + let mut py_fills = Array2::from_elem((fills.len(), 10), py.None()); + for (i, fill) in fills.iter().enumerate() { + py_fills[(i, 0)] = fill.index.into_py(py); + py_fills[(i, 1)] = ::clone(&fill.symbol).into_py(py); + py_fills[(i, 2)] = fill.pnl.into_py(py); + py_fills[(i, 3)] = fill.fee_paid.into_py(py); + py_fills[(i, 4)] = fill.balance.into_py(py); + py_fills[(i, 5)] = fill.fill_qty.into_py(py); + py_fills[(i, 6)] = fill.fill_price.into_py(py); + py_fills[(i, 7)] = fill.position_size.into_py(py); + py_fills[(i, 8)] = fill.position_price.into_py(py); + py_fills[(i, 9)] = fill.order_type.to_string().into_py(py); + } + + // Convert equities to a 1D array + let py_equities = Array1::from_vec(equities); + + Ok(( + py_fills.into_pyarray(py).to_owned(), + py_equities.into_pyarray(py).to_owned(), + py_analysis.into(), + )) + }) +} + +fn backtest_params_from_dict(dict: &PyDict) -> PyResult { + Ok(BacktestParams { + starting_balance: extract_value(dict, "starting_balance").unwrap_or_default(), + maker_fee: extract_value(dict, "maker_fee").unwrap_or_default(), + symbols: extract_value(dict, "symbols").unwrap_or_default(), + }) +} + +fn exchange_params_from_dict(dict: &PyDict) -> PyResult { + Ok(ExchangeParams { + qty_step: extract_value(dict, "qty_step").unwrap_or_default(), + price_step: extract_value(dict, "price_step").unwrap_or_default(), + min_qty: extract_value(dict, "min_qty").unwrap_or_default(), + min_cost: extract_value(dict, "min_cost").unwrap_or_default(), + c_mult: extract_value(dict, "c_mult").unwrap_or_default(), + }) +} + +fn bot_params_pair_from_dict(dict: &PyDict) -> PyResult { + Ok(BotParamsPair { + long: bot_params_from_dict(extract_value(dict, "long")?)?, + short: bot_params_from_dict(extract_value(dict, "short")?)?, + }) +} + +fn bot_params_from_dict(dict: &PyDict) -> PyResult { + Ok(BotParams { + close_grid_markup_range: extract_value(dict, "close_grid_markup_range")?, + close_grid_min_markup: extract_value(dict, "close_grid_min_markup")?, + close_grid_qty_pct: extract_value(dict, "close_grid_qty_pct")?, + close_trailing_retracement_pct: extract_value(dict, "close_trailing_retracement_pct")?, + close_trailing_grid_ratio: extract_value(dict, "close_trailing_grid_ratio")?, + close_trailing_qty_pct: extract_value(dict, "close_trailing_qty_pct")?, + close_trailing_threshold_pct: extract_value(dict, "close_trailing_threshold_pct")?, + entry_grid_double_down_factor: extract_value(dict, "entry_grid_double_down_factor")?, + entry_grid_spacing_weight: extract_value(dict, "entry_grid_spacing_weight")?, + entry_grid_spacing_pct: extract_value(dict, "entry_grid_spacing_pct")?, + entry_initial_ema_dist: extract_value(dict, "entry_initial_ema_dist")?, + entry_initial_qty_pct: extract_value(dict, "entry_initial_qty_pct")?, + entry_trailing_retracement_pct: extract_value(dict, "entry_trailing_retracement_pct")?, + entry_trailing_grid_ratio: extract_value(dict, "entry_trailing_grid_ratio")?, + entry_trailing_threshold_pct: extract_value(dict, "entry_trailing_threshold_pct")?, + ema_span_0: extract_value(dict, "ema_span_0")?, + ema_span_1: extract_value(dict, "ema_span_1")?, + n_positions: { + let n_positions_float: f64 = extract_value(dict, "n_positions")?; + n_positions_float.round() as usize + }, + total_wallet_exposure_limit: extract_value(dict, "total_wallet_exposure_limit")?, + wallet_exposure_limit: extract_value(dict, "wallet_exposure_limit")?, + unstuck_close_pct: extract_value(dict, "unstuck_close_pct")?, + unstuck_ema_dist: extract_value(dict, "unstuck_ema_dist")?, + unstuck_loss_allowance_pct: extract_value(dict, "unstuck_loss_allowance_pct")?, + unstuck_threshold: extract_value(dict, "unstuck_threshold")?, + }) +} + +fn extract_value<'a, T: pyo3::FromPyObject<'a>>(dict: &'a PyDict, key: &str) -> PyResult { + dict.get_item(key) + .map_err(|_| { + PyErr::new::(format!("Key '{}' not found", key)) + })? + .ok_or_else(|| PyErr::new::("Value is None")) + .and_then(pyo3::FromPyObject::extract) +} + +#[pyfunction] +pub fn calc_grid_close_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + close_grid_markup_range: f64, + close_grid_min_markup: f64, + close_grid_qty_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + order_book_ask: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + ask: order_book_ask, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + close_grid_markup_range, + close_grid_min_markup, + close_grid_qty_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + + let order = calc_grid_close_long(&exchange_params, &state_params, &bot_params, &position); + (order.qty, order.price, order.order_type.to_string()) +} + +#[pyfunction] +pub fn calc_trailing_close_long_py( + price_step: f64, + order_book_ask: f64, + max_since_open: f64, + min_since_max: f64, + close_trailing_threshold_pct: f64, + close_trailing_retracement_pct: f64, + position_size: f64, + position_price: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + price_step, + ..Default::default() + }; + let state_params = StateParams { + order_book: OrderBook { + ask: order_book_ask, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + close_trailing_retracement_pct: close_trailing_retracement_pct, + close_trailing_threshold_pct: close_trailing_threshold_pct, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + max_since_open: max_since_open, + min_since_max: min_since_max, + ..Default::default() + }; + let order = calc_trailing_close_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + (order.qty, order.price, order.order_type.to_string()) +} + +#[pyfunction] +pub fn calc_grid_entry_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + balance: f64, + order_book_bid: f64, + ema_bands_lower: f64, + entry_grid_double_down_factor: f64, + entry_grid_spacing_weight: f64, + entry_grid_spacing_pct: f64, + entry_initial_ema_dist: f64, + entry_initial_qty_pct: f64, + wallet_exposure_limit: f64, + position_size: f64, + position_price: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + bid: order_book_bid, + ..Default::default() + }, + ema_bands: EMABands { + lower: ema_bands_lower, + ..Default::default() + }, + }; + let bot_params = BotParams { + entry_grid_double_down_factor, + entry_grid_spacing_weight, + entry_grid_spacing_pct, + entry_initial_ema_dist, + entry_initial_qty_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + + let order = calc_grid_entry_long(&exchange_params, &state_params, &bot_params, &position); + (order.qty, order.price, order.order_type.to_string()) +} + +#[pyfunction] +pub fn calc_trailing_entry_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + balance: f64, + order_book_bid: f64, + entry_grid_double_down_factor: f64, + entry_initial_qty_pct: f64, + wallet_exposure_limit: f64, + position_size: f64, + position_price: f64, + min_since_open: f64, + max_since_min: f64, + entry_trailing_threshold_pct: f64, + entry_trailing_retracement_pct: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + bid: order_book_bid, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + entry_grid_double_down_factor, + entry_initial_qty_pct, + entry_trailing_threshold_pct, + entry_trailing_retracement_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + min_since_open: min_since_open, + max_since_min: max_since_min, + ..Default::default() + }; + let order = calc_trailing_entry_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + (order.qty, order.price, order.order_type.to_string()) +} + +#[pyfunction] +pub fn calc_next_entry_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + entry_grid_double_down_factor: f64, + entry_grid_spacing_weight: f64, + entry_grid_spacing_pct: f64, + entry_initial_ema_dist: f64, + entry_initial_qty_pct: f64, + entry_trailing_grid_ratio: f64, + entry_trailing_retracement_pct: f64, + entry_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + min_since_open: f64, + max_since_min: f64, + ema_bands_lower: f64, + order_book_bid: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + bid: order_book_bid, + ..Default::default() + }, + ema_bands: EMABands { + lower: ema_bands_lower, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + entry_grid_double_down_factor, + entry_grid_spacing_weight, + entry_grid_spacing_pct, + entry_initial_ema_dist, + entry_initial_qty_pct, + entry_trailing_grid_ratio, + entry_trailing_retracement_pct, + entry_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + min_since_open: min_since_open, + max_since_min: max_since_min, + ..Default::default() + }; + let next_entry = calc_next_entry_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + + ( + next_entry.qty, + next_entry.price, + next_entry.order_type.to_string(), + ) +} + +#[pyfunction] +pub fn calc_next_close_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + close_grid_markup_range: f64, + close_grid_min_markup: f64, + close_grid_qty_pct: f64, + close_trailing_grid_ratio: f64, + close_trailing_qty_pct: f64, + close_trailing_retracement_pct: f64, + close_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + max_since_open: f64, + min_since_max: f64, + order_book_ask: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + ask: order_book_ask, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + close_grid_markup_range, + close_grid_min_markup, + close_grid_qty_pct, + close_trailing_grid_ratio, + close_trailing_qty_pct, + close_trailing_retracement_pct, + close_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + max_since_open: max_since_open, + min_since_max: min_since_max, + ..Default::default() + }; + let next_entry = calc_next_close_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + ( + next_entry.qty, + next_entry.price, + next_entry.order_type.to_string(), + ) +} + +#[pyfunction] +pub fn calc_next_entry_short_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + entry_grid_double_down_factor: f64, + entry_grid_spacing_weight: f64, + entry_grid_spacing_pct: f64, + entry_initial_ema_dist: f64, + entry_initial_qty_pct: f64, + entry_trailing_grid_ratio: f64, + entry_trailing_retracement_pct: f64, + entry_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + max_since_open: f64, + min_since_max: f64, + ema_bands_upper: f64, + order_book_ask: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + ask: order_book_ask, + ..Default::default() + }, + ema_bands: EMABands { + upper: ema_bands_upper, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + entry_grid_double_down_factor, + entry_grid_spacing_weight, + entry_grid_spacing_pct, + entry_initial_ema_dist, + entry_initial_qty_pct, + entry_trailing_grid_ratio, + entry_trailing_retracement_pct, + entry_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + max_since_open: max_since_open, + min_since_max: min_since_max, + ..Default::default() + }; + let next_entry = calc_next_entry_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + + ( + next_entry.qty, + next_entry.price, + next_entry.order_type.to_string(), + ) +} + +#[pyfunction] +pub fn calc_next_close_short_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + close_grid_markup_range: f64, + close_grid_min_markup: f64, + close_grid_qty_pct: f64, + close_trailing_grid_ratio: f64, + close_trailing_qty_pct: f64, + close_trailing_retracement_pct: f64, + close_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + min_since_open: f64, + max_since_min: f64, + order_book_bid: f64, +) -> (f64, f64, String) { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + let state_params = StateParams { + balance, + order_book: OrderBook { + bid: order_book_bid, + ..Default::default() + }, + ..Default::default() + }; + let bot_params = BotParams { + close_grid_markup_range, + close_grid_min_markup, + close_grid_qty_pct, + close_trailing_grid_ratio, + close_trailing_qty_pct, + close_trailing_retracement_pct, + close_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + min_since_open: min_since_open, + max_since_min: max_since_min, + ..Default::default() + }; + let next_entry = calc_next_close_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + ( + next_entry.qty, + next_entry.price, + next_entry.order_type.to_string(), + ) +} + +#[pyfunction] +pub fn calc_entries_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + entry_grid_double_down_factor: f64, + entry_grid_spacing_weight: f64, + entry_grid_spacing_pct: f64, + entry_initial_ema_dist: f64, + entry_initial_qty_pct: f64, + entry_trailing_grid_ratio: f64, + entry_trailing_retracement_pct: f64, + entry_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + min_since_open: f64, + max_since_min: f64, + ema_bands_lower: f64, + order_book_bid: f64, +) -> Vec<(f64, f64, String)> { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + + let state_params = StateParams { + balance, + order_book: OrderBook { + bid: order_book_bid, + ..Default::default() + }, + ema_bands: EMABands { + lower: ema_bands_lower, + ..Default::default() + }, + ..Default::default() + }; + + let bot_params = BotParams { + entry_grid_double_down_factor, + entry_grid_spacing_weight, + entry_grid_spacing_pct, + entry_initial_ema_dist, + entry_initial_qty_pct, + entry_trailing_grid_ratio, + entry_trailing_retracement_pct, + entry_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + min_since_open: min_since_open, + max_since_min: max_since_min, + ..Default::default() + }; + let entries = calc_entries_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + + // Convert entries to Python-compatible format + entries + .into_iter() + .map(|order| (order.qty, order.price, order.order_type.to_string())) + .collect() +} + +#[pyfunction] +pub fn calc_entries_short_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + entry_grid_double_down_factor: f64, + entry_grid_spacing_weight: f64, + entry_grid_spacing_pct: f64, + entry_initial_ema_dist: f64, + entry_initial_qty_pct: f64, + entry_trailing_grid_ratio: f64, + entry_trailing_retracement_pct: f64, + entry_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + max_since_open: f64, + min_since_max: f64, + ema_bands_upper: f64, + order_book_ask: f64, +) -> Vec<(f64, f64, String)> { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + + let state_params = StateParams { + balance, + order_book: OrderBook { + ask: order_book_ask, + ..Default::default() + }, + ema_bands: EMABands { + upper: ema_bands_upper, + ..Default::default() + }, + ..Default::default() + }; + + let bot_params = BotParams { + entry_grid_double_down_factor, + entry_grid_spacing_weight, + entry_grid_spacing_pct, + entry_initial_ema_dist, + entry_initial_qty_pct, + entry_trailing_grid_ratio, + entry_trailing_retracement_pct, + entry_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + max_since_open: max_since_open, + min_since_max: min_since_max, + ..Default::default() + }; + let entries = calc_entries_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + + // Convert entries to Python-compatible format + entries + .into_iter() + .map(|order| (order.qty, order.price, order.order_type.to_string())) + .collect() +} + +#[pyfunction] +pub fn calc_closes_long_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + close_grid_markup_range: f64, + close_grid_min_markup: f64, + close_grid_qty_pct: f64, + close_trailing_grid_ratio: f64, + close_trailing_qty_pct: f64, + close_trailing_retracement_pct: f64, + close_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + max_since_open: f64, + min_since_max: f64, + order_book_ask: f64, +) -> Vec<(f64, f64, String)> { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + + let state_params = StateParams { + balance, + order_book: OrderBook { + ask: order_book_ask, + ..Default::default() + }, + ..Default::default() + }; + + let bot_params = BotParams { + close_grid_markup_range, + close_grid_min_markup, + close_grid_qty_pct, + close_trailing_grid_ratio, + close_trailing_qty_pct, + close_trailing_retracement_pct, + close_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + max_since_open: max_since_open, + min_since_max: min_since_max, + ..Default::default() + }; + let closes = calc_closes_long( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + + // Convert closes to Python-compatible format + closes + .into_iter() + .map(|order| (order.qty, order.price, order.order_type.to_string())) + .collect() +} + +#[pyfunction] +pub fn calc_closes_short_py( + qty_step: f64, + price_step: f64, + min_qty: f64, + min_cost: f64, + c_mult: f64, + close_grid_markup_range: f64, + close_grid_min_markup: f64, + close_grid_qty_pct: f64, + close_trailing_grid_ratio: f64, + close_trailing_qty_pct: f64, + close_trailing_retracement_pct: f64, + close_trailing_threshold_pct: f64, + wallet_exposure_limit: f64, + balance: f64, + position_size: f64, + position_price: f64, + min_since_open: f64, + max_since_min: f64, + order_book_bid: f64, +) -> Vec<(f64, f64, String)> { + let exchange_params = ExchangeParams { + qty_step, + price_step, + min_qty, + min_cost, + c_mult, + }; + + let state_params = StateParams { + balance, + order_book: OrderBook { + bid: order_book_bid, + ..Default::default() + }, + ..Default::default() + }; + + let bot_params = BotParams { + close_grid_markup_range, + close_grid_min_markup, + close_grid_qty_pct, + close_trailing_grid_ratio, + close_trailing_qty_pct, + close_trailing_retracement_pct, + close_trailing_threshold_pct, + wallet_exposure_limit, + ..Default::default() + }; + let position = Position { + size: position_size, + price: position_price, + }; + let trailing_price_bundle = TrailingPriceBundle { + min_since_open: min_since_open, + max_since_min: max_since_min, + ..Default::default() + }; + let closes = calc_closes_short( + &exchange_params, + &state_params, + &bot_params, + &position, + &trailing_price_bundle, + ); + + // Convert closes to Python-compatible format + closes + .into_iter() + .map(|order| (order.qty, order.price, order.order_type.to_string())) + .collect() +} diff --git a/passivbot-rust/src/types.rs b/passivbot-rust/src/types.rs new file mode 100644 index 000000000..c6cd13245 --- /dev/null +++ b/passivbot-rust/src/types.rs @@ -0,0 +1,236 @@ +use std::collections::HashMap; +use std::fmt; + +#[derive(Debug)] +pub struct ExchangeParams { + pub qty_step: f64, + pub price_step: f64, + pub min_qty: f64, + pub min_cost: f64, + pub c_mult: f64, +} + +impl Default for ExchangeParams { + fn default() -> Self { + ExchangeParams { + qty_step: 0.00001, + price_step: 0.00001, + min_qty: 0.00001, + min_cost: 1.0, + c_mult: 1.0, + } + } +} + +#[derive(Clone)] +pub struct BacktestParams { + pub starting_balance: f64, + pub maker_fee: f64, + pub symbols: Vec, +} + +#[derive(Default, Debug, Clone, Copy)] +pub struct Position { + pub size: f64, + pub price: f64, +} + +#[derive(Debug, Default)] +pub struct Positions { + pub long: HashMap, + pub short: HashMap, +} + +#[derive(Debug, Default, Clone)] +pub struct EMABands { + pub upper: f64, + pub lower: f64, +} + +#[derive(Debug, Clone, Copy)] +pub struct Order { + pub qty: f64, + pub price: f64, + pub order_type: OrderType, +} + +impl Order { + pub fn new(qty: f64, price: f64, order_type: OrderType) -> Self { + Order { + qty, + price, + order_type, + } + } +} + +impl Default for Order { + fn default() -> Self { + Order { + qty: 0.0, + price: 0.0, + order_type: OrderType::Empty, + } + } +} + +#[derive(Debug, Default, Clone)] +pub struct OrderBook { + pub bid: f64, + pub ask: f64, +} + +#[derive(Debug, Default, Clone)] +pub struct StateParams { + pub balance: f64, + pub order_book: OrderBook, + pub ema_bands: EMABands, +} + +#[derive(Clone, Default, Debug)] +pub struct BotParamsPair { + pub long: BotParams, + pub short: BotParams, +} + +#[derive(Clone, Default, Debug)] +pub struct BotParams { + pub close_grid_markup_range: f64, + pub close_grid_min_markup: f64, + pub close_grid_qty_pct: f64, + pub close_trailing_retracement_pct: f64, + pub close_trailing_grid_ratio: f64, + pub close_trailing_qty_pct: f64, + pub close_trailing_threshold_pct: f64, + pub entry_grid_double_down_factor: f64, + pub entry_grid_spacing_weight: f64, + pub entry_grid_spacing_pct: f64, + pub entry_initial_ema_dist: f64, + pub entry_initial_qty_pct: f64, + pub entry_trailing_retracement_pct: f64, + pub entry_trailing_grid_ratio: f64, + pub entry_trailing_threshold_pct: f64, + pub ema_span_0: f64, + pub ema_span_1: f64, + pub n_positions: usize, + pub total_wallet_exposure_limit: f64, + pub wallet_exposure_limit: f64, // is total_wallet_exposure_limit / n_positions + pub unstuck_close_pct: f64, + pub unstuck_ema_dist: f64, + pub unstuck_loss_allowance_pct: f64, + pub unstuck_threshold: f64, +} + +#[derive(Debug)] +pub struct TrailingPriceBundle { + pub min_since_open: f64, + pub max_since_min: f64, + pub max_since_open: f64, + pub min_since_max: f64, +} +impl Default for TrailingPriceBundle { + fn default() -> Self { + TrailingPriceBundle { + min_since_open: f64::MAX, + max_since_min: 0.0, + max_since_open: 0.0, + min_since_max: f64::MAX, + } + } +} + +#[derive(Debug, PartialEq, Eq, Clone, Copy)] +pub enum OrderType { + EntryInitialNormalLong, + EntryInitialPartialLong, + EntryTrailingNormalLong, + EntryTrailingCroppedLong, + EntryGridNormalLong, + EntryGridCroppedLong, + EntryGridInflatedLong, + + CloseGridLong, + CloseTrailingLong, + CloseUnstuckLong, + + EntryInitialNormalShort, + EntryInitialPartialShort, + EntryTrailingNormalShort, + EntryTrailingCroppedShort, + EntryGridNormalShort, + EntryGridCroppedShort, + EntryGridInflatedShort, + + CloseGridShort, + CloseTrailingShort, + CloseUnstuckShort, + + Empty, +} + +impl fmt::Display for OrderType { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + match self { + OrderType::EntryInitialNormalLong => write!(f, "entry_initial_normal_long"), + OrderType::EntryInitialPartialLong => write!(f, "entry_initial_partial_long"), + OrderType::EntryTrailingNormalLong => write!(f, "entry_trailing_normal_long"), + OrderType::EntryTrailingCroppedLong => write!(f, "entry_trailing_cropped_long"), + OrderType::EntryGridNormalLong => write!(f, "entry_grid_normal_long"), + OrderType::EntryGridCroppedLong => write!(f, "entry_grid_cropped_long"), + OrderType::EntryGridInflatedLong => write!(f, "entry_grid_inflated_long"), + OrderType::CloseGridLong => write!(f, "close_grid_long"), + OrderType::CloseTrailingLong => write!(f, "close_trailing_long"), + OrderType::CloseUnstuckLong => write!(f, "close_unstuck_long"), + OrderType::EntryInitialNormalShort => write!(f, "entry_initial_normal_short"), + OrderType::EntryInitialPartialShort => write!(f, "entry_initial_partial_short"), + OrderType::EntryTrailingNormalShort => write!(f, "entry_trailing_normal_short"), + OrderType::EntryTrailingCroppedShort => write!(f, "entry_trailing_cropped_short"), + OrderType::EntryGridNormalShort => write!(f, "entry_grid_normal_short"), + OrderType::EntryGridCroppedShort => write!(f, "entry_grid_cropped_short"), + OrderType::EntryGridInflatedShort => write!(f, "entry_grid_inflated_short"), + OrderType::CloseGridShort => write!(f, "close_grid_short"), + OrderType::CloseTrailingShort => write!(f, "close_trailing_short"), + OrderType::CloseUnstuckShort => write!(f, "close_unstuck_short"), + OrderType::Empty => write!(f, "empty"), + } + } +} + +#[derive(Debug, Clone)] +pub struct Fill { + pub index: usize, + pub symbol: String, + pub pnl: f64, + pub fee_paid: f64, + pub balance: f64, + pub fill_qty: f64, + pub fill_price: f64, + pub position_size: f64, + pub position_price: f64, + pub order_type: OrderType, +} + +#[derive(Debug)] +pub struct Analysis { + pub adg: f64, + pub mdg: f64, + pub sharpe_ratio: f64, + pub drawdown_worst: f64, + pub equity_balance_diff_mean: f64, + pub equity_balance_diff_max: f64, + pub loss_profit_ratio: f64, +} + +impl Default for Analysis { + fn default() -> Self { + Analysis { + adg: 0.0, + mdg: 0.0, + sharpe_ratio: 0.0, + drawdown_worst: 1.0, + equity_balance_diff_mean: 1.0, + equity_balance_diff_max: 1.0, + loss_profit_ratio: 1.0, + } + } +} diff --git a/passivbot-rust/src/utils.rs b/passivbot-rust/src/utils.rs new file mode 100644 index 000000000..4172f44f2 --- /dev/null +++ b/passivbot-rust/src/utils.rs @@ -0,0 +1,203 @@ +use crate::constants::{CLOSE, LONG, NO_POS, SHORT}; +use crate::types::ExchangeParams; +use pyo3::prelude::*; + +/// Rounds a number to the specified number of decimal places. +fn round_to_decimal_places(value: f64, decimal_places: usize) -> f64 { + let multiplier = 10f64.powi(decimal_places as i32); + (value * multiplier).round() / multiplier +} + +/// Rounds up a number to the nearest multiple of the given step. +#[pyfunction] +pub fn round_up(n: f64, step: f64) -> f64 { + let result = (n / step).ceil() * step; + round_to_decimal_places(result, 10) +} + +/// Rounds a number to the nearest multiple of the given step. +#[pyfunction] +pub fn round_(n: f64, step: f64) -> f64 { + let result = (n / step).round() * step; + round_to_decimal_places(result, 10) +} + +/// Rounds down a number to the nearest multiple of the given step. +#[pyfunction] +pub fn round_dn(n: f64, step: f64) -> f64 { + let result = (n / step).floor() * step; + round_to_decimal_places(result, 10) +} + +#[pyfunction] +pub fn calc_diff(x: f64, y: f64) -> f64 { + if y == 0.0 { + if x == 0.0 { + 0.0 + } else { + f64::INFINITY + } + } else { + (x - y).abs() / y.abs() + } +} + +#[pyfunction] +pub fn cost_to_qty(cost: f64, price: f64, c_mult: f64) -> f64 { + if price > 0.0 { + (cost.abs() / price) / c_mult + } else { + 0.0 + } +} + +#[pyfunction] +pub fn qty_to_cost(qty: f64, price: f64, c_mult: f64) -> f64 { + (qty.abs() * price) * c_mult +} + +#[pyfunction] +pub fn calc_wallet_exposure( + c_mult: f64, + balance: f64, + position_size: f64, + position_price: f64, +) -> f64 { + if balance <= 0.0 || position_size == 0.0 { + return 0.0; + } + qty_to_cost(position_size, position_price, c_mult) / balance +} + +pub fn calc_wallet_exposure_if_filled( + balance: f64, + psize: f64, + pprice: f64, + qty: f64, + price: f64, + exchange_params: &ExchangeParams, +) -> f64 { + let psize = round_(psize.abs(), exchange_params.qty_step); + let qty = round_(qty.abs(), exchange_params.qty_step); + let (new_psize, new_pprice) = + calc_new_psize_pprice(psize, pprice, qty, price, exchange_params.qty_step); + calc_wallet_exposure(exchange_params.c_mult, balance, new_psize, new_pprice) +} + +#[pyfunction] +pub fn calc_new_psize_pprice( + psize: f64, + pprice: f64, + qty: f64, + price: f64, + qty_step: f64, +) -> (f64, f64) { + if qty == 0.0 { + return (psize, pprice); + } + if psize == 0.0 { + return (qty, price); + } + let new_psize = round_(psize + qty, qty_step); + if new_psize == 0.0 { + return (0.0, 0.0); + } + ( + new_psize, + nan_to_0(pprice) * (psize / new_psize) + price * (qty / new_psize), + ) +} + +fn nan_to_0(value: f64) -> f64 { + if value.is_nan() { + 0.0 + } else { + value + } +} + +pub fn interpolate(x: f64, xs: &[f64], ys: &[f64]) -> f64 { + assert_eq!(xs.len(), ys.len(), "xs and ys must have the same length"); + + let n = xs.len(); + let mut result = 0.0; + + for i in 0..n { + let mut term = ys[i]; + for j in 0..n { + if i != j { + term *= (x - xs[j]) / (xs[i] - xs[j]); + } + } + result += term; + } + + result +} + +pub fn calc_pnl_long(entry_price: f64, close_price: f64, qty: f64, c_mult: f64) -> f64 { + qty.abs() * c_mult * (close_price - entry_price) +} + +pub fn calc_pnl_short(entry_price: f64, close_price: f64, qty: f64, c_mult: f64) -> f64 { + qty.abs() * c_mult * (entry_price - close_price) +} + +pub fn calc_pprice_diff_int(pside: usize, pprice: f64, price: f64) -> f64 { + match pside { + LONG => { + // long + if pprice > 0.0 { + 1.0 - price / pprice + } else { + 0.0 + } + } + SHORT => { + // short + if pprice > 0.0 { + price / pprice - 1.0 + } else { + 0.0 + } + } + _ => panic!("unknown pside {}", pside), + } +} + +pub fn calc_auto_unstuck_allowance( + balance: f64, + loss_allowance_pct: f64, + pnl_cumsum_max: f64, + pnl_cumsum_last: f64, +) -> f64 { + // allow up to 1% drop from balance peak for auto unstuck + + let balance_peak = balance + (pnl_cumsum_max - pnl_cumsum_last); + let drop_since_peak_pct = balance / balance_peak - 1.0; + (balance_peak * (loss_allowance_pct + drop_since_peak_pct)).max(0.0) +} + +pub fn calc_ema_price_bid( + price_step: f64, + order_book_bid: f64, + ema_bands_lower: f64, + ema_dist: f64, +) -> f64 { + f64::min( + order_book_bid, + round_dn(ema_bands_lower * (1.0 - ema_dist), price_step), + ) +} + +pub fn calc_ema_price_ask( + price_step: f64, + order_book_ask: f64, + ema_bands_upper: f64, + ema_dist: f64, +) -> f64 { + f64::max( + order_book_ask, + round_up(ema_bands_upper * (1.0 + ema_dist), price_step), + ) +} diff --git a/passivbot.py b/passivbot.py deleted file mode 100644 index adbfda11e..000000000 --- a/passivbot.py +++ /dev/null @@ -1,2039 +0,0 @@ -import os - -if "NOJIT" not in os.environ: - os.environ["NOJIT"] = "true" - -import traceback -import argparse -import asyncio -import json -import signal -import pprint -import numpy as np -import time -import random -from uuid import uuid4 -from procedures import ( - load_live_config, - make_get_filepath, - load_exchange_key_secret_passphrase, - numpyize, - print_async_exception, - utc_ms, - load_broker_code, -) -from pure_funcs import ( - filter_orders, - create_xk, - round_dynamic, - denumpyize, - spotify_config, - determine_passivbot_mode, - config_pretty_str, - shorten_custom_id, - ts_to_date, -) -from njit_funcs import ( - qty_to_cost, - calc_diff, - round_, - calc_close_grid_long, - calc_close_grid_short, - calc_upnl, - calc_samples, - calc_emas_last, - calc_ema, - calc_delay_between_fills_ms_bid, - calc_delay_between_fills_ms_ask, -) -from njit_funcs_neat_grid import ( - calc_neat_grid_long, - calc_neat_grid_short, -) -from njit_funcs_recursive_grid import ( - calc_recursive_entries_long, - calc_recursive_entries_short, -) -from njit_clock import ( - calc_clock_entry_long, - calc_clock_entry_short, - calc_clock_close_long, - calc_clock_close_short, -) -from typing import Union, Dict, List - -import websockets -import logging - -TEST_MODE_SUPPORTED_EXCHANGES = ["bybit", "binance"] - - -class Bot: - def __init__(self, config: dict): - self.spot = False - self.config = config - self.config["max_leverage"] = 25 - self.xk = {} - - self.ws_user = None - self.ws_market = None - - self.hedge_mode = self.config["hedge_mode"] = True - self.set_config(self.config) - self.server_time = utc_ms() - - self.ts_locked = { - k: 0.0 - for k in [ - "cancel_orders", - "update_open_orders", - "cancel_and_create", - "update_position", - "create_orders", - "check_fills", - "update_fills", - "update_last_fills_timestamps", - "force_update", - ] - } - self.ts_released = {k: 1.0 for k in self.ts_locked} - self.error_halt = { - "update_open_orders": False, - "update_fills": False, - "update_position": False, - } - self.heartbeat_ts = 0 - self.heartbeat_interval_seconds = 60 * 60 - self.listen_key = None - - self.position = {} - self.open_orders = [] - self.fills = [] - self.last_fills_timestamps = { - "clock_entry_long": 0, - "clock_entry_short": 0, - "clock_close_long": 0, - "clock_close_short": 0, - "unstuck_close_long": 0, - "unstuck_close_short": 0, - } - self.price = 0.0 - self.ob = [0.0, 0.0] - self.emas_long = np.zeros(3) - self.emas_short = np.zeros(3) - self.ema_sec = 0 - self.auto_unstuck_on_timer = True - - self.n_orders_per_execution = 2 - self.delay_between_executions = 3 - self.force_update_interval = 30 - - self.c_mult = self.config["c_mult"] = 1.0 - - self.log_filepath = make_get_filepath(f"logs/{self.exchange}/{config['config_name']}.log") - - self.api_keys = config["api_keys"] if "api_keys" in config else None - _, self.key, self.secret, self.passphrase = load_exchange_key_secret_passphrase( - self.user, self.api_keys - ) - self.broker_code = load_broker_code(self.exchange) - - self.log_level = 0 - - self.user_stream_task = None - self.market_stream_task = None - - self.stop_websocket = False - self.process_websocket_ticks = True - - self.custom_id_max_length = 36 - - def set_config(self, config): - for k, v in [ - ("long_mode", None), - ("short_mode", None), - ("test_mode", False), - ("assigned_balance", None), - ("cross_wallet_pct", 1.0), - ("price_distance_threshold", 0.5), - ("c_mult", 1.0), - ("leverage", 7.0), - ("countdown", False), - ("countdown_offset", 0), - ("ohlcv", True), - ]: - if k not in config: - config[k] = v - self.passivbot_mode = config["passivbot_mode"] = determine_passivbot_mode(config) - if config["cross_wallet_pct"] > 1.0 or config["cross_wallet_pct"] <= 0.0: - logging.warning( - f"Invalid cross_wallet_pct given: {config['cross_wallet_pct']}. " - + "It must be greater than zero and less than or equal to one. Defaulting to 1.0." - ) - config["cross_wallet_pct"] = 1.0 - if self.passivbot_mode in ["neat_grid", "recursive_grid"]: - self.auto_unstuck_on_timer = any( - [ - self.config[side][key] != 0.0 - for side in ["long", "short"] - for key in ["auto_unstuck_delay_minutes", "auto_unstuck_qty_pct"] - ] - ) - self.config["do_long"] = config["long"]["enabled"] - self.config["do_short"] = config["short"]["enabled"] - self.ema_spans_long = np.array( - sorted( - [ - config["long"]["ema_span_0"], - (config["long"]["ema_span_0"] * config["long"]["ema_span_1"]) ** 0.5, - config["long"]["ema_span_1"], - ] - ) - ) - self.ema_spans_short = np.array( - sorted( - [ - config["short"]["ema_span_0"], - (config["short"]["ema_span_0"] * config["short"]["ema_span_1"]) ** 0.5, - config["short"]["ema_span_1"], - ] - ) - ) - self.config = config - for key in config: - setattr(self, key, config[key]) - if key in self.xk: - self.xk[key] = config[key] - - def set_config_value(self, key, value): - self.config[key] = value - setattr(self, key, self.config[key]) - - async def _init(self): - self.xk = create_xk(self.config) - if self.passivbot_mode == "clock": - self.xk["auto_unstuck_ema_dist"] = (0.0, 0.0) - self.xk["auto_unstuck_wallet_exposure_threshold"] = (0.0, 0.0) - self.xk["auto_unstuck_delay_minutes"] = (0.0, 0.0) - self.xk["auto_unstuck_qty_pct"] = (0.0, 0.0) - self.xk["delay_between_fills_ms_entry"] = ( - self.config["long"]["delay_between_fills_minutes_entry"] * 60 * 1000.0, - self.config["short"]["delay_between_fills_minutes_entry"] * 60 * 1000.0, - ) - self.xk["delay_between_fills_ms_close"] = ( - self.config["long"]["delay_between_fills_minutes_close"] * 60 * 1000.0, - self.config["short"]["delay_between_fills_minutes_close"] * 60 * 1000.0, - ) - print("initiating position, open orders, fills, exchange config, order book, and emas...") - await asyncio.sleep(self.countdown_offset) - await asyncio.gather( - self.update_position(), - self.update_open_orders(), - self.init_fills(), - self.init_exchange_config(), - self.init_order_book(), - self.update_server_time(), - self.update_last_fills_timestamps(), - ) - await self.init_emas() - print("done") - if "price_step_custom" in self.config and self.config["price_step_custom"] not in [None, 0.0]: - new_price_step = max( - self.price_step, round_(self.config["price_step_custom"], self.price_step) - ) - if new_price_step != self.price_step: - logging.info(f"changing price step from {self.price_step} to {new_price_step}") - self.price_step = self.config["price_step"] = self.xk["price_step"] = new_price_step - elif "price_precision_multiplier" in self.config and self.config[ - "price_precision_multiplier" - ] not in [None, 0.0]: - new_price_step = max( - self.price_step, - round_(self.ob[0] * self.config["price_precision_multiplier"], self.price_step), - ) - if new_price_step != self.price_step: - logging.info(f"changing price step from {self.price_step} to {new_price_step}") - self.price_step = self.config["price_step"] = self.xk["price_step"] = new_price_step - - def dump_log(self, data) -> None: - if "logging_level" in self.config and self.config["logging_level"] > 0: - with open(self.log_filepath, "a") as f: - f.write( - json.dumps({**{"log_timestamp": time.time(), "symbol": self.symbol}, **data}) - + "\n" - ) - - async def init_emas_1m(self, ohlcvs: dict) -> None: - samples1m = calc_samples( - numpyize( - [ - [o["timestamp"], o["volume"], o["close"]] - for o in sorted(ohlcvs.values(), key=lambda x: x["timestamp"]) - ] - ), - 60000, - ) - self.emas_long = calc_emas_last(samples1m[:, 2], self.ema_spans_long) - self.emas_short = calc_emas_last(samples1m[:, 2], self.ema_spans_short) - self.alpha_long = 2 / (self.ema_spans_long + 1) - self.alpha__long = 1 - self.alpha_long - self.alpha_short = 2 / (self.ema_spans_short + 1) - self.alpha__short = 1 - self.alpha_short - self.ema_minute = int(round(time.time() // 60 * 60)) - return samples1m - - async def init_emas(self) -> None: - ohlcvs1m = None - try: - ohlcvs1m = await self.fetch_ohlcvs(interval="1m") - max_span = max(list(self.ema_spans_long) + list(self.ema_spans_short)) - for mins, interval in zip([5, 15, 30, 60, 60 * 4], ["5m", "15m", "30m", "1h", "4h"]): - if max_span <= len(ohlcvs1m) * mins: - break - ohlcvs = await self.fetch_ohlcvs(interval=interval) - ohlcvs = {ohlcv["timestamp"]: ohlcv for ohlcv in ohlcvs + ohlcvs1m} - if self.ohlcv: - return await self.init_emas_1m(ohlcvs) - samples1s = calc_samples( - numpyize( - [ - [o["timestamp"], o["volume"], o["close"]] - for o in sorted(ohlcvs.values(), key=lambda x: x["timestamp"]) - ] - ) - ) - spans1s_long = np.array(self.ema_spans_long) * 60 - spans1s_short = np.array(self.ema_spans_short) * 60 - self.emas_long = calc_emas_last(samples1s[:, 2], spans1s_long) - self.emas_short = calc_emas_last(samples1s[:, 2], spans1s_short) - self.alpha_long = 2 / (spans1s_long + 1) - self.alpha__long = 1 - self.alpha_long - self.alpha_short = 2 / (spans1s_short + 1) - self.alpha__short = 1 - self.alpha_short - self.ema_sec = int(time.time()) - except Exception as e: - logging.error(f"error with init_emas {e}") - traceback.print_exc() - print_async_exception(ohlcvs1m) - logging.info("using current market price as starting EMA") - - self.emas_long = np.repeat(self.price, 3) - self.emas_short = np.repeat(self.price, 3) - self.alpha_long = 2 / (np.array(self.ema_spans_long) * (1 if self.ohlcv else 60) + 1) - self.alpha__long = 1 - self.alpha_long - self.alpha_short = 2 / (np.array(self.ema_spans_short) * (1 if self.ohlcv else 60) + 1) - self.alpha__short = 1 - self.alpha_short - self.ema_sec = int(time.time()) - self.ema_minute = int(round(time.time() // 60 * 60)) - - def update_emas_1m(self, price: float, prev_price: float) -> None: - now_minute = int(round(time.time() // 60 * 60)) - if now_minute <= self.ema_minute: - return - while self.ema_minute < int(round(now_minute - 60)): - self.emas_long = calc_ema(self.alpha_long, self.alpha__long, self.emas_long, prev_price) - self.emas_short = calc_ema( - self.alpha_short, self.alpha__short, self.emas_short, prev_price - ) - self.ema_minute += 60 - self.emas_long = calc_ema(self.alpha_long, self.alpha__long, self.emas_long, price) - self.emas_short = calc_ema(self.alpha_short, self.alpha__short, self.emas_short, price) - self.ema_minute = now_minute - - def update_emas(self, price: float, prev_price: float) -> None: - if self.ohlcv: - return self.update_emas_1m(price, prev_price) - now_sec = int(time.time()) - if now_sec <= self.ema_sec: - return - while self.ema_sec < int(round(now_sec - 1)): - self.emas_long = calc_ema(self.alpha_long, self.alpha__long, self.emas_long, prev_price) - self.emas_short = calc_ema( - self.alpha_short, self.alpha__short, self.emas_short, prev_price - ) - self.ema_sec += 1 - self.emas_long = calc_ema(self.alpha_long, self.alpha__long, self.emas_long, price) - self.emas_short = calc_ema(self.alpha_short, self.alpha__short, self.emas_short, price) - self.ema_sec = now_sec - - async def update_open_orders(self) -> None: - if self.ts_locked["update_open_orders"] > self.ts_released["update_open_orders"]: - return - try: - open_orders = await self.fetch_open_orders() - open_orders = [x for x in open_orders if x["symbol"] == self.symbol] - if self.open_orders != open_orders: - self.dump_log({"log_type": "open_orders", "data": open_orders}) - self.open_orders = open_orders - self.error_halt["update_open_orders"] = False - return True - except Exception as e: - self.error_halt["update_open_orders"] = True - - logging.error(f"error with update open orders {e}") - traceback.print_exc() - return False - finally: - self.ts_released["update_open_orders"] = time.time() - - async def update_ticker(self): - try: - self.ticker = await self.fetch_ticker() - self.ob = [self.ticker["bid"], self.ticker["ask"]] - self.price = self.ticker["last"] - return True - - except Exception as e: - logging.error(f"error with update open orders {e}") - traceback.print_exc() - return False - - def adjust_wallet_balance(self, balance: float) -> float: - return ( - balance if self.assigned_balance is None else self.assigned_balance - ) * self.cross_wallet_pct - - def add_wallet_exposures_to_pos(self, position_: dict): - position = position_.copy() - position["long"]["wallet_exposure"] = ( - ( - qty_to_cost( - position["long"]["size"], - position["long"]["price"], - self.xk["inverse"], - self.xk["c_mult"], - ) - / position["wallet_balance"] - ) - if position["wallet_balance"] - else 0.0 - ) - position["short"]["wallet_exposure"] = ( - ( - qty_to_cost( - position["short"]["size"], - position["short"]["price"], - self.xk["inverse"], - self.xk["c_mult"], - ) - / position["wallet_balance"] - ) - if position["wallet_balance"] - else 0.0 - ) - return position - - async def update_position(self) -> None: - if self.ts_locked["update_position"] > self.ts_released["update_position"]: - return - self.ts_locked["update_position"] = time.time() - try: - position = await self.fetch_position() - assert position is not None - position["wallet_balance"] = self.adjust_wallet_balance(position["wallet_balance"]) - # isolated equity, not cross equity - position["equity"] = position["wallet_balance"] + calc_upnl( - position["long"]["size"], - position["long"]["price"], - position["short"]["size"], - position["short"]["price"], - self.price, - self.inverse, - self.c_mult, - ) - position = self.add_wallet_exposures_to_pos(position) - if self.position != position: - if ( - self.position - and "spot" in self.market_type - and ( - self.position["long"]["size"] != position["long"]["size"] - or self.position["short"]["size"] != position["short"]["size"] - ) - ): - # update fills if position size changed - await self.update_fills() - self.dump_log({"log_type": "position", "data": position}) - self.position = position - self.error_halt["update_position"] = False - return True - except Exception as e: - self.error_halt["update_position"] = True - logging.error(f"error with update position {e}") - traceback.print_exc() - return False - finally: - self.ts_released["update_position"] = time.time() - - async def init_fills(self, n_days_limit=60): - fills = None - try: - fills = await self.fetch_fills() - self.fills = fills - return True - except Exception as e: - self.fills = [] - traceback.print_exc() - print_async_exception(fills) - return False - - async def update_fills(self) -> [dict]: - """ - fetches recent fills - """ - if self.ts_locked["update_fills"] > self.ts_released["update_fills"]: - return - self.ts_locked["update_fills"] = time.time() - try: - fetched = await self.fetch_fills() - seen = set() - updated_fills = [] - for fill in fetched + self.fills: - if fill["order_id"] not in seen: - updated_fills.append(fill) - seen.add(fill["order_id"]) - self.fills = sorted(updated_fills, key=lambda x: x["order_id"])[-5000:] - self.error_halt["update_fills"] = False - except Exception as e: - self.error_halt["update_fills"] = True - logging.error(f"error with update fills {e}") - traceback.print_exc() - finally: - self.ts_released["update_fills"] = time.time() - - async def create_orders(self, orders_to_create: [dict]) -> [dict]: - if not orders_to_create: - return [] - if self.ts_locked["create_orders"] > self.ts_released["create_orders"]: - return [] - self.ts_locked["create_orders"] = time.time() - try: - orders = None - orders_to_create = [order for order in orders_to_create if self.order_is_valid(order)] - orders_to_create = self.format_custom_ids(orders_to_create) - orders = await self.execute_orders(orders_to_create) - orders_f = [x for x in orders if "price" in x] - for order in sorted(orders_f, key=lambda x: calc_diff(x["price"], self.price)): - if "side" in order: - logging.info( - f' created order {order["symbol"]} {order["side"]: <4} ' - + f'{order["position_side"]: <5} {float(order["qty"])} {float(order["price"])}' - ) - return orders - except Exception as e: - print(f"error creating orders {e}") - print_async_exception(orders) - traceback.print_exc() - return [] - finally: - self.ts_released["create_orders"] = time.time() - - async def cancel_orders(self, orders_to_cancel: [dict]) -> [dict]: - if not orders_to_cancel: - return - if self.ts_locked["cancel_orders"] > self.ts_released["cancel_orders"]: - return - self.ts_locked["cancel_orders"] = time.time() - try: - deletions, orders_to_cancel_dedup, oo_ids = [], [], set() - for o in orders_to_cancel: - if o["order_id"] not in oo_ids: - oo_ids.add(o["order_id"]) - orders_to_cancel_dedup.append(o) - cancellations = None - try: - cancellations = await self.execute_cancellations(orders_to_cancel_dedup) - for cancellation in cancellations: - if "order_id" in cancellation: - logging.info( - f'cancelled order {cancellation["symbol"]} {cancellation["side"]: <4} ' - + f'{cancellation["position_side"]: <5} {cancellation["qty"]} {cancellation["price"]}' - ) - self.open_orders = [ - oo - for oo in self.open_orders - if oo["order_id"] != cancellation["order_id"] - ] - return cancellations - except Exception as e: - logging.error(f"error cancelling orders {cancellations} {e}") - print_async_exception(cancellations) - return [] - finally: - self.ts_released["cancel_orders"] = time.time() - - def stop(self, signum=None, frame=None) -> None: - logging.info("Stopping passivbot, please wait...") - self.stop_websocket = True - if not self.ohlcv: - try: - self.user_stream_task.cancel() - self.market_stream_task.cancel() - - except Exception as e: - logging.error(f"An error occurred during shutdown: {e}") - - def pause(self) -> None: - self.process_websocket_ticks = False - - def resume(self) -> None: - self.process_websocket_ticks = True - - def calc_orders(self): - balance = self.position["wallet_balance"] - psize_long = self.position["long"]["size"] - pprice_long = self.position["long"]["price"] - psize_short = self.position["short"]["size"] - pprice_short = self.position["short"]["price"] - - if self.hedge_mode: - do_long = self.do_long or psize_long != 0.0 - do_short = self.do_short or psize_short != 0.0 - else: - no_pos = psize_long == 0.0 and psize_short == 0.0 - do_long = (no_pos and self.do_long) or psize_long != 0.0 - do_short = (no_pos and self.do_short) or psize_short != 0.0 - self.xk["do_long"] = do_long - self.xk["do_short"] = do_short - - orders = [] - - if self.long_mode == "panic": - if psize_long != 0.0: - orders.append( - { - "side": "sell", - "position_side": "long", - "qty": abs(psize_long), - "price": float(self.ob[1]), - "type": "limit", - "reduce_only": True, - "custom_id": "long_panic_close", - } - ) - else: - if do_long: - if self.passivbot_mode == "recursive_grid": - entries_long = calc_recursive_entries_long( - balance, - psize_long, - pprice_long, - self.ob[0], - min(self.emas_long), - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["initial_qty_pct"][0], - self.xk["initial_eprice_ema_dist"][0], - self.xk["ddown_factor"][0], - self.xk["rentry_pprice_dist"][0], - self.xk["rentry_pprice_dist_wallet_exposure_weighting"][0], - self.xk["wallet_exposure_limit"][0], - self.xk["auto_unstuck_ema_dist"][0], - self.xk["auto_unstuck_wallet_exposure_threshold"][0], - self.xk["auto_unstuck_delay_minutes"][0] - or self.xk["auto_unstuck_qty_pct"][0], - ) - elif self.passivbot_mode == "neat_grid": - entries_long = calc_neat_grid_long( - balance, - psize_long, - pprice_long, - self.ob[0], - min(self.emas_long), - self.xk["inverse"], - self.xk["do_long"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["grid_span"][0], - self.xk["wallet_exposure_limit"][0], - self.xk["max_n_entry_orders"][0], - self.xk["initial_qty_pct"][0], - self.xk["initial_eprice_ema_dist"][0], - self.xk["eqty_exp_base"][0], - self.xk["eprice_exp_base"][0], - self.xk["auto_unstuck_wallet_exposure_threshold"][0], - self.xk["auto_unstuck_ema_dist"][0], - self.xk["auto_unstuck_delay_minutes"][0] - or self.xk["auto_unstuck_qty_pct"][0], - ) - elif self.passivbot_mode == "clock": - entries_long = [ - calc_clock_entry_long( - balance, - psize_long, - pprice_long, - self.ob[0], - self.emas_long, - self.server_time, - ( - 0 - if psize_long == 0.0 - else self.last_fills_timestamps["clock_entry_long"] - ), - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["ema_dist_entry"][0], - self.xk["qty_pct_entry"][0], - self.xk["we_multiplier_entry"][0], - self.xk["delay_weight_entry"][0], - self.xk["delay_between_fills_ms_entry"][0], - self.xk["wallet_exposure_limit"][0], - ) - ] - else: - raise Exception(f"unknown passivbot mode {self.passivbot_mode}") - orders += [ - { - "side": "buy", - "position_side": "long", - "qty": abs(float(o[0])), - "price": float(o[1]), - "type": "limit", - "reduce_only": False, - "custom_id": o[2], - } - for o in entries_long - if o[0] > 0.0 - ] - if do_long or self.long_mode == "tp_only": - closes_long = calc_close_grid_long( - self.xk["backwards_tp"][0], - balance, - psize_long, - pprice_long, - self.ob[1], - max(self.emas_long), - self.server_time, - self.last_fills_timestamps["unstuck_close_long"], - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["wallet_exposure_limit"][0], - self.xk["min_markup"][0], - self.xk["markup_range"][0], - self.xk["n_close_orders"][0], - self.xk["auto_unstuck_wallet_exposure_threshold"][0], - self.xk["auto_unstuck_ema_dist"][0], - self.xk["auto_unstuck_delay_minutes"][0], - self.xk["auto_unstuck_qty_pct"][0], - ) - if self.passivbot_mode == "clock": - clock_close_long = calc_clock_close_long( - balance, - psize_long, - pprice_long, - self.ob[1], - self.emas_long, - self.server_time, - self.last_fills_timestamps["clock_close_long"], - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["ema_dist_close"][0], - self.xk["qty_pct_close"][0], - self.xk["we_multiplier_close"][0], - self.xk["delay_weight_close"][0], - self.xk["delay_between_fills_ms_close"][0], - self.xk["wallet_exposure_limit"][0], - ) - if clock_close_long[0] != 0.0 and ( - not closes_long or clock_close_long[1] <= closes_long[0][1] - ): - closes_long = [clock_close_long] - closes_long += calc_close_grid_long( - True, - balance, - max(0.0, round_(psize_long - abs(clock_close_long[0]), self.qty_step)), - pprice_long, - self.ob[1], - max(self.emas_long), - self.server_time, - self.last_fills_timestamps["unstuck_close_long"], - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["wallet_exposure_limit"][0], - self.xk["min_markup"][0], - self.xk["markup_range"][0], - self.xk["n_close_orders"][0], - self.xk["auto_unstuck_wallet_exposure_threshold"][0], - self.xk["auto_unstuck_ema_dist"][0], - self.xk["auto_unstuck_delay_minutes"][0], - self.xk["auto_unstuck_qty_pct"][0], - ) - orders += [ - { - "side": "sell", - "position_side": "long", - "qty": abs(float(o[0])), - "price": float(o[1]), - "type": "limit", - "reduce_only": True, - "custom_id": o[2], - } - for o in closes_long - if o[0] < 0.0 - ] - if self.short_mode == "panic": - if psize_short != 0.0: - orders.append( - { - "side": "buy", - "position_side": "short", - "qty": abs(psize_short), - "price": float(self.ob[0]), - "type": "limit", - "reduce_only": True, - "custom_id": "short_panic_close", - } - ) - else: - if do_short: - if self.passivbot_mode == "recursive_grid": - entries_short = calc_recursive_entries_short( - balance, - psize_short, - pprice_short, - self.ob[1], - max(self.emas_short), - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["initial_qty_pct"][1], - self.xk["initial_eprice_ema_dist"][1], - self.xk["ddown_factor"][1], - self.xk["rentry_pprice_dist"][1], - self.xk["rentry_pprice_dist_wallet_exposure_weighting"][1], - self.xk["wallet_exposure_limit"][1], - self.xk["auto_unstuck_ema_dist"][1], - self.xk["auto_unstuck_wallet_exposure_threshold"][1], - self.xk["auto_unstuck_delay_minutes"][1] - or self.xk["auto_unstuck_qty_pct"][1], - ) - elif self.passivbot_mode == "neat_grid": - entries_short = calc_neat_grid_short( - balance, - psize_short, - pprice_short, - self.ob[1], - max(self.emas_short), - self.xk["inverse"], - self.xk["do_short"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["grid_span"][1], - self.xk["wallet_exposure_limit"][1], - self.xk["max_n_entry_orders"][1], - self.xk["initial_qty_pct"][1], - self.xk["initial_eprice_ema_dist"][1], - self.xk["eqty_exp_base"][1], - self.xk["eprice_exp_base"][1], - self.xk["auto_unstuck_wallet_exposure_threshold"][1], - self.xk["auto_unstuck_ema_dist"][1], - self.xk["auto_unstuck_delay_minutes"][1] - or self.xk["auto_unstuck_qty_pct"][1], - ) - elif self.passivbot_mode == "clock": - entries_short = [ - calc_clock_entry_short( - balance, - psize_short, - pprice_short, - self.ob[1], - self.emas_short, - self.server_time, - ( - 0 - if psize_short == 0.0 - else self.last_fills_timestamps["clock_entry_short"] - ), - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["ema_dist_entry"][1], - self.xk["qty_pct_entry"][1], - self.xk["we_multiplier_entry"][1], - self.xk["delay_weight_entry"][1], - self.xk["delay_between_fills_ms_entry"][1], - self.xk["wallet_exposure_limit"][1], - ) - ] - else: - raise Exception(f"unknown passivbot mode {self.passivbot_mode}") - orders += [ - { - "side": "sell", - "position_side": "short", - "qty": abs(float(o[0])), - "price": float(o[1]), - "type": "limit", - "reduce_only": False, - "custom_id": o[2], - } - for o in entries_short - if o[0] < 0.0 - ] - if do_short or self.short_mode == "tp_only": - closes_short = calc_close_grid_short( - self.xk["backwards_tp"][1], - balance, - psize_short, - pprice_short, - self.ob[0], - min(self.emas_short), - self.server_time, - self.last_fills_timestamps["unstuck_close_short"], - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["wallet_exposure_limit"][1], - self.xk["min_markup"][1], - self.xk["markup_range"][1], - self.xk["n_close_orders"][1], - self.xk["auto_unstuck_wallet_exposure_threshold"][1], - self.xk["auto_unstuck_ema_dist"][1], - self.xk["auto_unstuck_delay_minutes"][1], - self.xk["auto_unstuck_qty_pct"][1], - ) - if self.passivbot_mode == "clock": - clock_close_short = calc_clock_close_short( - balance, - psize_short, - pprice_short, - self.ob[0], - self.emas_short, - self.server_time, - self.last_fills_timestamps["clock_close_short"], - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["ema_dist_close"][1], - self.xk["qty_pct_close"][1], - self.xk["we_multiplier_close"][1], - self.xk["delay_weight_close"][1], - self.xk["delay_between_fills_ms_close"][1], - self.xk["wallet_exposure_limit"][1], - ) - if clock_close_short[0] != 0.0 and ( - not closes_short or clock_close_short[1] >= closes_short[0][1] - ): - closes_short = [clock_close_short] - closes_short += calc_close_grid_short( - True, - balance, - -max( - 0.0, - round_(abs(psize_short) - abs(clock_close_short[0]), self.qty_step), - ), - pprice_short, - self.ob[0], - min(self.emas_short), - self.server_time, - self.last_fills_timestamps["unstuck_close_short"], - self.xk["inverse"], - self.xk["qty_step"], - self.xk["price_step"], - self.xk["min_qty"], - self.xk["min_cost"], - self.xk["c_mult"], - self.xk["wallet_exposure_limit"][1], - self.xk["min_markup"][1], - self.xk["markup_range"][1], - self.xk["n_close_orders"][1], - self.xk["auto_unstuck_wallet_exposure_threshold"][1], - self.xk["auto_unstuck_ema_dist"][1], - self.xk["delay_between_fills_ms_close"][1], - self.xk["wallet_exposure_limit"][1], - ) - orders += [ - { - "side": "buy", - "position_side": "short", - "qty": abs(float(o[0])), - "price": float(o[1]), - "type": "limit", - "reduce_only": True, - "custom_id": o[2], - } - for o in closes_short - if o[0] > 0.0 - ] - return sorted(orders, key=lambda x: calc_diff(x["price"], self.price)) - - async def cancel_and_create(self): - if self.ts_locked["cancel_and_create"] > self.ts_released["cancel_and_create"]: - return - self.ts_locked["cancel_and_create"] = time.time() - try: - if any(self.error_halt.values()): - logging.warning( - f"warning: error in rest api fetch {self.error_halt}, " - + "halting order creations/cancellations" - ) - return [] - ideal_orders = [] - all_orders = self.calc_orders() - for o in all_orders: - if ( - not self.ohlcv - and "ientry" in o["custom_id"] - and calc_diff(o["price"], self.price) < 0.002 - ): - # call update_position() before making initial entry orders - # in case websocket has failed - logging.info( - f"updating position with REST API before creating initial entries. Last price {self.price}" - ) - await self.update_position() - all_orders = self.calc_orders() - break - for o in all_orders: - if any(x in o["custom_id"] for x in ["ientry", "unstuck"]) and not self.ohlcv: - if calc_diff(o["price"], self.price) < 0.01: - # EMA based orders must be closer than 1% of current price unless ohlcv mode - ideal_orders.append(o) - else: - if calc_diff(o["price"], self.price) < self.price_distance_threshold: - # all orders must be closer than x% of current price - ideal_orders.append(o) - to_cancel_, to_create_ = filter_orders( - self.open_orders, - ideal_orders, - keys=["side", "position_side", "qty", "price"], - ) - to_cancel, to_create = [], [] - for elm in to_cancel_: - if elm["position_side"] == "long": - if self.long_mode == "tp_only": - if elm["side"] == "sell": - to_cancel.append(elm) - elif self.long_mode != "manual": - to_cancel.append(elm) - elif elm["position_side"] == "short": - if self.short_mode == "tp_only": - if elm["side"] == "buy": - to_cancel.append(elm) - elif self.short_mode != "manual": - to_cancel.append(elm) - else: - to_cancel.append(elm) - for elm in to_create_: - if elm["position_side"] == "long": - if self.long_mode == "tp_only": - if elm["side"] == "sell": - to_create.append(elm) - elif self.long_mode != "manual": - to_create.append(elm) - if elm["position_side"] == "short": - if self.short_mode == "tp_only": - if elm["side"] == "buy": - to_create.append(elm) - elif self.short_mode != "manual": - to_create.append(elm) - - to_cancel = sorted( - to_cancel, - key=lambda x: calc_diff( - x["price"] if x["price"] is not None else self.price, self.price - ), - ) - to_create = sorted(to_create, key=lambda x: calc_diff(x["price"], self.price)) - - """ - logging.info(f"to_cancel {to_cancel}") - logging.info(f"to create {to_create}") - return - """ - - results = [] - if to_cancel: - results.append( - asyncio.create_task( - self.cancel_orders(to_cancel[: self.max_n_cancellations_per_batch]) - ) - ) - await asyncio.sleep( - 0.1 - ) # sleep 10 ms between sending cancellations and sending creations - if to_create: - results.append(await self.create_orders(to_create[: self.max_n_orders_per_batch])) - return results - finally: - await asyncio.sleep(self.delay_between_executions) # sleep before releasing lock - self.ts_released["cancel_and_create"] = time.time() - - async def on_market_stream_event(self, ticks: [dict]): - if ticks: - for tick in ticks: - if tick["is_buyer_maker"]: - self.ob[0] = tick["price"] - else: - self.ob[1] = tick["price"] - self.update_emas(ticks[-1]["price"], self.price) - self.price = ticks[-1]["price"] - - now = time.time() - if now - self.ts_released["force_update"] > self.force_update_interval: - self.ts_released["force_update"] = now - # force update pos and open orders thru rest API every x sec (default 30) - await asyncio.gather(self.update_position(), self.update_open_orders()) - if now - self.heartbeat_ts > self.heartbeat_interval_seconds: - # print heartbeat once an hour - self.heartbeat_print() - self.heartbeat_ts = time.time() - await self.cancel_and_create() - - def heartbeat_print(self): - logging.info(f"heartbeat {self.symbol} ") - self.log_position_long() - self.log_position_short() - liq_price = self.position["long"]["liquidation_price"] - if calc_diff(self.position["short"]["liquidation_price"], self.price) < calc_diff( - liq_price, self.price - ): - liq_price = self.position["short"]["liquidation_price"] - logging.info( - f'balance: {round_dynamic(self.position["wallet_balance"], 6)}' - + f' equity: {round_dynamic(self.position["equity"], 6)} last price: {self.price}' - + f" liq: {round_(liq_price, self.price_step)}" - ) - - def log_position_long(self, prev_pos=None): - closes_long = sorted( - [o for o in self.open_orders if o["side"] == "sell" and o["position_side"] == "long"], - key=lambda x: x["price"], - ) - entries_long = sorted( - [o for o in self.open_orders if o["side"] == "buy" and o["position_side"] == "long"], - key=lambda x: x["price"], - ) - leqty, leprice = ( - (entries_long[-1]["qty"], entries_long[-1]["price"]) if entries_long else (0.0, 0.0) - ) - lcqty, lcprice = ( - (closes_long[0]["qty"], closes_long[0]["price"]) if closes_long else (0.0, 0.0) - ) - prev_pos_line = ( - ( - f'long: {prev_pos["long"]["size"]} @' - + f' {round_(prev_pos["long"]["price"], self.price_step)} -> ' - ) - if prev_pos - else "" - ) - logging.info( - prev_pos_line - + f'long: {self.position["long"]["size"]} @' - + f' {round_(self.position["long"]["price"], self.price_step)}' - + f' lWE: {self.position["long"]["wallet_exposure"]:.4f}' - + f' pprc diff {self.position["long"]["price"] / self.price - 1:.3f}' - + f" EMAs: {[round_dynamic(e, 5) for e in self.emas_long]}" - + f" e {leqty} @ {leprice} | c {lcqty} @ {lcprice}" - ) - - def log_position_short(self, prev_pos=None): - closes_short = sorted( - [o for o in self.open_orders if o["side"] == "buy" and o["position_side"] == "short"], - key=lambda x: x["price"], - ) - entries_short = sorted( - [o for o in self.open_orders if o["side"] == "sell" and o["position_side"] == "short"], - key=lambda x: x["price"], - ) - leqty, leprice = ( - (entries_short[0]["qty"], entries_short[0]["price"]) if entries_short else (0.0, 0.0) - ) - lcqty, lcprice = ( - (closes_short[-1]["qty"], closes_short[-1]["price"]) if closes_short else (0.0, 0.0) - ) - pprice_diff = ( - (self.price / self.position["short"]["price"] - 1) - if self.position["short"]["price"] != 0.0 - else 1.0 - ) - prev_pos_line = ( - ( - f'short: {prev_pos["short"]["size"]} @' - + f' {round_(prev_pos["short"]["price"], self.price_step)} -> ' - ) - if prev_pos - else "" - ) - logging.info( - prev_pos_line - + f'short: {self.position["short"]["size"]} @' - + f' {round_(self.position["short"]["price"], self.price_step)}' - + f' sWE: {self.position["short"]["wallet_exposure"]:.4f}' - + f" pprc diff {pprice_diff:.3f}" - + f" EMAs: {[round_dynamic(e, 5) for e in self.emas_short]}" - + f" e {leqty} @ {leprice} | c {lcqty} @ {lcprice}" - ) - - async def on_user_stream_events(self, events: Union[List[Dict], List]) -> None: - if type(events) == list: - for event in events: - await self.on_user_stream_event(event) - else: - await self.on_user_stream_event(events) - - async def on_user_stream_event(self, event: dict) -> None: - try: - if "logged_in" in event: - # bitget needs to login before sending subscribe requests - await self.subscribe_to_user_stream(self.ws_user) - pos_change = False - if "wallet_balance" in event: - new_wallet_balance = self.adjust_wallet_balance(event["wallet_balance"]) - if new_wallet_balance != self.position["wallet_balance"]: - liq_price = self.position["long"]["liquidation_price"] - if calc_diff(self.position["short"]["liquidation_price"], self.price) < calc_diff( - liq_price, self.price - ): - liq_price = self.position["short"]["liquidation_price"] - logging.info( - f"balance: {round_dynamic(new_wallet_balance, 6)}" - + f' equity: {round_dynamic(self.position["equity"], 6)} last price: {self.price}' - + f" liq: {round_(liq_price, self.price_step)}" - ) - self.position["wallet_balance"] = new_wallet_balance - pos_change = True - if "psize_long" in event: - do_log = False - if event["psize_long"] != self.position["long"]["size"]: - do_log = True - self.position["long"]["size"] = event["psize_long"] - self.position["long"]["price"] = event["pprice_long"] - self.position = self.add_wallet_exposures_to_pos(self.position) - pos_change = True - if do_log: - self.log_position_long() - if "psize_short" in event: - do_log = False - if event["psize_short"] != self.position["short"]["size"]: - do_log = True - self.position["short"]["size"] = event["psize_short"] - self.position["short"]["price"] = event["pprice_short"] - self.position = self.add_wallet_exposures_to_pos(self.position) - pos_change = True - if do_log: - self.log_position_short() - if "new_open_order" in event: - if event["new_open_order"]["order_id"] not in { - x["order_id"] for x in self.open_orders - }: - self.open_orders.append(event["new_open_order"]) - if "deleted_order_id" in event: - self.open_orders = [ - oo for oo in self.open_orders if oo["order_id"] != event["deleted_order_id"] - ] - if "partially_filled" in event: - logging.info(f"partial fill {list(event.values())}") - await self.update_open_orders() - if pos_change: - self.position["equity"] = self.position["wallet_balance"] + calc_upnl( - self.position["long"]["size"], - self.position["long"]["price"], - self.position["short"]["size"], - self.position["short"]["price"], - self.price, - self.inverse, - self.c_mult, - ) - await asyncio.sleep( - 0.01 - ) # sleep 10 ms to catch both pos update and open orders update - await self.cancel_and_create() - except Exception as e: - logging.error(f"error handling user stream event, {e}") - traceback.print_exc() - - def flush_stuck_locks(self, timeout: float = 5.0) -> None: - timeout = max(timeout, self.delay_between_executions + 1) - now = time.time() - for key in self.ts_locked: - if self.ts_locked[key] > self.ts_released[key]: - if now - self.ts_locked[key] > timeout: - logging.warning(f"flushing stuck lock {key}") - self.ts_released[key] = now - - async def start_websocket(self) -> None: - self.stop_websocket = False - self.process_websocket_ticks = True - logging.info("starting websockets...") - self.user_stream_task = asyncio.create_task(self.start_websocket_user_stream()) - self.market_stream_task = asyncio.create_task(self.start_websocket_market_stream()) - await asyncio.gather(self.user_stream_task, self.market_stream_task) - - async def beat_heart_user_stream(self) -> None: - pass - - async def beat_heart_market_stream(self) -> None: - pass - - async def init_user_stream(self) -> None: - pass - - async def init_market_stream(self) -> None: - pass - - async def start_websocket_user_stream(self) -> None: - await self.init_user_stream() - asyncio.create_task(self.beat_heart_user_stream()) - logging.info(f"url {self.endpoints['websocket_user']}") - async with websockets.connect(self.endpoints["websocket_user"]) as ws: - self.ws_user = ws - await self.subscribe_to_user_stream(ws) - async for msg in ws: - # print('debug user stream', msg) - if msg is None or msg == "pong": - continue - if "type" in msg and "welcome" in msg or "ack" in msg: - continue - try: - if self.stop_websocket: - break - asyncio.create_task( - self.on_user_stream_events( - self.standardize_user_stream_event(json.loads(msg)) - ) - ) - except Exception as e: - logging.error(f"error in websocket user stream {e}") - traceback.print_exc() - - async def start_websocket_market_stream(self) -> None: - await self.init_market_stream() - k = 1 - asyncio.create_task(self.beat_heart_market_stream()) - async with websockets.connect(self.endpoints["websocket_market"]) as ws: - self.ws_market = ws - await self.subscribe_to_market_stream(ws) - async for msg in ws: - # print('debug market stream', msg) - if msg is None or msg == "pong": - continue - if "type" in msg and "welcome" in msg or "ack" in msg: - continue - try: - if self.stop_websocket: - break - ticks = self.standardize_market_stream_event(json.loads(msg)) - if self.process_websocket_ticks: - asyncio.create_task(self.on_market_stream_event(ticks)) - if k % 10 == 0: - self.flush_stuck_locks() - k = 1 - k += 1 - - except Exception as e: - if "success" not in msg: - logging.error(f"error in websocket {e} {msg}") - - async def subscribe_to_market_stream(self, ws): - pass - - async def subscribe_to_user_stream(self, ws): - pass - - async def update_last_fills_timestamps(self): - if ( - self.ts_locked["update_last_fills_timestamps"] - > self.ts_released["update_last_fills_timestamps"] - ): - return - self.ts_locked["update_last_fills_timestamps"] = time.time() - try: - fills = await self.fetch_latest_fills() - keys_done = set() - all_keys = set(self.last_fills_timestamps) - for fill in sorted(fills, key=lambda x: x["timestamp"], reverse=True): - # print("debug fills", fill["custom_id"]) - for key in all_keys - keys_done: - if any(k in fill["custom_id"] for k in [key, shorten_custom_id(key)]): - self.last_fills_timestamps[key] = fill["timestamp"] - keys_done.add(key) - if all_keys == keys_done: - break - return True - except Exception as e: - logging.error(f"error with update last fills timestamps {e}") - traceback.print_exc() - return False - finally: - self.ts_released["update_last_fills_timestamps"] = time.time() - - async def update_server_time(self): - server_time = None - try: - server_time = await self.get_server_time() - self.server_time = server_time - return True - except Exception as e: - self.server_time = utc_ms() - traceback.print_exc() - print_async_exception(server_time) - return False - - async def start_ohlcv_mode(self): - logging.info("starting bot...") - refresh_interval = 60 - offset_adjusted = self.countdown_offset % refresh_interval - while True: - now = time.time() - secs_left = refresh_interval - (int(now) + offset_adjusted) % refresh_interval - for i in range(secs_left, -1, -1): - if self.stop_websocket: - break - if self.countdown: - line = f"\rcountdown: {i} last price: {self.price}" - line += " | mins delay until next: " - try: - res = self.calc_minutes_until_next_orders() - if self.passivbot_mode == "clock": - line += f"entry long: {res['entry_long']:.1f}, close long: {res['close_long']:.1f}" - line += " | " - line += f"entry short: {res['entry_short']:.1f}, close short: {res['close_short']:.1f}" - else: - line += f"AU close long: {res['close_long']:.1f} | " - line += f"AU close short: {res['close_short']:.1f}" - except Exception as e: - print("error computing minutes until next order", e) - traceback.print_exc() - if i == 0: - print("\r" + " " * (len(line) + 10), end=" ") - else: - print(line + " ", end=" ") - await asyncio.sleep(1) - if self.stop_websocket: - break - await asyncio.sleep(1.0) - await self.on_minute_mark() - await asyncio.sleep(1.0) - - def calc_minutes_until_next_orders(self): - res = {"entry_long": 0.0, "close_long": 0.0, "entry_short": 0.0, "close_short": 0.0} - if self.passivbot_mode in ["recursive_grid", "neat_grid"]: - mins_since_prev_AU_close_long = ( - (self.server_time - self.last_fills_timestamps["unstuck_close_long"]) / 1000 / 60 - ) - res["close_long"] = max( - 0.0, self.xk["auto_unstuck_delay_minutes"][0] - mins_since_prev_AU_close_long - ) - mins_since_prev_AU_close_short = ( - (self.server_time - self.last_fills_timestamps["unstuck_close_short"]) / 1000 / 60 - ) - res["close_short"] = max( - 0.0, self.xk["auto_unstuck_delay_minutes"][1] - mins_since_prev_AU_close_short - ) - return res - if self.position["long"]["size"] != 0.0: - millis_delay_next_entry_long = calc_delay_between_fills_ms_bid( - self.position["long"]["price"], - self.price, - self.xk["delay_between_fills_ms_entry"][0], - self.xk["delay_weight_entry"][0], - ) - millis_since_prev_close_long = ( - self.server_time - self.last_fills_timestamps["clock_entry_long"] - ) - res["entry_long"] = max( - 0.0, (millis_delay_next_entry_long - millis_since_prev_close_long) / 1000 / 60 - ) - millis_delay_next_close_long = calc_delay_between_fills_ms_ask( - self.position["long"]["price"], - self.price, - self.xk["delay_between_fills_ms_close"][0], - self.xk["delay_weight_close"][0], - ) - millis_since_prev_close_long = ( - self.server_time - self.last_fills_timestamps["clock_close_long"] - ) - res["close_long"] = max( - 0.0, (millis_delay_next_close_long - millis_since_prev_close_long) / 1000 / 60 - ) - if self.position["short"]["size"] != 0.0: - millis_delay_next_entry_short = calc_delay_between_fills_ms_ask( - self.position["short"]["price"], - self.price, - self.xk["delay_between_fills_ms_entry"][1], - self.xk["delay_weight_entry"][1], - ) - millis_since_prev_close_short = ( - self.server_time - self.last_fills_timestamps["clock_entry_short"] - ) - res["entry_short"] = max( - 0.0, (millis_delay_next_entry_short - millis_since_prev_close_short) / 1000 / 60 - ) - millis_delay_next_close_short = calc_delay_between_fills_ms_bid( - self.position["short"]["price"], - self.price, - self.xk["delay_between_fills_ms_close"][1], - self.xk["delay_weight_close"][1], - ) - millis_since_prev_close_short = ( - self.server_time - self.last_fills_timestamps["clock_close_short"] - ) - res["close_short"] = max( - 0.0, (millis_delay_next_close_short - millis_since_prev_close_short) / 1000 / 60 - ) - return res - - async def on_minute_mark(self): - # called each whole minute - try: - if self.countdown: - print("\r", end="") - if time.time() - self.heartbeat_ts > self.heartbeat_interval_seconds: - # print heartbeat once an hour - self.heartbeat_print() - self.heartbeat_ts = time.time() - except Exception as e: - logging.error(f"error with printing heartbeat {e}") - try: - self.prev_price = self.ob[0] - prev_pos = self.position.copy() - to_update = [ - self.update_position(), - self.update_open_orders(), - self.init_order_book(), - ] - if self.passivbot_mode == "clock" or self.auto_unstuck_on_timer: - to_update.append(self.update_last_fills_timestamps()) - to_update.append(self.update_server_time()) - res = await asyncio.gather(*to_update) - self.update_emas(self.ob[0], self.prev_price) - """ - print(self.last_fills_timestamps) - print(self.emas_long) - print(self.emas_short) - orders = self.calc_orders() - print(orders) - print(res) - """ - if not all(res): - reskeys = ["pos", "open orders", "order book", "last fills", "server_time"] - line = "error with " - for i in range(len(to_update)): - if not to_update[i]: - line += reskeys[i] - logging.error(line) - return - await self.cancel_and_create() - if prev_pos["wallet_balance"] != self.position["wallet_balance"]: - logging.info( - f"balance: {round_dynamic(prev_pos['wallet_balance'], 7)}" - + f" -> {round_dynamic(self.position['wallet_balance'], 7)}" - ) - if prev_pos["long"]["size"] != self.position["long"]["size"]: - plp = prev_pos["long"]["size"], round_(prev_pos["long"]["price"], self.price_step) - clp = self.position["long"]["size"], round_( - self.position["long"]["price"], self.price_step - ) - self.log_position_long(prev_pos) - if prev_pos["short"]["size"] != self.position["short"]["size"]: - psp = prev_pos["short"]["size"], round_(prev_pos["short"]["price"], self.price_step) - csp = self.position["short"]["size"], round_( - self.position["short"]["price"], self.price_step - ) - self.log_position_short(prev_pos) - except Exception as e: - logging.error(f"error on minute mark {e}") - traceback.print_exc() - - def order_is_valid(self, order: dict) -> bool: - # perform checks to detect abnormal orders - # such abnormal orders were observed in bitget bots where short entries exceeded exposure limit - - try: - order_good = True - fault = "" - if order["position_side"] == "long": - if order["side"] == "buy": - max_cost = self.position["wallet_balance"] * self.xk["wallet_exposure_limit"][0] - # check if order cost is too big - order_cost = qty_to_cost( - order["qty"], - order["price"], - self.xk["inverse"], - self.xk["c_mult"], - ) - position_cost = qty_to_cost( - self.position["long"]["size"], - self.position["long"]["price"], - self.xk["inverse"], - self.xk["c_mult"], - ) - if order_cost + position_cost > max_cost * 1.2: - fault = "Long pos cost would be more than 20% greater than max allowed" - order_good = False - elif order["side"] == "sell": - # check if price is above pos price - if "n_close" in order["custom_id"]: - if order["price"] < self.position["long"]["price"]: - fault = "long nclose price below pos price" - order_good = False - - elif order["position_side"] == "short": - max_cost = self.position["wallet_balance"] * self.xk["wallet_exposure_limit"][1] - if order["side"] == "sell": - order_cost = qty_to_cost( - order["qty"], - order["price"], - self.xk["inverse"], - self.xk["c_mult"], - ) - position_cost = qty_to_cost( - self.position["short"]["size"], - self.position["short"]["price"], - self.xk["inverse"], - self.xk["c_mult"], - ) - if order_cost + position_cost > max_cost * 1.2: - fault = "Short pos cost would be more than 20% greater than max allowed" - order_good = False - elif order["side"] == "buy": - # check if price is below pos price - if "n_close" in order["custom_id"]: - if order["price"] > self.position["short"]["price"]: - fault = "short nclose price above pos price" - order_good = False - - if not order_good: - logging.error(f"invalid order: {fault} {order}") - info = { - "timestamp": utc_ms(), - "date": ts_to_date(utc_ms()), - "fault": fault, - "order": order, - "open_orders": self.open_orders, - "position": self.position, - "order_book": self.ob, - "emas_long": self.emas_long, - "emas_short": self.emas_short, - } - with open(self.log_filepath, "a") as f: - f.write(json.dumps(denumpyize(info)) + "\n") - return order_good - except Exception as e: - logging.error(f"error validating order") - traceback.print_exc() - return False - - def format_custom_ids(self, orders: [dict]) -> [dict]: - new_orders = [] - for order in orders: - order["custom_id"] = ( - shorten_custom_id(order["custom_id"] if "custom_id" in order else "") + uuid4().hex - )[: self.custom_id_max_length] - new_orders.append(order) - return new_orders - - -async def start_bot(bot): - if bot.ohlcv: - await bot.start_ohlcv_mode() - else: - while not bot.stop_websocket: - try: - await bot.start_websocket() - except Exception as e: - logging.warning( - "Websocket connection has been lost, attempting to reinitialize the bot... {e}", - ) - traceback.print_exc() - await asyncio.sleep(10) - - -async def main() -> None: - logging.basicConfig( - format="%(asctime)s %(levelname)-8s %(message)s", - level=logging.INFO, - datefmt="%Y-%m-%dT%H:%M:%S", - ) - parser = argparse.ArgumentParser(prog="passivbot", description="run passivbot") - parser.add_argument("user", type=str, help="user/account_name defined in api-keys.json") - parser.add_argument("symbol", type=str, help="symbol to trade") - parser.add_argument("live_config_path", type=str, help="live config to use") - parser.add_argument( - "-m", - "--market_type", - type=str, - required=False, - dest="market_type", - default=None, - help="specify whether spot or futures (default), overriding value from backtest config", - ) - parser.add_argument( - "-gs", - "--graceful_stop", - action="store_true", - help="if passed, set graceful stop to both long and short", - ) - parser.add_argument( - "-sm", - "--short_mode", - "--short-mode", - type=str, - required=False, - dest="short_mode", - default=None, - help="specify one of following short modes: [n (normal), m (manual), gs (graceful_stop), p (panic), t (tp_only)]", - ) - parser.add_argument( - "-lm", - "--long_mode", - "--long-mode", - type=str, - required=False, - dest="long_mode", - default=None, - help="specify one of following long modes: [n (normal), m (manual), gs (graceful_stop), p (panic), t (tp_only)]", - ) - parser.add_argument( - "-ab", - "--assigned_balance", - type=float, - required=False, - dest="assigned_balance", - default=None, - help="add assigned_balance to live config, overriding balance fetched from exchange", - ) - parser.add_argument( - "-pt", - "--price-distance-threshold", - "--price_distance_threshold", - type=float, - required=False, - dest="price_distance_threshold", - default=0.5, - help="only create limit orders closer to price than threshold. default=0.5 (50%%)", - ) - parser.add_argument( - "-ak", - "--api-keys", - "--api_keys", - type=str, - required=False, - dest="api_keys", - default="api-keys.json", - help="File containing users/accounts and api-keys for each exchange", - ) - parser.add_argument( - "-lev", - "--leverage", - type=int, - required=False, - dest="leverage", - default=7, - help="Leverage set on exchange, if applicable. Default is 7.", - ) - parser.add_argument( - "-tm", - "--test_mode", - action="store_true", - help=f"if true, run on the test net instead of normal exchange. Supported exchanges: {TEST_MODE_SUPPORTED_EXCHANGES}", - ) - parser.add_argument( - "-cd", - "--countdown", - action="store_true", - help=f"if true, print a countdown in ohlcv mode", - ) - parser.add_argument( - "-pp", - "--price-precision", - "--price_precision", - type=float, - required=False, - dest="price_precision_multiplier", - default=None, - help="Override price step with market_price * price_precision_multiplier rounded to one significant digit. Suggested val 0.0001. Set to 0.0 to disable.", - ) - parser.add_argument( - "-ps", - "--price-step", - "--price_step", - type=float, - required=False, - dest="price_step_custom", - default=None, - help="Override price step with custom price step. Takes precedence over -pp. Set to 0.0 to disable.", - ) - parser.add_argument( - "-co", - "--countdown-offset", - "--countdown_offset", - type=int, - required=False, - dest="countdown_offset", - default=random.randrange(60), - help="when in ohlcv mode, offset execution cycle in seconds from whole minute", - ) - parser.add_argument( - "-oh", - "--ohlcv", - type=str, - required=False, - dest="ohlcv", - default=None, - nargs="?", - const="y", - help="if no arg or [y/yes], use 1m ohlcv instead of 1s ticks", - ) - - float_kwargs = [ - ("-lmm", "--long_min_markup", "--long-min-markup", "long_min_markup"), - ("-smm", "--short_min_markup", "--short-min-markup", "short_min_markup"), - ("-lmr", "--long_markup_range", "--long-markup-range", "long_markup_range"), - ("-smr", "--short_markup_range", "--short-markup-range", "short_markup_range"), - ( - "-lw", - "--long_wallet_exposure_limit", - "--long-wallet-exposure-limit", - "long_wallet_exposure_limit", - ), - ( - "-sw", - "--short_wallet_exposure_limit", - "--short-wallet-exposure-limit", - "short_wallet_exposure_limit", - ), - ] - for k0, k1, k2, dest in float_kwargs: - parser.add_argument( - k0, - k1, - k2, - type=float, - required=False, - dest=dest, - default=None, - help=f"specify {dest}, overriding value from live config", - ) - - args = parser.parse_args() - try: - exchange = load_exchange_key_secret_passphrase(args.user, args.api_keys)[0] - except Exception as e: - logging.error(f"{e} failed to load api-keys.json file") - return - try: - config = load_live_config(args.live_config_path) - except Exception as e: - logging.error(f"{e} failed to load config {args.live_config_path}") - return - config["exchange"] = exchange - for k in [ - "user", - "api_keys", - "symbol", - "leverage", - "price_distance_threshold", - "test_mode", - "countdown", - "countdown_offset", - "price_precision_multiplier", - "price_step_custom", - ]: - config[k] = getattr(args, k) - if config["test_mode"] and config["exchange"] not in TEST_MODE_SUPPORTED_EXCHANGES: - raise IOError(f"Exchange {config['exchange']} is not supported in test mode.") - config["market_type"] = args.market_type if args.market_type is not None else "futures" - config["passivbot_mode"] = determine_passivbot_mode(config) - if config["passivbot_mode"] == "clock": - config["ohlcv"] = True - elif hasattr(args, "ohlcv"): - if args.ohlcv is None: - config["ohlcv"] = True - else: - if args.ohlcv.lower() in ["y", "yes", "t", "true"]: - config["ohlcv"] = True - elif any( - [ - config[side][key] != 0.0 - for side in ["long", "short"] - for key in ["auto_unstuck_delay_minutes", "auto_unstuck_qty_pct"] - ] - ): - # force ohlcv mode if auto unstuck is on timer - config["ohlcv"] = True - else: - config["ohlcv"] = False - else: - config["ohlcv"] = True - if args.assigned_balance is not None: - logging.info(f"assigned balance set to {args.assigned_balance}") - config["assigned_balance"] = args.assigned_balance - - if args.long_mode is None: - if config["long"]["enabled"]: - logging.info("long normal mode") - else: - config["long_mode"] = "manual" - logging.info("long manual mode enabled; will neither cancel nor create long orders") - else: - if args.long_mode in ["gs", "graceful_stop", "graceful-stop"]: - logging.info( - "long graceful stop enabled; will not make new entries once existing positions are closed" - ) - config["long"]["enabled"] = config["do_long"] = False - elif args.long_mode in ["m", "manual"]: - logging.info("long manual mode enabled; will neither cancel nor create long orders") - config["long_mode"] = "manual" - elif args.long_mode in ["n", "normal"]: - logging.info("long normal mode") - config["long"]["enabled"] = config["do_long"] = True - elif args.long_mode in ["p", "panic"]: - logging.info("long panic mode enabled") - config["long_mode"] = "panic" - config["long"]["enabled"] = config["do_long"] = False - elif args.long_mode.lower() in ["t", "tp_only", "tp-only"]: - logging.info("long tp only mode enabled") - config["long_mode"] = "tp_only" - - if args.short_mode is None: - if config["short"]["enabled"]: - logging.info("short normal mode") - else: - config["short_mode"] = "manual" - logging.info("short manual mode enabled; will neither cancel nor create short orders") - else: - if args.short_mode in ["gs", "graceful_stop", "graceful-stop"]: - logging.info( - "short graceful stop enabled; " - + "will not make new entries once existing positions are closed" - ) - config["short"]["enabled"] = config["do_short"] = False - elif args.short_mode in ["m", "manual"]: - logging.info("short manual mode enabled; will neither cancel nor create short orders") - config["short_mode"] = "manual" - elif args.short_mode in ["n", "normal"]: - logging.info("short normal mode") - config["short"]["enabled"] = config["do_short"] = True - elif args.short_mode in ["p", "panic"]: - logging.info("short panic mode enabled") - config["short_mode"] = "panic" - config["short"]["enabled"] = config["do_short"] = False - elif args.short_mode.lower() in ["t", "tp_only", "tp-only"]: - logging.info("short tp only mode enabled") - config["short_mode"] = "tp_only" - if args.graceful_stop: - logging.info( - "\n\ngraceful stop enabled for both long and short; will not make new entries once existing positions are closed\n" - ) - config["long"]["enabled"] = config["do_long"] = False - config["short"]["enabled"] = config["do_short"] = False - config["long_mode"] = None - config["short_mode"] = None - for _, _, _, dest in float_kwargs: - if getattr(args, dest) is not None: - side, key = dest[: dest.find("_")], dest[dest.find("_") + 1 :] - old_val = config[side][key] - config[side][key] = getattr(args, dest) - logging.info(f"overriding {dest} {old_val} " + f"with new value: {getattr(args, dest)}") - - if "spot" in config["market_type"]: - config = spotify_config(config) - logging.info(f"using config \n{config_pretty_str(denumpyize(config))}") - - if config["exchange"] == "binance": - if "spot" in config["market_type"]: - from procedures import create_binance_bot_spot - - bot = await create_binance_bot_spot(config) - else: - from procedures import create_binance_bot - - bot = await create_binance_bot(config) - elif config["exchange"] == "binance_us": - from procedures import create_binance_bot_spot - - bot = await create_binance_bot_spot(config) - elif config["exchange"] == "bybit": - if "spot" in config["market_type"]: - from procedures import create_bybit_bot_spot - - bot = await create_bybit_bot_spot(config) - else: - from procedures import create_bybit_bot - - bot = await create_bybit_bot(config) - elif config["exchange"] == "bitget": - from procedures import create_bitget_bot - - config["ohlcv"] = True - bot = await create_bitget_bot(config) - elif config["exchange"] == "okx": - from procedures import create_okx_bot - - config["ohlcv"] = True - bot = await create_okx_bot(config) - elif config["exchange"] == "kucoin": - from procedures import create_kucoin_bot - - config["ohlcv"] = True - bot = await create_kucoin_bot(config) - elif config["exchange"] == "bingx": - from procedures import create_bingx_bot - - config["ohlcv"] = True - bot = await create_bingx_bot(config) - else: - raise Exception("unknown exchange", config["exchange"]) - - if config["ohlcv"]: - logging.info( - "starting passivbot in ohlcv mode, using REST API only and updating once a minute" - ) - - signal.signal(signal.SIGINT, bot.stop) - signal.signal(signal.SIGTERM, bot.stop) - await start_bot(bot) - if hasattr(bot, "session"): - await bot.session.close() - - -if __name__ == "__main__": - try: - asyncio.run(main()) - except Exception as e: - logging.error(f"There was an error starting the bot: {e}") - traceback.print_exc() - finally: - logging.info("Passivbot was stopped successfully") - os._exit(0) diff --git a/passivbot_multi.py b/passivbot_multi.py deleted file mode 100644 index 0fee1492a..000000000 --- a/passivbot_multi.py +++ /dev/null @@ -1,1954 +0,0 @@ -import os - -if "NOJIT" not in os.environ: - os.environ["NOJIT"] = "true" - -import traceback -import argparse -import asyncio -import json -import hjson -import pprint -import numpy as np -from prettytable import PrettyTable -from uuid import uuid4 -from copy import deepcopy -from collections import defaultdict - -from procedures import ( - load_broker_code, - load_user_info, - utc_ms, - make_get_filepath, - load_live_config, - get_file_mod_utc, - get_first_ohlcv_timestamps, - load_hjson_config, -) -from njit_funcs_recursive_grid import calc_recursive_entries_long, calc_recursive_entries_short -from njit_funcs import ( - calc_samples, - calc_emas_last, - calc_ema, - calc_close_grid_long, - calc_close_grid_short, - calc_diff, - qty_to_cost, - cost_to_qty, - calc_min_entry_qty, - round_, - round_up, - round_dn, - round_dynamic, - calc_pnl, - calc_pnl_long, - calc_pnl_short, - calc_pprice_diff, -) -from njit_multisymbol import calc_AU_allowance -from pure_funcs import ( - numpyize, - denumpyize, - filter_orders, - multi_replace, - shorten_custom_id, - determine_side_from_order_tuple, - str2bool, - symbol2coin, - add_missing_params_to_hjson_live_multi_config, - expand_PB_mode, -) - -import logging - -logging.basicConfig( - format="%(asctime)s %(levelname)-8s %(message)s", - level=logging.INFO, - datefmt="%Y-%m-%dT%H:%M:%S", -) - - -class Passivbot: - def __init__(self, config: dict): - self.config = config - self.user = config["user"] - self.user_info = load_user_info(config["user"]) - self.exchange = self.user_info["exchange"] - self.broker_code = load_broker_code(self.user_info["exchange"]) - self.custom_id_max_length = 36 - self.sym_padding = 17 - self.stop_websocket = False - self.balance = 1e-12 - self.upd_timestamps = { - "pnls": 0.0, - "open_orders": 0.0, - "positions": 0.0, - "tickers": 0.0, - } - self.hedge_mode = True - self.inverse = False - self.active_symbols = [] - self.fetched_positions = [] - self.fetched_open_orders = [] - self.open_orders = {} - self.positions = {} - self.pnls = [] - self.tickers = {} - self.symbol_ids = {} - self.min_costs = {} - self.min_qtys = {} - self.qty_steps = {} - self.price_steps = {} - self.c_mults = {} - self.max_leverage = {} - self.live_configs = {} - self.stop_bot = False - self.pnls_cache_filepath = make_get_filepath(f"caches/{self.exchange}/{self.user}_pnls.json") - self.ohlcvs_cache_dirpath = make_get_filepath(f"caches/{self.exchange}/ohlcvs/") - self.previous_execution_ts = 0 - self.recent_fill = False - self.execution_delay_millis = max(3000.0, self.config["execution_delay_seconds"] * 1000) - self.force_update_age_millis = 60 * 1000 # force update once a minute - self.quote = "USDT" - self.forager_mode = self.config["n_longs"] > 0 or self.config["n_shorts"] > 0 - self.config["minimum_market_age_millis"] = ( - self.config["minimum_market_age_days"] * 24 * 60 * 60 * 1000 - ) - self.ohlcvs = {} - self.ohlcv_upd_timestamps = {} - self.emas = {"long": {}, "short": {}} - self.ema_alphas = {"long": {}, "short": {}} - self.upd_minute_emas = {} - self.ineligible_symbols_with_pos = set() - - def set_live_configs(self): - # live configs priority: - # 1) -lc path from hjson multi config - # 2) live config from live configs dir, matching name or coin - # 3) live config from default config path - # 4) universal live config given in hjson multi config - - if os.path.isdir(self.config["live_configs_dir"]): - # live config candidates from live configs dir - live_configs_fnames = sorted( - [f for f in os.listdir(self.config["live_configs_dir"]) if f.endswith(".json")] - ) - else: - live_configs_fnames = [] - configs_loaded = { - "lc_flag": set(), - "live_configs_dir_exact_match": set(), - "default_config_path": set(), - "universal_config": set(), - } - for symbol in self.markets_dict: - # try to load live config: 1) -lc flag live_config_path, 2) live_configs_dir, 3) default_config_path, 4) universal live config - try: - self.live_configs[symbol] = load_live_config(self.flags[symbol].live_config_path) - configs_loaded["lc_flag"].add(symbol) - continue - except: - pass - try: - # look for an exact match first - coin = symbol2coin(symbol) - for x in live_configs_fnames: - if coin == symbol2coin(x.replace(".json", "")): - self.live_configs[symbol] = load_live_config( - os.path.join(self.config["live_configs_dir"], x) - ) - configs_loaded["live_configs_dir_exact_match"].add(symbol) - break - else: - raise Exception - continue - except: - pass - try: - self.live_configs[symbol] = load_live_config(self.config["default_config_path"]) - configs_loaded["default_config_path"].add(symbol) - continue - except: - pass - try: - self.live_configs[symbol] = deepcopy(self.config["universal_live_config"]) - configs_loaded["universal_config"].add(symbol) - continue - except Exception as e: - logging.error(f"failed to apply universal_live_config {e}") - raise Exception(f"no usable live config found for {symbol}") - for symbol in self.live_configs: - if symbol in self.flags and self.flags[symbol].leverage is not None: - self.live_configs[symbol]["leverage"] = max(1.0, float(self.flags[symbol].leverage)) - else: - self.live_configs[symbol]["leverage"] = max(1.0, float(self.config["leverage"])) - - for pside in ["long", "short"]: - # disable timed AU and set backwards TP - for key, val in [ - ("auto_unstuck_delay_minutes", 0.0), - ("auto_unstuck_qty_pct", 0.0), - ("auto_unstuck_wallet_exposure_threshold", 0.0), - ("auto_unstuck_ema_dist", 0.0), - ("backwards_tp", True), - ("wallet_exposure_limit", 0.0), - ]: - self.live_configs[symbol][pside][key] = val - for key in configs_loaded: - if isinstance(configs_loaded[key], dict): - for symbol in configs_loaded[key]: - logging.info( - f"loaded {key} for {self.pad_sym(symbol)}: {configs_loaded[key][symbol]}" - ) - elif isinstance(configs_loaded[key], set): - coins_ = sorted([symbol2coin(s) for s in configs_loaded[key]]) - if len(coins_) > 20: - logging.info(f"loaded from {key} for {len(coins_)} symbols") - elif len(coins_) > 0: - logging.info(f"loaded from {key} for {', '.join(coins_)}") - - def pad_sym(self, symbol): - return f"{symbol: <{self.sym_padding}}" - - def stop_maintainer_ohlcvs(self): - return self.maintainer_ohlcvs.cancel() - - async def start_maintainer_ohlcvs(self): - if self.forager_mode: - self.maintainer_ohlcvs = asyncio.create_task(self.maintain_ohlcvs()) - else: - self.maintainer_ohlcvs = None - - async def start_maintainer_EMAs(self): - self.maintainer_EMAs = asyncio.create_task(self.maintain_EMAs()) - - def stop_data_maintainers(self): - res = [] - try: - res.append(self.maintainer_ohlcvs.cancel()) - except Exception as e: - logging.error(f"error stopping maintainer_ohlcvs {e}") - try: - res.append(self.maintainer_EMAs.cancel()) - except Exception as e: - logging.error(f"error stopping maintainer_EMAs {e}") - return res - - async def init_bot(self): - logging.info(f"setting hedge mode...") - await self.update_exchange_config() - logging.info(f"initiating markets...") - await self.init_markets_dict() - await self.init_flags() - logging.info(f"initiating tickers...") - await self.update_tickers() - logging.info(f"initiating balance, positions...") - await self.update_positions() - logging.info(f"initiating open orders...") - await self.update_open_orders() - self.set_live_configs() - if self.forager_mode: - await self.update_ohlcvs_multi(list(self.eligible_symbols), verbose=True) - self.update_PB_modes() - logging.info(f"initiating pnl history...") - await self.update_pnls() - await self.update_exchange_configs() - - async def get_active_symbols(self): - # get symbols with open orders and/or positions - positions, balance = await self.fetch_positions() - open_orders = await self.fetch_open_orders() - return sorted(set([elm["symbol"] for elm in positions + open_orders])) - - def format_symbol(self, symbol: str) -> str: - try: - return self.formatted_symbols_map[symbol] - except (KeyError, AttributeError): - pass - if not hasattr(self, "formatted_symbols_map"): - self.formatted_symbols_map = {} - self.formatted_symbols_map_inv = defaultdict(set) - formatted = f"{symbol2coin(symbol.replace(',', ''))}/{self.quote}:{self.quote}" - self.formatted_symbols_map[symbol] = formatted - self.formatted_symbols_map_inv[formatted].add(symbol) - return formatted - - def symbol_is_eligible(self, symbol): - # defined for each child class - return True - - async def init_markets_dict(self): - self.init_markets_last_update_ms = utc_ms() - self.markets_dict = {elm["symbol"]: elm for elm in (await self.cca.fetch_markets())} - self.markets_dict_all = deepcopy(self.markets_dict) - # remove ineligible symbols from markets dict - ineligible_symbols = {} - for symbol in list(self.markets_dict): - if not self.markets_dict[symbol]["active"]: - ineligible_symbols[symbol] = "not active" - del self.markets_dict[symbol] - elif not self.markets_dict[symbol]["swap"]: - ineligible_symbols[symbol] = "wrong market type" - del self.markets_dict[symbol] - elif not self.markets_dict[symbol]["linear"]: - ineligible_symbols[symbol] = "not linear" - del self.markets_dict[symbol] - elif not symbol.endswith(f"/{self.quote}:{self.quote}"): - ineligible_symbols[symbol] = "wrong quote" - del self.markets_dict[symbol] - elif not self.symbol_is_eligible(symbol): - ineligible_symbols[symbol] = f"not eligible on {self.exchange}" - del self.markets_dict[symbol] - for line in set(ineligible_symbols.values()): - syms_ = [s for s in ineligible_symbols if ineligible_symbols[s] == line] - if len(syms_) > 12: - logging.info(f"{line}: {len(syms_)} symbols") - elif len(syms_) > 0: - logging.info(f"{line}: {','.join(sorted(set([s for s in syms_])))}") - - for symbol in self.ineligible_symbols_with_pos: - if symbol not in self.markets_dict and symbol in self.markets_dict_all: - logging.info(f"There is a position in an ineligible market: {symbol}.") - self.markets_dict[symbol] = self.markets_dict_all[symbol] - self.config["ignored_symbols"].append(symbol) - - self.set_market_specific_settings() - for symbol in self.markets_dict: - self.format_symbol(symbol) - # for prettier printing - self.max_len_symbol = max([len(s) for s in self.markets_dict]) - self.sym_padding = max(self.sym_padding, self.max_len_symbol + 1) - - def set_market_specific_settings(self): - # set min cost, min qty, price step, qty step, c_mult - # defined individually for each exchange - self.symbol_ids = {symbol: self.markets_dict[symbol]["id"] for symbol in self.markets_dict} - self.symbol_ids_inv = {v: k for k, v in self.symbol_ids.items()} - - def set_wallet_exposure_limits(self): - for pside in ["long", "short"]: - changed = {} - n_actives = len(self.is_active[pside]) - WE_limit_div = round_( - self.config[f"TWE_{pside}"] / n_actives if n_actives > 0 else 0.001, 0.0001 - ) - for symbol in self.is_active[pside]: - new_WE_limit = ( - getattr(self.flags[symbol], f"WE_limit_{pside}") - if symbol in self.flags - and getattr(self.flags[symbol], f"WE_limit_{pside}") is not None - else WE_limit_div - ) - if "wallet_exposure_limit" not in self.live_configs[symbol][pside]: - changed[symbol] = (0.0, new_WE_limit) - elif self.live_configs[symbol][pside]["wallet_exposure_limit"] != new_WE_limit: - changed[symbol] = ( - self.live_configs[symbol][pside]["wallet_exposure_limit"], - new_WE_limit, - ) - self.live_configs[symbol][pside]["wallet_exposure_limit"] = new_WE_limit - if changed: - inv = defaultdict(set) - for symbol in changed: - inv[changed[symbol]].add(symbol) - for k, v in inv.items(): - syms = ", ".join(sorted([symbol2coin(s) for s in v])) - logging.info(f"changed {pside} WE limit from {k[0]} to {k[1]} for {syms}") - - async def update_exchange_configs(self): - if not hasattr(self, "already_updated_exchange_config_symbols"): - self.already_updated_exchange_config_symbols = set() - symbols_not_done = [ - x for x in self.active_symbols if x not in self.already_updated_exchange_config_symbols - ] - if symbols_not_done: - await self.update_exchange_config_by_symbols(symbols_not_done) - self.already_updated_exchange_config_symbols.update(symbols_not_done) - - async def update_exchange_config_by_symbols(self, symbols): - # defined by each exchange child class - pass - - async def update_exchange_config(self): - # defined by each exchange child class - pass - - def reformat_symbol(self, symbol: str, verbose=False) -> str: - # tries to reformat symbol to correct variant for exchange - # (e.g. BONK -> 1000BONK/USDT:USDT, PEPE - kPEPE/USDC:USDC) - # if no reformatting is possible, return empty string - fsymbol = self.format_symbol(symbol) - if fsymbol in self.markets_dict: - return fsymbol - else: - if verbose: - logging.info(f"{symbol} missing from {self.exchange}") - if fsymbol in self.formatted_symbols_map_inv: - for x in self.formatted_symbols_map_inv[fsymbol]: - if x in self.markets_dict: - if verbose: - logging.info(f"changing {symbol} -> {x}") - return x - return "" - - async def init_flags(self): - self.ignored_symbols = {self.reformat_symbol(x) for x in self.config["ignored_symbols"]} - self.flags = {} - self.eligible_symbols = set() # symbols which may be approved for trading - - for symbol in self.config["approved_symbols"]: - reformatted_symbol = self.reformat_symbol(symbol, verbose=True) - if reformatted_symbol: - self.flags[reformatted_symbol] = ( - self.config["approved_symbols"][symbol] - if isinstance(self.config["approved_symbols"], dict) - else "" - ) - self.eligible_symbols.add(reformatted_symbol) - if not self.config["approved_symbols"]: - self.eligible_symbols = set(self.markets_dict) - - # this argparser is used only internally - parser = argparse.ArgumentParser(prog="passivbot", description="run passivbot") - parser.add_argument( - "-sm", type=expand_PB_mode, required=False, dest="short_mode", default=None - ) - parser.add_argument( - "-lm", type=expand_PB_mode, required=False, dest="long_mode", default=None - ) - parser.add_argument("-lw", type=float, required=False, dest="WE_limit_long", default=None) - parser.add_argument("-sw", type=float, required=False, dest="WE_limit_short", default=None) - parser.add_argument("-lev", type=float, required=False, dest="leverage", default=None) - parser.add_argument("-lc", type=str, required=False, dest="live_config_path", default=None) - self.forced_modes = {"long": {}, "short": {}} - for symbol in self.markets_dict: - self.flags[symbol] = parser.parse_args( - self.flags[symbol].split() if symbol in self.flags else [] - ) - for pside in ["long", "short"]: - if (mode := getattr(self.flags[symbol], f"{pside}_mode")) is None: - if symbol in self.ignored_symbols: - setattr( - self.flags[symbol], - f"{pside}_mode", - "graceful_stop" if self.config["auto_gs"] else "manual", - ) - self.forced_modes[pside][symbol] = getattr( - self.flags[symbol], f"{pside}_mode" - ) - elif self.config[f"forced_mode_{pside}"]: - try: - setattr( - self.flags[symbol], - f"{pside}_mode", - expand_PB_mode(self.config[f"forced_mode_{pside}"]), - ) - self.forced_modes[pside][symbol] = getattr( - self.flags[symbol], f"{pside}_mode" - ) - except Exception as e: - logging.error( - f"failed to set PB mode {self.config[f'forced_mode_{pside}']} {e}" - ) - else: - self.forced_modes[pside][symbol] = mode - if not self.markets_dict[symbol]["active"]: - self.forced_modes[pside][symbol] = "tp_only" - - if self.forager_mode and self.config["minimum_market_age_days"] > 0: - if not hasattr(self, "first_timestamps"): - self.first_timestamps = await get_first_ohlcv_timestamps(cc=self.cca) - for symbol in sorted(self.first_timestamps): - self.first_timestamps[self.format_symbol(symbol)] = self.first_timestamps[symbol] - else: - self.first_timestamps = None - - def is_old_enough(self, symbol): - if self.forager_mode and self.config["minimum_market_age_days"] > 0: - if symbol in self.first_timestamps: - # res = utc_ms() - self.first_timestamps[symbol] > self.config["minimum_market_age_millis"] - # logging.info(f"{symbol} {res}") - return ( - utc_ms() - self.first_timestamps[symbol] - > self.config["minimum_market_age_millis"] - ) - else: - return False - else: - return True - - def update_PB_modes(self): - # update passivbot modes for all symbols - if hasattr(self, "PB_modes"): - previous_PB_modes = deepcopy(self.PB_modes) - else: - previous_PB_modes = None - - # set modes for all symbols - self.PB_modes = { - "long": {}, - "short": {}, - } # options: normal, graceful_stop, manual, tp_only, panic - self.actual_actives = {"long": set(), "short": set()} # symbols with position - self.is_active = {"long": set(), "short": set()} # actual actives plus symbols on "normal"" - self.ideal_actives = {"long": {}, "short": {}} # dicts as ordered sets - - # actual actives, symbols with pos and/or open orders - for elm in self.fetched_positions + self.fetched_open_orders: - self.actual_actives[elm["position_side"]].add(elm["symbol"]) - - # find ideal actives - # set forced modes first - for pside in self.forced_modes: - for symbol in self.forced_modes[pside]: - if self.forced_modes[pside][symbol] == "normal": - self.PB_modes[pside][symbol] = self.forced_modes[pside][symbol] - self.ideal_actives[pside][symbol] = "" - if symbol in self.actual_actives[pside]: - self.PB_modes[pside][symbol] = self.forced_modes[pside][symbol] - if self.forager_mode: - if self.config["relative_volume_filter_clip_pct"] > 0.0: - self.calc_volumes() - # filter by relative volume - eligible_symbols = sorted(self.volumes, key=lambda x: self.volumes[x])[ - int(round(len(self.volumes) * self.config["relative_volume_filter_clip_pct"])) : - ] - else: - eligible_symbols = list(self.eligible_symbols) - self.calc_noisiness() # ideal symbols are high noise symbols - - # calc ideal actives for long and short separately - for pside in self.actual_actives: - if self.config[f"n_{pside}s"] > 0: - self.warn_on_high_effective_min_cost(pside) - for symbol in sorted(eligible_symbols, key=lambda x: self.noisiness[x], reverse=True): - if ( - symbol not in self.eligible_symbols - or not self.is_old_enough(symbol) - or not self.effective_min_cost_is_low_enough(pside, symbol) - ): - continue - slots_full = len(self.ideal_actives[pside]) >= self.config[f"n_{pside}s"] - if slots_full: - break - if symbol not in self.ideal_actives[pside]: - self.ideal_actives[pside][symbol] = "" - - # actual actives fill slots first - for symbol in self.actual_actives[pside]: - if symbol in self.forced_modes[pside]: - continue # is a forced mode - if symbol in self.ideal_actives[pside]: - self.PB_modes[pside][symbol] = "normal" - else: - self.PB_modes[pside][symbol] = ( - "graceful_stop" if self.config["auto_gs"] else "manual" - ) - # fill remaining slots with ideal actives - # a slot is filled if symbol in [normal, graceful_stop] - # symbols on other modes are ignored - for symbol in self.ideal_actives[pside]: - if symbol in self.PB_modes[pside] or symbol in self.forced_modes[pside]: - continue - slots_filled = { - k for k, v in self.PB_modes[pside].items() if v in ["normal", "graceful_stop"] - } - if len(slots_filled) >= self.config[f"n_{pside}s"]: - break - self.PB_modes[pside][symbol] = "normal" - else: - # if not forager mode, all eligible symbols are ideal symbols, unless symbol in forced_modes - for pside in ["long", "short"]: - if self.config[f"{pside}_enabled"]: - self.warn_on_high_effective_min_cost(pside) - for symbol in self.eligible_symbols: - if not self.effective_min_cost_is_low_enough(pside, symbol): - continue - if symbol not in self.forced_modes[pside]: - self.PB_modes[pside][symbol] = "normal" - self.ideal_actives[pside][symbol] = "" - for symbol in self.actual_actives[pside]: - if symbol not in self.PB_modes[pside]: - self.PB_modes[pside][symbol] = ( - "graceful_stop" if self.config["auto_gs"] else "manual" - ) - self.active_symbols = sorted( - {s for subdict in self.PB_modes.values() for s in subdict.keys()} - ) - self.is_active = deepcopy(self.actual_actives) - for pside in self.PB_modes: - for symbol in self.PB_modes[pside]: - if self.PB_modes[pside][symbol] == "normal": - self.is_active[pside].add(symbol) - - for symbol in self.active_symbols: - for pside in self.PB_modes: - if symbol in self.PB_modes[pside]: - self.live_configs[symbol][pside]["mode"] = self.PB_modes[pside][symbol] - self.live_configs[symbol][pside]["enabled"] = ( - self.PB_modes[pside][symbol] == "normal" - ) - else: - if self.config["auto_gs"]: - self.live_configs[symbol][pside]["mode"] = "graceful_stop" - self.PB_modes[pside][symbol] = "graceful_stop" - else: - self.live_configs[symbol][pside]["mode"] = "manual" - self.PB_modes[pside][symbol] = "manual" - - self.live_configs[symbol][pside]["enabled"] = False - if symbol not in self.positions: - self.positions[symbol] = { - "long": {"size": 0.0, "price": 0.0}, - "short": {"size": 0.0, "price": 0.0}, - } - if symbol not in self.open_orders: - self.open_orders[symbol] = [] - self.set_wallet_exposure_limits() - - # log changes - for pside in self.PB_modes: - if previous_PB_modes is None: - for mode in set(self.PB_modes[pside].values()): - coins = [ - symbol2coin(s) - for s in self.PB_modes[pside] - if self.PB_modes[pside][s] == mode - ] - logging.info(f" setting {pside: <5} {mode}: {','.join(coins)}") - else: - if previous_PB_modes[pside] != self.PB_modes[pside]: - for symbol in self.active_symbols: - if symbol in self.PB_modes[pside]: - if symbol in previous_PB_modes[pside]: - if self.PB_modes[pside][symbol] != previous_PB_modes[pside][symbol]: - logging.info( - f"changing {pside: <5} {self.pad_sym(symbol)}: {previous_PB_modes[pside][symbol]} -> {self.PB_modes[pside][symbol]}" - ) - else: - logging.info( - f" setting {pside: <5} {self.pad_sym(symbol)}: {self.PB_modes[pside][symbol]}" - ) - else: - if symbol in previous_PB_modes[pside]: - logging.info( - f"removing {pside: <5} {self.pad_sym(symbol)}: {previous_PB_modes[pside][symbol]}" - ) - - def warn_on_high_effective_min_cost(self, pside): - if not self.config["filter_by_min_effective_cost"]: - return - eligible_symbols_filtered = [ - x for x in self.eligible_symbols if self.effective_min_cost_is_low_enough(pside, x) - ] - if len(eligible_symbols_filtered) == 0: - logging.info( - f"Warning: No {pside} symbols are approved due to min effective cost too high. " - + f"Suggestions: 1) increase account balance, 2) " - + f"set 'filter_by_min_effective_cost' to false, 3) if in forager mode, reduce n_{pside}s" - ) - - def effective_min_cost_is_low_enough(self, pside, symbol): - if not self.config["filter_by_min_effective_cost"]: - return True - try: - WE_limit = self.live_configs[symbol][pside]["wallet_exposure_limit"] - assert WE_limit > 0.0 - except: - if self.forager_mode: - WE_limit = ( - self.config[f"TWE_{pside}"] / self.config[f"n_{pside}s"] - if self.config[f"n_{pside}s"] > 0 - else 0.0 - ) - else: - WE_limit = ( - self.config[f"TWE_{pside}"] / len(self.config["approved_symbols"]) - if len(self.config["approved_symbols"]) > 0 - else 0.0 - ) - return ( - self.balance * WE_limit * self.live_configs[symbol][pside]["initial_qty_pct"] - >= self.tickers[symbol]["effective_min_cost"] - ) - - def add_new_order(self, order, source="WS"): - try: - if not order or "id" not in order: - return False - if "symbol" not in order or order["symbol"] is None: - logging.info(f"{order}") - return False - if order["symbol"] not in self.open_orders: - self.open_orders[order["symbol"]] = [] - if order["id"] not in {x["id"] for x in self.open_orders[order["symbol"]]}: - self.open_orders[order["symbol"]].append(order) - logging.info( - f" created {self.pad_sym(order['symbol'])} {order['side']} {order['qty']} {order['position_side']} @ {order['price']} source: {source}" - ) - return True - except Exception as e: - logging.error(f"failed to add order to self.open_orders {order} {e}") - traceback.print_exc() - return False - - def remove_cancelled_order(self, order: dict, source="WS"): - try: - if not order or "id" not in order: - return False - if "symbol" not in order or order["symbol"] is None: - logging.info(f"{order}") - return False - if order["symbol"] not in self.open_orders: - self.open_orders[order["symbol"]] = [] - if order["id"] in {x["id"] for x in self.open_orders[order["symbol"]]}: - self.open_orders[order["symbol"]] = [ - x for x in self.open_orders[order["symbol"]] if x["id"] != order["id"] - ] - logging.info( - f"cancelled {self.pad_sym(order['symbol'])} {order['side']} {order['qty']} {order['position_side']} @ {order['price']} source: {source}" - ) - return True - except Exception as e: - logging.error(f"failed to remove order from self.open_orders {order} {e}") - traceback.print_exc() - return False - - def handle_order_update(self, upd_list): - try: - for upd in upd_list: - if upd["status"] == "closed" or ( - "filled" in upd and upd["filled"] is not None and upd["filled"] > 0.0 - ): - # There was a fill, partial or full. Schedule update of open orders, pnls, position. - logging.info( - f" filled {self.pad_sym(upd['symbol'])} {upd['side']} {upd['qty']} {upd['position_side']} @ {upd['price']} source: WS" - ) - self.recent_fill = True - elif upd["status"] in ["canceled", "expired", "rejected"]: - # remove order from open_orders - self.remove_cancelled_order(upd) - elif upd["status"] == "open": - # add order to open_orders - self.add_new_order(upd) - else: - print("debug open orders unknown type", upd) - except Exception as e: - logging.error(f"error updating open orders from websocket {upd_list} {e}") - traceback.print_exc() - - def handle_balance_update(self, upd, source="WS"): - try: - upd[self.quote]["total"] = round_dynamic(upd[self.quote]["total"], 10) - equity = upd[self.quote]["total"] + self.calc_upnl_sum() - if self.balance != upd[self.quote]["total"]: - logging.info( - f"balance changed: {self.balance} -> {upd[self.quote]['total']} equity: {equity:.4f} source: {source}" - ) - self.balance = max(upd[self.quote]["total"], 1e-12) - except Exception as e: - logging.error(f"error updating balance from websocket {upd} {e}") - traceback.print_exc() - - def handle_ticker_update(self, upd): - if isinstance(upd, list): - for x in upd: - self.handle_ticker_update(x) - elif isinstance(upd, dict): - if len(upd) == 1: - # sometimes format is {symbol: {ticker}} - upd = upd[next(iter(upd))] - if "bid" not in upd and "bids" in upd and "ask" not in upd and "asks" in upd: - # order book, not ticker - upd["bid"], upd["ask"] = upd["bids"][0][0], upd["asks"][0][0] - if all([key in upd for key in ["bid", "ask", "symbol"]]): - if "last" not in upd or upd["last"] is None: - upd["last"] = np.mean([upd["bid"], upd["ask"]]) - for key in ["bid", "ask", "last"]: - if upd[key] is not None: - if upd[key] != self.tickers[upd["symbol"]][key]: - self.tickers[upd["symbol"]][key] = upd[key] - else: - logging.info(f"ticker {upd['symbol']} {key} is None") - - # if upd['bid'] is not None: - # if upd['ask'] is not None: - # if upd['last'] is not None: - # self.tickers[upd['symbol']] = {k: upd[k] for k in ["bid", "ask", "last"]} - # return - # self.tickers[upd['symbol']] = {'bid': upd['bid'], 'ask': upd['ask'], 'last': np.random.choice([upd['bid'], upd['ask']])} - # return - # self.tickers[upd['symbol']] = {'bid': upd['bid'], 'ask': upd['bid'], 'last': upd['bid']} - # return - else: - logging.info(f"unexpected WS ticker formatting: {upd}") - - def calc_upnl_sum(self): - try: - upnl_sum = 0.0 - for elm in self.fetched_positions: - upnl_sum += calc_pnl( - elm["position_side"], - elm["price"], - self.tickers[elm["symbol"]]["last"], - elm["size"], - self.inverse, - self.c_mults[elm["symbol"]], - ) - return upnl_sum - except Exception as e: - logging.error(f"error calculating upnl sum {e}") - traceback.print_exc() - return 0.0 - - async def update_pnls(self): - # fetch latest pnls - # dump new pnls to cache - age_limit = utc_ms() - 1000 * 60 * 60 * 24 * self.config["pnls_max_lookback_days"] - missing_pnls = [] - if len(self.pnls) == 0: - # load pnls from cache - pnls_cache = [] - try: - if os.path.exists(self.pnls_cache_filepath): - pnls_cache = json.load(open(self.pnls_cache_filepath)) - except Exception as e: - logging.error(f"error loading {self.pnls_cache_filepath} {e}") - # fetch pnls since latest timestamp - if len(pnls_cache) > 0: - if pnls_cache[0]["timestamp"] > age_limit + 1000 * 60 * 60 * 4: - # fetch missing pnls - res = await self.fetch_pnls( - start_time=age_limit - 1000, end_time=pnls_cache[0]["timestamp"] - ) - if res in [None, False]: - return False - missing_pnls = res - pnls_cache = sorted( - { - elm["id"]: elm - for elm in pnls_cache + missing_pnls - if elm["timestamp"] >= age_limit - }.values(), - key=lambda x: x["timestamp"], - ) - self.pnls = pnls_cache - start_time = self.pnls[-1]["timestamp"] if self.pnls else age_limit - res = await self.fetch_pnls(start_time=start_time) - if res in [None, False]: - return False - new_pnls = [x for x in res if x["id"] not in {elm["id"] for elm in self.pnls}] - self.pnls = sorted( - {elm["id"]: elm for elm in self.pnls + new_pnls if elm["timestamp"] > age_limit}.values(), - key=lambda x: x["timestamp"], - ) - if new_pnls: - new_income = sum([x["pnl"] for x in new_pnls]) - if new_income != 0.0: - logging.info( - f"{len(new_pnls)} new pnl{'s' if len(new_pnls) > 1 else ''} {new_income} {self.quote}" - ) - try: - json.dump(self.pnls, open(self.pnls_cache_filepath, "w")) - except Exception as e: - logging.error(f"error dumping pnls to {self.pnls_cache_filepath} {e}") - self.upd_timestamps["pnls"] = utc_ms() - return True - - async def check_for_inactive_markets(self): - self.ineligible_symbols_with_pos = [ - elm["symbol"] - for elm in self.fetched_positions + self.fetched_open_orders - if elm["symbol"] not in self.markets_dict - or not self.markets_dict[elm["symbol"]]["active"] - ] - update = False - if self.ineligible_symbols_with_pos: - logging.info( - f"Caught symbol with pos for ineligible market: {self.ineligible_symbols_with_pos}" - ) - update = True - if utc_ms() - self.init_markets_last_update_ms > (1000 * 60 * 60 * 3): - logging.info(f"Force updating markets every three hours.") - update = True - if update: - await self.init_markets_dict() - await self.init_flags() - self.set_live_configs() - self.update_PB_modes() - - async def update_open_orders(self): - if not hasattr(self, "open_orders"): - self.open_orders = {} - res = await self.fetch_open_orders() - if res in [None, False]: - return False - self.fetched_open_orders = res - await self.check_for_inactive_markets() - open_orders = res - oo_ids_old = {elm["id"] for sublist in self.open_orders.values() for elm in sublist} - created_prints, cancelled_prints = [], [] - for oo in open_orders: - if oo["id"] not in oo_ids_old: - # there was a new open order not caught by websocket - created_prints.append( - f"new order {self.pad_sym(oo['symbol'])} {oo['side']} {oo['qty']} {oo['position_side']} @ {oo['price']} source: REST" - ) - oo_ids_new = {elm["id"] for elm in open_orders} - for oo in [elm for sublist in self.open_orders.values() for elm in sublist]: - if oo["id"] not in oo_ids_new: - # there was an order cancellation not caught by websocket - cancelled_prints.append( - f"cancelled {self.pad_sym(oo['symbol'])} {oo['side']} {oo['qty']} {oo['position_side']} @ {oo['price']} source: REST" - ) - self.open_orders = {} - for elm in open_orders: - if elm["symbol"] not in self.open_orders: - self.open_orders[elm["symbol"]] = [] - self.open_orders[elm["symbol"]].append(elm) - if len(created_prints) > 12: - logging.info(f"{len(created_prints)} new open orders") - else: - for line in created_prints: - logging.info(line) - if len(cancelled_prints) > 12: - logging.info(f"{len(created_prints)} cancelled open orders") - else: - for line in cancelled_prints: - logging.info(line) - self.upd_timestamps["open_orders"] = utc_ms() - return True - - async def update_positions(self): - # also updates balance - if not hasattr(self, "positions"): - self.positions = {} - res = await self.fetch_positions() - if all(x in [None, False] for x in res): - return False - positions_list_new, balance_new = res - self.fetched_positions = positions_list_new - await self.check_for_inactive_markets() - self.handle_balance_update({self.quote: {"total": balance_new}}) - positions_new = { - sym: { - "long": {"size": 0.0, "price": 0.0}, - "short": {"size": 0.0, "price": 0.0}, - } - for sym in set(list(self.positions) + list(self.active_symbols)) - } - position_changes = [] - for elm in positions_list_new: - symbol, pside, pprice = elm["symbol"], elm["position_side"], elm["price"] - psize = abs(elm["size"]) * (-1.0 if elm["position_side"] == "short" else 1.0) - if symbol not in positions_new: - positions_new[symbol] = { - "long": {"size": 0.0, "price": 0.0}, - "short": {"size": 0.0, "price": 0.0}, - } - positions_new[symbol][pside] = {"size": psize, "price": pprice} - # check if changed - if symbol not in self.positions or self.positions[symbol][pside]["size"] != psize: - position_changes.append((symbol, pside)) - try: - self.log_position_changes(position_changes, positions_new) - except Exception as e: - logging.error(f"error printing position changes {e}") - self.positions = positions_new - self.upd_timestamps["positions"] = utc_ms() - return True - - def log_position_changes(self, position_changes, positions_new, rd=6) -> str: - if not position_changes: - return "" - table = PrettyTable() - table.border = False - table.header = False - table.padding_width = 0 # Reduces padding between columns to zero - for symbol, pside in position_changes: - wallet_exposure = ( - qty_to_cost( - positions_new[symbol][pside]["size"], - positions_new[symbol][pside]["price"], - self.inverse, - self.c_mults[symbol], - ) - / self.balance - ) - try: - WE_ratio = wallet_exposure / self.live_configs[symbol][pside]["wallet_exposure_limit"] - except: - WE_ratio = 0.0 - try: - pprice_diff = calc_pprice_diff( - pside, positions_new[symbol][pside]["price"], self.tickers[symbol]["last"] - ) - except: - pprice_diff = 0.0 - try: - upnl = calc_pnl( - pside, - positions_new[symbol][pside]["price"], - self.tickers[symbol]["last"], - positions_new[symbol][pside]["size"], - self.inverse, - self.c_mults[symbol], - ) - except Exception as e: - upnl = 0.0 - table.add_row( - [ - symbol + " ", - pside + " ", - ( - round_dynamic(self.positions[symbol][pside]["size"], rd) - if symbol in self.positions - else 0.0 - ), - " @ ", - ( - round_dynamic(self.positions[symbol][pside]["price"], rd) - if symbol in self.positions - else 0.0 - ), - " -> ", - round_dynamic(positions_new[symbol][pside]["size"], rd), - " @ ", - round_dynamic(positions_new[symbol][pside]["price"], rd), - " WE: ", - round_dynamic(wallet_exposure, max(3, rd - 2)), - " WE ratio: ", - round(WE_ratio, 3), - " PA dist: ", - round(pprice_diff, 4), - " upnl: ", - round_dynamic(upnl, max(3, rd - 1)), - ] - ) - string = table.get_string() - for line in string.splitlines(): - logging.info(line) - return string - - async def update_tickers(self): - res = await self.fetch_tickers() - if res in [None, False]: - return False - tickers_new = res - for symbol in tickers_new: - if tickers_new[symbol]["bid"] is None or tickers_new[symbol]["ask"] is None: - continue - if "last" not in tickers_new[symbol] or tickers_new[symbol]["last"] is None: - tickers_new[symbol]["last"] = np.mean( - [tickers_new[symbol]["bid"], tickers_new[symbol]["ask"]] - ) - self.tickers[symbol] = {k: tickers_new[symbol][k] for k in ["bid", "ask", "last"]} - if symbol in self.markets_dict: - try: - self.tickers[symbol]["effective_min_cost"] = max( - qty_to_cost( - self.min_qtys[symbol], - tickers_new[symbol]["last"], - self.inverse, - self.c_mults[symbol], - ), - self.min_costs[symbol], - ) - except Exception as e: - logging.info(f"debug effective_min_cost update tickers {symbol} {e}") - self.tickers[symbol]["effective_min_cost"] = 0.0 - else: - self.tickers[symbol]["effective_min_cost"] = 0.0 - self.upd_timestamps["tickers"] = utc_ms() - return True - - def calc_ideal_orders(self): - unstuck_close_order = None - stuck_positions = [] - for symbol in self.active_symbols: - # check for stuck position - if self.config["loss_allowance_pct"] == 0.0: - # no auto unstuck - break - for pside in ["long", "short"]: - if self.live_configs[symbol][pside]["mode"] in ["manual", "panic", "tp_only"]: - # no auto unstuck in these modes - continue - if self.live_configs[symbol][pside]["wallet_exposure_limit"] == 0.0: - continue - wallet_exposure = ( - qty_to_cost( - self.positions[symbol][pside]["size"], - self.positions[symbol][pside]["price"], - self.inverse, - self.c_mults[symbol], - ) - / self.balance - ) - if ( - wallet_exposure / self.live_configs[symbol][pside]["wallet_exposure_limit"] - > self.config["stuck_threshold"] - ): - pprice_diff = ( - 1.0 - self.tickers[symbol]["last"] / self.positions[symbol]["long"]["price"] - if pside == "long" - else self.tickers[symbol]["last"] / self.positions[symbol]["short"]["price"] - - 1.0 - ) - if pprice_diff > 0.0: - # don't unstuck if position is in profit - stuck_positions.append((symbol, pside, pprice_diff)) - if stuck_positions: - # logging.info(f"debug unstucking {sorted(stuck_positions, key=lambda x: x[2])}") - sym, pside, pprice_diff = sorted(stuck_positions, key=lambda x: x[2])[0] - AU_allowance = ( - calc_AU_allowance( - np.array([x["pnl"] for x in self.pnls]), - self.balance, - loss_allowance_pct=self.config["loss_allowance_pct"], - ) - if len(self.pnls) > 0 - else 0.0 - ) - if AU_allowance > 0.0: - close_price = ( - max( - self.tickers[sym]["ask"], - round_up(self.emas["long"][sym].max(), self.price_steps[sym]), - ) - if pside == "long" - else min( - self.tickers[sym]["bid"], - round_dn(self.emas["short"][sym].min(), self.price_steps[sym]), - ) - ) - upnl = calc_pnl( - pside, - self.positions[sym][pside]["price"], - self.tickers[sym]["last"], - self.positions[sym][pside]["size"], - self.inverse, - self.c_mults[sym], - ) - AU_allowance_pct = 1.0 if upnl >= 0.0 else min(1.0, AU_allowance / abs(upnl)) - AU_allowance_qty = round_( - abs(self.positions[sym][pside]["size"]) * AU_allowance_pct, self.qty_steps[sym] - ) - close_qty = max( - calc_min_entry_qty( - close_price, - self.inverse, - self.c_mults[sym], - self.qty_steps[sym], - self.min_qtys[sym], - self.min_costs[sym], - ), - min( - abs(AU_allowance_qty), - round_( - cost_to_qty( - self.balance - * self.live_configs[sym][pside]["wallet_exposure_limit"] - * self.config["unstuck_close_pct"], - close_price, - self.inverse, - self.c_mults[sym], - ), - self.qty_steps[sym], - ), - ), - ) - unstuck_close_order = { - "symbol": sym, - "position_side": pside, - "order": ( - close_qty * (-1.0 if pside == "long" else 1.0), - close_price, - f"unstuck_close_{pside}", - ), - } - if not hasattr(self, "prev_AU_print_ms"): - self.prev_AU_print_ms = 0.0 - if utc_ms() - self.prev_AU_print_ms > 1000 * 60 * 5: - line = f"Auto unstuck allowance: {AU_allowance:.3f} {self.quote}. Will place {pside} unstucking order for {sym} at {close_price}. Last price: {self.tickers[sym]['last']}" - logging.info(line) - self.prev_AU_print_ms = utc_ms() - if ( - calc_diff(close_price, self.tickers[sym]["last"]) - > self.config["price_distance_threshold"] - ): - # don't place EMA based order if price is more than x% away from last price - unstuck_close_order = None - - ideal_orders = {symbol: [] for symbol in self.active_symbols} - for symbol in self.active_symbols: - if self.hedge_mode: - do_long = ( - self.live_configs[symbol]["long"]["enabled"] - or self.positions[symbol]["long"]["size"] != 0.0 - ) - do_short = ( - self.live_configs[symbol]["short"]["enabled"] - or self.positions[symbol]["short"]["size"] != 0.0 - ) - else: - no_pos = ( - self.positions[symbol]["long"]["size"] == 0.0 - and self.positions[symbol]["short"]["size"] == 0.0 - ) - do_long = (no_pos and self.live_configs[symbol]["long"]["enabled"]) or self.positions[ - symbol - ]["long"]["size"] != 0.0 - do_short = ( - no_pos and self.live_configs[symbol]["short"]["enabled"] - ) or self.positions[symbol]["short"]["size"] != 0.0 - if self.live_configs[symbol]["long"]["mode"] == "panic": - if self.positions[symbol]["long"]["size"] != 0.0: - # if in panic mode, only one close order at current market price - ideal_orders[symbol].append( - ( - -abs(self.positions[symbol]["long"]["size"]), - self.tickers[symbol]["ask"], - "panic_close_long", - ) - ) - # otherwise, no orders - elif ( - self.live_configs[symbol]["long"]["mode"] == "graceful_stop" - and self.positions[symbol]["long"]["size"] == 0.0 - ): - # if graceful stop and no pos, don't open new pos - pass - elif do_long: - entries_long = calc_recursive_entries_long( - self.balance, - self.positions[symbol]["long"]["size"], - self.positions[symbol]["long"]["price"], - self.tickers[symbol]["bid"], - self.emas["long"][symbol].min(), - self.inverse, - self.qty_steps[symbol], - self.price_steps[symbol], - self.min_qtys[symbol], - self.min_costs[symbol], - self.c_mults[symbol], - self.live_configs[symbol]["long"]["initial_qty_pct"], - self.live_configs[symbol]["long"]["initial_eprice_ema_dist"], - self.live_configs[symbol]["long"]["ddown_factor"], - self.live_configs[symbol]["long"]["rentry_pprice_dist"], - self.live_configs[symbol]["long"]["rentry_pprice_dist_wallet_exposure_weighting"], - self.live_configs[symbol]["long"]["wallet_exposure_limit"], - self.live_configs[symbol]["long"]["auto_unstuck_ema_dist"], - self.live_configs[symbol]["long"]["auto_unstuck_wallet_exposure_threshold"], - self.live_configs[symbol]["long"]["auto_unstuck_delay_minutes"] - or self.live_configs[symbol]["long"]["auto_unstuck_qty_pct"], - ) - if ( - unstuck_close_order is not None - and unstuck_close_order["symbol"] == symbol - and unstuck_close_order["position_side"] == "long" - ): - ideal_orders[symbol].append(unstuck_close_order["order"]) - psize_ = max( - 0.0, - round_( - abs(self.positions[symbol]["long"]["size"]) - - abs(unstuck_close_order["order"][0]), - self.qty_steps[symbol], - ), - ) - else: - psize_ = self.positions[symbol]["long"]["size"] - closes_long = calc_close_grid_long( - self.live_configs[symbol]["long"]["backwards_tp"], - self.balance, - psize_, - self.positions[symbol]["long"]["price"], - self.tickers[symbol]["ask"], - self.emas["long"][symbol].max(), - 0, - 0, - self.inverse, - self.qty_steps[symbol], - self.price_steps[symbol], - self.min_qtys[symbol], - self.min_costs[symbol], - self.c_mults[symbol], - self.live_configs[symbol]["long"]["wallet_exposure_limit"], - self.live_configs[symbol]["long"]["min_markup"], - self.live_configs[symbol]["long"]["markup_range"], - self.live_configs[symbol]["long"]["n_close_orders"], - self.live_configs[symbol]["long"]["auto_unstuck_wallet_exposure_threshold"], - self.live_configs[symbol]["long"]["auto_unstuck_ema_dist"], - self.live_configs[symbol]["long"]["auto_unstuck_delay_minutes"], - self.live_configs[symbol]["long"]["auto_unstuck_qty_pct"], - ) - ideal_orders[symbol] += entries_long + closes_long - if self.live_configs[symbol]["short"]["mode"] == "panic": - if self.positions[symbol]["short"]["size"] != 0.0: - # if in panic mode, only one close order at current market price - ideal_orders[symbol].append( - ( - abs(self.positions[symbol]["short"]["size"]), - self.tickers[symbol]["bid"], - "panic_close_short", - ) - ) - elif ( - self.live_configs[symbol]["short"]["mode"] == "graceful_stop" - and self.positions[symbol]["short"]["size"] == 0.0 - ): - # if graceful stop and no pos, don't open new pos - pass - elif do_short: - entries_short = calc_recursive_entries_short( - self.balance, - self.positions[symbol]["short"]["size"], - self.positions[symbol]["short"]["price"], - self.tickers[symbol]["ask"], - self.emas["short"][symbol].max(), - self.inverse, - self.qty_steps[symbol], - self.price_steps[symbol], - self.min_qtys[symbol], - self.min_costs[symbol], - self.c_mults[symbol], - self.live_configs[symbol]["short"]["initial_qty_pct"], - self.live_configs[symbol]["short"]["initial_eprice_ema_dist"], - self.live_configs[symbol]["short"]["ddown_factor"], - self.live_configs[symbol]["short"]["rentry_pprice_dist"], - self.live_configs[symbol]["short"][ - "rentry_pprice_dist_wallet_exposure_weighting" - ], - self.live_configs[symbol]["short"]["wallet_exposure_limit"], - self.live_configs[symbol]["short"]["auto_unstuck_ema_dist"], - self.live_configs[symbol]["short"]["auto_unstuck_wallet_exposure_threshold"], - self.live_configs[symbol]["short"]["auto_unstuck_delay_minutes"] - or self.live_configs[symbol]["short"]["auto_unstuck_qty_pct"], - ) - if ( - unstuck_close_order is not None - and unstuck_close_order["symbol"] == symbol - and unstuck_close_order["position_side"] == "short" - ): - ideal_orders[symbol].append(unstuck_close_order["order"]) - psize_ = -max( - 0.0, - round_( - abs(self.positions[symbol]["short"]["size"]) - - abs(unstuck_close_order["order"][0]), - self.qty_steps[symbol], - ), - ) - logging.debug( - f"creating unstucking order for {symbol} short: {unstuck_close_order['order']}" - ) - else: - psize_ = self.positions[symbol]["short"]["size"] - closes_short = calc_close_grid_short( - self.live_configs[symbol]["short"]["backwards_tp"], - self.balance, - psize_, - self.positions[symbol]["short"]["price"], - self.tickers[symbol]["bid"], - self.emas["short"][symbol].min(), - 0, - 0, - self.inverse, - self.qty_steps[symbol], - self.price_steps[symbol], - self.min_qtys[symbol], - self.min_costs[symbol], - self.c_mults[symbol], - self.live_configs[symbol]["short"]["wallet_exposure_limit"], - self.live_configs[symbol]["short"]["min_markup"], - self.live_configs[symbol]["short"]["markup_range"], - self.live_configs[symbol]["short"]["n_close_orders"], - self.live_configs[symbol]["short"]["auto_unstuck_wallet_exposure_threshold"], - self.live_configs[symbol]["short"]["auto_unstuck_ema_dist"], - self.live_configs[symbol]["short"]["auto_unstuck_delay_minutes"], - self.live_configs[symbol]["short"]["auto_unstuck_qty_pct"], - ) - ideal_orders[symbol] += entries_short + closes_short - - ideal_orders_f = {} - for symbol in ideal_orders: - ideal_orders_f[symbol] = [] - for order in sorted( - ideal_orders[symbol], key=lambda x: calc_diff(x[1], self.tickers[symbol]["last"]) - ): - if order[0] == 0.0: - continue - if any([x in order[2] for x in ["ientry", "unstuck"]]): - if ( - calc_diff(order[1], self.tickers[symbol]["last"]) - > self.config["price_distance_threshold"] - ): - continue - ideal_orders_f[symbol].append( - { - "symbol": symbol, - "side": determine_side_from_order_tuple(order), - "position_side": "long" if "long" in order[2] else "short", - "qty": abs(order[0]), - "price": order[1], - "reduce_only": "close" in order[2], - "custom_id": order[2], - } - ) - return ideal_orders_f - - def calc_orders_to_cancel_and_create(self): - ideal_orders = self.calc_ideal_orders() - actual_orders = {} - for symbol in self.active_symbols: - actual_orders[symbol] = [] - for x in self.open_orders[symbol] if symbol in self.open_orders else []: - actual_orders[symbol].append( - { - "symbol": x["symbol"], - "side": x["side"], - "position_side": x["position_side"], - "qty": abs(x["amount"]), - "price": x["price"], - "reduce_only": (x["position_side"] == "long" and x["side"] == "sell") - or (x["position_side"] == "short" and x["side"] == "buy"), - "id": x["id"], - } - ) - keys = ("symbol", "side", "position_side", "qty", "price") - to_cancel, to_create = [], [] - for symbol in actual_orders: - to_cancel_, to_create_ = filter_orders(actual_orders[symbol], ideal_orders[symbol], keys) - for pside in ["long", "short"]: - if self.live_configs[symbol][pside]["mode"] == "manual": - # neither create nor cancel orders - to_cancel_ = [x for x in to_cancel_ if x["position_side"] != pside] - to_create_ = [x for x in to_create_ if x["position_side"] != pside] - elif self.live_configs[symbol][pside]["mode"] == "tp_only": - # if take profit only mode, neither cancel nor create entries - to_cancel_ = [ - x - for x in to_cancel_ - if ( - x["position_side"] != pside - or (x["position_side"] == pside and x["reduce_only"]) - ) - ] - to_create_ = [ - x - for x in to_create_ - if ( - x["position_side"] != pside - or (x["position_side"] == pside and x["reduce_only"]) - ) - ] - to_cancel += to_cancel_ - to_create += to_create_ - return sorted( - to_cancel, key=lambda x: calc_diff(x["price"], self.tickers[x["symbol"]]["last"]) - ), sorted(to_create, key=lambda x: calc_diff(x["price"], self.tickers[x["symbol"]]["last"])) - - async def force_update(self, force=False): - # if some information has not been updated in a while, force update via REST - coros_to_call = [] - now = utc_ms() - for key in self.upd_timestamps: - if force or now - self.upd_timestamps[key] > self.force_update_age_millis: - # logging.info(f"forcing update {key}") - coros_to_call.append((key, getattr(self, f"update_{key}")())) - res = await asyncio.gather(*[x[1] for x in coros_to_call]) - return res - - async def execute_to_exchange(self): - # cancels wrong orders and creates missing orders - # check whether to call any self.update_*() - if utc_ms() - self.execution_delay_millis < self.previous_execution_ts: - return True - self.previous_execution_ts = utc_ms() - try: - self.update_PB_modes() - await self.add_new_symbols_to_maintainer_EMAs() - await self.update_exchange_configs() - if self.recent_fill: - self.upd_timestamps["positions"] = 0.0 - self.upd_timestamps["open_orders"] = 0.0 - self.upd_timestamps["pnls"] = 0.0 - self.recent_fill = False - update_res = await self.force_update() - if not all(update_res): - for i, key in enumerate(self.upd_timestamps): - if not update_res[i]: - logging.error(f"error with {key}") - return - to_cancel, to_create = self.calc_orders_to_cancel_and_create() - - # debug duplicates - seen = set() - for elm in to_cancel: - key = str(elm["price"]) + str(elm["qty"]) - if key in seen: - print("debug duplicate", elm) - seen.add(key) - - # format custom_id - to_create = self.format_custom_ids(to_create) - res = await self.execute_cancellations( - to_cancel[: self.config["max_n_cancellations_per_batch"]] - ) - if res: - for elm in res: - self.remove_cancelled_order(elm, source="POST") - res = await self.execute_orders(to_create[: self.config["max_n_creations_per_batch"]]) - if res: - for elm in res: - self.add_new_order(elm, source="POST") - if to_cancel or to_create: - await asyncio.gather(self.update_open_orders(), self.update_positions()) - - except Exception as e: - logging.error(f"error executing to exchange {e}") - traceback.print_exc() - await self.restart_bot_on_too_many_errors() - finally: - self.previous_execution_ts = utc_ms() - - async def restart_bot_on_too_many_errors(self): - if not hasattr(self, "error_counts"): - self.error_counts = [] - now = utc_ms() - self.error_counts = [x for x in self.error_counts if x > now - 1000 * 60 * 60] + [now] - max_n_errors_per_hour = 10 - logging.info( - f"error count: {len(self.error_counts)} of {max_n_errors_per_hour} errors per hour" - ) - if len(self.error_counts) >= max_n_errors_per_hour: - raise Exception("too many errors... restarting bot.") - - def format_custom_ids(self, orders: [dict]) -> [dict]: - new_orders = [] - for order in orders: - order["custom_id"] = ( - shorten_custom_id(order["custom_id"] if "custom_id" in order else "") + uuid4().hex - )[: self.custom_id_max_length] - new_orders.append(order) - return new_orders - - async def execution_loop(self): - while True: - if self.stop_websocket: - break - if utc_ms() - self.execution_delay_millis > self.previous_execution_ts: - await self.execute_to_exchange() - await asyncio.sleep(1.0) - # self.debug_dump_bot_state_to_disk() - - def debug_dump_bot_state_to_disk(self): - if not hasattr(self, "tmp_debug_ts"): - self.tmp_debug_ts = 0 - self.tmp_debug_cache = make_get_filepath(f"caches/{self.exchange}/{self.user}_debug/") - if utc_ms() - self.tmp_debug_ts > 1000 * 60 * 3: - logging.info(f"debug dumping bot state to disk") - for k, v in vars(self).items(): - try: - json.dump( - denumpyize(v), open(os.path.join(self.tmp_debug_cache, k + ".json"), "w") - ) - except Exception as e: - logging.error(f"debug failed to dump to disk {k} {e}") - self.tmp_debug_ts = utc_ms() - - async def start_bot(self): - await self.init_bot() - logging.info("done initiating bot") - asyncio.create_task(self.start_maintainer_ohlcvs()) - asyncio.create_task(self.start_maintainer_EMAs()) - for i in range(30): - await asyncio.sleep(1) - if set(self.emas["long"]) == set(self.active_symbols): - break - logging.info("starting websockets...") - await asyncio.gather(self.execution_loop(), self.start_websockets()) - - def get_ohlcv_fpath(self, symbol) -> str: - return os.path.join( - self.ohlcvs_cache_dirpath, symbol.replace(f"/{self.quote}:{self.quote}", "") + ".json" - ) - - def load_ohlcv_from_cache(self, symbol, suppress_error_log=False): - fpath = self.get_ohlcv_fpath(symbol) - try: - ohlcvs = json.load(open(fpath)) - return ohlcvs - except Exception as e: - if not suppress_error_log: - logging.error(f"failed to load ohlcvs from cache for {symbol}") - traceback.print_exc() - return None - - def dump_ohlcv_to_cache(self, symbol, ohlcv): - fpath = self.get_ohlcv_fpath(symbol) - try: - json.dump(ohlcv, open(fpath, "w")) - self.ohlcv_upd_timestamps[symbol] = get_file_mod_utc(self.get_ohlcv_fpath(symbol)) - except Exception as e: - logging.error(f"failed to dump ohlcvs to cache for {symbol}") - traceback.print_exc() - - def get_oldest_updated_ohlcv_symbol(self): - for _ in range(100): - symbol = sorted(self.ohlcv_upd_timestamps.items(), key=lambda x: x[1])[0][0] - # check if has been modified by other PB instance - try: - self.ohlcv_upd_timestamps[symbol] = get_file_mod_utc(self.get_ohlcv_fpath(symbol)) - except Exception as e: - logging.error(f"error with get_file_mod_utc {e}") - self.ohlcv_upd_timestamps[symbol] = 0.0 - if symbol == sorted(self.ohlcv_upd_timestamps.items(), key=lambda x: x[1])[0][0]: - break - return symbol - - def calc_noisiness(self, symbol=None): - if not hasattr(self, "noisiness"): - self.noisiness = {} - symbols = self.eligible_symbols if symbol is None else [symbol] - for symbol in symbols: - if symbol in self.ohlcvs and self.ohlcvs[symbol] and len(self.ohlcvs[symbol]) > 0: - self.noisiness[symbol] = np.mean([(x[2] - x[3]) / x[4] for x in self.ohlcvs[symbol]]) - else: - self.noisiness[symbol] = 0.0 - - def calc_volumes(self): - if not hasattr(self, "volumes"): - self.volumes = {} - for symbol in self.eligible_symbols: - if symbol in self.ohlcvs and self.ohlcvs[symbol] and len(self.ohlcvs[symbol]) > 0: - self.volumes[symbol] = sum([x[4] * x[5] for x in self.ohlcvs[symbol]]) - else: - self.volumes[symbol] = 0.0 - - async def add_new_symbols_to_maintainer_EMAs(self, symbols=None): - if symbols is None: - to_add = sorted(set(self.active_symbols) - set(self.emas["long"])) - else: - to_add = [s for s in set(symbols) if s not in self.emas["long"]] - if to_add: - logging.info(f"adding to EMA maintainer: {','.join([symbol2coin(s) for s in to_add])}") - await self.init_EMAs_multi(to_add) - if self.forager_mode: - await self.update_ohlcvs_multi(to_add) - - async def maintain_EMAs(self): - # maintain EMAs for active symbols - # if a new symbol appears (e.g. new forager symbol or user manually opens a position), add this symbol to EMA maintainer - try: - logging.info( - f"initiating EMAs for {','.join([symbol2coin(s) for s in self.active_symbols])}" - ) - await self.init_EMAs_multi(sorted(self.active_symbols)) - logging.info(f"starting EMA maintainer...") - while True: - now_minute = int(utc_ms() // (1000 * 60) * (1000 * 60)) - symbols_to_update = [ - s - for s in self.emas["long"] - if s not in self.upd_minute_emas or now_minute > self.upd_minute_emas[s] - ] - await self.update_EMAs_multi(symbols_to_update) - await asyncio.sleep(30) - except Exception as e: - logging.error(f"Error with maintain_EMAs: {e}") - traceback.print_exc() - logging.info("restarting EMA maintainer in") - for i in range(10, 0, -1): - logging.info(f"{i} seconds") - await asyncio.sleep(1) - - async def maintain_ohlcvs(self, timeframe=None): - try: - timeframe = self.config["ohlcv_interval"] if timeframe is None else timeframe - # if in forager mode, maintain ohlcvs for all candidate symbols - # else, fetch ohlcvs once for EMA initialization - if not self.forager_mode: - return - sleep_interval_sec = max(5.0, (60.0 * 60.0) / len(self.eligible_symbols)) - logging.info( - f"Starting ohlcvs maintainer. Will sleep {sleep_interval_sec:.1f}s between each fetch." - ) - while True: - all_syms = set(self.active_symbols) | self.eligible_symbols - missing_symbols = [s for s in all_syms if s not in self.ohlcv_upd_timestamps] - if missing_symbols: - coins_ = [symbol2coin(s) for s in missing_symbols] - logging.info(f"adding missing symbols to ohlcv maintainer: {','.join(coins_)}") - await self.update_ohlcvs_multi(missing_symbols) - await asyncio.sleep(3) - else: - symbol = self.get_oldest_updated_ohlcv_symbol() - start_ts = utc_ms() - res = await self.update_ohlcvs_single( - symbol, age_limit_ms=(sleep_interval_sec * 1000) - ) - # logging.info(f"updated ohlcvs for {symbol} {res}") - await asyncio.sleep(max(0.0, sleep_interval_sec - (utc_ms() - start_ts) / 1000)) - except Exception as e: - logging.error(f"Error with maintain_ohlcvs: {e}") - traceback.print_exc() - logging.info("restarting ohlcvs maintainer in") - for i in range(10, 0, -1): - logging.info(f"{i} seconds") - await asyncio.sleep(1) - - async def update_EMAs_multi(self, symbols, n_fetches=10): - all_res = [] - for sym_sublist in [symbols[i : i + n_fetches] for i in range(0, len(symbols), n_fetches)]: - res = await asyncio.gather(*[self.update_EMAs_single(symbol) for symbol in sym_sublist]) - all_res += res - return all_res - - async def update_EMAs_single(self, symbol): - # updates EMAs for single symbol - try: - # if EMAs for symbol has not been initiated, initiate - if not all([symbol in x for x in [self.emas["long"], self.upd_minute_emas]]): - # initiate EMA for symbol - await self.init_EMAs_single(symbol) - now_minute = int(utc_ms() // (1000 * 60) * (1000 * 60)) - if now_minute <= self.upd_minute_emas[symbol]: - return True - before = self.emas["long"][symbol].copy() - for pside in ["long", "short"]: - self.emas[pside][symbol] = calc_ema( - self.ema_alphas[pside][symbol][0], - self.ema_alphas[pside][symbol][1], - self.emas[pside][symbol], - self.tickers[symbol]["last"], - ) - # logging.info(f"updated EMAs for {symbol} {before} -> {self.emas['long'][symbol]}") - self.upd_minute_emas[symbol] = now_minute - return True - except Exception as e: - logging.error(f"failed to update EMAs for {symbol}: {e}") - traceback.print_exc() - return False - - async def init_EMAs_multi(self, symbols, n_fetches=10): - all_res = [] - for sym_sublist in [symbols[i : i + n_fetches] for i in range(0, len(symbols), n_fetches)]: - res = await asyncio.gather(*[self.init_EMAs_single(symbol) for symbol in sym_sublist]) - all_res += res - return all_res - - async def init_EMAs_single(self, symbol): - # check if ohlcvs are in cache for symbol - # if not, or if too old, update them - # if it fails, print warning and use ticker as first EMA - - ema_spans = {} - for pside in ["long", "short"]: - # if computing EMAs from ohlcvs fails, use recent tickers - self.emas[pside][symbol] = np.repeat(self.tickers[symbol]["last"], 3) - lc = self.live_configs[symbol][pside] - es = [lc["ema_span_0"], lc["ema_span_1"], (lc["ema_span_0"] * lc["ema_span_1"]) ** 0.5] - ema_spans[pside] = numpyize(sorted(es)) - self.ema_alphas[pside][symbol] = (a := (2.0 / (ema_spans[pside] + 1)), 1.0 - a) - try: - # allow up to 5 mins old ohlcvs - await self.update_ohlcvs_single(symbol, age_limit_ms=1000 * 60 * 5) - samples1m = calc_samples( - numpyize(self.ohlcvs[symbol])[:, [0, 5, 4]], sample_size_ms=60000 - ) - for pside in ["long", "short"]: - self.emas[pside][symbol] = calc_emas_last(samples1m[:, 2], ema_spans[pside]) - logging.info(f"initiated EMAs for {symbol}") - except Exception as e: - logging.error(f"error initiating EMAs for {self.pad_sym(symbol)}; using ticker as EMAs") - self.upd_minute_emas[symbol] = int(utc_ms() // (1000 * 60) * (1000 * 60)) - - async def update_ohlcvs_multi(self, symbols, timeframe=None, n_fetches=10, verbose=False): - timeframe = self.config["ohlcv_interval"] if timeframe is None else timeframe - all_res = [] - for sym_sublist in [symbols[i : i + n_fetches] for i in range(0, len(symbols), n_fetches)]: - try: - res = await asyncio.gather( - *[ - self.update_ohlcvs_single(symbol, timeframe=timeframe) - for symbol in sym_sublist - ] - ) - all_res += res - if verbose: - if any(res): - logging.info( - f"updated ohlcvs for {','.join([symbol2coin(s) for s, r in zip(sym_sublist, res) if r])}" - ) - except Exception as e: - logging.error(f"error with fetch_ohlcv in update_ohlcvs_multi {sym_sublist} {e}") - - async def update_ohlcvs_single(self, symbol, timeframe=None, age_limit_ms=1000 * 60 * 60): - timeframe = self.config["ohlcv_interval"] if timeframe is None else timeframe - last_ts_modified = 0.0 - try: - last_ts_modified = get_file_mod_utc(self.get_ohlcv_fpath(symbol)) - except: - pass - self.ohlcv_upd_timestamps[symbol] = last_ts_modified - try: - if utc_ms() - last_ts_modified > age_limit_ms: - self.ohlcvs[symbol] = await self.fetch_ohlcv(symbol, timeframe=timeframe) - self.dump_ohlcv_to_cache(symbol, self.ohlcvs[symbol]) - else: - if symbol not in self.ohlcvs or not self.ohlcvs[symbol]: - self.ohlcvs[symbol] = self.load_ohlcv_from_cache(symbol) - if len(self.ohlcvs[symbol]) < self.config["n_ohlcvs"]: - logging.info( - f"too few ohlcvs fetched for {symbol}: fetched {len(self.ohlcvs[symbol])}, ideally: {self.config['n_ohlcvs']}" - ) - self.ohlcvs[symbol] = self.ohlcvs[symbol][-self.config["n_ohlcvs"] :] - return True - except Exception as e: - logging.error(f"error with update_ohlcvs_single {symbol} {e}") - return False - - async def execute_multiple(self, orders: [dict], type_: str, max_n_executions: int): - if not orders: - return [] - executions = [] - for order in orders[:max_n_executions]: # sorted by PA dist - execution = None - try: - execution = asyncio.create_task(getattr(self, type_)(order)) - executions.append((order, execution)) - except Exception as e: - logging.error(f"error executing {type_} {order} {e}") - print_async_exception(execution) - traceback.print_exc() - results = [] - for execution in executions: - result = None - try: - result = await execution[1] - results.append(result) - except Exception as e: - logging.error(f"error executing {type_} {execution} {e}") - print_async_exception(result) - traceback.print_exc() - return results - - async def close(self): - logging.info(f"Stopped data maintainers: {self.stop_data_maintainers()}") - await self.cca.close() - await self.ccp.close() - - -async def main(): - parser = argparse.ArgumentParser(prog="passivbot", description="run passivbot") - parser.add_argument("hjson_config_path", type=str, help="path to hjson passivbot meta config") - parser_items = [ - ( - "s", - "approved_symbols", - "approved_symbols", - str, - ", comma separated (SYM1USDT,SYM2USDT,...)", - ), - ("i", "ignored_symbols", "ignored_symbols", str, ", comma separated (SYM1USDT,SYM2USDT,...)"), - ("le", "long_enabled", "long_enabled", str2bool, " (y/n or t/f)"), - ("se", "short_enabled", "short_enabled", str2bool, " (y/n or t/f)"), - ("tl", "total_wallet_exposure_long", "TWE_long", float, ""), - ("ts", "total_wallet_exposure_short", "TWE_short", float, ""), - ("u", "user", "user", str, ""), - ("lap", "loss_allowance_pct", "loss_allowance_pct", float, " (set to 0.0 to disable)"), - ("pml", "pnls_max_lookback_days", "pnls_max_lookback_days", float, ""), - ("st", "stuck_threshold", "stuck_threshold", float, ""), - ("ucp", "unstuck_close_pct", "unstuck_close_pct", float, ""), - ("eds", "execution_delay_seconds", "execution_delay_seconds", float, ""), - ("lcd", "live_configs_dir", "live_configs_dir", str, ""), - ("dcp", "default_config_path", "default_config_path", str, ""), - ("ag", "auto_gs", "auto_gs", str2bool, " enabled (y/n or t/f)"), - ("nca", "max_n_cancellations_per_batch", "max_n_cancellations_per_batch", int, ""), - ("ncr", "max_n_creations_per_batch", "max_n_creations_per_batch", int, ""), - ("pt", "price_threshold", "price_threshold", float, ""), - ] - for k0, k1, d, t, h in parser_items: - parser.add_argument( - *[f"-{k0}", f"--{k1}"] + ([f"--{k1.replace('_', '-')}"] if "_" in k1 else []), - type=t, - required=False, - dest=d, - default=None, - help=f"specify {k1}{h}, overriding value from live hjson config.", - ) - max_n_restarts_per_day = 5 - cooldown_secs = 60 - restarts = [] - while True: - args = parser.parse_args() - config = load_hjson_config(args.hjson_config_path) - config, logging_lines = add_missing_params_to_hjson_live_multi_config(config) - for line in logging_lines: - logging.info(line) - - for key in [x[2] for x in parser_items]: - if getattr(args, key) is not None: - if key.endswith("symbols"): - old_value = sorted(set(config[key])) - new_value = sorted(set(getattr(args, key).split(","))) - else: - old_value = config[key] - new_value = getattr(args, key) - logging.info(f"changing {key}: {old_value} -> {new_value}") - config[key] = new_value - user_info = load_user_info(config["user"]) - if user_info["exchange"] == "bybit": - from exchanges_multi.bybit import BybitBot - - bot = BybitBot(config) - elif user_info["exchange"] == "binance": - from exchanges_multi.binance import BinanceBot - - bot = BinanceBot(config) - elif user_info["exchange"] == "bitget": - from exchanges_multi.bitget import BitgetBot - - bot = BitgetBot(config) - elif user_info["exchange"] == "okx": - from exchanges_multi.okx import OKXBot - - bot = OKXBot(config) - elif user_info["exchange"] == "bingx": - from exchanges_multi.bingx import BingXBot - - bot = BingXBot(config) - elif user_info["exchange"] == "hyperliquid": - from exchanges_multi.hyperliquid import HyperliquidBot - - bot = HyperliquidBot(config) - else: - raise Exception(f"unknown exchange {user_info['exchange']}") - try: - await bot.start_bot() - except Exception as e: - logging.error(f"passivbot error {e}") - traceback.print_exc() - finally: - try: - bot.stop_data_maintainers() - await bot.ccp.close() - await bot.cca.close() - except: - pass - logging.info(f"restarting bot...") - print() - for z in range(cooldown_secs, -1, -1): - print(f"\rcountdown {z}... ") - await asyncio.sleep(1) - print() - restarts.append(utc_ms()) - restarts = [x for x in restarts if x > utc_ms() - 1000 * 60 * 60 * 24] - if len(restarts) > max_n_restarts_per_day: - break - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/requirements.txt b/requirements.txt index a6a919fe2..60fb98946 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ --r requirements_liveonly.txt matplotlib==3.5.1 prospector==1.6.0 colorama==0.4.4 @@ -7,9 +6,18 @@ mkdocs-material==8.1.8 pymdown-extensions==9.1 tqdm==4.62.3 python-dateutil==2.8.2 -numba==0.59.1 +numba==0.59.1; python_version>='3.9' +numba==0.58.1; python_version<'3.9' pandas==1.4.0 PyYAML==6.0 asyncio==3.4.3 pyecharts==1.9.1 -deap==1.4.1 \ No newline at end of file +deap==1.4.1 +websockets==10.1 +aiohttp==3.8.1 +numpy==1.22.4 +ccxt==4.3.67 +hjson==3.0.2 +prettytable==3.0.0 +maturin==1.5.1 +sortedcontainers==2.4.0 \ No newline at end of file diff --git a/requirements_liveonly.txt b/requirements_liveonly.txt deleted file mode 100644 index 3680aabea..000000000 --- a/requirements_liveonly.txt +++ /dev/null @@ -1,7 +0,0 @@ -websockets==10.1 -aiohttp==3.8.1 -numpy==1.22.4 -python-dateutil==2.8.2 -ccxt==4.3.24 -hjson==3.0.2 -prettytable==3.0.0 diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..fcad85abc --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +from setuptools import setup, find_packages +from setuptools_rust import RustExtension + + +def parse_requirements(filename): + with open(filename, "r") as file: + return [line.strip() for line in file if line.strip() and not line.startswith("#")] + + +setup( + name="passivbot", + version="0.1.0", + packages=find_packages(where="src"), + package_dir={"": "src"}, + rust_extensions=[ + RustExtension("passivbot_rust", path="passivbot-rust/Cargo.toml", binding="pyo3") + ], + install_requires=parse_requirements("requirements.txt"), + setup_requires=["setuptools-rust>=1.9.0", "wheel"], + include_package_data=True, + zip_safe=False, +) diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/auto_profit_transfer.py b/src/auto_profit_transfer.py similarity index 100% rename from auto_profit_transfer.py rename to src/auto_profit_transfer.py diff --git a/src/backtest.py b/src/backtest.py new file mode 100644 index 000000000..b63fa808e --- /dev/null +++ b/src/backtest.py @@ -0,0 +1,342 @@ +import numpy as np +import pandas as pd +import os +import json +import passivbot_rust as pbr +import asyncio +import argparse +from procedures import ( + utc_ms, + make_get_filepath, + fetch_market_specific_settings_multi, + load_config, + dump_config, + coin_to_symbol, +) +from pure_funcs import ( + get_template_live_config, + ts_to_date, + sort_dict_keys, +) +import pprint +from downloader import prepare_hlcvs +from plotting import plot_fills_forager +import matplotlib.pyplot as plt +import logging +from main import manage_rust_compilation + +plt.rcParams["figure.figsize"] = [29, 18] + + +def oj(*x): + return os.path.join(*x) + + +def process_forager_fills(fills): + fdf = pd.DataFrame( + fills, + columns=[ + "minute", + "symbol", + "pnl", + "fee_paid", + "balance", + "qty", + "price", + "psize", + "pprice", + "type", + ], + ) + return fdf + + +def analyze_fills_forager(symbols, hlcs, fdf, equities): + analysis = {} + pnls = {} + for pside in ["long", "short"]: + fdfc = fdf[fdf.type.str.contains(pside)] + profit = fdfc[fdfc.pnl > 0.0].pnl.sum() + loss = fdfc[fdfc.pnl < 0.0].pnl.sum() + if len(fdfc) == 0: + pnls[pside] = 0.0 + analysis[f"loss_profit_ratio_{pside}"] = 1.0 + continue + pnls[pside] = profit + loss + analysis[f"loss_profit_ratio_{pside}"] = abs(loss / profit) + + analysis["pnl_ratio_long_short"] = pnls["long"] / (pnls["long"] + pnls["short"]) + bdf = fdf.groupby((fdf.minute // 60) * 60).balance.last() + edf = equities.iloc[::60] + nidx = np.arange(min(bdf.index[0], edf.index[0]), max(bdf.index[-1], edf.index[-1]), 60) + bal_eq = pd.DataFrame({"balance": bdf, "equity": edf}, index=nidx).ffill().bfill() + return sort_dict_keys(analysis), bal_eq + + +def compare_dicts(dict1, dict2, path=""): + for key in sorted(set(dict1.keys()) | set(dict2.keys())): + if key not in dict1: + print(f"{path}{key}: Missing in first dict. Value in second dict: {dict2[key]}") + elif key not in dict2: + print(f"{path}{key}: Missing in second dict. Value in first dict: {dict1[key]}") + elif isinstance(dict1[key], dict) and isinstance(dict2[key], dict): + compare_dicts(dict1[key], dict2[key], f"{path}{key}.") + elif dict1[key] != dict2[key]: + print(f"{path}{key}: Values differ. First dict: {dict1[key]} Second dict: {dict2[key]}") + + +def compare_dict_keys(dict1, dict2): + def get_all_keys(d): + keys = set(d.keys()) + for value in d.values(): + if isinstance(value, dict): + keys.update(get_all_keys(value)) + return keys + + return get_all_keys(dict1) == get_all_keys(dict2) + + +def check_keys(dict0, dict1): + def check_nested(d0, d1): + for key, value in d0.items(): + if key not in d1: + return False + if isinstance(value, dict): + if not isinstance(d1[key], dict): + return False + if not check_nested(value, d1[key]): + return False + return True + + return check_nested(dict0, dict1) + + +def add_argparse_args_to_config(config, args): + for key, value in vars(args).items(): + try: + if value is None: + continue + if key == "symbols": + symbols = sorted([xf for x in set(value.split(",")) if (xf := coin_to_symbol(x))]) + if symbols != sorted(set(config["live"]["approved_coins"])): + logging.info(f"new symbols: {symbols}") + config["live"]["approved_coins"] = [coin_to_symbol(x) for x in symbols] + config["backtest"]["symbols"] = config["live"]["approved_coins"] + elif key in config["backtest"]: + if not isinstance(config["backtest"][key], dict): + if config["backtest"][key] != value: + logging.info(f"changing backtest {key} {config['backtest'][key]} -> {value}") + config["backtest"][key] = value + elif key in config["optimize"]: + if not isinstance(config["optimize"][key], dict): + if config["optimize"][key] != value: + logging.info(f"changing optimize {key} {config['optimize'][key]} -> {value}") + config["optimize"][key] = value + elif key in config["optimize"]["bounds"]: + new_value = [value, value] + if config["optimize"]["bounds"][key] != new_value: + logging.info(f"fixing optimizing bound {key} to {value}") + config["optimize"]["bounds"][key] = new_value + elif key in config["optimize"]["limits"]: + old_value = config["optimize"]["limits"][key] + if old_value != value: + logging.info(f"changing optimizing limit {key} from {old_value} to {value}") + config["optimize"]["limits"][key] = value + except Exception as e: + raise Exception(f"failed to add argparse arg to config {key}: {e}") + return config + + +async def prepare_hlcvs_mss(config): + results_path = oj( + config["backtest"]["base_dir"], + "forager", + config["backtest"]["exchange"], + "", + ) + mss_path = oj( + results_path, + "market_specific_settings.json", + ) + try: + mss = fetch_market_specific_settings_multi(exchange=config["backtest"]["exchange"]) + json.dump(mss, open(make_get_filepath(mss_path), "w")) + except Exception as e: + print("failed to fetch market specific settings", e) + try: + mss = json.load(open(mss_path)) + print(f"loaded market specific settings from cache {mss_path}") + except: + raise Exception("failed to load market specific settings from cache") + + symbols, timestamps, hlcvs = await prepare_hlcvs(config) + + return symbols, hlcvs, mss, results_path + + +def prep_backtest_args(config, mss, exchange_params=None, backtest_params=None): + symbols = sorted(set(config["backtest"]["symbols"])) # sort for consistency + bot_params = {k: config["bot"][k].copy() for k in ["long", "short"]} + for pside in bot_params: + bot_params[pside]["wallet_exposure_limit"] = ( + bot_params[pside]["total_wallet_exposure_limit"] / bot_params[pside]["n_positions"] + if bot_params[pside]["n_positions"] > 0 + else 0.0 + ) + if exchange_params is None: + exchange_params = [ + {k: mss[symbol][k] for k in ["qty_step", "price_step", "min_qty", "min_cost", "c_mult"]} + for symbol in symbols + ] + if backtest_params is None: + backtest_params = { + "starting_balance": config["backtest"]["starting_balance"], + "maker_fee": mss[symbols[0]]["maker"], + "symbols": symbols, + } + return bot_params, exchange_params, backtest_params + + +def run_backtest(hlcs, preferred_coins, mss, config: dict): + bot_params, exchange_params, backtest_params = prep_backtest_args(config, mss) + print(f"Starting backtest...") + sts = utc_ms() + fills, equities, analysis = pbr.run_backtest( + hlcs, preferred_coins, bot_params, exchange_params, backtest_params + ) + print(f"seconds elapsed for backtest: {(utc_ms() - sts) / 1000:.4f}") + return fills, equities, analysis + + +def post_process(config, hlcs, fills, equities, analysis, results_path): + sts = utc_ms() + fdf = process_forager_fills(fills) + equities = pd.Series(equities) + analysis_py, bal_eq = analyze_fills_forager(config["backtest"]["symbols"], hlcs, fdf, equities) + for k in analysis_py: + if k not in analysis: + analysis[k] = analysis_py[k] + print(f"seconds elapsed for analysis: {(utc_ms() - sts) / 1000:.4f}") + pprint.pprint(analysis) + results_path = make_get_filepath( + oj(results_path, f"{ts_to_date(utc_ms())[:19].replace(':', '_')}", "") + ) + json.dump(analysis, open(f"{results_path}analysis.json", "w"), indent=4, sort_keys=True) + config["analysis"] = analysis + dump_config(config, f"{results_path}config.json") + fdf.to_csv(f"{results_path}fills.csv") + plot_forager(results_path, config["backtest"]["symbols"], fdf, bal_eq, hlcs) + + +def plot_forager(results_path, symbols: [str], fdf: pd.DataFrame, bal_eq, hlcs): + plots_dir = make_get_filepath(oj(results_path, "fills_plots", "")) + plt.clf() + bal_eq.plot() + plt.savefig(oj(results_path, "balance_and_equity.png")) + + for i, symbol in enumerate(symbols): + print(f"Plotting fills for {symbol}") + hlcs_df = pd.DataFrame(hlcs[:, i, :], columns=["high", "low", "close"]) + fdfc = fdf[fdf.symbol == symbol] + plt.clf() + plot_fills_forager(fdfc, hlcs_df) + plt.title(f"Fills {symbol}") + plt.xlabel = "time" + plt.ylabel = "price" + plt.savefig(oj(plots_dir, f"{symbol}.png")) + + +def add_argparse_args_backtest(parser): + parser_items = [ + ("s", "symbols", "symbols", str, ", comma separated (SYM1USDT,SYM2USDT,...)"), + ("e", "exchange", "exchange", str, ""), + ("sd", "start_date", "start_date", str, ""), + ( + "ed", + "end_date", + "end_date", + str, + ", if end date is 'now', will use current date as end date", + ), + ("sb", "starting_balance", "starting_balance", float, ""), + ("bd", "base_dir", "base_dir", str, ""), + ] + for k0, k1, d, t, h in parser_items: + parser.add_argument( + *[f"-{k0}", f"--{k1}"] + ([f"--{k1.replace('_', '-')}"] if "_" in k1 else []), + type=t, + required=False, + dest=d, + default=None, + help=f"specify {k1}{h}, overriding value from hjson config.", + ) + args = parser.parse_args() + return args + + +def calc_preferred_coins(hlcvs, config): + w_size = config["live"]["noisiness_rolling_mean_window_size"] + n_coins = hlcvs.shape[1] + + # Calculate noisiness indices + noisiness_indices = np.argsort(-pbr.calc_noisiness_py(hlcvs[:, :, :3], w_size)) + + # Calculate volume-based eligibility + if config["live"]["relative_volume_filter_clip_pct"] > 0.0: + n_eligibles = int(round(n_coins * (1 - config["live"]["relative_volume_filter_clip_pct"]))) + + for pside in ["long", "short"]: + if ( + config["bot"][pside]["n_positions"] > 0.0 + and config["bot"][pside]["total_wallet_exposure_limit"] > 0.0 + ): + n_eligibles = max(n_eligibles, int(round(config["bot"][pside]["n_positions"]))) + + if n_eligibles < n_coins: + # Calculate rolling volumes and get volume-based ranking + rolling_volumes = pbr.calc_volumes_py(hlcvs, w_size) + volume_ranking = np.argsort(-rolling_volumes, axis=1) + + # Create a mask for eligible coins based on volume (vectorized) + rows = np.arange(hlcvs.shape[0])[:, None] + cols = volume_ranking[:, :n_eligibles] + eligibility_mask = np.zeros((hlcvs.shape[0], n_coins), dtype=bool) + eligibility_mask[rows, cols] = True + + # Filter noisiness_indices based on eligibility + filtered_noisiness_indices = np.array( + [ + indices[mask] + for indices, mask in zip( + noisiness_indices, eligibility_mask[rows, noisiness_indices] + ) + ] + ) + + return filtered_noisiness_indices + + return noisiness_indices + + +async def main(): + manage_rust_compilation() + logging.basicConfig( + format="%(asctime)s %(levelname)-8s %(message)s", + level=logging.INFO, + datefmt="%Y-%m-%dT%H:%M:%S", + ) + parser = argparse.ArgumentParser(prog="backtest", description="run forager backtest") + parser.add_argument("config_path", type=str, default=None, help="path to hjson passivbot config") + args = add_argparse_args_backtest(parser) + config = load_config("configs/template.hjson" if args.config_path is None else args.config_path) + config = add_argparse_args_to_config(config, args) + symbols, hlcvs, mss, results_path = await prepare_hlcvs_mss(config) + config["backtest"]["symbols"] = symbols + preferred_coins = calc_preferred_coins(hlcvs, config) + hlcs = hlcvs[:, :, :3] + fills, equities, analysis = run_backtest(hlcs, preferred_coins, mss, config) + post_process(config, hlcs, fills, equities, analysis, results_path) + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/balance_overview.ipynb b/src/balance_overview.ipynb similarity index 100% rename from balance_overview.ipynb rename to src/balance_overview.ipynb diff --git a/correlation.ipynb b/src/correlation.ipynb similarity index 100% rename from correlation.ipynb rename to src/correlation.ipynb diff --git a/downloader.py b/src/downloader.py similarity index 81% rename from downloader.py rename to src/downloader.py index 2db118daf..4d78ec9d0 100644 --- a/downloader.py +++ b/src/downloader.py @@ -14,6 +14,7 @@ import zipfile import traceback import aiohttp +import ccxt.async_support as ccxt import numpy as np import pandas as pd @@ -32,7 +33,7 @@ utc_ms, get_first_ohlcv_timestamps, ) -from pure_funcs import ts_to_date, ts_to_date_utc, date_to_ts2, get_dummy_settings, get_day +from pure_funcs import ts_to_date, ts_to_date_utc, date_to_ts2, get_dummy_settings, get_day, numpyize class Downloader: @@ -1040,6 +1041,21 @@ def get_days_in_between(start_day, end_day): async def download_ohlcvs_bybit(symbol, start_date, end_date, spot=False, download_only=False): + ns = [30, 10, 1] + for i, n in enumerate(ns): + try: + return await download_ohlcvs_bybit_sub( + symbol, start_date, end_date, spot=False, download_only=False, n_concurrent_fetches=n + ) + except Exception as e: + print(f"Error fetching trades from bybit for {symbol} {e}. ") + if i < len(ns): + f"Retrying with concurrent fetches changed {n} -> {ns[i+1]}." + + +async def download_ohlcvs_bybit_sub( + symbol, start_date, end_date, spot=False, download_only=False, n_concurrent_fetches=10 +): start_date, end_date = get_day(start_date), get_day(end_date) assert date_to_ts2(end_date) >= date_to_ts2(start_date), "end_date is older than start_date" dirpath = make_get_filepath(f"historical_data/ohlcvs_bybit{'_spot' if spot else ''}/{symbol}/") @@ -1056,7 +1072,6 @@ async def download_ohlcvs_bybit(symbol, start_date, end_date, spot=False, downlo if (cand := f"{symbol}{'_' if spot else ''}{day}.csv.gz") in webpage ] if len(filenames) > 0: - n_concurrent_fetches = 2 for i in range(0, len(filenames), n_concurrent_fetches): filenames_sublist = filenames[i : i + n_concurrent_fetches] print( @@ -1151,18 +1166,24 @@ async def download_single_ohlcvs_binance(url: str, fpath: str): async def download_ohlcvs_binance( - symbol, inverse, start_date, end_date, spot=False, download_only=False + symbol, + inverse, + start_date, + end_date, + spot=False, + download_only=False, + start_tss=None, ) -> pd.DataFrame: dirpath = make_get_filepath(f"historical_data/ohlcvs_{'spot' if spot else 'futures'}/{symbol}/") base_url = "https://data.binance.vision/data/" base_url += "spot/" if spot else f"futures/{'cm' if inverse else 'um'}/" col_names = ["timestamp", "open", "high", "low", "close", "volume"] - if spot: + if start_tss is not None and symbol in start_tss: + start_ts = start_tss[symbol] + elif spot: start_ts = get_first_ohlcv_ts(symbol, spot=spot) else: start_ts = (await get_first_ohlcv_timestamps(symbols=[symbol]))[symbol] - if start_ts != 0: - print(f"first ohlcv at {ts_to_date(start_ts)}") start_ts = int(max(start_ts, date_to_ts2(start_date))) end_ts = int(date_to_ts2(end_date)) days = [ts_to_date_utc(x)[:10] for x in list(range(start_ts, end_ts, 1000 * 60 * 60 * 24))] @@ -1215,13 +1236,19 @@ async def download_ohlcvs_binance( for fpath in months_done + days_done if fpath in fnames ] - df = pd.concat(dfs)[col_names].sort_values("timestamp") + try: + df = pd.concat(dfs)[col_names].sort_values("timestamp") + except ValueError as e: + print( + f"error with download_ohlcvs_binance {symbol} {start_date} {end_date}: {e}. Returning empty" + ) + return pd.DataFrame() df = df.drop_duplicates(subset=["timestamp"]).reset_index() nindex = np.arange(df.timestamp.iloc[0], df.timestamp.iloc[-1] + 60000, 60000) return df[col_names].set_index("timestamp").reindex(nindex).ffill().reset_index() -def count_longest_identical_data(hlc, symbol): +def count_longest_identical_data(hlc, symbol, verbose=True): line = f"checking ohlcv integrity of {symbol}" diffs = (np.diff(hlc[:, 1:], axis=0) == [0.0, 0.0, 0.0]).all(axis=1) longest_consecutive = 0 @@ -1235,23 +1262,27 @@ def count_longest_identical_data(hlc, symbol): longest_consecutive = counter i_ = i counter = 0 - print( - f"{symbol} most n days of consecutive identical ohlcvs: {longest_consecutive / 60 / 24:.3f}, index last: {i_}" - ) + if verbose: + print( + f"{symbol} most n days of consecutive identical ohlcvs: {longest_consecutive / 60 / 24:.3f}, index last: {i_}" + ) return longest_consecutive -def attempt_gap_fix_hlcs(df): +def attempt_gap_fix_hlcs(df, symbol=None): interval = 60 * 1000 - max_gap = interval * 60 * 12 # 12 hours + max_hours = 12 + max_gap = interval * 60 * max_hours greatest_gap = df.timestamp.diff().max() if greatest_gap == interval: return df if greatest_gap > max_gap: raise Exception( - f"ohlcvs gap greater than {max_gap / (1000 * 60 * 60)} hours: {greatest_gap / (1000 * 60 * 60)} hours" + f"ohlcvs gap greater than {max_hours} hours: {greatest_gap / (1000 * 60 * 60)} hours" ) - print("gap(s) in ohlcvs... attempting fix") + print( + f"ohlcvs for {symbol} has greatest gap {greatest_gap / (1000 * 60 * 60):.3f} hours. Filling gaps..." + ) new_timestamps = np.arange(df["timestamp"].iloc[0], df["timestamp"].iloc[-1] + interval, interval) new_df = df.set_index("timestamp").reindex(new_timestamps) new_df.close = new_df.close.ffill() @@ -1263,6 +1294,79 @@ def attempt_gap_fix_hlcs(df): return new_df[["timestamp", "open", "high", "low", "close", "volume"]] +async def load_hlcvs(symbol, start_date, end_date, base_dir="backtests", exchange="binance"): + # returns matrix [[timestamp, high, low, close, volume]] + if exchange == "binance": + df = await download_ohlcvs_binance(symbol, False, start_date, end_date, False) + elif exchange == "bybit": + df = await download_ohlcvs_bybit(symbol, start_date, end_date) + df = attempt_gap_fix_hlcs(df, symbol=symbol) + else: + raise Exception(f"downloading ohlcvs from exchange {exchange} not supported") + if len(df) == 0: + return pd.DataFrame() + df = df[df.timestamp >= date_to_ts2(start_date)] + df = df[df.timestamp <= date_to_ts2(end_date)] + return df[["timestamp", "high", "low", "close", "volume"]].values + + +async def prepare_hlcvs(config: dict): + symbols = sorted(set(config["backtest"]["symbols"])) + start_date = config["backtest"]["start_date"] + end_date = config["backtest"]["end_date"] + base_dir = config["backtest"]["base_dir"] + exchange = config["backtest"]["exchange"] + minimum_coin_age_days = config["live"]["minimum_coin_age_days"] + if end_date in ["today", "now", "", None]: + end_ts = utc_ms() - 1000 * 60 * 60 * 24 + end_date = ts_to_date_utc(end_ts)[:10] + else: + end_ts = date_to_ts2(end_date) + hlcvsd = {} + interval_ms = 60000 + start_tss = None + if exchange == "binance": + start_tss = await get_first_ohlcv_timestamps(cc=ccxt.binanceusdm(), symbols=symbols) + elif exchange == "bybit": + start_tss = await get_first_ohlcv_timestamps(cc=ccxt.bybit(), symbols=symbols) + for symbol in symbols: + adjusted_start_ts = date_to_ts2(start_date) + if minimum_coin_age_days > 0.0: + min_coin_age_ms = 1000 * 60 * 60 * 24 * minimum_coin_age_days + if symbol not in start_tss: + print(f"coin {symbol} missing from first timestamps, skipping") + continue + new_start_ts = start_tss[symbol] + min_coin_age_ms + if new_start_ts >= end_ts: + print( + f"Coin {symbol} too young, start date {ts_to_date_utc(start_tss[symbol])}, skipping" + ) + continue + if new_start_ts > adjusted_start_ts: + print( + f"First date for {symbol} was {ts_to_date_utc(start_tss[symbol])}. Adjusting start date to {ts_to_date_utc(new_start_ts)}" + ) + adjusted_start_ts = new_start_ts + data = await load_hlcvs( + symbol, + ts_to_date_utc(adjusted_start_ts)[:10], + end_date, + base_dir, + exchange, + ) + if len(data) == 0: + continue + assert ( + np.diff(data[:, 0]) == interval_ms + ).all(), f"gaps in hlcv data {symbol}" # verify integrous 1m hlcs + hlcvsd[symbol] = data + symbols = list(hlcvsd.keys()) + if len(symbols) > 1: + print(f"Unifying data for {len(symbols)} coins into single numpy array...") + timestamps, unified_data = unify_hlcv_data(hlcvsd.values()) + return symbols, timestamps, unified_data + + async def load_hlc_cache( symbol, inverse, @@ -1271,6 +1375,8 @@ async def load_hlc_cache( base_dir="backtests", spot=False, exchange="binance", + start_tss=None, + minimum_coin_age_days=None, ): cache_fname = ( f"{ts_to_date_utc(date_to_ts2(start_date))[:10]}_" @@ -1287,7 +1393,11 @@ async def load_hlc_cache( df = await download_ohlcvs_bybit(symbol, start_date, end_date, spot, download_only=False) df = attempt_gap_fix_hlcs(df) else: - df = await download_ohlcvs_binance(symbol, inverse, start_date, end_date, spot) + df = await download_ohlcvs_binance( + symbol, inverse, start_date, end_date, spot, start_tss=start_tss + ) + if len(df) == 0: + return pd.DataFrame() df = df[df.timestamp >= date_to_ts2(start_date)] df = df[df.timestamp <= date_to_ts2(end_date)] data = df[["timestamp", "high", "low", "close"]].values @@ -1296,6 +1406,17 @@ async def load_hlc_cache( count_longest_identical_data(data, symbol) except Exception as e: print("error checking integrity", e) + if minimum_coin_age_days: + if start_tss and symbol in start_tss: + first_ts = start_tss[symbol] + else: + first_ts = (await get_first_ohlcv_timestamps(symbols=[symbol]))[symbol] + new_start_ts = max(first_ts + 1000 * 60 * 60 * 24 * minimum_coin_age_days, data[0][0]) + if new_start_ts != data[0][0]: + print( + f"changing start date for {symbol} {ts_to_date_utc(data[0][0])} -> {ts_to_date_utc(new_start_ts)}" + ) + data = data[data[:, 0] >= new_start_ts] return data @@ -1342,19 +1463,125 @@ async def prepare_multsymbol_data( return df.index[0], np.array([df.values[:, i : i + 3] for i in range(0, len(symbols) * 3, 3)]) -async def prepare_hlcs_forager(symbols, start_date, end_date, base_dir, exchange): - """ """ +def pad_hlcs(hlcs, timestamps): + start_timestamp = timestamps[0] + interval = 60000 + num_timestamps = len(timestamps) + + # Initialize the padded_hlcs array with NaNs + padded_hlcs = np.full((num_timestamps, 3), np.nan) + + # Calculate the indices for where the hlcs data should be placed in the padded array + hlcs_start_idx = int((hlcs[0, 0] - start_timestamp) // interval) + hlcs_end_idx = int((hlcs[-1, 0] - start_timestamp) // interval) + + # Fill the hlcs data into the padded array + padded_indices = ((hlcs[:, 0] - start_timestamp) // interval).astype(int) + padded_hlcs[padded_indices, :] = hlcs[:, 1:] + + # Frontfill + front_fill_value = hlcs[0, 3] + padded_hlcs[:hlcs_start_idx, :] = front_fill_value + + # Backfill + back_fill_value = hlcs[-1, 3] + padded_hlcs[hlcs_end_idx + 1 :, :] = back_fill_value + + # Forward fill remaining NaNs using numpy's `np.nan_to_num` and `np.fmax.accumulate` + nan_mask = np.isnan(padded_hlcs[:, 0]) + idx = np.where(~nan_mask, np.arange(num_timestamps), 0) + np.maximum.accumulate(idx, out=idx) + padded_hlcs = padded_hlcs[idx] + + return padded_hlcs + + +def unify_hlcv_data(hlcv_list) -> (np.ndarray, np.ndarray): + + # Find the global start and end timestamps + start_time = min(arr[0, 0] for arr in hlcv_list) + end_time = max(arr[-1, 0] for arr in hlcv_list) + + # Calculate the number of timesteps + n_timesteps = int((end_time - start_time) / 60000) + 1 + + # Create the unified array + n_coins = len(hlcv_list) + unified_array = np.zeros((n_timesteps, n_coins, 4)) + + # Create the timestamp array + timestamps = np.arange(start_time, end_time + 60000, 60000) + + for i, ohlcv in enumerate(hlcv_list): + # Calculate the start and end indices for this coin + start_idx = int((ohlcv[0, 0] - start_time) / 60000) + end_idx = start_idx + len(ohlcv) + + # Extract the required data (high, low, close, volume) + coin_data = ohlcv[:, 1:] + + # Place the data in the unified array + unified_array[start_idx:end_idx, i, :] = coin_data + + # Front-fill + if start_idx > 0: + unified_array[:start_idx, i, :3] = coin_data[0, 2] # Set high, low, close to first close + + # Back-fill + if end_idx < n_timesteps: + unified_array[end_idx:, i, :3] = coin_data[-1, 2] # Set high, low, close to last close + + return timestamps, unified_array + + +async def prepare_hlcs_forager(config: dict): + """ + returns + [timestamp], + [ + [ + [sym0_high0, sym0_low0, sym0_close0], + [sym1_high0, sym1_low0, sym1_close0], + [sym2_high0, sym2_low0, sym2_close0], + ], + [ + [sym0_high1, sym0_low1, sym0_close1], + [sym1_high1, sym1_low1, sym1_close1], + [sym2_high1, sym2_low1, sym2_close1], + ] + ] + """ + symbols = config["backtest"]["symbols"] + start_date = config["backtest"]["start_date"] + end_date = config["backtest"]["end_date"] + base_dir = config["backtest"]["base_dir"] + exchange = config["backtest"]["exchange"] + minimum_coin_age_days = config["live"]["minimum_coin_age_days"] if end_date in ["today", "now", ""]: end_date = ts_to_date_utc(utc_ms())[:10] hlcsd = {} interval_ms = 60000 + start_tss = None + if exchange == "binance": + start_tss = await get_first_ohlcv_timestamps(cc=ccxt.binanceusdm(), symbols=symbols) for symbol in symbols: - data = await load_hlc_cache(symbol, False, start_date, end_date, base_dir, False, exchange) + data = await load_hlc_cache( + symbol, + False, + start_date, + end_date, + base_dir, + False, + exchange, + start_tss=start_tss, + minimum_coin_age_days=minimum_coin_age_days, + ) + if len(data) == 0: + continue assert ( np.diff(data[:, 0]) == interval_ms ).all(), f"gaps in hlc data {symbol}" # verify integrous 1m hlcs hlcsd[symbol] = data - # hlcsd is {symbol: array([[timestamp, high, low, close]])} first_timestamp = min([x[0][0] for x in hlcsd.values()]) last_timestamp = max([x[-1][0] for x in hlcsd.values()]) @@ -1362,11 +1589,94 @@ async def prepare_hlcs_forager(symbols, start_date, end_date, base_dir, exchange unified_data = [] for symbol, data in hlcsd.items(): - unified_data.append(np.zeros((len(timestamps), 3))) - offset = int((data[0][0] - timestamps[0]) // interval_ms) - unified_data[-1][offset : offset + len(data)] = data[:, 1:] + padded_hlcs = pad_hlcs(data, timestamps) + unified_data.append(padded_hlcs) + + return timestamps, np.array(unified_data).transpose(1, 0, 2) + + +def format_hlcs_forager(hlcsd: dict): + interval_ms = 60000 + first_timestamp = min([x[0][0] for x in hlcsd.values()]) + last_timestamp = max([x[-1][0] for x in hlcsd.values()]) + timestamps = np.arange(first_timestamp, last_timestamp + interval_ms, interval_ms) + + unified_data = [] + for symbol, data in hlcsd.items(): + padded_hlcs = pad_hlcs(numpyize(data), timestamps) + unified_data.append(padded_hlcs) + + return timestamps, np.array(unified_data).transpose(1, 0, 2) + + +def calc_noisiness(timestamps, hlcs, timeframe="15m"): + """ + Takes 1m hlcs and timestamps as input and calculates noisiness aggregated over a specified timeframe. + + Args: + timestamps (np.array): Array of timestamps. + hlcs (np.array): 3D array of shape (time, symbols, [high, low, close]). + timeframe (str): Aggregation timeframe ("15m", "5m", "1h", "4h", "1d"). + + Returns: + np.array: 2D array with adjusted timestamps and noisiness values for each symbol per new timeframe. + """ + + if timeframe == "15m": + n_mins, tf = 15, 1000 * 60 * 15 + elif timeframe == "5m": + n_mins, tf = 5, 1000 * 60 * 5 + elif timeframe == "1h": + n_mins, tf = 60, 1000 * 60 * 60 + elif timeframe == "4h": + n_mins, tf = 60 * 4, 1000 * 60 * 60 * 4 + elif timeframe == "1d": + n_mins, tf = 60 * 24, 1000 * 60 * 60 * 24 + else: + raise Exception(f"unsupported timeframe: {timeframe}") + + # Calculate the first and last timestamp for the new adjusted timeframe + first_ts = timestamps[0] // tf * tf + last_ts = timestamps[-1] // tf * tf + new_timestamps = np.arange(first_ts, last_ts + tf, tf) + + # Number of symbols and the number of new timeframes + num_symbols = hlcs.shape[1] + num_periods = len(new_timestamps) + + # Initialize the noisiness array + noisiness = np.zeros((num_periods - 1, num_symbols)) + + start_idx = timestamps[0] // tf * tf + for i in range(start_idx, len(hlcs) + tf, n_mins): + slice_ = hlcs[max(0, i - n_mins) : i] + high = slice_.max() + low = slice_.min() + + # Process each symbol + for symbol_index in range(num_symbols): + # Aggregate high, low, and close for each timeframe + for i in range(1, num_periods): + # Determine indices in the original array that fall into the current timeframe bucket + mask = (timestamps >= new_timestamps[i - 1]) & (timestamps < new_timestamps[i]) + if np.any(mask): + highs = hlcs[mask, symbol_index, 0] + lows = hlcs[mask, symbol_index, 1] + closes = hlcs[mask, symbol_index, 2] + + # Compute high max, low min, and the last close in the interval + period_high = np.max(highs) + period_low = np.min(lows) + period_close = closes[-1] + + # Calculate noisiness + if period_close == 0.0: + noisiness[i - 1, symbol_index] = 0.0 + else: + noisiness[i - 1, symbol_index] = (period_high - period_low) / period_close - return np.array(unified_data).transpose(1, 0, 2) + # Return adjusted timestamps (excluding the last since it doesn't complete the interval) and noisiness values + return new_timestamps[:-1], noisiness async def main(): diff --git a/exchanges_multi/bitget.py b/src/exchanges/bitget.py similarity index 78% rename from exchanges_multi/bitget.py rename to src/exchanges/bitget.py index f9eac449a..bd996e892 100644 --- a/exchanges_multi/bitget.py +++ b/src/exchanges/bitget.py @@ -1,4 +1,4 @@ -from passivbot_multi import Passivbot, logging +from passivbot import Passivbot, logging from uuid import uuid4 import ccxt.pro as ccxt_pro import ccxt.async_support as ccxt_async @@ -45,6 +45,18 @@ def __init__(self, config: dict): } self.custom_id_max_length = 64 + async def determine_utc_offset(self, verbose=True): + # returns millis to add to utc to get exchange timestamp + # call some endpoint which includes timestamp for exchange's server + # if timestamp is not included in self.cca.fetch_balance(), + # implement method in exchange child class + result = await self.cca.fetch_ticker("BTC/USDT:USDT") + self.utc_offset = round((result["timestamp"] - utc_ms()) / (1000 * 60 * 60)) * ( + 1000 * 60 * 60 + ) + if verbose: + logging.info(f"Exchange time offset is {self.utc_offset}ms compared to UTC") + def set_market_specific_settings(self): super().set_market_specific_settings() for symbol in self.markets_dict: @@ -119,6 +131,35 @@ async def watch_tickers(self, symbols=None): traceback.print_exc() await asyncio.sleep(1) + async def watch_ohlcvs_1m(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + currently_watching = set() + while not self.stop_websocket: + if not self.active_symbols: + await asyncio.sleep(1) + continue + symbols_to_watch = set(self.active_symbols) + if symbols_to_watch != currently_watching: + new_symbols = [x for x in symbols_to_watch if x not in currently_watching] + stopped_symbols = [x for x in currently_watching if x not in symbols_to_watch] + if new_symbols: + coins = [symbol_to_coin(x) for x in new_symbols] + logging.info(f"Started watching ohlcv_1m for {','.join(coins)}") + if stopped_symbols: + coins = [symbol_to_coin(x) for x in stopped_symbols] + logging.info(f"Stopped watching ohlcv_1m for {','.join(coins)}") + currently_watching = symbols_to_watch + symbols_and_timeframes = [[s, "1m"] for s in sorted(symbols_to_watch)] + try: + res = await self.ccp.watch_ohlcv_for_symbols(symbols_and_timeframes) + symbol = next(iter(res)) + self.handle_ohlcv_1m_update(symbol, res[symbol]["1m"]) + except Exception as e: + logging.error(f"Exception in watch_ohlcvs_1m: {e}") + traceback.print_exc() + await asyncio.sleep(1) + def determine_side(self, order: dict) -> str: if "info" in order: if all([x in order["info"] for x in ["tradeSide", "reduceOnly", "posSide"]]): @@ -189,6 +230,15 @@ async def fetch_tickers(self): raise Exception("ccxt gives bad symbol error... attempting bot restart") return False + async def fetch_ohlcvs_1m(self, symbol: str, limit=None): + n_candles_limit = 1000 if limit is None else limit + result = await self.cca.fetch_ohlcv( + symbol, + timeframe="1m", + limit=n_candles_limit, + ) + return result + async def fetch_ohlcv(self, symbol: str, timeframe="1m"): # intervals: 1,3,5,15,30,60,120,240,360,720,D,M,W fetched = None @@ -205,10 +255,12 @@ async def fetch_pnls( self, start_time: int = None, end_time: int = None, + limit=None, ): - limit = 100 + if limit is None: + limit = 100 if start_time is None and end_time is None: - return await self.fetch_pnl() + return await self.fetch_pnl(limit=limit) all_fetched = {} while True: fetched = await self.fetch_pnl(start_time=start_time, end_time=end_time) @@ -218,22 +270,23 @@ async def fetch_pnls( all_fetched[elm["id"]] = elm if len(fetched) < limit: break - logging.info(f"debug fetching income {ts_to_date_utc(fetched[-1]['timestamp'])}") + if fetched[0]["timestamp"] <= start_time: + break + logging.info(f"debug fetching fills {ts_to_date_utc(fetched[-1]['timestamp'])}") end_time = fetched[0]["timestamp"] - return sorted( - [x for x in all_fetched.values() if x["pnl"] != 0.0], key=lambda x: x["timestamp"] - ) + return sorted([x for x in all_fetched.values()], key=lambda x: x["timestamp"]) async def fetch_pnl( self, start_time: int = None, end_time: int = None, + limit=None, ): fetched = None # if there are more fills in timeframe than 100, it will fetch latest try: if end_time is None: - end_time = utc_ms() + 1000 * 60 * 60 * 24 + end_time = self.get_exchange_time() + 1000 * 60 if start_time is None: start_time = 0 params = {"productType": "umcbl", "startTime": int(start_time), "endTime": int(end_time)} @@ -244,9 +297,16 @@ async def fetch_pnl( pnls[-1]["pnl"] = float(pnls[-1]["profit"]) pnls[-1]["timestamp"] = float(pnls[-1]["cTime"]) pnls[-1]["id"] = pnls[-1]["tradeId"] + pnls[-1]["symbol"] = self.get_symbol_id_inv(pnls[-1]["symbol"].replace("_UMCBL", "")) + if "long" in pnls[-1]["side"]: + pnls[-1]["position_side"] = "long" + elif "short" in pnls[-1]["side"]: + pnls[-1]["position_side"] = "short" + else: + raise Exception(f"unknown position side in fill {pnls[-1]}") return sorted(pnls, key=lambda x: x["timestamp"]) except Exception as e: - logging.error(f"error fetching income {e}") + logging.error(f"error fetching fills {e}") print_async_exception(fetched) traceback.print_exc() return False @@ -270,16 +330,18 @@ async def execute_cancellation(self, order: dict) -> dict: return {} async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) > self.config["max_n_cancellations_per_batch"]: + if len(orders) > self.config["live"]["max_n_cancellations_per_batch"]: # prioritize cancelling reduce-only orders try: reduce_only_orders = [x for x in orders if x["reduce_only"]] rest = [x for x in orders if not x["reduce_only"]] - orders = (reduce_only_orders + rest)[: self.config["max_n_cancellations_per_batch"]] + orders = (reduce_only_orders + rest)[ + : self.config["live"]["max_n_cancellations_per_batch"] + ] except Exception as e: logging.error(f"debug filter cancellations {e}") return await self.execute_multiple( - orders, "execute_cancellation", self.config["max_n_cancellations_per_batch"] + orders, "execute_cancellation", self.config["live"]["max_n_cancellations_per_batch"] ) async def execute_order(self, order: dict) -> dict: @@ -293,7 +355,11 @@ async def execute_order(self, order: dict) -> dict: "price": str(order["price"]), "side": self.order_side_map[order["side"]][order["position_side"]], "orderType": "limit", - "timeInForceValue": "post_only", + "timeInForceValue": ( + "post_only" + if self.config["live"]["time_in_force"] == "post_only" + else "normal" + ), } ) if "msg" in executed and executed["msg"] == "success": @@ -311,7 +377,7 @@ async def execute_order(self, order: dict) -> dict: async def execute_orders(self, orders: [dict]) -> [dict]: return await self.execute_multiple( - orders, "execute_order", self.config["max_n_creations_per_batch"] + orders, "execute_order", self.config["live"]["max_n_creations_per_batch"] ) async def update_exchange_config_by_symbols(self, symbols): @@ -360,7 +426,7 @@ def calc_ideal_orders(self): ideal_orders_tmp.append({**x, **{"symbol": s}}) ideal_orders_tmp = sorted( ideal_orders_tmp, - key=lambda x: calc_diff(x["price"], self.tickers[x["symbol"]]["last"]), + key=lambda x: calc_diff(x["price"], self.get_last_price(x["symbol"])), )[:100] ideal_orders = {symbol: [] for symbol in self.active_symbols} for x in ideal_orders_tmp: diff --git a/exchanges_multi/bybit.py b/src/exchanges/bybit.py similarity index 53% rename from exchanges_multi/bybit.py rename to src/exchanges/bybit.py index af4e8fd27..927c2376c 100644 --- a/exchanges_multi/bybit.py +++ b/src/exchanges/bybit.py @@ -1,4 +1,4 @@ -from passivbot_multi import Passivbot, logging +from passivbot import Passivbot, logging from uuid import uuid4 import ccxt.pro as ccxt_pro import ccxt.async_support as ccxt_async @@ -6,7 +6,16 @@ import asyncio import traceback import numpy as np -from pure_funcs import multi_replace, floatify, ts_to_date_utc, calc_hash, determine_pos_side_ccxt +from collections import defaultdict +from pure_funcs import ( + multi_replace, + floatify, + ts_to_date_utc, + calc_hash, + determine_pos_side_ccxt, + symbol_to_coin, + flatten, +) from procedures import print_async_exception, utc_ms, assert_correct_ccxt_version assert_correct_ccxt_version(ccxt=ccxt_async) @@ -20,6 +29,7 @@ def __init__(self, config: dict): "apiKey": self.user_info["key"], "secret": self.user_info["secret"], "password": self.user_info["passphrase"], + "headers": {"referer": self.broker_code} if self.broker_code else {}, } ) self.cca = getattr(ccxt_async, self.exchange)( @@ -98,6 +108,91 @@ async def watch_tickers(self, symbols=None): traceback.print_exc() await asyncio.sleep(1) + async def watch_ohlcvs_1m(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + self.WS_ohlcvs_1m_tasks = {} + while not self.stop_websocket: + current_symbols = set(self.active_symbols) + started_symbols = set(self.WS_ohlcvs_1m_tasks.keys()) + for key in self.WS_ohlcvs_1m_tasks: + if self.WS_ohlcvs_1m_tasks[key].cancelled(): + logging.info( + f"debug ohlcv_1m watcher task is cancelled {key} {self.WS_ohlcvs_1m_tasks[key]}" + ) + if self.WS_ohlcvs_1m_tasks[key].done(): + logging.info( + f"debug ohlcv_1m watcher task is done {key} {self.WS_ohlcvs_1m_tasks[key]}" + ) + try: + ex = elf.WS_ohlcvs_1m_tasks[key].exception() + logging.info( + f"debug ohlcv_1m watcher task exception {key} {self.WS_ohlcvs_1m_tasks[key]} {ex}" + ) + except: + pass + to_print = [] + # Start watch_ohlcv_1m_single tasks for new symbols + for symbol in current_symbols - started_symbols: + task = asyncio.create_task(self.watch_ohlcv_1m_single(symbol)) + self.WS_ohlcvs_1m_tasks[symbol] = task + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Started watching ohlcv_1m for {','.join(coins)}") + to_print = [] + # Cancel tasks for symbols that are no longer active + for symbol in started_symbols - current_symbols: + self.WS_ohlcvs_1m_tasks[symbol].cancel() + del self.WS_ohlcvs_1m_tasks[symbol] + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Stopped watching ohlcv_1m for: {','.join(coins)}") + # Wait a bit before checking again + await asyncio.sleep(1) # Adjust sleep time as needed + + async def watch_ohlcv_1m_single(self, symbol): + while not self.stop_websocket and symbol in self.eligible_symbols: + try: + res = await self.ccp.watch_ohlcv(symbol) + self.handle_ohlcv_1m_update(symbol, res) + except Exception as e: + logging.error(f"exception watch_ohlcv_1m_single {symbol} {e}") + traceback.print_exc() + await asyncio.sleep(1) + await asyncio.sleep(0.1) + + async def watch_ohlcvs_1m_old(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + currently_watching = set() + while not self.stop_websocket: + if not self.active_symbols: + await asyncio.sleep(1) + continue + symbols_to_watch = set(self.active_symbols) + if symbols_to_watch != currently_watching: + new_symbols = [x for x in symbols_to_watch if x not in currently_watching] + stopped_symbols = [x for x in currently_watching if x not in symbols_to_watch] + if new_symbols: + coins = [symbol_to_coin(x) for x in new_symbols] + logging.info(f"Started watching ohlcv_1m for {','.join(coins)}") + if stopped_symbols: + coins = [symbol_to_coin(x) for x in stopped_symbols] + logging.info(f"Stopped watching ohlcv_1m for {','.join(coins)}") + currently_watching = symbols_to_watch + symbols_and_timeframes = [[s, "1m"] for s in sorted(symbols_to_watch)] + try: + res = await self.ccp.watch_ohlcv_for_symbols(symbols_and_timeframes) + symbol = next(iter(res)) + self.handle_ohlcv_1m_update(symbol, res[symbol]["1m"]) + except Exception as e: + if "already subscribed" not in str(e): + logging.error(f"Exception in watch_ohlcvs_1m: {e}") + traceback.print_exc() + await asyncio.sleep(1) + async def fetch_open_orders(self, symbol: str = None) -> [dict]: fetched = None open_orders = {} @@ -193,47 +288,46 @@ async def fetch_ohlcv(self, symbol: str, timeframe="1m"): traceback.print_exc() return False - async def fetch_pnls( + async def fetch_pnls_sub( self, - symbol: str = None, start_time: int = None, end_time: int = None, ): if start_time is not None: week = 1000 * 60 * 60 * 24 * 7 - income = [] + pnls = [] if end_time is None: - end_time = int(utc_ms() + 1000 * 60 * 60 * 24) - # bybit has limit of 7 days per pageinated fetch + end_time = int(self.get_exchange_time() + 1000 * 60 * 60 * 24) + # bybit has limit of 7 days per paginated fetch # fetch multiple times i = 1 while i < 52: # limit n fetches to 52 (one year) sts = end_time - week * i ets = sts + week sts = max(sts, start_time) - fetched = await self.fetch_pnl(symbol=symbol, start_time=sts, end_time=ets) - income.extend(fetched) + fetched = await self.fetch_pnl(start_time=sts, end_time=ets) + pnls.extend(fetched) if sts <= start_time: break i += 1 - logging.debug(f"fetching income for more than a week {ts_to_date_utc(sts)}") - return sorted({elm["id"]: elm for elm in income}.values(), key=lambda x: x["timestamp"]) + logging.info(f"fetching pnls for more than a week {ts_to_date_utc(sts)}") else: - return await self.fetch_pnl(symbol=symbol, start_time=start_time, end_time=end_time) + pnls = await self.fetch_pnl(start_time=start_time, end_time=end_time) + return sorted(pnls, key=lambda x: x["timestamp"]) async def fetch_pnl( self, - symbol: str = None, start_time: int = None, end_time: int = None, + limit: int = None, ): fetched = None - income_d = {} - limit = 100 + all_pnls = [] + ids_seen = set() + if limit is None: + limit = 100 try: params = {"category": "linear", "limit": limit} - if symbol is not None: - params["symbol"] = symbol if start_time is not None: params["startTime"] = int(start_time) if end_time is not None: @@ -245,38 +339,162 @@ async def fetch_pnl( while True: if fetched["result"]["list"] == []: break - logging.debug( - f"fetching income {ts_to_date_utc(fetched['result']['list'][-1]['updatedTime'])}" - ) if ( - fetched["result"]["list"][0]["orderId"] in income_d - and fetched["result"]["list"][-1]["orderId"] in income_d + fetched["result"]["list"][0]["orderId"] in ids_seen + and fetched["result"]["list"][-1]["orderId"] in ids_seen ): break + all_pnls.extend(fetched["result"]["list"]) for elm in fetched["result"]["list"]: - income_d[elm["orderId"]] = elm + ids_seen.add(elm["orderId"]) if start_time is None: break if fetched["result"]["list"][0]["updatedTime"] <= start_time: break if not fetched["result"]["nextPageCursor"]: break + logging.info( + f"fetching pnls {ts_to_date_utc(fetched['result']['list'][-1]['updatedTime'])}" + ) params["cursor"] = fetched["result"]["nextPageCursor"] fetched = await self.cca.private_get_v5_position_closed_pnl(params) fetched["result"]["list"] = sorted( floatify(fetched["result"]["list"]), key=lambda x: x["updatedTime"] ) - for k in income_d: - income_d[k]["pnl"] = income_d[k]["closedPnl"] - income_d[k]["timestamp"] = income_d[k]["updatedTime"] - income_d[k]["id"] = str(income_d[k]["orderId"]) + str(income_d[k]["qty"]) - return sorted(income_d.values(), key=lambda x: x["updatedTime"]) + for i in range(len(all_pnls)): + all_pnls[i]["pnl"] = all_pnls[i]["closedPnl"] + all_pnls[i]["timestamp"] = all_pnls[i]["updatedTime"] + return sorted(all_pnls, key=lambda x: x["updatedTime"]) except Exception as e: - logging.error(f"error fetching income {e}") + logging.error(f"error fetching pnls {e}") print_async_exception(fetched) traceback.print_exc() return [] + async def fetch_fills_sub_sub(self, start_time=None, end_time=None): + assert start_time is not None + params = {"limit": 100} + all_fetched = [] + week = 1000 * 60 * 60 * 24 * 7 + fetch_windows = [ + (i, min(i + week, end_time)) for i in range(int(start_time), int(end_time), int(week)) + ] + results = await asyncio.gather( + *[ + self.cca.fetch_my_trades(params={"paginate": True, "endTime": int(ets)}) + for sts, ets in fetch_windows + ] + ) + result = sorted(flatten(results), key=lambda x: x["timestamp"]) + return result + if start_time and end_time and end_time - start_time > week: + start_end_times = [start_time] + result = await self.cca.fetch_my_trades( + since=int(start_time) if start_time else start_time, params=params + ) + return sorted(result, key=lambda x: x["timestamp"]) + + async def fetch_fills_sub(self, start_time=None, end_time=None): + if start_time is None: + result = await self.cca.fetch_my_trades() + return sorted(result, key=lambda x: x["timestamp"]) + if end_time is None: + end_time = int(self.get_exchange_time() + 1000 * 60 * 60 * 24) + all_fetched_fills = [] + for _ in range(100): + fills = await self.cca.fetch_my_trades( + params={"paginate": True, "endTime": int(end_time)} + ) + if not fills: + break + all_fetched_fills += fills + if fills[0]["timestamp"] <= start_time: + break + logging.info( + f"fetched fills: {fills[0]['datetime']} {fills[-1]['datetime']} {len(fills)}" + ) + end_time = fills[0]["timestamp"] + else: + logging.error(f"more than 100 calls to ccxt fetch_my_trades") + return sorted(all_fetched_fills, key=lambda x: x["timestamp"]) + + async def fetch_fills2_sub_sub(self, start_time, end_time, limit=None): + if start_time is None: + result = await self.cca.fetch_my_trades() + return sorted(result, key=lambda x: x["timestamp"]) + if end_time is None: + end_time = int(self.get_exchange_time() + 1000 * 60 * 60 * 4) + all_fetched_fills = [] + for _ in range(100): + fills = await self.cca.fetch_my_trades( + limit=limit, params={"paginate": True, "endTime": int(end_time)} + ) + if not fills: + break + fills.sort(key=lambda x: x["timestamp"]) + all_fetched_fills += fills + if fills[0]["timestamp"] <= start_time: + break + logging.info( + f"fetched fills: {fills[0]['datetime']} {fills[-1]['datetime']} {len(fills)}" + ) + end_time = fills[0]["timestamp"] + else: + logging.error(f"more than 100 calls to ccxt fetch_my_trades") + return sorted(all_fetched_fills, key=lambda x: x["timestamp"]) + + async def fetch_fills2_sub(self, start_time, end_time): + if start_time is None: + result = await self.cca.fetch_my_trades() + return sorted(result, key=lambda x: x["timestamp"]) + if end_time is None: + end_time = int(self.get_exchange_time() + 1000 * 60 * 60 * 24) + params = {"limit": 100} + all_fetched = [] + week = 1000 * 60 * 60 * 24 * 7 + fetch_windows = [ + (i, min(i + week, end_time)) for i in range(int(start_time), int(end_time), int(week)) + ] + results = await asyncio.gather( + *[self.fetch_fills2_sub_sub(sts, ets) for sts, ets in fetch_windows] + ) + result = sorted(flatten(results), key=lambda x: x["timestamp"]) + return result + + async def fetch_pnls(self, start_time=None, end_time=None, limit=None): + # fetch fills first, then pnls (bybit has them in separate endpoints) + if start_time: + if self.get_exchange_time() - start_time < 1000 * 60 * 60 * 4 and limit == 100: + start_time = None + fills = await self.fetch_fills2_sub_sub(start_time=start_time, end_time=end_time, limit=limit) + if start_time: + fills = [x for x in fills if x["timestamp"] >= start_time - 1000 * 60 * 60 * 4] + if not fills: + return [] + start_time = fills[0]["timestamp"] + pnls = await self.fetch_pnls_sub(start_time=start_time, end_time=end_time) + + fillsd = defaultdict(list) + for x in fills: + x["orderId"] = x["info"]["orderId"] + x["position_side"] = self.determine_pos_side(x) + x["pnl"] = 0.0 + fillsd[x["orderId"]].append(x) + pnls_ids = set() + for x in pnls: + pnls_ids.add(x["orderId"]) + if x["orderId"] in fillsd: + fillsd[x["orderId"]][-1]["pnl"] = x["pnl"] + else: + logging.info(f"debug missing order id in fills {x['orderId']}") + joined = {x["info"]["execId"]: x for x in flatten(fillsd.values())} + return sorted(joined.values(), key=lambda x: x["timestamp"]) + + def determine_pos_side(self, x): + if x["side"] == "buy": + return "short" if float(x["info"]["closedSize"]) != 0.0 else "long" + return "long" if float(x["info"]["closedSize"]) != 0.0 else "short" + async def execute_cancellation(self, order: dict) -> dict: executed = None try: @@ -296,16 +514,18 @@ async def execute_cancellation(self, order: dict) -> dict: return {} async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) > self.config["max_n_cancellations_per_batch"]: + if len(orders) > self.config["live"]["max_n_cancellations_per_batch"]: # prioritize cancelling reduce-only orders try: reduce_only_orders = [x for x in orders if x["reduce_only"]] rest = [x for x in orders if not x["reduce_only"]] - orders = (reduce_only_orders + rest)[: self.config["max_n_cancellations_per_batch"]] + orders = (reduce_only_orders + rest)[ + : self.config["live"]["max_n_cancellations_per_batch"] + ] except Exception as e: logging.error(f"debug filter cancellations {e}") return await self.execute_multiple( - orders, "execute_cancellation", self.config["max_n_cancellations_per_batch"] + orders, "execute_cancellation", self.config["live"]["max_n_cancellations_per_batch"] ) async def execute_order(self, order: dict) -> dict: @@ -318,7 +538,9 @@ async def execute_order(self, order: dict) -> dict: price=order["price"], params={ "positionIdx": 1 if order["position_side"] == "long" else 2, - "timeInForce": "postOnly", + "timeInForce": ( + "postOnly" if self.config["live"]["time_in_force"] == "post_only" else "GTC" + ), "orderLinkId": order["custom_id"], }, ) @@ -336,7 +558,7 @@ async def execute_order(self, order: dict) -> dict: async def execute_orders(self, orders: [dict]) -> [dict]: return await self.execute_multiple( - orders, "execute_order", self.config["max_n_creations_per_batch"] + orders, "execute_order", self.config["live"]["max_n_creations_per_batch"] ) async def update_exchange_config_by_symbols(self, symbols): @@ -386,3 +608,22 @@ async def update_exchange_config(self): logging.info(f"set hedge mode {res}") except Exception as e: logging.error(f"error setting hedge mode {e}") + + async def fetch_ohlcvs_1m(self, symbol: str, since: float = None, limit=None): + n_candles_limit = 1000 if limit is None else limit + if since is None: + result = await self.cca.fetch_ohlcv(symbol, timeframe="1m", limit=n_candles_limit) + return result + since = since // 60000 * 60000 + max_n_fetches = 5000 // n_candles_limit + all_fetched = [] + for i in range(max_n_fetches): + fetched = await self.cca.fetch_ohlcv( + symbol, timeframe="1m", since=int(since), limit=n_candles_limit + ) + all_fetched += fetched + if len(fetched) < n_candles_limit: + break + since = fetched[-1][0] + all_fetched_d = {x[0]: x for x in all_fetched} + return sorted(all_fetched_d.values(), key=lambda x: x[0]) diff --git a/src/exchanges/gateio.py b/src/exchanges/gateio.py new file mode 100644 index 000000000..5c7a1a0eb --- /dev/null +++ b/src/exchanges/gateio.py @@ -0,0 +1,462 @@ +from passivbot import Passivbot, logging +from uuid import uuid4 +import ccxt.pro as ccxt_pro +import ccxt.async_support as ccxt_async +import pprint +import asyncio +import traceback +import json +import numpy as np +from pure_funcs import ( + multi_replace, + floatify, + ts_to_date_utc, + calc_hash, + shorten_custom_id, + coin2symbol, + symbol_to_coin, +) +from njit_funcs import ( + calc_diff, + round_, + round_up, + round_dn, + round_dynamic, + round_dynamic_up, + round_dynamic_dn, +) +from procedures import print_async_exception, utc_ms, assert_correct_ccxt_version +from sortedcontainers import SortedDict + +assert_correct_ccxt_version(ccxt=ccxt_async) + + +class GateIOBot(Passivbot): + def __init__(self, config: dict): + super().__init__(config) + self.ccp = getattr(ccxt_pro, self.exchange)( + { + "apiKey": self.user_info["key"], + "secret": self.user_info["secret"], + "headers": {"X-Gate-Channel-Id": self.broker_code} if self.broker_code else {}, + } + ) + self.ccp.options["defaultType"] = "swap" + self.cca = getattr(ccxt_async, self.exchange)( + { + "apiKey": self.user_info["key"], + "secret": self.user_info["secret"], + "headers": {"X-Gate-Channel-Id": self.broker_code} if self.broker_code else {}, + } + ) + self.cca.options["defaultType"] = "swap" + self.ohlcvs_1m_init_duration_seconds = ( + 120 # gateio has stricter rate limiting on fetching ohlcvs + ) + self.hedge_mode = False + self.max_n_creations_per_batch = 10 + self.max_n_cancellations_per_batch = 20 + + def set_market_specific_settings(self): + super().set_market_specific_settings() + for symbol in self.markets_dict: + elm = self.markets_dict[symbol] + self.symbol_ids[symbol] = elm["id"] + self.min_costs[symbol] = ( + 0.1 if elm["limits"]["cost"]["min"] is None else elm["limits"]["cost"]["min"] + ) + self.min_qtys[symbol] = ( + elm["precision"]["amount"] + if elm["limits"]["amount"]["min"] is None + else elm["limits"]["amount"]["min"] + ) + self.qty_steps[symbol] = elm["precision"]["amount"] + self.price_steps[symbol] = elm["precision"]["price"] + self.c_mults[symbol] = elm["contractSize"] + self.max_leverage[symbol] = elm["limits"]["leverage"]["max"] + + async def determine_utc_offset(self, verbose=True): + # returns millis to add to utc to get exchange timestamp + # call some endpoint which includes timestamp for exchange's server + # if timestamp is not included in self.cca.fetch_balance(), + # implement method in exchange child class + result = await self.cca.fetch_ohlcv("BTC/USDT:USDT", timeframe="1m") + self.utc_offset = round((result[-1][0] - utc_ms()) / (1000 * 60 * 60)) * (1000 * 60 * 60) + if verbose: + logging.info(f"Exchange time offset is {self.utc_offset}ms compared to UTC") + + async def start_websockets(self): + await asyncio.gather( + self.watch_balance(), + self.watch_orders(), + self.watch_tickers(), + ) + + async def watch_ohlcvs_1m(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + self.WS_ohlcvs_1m_tasks = {} + while not self.stop_websocket: + current_symbols = set(self.active_symbols) + started_symbols = set(self.WS_ohlcvs_1m_tasks.keys()) + to_print = [] + # Start watch_ohlcv_1m_single tasks for new symbols + for symbol in current_symbols - started_symbols: + task = asyncio.create_task(self.watch_ohlcv_1m_single(symbol)) + self.WS_ohlcvs_1m_tasks[symbol] = task + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Started watching ohlcv_1m for {','.join(coins)}") + to_print = [] + # Cancel tasks for symbols that are no longer active + for symbol in started_symbols - current_symbols: + self.WS_ohlcvs_1m_tasks[symbol].cancel() + del self.WS_ohlcvs_1m_tasks[symbol] + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Stopped watching ohlcv_1m for: {','.join(coins)}") + # Wait a bit before checking again + await asyncio.sleep(1) # Adjust sleep time as needed + + async def watch_ohlcv_1m_single(self, symbol): + while not self.stop_websocket and symbol in self.eligible_symbols: + try: + res = await self.ccp.watch_ohlcv(symbol, timeframe="1m") + self.handle_ohlcv_1m_update(symbol, res) + except Exception as e: + logging.error(f"exception watch_ohlcv_1m_single {symbol} {e}") + traceback.print_exc() + await asyncio.sleep(1) + await asyncio.sleep(0.1) + + async def watch_balance(self): + # hyperliquid ccxt watch balance not supported. + # relying instead on periodic REST updates + res = None + while True: + try: + if self.stop_websocket: + break + res = await self.cca.fetch_balance() + res[self.quote]["total"] = float(res["info"]["marginSummary"]["accountValue"]) - sum( + [float(x["position"]["unrealizedPnl"]) for x in res["info"]["assetPositions"]] + ) + self.handle_balance_update(res) + await asyncio.sleep(10) + except Exception as e: + logging.error(f"exception watch_balance {res} {e}") + traceback.print_exc() + await asyncio.sleep(1) + + async def watch_orders(self): + res = None + while not self.stop_signal_received: + if not self.ccp.uid: + await asyncio.sleep(1) + continue + try: + if self.stop_websocket: + break + res = await self.ccp.watch_orders() + for i in range(len(res)): + res[i]["position_side"] = self.determine_pos_side(res[i]) + res[i]["qty"] = res[i]["amount"] + self.handle_order_update(res) + except Exception as e: + logging.error(f"exception watch_orders {res} {e}") + traceback.print_exc() + await asyncio.sleep(1) + + async def watch_tickers(self): + self.WS_ticker_tasks = {} + while not self.stop_websocket: + current_symbols = set(self.active_symbols) + started_symbols = set(self.WS_ticker_tasks.keys()) + + # Start watch_ticker tasks for new symbols + for symbol in current_symbols - started_symbols: + task = asyncio.create_task(self.watch_ticker(symbol)) + self.WS_ticker_tasks[symbol] = task + logging.info(f"Started watching ticker for symbol: {symbol}") + + # Cancel tasks for symbols that are no longer active + for symbol in started_symbols - current_symbols: + self.WS_ticker_tasks[symbol].cancel() + del self.WS_ticker_tasks[symbol] + logging.info(f"Stopped watching ticker for symbol: {symbol}") + + # Wait a bit before checking again + await asyncio.sleep(1) # Adjust sleep time as needed + + async def watch_ticker(self, symbol): + while not self.stop_websocket and symbol in self.active_symbols: + try: + res = await self.ccp.watch_order_book(symbol) + if res["bids"] and res["asks"]: + res["bid"], res["ask"] = res["bids"][0][0], res["asks"][0][0] + res["last"] = (res["bid"] + res["ask"]) / 2 + self.handle_ticker_update(res) + except Exception as e: + logging.error(f"exception watch_ticker {symbol} {str(e)}") + traceback.print_exc() + await asyncio.sleep(1) + await asyncio.sleep(0.1) + + def determine_pos_side(self, order): + if order["side"] == "buy": + return "short" if order["reduceOnly"] else "long" + if order["side"] == "sell": + return "long" if order["reduceOnly"] else "short" + raise Exception(f"unsupported order side {order['side']}") + + async def fetch_open_orders(self, symbol: str = None): + fetched = None + open_orders = [] + try: + fetched = await self.cca.fetch_open_orders() + for i in range(len(fetched)): + fetched[i]["position_side"] = self.determine_pos_side(fetched[i]) + fetched[i]["qty"] = fetched[i]["amount"] + return sorted(fetched, key=lambda x: x["timestamp"]) + except Exception as e: + logging.error(f"error fetching open orders {e}") + print_async_exception(fetched) + traceback.print_exc() + return False + + async def fetch_positions(self) -> ([dict], float): + positions, balance = None, None + try: + positions_fetched, balance = await asyncio.gather( + self.cca.fetch_positions(), self.cca.fetch_balance() + ) + if not hasattr(self, "uid") or not self.uid: + self.uid = balance["info"][0]["user"] + self.cca.uid = self.uid + self.ccp.uid = self.uid + balance = balance[self.quote]["total"] + positions = [] + for x in positions_fetched: + if x["contracts"] != 0.0: + x["size"] = x["contracts"] + x["price"] = x["entryPrice"] + x["position_side"] = x["side"] + positions.append(x) + return positions, balance + except Exception as e: + logging.error(f"error fetching positions and balance {e}") + print_async_exception(positions) + print_async_exception(balance) + traceback.print_exc() + return False + + async def fetch_tickers(self): + fetched = None + try: + fetched = await self.cca.fetch( + "https://api.hyperliquid.xyz/info", + method="POST", + headers={"Content-Type": "application/json"}, + body=json.dumps({"type": "allMids"}), + ) + return { + coin2symbol(coin, self.quote): { + "bid": float(fetched[coin]), + "ask": float(fetched[coin]), + "last": float(fetched[coin]), + } + for coin in fetched + } + except Exception as e: + logging.error(f"error fetching tickers {e}") + print_async_exception(fetched) + traceback.print_exc() + return False + + async def fetch_ohlcv(self, symbol: str, timeframe="1m"): + # intervals: 1,3,5,15,30,60,120,240,360,720,D,M,W + # fetches latest ohlcvs + fetched = None + str2int = {"1m": 1, "5m": 5, "15m": 15, "1h": 60, "4h": 60 * 4} + n_candles = 480 + try: + since = int(utc_ms() - 1000 * 60 * str2int[timeframe] * n_candles) + fetched = await self.cca.fetch_ohlcv(symbol, timeframe=timeframe, since=since) + return fetched + except Exception as e: + logging.error(f"error fetching ohlcv for {symbol} {e}") + print_async_exception(fetched) + traceback.print_exc() + return False + + async def fetch_ohlcvs_1m(self, symbol: str, limit=None): + n_candles_limit = 1440 if limit is None else limit + result = await self.cca.fetch_ohlcv( + symbol, + timeframe="1m", + limit=n_candles_limit, + ) + return result + + async def fetch_pnls( + self, + start_time: int = None, + end_time: int = None, + limit=None, + ): + if start_time is None: + return await self.fetch_pnl(limit=limit) + all_fetched = {} + if limit is None: + limit = 1000 + offset = 0 + while True: + fetched = await self.fetch_pnl(offset=offset, limit=limit) + if not fetched: + break + for elm in fetched: + all_fetched[elm["id"]] = elm + if len(fetched) < limit: + break + if fetched[0]["timestamp"] <= start_time: + break + logging.info(f"debug fetching pnls {ts_to_date_utc(fetched[-1]['timestamp'])}") + offset += limit + return sorted(all_fetched.values(), key=lambda x: x["timestamp"]) + + async def fetch_pnl( + self, + offset=0, + limit=None, + ): + fetched = None + n_pnls_limit = 1000 if limit is None else limit + try: + fetched = await self.cca.fetch_closed_orders( + limit=n_pnls_limit, params={"offset": offset} + ) + for i in range(len(fetched)): + fetched[i]["pnl"] = float(fetched[i]["info"]["pnl"]) + fetched[i]["position_side"] = self.determine_pos_side(fetched[i]) + return sorted(fetched, key=lambda x: x["timestamp"]) + except Exception as e: + logging.error(f"error fetching pnl {e}") + print_async_exception(fetched) + traceback.print_exc() + return False + + async def execute_cancellation(self, order: dict) -> dict: + return await self.execute_cancellations([order]) + + async def execute_cancellations(self, orders: [dict]) -> [dict]: + if not orders: + return [] + res = None + max_n_cancellations_per_batch = min( + self.max_n_cancellations_per_batch, self.config["live"]["max_n_cancellations_per_batch"] + ) + try: + if len(orders) > max_n_cancellations_per_batch: + # prioritize cancelling reduce-only orders + try: + reduce_only_orders = [x for x in orders if x["reduce_only"]] + rest = [x for x in orders if not x["reduce_only"]] + orders = (reduce_only_orders + rest)[:max_n_cancellations_per_batch] + except Exception as e: + logging.error(f"debug filter cancellations {e}") + res = await self.cca.cancel_orders([x["id"] for x in orders]) + cancellations = [] + for order, elm in zip(orders, res): + if elm["status"] != "rejected": + joined = order.copy() + for k, v in elm.items(): + if k not in joined or not joined[k]: + joined[k] = v + cancellations.append(joined) + return cancellations + except Exception as e: + logging.error(f"error executing cancellations {e} {orders}") + print_async_exception(res) + traceback.print_exc() + + async def execute_order(self, order: dict) -> dict: + return await self.execute_orders([order]) + + async def execute_orders(self, orders: [dict]) -> [dict]: + res = None + try: + if len(orders) == 0: + return [] + to_execute = [] + for order in orders[: self.max_n_creations_per_batch]: + to_execute.append( + { + "symbol": order["symbol"], + "type": "limit", + "side": order["side"], + "amount": order["qty"], + "price": order["price"], + "params": { + "reduce_only": order["reduce_only"], + "timeInForce": ( + "poc" + if self.config["live"]["time_in_force"] == "post_only" + else "gtc" + ), + }, + } + ) + res = await self.cca.create_orders(to_execute) + executed = [] + for ex, order in zip(res, orders): + if "info" in ex and ex["status"] in ["closed", "open"]: + executed.append({**ex, **order}) + return executed + except Exception as e: + logging.error(f"error executing orders {e}") + print_async_exception(res) + traceback.print_exc() + + async def update_exchange_config_by_symbols(self, symbols): + return + coros_to_call_margin_mode = {} + for symbol in symbols: + try: + params = { + "leverage": int( + min( + self.max_leverage[symbol], + self.live_configs[symbol]["leverage"], + ) + ) + } + if self.user_info["is_vault"]: + params["vaultAddress"] = self.user_info["wallet_address"] + coros_to_call_margin_mode[symbol] = asyncio.create_task( + self.cca.set_margin_mode("cross", symbol=symbol, params=params) + ) + except Exception as e: + logging.error(f"{symbol}: error setting cross mode and leverage {e}") + for symbol in symbols: + res = None + to_print = "" + try: + res = await coros_to_call_margin_mode[symbol] + to_print += f"set cross mode {res}" + except Exception as e: + if '"code":"59107"' in e.args[0]: + to_print += f" cross mode and leverage: {res} {e}" + else: + logging.error(f"{symbol} error setting cross mode {res} {e}") + if to_print: + logging.info(f"{symbol}: {to_print}") + + async def update_exchange_config(self): + pass + + def calc_ideal_orders(self): + # hyperliquid needs custom price rounding + ideal_orders = super().calc_ideal_orders() + return ideal_orders diff --git a/exchanges_multi/hyperliquid.py b/src/exchanges/hyperliquid.py similarity index 80% rename from exchanges_multi/hyperliquid.py rename to src/exchanges/hyperliquid.py index e76a1d350..4b8a19729 100644 --- a/exchanges_multi/hyperliquid.py +++ b/src/exchanges/hyperliquid.py @@ -1,4 +1,4 @@ -from passivbot_multi import Passivbot, logging +from passivbot import Passivbot, logging, get_function_name from uuid import uuid4 import ccxt.pro as ccxt_pro import ccxt.async_support as ccxt_async @@ -14,6 +14,7 @@ calc_hash, shorten_custom_id, coin2symbol, + symbol_to_coin, ) from njit_funcs import ( calc_diff, @@ -25,6 +26,7 @@ round_dynamic_dn, ) from procedures import print_async_exception, utc_ms, assert_correct_ccxt_version +from sortedcontainers import SortedDict assert_correct_ccxt_version(ccxt=ccxt_async) @@ -84,6 +86,45 @@ async def start_websockets(self): self.watch_tickers(), ) + async def watch_ohlcvs_1m(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + self.WS_ohlcvs_1m_tasks = {} + while not self.stop_websocket: + current_symbols = set(self.active_symbols) + started_symbols = set(self.WS_ohlcvs_1m_tasks.keys()) + to_print = [] + # Start watch_ohlcv_1m_single tasks for new symbols + for symbol in current_symbols - started_symbols: + task = asyncio.create_task(self.watch_ohlcv_1m_single(symbol)) + self.WS_ohlcvs_1m_tasks[symbol] = task + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Started watching ohlcv_1m for {','.join(coins)}") + to_print = [] + # Cancel tasks for symbols that are no longer active + for symbol in started_symbols - current_symbols: + self.WS_ohlcvs_1m_tasks[symbol].cancel() + del self.WS_ohlcvs_1m_tasks[symbol] + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Stopped watching ohlcv_1m for: {','.join(coins)}") + # Wait a bit before checking again + await asyncio.sleep(1) # Adjust sleep time as needed + + async def watch_ohlcv_1m_single(self, symbol): + while not self.stop_websocket and symbol in self.eligible_symbols: + try: + res = await self.ccp.watch_ohlcv(symbol) + self.handle_ohlcv_1m_update(symbol, res) + except Exception as e: + logging.error(f"exception watch_ohlcv_1m_single {symbol} {e}") + traceback.print_exc() + await asyncio.sleep(1) + await asyncio.sleep(0.1) + async def watch_balance(self): # hyperliquid ccxt watch balance not supported. # relying instead on periodic REST updates @@ -246,47 +287,71 @@ async def fetch_ohlcv(self, symbol: str, timeframe="1m"): traceback.print_exc() return False + async def fetch_ohlcvs_1m(self, symbol: str, since: float = None, limit=None): + n_candles_limit = 5000 if limit is None else limit + result = await self.cca.fetch_ohlcv( + symbol, + timeframe="1m", + limit=n_candles_limit, + since=int(self.get_exchange_time() - 1000 * 60 * n_candles_limit * 0.95), + ) + return result + async def fetch_pnls( self, start_time: int = None, end_time: int = None, + limit=None, ): - limit = 2000 - if start_time is None and end_time is None: - return await self.fetch_pnl() + # hyperliquid fetches from past to future + if limit is None: + limit = 2000 + if start_time is None: + # hyperliquid returns latest trades if no time frame is passed + return await self.fetch_pnl(limit=limit) all_fetched = {} + prev_hash = "" while True: - fetched = await self.fetch_pnl(start_time=start_time, end_time=end_time) + fetched = await self.fetch_pnl(start_time=start_time, limit=limit) if fetched == []: break for elm in fetched: all_fetched[elm["id"]] = elm if len(fetched) < limit: break - logging.info(f"debug fetching income {ts_to_date_utc(fetched[-1]['timestamp'])}") - end_time = fetched[0]["timestamp"] + if end_time and fetched[-1]["timestamp"] >= end_time: + break + new_hash = calc_hash(fetched) + if prev_hash == new_hash: + print("debug pnls hash", prev_hash, new_hash) + break + prev_hash = new_hash + logging.info( + f"debug fetching pnls {ts_to_date_utc(fetched[-1]['timestamp'])} len {len(fetched)}" + ) + start_time = fetched[-1]["timestamp"] - 1000 + limit = 2000 return sorted(all_fetched.values(), key=lambda x: x["timestamp"]) async def fetch_pnl( self, start_time: int = None, - end_time: int = None, + limit=None, ): fetched = None - # if there are more fills in timeframe than 100, it will fetch latest try: - if end_time is None: - end_time = utc_ms() + 1000 * 60 * 60 * 24 if start_time is None: - start_time = end_time - 1000 * 60 * 60 * 24 * 7 - fetched = await self.cca.fetch_my_trades( - since=int(start_time), params={"endTime": int(end_time)} - ) + fetched = await self.cca.fetch_my_trades(limit=limit) + else: + fetched = await self.cca.fetch_my_trades(since=max(1, int(start_time)), limit=limit) for i in range(len(fetched)): fetched[i]["pnl"] = float(fetched[i]["info"]["closedPnl"]) + fetched[i]["position_side"] = ( + "long" if "long" in fetched[i]["info"]["dir"].lower() else "short" + ) return sorted(fetched, key=lambda x: x["timestamp"]) except Exception as e: - logging.error(f"error fetching pnl {e}") + logging.error(f"error with {get_function_name()} {e}") print_async_exception(fetched) traceback.print_exc() return False @@ -297,13 +362,13 @@ async def execute_cancellation(self, order: dict) -> dict: async def execute_cancellations(self, orders: [dict]) -> [dict]: res = None try: - if len(orders) > self.config["max_n_cancellations_per_batch"]: + if len(orders) > self.config["live"]["max_n_cancellations_per_batch"]: # prioritize cancelling reduce-only orders try: reduce_only_orders = [x for x in orders if x["reduce_only"]] rest = [x for x in orders if not x["reduce_only"]] orders = (reduce_only_orders + rest)[ - : self.config["max_n_cancellations_per_batch"] + : self.config["live"]["max_n_cancellations_per_batch"] ] except Exception as e: logging.error(f"debug filter cancellations {e}") @@ -360,7 +425,11 @@ async def execute_orders(self, orders: [dict]) -> [dict]: # "orderType": {"limit": {"tif": "Alo"}}, # "cloid": order["custom_id"], "reduceOnly": order["reduce_only"], - "timeInForce": "Alo", + "timeInForce": ( + "Alo" + if self.config["live"]["time_in_force"] == "post_only" + else "Gtc" + ), }, } ) diff --git a/exchanges_multi/okx.py b/src/exchanges/okx.py similarity index 73% rename from exchanges_multi/okx.py rename to src/exchanges/okx.py index 4f2353776..a70daf642 100644 --- a/exchanges_multi/okx.py +++ b/src/exchanges/okx.py @@ -1,4 +1,4 @@ -from passivbot_multi import Passivbot, logging +from passivbot import Passivbot, logging from uuid import uuid4 import ccxt.pro as ccxt_pro import ccxt.async_support as ccxt_async @@ -98,6 +98,61 @@ async def watch_orders(self): traceback.print_exc() await asyncio.sleep(1) + async def watch_ohlcvs_1m(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + self.WS_ohlcvs_1m_tasks = {} + while not self.stop_websocket: + current_symbols = set(self.active_symbols) + started_symbols = set(self.WS_ohlcvs_1m_tasks.keys()) + for key in self.WS_ohlcvs_1m_tasks: + if self.WS_ohlcvs_1m_tasks[key].cancelled(): + logging.info( + f"debug ohlcv_1m watcher task is cancelled {key} {self.WS_ohlcvs_1m_tasks[key]}" + ) + if self.WS_ohlcvs_1m_tasks[key].done(): + logging.info( + f"debug ohlcv_1m watcher task is done {key} {self.WS_ohlcvs_1m_tasks[key]}" + ) + try: + ex = elf.WS_ohlcvs_1m_tasks[key].exception() + logging.info( + f"debug ohlcv_1m watcher task exception {key} {self.WS_ohlcvs_1m_tasks[key]} {ex}" + ) + except: + pass + to_print = [] + # Start watch_ohlcv_1m_single tasks for new symbols + for symbol in current_symbols - started_symbols: + task = asyncio.create_task(self.watch_ohlcv_1m_single(symbol)) + self.WS_ohlcvs_1m_tasks[symbol] = task + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Started watching ohlcv_1m for {','.join(coins)}") + to_print = [] + # Cancel tasks for symbols that are no longer active + for symbol in started_symbols - current_symbols: + self.WS_ohlcvs_1m_tasks[symbol].cancel() + del self.WS_ohlcvs_1m_tasks[symbol] + to_print.append(symbol) + if to_print: + coins = [symbol_to_coin(s) for s in to_print] + logging.info(f"Stopped watching ohlcv_1m for: {','.join(coins)}") + # Wait a bit before checking again + await asyncio.sleep(1) # Adjust sleep time as needed + + async def watch_ohlcv_1m_single(self, symbol): + while not self.stop_websocket and symbol in self.eligible_symbols: + try: + res = await self.ccp.watch_ohlcv(symbol) + self.handle_ohlcv_1m_update(symbol, res) + except Exception as e: + logging.error(f"exception watch_ohlcv_1m_single {symbol} {e}") + traceback.print_exc() + await asyncio.sleep(1) + await asyncio.sleep(0.1) + async def watch_tickers(self, symbols=None): self.prev_active_symbols = set() while not self.stop_websocket: @@ -183,12 +238,28 @@ async def fetch_ohlcv(self, symbol: str, timeframe="1m"): traceback.print_exc() return False - async def fetch_pnls( - self, - start_time: int = None, - end_time: int = None, - ): - limit = 100 + async def fetch_ohlcvs_1m(self, symbol: str, since: float = None, limit=None): + n_candles_limit = 300 if limit is None else limit + if since is None: + result = await self.cca.fetch_ohlcv(symbol, timeframe="1m", limit=n_candles_limit) + return result + since = since // 60000 * 60000 + max_n_fetches = 5000 // n_candles_limit + all_fetched = [] + for i in range(max_n_fetches): + fetched = await self.cca.fetch_ohlcv( + symbol, timeframe="1m", since=int(since), limit=n_candles_limit + ) + all_fetched += fetched + if len(fetched) < n_candles_limit: + break + since = fetched[-1][0] + all_fetched_d = {x[0]: x for x in all_fetched} + return sorted(all_fetched_d.values(), key=lambda x: x[0]) + + async def fetch_pnls(self, start_time: int = None, end_time: int = None, limit=None): + if limit is None: + limit = 100 if start_time is None and end_time is None: return await self.fetch_pnl() all_fetched = {} @@ -224,6 +295,7 @@ async def fetch_pnl( ) for i in range(len(fetched)): fetched[i]["pnl"] = float(fetched[i]["info"]["fillPnl"]) + fetched[i]["position_side"] = fetched[i]["info"]["posSide"] return sorted(fetched, key=lambda x: x["timestamp"]) except Exception as e: logging.error(f"error fetching pnl {e}") @@ -249,16 +321,18 @@ async def execute_cancellation(self, order: dict) -> dict: return {} async def execute_cancellations(self, orders: [dict]) -> [dict]: - if len(orders) > self.config["max_n_cancellations_per_batch"]: + if len(orders) > self.config["live"]["max_n_cancellations_per_batch"]: # prioritize cancelling reduce-only orders try: reduce_only_orders = [x for x in orders if x["reduce_only"]] rest = [x for x in orders if not x["reduce_only"]] - orders = (reduce_only_orders + rest)[: self.config["max_n_cancellations_per_batch"]] + orders = (reduce_only_orders + rest)[ + : self.config["live"]["max_n_cancellations_per_batch"] + ] except Exception as e: logging.error(f"debug filter cancellations {e}") return await self.execute_multiple( - orders, "execute_cancellation", self.config["max_n_cancellations_per_batch"] + orders, "execute_cancellation", self.config["live"]["max_n_cancellations_per_batch"] ) async def execute_order(self, order: dict) -> dict: @@ -268,14 +342,18 @@ async def execute_orders(self, orders: [dict]) -> [dict]: if len(orders) == 0: return [] to_execute = [] - custom_ids_map = {} - for order in orders[: self.config["max_n_creations_per_batch"]]: + orders = orders[: self.config["live"]["max_n_creations_per_batch"]] + for order in orders: to_execute.append( { "type": "limit", "symbol": order["symbol"], "side": order["side"], - "ordType": "post_only", + "ordType": ( + "post_only" + if self.config["live"]["time_in_force"] == "post_only" + else "limit" + ), "amount": abs(order["qty"]), "tdMode": "cross", "price": order["price"], @@ -286,7 +364,6 @@ async def execute_orders(self, orders: [dict]) -> [dict]: }, } ) - custom_ids_map[to_execute[-1]["params"]["clOrdId"]] = {**to_execute[-1], **order} executed = None try: executed = await self.cca.create_orders(to_execute) @@ -297,14 +374,14 @@ async def execute_orders(self, orders: [dict]) -> [dict]: return [] to_return = [] - for res in executed: + for order, res in zip(orders, executed): try: if "status" in res and res["status"] == "rejected": - logging.info(f"order rejected: {res} {custom_ids_map[res['clientOrderId']]}") - elif "clientOrderId" in res and res["clientOrderId"] in custom_ids_map: - for key in ["side", "position_side", "qty", "price", "symbol", "reduce_only"]: - res[key] = custom_ids_map[res["clientOrderId"]][key] - to_return.append(res) + logging.info(f"order rejected: {res}") + for key in order: + if key not in res or res[key] is None: + res[key] = order[key] + to_return.append(res) except Exception as e: logging.error(f"error executing order {res} {e}") traceback.print_exc() @@ -356,7 +433,7 @@ def calc_ideal_orders(self): ideal_orders_tmp.append({**x, **{"symbol": s}}) ideal_orders_tmp = sorted( ideal_orders_tmp, - key=lambda x: calc_diff(x["price"], self.tickers[x["symbol"]]["last"]), + key=lambda x: calc_diff(x["price"], self.get_last_price(x["symbol"])), )[:100] ideal_orders = {symbol: [] for symbol in self.active_symbols} for x in ideal_orders_tmp: @@ -367,10 +444,6 @@ def format_custom_ids(self, orders: [dict]) -> [dict]: # okx needs broker code at the beginning of the custom_id new_orders = [] for order in orders: - order["custom_id"] = ( - self.broker_code - + shorten_custom_id(order["custom_id"] if "custom_id" in order else "") - + uuid4().hex - )[: self.custom_id_max_length] + order["custom_id"] = (self.broker_code + uuid4().hex)[: self.custom_id_max_length] new_orders.append(order) return new_orders diff --git a/forager.py b/src/forager.py similarity index 100% rename from forager.py rename to src/forager.py diff --git a/inspect_opt_results.py b/src/inspect_opt_results.py similarity index 100% rename from inspect_opt_results.py rename to src/inspect_opt_results.py diff --git a/interactive_plot.py b/src/interactive_plot.py similarity index 100% rename from interactive_plot.py rename to src/interactive_plot.py diff --git a/src/main.py b/src/main.py new file mode 100644 index 000000000..3e5e2eeff --- /dev/null +++ b/src/main.py @@ -0,0 +1,104 @@ +import asyncio +from passivbot import main +import os +import time +import subprocess +import sys +import select +import platform + +RUST_SOURCE_DIR = "passivbot-rust/" +COMPILED_EXTENSION_NAME = "libpassivbot_rust" + + +def get_compiled_extension_paths(): + possible_extensions = ["so", "dylib", "dll", "pyd", "", "bundle", "sl"] + return [ + os.path.join(RUST_SOURCE_DIR, "target", "release", f"{COMPILED_EXTENSION_NAME}.{ext}") + for ext in possible_extensions + ] + + +COMPILED_EXTENSION_PATHS = get_compiled_extension_paths() + + +def check_compilation_needed(): + try: + # Find the most recently modified compiled extension + compiled_files = [path for path in COMPILED_EXTENSION_PATHS if os.path.exists(path)] + if not compiled_files: + return True # No extension found, compilation needed + + compiled_time = max(os.path.getmtime(path) for path in compiled_files) + + # Check all .rs files in the Rust source directory + for root, _, files in os.walk(RUST_SOURCE_DIR): + for file in files: + if file.endswith(".rs"): + file_path = os.path.join(root, file) + if os.path.getmtime(file_path) > compiled_time: + return True # A source file is newer, compilation needed + + return False # No compilation needed + except Exception as e: + print(f"Error checking compilation status: {e}") + return True # If in doubt, suggest recompilation + + +def prompt_user_for_recompilation(): + print("Rust code needs recompilation. Recompile now? [Y/n]") + + start_time = time.time() + while time.time() - start_time < 10: + rlist, _, _ = select.select([sys.stdin], [], [], 0.1) + if rlist: + user_input = sys.stdin.readline().strip().lower() + if user_input == "n": + return False + else: + return True + + print("No input received within 10 seconds. Proceeding with recompilation.") + return True + + +def recompile_rust(): + try: + current_dir = os.getcwd() + os.chdir(RUST_SOURCE_DIR) + + result = subprocess.run( + ["maturin", "develop", "--release"], check=True, capture_output=True, text=True + ) + + os.chdir(current_dir) + + print("Compilation successful.") + print(result.stdout) + return True + except subprocess.CalledProcessError as e: + print(f"Compilation failed with error:") + print(e.stderr) + return False + except Exception as e: + print(f"An error occurred during compilation: {e}") + return False + + +def manage_rust_compilation(): + if check_compilation_needed(): + if prompt_user_for_recompilation(): + if recompile_rust(): + print("Rust extension successfully recompiled.") + else: + print("Failed to recompile Rust extension. Please compile manually.") + sys.exit(1) + else: + print("Compilation skipped. Note that the Rust extension might be outdated.") + else: + print("Rust extension is up to date.") + + +if __name__ == "__main__": + manage_rust_compilation() + asyncio.run(main()) diff --git a/min_costs.ipynb b/src/min_costs.ipynb similarity index 100% rename from min_costs.ipynb rename to src/min_costs.ipynb diff --git a/njit_clock.py b/src/njit_clock.py similarity index 100% rename from njit_clock.py rename to src/njit_clock.py diff --git a/njit_funcs.py b/src/njit_funcs.py similarity index 99% rename from njit_funcs.py rename to src/njit_funcs.py index c1aaf5349..0a98bf2bc 100644 --- a/njit_funcs.py +++ b/src/njit_funcs.py @@ -237,6 +237,16 @@ def calc_pprice_diff(pside: str, pprice: float, price: float): raise Exception("unknown pside " + pside) +@njit +def calc_pprice_diff_int(pside: int, pprice: float, price: float): + if pside == 0: # long + return (1.0 - price / pprice) if pprice > 0.0 else 0.0 + elif pside == 1: # short + return (price / pprice - 1.0) if pprice > 0.0 else 0.0 + else: + raise ValueError("unknown pside " + str(pside)) + + @njit def calc_clock_qty( balance, diff --git a/njit_funcs_neat_grid.py b/src/njit_funcs_neat_grid.py similarity index 100% rename from njit_funcs_neat_grid.py rename to src/njit_funcs_neat_grid.py diff --git a/njit_funcs_recursive_grid.py b/src/njit_funcs_recursive_grid.py similarity index 100% rename from njit_funcs_recursive_grid.py rename to src/njit_funcs_recursive_grid.py diff --git a/njit_multisymbol.py b/src/njit_multisymbol.py similarity index 54% rename from njit_multisymbol.py rename to src/njit_multisymbol.py index 04aded883..7c4bc9b49 100644 --- a/njit_multisymbol.py +++ b/src/njit_multisymbol.py @@ -16,9 +16,17 @@ def wrap(func): else: return wrap + def prange(start, stop=None, step=1): + if stop is None: + return range(start) + return range(start, stop, step) + else: print("using numba") - from numba import njit + from numba import njit, prange as nb_prange + + prange = nb_prange + from njit_funcs import ( calc_ema, @@ -31,8 +39,10 @@ def wrap(func): calc_pnl_short, round_, round_up, + round_dn, calc_min_entry_qty, calc_bankruptcy_price, + calc_pprice_diff_int, ) from njit_funcs_recursive_grid import calc_recursive_entry_long, calc_recursive_entry_short @@ -110,7 +120,8 @@ def get_open_orders_long( cfgl[2], # auto_unstuck_qty_pct, ) if unstucking_close[0]: - closes = [unstucking_close] + closes + # closes = [unstucking_close] + closes + closes = sorted([unstucking_close] + closes, key=lambda x: x[1]) return entries, closes @@ -530,12 +541,7 @@ def backtest_multisymbol_recursive_grid( wallet_exposure = ( qty_to_cost(poss_long[i][0], poss_long[i][1], inverse, c_mults[i]) / balance ) - if ( - loss_allowance_pct > 0.0 - and wallet_exposure / ll[i][16] > stuck_threshold - and hlcs[i][k][2] < poss_long[i][1] - ): - # is stuck and not in profit + if loss_allowance_pct > 0.0 and wallet_exposure / ll[i][16] > stuck_threshold: any_stuck = True stuck_positions_long[i] = 1.0 else: @@ -587,12 +593,7 @@ def backtest_multisymbol_recursive_grid( wallet_exposure = ( qty_to_cost(poss_short[i][0], poss_short[i][1], inverse, c_mults[i]) / balance ) - if ( - loss_allowance_pct > 0.0 - and wallet_exposure / ls[i][16] > stuck_threshold - and hlcs[i][k][2] > poss_short[i][1] - ): - # is stuck and not in profit + if loss_allowance_pct > 0.0 and wallet_exposure / ls[i][16] > stuck_threshold: any_stuck = True stuck_positions_short[i] = 1.0 else: @@ -617,11 +618,13 @@ def backtest_multisymbol_recursive_grid( # find which position to unstuck # lowest pprice diff is chosen s_pside = 0 # 0==long, 1==short - s_i = 0 # index + s_i = -1 # index lowest_pprice_diff = 100.0 for i in idxs_long: if stuck_positions_long[i]: # long is stuck + if hlcs[i][k][2] > poss_long[i][1]: + continue # no unstucking if price > pprice pprice_diff = 1.0 - hlcs[i][k][2] / poss_long[i][1] if pprice_diff < lowest_pprice_diff: lowest_pprice_diff = pprice_diff @@ -630,6 +633,8 @@ def backtest_multisymbol_recursive_grid( for i in idxs_short: if stuck_positions_short[i]: # short is stuck + if hlcs[i][k][2] < poss_short[i][1]: + continue # no unstucking if price < pprice pprice_diff = hlcs[i][k][2] / poss_short[i][1] - 1.0 if pprice_diff < lowest_pprice_diff: lowest_pprice_diff = pprice_diff @@ -641,9 +646,11 @@ def backtest_multisymbol_recursive_grid( loss_allowance_pct=loss_allowance_pct, drop_since_peak_abs=(pnl_cumsum_max - pnl_cumsum_running), ) - if AU_allowance > 0.0: + if AU_allowance > 0.0 and s_i != -1: if s_pside: # short - close_price = min(hlcs[s_i][k][2], emas_short[s_i].min()) # lower ema band + close_price = min( + hlcs[s_i][k][2], round_dn(emas_short[s_i].min(), price_steps[s_i]) + ) # lower ema band upnl = calc_pnl_short( poss_short[s_i][1], hlcs[s_i][k][2], @@ -683,7 +690,9 @@ def backtest_multisymbol_recursive_grid( "unstuck_close_short", ) else: # long - close_price = max(hlcs[s_i][k][2], emas_long[s_i].max()) # upper ema band + close_price = max( + hlcs[s_i][k][2], round_up(emas_long[s_i].max(), price_steps[s_i]) + ) # upper ema band upnl = calc_pnl_long( poss_long[s_i][1], hlcs[s_i][k][2], @@ -927,116 +936,329 @@ def backtest_fast_recursive( return fills +@njit +def make_buckets(hlcs, bucket_size=15): + num_buckets = int(np.ceil(hlcs.shape[0] / bucket_size)) + bucketed = np.zeros((num_buckets, hlcs.shape[1], hlcs.shape[2])) + + for i in range(num_buckets): + start = i * bucket_size + end = (i + 1) * bucket_size + bucket = hlcs[start:end] + + for j in range(hlcs.shape[1]): + bucketed[i, j, 0] = np.max(bucket[:, j, 0]) + bucketed[i, j, 1] = np.min(bucket[:, j, 1]) + + bucketed[i, :, 2] = bucket[-1, :, 2] + + return bucketed + + +@njit +def calc_NRR(hlcs): + # returns normalized relative range + # (high - low) / close + nrr = np.zeros(hlcs.shape[:2]) + for i in range(hlcs.shape[0]): + for j in range(hlcs.shape[1]): + if hlcs[i, j][2] != 0.0: + nrr[i, j] = (hlcs[i, j][0] - hlcs[i, j][1]) / hlcs[i, j][2] + else: + nrr[i, j] = 0.0 + return nrr + + +@njit +def calc_rolling_mean(data, window=100): + """ + Calculate the rolling mean of a 1D array with a specified window size, handling cases where data + length is less than the window size. + + Args: + data (np.array): 1D numpy array of floats. + window (int): Size of the rolling window. + + Returns: + np.array: 1D array containing the rolling mean values, same length as input data. + """ + n = len(data) + result = np.empty(data.shape) + window_sums = np.zeros(data.shape[1]) + window_count = 0 + + # Initialize the sum and count for the first window + for i in range(min(window, n)): + window_sums += data[i] + window_count += 1 + result[i] = window_sums / window_count + + # Calculate rolling mean for the rest of the data + for i in range(window, n): + window_sums += data[i] - data[i - window] + result[i] = window_sums / window + + return result + + +@njit +def custom_repeat_rows(arr, n): + """ + Custom repeat function to repeat each row of a 2D array `n` times. + """ + repeated_arr = np.empty((arr.shape[0] * n, arr.shape[1]), dtype=arr.dtype) + for i in range(arr.shape[0]): + for j in range(n): + repeated_arr[i * n + j] = arr[i] + return repeated_arr + + +@njit +def repeat_elements_to_rows(arr, n): + """ + Custom repeat function to repeat each element of a 1D array `n` times into separate rows. + """ + result = np.empty((arr.shape[0], n), dtype=arr.dtype) + for i in range(arr.shape[0]): + for j in range(n): + result[i, j] = arr[i] + return result + + +@njit +def multiply_arrays(arr0, arr1): + result = np.empty((len(arr1), len(arr0))) + for i in range(len(arr1)): + for j in range(len(arr0)): + result[i, j] = arr1[i] * arr0[j] + return result + + +@njit +def calc_noisiness_argsort_indices(hlcs, bucket_size=15, rolling_window=100): + bucketed = make_buckets(hlcs, bucket_size) # bucket into bucket_size + noisiness = calc_NRR(bucketed) # compute normalized relative range for each bucket + rolling_mean = calc_rolling_mean(noisiness, rolling_window) # rolling mean + expanded = custom_repeat_rows(rolling_mean, bucket_size) # expand to same length as hlcs + # repeat first bucket as front padding + front_padding = custom_repeat_rows(expanded[:1], bucket_size) + # shift forwards, clip last buckets + shifted = np.concatenate((front_padding, expanded[:-bucket_size])) + return reverse_sorted_indices_parallel(shifted) # return reverse argsort for each timestep + + +@njit +def calc_next_ema_multiple(alphas, alphas_, emas, closes): + return multiply_arrays(alphas, closes) + alphas_ * emas + + +@njit +def prepare_emas_forager(spans_long, spans_short, hlcs_first): + """ + spans: [span0, span1] + """ + spans_long = [spans_long[0], spans_long[1], (spans_long[0] * spans_long[1]) ** 0.5] + spans_long = np.array(sorted(spans_long)) + spans_short = [spans_short[0], spans_short[1], (spans_short[0] * spans_short[1]) ** 0.5] + spans_short = np.array(sorted(spans_short)) + spans_long = np.where(spans_long < 1.0, 1.0, spans_long) + spans_short = np.where(spans_short < 1.0, 1.0, spans_short) + emas_long = repeat_elements_to_rows(hlcs_first[:, 2], 3) + emas_short = repeat_elements_to_rows(hlcs_first[:, 2], 3) + alphas_long = 2.0 / (spans_long + 1.0) + alphas__long = 1.0 - alphas_long + alphas_short = 2.0 / (spans_short + 1.0) + alphas__short = 1.0 - alphas_short + return emas_long, emas_short, alphas_long, alphas__long, alphas_short, alphas__short + + +@njit +def reverse_sorted_indices_parallel(arr): + x, y = arr.shape + sorted_indices_arr = np.empty((x, y), dtype=np.int64) + + for i in range(x): + row = arr[i, :] + indices = np.arange(y) + sorted_indices = np.empty(y, dtype=np.int64) + + # Perform reverse argsort manually to avoid overhead + for j in range(y): + for k in range(j + 1, y): + if row[indices[j]] < row[indices[k]]: + indices[j], indices[k] = indices[k], indices[j] + + sorted_indices[:] = indices + sorted_indices_arr[i, :] = sorted_indices + + return sorted_indices_arr + + +def precompute_noisiest_indices(hlcs, bucket_size=15, rolling_window=100): + noisiness = calc_noisiness(hlcs, bucket_size, rolling_window) + sorted_indices = reverse_sorted_indices_parallel(noisiness) + + +@njit def backtest_forager( hlcs, + noisiness_indices, # noisiness for all symbols, argsort for each timestep starting_balance, maker_fee, - n_longs, - n_shorts, c_mults, symbols, qty_steps, price_steps, min_costs, min_qtys, - universal_live_config, - noisiness_timeframe, + forager_live_config, ): """ hlcs contains all eligible symbols, time frame is 1m - hlcs structure: (n_minutes, n_markets, 3) - hlcs: + hlcs array shape: (n_minutes, n_markets, 3): [ [ - [sym0_high0, sym0_low0, sym0_close0], - [sym0_high1, sym0_low1, sym0_close1], - [...], + [sym0_high0, sym0_low0, sym0_close0, ...], + [sym1_high0, sym1_low0, sym1_close0, ...], + [sym2_high0, sym2_low0, sym2_close0, ...], + ... + ], + [ + [sym0_high1, sym0_low1, sym0_close1, ...], + [sym1_high1, sym1_low1, sym1_close1, ...], + [sym2_high1, sym2_low1, sym2_close1, ...], + ... ], [ - [sym1_high0, sym1_low0, sym1_close0], - [sym1_high1, sym1_low1, sym1_close1], - [...], + [sym0_high2, sym0_low2, sym0_close2, ...], + [sym1_high2, sym1_low2, sym1_close2, ...], + [sym2_high2, sym2_low2, sym2_close2, ...], + ... ], ... ] - universal config for all symbols - new positions are placed according to noisiness + noisiness is rolling mean normalized relative range [(high - low) / close] + timeframe is higher than 1m, e.g. 15m + noisiness array is shifted forwards by timeframe n, so at time step k, noisiness[k] is mean noisiness [k - n : k] + noisiness_indices is argsort for each timestep + noisiness_indices array shape: (n_minutes, n_markets): + [ + [sym0_noise0, sym1_noise0, sym2_noise0, ...], + [sym0_noise1, sym1_noise1, sym2_noise1, ...], + [sym0_noise2, sym1_noise2, sym2_noise2, ...], + ... + ] + - universal_live_config structure: + forager_live_config structure: [ [ - 0 global_TWE_long - 1 global_TWE_short - 2 global_loss_allowance_pct - 3 global_stuck_threshold - 4 global_unstuck_close_pct - ], - [ - 0 long_ddown_factor - 1 long_ema_span_0 - 2 long_ema_span_1 - 3 long_enabled - 4 long_initial_eprice_ema_dist - 5 long_initial_qty_pct - 6 long_markup_range - 7 long_min_markup - 8 long_n_close_orders - 9 long_rentry_pprice_dist - 10 long_rentry_pprice_dist_wallet_exposure_weighting - 11 long_wallet_exposure_limit + 0 long_ddown_factor, + 1 long_ema_span_0, + 2 long_ema_span_1, + 3 long_initial_eprice_ema_dist, + 4 long_initial_qty_pct, + 5 long_markup_range, + 6 long_min_markup, + 7 long_n_close_orders, + 8 long_n_positions, + 9 long_rentry_pprice_dist, + 10 long_rentry_pprice_dist_wallet_exposure_weighting, + 11 long_total_wallet_exposure_limit, + 12 long_unstuck_close_pct, + 13 long_unstuck_ema_dist, + 14 long_unstuck_loss_allowance_pct, + 15 long_unstuck_threshold, ], [ - 0 short_ddown_factor - 1 short_ema_span_0 - 2 short_ema_span_1 - 3 short_enabled - 4 short_initial_eprice_ema_dist - 5 short_initial_qty_pct - 6 short_markup_range - 7 short_min_markup - 8 short_n_close_orders - 9 short_rentry_pprice_dist - 10 short_rentry_pprice_dist_wallet_exposure_weighting - 11 short_wallet_exposure_limit - ], + 0 short_ddown_factor, + 1 short_ema_span_0, + 2 short_ema_span_1, + 3 short_initial_eprice_ema_dist, + 4 short_initial_qty_pct, + 5 short_markup_range, + 6 short_min_markup, + 7 short_n_close_orders, + 8 short_n_positions, + 9 short_rentry_pprice_dist, + 10 short_rentry_pprice_dist_wallet_exposure_weighting, + 11 short_total_wallet_exposure_limit, + 12 short_unstuck_close_pct, + 13 short_unstuck_ema_dist, + 14 short_unstuck_loss_allowance_pct, + 15 short_unstuck_threshold, ] """ + flc = forager_live_config + balance = starting_balance + inverse = False + backwards_tp = True + auto_unstuck_ema_dist = 0.0 + auto_unstuck_wallet_exposure_threshold = 0.0 + auto_unstuck_delay_minutes = 0.0 + auto_unstuck_qty_pct = 0.0 + auto_unstuck_on_timer = False + enabled_long = flc[0][8] > 0 + enabled_short = flc[1][8] > 0 + wallet_exposure_limit_long = flc[0][11] / flc[0][8] if enabled_long else 0.0 + wallet_exposure_limit_short = flc[1][11] / flc[1][8] if enabled_short else 0.0 + emas_long, emas_short, alphas_long, alphas__long, alphas_short, alphas__short = ( + prepare_emas_forager([flc[0][1], flc[0][2]], [flc[1][1], flc[1][2]], hlcs[0]) + ) - ulc = universal_live_config - spans_long = [ulc[1][1], ulc[1][2], (ulc[1][1] * ulc[1][2]) ** 0.5] - spans_long = np.array(sorted(spans_long)) - spans_short = [ulc[2][1], ulc[2][2], (ulc[2][1] * ulc[2][2]) ** 0.5] - spans_short = np.array(sorted(spans_short)) - assert max(spans_long) < len(hlcs), "ema span long larger than len(prices)" - assert max(spans_short) < len(hlcs), "ema span short larger than len(prices)" - spans_long = np.where(spans_long < 1.0, 1.0, spans_long) - spans_short = np.where(spans_short < 1.0, 1.0, spans_short) - emas_long = np.repeat(hlcs[0, :, 2][:, np.newaxis], 3, axis=1) - emas_short = np.repeat(hlcs[0, :, 2][:, np.newaxis], 3, axis=1) - alphas_long = 2.0 / (spans_long + 1.0) - alphas__long = 1.0 - alphas_long - alphas_short = 2.0 / (spans_short + 1.0) - alphas__short = 1.0 - alphas_short + assert len(symbols) == len(hlcs[0]), "length mismatch symbols, hlcs" + + positions_long = np.zeros((len(hlcs[0]), 2)) if enabled_long else np.zeros((0, 2)) + positions_short = np.zeros((len(hlcs[0]), 2)) if enabled_short else np.zeros((0, 2)) - noisiness = np.zeros(len(hlcs)) + has_pos_long = set() + has_pos_short = set() - n_empty_slots_long = n_longs - n_empty_slots_short = n_shorts + is_stuck_long = set() + is_stuck_short = set() - positions_long = np.zeros((len(hlcs[0], 2))) - positions_short = np.zeros((len(hlcs[0], 2))) + active_longs = set() + active_shorts = set() - open_orders_entry_long = [(0.0, 0.0, "") for _ in range(len(hlcs[0]))] - open_orders_entry_short = [(0.0, 0.0, "") for _ in range(len(hlcs[0]))] + open_orders_entry_long = [] + open_orders_close_long = [] + open_orders_entry_short = [] + open_orders_close_short = [] - open_orders_closes_long = [[(0.0, 0.0, "")] for _ in range(len(hlcs[0]))] - open_orders_closes_short = [[(0.0, 0.0, "")] for _ in range(len(hlcs[0]))] + unstuck_order = (0, 0, (0.0, 0.0, "")) + unstuck_closes = [(0.0, 0.0, "")] + pnl_cumsum_max = 0.0 + pnl_cumsum_running = 0.0 - fills = [ + fills = [] + stats = [ ( - 0, # index - "", # symbol + 0, # minute + positions_long.copy(), + positions_short.copy(), + hlcs[0, :, 2], # high, low, close at timestep + balance, # balance + balance, # equity + ) + ] + + ######### + # to remove:for numba type inference + has_pos_short.add(5) + has_pos_short.remove(5) + is_stuck_long.add(1) + is_stuck_long.remove(1) + is_stuck_short.add(1) + is_stuck_short.remove(1) + active_longs.add(1) + active_longs.remove(1) + active_shorts.add(1) + active_shorts.remove(1) + fills.append( + ( + 0, # index minute + "none", # symbol 0.0, # realized pnl 0.0, # fee paid 0.0, # balance after fill @@ -1045,23 +1267,365 @@ def backtest_forager( 0.0, # fill price 0.0, # psize after fill 0.0, # pprice after fill - "", # fill type + "none", # fill type 0.0, # stuckness ) - ] + ) + fills = fills[:0] + + open_orders_entry_long.append((3, [(1.0, 1.0, "none")])) + open_orders_close_long.append((3, [(1.0, 1.0, "none")])) + open_orders_entry_short.append((3, [(1.0, 1.0, "none")])) + open_orders_close_short.append((3, [(1.0, 1.0, "none")])) - for k in range(len(hlcs)): - # calc emas - emas_long = calc_ema(alphas_long, alphas__long, emas_long, hlcs[k, :, 2]) - emas_short = calc_ema(alphas_short, alphas__short, emas_short, hlcs[k, :, 2]) + open_orders_entry_long = open_orders_entry_long[:0] + open_orders_close_long = open_orders_close_long[:0] + open_orders_entry_short = open_orders_entry_short[:0] + open_orders_close_short = open_orders_close_short[:0] - # calc noisiness - # only calc noisiness if there are empty position slots - if n_empty_slots_long or n_empty_slots_short: + ####### + + for k in range(1, len(hlcs)): + any_fill = False + if enabled_long: + # calc emas + emas_long = calc_next_ema_multiple(alphas_long, alphas__long, emas_long, hlcs[k, :, 2]) + # check for fills + for idx, entries in open_orders_entry_long: + for entry in entries: + if hlcs[k][idx][1] < entry[1] and entry[0] != 0.0: + # long entry fill + any_fill = True + has_pos_long.add(idx) + fee_paid = -qty_to_cost(entry[0], entry[1], inverse, c_mults[idx]) * maker_fee + balance += fee_paid + equity = balance + calc_pnl_sum( + positions_long, positions_short, hlcs[k, :, 1], hlcs[k, :, 0], c_mults + ) + positions_long[idx][0], positions_long[idx][1] = calc_new_psize_pprice( + positions_long[idx][0], + positions_long[idx][1], + entry[0], + entry[1], + qty_steps[idx], + ) + wallet_exposure = ( + qty_to_cost( + positions_long[idx][0], positions_long[idx][1], inverse, c_mults[idx] + ) + / balance + ) + stuckness = wallet_exposure / wallet_exposure_limit_long + if flc[0][14] != 0.0 and stuckness > flc[0][15]: + is_stuck_long.add(idx) + elif idx in is_stuck_long: + is_stuck_long.remove(idx) + fills.append( + ( + k, # index minute + symbols[idx], # symbol + 0.0, # realized pnl + fee_paid, # fee paid + balance, # balance after fill + equity, # equity + entry[0], # fill qty + entry[1], # fill price + positions_long[idx][0], # psize after fill + positions_long[idx][1], # pprice after fill + entry[2], # fill type + stuckness, # stuckness + ) + ) + for idx, closes in open_orders_close_long: + for close in closes: + if close[0] == 0.0: + continue + if hlcs[k][idx][0] > close[1]: + # long close fill + any_fill = True + new_psize = round_(positions_long[idx][0] + close[0], qty_steps[idx]) + if new_psize < 0.0: + print("warning: close qty greater than psize long") + print("symbol", symbols[idx]) + print("new_psize", new_psize) + print("close order", close) + new_psize = 0.0 + close = (-positions_long[idx][0], close[1], close[2]) + fee_paid = -qty_to_cost(close[0], close[1], inverse, c_mults[idx]) * maker_fee + pnl = calc_pnl_long( + positions_long[idx][1], close[1], close[0], inverse, c_mults[idx] + ) + pnl_cumsum_running += pnl + pnl_cumsum_max = max(pnl_cumsum_max, pnl_cumsum_running) + balance += pnl + fee_paid + equity = balance + calc_pnl_sum( + positions_long, positions_short, hlcs[k, :, 1], hlcs[k, :, 0], c_mults + ) + positions_long[idx][0] = new_psize + if new_psize == 0.0: + has_pos_long.remove(idx) + positions_long[idx][1] = 0.0 + wallet_exposure = ( + qty_to_cost( + positions_long[idx][0], positions_long[idx][1], inverse, c_mults[idx] + ) + / balance + ) + stuckness = wallet_exposure / wallet_exposure_limit_long + if flc[0][14] != 0.0 and stuckness > flc[0][15]: + is_stuck_long.add(idx) + elif idx in is_stuck_long: + is_stuck_long.remove(idx) + fills.append( + ( + k, # index minute + symbols[idx], # symbol + pnl, # realized pnl + fee_paid, # fee paid + balance, # balance after fill + equity, # equity + close[0], # fill qty + close[1], # fill price + positions_long[idx][0], # psize after fill + positions_long[idx][1], # pprice after fill + close[2], # fill type + stuckness, # stuckness + ) + ) + else: + break + if enabled_short: pass + """ + emas_short = calc_next_ema_multiple( + alphas_short, alphas__short, emas_short, hlcs[k, :, 2] + ) + for ixs in is_active_short: + if hlcs[k][ixs][1] < open_orders_close_short[ixs][0][1]: + # short close fill + any_fill = True + if hlcs[k][ixs][0] > open_orders_entry_short[ixs][1]: + # short entry fill + any_fill = True + """ - # check for fills - pass - # update open orders - # record stats - pass + if any_fill: + # update unstuck order + unstuck_pside, unstuck_idx, unstuck_order = calc_unstuck_order( + c_mults, + qty_steps, + price_steps, + min_costs, + min_qtys, + flc, + wallet_exposure_limit_long, + wallet_exposure_limit_short, + balance, + pnl_cumsum_max - pnl_cumsum_running, + is_stuck_long, + is_stuck_short, + positions_long, + positions_short, + emas_long, + emas_short, + hlcs[k], + ) + # update all open orders + if enabled_long: + open_orders_entry_long = open_orders_entry_long[:0] + open_orders_close_long = open_orders_close_long[:0] + active_longs = set(has_pos_long) + if len(active_longs) < flc[0][8]: + for x in noisiness_indices[k]: + if len(active_longs) >= flc[0][8]: + break + active_longs.add(x) + for idx in active_longs: + entry = calc_recursive_entry_long( + balance, + positions_long[idx][0], + positions_long[idx][1], + hlcs[k - 1][idx][2], # close of previous candle as highest_bid + min(emas_long[idx]), + inverse, + qty_steps[idx], + price_steps[idx], + min_qtys[idx], + min_costs[idx], + c_mults[idx], + flc[0][4], + flc[0][3], + flc[0][0], + flc[0][9], + flc[0][10], + wallet_exposure_limit_long, + auto_unstuck_ema_dist, + auto_unstuck_wallet_exposure_threshold, + auto_unstuck_on_timer, + ) + open_orders_entry_long.append((idx, [entry])) + closes = [] + if unstuck_pside == 0 and unstuck_idx == idx and unstuck_order[0] != 0.0: + closes.append(unstuck_order) + psize_adj = positions_long[idx][0] + unstuck_order[0] + else: + psize_adj = positions_long[idx][0] + for close in calc_close_grid_long( + backwards_tp, + balance, + psize_adj, + positions_long[idx][1], + hlcs[k - 1][idx][2], # close of previous candle as lowest_ask + max(emas_long[idx]), + 0.0, + 0.0, + inverse, + qty_steps[idx], + price_steps[idx], + min_qtys[idx], + min_costs[idx], + c_mults[idx], + wallet_exposure_limit_long, + flc[0][6], + flc[0][5], + flc[0][7], + auto_unstuck_wallet_exposure_threshold, + auto_unstuck_ema_dist, + auto_unstuck_delay_minutes, + auto_unstuck_qty_pct, + ): + closes.append(close) + closes = [ + c for c in sorted(closes, key=lambda x: x[1]) + ] # sort ascending by price + open_orders_close_long.append((idx, closes)) + + if enabled_short: + open_orders_entry_short = open_orders_entry_short[:0] + open_orders_close_short = open_orders_close_short[:0] + # active_shorts = calc_actives(flc[1][8], has_pos_short, noisiness_indices[k]) + else: + # update only EMA based orders + if enabled_long: + if len(has_pos_long) < flc[0][8]: + # One or more empty slots; recalculate actives by noisiness + active_longs = set(has_pos_long) + for x in noisiness_indices[k]: + if len(active_longs) >= flc[0][8]: + break + active_longs.add(x) + new_open_orders_entry_long = [] + for x in open_orders_entry_long: + if x[0] in has_pos_long: + new_open_orders_entry_long.append(x) + for idx in active_longs: + if idx not in has_pos_long: + entry = calc_recursive_entry_long( + balance, + positions_long[idx][0], + positions_long[idx][1], + hlcs[k - 1][idx][2], # close of previous candle as highest_bid + min(emas_long[idx]), + inverse, + qty_steps[idx], + price_steps[idx], + min_qtys[idx], + min_costs[idx], + c_mults[idx], + flc[0][4], + flc[0][3], + flc[0][0], + flc[0][9], + flc[0][10], + wallet_exposure_limit_long, + auto_unstuck_ema_dist, + auto_unstuck_wallet_exposure_threshold, + auto_unstuck_on_timer, + ) + new_open_orders_entry_long.append((idx, [entry])) + open_orders_entry_long = new_open_orders_entry_long + if k % 60 == 0: + equity = balance + calc_pnl_sum( + positions_long, positions_short, hlcs[k, :, 1], hlcs[k, :, 0], c_mults + ) + stats.append( + ( + k, # minute + positions_long.copy(), + positions_short.copy(), + hlcs[k, :, 2], + balance, + equity, + ) + ) + + return fills, stats + + +@njit +def calc_unstuck_order( + c_mults, + qty_steps, + price_steps, + min_costs, + min_qtys, + flc, + wallet_exposure_limit_long, + wallet_exposure_limit_short, + balance, + drop_since_peak_abs, + is_stuck_long, + is_stuck_short, + positions_long, + positions_short, + emas_long, + emas_short, + hlcs_k, +) -> (int, int, (float, float, str)): + # returns (pside: int, idx: int, (qty: float, price: float, type: str)) + if not (is_stuck_long or is_stuck_short): + return (0, 0, (0.0, 0.0, "")) + inverse = False + pprice_diffs = [] + for idx in is_stuck_long: + pprice_diff = calc_pprice_diff_int(0, positions_long[idx][1], hlcs_k[idx][2]) + pprice_diffs.append((pprice_diff, 0, idx)) + for idx in is_stuck_short: + pprice_diff = calc_pprice_diff_int(1, positions_short[idx][1], hlcs_k[idx][2]) + pprice_diffs.append((pprice_diff, 1, idx)) + pprice_diff, pside, idx = sorted(pprice_diffs)[0] + AU_allowance = calc_AU_allowance( + np.array([0.0]), + balance, + loss_allowance_pct=flc[pside][14], + drop_since_peak_abs=drop_since_peak_abs, + ) + if AU_allowance <= 0.0: + return (0, 0, (0.0, 0.0, "")) + if pside == 0: + close_price = max( + hlcs_k[idx][2], round_up(max(emas_long[idx]) * (1.0 + flc[0][13]), price_steps[idx]) + ) + close_qty = -min( + positions_long[idx][0], + max( + calc_min_entry_qty( + close_price, inverse, c_mults[idx], qty_steps[idx], min_qtys[idx], min_costs[idx] + ), + cost_to_qty( + balance * wallet_exposure_limit_long * flc[0][12], + close_price, + inverse, + c_mults[idx], + ), + ), + ) + close_type = "unstuck_close_long" + else: + close_price = min( + hlcs_k[idx][2], round_dn(min(emas_short[idx]) * (1.0 - flc[1][13]), price_steps[idx]) + ) + close_qty = 0.01 + close_type = "unstuck_close_short" + + return (pside, idx, (close_qty, close_price, close_type)) diff --git a/notes_inspect_multiopt.ipynb b/src/notes_inspect_multiopt.ipynb similarity index 100% rename from notes_inspect_multiopt.ipynb rename to src/notes_inspect_multiopt.ipynb diff --git a/src/optimize.py b/src/optimize.py new file mode 100644 index 000000000..3a4f1bf1b --- /dev/null +++ b/src/optimize.py @@ -0,0 +1,442 @@ +import os +import sys +import passivbot_rust as pbr +import asyncio +import argparse +import multiprocessing +from multiprocessing import shared_memory +from backtest import ( + prepare_hlcvs_mss, + prep_backtest_args, + add_argparse_args_to_config, + calc_preferred_coins, +) +from pure_funcs import ( + get_template_live_config, + symbol_to_coin, + ts_to_date_utc, + denumpyize, + sort_dict_keys, + calc_hash, +) +from procedures import ( + make_get_filepath, + utc_ms, + load_hjson_config, + load_config, + format_config, + add_arguments_recursively, + update_config_with_args, +) +from copy import deepcopy +from main import manage_rust_compilation +import numpy as np +from uuid import uuid4 +import signal +import logging +import traceback +import json +import pprint +from deap import base, creator, tools, algorithms + + +def mutPolynomialBoundedWrapper(individual, eta, low, up, indpb): + """ + A wrapper around DEAP's mutPolynomialBounded function to pre-process + bounds and handle the case where lower and upper bounds may be equal. + + Args: + individual: Sequence individual to be mutated. + eta: Crowding degree of the mutation. + low: A value or sequence of values that is the lower bound of the search space. + up: A value or sequence of values that is the upper bound of the search space. + indpb: Independent probability for each attribute to be mutated. + + Returns: + A tuple of one individual, mutated with consideration for equal lower and upper bounds. + """ + # Convert low and up to numpy arrays for easier manipulation + low_array = np.array(low) + up_array = np.array(up) + + # Identify dimensions where lower and upper bounds are equal + equal_bounds_mask = low_array == up_array + + # Temporarily adjust bounds for those dimensions + # This adjustment is arbitrary and won't affect the outcome since the mutation + # won't be effective in these dimensions + temp_low = np.where(equal_bounds_mask, low_array - 1e-6, low_array) + temp_up = np.where(equal_bounds_mask, up_array + 1e-6, up_array) + + # Call the original mutPolynomialBounded function with the temporarily adjusted bounds + tools.mutPolynomialBounded(individual, eta, list(temp_low), list(temp_up), indpb) + + # Reset values in dimensions with originally equal bounds to ensure they remain unchanged + for i, equal in enumerate(equal_bounds_mask): + if equal: + individual[i] = low[i] + + return (individual,) + + +def cxSimulatedBinaryBoundedWrapper(ind1, ind2, eta, low, up): + """ + A wrapper around DEAP's cxSimulatedBinaryBounded function to pre-process + bounds and handle the case where lower and upper bounds are equal. + + Args: + ind1: The first individual participating in the crossover. + ind2: The second individual participating in the crossover. + eta: Crowding degree of the crossover. + low: A value or sequence of values that is the lower bound of the search space. + up: A value or sequence of values that is the upper bound of the search space. + + Returns: + A tuple of two individuals after crossover operation. + """ + # Convert low and up to numpy arrays for easier manipulation + low_array = np.array(low) + up_array = np.array(up) + + # Identify dimensions where lower and upper bounds are equal + equal_bounds_mask = low_array == up_array + + # Temporarily adjust bounds for those dimensions to prevent division by zero + # This adjustment is arbitrary and won't affect the outcome since the crossover + # won't modify these dimensions + low_array[equal_bounds_mask] -= 1e-6 + up_array[equal_bounds_mask] += 1e-6 + + # Call the original cxSimulatedBinaryBounded function with adjusted bounds + tools.cxSimulatedBinaryBounded(ind1, ind2, eta, list(low_array), list(up_array)) + + # Ensure that values in dimensions with originally equal bounds are reset + # to the bound value (since they should not be modified) + for i, equal in enumerate(equal_bounds_mask): + if equal: + ind1[i] = low[i] + ind2[i] = low[i] + + return ind1, ind2 + + +def signal_handler(signal, frame): + print("\nOptimization interrupted by user. Exiting gracefully...") + sys.exit(0) + + +def individual_to_config(individual, template=None): + if template is None: + template = get_template_live_config("v7") + config = deepcopy(template) + keys = sorted(config["bot"]["long"]) + i = 0 + for pside in ["long", "short"]: + for key in keys: + config["bot"][pside][key] = individual[i] + i += 1 + return config + + +def config_to_individual(config): + individual = [] + for pside in ["long", "short"]: + individual += [v for k, v in sorted(config["bot"][pside].items())] + return individual + + +class Evaluator: + def __init__(self, hlcs, preferred_coins, config, mss): + self.hlcs = hlcs + self.shared_hlcs = shared_memory.SharedMemory(create=True, size=self.hlcs.nbytes) + self.shared_hlcs_np = np.ndarray( + self.hlcs.shape, dtype=self.hlcs.dtype, buffer=self.shared_hlcs.buf + ) + np.copyto(self.shared_hlcs_np, self.hlcs) + del self.hlcs + + self.preferred_coins = preferred_coins + self.shared_preferred_coins = shared_memory.SharedMemory( + create=True, size=self.preferred_coins.nbytes + ) + self.shared_preferred_coins_np = np.ndarray( + self.preferred_coins.shape, + dtype=self.preferred_coins.dtype, + buffer=self.shared_preferred_coins.buf, + ) + np.copyto(self.shared_preferred_coins_np, self.preferred_coins) + del self.preferred_coins + self.config = config + + _, self.exchange_params, self.backtest_params = prep_backtest_args(config, mss) + + def evaluate(self, individual): + config = individual_to_config(individual, template=self.config) + bot_params, _, _ = prep_backtest_args( + config, [], exchange_params=self.exchange_params, backtest_params=self.backtest_params + ) + fills, equities, analysis = pbr.run_backtest( + self.shared_hlcs_np, + self.shared_preferred_coins_np, + bot_params, + self.exchange_params, + self.backtest_params, + ) + w_0, w_1 = self.calc_fitness(analysis) + analysis.update({"w_0": w_0, "w_1": w_1}) + with open(self.config["results_filename"], "a") as f: + f.write(json.dumps(denumpyize({"analysis": analysis, "config": config})) + "\n") + return w_0, w_1 + + def calc_fitness(self, analysis): + modifier = 0.0 + for i, key in [ + (4, "drawdown_worst"), + (3, "equity_balance_diff_mean"), + (2, "loss_profit_ratio"), + ]: + modifier += ( + max(self.config["optimize"]["limits"][f"lower_bound_{key}"], analysis[key]) + - self.config["optimize"]["limits"][f"lower_bound_{key}"] + ) * 10**i + if analysis["drawdown_worst"] >= 1.0 or analysis["equity_balance_diff_max"] < 0.1: + w_0 = w_1 = modifier + else: + w_0 = modifier - analysis[self.config["optimize"]["scoring"][0]] + w_1 = modifier - analysis[self.config["optimize"]["scoring"][1]] + return w_0, w_1 + + def cleanup(self): + # Close and unlink the shared memory + self.shared_hlcs.close() + self.shared_hlcs.unlink() + self.shared_preferred_coins.close() + self.shared_preferred_coins.unlink() + + +def add_argparse_args_optimize(parser): + parser_items = [ + ("s", "symbols", "symbols", str, ", comma separated (SYM1USDT,SYM2USDT,...)"), + ("e", "exchange", "exchange", str, ""), + ("sd", "start_date", "start_date", str, ""), + ( + "ed", + "end_date", + "end_date", + str, + ", if end date is 'now', will use current date as end date", + ), + ("sb", "starting_balance", "starting_balance", float, ""), + ("bd", "base_dir", "base_dir", str, ""), + ("c", "n_cpus", "n_cpus", int, ""), + ("i", "iters", "iters", int, ""), + ("p", "population_size", "population_size", int, ""), + ] + template = get_template_live_config("v7") + shortened_already_added = set([x[0] for x in parser_items]) + for key in list(template["optimize"]["bounds"]) + list(template["optimize"]["limits"]): + shortened = "".join([x[0] for x in key.split("_")]) + if shortened in shortened_already_added: + for i in range(100): + shortened = "".join([x[0] for x in key.split("_")]) + str(i) + if shortened not in shortened_already_added: + break + else: + raise Exception(f"too many duplicates of shortened key {key}") + parser_items.append((shortened, key, key, float, ", fixing optimizing bounds")) + shortened_already_added.add(shortened) + for k0, k1, d, t, h in parser_items: + parser.add_argument( + *[f"-{k0}", f"--{k1}"] + ([f"--{k1.replace('_', '-')}"] if "_" in k1 else []), + type=t, + required=False, + dest=d, + default=None, + help=f"specify {k1}{h}, overriding value from config.", + ) + parser.add_argument( + "-t", + "--start", + type=str, + required=False, + dest="starting_configs", + default=None, + help="start with given live configs. single json file or dir with multiple json files", + ) + args = parser.parse_args() + return args + + +def get_starting_configs(starting_configs: str): + if starting_configs is None: + return [] + cfgs = [] + if os.path.isdir(starting_configs): + filenames = [os.path.join(starting_configs, f) for f in os.listdir(starting_configs)] + else: + filenames = [starting_configs] + for path in filenames: + try: + cfgs.append(load_hjson_config(path)) + except Exception as e: + logging.error(f"failed to load live config {path} {e}") + return cfgs + + +def configs_to_individuals(cfgs): + inds = {} + for cfg in cfgs: + try: + individual = config_to_individual(format_config(cfg, verbose=False)) + inds[calc_hash(individual)] = individual + except Exception as e: + logging.error(f"error with config_to_individual {e}") + return list(inds.values()) + + +async def main(): + manage_rust_compilation() + parser = argparse.ArgumentParser(prog="optimize", description="run forager optimizer") + parser.add_argument( + "config_path", type=str, default=None, nargs="?", help="path to json passivbot config" + ) + # add_arguments_recursively(parser, get_template_live_config("v7")) + # args = parser.parse_args() + args = add_argparse_args_optimize(parser) + signal.signal(signal.SIGINT, signal_handler) + logging.basicConfig( + format="%(asctime)s %(levelname)-8s %(message)s", + level=logging.INFO, + datefmt="%Y-%m-%dT%H:%M:%S", + ) + if args.config_path is None: + logging.info(f"loading default template config configs/template.json") + config = load_config("configs/template.json") + else: + logging.info(f"loading config {args.config_path}") + config = load_config(args.config_path) + config = add_argparse_args_to_config(config, args) + symbols, hlcvs, mss, results_path = await prepare_hlcvs_mss(config) + config["backtest"]["symbols"] = symbols + preferred_coins = calc_preferred_coins(hlcvs, config) + hlcs = hlcvs[:, :, :3] + date_fname = ts_to_date_utc(utc_ms())[:19].replace(":", "_") + coins = [symbol_to_coin(s) for s in config["backtest"]["symbols"]] + coins_fname = "_".join(coins) if len(coins) <= 6 else f"{len(coins)}_coins" + hash_snippet = uuid4().hex[:8] + config["results_filename"] = make_get_filepath( + f"opt_results_forager/{date_fname}_{coins_fname}_{hash_snippet}_all_results.txt" + ) + try: + evaluator = Evaluator(hlcs, preferred_coins, config, mss) + creator.create("FitnessMulti", base.Fitness, weights=(-1.0, -1.0)) # Minimize both objectives + creator.create("Individual", list, fitness=creator.FitnessMulti) + + toolbox = base.Toolbox() + + # Define parameter bounds + param_bounds = sort_dict_keys(config["optimize"]["bounds"]) + param_bounds = sort_dict_keys(config["optimize"]["bounds"]) + + # Register attribute generators + for i, (param_name, (low, high)) in enumerate(param_bounds.items()): + toolbox.register(f"attr_{i}", np.random.uniform, low, high) + + def create_individual(): + return creator.Individual( + [getattr(toolbox, f"attr_{i}")() for i in range(len(param_bounds))] + ) + + toolbox.register("individual", create_individual) + toolbox.register("population", tools.initRepeat, list, toolbox.individual) + + # Register the evaluation function + toolbox.register("evaluate", evaluator.evaluate) + + # Register genetic operators + toolbox.register( + "mate", + cxSimulatedBinaryBoundedWrapper, + eta=20.0, + low=[low for low, high in param_bounds.values()], + up=[high for low, high in param_bounds.values()], + ) + toolbox.register( + "mutate", + mutPolynomialBoundedWrapper, + eta=20.0, + low=[low for low, high in param_bounds.values()], + up=[high for low, high in param_bounds.values()], + indpb=1.0 / len(param_bounds), + ) + toolbox.register("select", tools.selNSGA2) + + # Parallelization setup + pool = multiprocessing.Pool(processes=config["optimize"]["n_cpus"]) + toolbox.register("map", pool.map) + + # Create initial population + + starting_individuals = configs_to_individuals(get_starting_configs(args.starting_configs)) + if len(starting_individuals) > config["optimize"]["population_size"]: + logging.info( + f"increasing population size: {config['optimize']['population_size']} -> {len(starting_individuals)}" + ) + config["optimize"]["population_size"] = len(starting_individuals) + + population = toolbox.population(n=config["optimize"]["population_size"]) + if starting_individuals: + bounds = [(low, high) for low, high in param_bounds.values()] + for i in range(len(starting_individuals)): + adjusted = [ + max(min(x, bounds[z][1]), bounds[z][0]) + for z, x in enumerate(starting_individuals[i]) + ] + population[i] = creator.Individual(adjusted) + + logging.info(f"Initial population size: {len(population)}") + + # Set up statistics and hall of fame + stats = tools.Statistics(lambda ind: ind.fitness.values) + stats.register("avg", np.mean, axis=0) + stats.register("std", np.std, axis=0) + stats.register("min", np.min, axis=0) + stats.register("max", np.max, axis=0) + + logbook = tools.Logbook() + logbook.header = "gen", "evals", "std", "min", "avg", "max" + + hof = tools.ParetoFront() + + # Run the optimization + population, logbook = algorithms.eaMuPlusLambda( + population, + toolbox, + mu=config["optimize"]["population_size"], + lambda_=config["optimize"]["population_size"], + cxpb=config["optimize"]["crossover_probability"], + mutpb=config["optimize"]["mutation_probability"], + ngen=max(1, int(config["optimize"]["iters"] / len(population))), + stats=stats, + halloffame=hof, + verbose=True, + ) + + # Print statistics + print(logbook) + + logging.info(f"Optimization complete.") + ######## + except Exception as e: + traceback.print_exc() + finally: + # Close the pool + logging.info(f"attempting clean shutdown...") + evaluator.cleanup() + sys.exit(0) + # pool.close() + # pool.join() + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/src/passivbot.py b/src/passivbot.py new file mode 100644 index 000000000..cf771c2d2 --- /dev/null +++ b/src/passivbot.py @@ -0,0 +1,2195 @@ +import os + +if "NOJIT" not in os.environ: + os.environ["NOJIT"] = "true" + +import traceback +import argparse +import asyncio +import json +import sys +import signal +import hjson +import pprint +import numpy as np +import inspect +import passivbot_rust as pbr +import logging +from prettytable import PrettyTable +from uuid import uuid4 +from copy import deepcopy +from collections import defaultdict +from sortedcontainers import SortedDict + +from procedures import ( + load_broker_code, + load_user_info, + utc_ms, + make_get_filepath, + get_file_mod_utc, + get_first_ohlcv_timestamps, + load_config, +) +from njit_funcs_recursive_grid import calc_recursive_entries_long, calc_recursive_entries_short +from njit_funcs import ( + calc_samples, + calc_emas_last, + calc_ema, + calc_close_grid_long, + calc_close_grid_short, + calc_diff, + qty_to_cost, + cost_to_qty, + calc_min_entry_qty, + round_, + round_up, + round_dn, + round_dynamic, + calc_pnl, + calc_pnl_long, + calc_pnl_short, + calc_pprice_diff, +) +from njit_multisymbol import calc_AU_allowance +from pure_funcs import ( + numpyize, + denumpyize, + filter_orders, + multi_replace, + shorten_custom_id, + determine_side_from_order_tuple, + str2bool, + symbol_to_coin, + add_missing_params_to_hjson_live_multi_config, + expand_PB_mode, + ts_to_date_utc, +) + + +logging.basicConfig( + format="%(asctime)s %(levelname)-8s %(message)s", + level=logging.INFO, + datefmt="%Y-%m-%dT%H:%M:%S", +) + + +def signal_handler(sig, frame): + print("\nReceived shutdown signal. Stopping bot...") + if "bot" in globals(): + bot.stop_signal_received = True + else: + sys.exit(0) + + +signal.signal(signal.SIGINT, signal_handler) + + +def get_function_name(): + return inspect.currentframe().f_back.f_code.co_name + + +def or_default(f, *args, default=None, **kwargs): + try: + return f(*args, **kwargs) + except: + return default + + +class Passivbot: + def __init__(self, config: dict): + self.config = config + self.user = config["live"]["user"] + self.user_info = load_user_info(self.user) + self.exchange = self.user_info["exchange"] + self.broker_code = load_broker_code(self.user_info["exchange"]) + self.custom_id_max_length = 36 + self.sym_padding = 17 + self.stop_websocket = False + self.balance = 1e-12 + self.upd_timestamps = { + "pnls": 0.0, + "open_orders": 0.0, + "positions": 0.0, + } + self.hedge_mode = True + self.inverse = False + self.active_symbols = [] + self.fetched_positions = [] + self.fetched_open_orders = [] + self.open_orders = {} + self.positions = {} + self.pnls = [] + self.symbol_ids = {} + self.min_costs = {} + self.min_qtys = {} + self.qty_steps = {} + self.price_steps = {} + self.c_mults = {} + self.max_leverage = {} + self.live_configs = {} + self.pnls_cache_filepath = make_get_filepath(f"caches/{self.exchange}/{self.user}_pnls.json") + self.ohlcvs_1m_cache_dirpath = make_get_filepath(f"caches/{self.exchange}/ohlcvs_1m/") + self.previous_REST_update_ts = 0 + self.recent_fill = False + self.execution_delay_millis = max( + 3000.0, self.config["live"]["execution_delay_seconds"] * 1000 + ) + self.quote = "USDT" + self.forager_mode = self.is_forager_mode() + + self.minimum_market_age_millis = ( + self.config["live"]["minimum_coin_age_days"] * 24 * 60 * 60 * 1000 + ) + self.emas = {"long": {}, "short": {}} + self.ema_alphas = {"long": {}, "short": {}} + self.upd_minute_emas = {} + self.ineligible_symbols_with_pos = set() + self.ohlcvs_1m_max_age_minutes = 10 + self.ohlcvs_1m_max_len = 10080 + self.ohlcvs_1m_max_age_days = 7 + self.n_symbols_missing_ohlcvs_1m = 1000 + self.ohlcvs_1m_update_timestamps = {} + self.max_n_concurrent_ohlcvs_1m_updates = 3 + self.stop_signal_received = False + self.ohlcvs_1m_update_timestamps_WS = {} + + async def update_market_info(self): + logging.info(f"initiating markets...") + await self.init_markets_dict() + + async def run_execution_loop(self): + while not self.stop_signal_received: + try: + now = utc_ms() + if now - self.previous_REST_update_ts > 1000 * 60: + self.previous_REST_update_ts = utc_ms() + await self.prepare_for_execution() + await self.execute_to_exchange() + await asyncio.sleep( + max(0.0, self.config["live"]["execution_delay_seconds"] - (utc_ms() - now) / 1000) + ) + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + await asyncio.sleep(1.0) + + async def prepare_for_execution(self): + await asyncio.gather( + self.update_open_orders(), + self.update_positions(), + self.update_pnls(), + ) + await self.update_ohlcvs_1m_for_actives() + + async def execute_to_exchange(self, debug_mode=False): + self.update_effective_min_cost() + self.update_PB_modes() + self.update_EMAs() + await self.update_exchange_configs() + to_cancel, to_create = self.calc_orders_to_cancel_and_create() + + # debug duplicates + seen = set() + for elm in to_cancel: + key = str(elm["price"]) + str(elm["qty"]) + if key in seen: + logging.info(f"debug duplicate order cancel {elm}") + seen.add(key) + + seen = set() + for elm in to_create: + key = str(elm["price"]) + str(elm["qty"]) + if key in seen: + logging.info(f"debug duplicate order create {elm}") + seen.add(key) + + # format custom_id + to_create = self.format_custom_ids(to_create) + if debug_mode: + if to_cancel: + print("would cancel:") + for x in to_cancel[: self.config["live"]["max_n_cancellations_per_batch"]]: + pprint.pprint(x) + else: + res = await self.execute_cancellations( + to_cancel[: self.config["live"]["max_n_cancellations_per_batch"]] + ) + if res: + for elm in res: + self.remove_cancelled_order(elm, source="POST") + if debug_mode: + if to_create: + print("would create:") + for x in to_create[: self.config["live"]["max_n_creations_per_batch"]]: + pprint.pprint(x) + else: + res = await self.execute_orders( + to_create[: self.config["live"]["max_n_creations_per_batch"]] + ) + if res: + for elm in res: + self.add_new_order(elm, source="POST") + if to_cancel or to_create: + self.previous_REST_update_ts = 0 + + def is_forager_mode(self): + n_approved_symbols = len(self.config["live"]["approved_coins"]) + if n_approved_symbols == 0: + return True + if ( + self.config["bot"]["long"]["total_wallet_exposure_limit"] > 0.0 + and self.config["bot"]["long"]["n_positions"] > 0 + and round(self.config["bot"]["long"]["n_positions"]) < n_approved_symbols + ): + return True + if ( + self.config["bot"]["short"]["total_wallet_exposure_limit"] > 0.0 + and self.config["bot"]["short"]["n_positions"] > 0 + and round(self.config["bot"]["short"]["n_positions"]) < n_approved_symbols + ): + return True + return False + + def set_live_configs(self): + skip = {"n_positions", "total_wallet_exposure_limit"} + self.config["bot"]["long"]["n_positions"] = round(self.config["bot"]["long"]["n_positions"]) + self.config["bot"]["short"]["n_positions"] = round(self.config["bot"]["short"]["n_positions"]) + for symbol in self.markets_dict: + self.live_configs[symbol] = deepcopy(self.config["bot"]) + self.live_configs[symbol]["leverage"] = self.config["live"]["leverage"] + for pside in ["long", "short"]: + self.live_configs[symbol][pside]["wallet_exposure_limit"] = ( + pbr.round_( + self.live_configs[symbol][pside]["total_wallet_exposure_limit"] + / self.live_configs[symbol][pside]["n_positions"], + 0.0001, + ) + if self.live_configs[symbol][pside]["n_positions"] > 0 + else 0.0 + ) + if symbol in self.flags and self.flags[symbol].live_config_path is not None: + try: + loaded = load_config(self.flags[symbol].live_config_path) + for pside in loaded["bot"]: + for k, v in loaded["bot"][pside].items(): + if k not in skip: + self.live_configs[symbol][pside][k] = v + except Exception as e: + logging.error( + f"failed to load config {self.flags[symbol].live_config_path} for {symbol} {e}. Using default config." + ) + + def pad_sym(self, symbol): + return f"{symbol: <{self.sym_padding}}" + + def stop_data_maintainers(self): + if not hasattr(self, "maintainers"): + return + res = {} + for key in self.maintainers: + try: + res[key] = self.maintainers[key].cancel() + except Exception as e: + logging.error(f"error stopping maintainer {key} {e}") + if hasattr(self, "WS_ohlcvs_1m_tasks"): + res0s = {} + for key in self.WS_ohlcvs_1m_tasks: + try: + res0 = self.WS_ohlcvs_1m_tasks[key].cancel() + res0s[key] = res0 + except Exception as e: + logging.error(f"error stopping WS_ohlcvs_1m_tasks {key} {e}") + if res0s: + logging.info(f"stopped ohlcvs watcher tasks {res0s}") + logging.info(f"stopped data maintainers: {res}") + return res + + def has_position(self, symbol, pside=None): + if pside is None: + return self.has_position(symbol, "long") or self.has_position(symbol, "short") + return symbol in self.positions and self.positions[symbol][pside]["size"] != 0.0 + + def is_trailing(self, symbol, pside=None): + if pside is None: + return self.is_trailing(symbol, "long") or self.is_trailing(symbol, "short") + return symbol in self.live_configs and any( + [ + self.live_configs[symbol][pside][f"{x}_trailing_grid_ratio"] != 0.0 + for x in ["entry", "close"] + ] + ) + + def get_last_position_changes(self, symbol=None): + last_position_changes = defaultdict(dict) + for symbol in self.positions: + for pside in ["long", "short"]: + if self.has_position(symbol, pside) and self.is_trailing(symbol, pside): + last_position_changes[symbol][pside] = utc_ms() - 1000 * 60 * 60 * 24 * 7 + for fill in self.pnls[::-1]: + if fill["symbol"] == symbol and fill["position_side"] == pside: + last_position_changes[symbol][pside] = fill["timestamp"] + break + return last_position_changes + + async def wait_for_ohlcvs_1m_to_update(self): + await asyncio.sleep(1.0) + prev_print_ts = utc_ms() - 5000.0 + while self.n_symbols_missing_ohlcvs_1m > self.max_n_concurrent_ohlcvs_1m_updates - 1: + if utc_ms() - prev_print_ts > 1000 * 10: + logging.info( + f"Waiting for ohlcvs to be refreshed. Number of symbols with " + f"out-of-date ohlcvs: {self.n_symbols_missing_ohlcvs_1m}" + ) + prev_print_ts = utc_ms() + await asyncio.sleep(0.1) + + def get_ohlcvs_1m_filepath(self, symbol): + try: + return self.ohlcvs_1m_filepaths[symbol] + except: + if not hasattr(self, "filepath"): + self.ohlcvs_1m_filepaths = {} + filepath = f"{self.ohlcvs_1m_cache_dirpath}{symbol_to_coin(symbol)}.npy" + self.ohlcvs_1m_filepaths[symbol] = filepath + return filepath + + def trim_ohlcvs_1m(self, symbol): + try: + if not hasattr(self, "ohlcvs_1m"): + return + if symbol not in self.ohlcvs_1m: + return + age_limit = self.get_exchange_time() - 1000 * 60 * 60 * 24 * self.ohlcvs_1m_max_age_days + for i in range(len(self.ohlcvs_1m[symbol])): + ts = self.ohlcvs_1m[symbol].peekitem(0)[0] + if ts < age_limit: + del self.ohlcvs_1m[symbol][ts] + else: + break + return True + except Exception as e: + logging.error(f"error with {get_function_name()} {symbol} {e}") + traceback.print_exc() + return False + + def dump_ohlcvs_1m_to_cache(self, symbol): + try: + self.trim_ohlcvs_1m(symbol) + to_dump = np.array([x for x in self.ohlcvs_1m[symbol].values()]) + np.save(self.get_ohlcvs_1m_filepath(symbol), to_dump) + return True + except Exception as e: + logging.error(f"error with {get_function_name()} for {symbol}: {e}") + traceback.print_exc() + return False + + def update_trailing_data(self): + if not hasattr(self, "trailing_prices"): + self.trailing_prices = {} + last_position_changes = self.get_last_position_changes() + symbols = set(self.trailing_prices) | set(last_position_changes) | set(self.active_symbols) + for symbol in symbols: + self.trailing_prices[symbol] = { + "long": { + "max_since_open": 0.0, + "min_since_max": np.inf, + "min_since_open": np.inf, + "max_since_min": 0.0, + }, + "short": { + "max_since_open": 0.0, + "min_since_max": np.inf, + "min_since_open": np.inf, + "max_since_min": 0.0, + }, + } + if symbol not in last_position_changes: + continue + for pside in last_position_changes[symbol]: + if symbol not in self.ohlcvs_1m: + logging.info(f"debug: {symbol} missing from self.ohlcvs_1m") + continue + for ts in self.ohlcvs_1m[symbol]: + if ts <= last_position_changes[symbol][pside]: + continue + x = self.ohlcvs_1m[symbol][ts] + if x[2] > self.trailing_prices[symbol][pside]["max_since_open"]: + self.trailing_prices[symbol][pside]["max_since_open"] = x[2] + self.trailing_prices[symbol][pside]["min_since_max"] = x[4] + else: + self.trailing_prices[symbol][pside]["min_since_max"] = min( + self.trailing_prices[symbol][pside]["min_since_max"], x[3] + ) + if x[3] < self.trailing_prices[symbol][pside]["min_since_open"]: + self.trailing_prices[symbol][pside]["min_since_open"] = x[3] + self.trailing_prices[symbol][pside]["max_since_min"] = x[4] + else: + self.trailing_prices[symbol][pside]["max_since_min"] = max( + self.trailing_prices[symbol][pside]["max_since_min"], x[2] + ) + + async def get_active_symbols(self): + # get symbols with open orders and/or positions + positions, balance = await self.fetch_positions() + open_orders = await self.fetch_open_orders() + return sorted(set([elm["symbol"] for elm in positions + open_orders])) + + def format_symbol(self, symbol: str) -> str: + try: + return self.formatted_symbols_map[symbol] + except (KeyError, AttributeError): + pass + if not hasattr(self, "formatted_symbols_map"): + self.formatted_symbols_map = {} + self.formatted_symbols_map_inv = defaultdict(set) + formatted = f"{symbol_to_coin(symbol.replace(',', ''))}/{self.quote}:{self.quote}" + self.formatted_symbols_map[symbol] = formatted + self.formatted_symbols_map_inv[formatted].add(symbol) + return formatted + + def symbol_is_eligible(self, symbol): + # defined for each child class + return True + + async def init_markets_dict(self, verbose=True): + await self.update_exchange_config() + self.init_markets_last_update_ms = utc_ms() + self.markets_dict = {elm["symbol"]: elm for elm in (await self.cca.fetch_markets())} + await self.determine_utc_offset(verbose) + self.markets_dict_all = deepcopy(self.markets_dict) + # remove ineligible symbols from markets dict + ineligible_symbols = {} + for symbol in list(self.markets_dict): + if not self.markets_dict[symbol]["active"]: + ineligible_symbols[symbol] = "not active" + del self.markets_dict[symbol] + elif not self.markets_dict[symbol]["swap"]: + ineligible_symbols[symbol] = "wrong market type" + del self.markets_dict[symbol] + elif not self.markets_dict[symbol]["linear"]: + ineligible_symbols[symbol] = "not linear" + del self.markets_dict[symbol] + elif not symbol.endswith(f"/{self.quote}:{self.quote}"): + ineligible_symbols[symbol] = "wrong quote" + del self.markets_dict[symbol] + elif not self.symbol_is_eligible(symbol): + ineligible_symbols[symbol] = f"not eligible on {self.exchange}" + del self.markets_dict[symbol] + elif not self.symbol_is_eligible(symbol): + ineligible_symbols[symbol] = f"not eligible on {self.exchange}" + del self.markets_dict[symbol] + if verbose: + for line in set(ineligible_symbols.values()): + syms_ = [s for s in ineligible_symbols if ineligible_symbols[s] == line] + if len(syms_) > 12: + logging.info(f"{line}: {len(syms_)} symbols") + elif len(syms_) > 0: + logging.info(f"{line}: {','.join(sorted(set([s for s in syms_])))}") + + for symbol in self.ineligible_symbols_with_pos: + if symbol not in self.markets_dict and symbol in self.markets_dict_all: + logging.info(f"There is a position in an ineligible market: {symbol}.") + self.markets_dict[symbol] = self.markets_dict_all[symbol] + self.config["live"]["ignored_coins"].append(symbol) + + self.set_market_specific_settings() + for symbol in self.markets_dict: + self.format_symbol(symbol) + # for prettier printing + self.max_len_symbol = max([len(s) for s in self.markets_dict]) + self.sym_padding = max(self.sym_padding, self.max_len_symbol + 1) + await self.init_flags() + self.set_live_configs() + + def set_market_specific_settings(self): + # set min cost, min qty, price step, qty step, c_mult + # defined individually for each exchange + self.symbol_ids = {symbol: self.markets_dict[symbol]["id"] for symbol in self.markets_dict} + self.symbol_ids_inv = {v: k for k, v in self.symbol_ids.items()} + + def get_symbol_id(self, symbol): + try: + return self.symbol_ids[symbol] + except: + logging.error(f"symbol {symbol} missing from self.symbol_ids. Using {symbol}") + return symbol + + def get_symbol_id_inv(self, symbol): + try: + return self.symbol_ids_inv[symbol] + except: + logging.error(f"symbol {symbol} missing from self.symbol_ids_inv. Using {symbol}") + return symbol + + def set_wallet_exposure_limits(self): + for pside in ["long", "short"]: + changed = {} + n_actives = max(len(self.is_active[pside]), self.config["bot"][pside]["n_positions"]) + WE_limit_div = pbr.round_( + ( + self.config["bot"][pside]["total_wallet_exposure_limit"] / n_actives + if n_actives > 0 + else 0.001 + ), + 0.0001, + ) + for symbol in self.is_active[pside]: + new_WE_limit = ( + getattr(self.flags[symbol], f"WE_limit_{pside}") + if symbol in self.flags + and getattr(self.flags[symbol], f"WE_limit_{pside}") is not None + else WE_limit_div + ) + if "wallet_exposure_limit" not in self.live_configs[symbol][pside]: + changed[symbol] = (0.0, new_WE_limit) + elif self.live_configs[symbol][pside]["wallet_exposure_limit"] != new_WE_limit: + changed[symbol] = ( + self.live_configs[symbol][pside]["wallet_exposure_limit"], + new_WE_limit, + ) + self.live_configs[symbol][pside]["wallet_exposure_limit"] = new_WE_limit + if changed: + inv = defaultdict(set) + for symbol in changed: + inv[changed[symbol]].add(symbol) + for k, v in inv.items(): + syms = ", ".join(sorted([symbol_to_coin(s) for s in v])) + logging.info(f"changed {pside} WE limit from {k[0]} to {k[1]} for {syms}") + + async def update_exchange_configs(self): + if not hasattr(self, "already_updated_exchange_config_symbols"): + self.already_updated_exchange_config_symbols = set() + symbols_not_done = [ + x for x in self.active_symbols if x not in self.already_updated_exchange_config_symbols + ] + if symbols_not_done: + await self.update_exchange_config_by_symbols(symbols_not_done) + self.already_updated_exchange_config_symbols.update(symbols_not_done) + + async def update_exchange_config_by_symbols(self, symbols): + # defined by each exchange child class + pass + + async def update_exchange_config(self): + # defined by each exchange child class + pass + + def reformat_symbol(self, symbol: str, verbose=False) -> str: + # tries to reformat symbol to correct variant for exchange + # (e.g. BONK -> 1000BONK/USDT:USDT, PEPE - kPEPE/USDC:USDC) + # if no reformatting is possible, return empty string + fsymbol = self.format_symbol(symbol) + if fsymbol in self.markets_dict: + return fsymbol + else: + if verbose: + logging.info(f"{symbol} missing from {self.exchange}") + if fsymbol in self.formatted_symbols_map_inv: + for x in self.formatted_symbols_map_inv[fsymbol]: + if x in self.markets_dict: + if verbose: + logging.info(f"changing {symbol} -> {x}") + return x + return "" + + async def init_flags(self): + self.ignored_coins = set() + for x in self.config["live"]["ignored_coins"]: + if xr := self.reformat_symbol(x): + self.ignored_coins.add(xr) + + self.flags = {} + for k, v in self.config["live"]["coin_flags"].items(): + if kr := self.reformat_symbol(k): + logging.info(f"setting flag for {kr}: {v}") + self.flags[kr] = v + + self.eligible_symbols = set() # symbols which may be approved for trading + if self.config["live"]["approved_coins"]: + for symbol in self.config["live"]["approved_coins"]: + if rs := self.reformat_symbol(symbol, verbose=True): + self.eligible_symbols.add(rs) + else: + self.eligible_symbols = set(self.markets_dict) + + # this argparser is used only internally + parser = argparse.ArgumentParser(prog="passivbot", description="run passivbot") + parser.add_argument( + "-sm", type=expand_PB_mode, required=False, dest="short_mode", default=None + ) + parser.add_argument( + "-lm", type=expand_PB_mode, required=False, dest="long_mode", default=None + ) + parser.add_argument("-lw", type=float, required=False, dest="WE_limit_long", default=None) + parser.add_argument("-sw", type=float, required=False, dest="WE_limit_short", default=None) + parser.add_argument("-lev", type=float, required=False, dest="leverage", default=None) + parser.add_argument("-lc", type=str, required=False, dest="live_config_path", default=None) + self.forced_modes = {"long": {}, "short": {}} + for symbol in self.markets_dict: + self.flags[symbol] = parser.parse_args( + self.flags[symbol].split() if symbol in self.flags else [] + ) + for pside in ["long", "short"]: + if (mode := getattr(self.flags[symbol], f"{pside}_mode")) is None: + if symbol in self.ignored_coins: + setattr( + self.flags[symbol], + f"{pside}_mode", + "graceful_stop" if self.config["live"]["auto_gs"] else "manual", + ) + self.forced_modes[pside][symbol] = getattr( + self.flags[symbol], f"{pside}_mode" + ) + elif self.config["live"][f"forced_mode_{pside}"]: + try: + setattr( + self.flags[symbol], + f"{pside}_mode", + expand_PB_mode(self.config["live"][f"forced_mode_{pside}"]), + ) + self.forced_modes[pside][symbol] = getattr( + self.flags[symbol], f"{pside}_mode" + ) + except Exception as e: + logging.error( + f"failed to set PB mode {self.config['live'][f'forced_mode_{pside}']} {e}" + ) + else: + self.forced_modes[pside][symbol] = mode + if not self.markets_dict[symbol]["active"]: + self.forced_modes[pside][symbol] = "tp_only" + + if self.forager_mode and self.minimum_market_age_millis > 0: + if not hasattr(self, "first_timestamps"): + self.first_timestamps = await get_first_ohlcv_timestamps( + cc=self.cca, symbols=sorted(self.eligible_symbols) + ) + for symbol in sorted(self.first_timestamps): + self.first_timestamps[self.format_symbol(symbol)] = self.first_timestamps[symbol] + else: + self.first_timestamps = None + + def is_old_enough(self, symbol): + if self.forager_mode and self.minimum_market_age_millis > 0: + if symbol in self.first_timestamps: + return utc_ms() - self.first_timestamps[symbol] > self.minimum_market_age_millis + else: + return False + else: + return True + + def update_PB_modes(self): + # update passivbot modes for all symbols + if hasattr(self, "PB_modes"): + previous_PB_modes = deepcopy(self.PB_modes) + else: + previous_PB_modes = None + + # set modes for all symbols + self.PB_modes = { + "long": {}, + "short": {}, + } # options: normal, graceful_stop, manual, tp_only, panic + self.actual_actives = {"long": set(), "short": set()} # symbols with position + self.is_active = {"long": set(), "short": set()} # actual actives plus symbols on "normal"" + self.ideal_actives = {"long": {}, "short": {}} # dicts as ordered sets + + # actual actives, symbols with pos and/or open orders + for elm in self.fetched_positions + self.fetched_open_orders: + self.actual_actives[elm["position_side"]].add(elm["symbol"]) + + # find ideal actives + # set forced modes first + for pside in self.forced_modes: + for symbol in self.forced_modes[pside]: + if self.forced_modes[pside][symbol] == "normal": + self.PB_modes[pside][symbol] = self.forced_modes[pside][symbol] + self.ideal_actives[pside][symbol] = "" + if symbol in self.actual_actives[pside]: + self.PB_modes[pside][symbol] = self.forced_modes[pside][symbol] + if self.forager_mode: + if self.config["live"]["relative_volume_filter_clip_pct"] > 0.0: + self.calc_volumes() + # filter by relative volume + eligible_symbols = sorted(self.volumes, key=lambda x: self.volumes[x])[ + int( + round( + len(self.volumes) * self.config["live"]["relative_volume_filter_clip_pct"] + ) + ) : + ] + else: + eligible_symbols = list(self.eligible_symbols) + self.calc_noisiness() # ideal symbols are high noise symbols + + # calc ideal actives for long and short separately + for pside in self.actual_actives: + if self.config["bot"][pside]["n_positions"] > 0: + self.warn_on_high_effective_min_cost(pside) + for symbol in sorted(eligible_symbols, key=lambda x: self.noisiness[x], reverse=True): + if ( + symbol not in self.eligible_symbols + or not self.is_old_enough(symbol) + or not self.effective_min_cost_is_low_enough(pside, symbol) + ): + continue + slots_full = ( + len(self.ideal_actives[pside]) >= self.config["bot"][pside]["n_positions"] + ) + if slots_full: + break + if symbol not in self.ideal_actives[pside]: + self.ideal_actives[pside][symbol] = "" + + # actual actives fill slots first + for symbol in self.actual_actives[pside]: + if symbol in self.forced_modes[pside]: + continue # is a forced mode + if symbol in self.ideal_actives[pside]: + self.PB_modes[pside][symbol] = "normal" + else: + self.PB_modes[pside][symbol] = ( + "graceful_stop" if self.config["live"]["auto_gs"] else "manual" + ) + # fill remaining slots with ideal actives + # a slot is filled if symbol in [normal, graceful_stop] + # symbols on other modes are ignored + for symbol in self.ideal_actives[pside]: + if symbol in self.PB_modes[pside] or symbol in self.forced_modes[pside]: + continue + slots_filled = { + k for k, v in self.PB_modes[pside].items() if v in ["normal", "graceful_stop"] + } + if len(slots_filled) >= self.config["bot"][pside]["n_positions"]: + break + self.PB_modes[pside][symbol] = "normal" + else: + # if not forager mode, all eligible symbols are ideal symbols, unless symbol in forced_modes + for pside in ["long", "short"]: + self.warn_on_high_effective_min_cost(pside) + for symbol in self.eligible_symbols: + if self.is_enabled(symbol, pside): + if not self.effective_min_cost_is_low_enough(pside, symbol): + continue + if symbol not in self.forced_modes[pside]: + self.PB_modes[pside][symbol] = "normal" + self.ideal_actives[pside][symbol] = "" + for symbol in self.actual_actives[pside]: + if symbol not in self.PB_modes[pside]: + self.PB_modes[pside][symbol] = ( + "graceful_stop" if self.config["live"]["auto_gs"] else "manual" + ) + self.active_symbols = sorted( + {s for subdict in self.PB_modes.values() for s in subdict.keys()} + ) + self.is_active = deepcopy(self.actual_actives) + for pside in self.PB_modes: + for symbol in self.PB_modes[pside]: + if self.PB_modes[pside][symbol] == "normal": + self.is_active[pside].add(symbol) + + for symbol in self.active_symbols: + for pside in self.PB_modes: + if symbol in self.PB_modes[pside]: + self.live_configs[symbol][pside]["mode"] = self.PB_modes[pside][symbol] + self.live_configs[symbol][pside]["enabled"] = ( + self.PB_modes[pside][symbol] == "normal" + ) + else: + if self.config["live"]["auto_gs"]: + self.live_configs[symbol][pside]["mode"] = "graceful_stop" + self.PB_modes[pside][symbol] = "graceful_stop" + else: + self.live_configs[symbol][pside]["mode"] = "manual" + self.PB_modes[pside][symbol] = "manual" + + self.live_configs[symbol][pside]["enabled"] = False + if symbol not in self.positions: + self.positions[symbol] = { + "long": {"size": 0.0, "price": 0.0}, + "short": {"size": 0.0, "price": 0.0}, + } + if symbol not in self.open_orders: + self.open_orders[symbol] = [] + self.set_wallet_exposure_limits() + self.update_trailing_data() + + # log changes + for pside in self.PB_modes: + if previous_PB_modes is None: + for mode in set(self.PB_modes[pside].values()): + coins = [ + symbol_to_coin(s) + for s in self.PB_modes[pside] + if self.PB_modes[pside][s] == mode + ] + logging.info(f" setting {pside: <5} {mode}: {','.join(coins)}") + else: + if previous_PB_modes[pside] != self.PB_modes[pside]: + for symbol in self.active_symbols: + if symbol in self.PB_modes[pside]: + if symbol in previous_PB_modes[pside]: + if self.PB_modes[pside][symbol] != previous_PB_modes[pside][symbol]: + logging.info( + f"changing {pside: <5} {self.pad_sym(symbol)}: {previous_PB_modes[pside][symbol]} -> {self.PB_modes[pside][symbol]}" + ) + else: + logging.info( + f" setting {pside: <5} {self.pad_sym(symbol)}: {self.PB_modes[pside][symbol]}" + ) + else: + if symbol in previous_PB_modes[pside]: + logging.info( + f"removing {pside: <5} {self.pad_sym(symbol)}: {previous_PB_modes[pside][symbol]}" + ) + + def warn_on_high_effective_min_cost(self, pside): + if not self.config["live"]["filter_by_min_effective_cost"]: + return + eligible_symbols_filtered = [ + x for x in self.eligible_symbols if self.effective_min_cost_is_low_enough(pside, x) + ] + if len(eligible_symbols_filtered) == 0: + logging.info( + f"Warning: No {pside} symbols are approved due to min effective cost too high. " + + f"Suggestions: 1) increase account balance, 2) " + + f"set 'filter_by_min_effective_cost' to false, 3) if in forager mode, reduce n_{pside}s" + ) + + def effective_min_cost_is_low_enough(self, pside, symbol): + if not self.config["live"]["filter_by_min_effective_cost"]: + return True + try: + WE_limit = self.live_configs[symbol][pside]["wallet_exposure_limit"] + assert WE_limit > 0.0 + except: + if self.forager_mode: + WE_limit = ( + self.config["bot"][pside]["total_wallet_exposure_limit"] + / self.config["bot"][pside]["n_positions"] + if self.config["bot"][pside]["n_positions"] > 0 + else 0.0 + ) + else: + WE_limit = ( + self.config["bot"][pside]["total_wallet_exposure_limit"] + / len(self.config["live"]["approved_coins"]) + if len(self.config["live"]["approved_coins"]) > 0 + else 0.0 + ) + return ( + self.balance * WE_limit * self.live_configs[symbol][pside]["entry_initial_qty_pct"] + >= self.effective_min_cost[symbol] + ) + + def add_new_order(self, order, source="WS"): + try: + if not order or "id" not in order: + return False + if "symbol" not in order or order["symbol"] is None: + logging.info(f"symbol not in order: {order}") + return False + if order["symbol"] not in self.open_orders: + self.open_orders[order["symbol"]] = [] + if order["id"] not in {x["id"] for x in self.open_orders[order["symbol"]]}: + self.open_orders[order["symbol"]].append(order) + logging.info( + f" created {self.pad_sym(order['symbol'])} {order['side']} {order['qty']} {order['position_side']} @ {order['price']} source: {source}" + ) + return True + except Exception as e: + logging.error(f"failed to add order to self.open_orders {order} {e}") + traceback.print_exc() + return False + + def remove_cancelled_order(self, order: dict, source="WS"): + try: + if not order or "id" not in order: + return False + if "symbol" not in order or order["symbol"] is None: + logging.info(f"{order}") + return False + if order["symbol"] not in self.open_orders: + self.open_orders[order["symbol"]] = [] + if order["id"] in {x["id"] for x in self.open_orders[order["symbol"]]}: + self.open_orders[order["symbol"]] = [ + x for x in self.open_orders[order["symbol"]] if x["id"] != order["id"] + ] + logging.info( + f"cancelled {self.pad_sym(order['symbol'])} {order['side']} {order['qty']} {order['position_side']} @ {order['price']} source: {source}" + ) + return True + except Exception as e: + logging.error(f"failed to remove order from self.open_orders {order} {e}") + traceback.print_exc() + return False + + def handle_order_update(self, upd_list): + try: + for upd in upd_list: + if upd["status"] == "closed" or ( + "filled" in upd and upd["filled"] is not None and upd["filled"] > 0.0 + ): + # There was a fill, partial or full. Schedule update of open orders, pnls, position. + logging.info( + f" filled {self.pad_sym(upd['symbol'])} {upd['side']} {upd['qty']} {upd['position_side']} @ {upd['price']} source: WS" + ) + self.recent_fill = True + self.previous_REST_update_ts = 0 + elif upd["status"] in ["canceled", "expired", "rejected"]: + # remove order from open_orders + self.remove_cancelled_order(upd, source="WS") + elif upd["status"] == "open": + # add order to open_orders + self.add_new_order(upd, source="WS") + else: + print("debug open orders unknown type", upd) + except Exception as e: + logging.error(f"error updating open orders from websocket {upd_list} {e}") + traceback.print_exc() + + def handle_balance_update(self, upd, source="WS"): + try: + upd[self.quote]["total"] = round_dynamic(upd[self.quote]["total"], 10) + equity = upd[self.quote]["total"] + self.calc_upnl_sum() + if self.balance != upd[self.quote]["total"]: + logging.info( + f"balance changed: {self.balance} -> {upd[self.quote]['total']} equity: {equity:.4f} source: {source}" + ) + self.balance = max(upd[self.quote]["total"], 1e-12) + except Exception as e: + logging.error(f"error updating balance from websocket {upd} {e}") + traceback.print_exc() + + def handle_ohlcv_1m_update(self, symbol, upd): + if symbol not in self.ohlcvs_1m: + self.ohlcvs_1m[symbol] = SortedDict() + for elm in upd: + self.ohlcvs_1m[symbol][int(elm[0])] = elm + self.ohlcvs_1m_update_timestamps_WS[symbol] = utc_ms() + + def calc_upnl_sum(self): + upnl_sum = 0.0 + for elm in self.fetched_positions: + try: + upnl_sum += ( + calc_pnl( + elm["position_side"], + elm["price"], + self.ohlcvs_1m[elm["symbol"]].peekitem(-1)[1][3], + elm["size"], + self.inverse, + self.c_mults[elm["symbol"]], + ) + if elm["symbol"] in self.ohlcvs_1m + else 0.0 + ) + except Exception as e: + logging.error(f"error calculating upnl sum {e}") + traceback.print_exc() + return 0.0 + return upnl_sum + + async def init_pnls(self): + if not hasattr(self, "pnls"): + self.pnls = [] + elif self.pnls: + return # pnls already initiated; abort + logging.info(f"initiating pnls...") + age_limit = ( + self.get_exchange_time() + - 1000 * 60 * 60 * 24 * self.config["live"]["pnls_max_lookback_days"] + ) + pnls_cache = [] + if os.path.exists(self.pnls_cache_filepath): + try: + pnls_cache = json.load(open(self.pnls_cache_filepath)) + except Exception as e: + logging.error(f"error loading {self.pnls_cache_filepath} {e}") + if pnls_cache: + newest_pnls = await self.fetch_pnls(start_time=pnls_cache[-1]["timestamp"]) + if pnls_cache[0]["timestamp"] > age_limit + 1000 * 60 * 60 * 4: + # might be older missing pnls + logging.info(f"fetching missing pnls {ts_to_date_utc(pnls_cache[0]['timestamp'])}") + missing_pnls = await self.fetch_pnls( + start_time=age_limit, end_time=pnls_cache[0]["timestamp"] + ) + pnls_cache = sorted( + { + elm["id"]: elm + for elm in pnls_cache + missing_pnls + newest_pnls + if elm["timestamp"] >= age_limit + }.values(), + key=lambda x: x["timestamp"], + ) + else: + pnls_cache = await self.fetch_pnls(start_time=age_limit) + self.pnls = pnls_cache + + async def update_pnls(self): + # fetch latest pnls + # dump new pnls to cache + age_limit = ( + self.get_exchange_time() + - 1000 * 60 * 60 * 24 * self.config["live"]["pnls_max_lookback_days"] + ) + if not hasattr(self, "pnls"): + self.pnls = [] + old_ids = {elm["id"] for elm in self.pnls} + if len(self.pnls) == 0: + await self.init_pnls() + start_time = self.pnls[-1]["timestamp"] - 1000 if self.pnls else age_limit + res = await self.fetch_pnls(start_time=start_time, limit=100) + if res in [None, False]: + return False + new_pnls = [x for x in res if x["id"] not in old_ids] + self.pnls = sorted( + { + elm["id"]: elm for elm in self.pnls + new_pnls if elm["timestamp"] >= age_limit + }.values(), + key=lambda x: x["timestamp"], + ) + if new_pnls: + new_income = sum([x["pnl"] for x in new_pnls]) + if new_income != 0.0: + logging.info( + f"{len(new_pnls)} new pnl{'s' if len(new_pnls) > 1 else ''} {new_income} {self.quote}" + ) + try: + json.dump(self.pnls, open(self.pnls_cache_filepath, "w")) + except Exception as e: + logging.error(f"error dumping pnls to {self.pnls_cache_filepath} {e}") + self.upd_timestamps["pnls"] = utc_ms() + return True + + async def check_for_inactive_markets(self): + self.ineligible_symbols_with_pos = [ + elm["symbol"] + for elm in self.fetched_positions + self.fetched_open_orders + if elm["symbol"] not in self.markets_dict + or not self.markets_dict[elm["symbol"]]["active"] + ] + update = False + if self.ineligible_symbols_with_pos: + logging.info( + f"Caught symbol with pos for ineligible market: {self.ineligible_symbols_with_pos}" + ) + update = True + await self.init_markets_dict() + + async def update_open_orders(self): + if not hasattr(self, "open_orders"): + self.open_orders = {} + res = await self.fetch_open_orders() + if res in [None, False]: + return False + self.fetched_open_orders = res + await self.check_for_inactive_markets() + open_orders = res + oo_ids_old = {elm["id"] for sublist in self.open_orders.values() for elm in sublist} + created_prints, cancelled_prints = [], [] + for oo in open_orders: + if oo["id"] not in oo_ids_old: + # there was a new open order not caught by websocket + created_prints.append( + f"new order {self.pad_sym(oo['symbol'])} {oo['side']} {oo['qty']} {oo['position_side']} @ {oo['price']} source: REST" + ) + oo_ids_new = {elm["id"] for elm in open_orders} + for oo in [elm for sublist in self.open_orders.values() for elm in sublist]: + if oo["id"] not in oo_ids_new: + # there was an order cancellation not caught by websocket + cancelled_prints.append( + f"cancelled {self.pad_sym(oo['symbol'])} {oo['side']} {oo['qty']} {oo['position_side']} @ {oo['price']} source: REST" + ) + self.open_orders = {} + for elm in open_orders: + if elm["symbol"] not in self.open_orders: + self.open_orders[elm["symbol"]] = [] + self.open_orders[elm["symbol"]].append(elm) + if len(created_prints) > 12: + logging.info(f"{len(created_prints)} new open orders") + else: + for line in created_prints: + logging.info(line) + if len(cancelled_prints) > 12: + logging.info(f"{len(created_prints)} cancelled open orders") + else: + for line in cancelled_prints: + logging.info(line) + self.upd_timestamps["open_orders"] = utc_ms() + return True + + async def determine_utc_offset(self, verbose=True): + # returns millis to add to utc to get exchange timestamp + # call some endpoint which includes timestamp for exchange's server + # if timestamp is not included in self.cca.fetch_balance(), + # implement method in exchange child class + result = await self.cca.fetch_balance() + self.utc_offset = round((result["timestamp"] - utc_ms()) / (1000 * 60 * 60)) * ( + 1000 * 60 * 60 + ) + if verbose: + logging.info(f"Exchange time offset is {self.utc_offset}ms compared to UTC") + + def get_exchange_time(self): + return utc_ms() + self.utc_offset + + async def update_positions(self): + # also updates balance + if not hasattr(self, "positions"): + self.positions = {} + res = await self.fetch_positions() + if not res or all(x in [None, False] for x in res): + return False + positions_list_new, balance_new = res + self.fetched_positions = positions_list_new + await self.check_for_inactive_markets() + self.handle_balance_update({self.quote: {"total": balance_new}}, source="REST") + positions_new = { + sym: { + "long": {"size": 0.0, "price": 0.0}, + "short": {"size": 0.0, "price": 0.0}, + } + for sym in set(list(self.positions) + list(self.active_symbols)) + } + position_changes = [] + for elm in positions_list_new: + symbol, pside, pprice = elm["symbol"], elm["position_side"], elm["price"] + psize = abs(elm["size"]) * (-1.0 if elm["position_side"] == "short" else 1.0) + if symbol not in positions_new: + positions_new[symbol] = { + "long": {"size": 0.0, "price": 0.0}, + "short": {"size": 0.0, "price": 0.0}, + } + positions_new[symbol][pside] = {"size": psize, "price": pprice} + # check if changed + if symbol not in self.positions or self.positions[symbol][pside]["size"] != psize: + position_changes.append((symbol, pside)) + try: + self.log_position_changes(position_changes, positions_new) + except Exception as e: + logging.error(f"error printing position changes {e}") + self.positions = positions_new + self.upd_timestamps["positions"] = utc_ms() + return True + + def get_last_price(self, symbol): + try: + if symbol in self.ohlcvs_1m and self.ohlcvs_1m[symbol]: + return self.ohlcvs_1m[symbol].peekitem(-1)[1][4] + except Exception as e: + logging.error(f"error with {get_function_name()} for {symbol}: {e}") + traceback.print_exc() + return 0.0 + + def log_position_changes(self, position_changes, positions_new, rd=6) -> str: + if not position_changes: + return "" + table = PrettyTable() + table.border = False + table.header = False + table.padding_width = 0 # Reduces padding between columns to zero + for symbol, pside in position_changes: + wallet_exposure = ( + qty_to_cost( + positions_new[symbol][pside]["size"], + positions_new[symbol][pside]["price"], + self.inverse, + self.c_mults[symbol], + ) + / self.balance + ) + try: + WE_ratio = wallet_exposure / self.live_configs[symbol][pside]["wallet_exposure_limit"] + except: + WE_ratio = 0.0 + last_price = or_default(self.get_last_price, symbol, default=0.0) + try: + pprice_diff = ( + calc_pprice_diff(pside, positions_new[symbol][pside]["price"], last_price) + if last_price + else 0.0 + ) + except: + pprice_diff = 0.0 + try: + upnl = ( + calc_pnl( + pside, + positions_new[symbol][pside]["price"], + self.get_last_price(symbol), + positions_new[symbol][pside]["size"], + self.inverse, + self.c_mults[symbol], + ) + if last_price + else 0.0 + ) + except Exception as e: + upnl = 0.0 + table.add_row( + [ + symbol + " ", + pside + " ", + ( + round_dynamic(self.positions[symbol][pside]["size"], rd) + if symbol in self.positions + else 0.0 + ), + " @ ", + ( + round_dynamic(self.positions[symbol][pside]["price"], rd) + if symbol in self.positions + else 0.0 + ), + " -> ", + round_dynamic(positions_new[symbol][pside]["size"], rd), + " @ ", + round_dynamic(positions_new[symbol][pside]["price"], rd), + " WE: ", + round_dynamic(wallet_exposure, max(3, rd - 2)), + " WE ratio: ", + round(WE_ratio, 3), + " PA dist: ", + round(pprice_diff, 4), + " upnl: ", + round_dynamic(upnl, max(3, rd - 1)), + ] + ) + string = table.get_string() + for line in string.splitlines(): + logging.info(line) + return string + + def update_effective_min_cost(self, symbol=None): + if not hasattr(self, "effective_min_cost"): + self.effective_min_cost = {} + if symbol is None: + symbols = sorted(self.eligible_symbols) + else: + symbols = [symbol] + for symbol in symbols: + try: + self.effective_min_cost[symbol] = max( + qty_to_cost( + self.min_qtys[symbol], + self.get_last_price(symbol), + self.inverse, + self.c_mults[symbol], + ), + self.min_costs[symbol], + ) + except Exception as e: + logging.error(f"error with {get_function_name()} for {symbol}: {e}") + traceback.print_exc() + + def is_enabled(self, symbol, pside=None): + if pside is None: + return self.is_enabled(symbol, "long") or self.is_enabled(symbol, "short") + return ( + symbol in self.live_configs + and self.live_configs[symbol][pside]["wallet_exposure_limit"] > 0.0 + and self.live_configs[symbol][pside]["n_positions"] > 0.0 + ) + + def calc_ideal_orders(self): + ideal_orders = {symbol: [] for symbol in self.active_symbols} + for symbol in self.active_symbols: + if self.hedge_mode: + do_long = self.is_enabled(symbol, "long") or self.has_position(symbol, "long") + do_short = self.is_enabled(symbol, "short") or self.has_position(symbol, "short") + else: + no_pos = not self.has_position(symbol) + do_long = (no_pos and self.is_enabled(symbol, "long")) or self.has_position( + symbol, "long" + ) + do_short = (no_pos and self.is_enabled(symbol, "short")) or self.has_position( + symbol, "short" + ) + if self.live_configs[symbol]["long"]["mode"] == "panic": + if self.has_position(symbol, "long"): + # if in panic mode, only one close order at current market price + ideal_orders[symbol].append( + ( + -abs(self.positions[symbol]["long"]["size"]), + self.get_last_price(symbol), + "panic_close_long", + ) + ) + # otherwise, no orders + elif self.live_configs[symbol]["long"][ + "mode" + ] == "graceful_stop" and not self.has_position(symbol, "long"): + # if graceful stop and no pos, don't open new pos + pass + elif do_long: + entries_long = pbr.calc_entries_long_py( + self.qty_steps[symbol], + self.price_steps[symbol], + self.min_qtys[symbol], + self.min_costs[symbol], + self.c_mults[symbol], + self.live_configs[symbol]["long"]["entry_grid_double_down_factor"], + self.live_configs[symbol]["long"]["entry_grid_spacing_weight"], + self.live_configs[symbol]["long"]["entry_grid_spacing_pct"], + self.live_configs[symbol]["long"]["entry_initial_ema_dist"], + self.live_configs[symbol]["long"]["entry_initial_qty_pct"], + self.live_configs[symbol]["long"]["entry_trailing_grid_ratio"], + self.live_configs[symbol]["long"]["entry_trailing_retracement_pct"], + self.live_configs[symbol]["long"]["entry_trailing_threshold_pct"], + self.live_configs[symbol]["long"]["wallet_exposure_limit"], + self.balance, + self.positions[symbol]["long"]["size"], + self.positions[symbol]["long"]["price"], + self.trailing_prices[symbol]["long"]["min_since_open"], + self.trailing_prices[symbol]["long"]["max_since_min"], + self.emas["long"][symbol].min(), + self.get_last_price(symbol), + ) + closes_long = pbr.calc_closes_long_py( + self.qty_steps[symbol], + self.price_steps[symbol], + self.min_qtys[symbol], + self.min_costs[symbol], + self.c_mults[symbol], + self.live_configs[symbol]["long"]["close_grid_markup_range"], + self.live_configs[symbol]["long"]["close_grid_min_markup"], + self.live_configs[symbol]["long"]["close_grid_qty_pct"], + self.live_configs[symbol]["long"]["close_trailing_grid_ratio"], + self.live_configs[symbol]["long"]["close_trailing_qty_pct"], + self.live_configs[symbol]["long"]["close_trailing_retracement_pct"], + self.live_configs[symbol]["long"]["close_trailing_threshold_pct"], + self.live_configs[symbol]["long"]["wallet_exposure_limit"], + self.balance, + self.positions[symbol]["long"]["size"], + self.positions[symbol]["long"]["price"], + self.trailing_prices[symbol]["long"]["max_since_open"], + self.trailing_prices[symbol]["long"]["min_since_max"], + self.get_last_price(symbol), + ) + ideal_orders[symbol] += entries_long + closes_long + + if self.live_configs[symbol]["short"]["mode"] == "panic": + if self.has_position(symbol, "short"): + # if in panic mode, only one close order at current market price + ideal_orders[symbol].append( + ( + abs(self.positions[symbol]["short"]["size"]), + self.get_last_price(symbol), + "panic_close_short", + ) + ) + # otherwise, no orders + elif self.live_configs[symbol]["short"][ + "mode" + ] == "graceful_stop" and not self.has_position(symbol, "short"): + # if graceful stop and no pos, don't open new pos + pass + elif do_short: + entries_short = pbr.calc_entries_short_py( + self.qty_steps[symbol], + self.price_steps[symbol], + self.min_qtys[symbol], + self.min_costs[symbol], + self.c_mults[symbol], + self.live_configs[symbol]["short"]["entry_grid_double_down_factor"], + self.live_configs[symbol]["short"]["entry_grid_spacing_weight"], + self.live_configs[symbol]["short"]["entry_grid_spacing_pct"], + self.live_configs[symbol]["short"]["entry_initial_ema_dist"], + self.live_configs[symbol]["short"]["entry_initial_qty_pct"], + self.live_configs[symbol]["short"]["entry_trailing_grid_ratio"], + self.live_configs[symbol]["short"]["entry_trailing_retracement_pct"], + self.live_configs[symbol]["short"]["entry_trailing_threshold_pct"], + self.live_configs[symbol]["short"]["wallet_exposure_limit"], + self.balance, + self.positions[symbol]["short"]["size"], + self.positions[symbol]["short"]["price"], + self.trailing_prices[symbol]["short"]["max_since_open"], + self.trailing_prices[symbol]["short"]["min_since_max"], + self.emas["short"][symbol].max(), + self.get_last_price(symbol), + ) + closes_short = pbr.calc_closes_short_py( + self.qty_steps[symbol], + self.price_steps[symbol], + self.min_qtys[symbol], + self.min_costs[symbol], + self.c_mults[symbol], + self.live_configs[symbol]["short"]["close_grid_markup_range"], + self.live_configs[symbol]["short"]["close_grid_min_markup"], + self.live_configs[symbol]["short"]["close_grid_qty_pct"], + self.live_configs[symbol]["short"]["close_trailing_grid_ratio"], + self.live_configs[symbol]["short"]["close_trailing_qty_pct"], + self.live_configs[symbol]["short"]["close_trailing_retracement_pct"], + self.live_configs[symbol]["short"]["close_trailing_threshold_pct"], + self.live_configs[symbol]["short"]["wallet_exposure_limit"], + self.balance, + self.positions[symbol]["short"]["size"], + self.positions[symbol]["short"]["price"], + self.trailing_prices[symbol]["short"]["min_since_open"], + self.trailing_prices[symbol]["short"]["max_since_min"], + self.get_last_price(symbol), + ) + ideal_orders[symbol] += entries_short + closes_short + + unstucking_symbol, unstucking_close = self.calc_unstucking_close(ideal_orders) + if unstucking_close[0] != 0.0: + ideal_orders[unstucking_symbol] = [ + x for x in ideal_orders[unstucking_symbol] if not "close" in x[2] + ] + ideal_orders[unstucking_symbol].append(unstucking_close) + + ideal_orders_f = {} + for symbol in ideal_orders: + ideal_orders_f[symbol] = [] + with_pprice_diff = [ + (calc_diff(x[1], self.get_last_price(symbol)), x) for x in ideal_orders[symbol] + ] + seen = set() + for pprice_diff, order in sorted(with_pprice_diff): + position_side = "long" if "long" in order[2] else "short" + if order[0] == 0.0: + continue + if pprice_diff > self.config["live"]["price_distance_threshold"]: + if not self.has_position(symbol, position_side): + continue + if any([x in order[2] for x in ["initial", "unstuck"]]): + continue + seen_key = str(abs(order[0])) + str(order[1]) + if seen_key in seen: + logging.info(f"debug duplicate ideal order {symbol} {order}") + continue + ideal_orders_f[symbol].append( + { + "symbol": symbol, + "side": determine_side_from_order_tuple(order), + "position_side": position_side, + "qty": abs(order[0]), + "price": order[1], + "reduce_only": "close" in order[2], + "custom_id": order[2], + } + ) + seen.add(seen_key) + return ideal_orders_f + + def calc_unstucking_close(self, ideal_orders): + stuck_positions = [] + for symbol in self.positions: + for pside in ["long", "short"]: + if ( + self.has_position(symbol, pside) + and self.live_configs[symbol][pside]["unstuck_loss_allowance_pct"] > 0.0 + ): + wallet_exposure = pbr.calc_wallet_exposure( + self.c_mults[symbol], + self.balance, + self.positions[symbol][pside]["size"], + self.positions[symbol][pside]["price"], + ) + if ( + self.live_configs[symbol][pside]["wallet_exposure_limit"] == 0.0 + or wallet_exposure / self.live_configs[symbol][pside]["wallet_exposure_limit"] + > self.live_configs[symbol][pside]["unstuck_threshold"] + ): + unstuck_allowance = ( + calc_AU_allowance( + np.array([x["pnl"] for x in self.pnls]), + self.balance, + loss_allowance_pct=self.live_configs[symbol][pside][ + "unstuck_loss_allowance_pct" + ], + ) + if len(self.pnls) > 0 + else 0.0 + ) + if unstuck_allowance > 0.0: + pprice_diff = calc_pprice_diff( + pside, + self.positions[symbol][pside]["price"], + self.get_last_price(symbol), + ) + stuck_positions.append((symbol, pside, pprice_diff)) + if not stuck_positions: + return "", (0.0, 0.0, "") + stuck_positions.sort(key=lambda x: x[2]) + for symbol, pside, _ in stuck_positions: + if pside == "long": + close_price = max( + self.get_last_price(symbol), + pbr.round_up( + self.emas[pside][symbol].max() + * (1.0 + self.live_configs[symbol][pside]["unstuck_ema_dist"]), + self.price_steps[symbol], + ), + ) + ideal_closes = ( + [x for x in ideal_orders[symbol] if "close" in x[2] and pside in x[2]] + if symbol in ideal_orders + else [] + ) + if ideal_closes and close_price >= ideal_closes[0][1]: + continue + close_qty = -min( + self.positions[symbol][pside]["size"], + max( + calc_min_entry_qty( + close_price, + False, + self.c_mults[symbol], + self.qty_steps[symbol], + self.min_qtys[symbol], + self.min_costs[symbol], + ), + pbr.round_dn( + pbr.cost_to_qty( + self.balance + * self.live_configs[symbol][pside]["wallet_exposure_limit"] + * self.live_configs[symbol][pside]["unstuck_close_pct"], + close_price, + self.c_mults[symbol], + ), + self.qty_steps[symbol], + ), + ), + ) + if close_qty != 0.0: + return symbol, (close_qty, close_price, "unstuck_close_long") + elif pside == "short": + close_price = min( + self.get_last_price(symbol), + pbr.round_dn( + self.emas[pside][symbol].min() + * (1.0 - self.live_configs[symbol][pside]["unstuck_ema_dist"]), + self.price_steps[symbol], + ), + ) + ideal_closes = ( + [x for x in ideal_orders[symbol] if "close" in x[2] and pside in x[2]] + if symbol in ideal_orders + else [] + ) + if ideal_closes and close_price <= ideal_closes[0][1]: + continue + close_qty = min( + abs(self.positions[symbol][pside]["size"]), + max( + calc_min_entry_qty( + close_price, + False, + self.c_mults[symbol], + self.qty_steps[symbol], + self.min_qtys[symbol], + self.min_costs[symbol], + ), + pbr.round_dn( + pbr.cost_to_qty( + self.balance + * self.live_configs[symbol][pside]["wallet_exposure_limit"] + * self.live_configs[symbol][pside]["unstuck_close_pct"], + close_price, + self.c_mults[symbol], + ), + self.qty_steps[symbol], + ), + ), + ) + if close_qty != 0.0: + return symbol, (close_qty, close_price, "unstuck_close_short") + return "", (0.0, 0.0, "") + + def calc_orders_to_cancel_and_create(self): + ideal_orders = self.calc_ideal_orders() + actual_orders = {} + for symbol in self.active_symbols: + actual_orders[symbol] = [] + for x in self.open_orders[symbol] if symbol in self.open_orders else []: + try: + actual_orders[symbol].append( + { + "symbol": x["symbol"], + "side": x["side"], + "position_side": x["position_side"], + "qty": abs(x["qty"]), + "price": x["price"], + "reduce_only": (x["position_side"] == "long" and x["side"] == "sell") + or (x["position_side"] == "short" and x["side"] == "buy"), + "id": x["id"], + } + ) + except Exception as e: + logging.error(f"error in calc_orders_to_cancel_and_create {e}") + traceback.print_exc() + print(x) + keys = ("symbol", "side", "position_side", "qty", "price") + to_cancel, to_create = [], [] + for symbol in actual_orders: + to_cancel_, to_create_ = filter_orders(actual_orders[symbol], ideal_orders[symbol], keys) + for pside in ["long", "short"]: + if self.live_configs[symbol][pside]["mode"] == "manual": + # neither create nor cancel orders + to_cancel_ = [x for x in to_cancel_ if x["position_side"] != pside] + to_create_ = [x for x in to_create_ if x["position_side"] != pside] + elif self.live_configs[symbol][pside]["mode"] == "tp_only": + # if take profit only mode, neither cancel nor create entries + to_cancel_ = [ + x + for x in to_cancel_ + if ( + x["position_side"] != pside + or (x["position_side"] == pside and x["reduce_only"]) + ) + ] + to_create_ = [ + x + for x in to_create_ + if ( + x["position_side"] != pside + or (x["position_side"] == pside and x["reduce_only"]) + ) + ] + to_cancel += to_cancel_ + to_create += to_create_ + return sorted( + to_cancel, key=lambda x: calc_diff(x["price"], self.get_last_price(x["symbol"])) + ), sorted(to_create, key=lambda x: calc_diff(x["price"], self.get_last_price(x["symbol"]))) + + async def restart_bot_on_too_many_errors(self): + if not hasattr(self, "error_counts"): + self.error_counts = [] + now = utc_ms() + self.error_counts = [x for x in self.error_counts if x > now - 1000 * 60 * 60] + [now] + max_n_errors_per_hour = 10 + logging.info( + f"error count: {len(self.error_counts)} of {max_n_errors_per_hour} errors per hour" + ) + if len(self.error_counts) >= max_n_errors_per_hour: + await self.restart_bot() + raise Exception("too many errors... restarting bot.") + + def format_custom_ids(self, orders: [dict]) -> [dict]: + new_orders = [] + for order in orders: + order["custom_id"] = ( + shorten_custom_id(order["custom_id"] if "custom_id" in order else "") + uuid4().hex + )[: self.custom_id_max_length] + new_orders.append(order) + return new_orders + + def debug_dump_bot_state_to_disk(self): + if not hasattr(self, "tmp_debug_ts"): + self.tmp_debug_ts = 0 + self.tmp_debug_cache = make_get_filepath(f"caches/{self.exchange}/{self.user}_debug/") + if utc_ms() - self.tmp_debug_ts > 1000 * 60 * 3: + logging.info(f"debug dumping bot state to disk") + for k, v in vars(self).items(): + try: + json.dump( + denumpyize(v), open(os.path.join(self.tmp_debug_cache, k + ".json"), "w") + ) + except Exception as e: + logging.error(f"debug failed to dump to disk {k} {e}") + self.tmp_debug_ts = utc_ms() + + def fill_gaps_ohlcvs_1m(self): + for symbol in self.ohlcvs_1m: + self.fill_gaps_ohlcvs_1m_single(symbol) + + def fill_gaps_ohlcvs_1m_single(self, symbol): + if symbol not in self.ohlcvs_1m or not self.ohlcvs_1m[symbol]: + return + now_minute = int(self.get_exchange_time() // 60000 * 60000) + last_ts, last_ohlcv_1m = self.ohlcvs_1m[symbol].peekitem(-1) + if now_minute > last_ts: + self.ohlcvs_1m[symbol][now_minute] = [float(now_minute)] + [last_ohlcv_1m[4]] * 4 + [0.0] + n_ohlcvs_1m = len(self.ohlcvs_1m[symbol]) + range_ms = self.ohlcvs_1m[symbol].peekitem(-1)[0] - self.ohlcvs_1m[symbol].peekitem(0)[0] + ideal_n_ohlcvs_1m = int((range_ms) / 60000) + 1 + if ideal_n_ohlcvs_1m > n_ohlcvs_1m: + ts = self.ohlcvs_1m[symbol].peekitem(0)[0] + last_ts = self.ohlcvs_1m[symbol].peekitem(-1)[0] + while ts < last_ts: + ts += 60000 + if ts not in self.ohlcvs_1m[symbol]: + self.ohlcvs_1m[symbol][ts] = ( + [float(ts)] + [self.ohlcvs_1m[symbol][ts - 60000][4]] * 4 + [0.0] + ) + + def init_EMAs_single(self, symbol): + first_ts, first_ohlcv = self.ohlcvs_1m[symbol].peekitem(0) + for pside in ["long", "short"]: + self.emas[pside][symbol] = np.repeat(first_ohlcv[4], 3) + lc = self.live_configs[symbol][pside] + es = [lc["ema_span_0"], lc["ema_span_1"], (lc["ema_span_0"] * lc["ema_span_1"]) ** 0.5] + ema_spans = numpyize(sorted(es)) + self.ema_alphas[pside][symbol] = (a := (2.0 / (ema_spans + 1)), 1.0 - a) + self.upd_minute_emas[symbol] = first_ts + + def update_EMAs(self): + for symbol in self.get_eligible_or_active_symbols(): + self.update_EMAs_single(symbol) + + def update_EMAs_single(self, symbol): + try: + if symbol not in self.ohlcvs_1m or not self.ohlcvs_1m[symbol]: + return + self.fill_gaps_ohlcvs_1m_single(symbol) + if symbol not in self.emas["long"]: + self.init_EMAs_single(symbol) + last_ts, last_ohlcv_1m = self.ohlcvs_1m[symbol].peekitem(-1) + mn = 60000 + for ts in range(self.upd_minute_emas[symbol] + mn, last_ts + mn, mn): + for pside in ["long", "short"]: + self.emas[pside][symbol] = calc_ema( + self.ema_alphas[pside][symbol][0], + self.ema_alphas[pside][symbol][1], + self.emas[pside][symbol], + self.ohlcvs_1m[symbol][ts][4], + ) + self.upd_minute_emas[symbol] = last_ts + return True + except Exception as e: + logging.error(f"error with {get_function_name()} for {symbol}: {e}") + traceback.print_exc() + return False + + def get_eligible_or_active_symbols(self): + return sorted(self.eligible_symbols | set(self.active_symbols)) + + def get_ohlcvs_1m_file_mods(self, symbols=None): + if symbols is None: + symbols = self.get_eligible_or_active_symbols() + last_update_tss = [] + for symbol in symbols: + try: + filepath = self.get_ohlcvs_1m_filepath(symbol) + if os.path.exists(filepath): + last_update_tss.append((get_file_mod_utc(filepath), symbol)) + else: + last_update_tss.append((0.0, symbol)) + except Exception as e: + logging.info(f"debug error with get_file_mod_utc for {symbol} {e}") + last_update_tss.append((0.0, symbol)) + return last_update_tss + + async def restart_bot(self): + logging.info("Initiating bot restart...") + self.stop_signal_received = True + self.stop_data_maintainers() + await self.cca.close() + await self.ccp.close() + raise Exception("Bot will restart.") + + async def update_ohlcvs_1m_for_actives(self): + try: + utc_now = utc_ms() + symbols_to_update = [ + s + for s in self.active_symbols + if s not in self.ohlcvs_1m_update_timestamps_WS + or utc_now - self.ohlcvs_1m_update_timestamps_WS[s] > 1000 * 60 + ] + if symbols_to_update: + await asyncio.gather(*[self.update_ohlcvs_1m_single(s) for s in symbols_to_update]) + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + + async def maintain_markets_info(self): + logging.info(f"starting maintain_markets_info") + while not self.stop_signal_received: + try: + # update markets dict once every hour + if utc_ms() - self.init_markets_last_update_ms > 1000 * 60 * 60: + await self.init_markets_dict(verbose=False) + await asyncio.sleep(1) + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + await asyncio.sleep(5) + + async def start_data_maintainers(self): + # maintains REST update_market_info and ohlcv_1m + if hasattr(self, "maintainers"): + self.stop_data_maintainers() + self.maintainers = { + k: asyncio.create_task(getattr(self, k)()) + for k in [ + "maintain_markets_info", + "maintain_ohlcvs_1m_REST", + "watch_ohlcvs_1m", + "watch_orders", + ] + } + + async def start_bot(self, debug_mode=False): + logging.info(f"initiating markets...") + await self.init_markets_dict() + await asyncio.sleep(1) + logging.info(f"starting data maintainers...") + await self.start_data_maintainers() + await self.wait_for_ohlcvs_1m_to_update() + logging.info(f"starting websocket...") + self.previous_REST_update_ts = utc_ms() + await self.prepare_for_execution() + + logging.info(f"starting execution loop...") + if not debug_mode: + await self.run_execution_loop() + + def calc_noisiness(self): + if not hasattr(self, "noisiness"): + self.noisiness = {} + n = int(round(self.config["live"]["noisiness_rolling_mean_window_size"])) + for symbol in self.eligible_symbols: + if symbol in self.ohlcvs_1m and self.ohlcvs_1m[symbol]: + ohlcvs_1m = [v for v in self.ohlcvs_1m[symbol].values()[-n:]] + self.noisiness[symbol] = np.mean([(x[2] - x[3]) / x[4] for x in ohlcvs_1m]) + else: + self.noisiness[symbol] = 0.0 + + def calc_volumes(self): + if not hasattr(self, "volumes"): + self.volumes = {} + n = int(round(self.config["live"]["noisiness_rolling_mean_window_size"])) + for symbol in self.ohlcvs_1m: + if self.ohlcvs_1m[symbol] and len(self.ohlcvs_1m[symbol]) > 0: + ohlcvs_1m = [v for v in self.ohlcvs_1m[symbol].values()[-n:]] + self.volumes[symbol] = sum([x[4] * x[5] for x in ohlcvs_1m]) + else: + self.volumes[symbol] = 0.0 + + async def execute_multiple(self, orders: [dict], type_: str, max_n_executions: int): + if not orders: + return [] + executions = [] + for order in orders[:max_n_executions]: # sorted by PA dist + execution = None + try: + execution = asyncio.create_task(getattr(self, type_)(order)) + executions.append((order, execution)) + except Exception as e: + logging.error(f"error executing {type_} {order} {e}") + print_async_exception(execution) + traceback.print_exc() + results = [] + for execution in executions: + result = None + try: + result = await execution[1] + results.append(result) + except Exception as e: + logging.error(f"error executing {type_} {execution} {e}") + print_async_exception(result) + traceback.print_exc() + return results + + async def maintain_ohlcvs_1m_REST(self): + if not hasattr(self, "ohlcvs_1m"): + self.ohlcvs_1m = {} + error_count = 0 + self.ohlcvs_1m_update_timestamps = {} + self.n_symbols_missing_ohlcvs_1m = len(self.get_eligible_or_active_symbols()) + init_ohlcvs_sleep_time = 4.0 / self.n_symbols_missing_ohlcvs_1m + for symbol in self.get_eligible_or_active_symbols(): + # print("debug update_ohlcvs_1m_single_from_disk", symbol) + asyncio.create_task(self.update_ohlcvs_1m_single_from_disk(symbol)) + await asyncio.sleep(min(0.1, init_ohlcvs_sleep_time)) + self.ohlcvs_1m_max_age_ms = 1000 * 60 * self.ohlcvs_1m_max_age_minutes + loop_sleep_time_ms = 1000 * 1 + logging.info(f"starting {get_function_name()}") + while not self.stop_signal_received: + try: + symbols_too_old = [] + max_age_ms = self.ohlcvs_1m_max_age_ms + now_utc = utc_ms() + for symbol in self.get_eligible_or_active_symbols(): + if symbol not in self.ohlcvs_1m_update_timestamps: + symbols_too_old.append((0, symbol)) + else: + if ( + now_utc - self.ohlcvs_1m_update_timestamps[symbol] + > self.ohlcvs_1m_max_age_ms + ): + symbols_too_old.append((self.ohlcvs_1m_update_timestamps[symbol], symbol)) + symbols_to_update = sorted(symbols_too_old)[: self.max_n_concurrent_ohlcvs_1m_updates] + self.n_symbols_missing_ohlcvs_1m = len(symbols_too_old) + if not symbols_to_update: + max_age_ms = self.ohlcvs_1m_max_age_ms / 2.0 + if self.ohlcvs_1m_update_timestamps: + symbol, ts = sorted( + self.ohlcvs_1m_update_timestamps.items(), key=lambda x: x[1] + )[0] + symbols_to_update = [(ts, symbol)] + if symbols_to_update: + await asyncio.gather( + *[ + self.update_ohlcvs_1m_single(x[1], max_age_ms=max_age_ms) + for x in symbols_to_update + ] + ) + sleep_time_ms = loop_sleep_time_ms - (utc_ms() - now_utc) + await asyncio.sleep(max(0.0, sleep_time_ms / 1000.0)) + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + await asyncio.sleep(5) + await self.restart_bot_on_too_many_errors() + + async def update_ohlcvs_1m_single_from_exchange(self, symbol): + filepath = self.get_ohlcvs_1m_filepath(symbol) + if self.lock_exists(filepath): + return + try: + self.create_lock_file(filepath) + ms_to_min = 1000 * 60 + if symbol in self.ohlcvs_1m and self.ohlcvs_1m[symbol]: + last_ts = self.ohlcvs_1m[symbol].peekitem(-1)[0] + now_minute = self.get_exchange_time() // ms_to_min * ms_to_min + limit = min(999, max(3, int(round((now_minute - last_ts) / ms_to_min)) + 5)) + if limit >= 999: + limit = None + else: + self.ohlcvs_1m[symbol] = SortedDict() + limit = None + candles = await self.fetch_ohlcvs_1m(symbol, limit=limit) + for x in candles: + self.ohlcvs_1m[symbol][int(x[0])] = x + self.dump_ohlcvs_1m_to_cache(symbol) + self.ohlcvs_1m_update_timestamps[symbol] = or_default( + get_file_mod_utc, filepath, default=0.0 + ) + finally: + self.remove_lock_file(filepath) + + async def update_ohlcvs_1m_single_from_disk(self, symbol): + filepath = self.get_ohlcvs_1m_filepath(symbol) + if not os.path.exists(filepath): + return + if self.lock_exists(filepath): + return + try: + self.create_lock_file(filepath) + if symbol not in self.ohlcvs_1m: + self.ohlcvs_1m[symbol] = SortedDict() + data = np.load(filepath) + for x in data: + self.ohlcvs_1m[symbol][int(x[0])] = x + self.ohlcvs_1m_update_timestamps[symbol] = or_default( + get_file_mod_utc, filepath, default=0.0 + ) + except Exception as e: + logging.error(f"error with update_ohlcvs_1m_single_from_disk {symbol} {e}") + traceback.print_exc() + try: + os.remove(filepath) + except Exception as e0: + logging.error(f"failed to remove corrupted ohlcvs_1m file for {symbol} {e0}") + finally: + self.remove_lock_file(filepath) + + async def update_ohlcvs_1m_single(self, symbol, max_age_ms=None): + if max_age_ms is None: + max_age_ms = self.ohlcvs_1m_max_age_ms + self.lock_timeout_ms = 5000.0 + try: + if not (symbol in self.active_symbols or symbol in self.eligible_symbols): + return + filepath = self.get_ohlcvs_1m_filepath(symbol) + if self.lock_exists(filepath): + # is being updated by other instance + if self.get_lock_age_ms(filepath) > self.lock_timeout_ms: + # other instance took too long to finish; assume it crashed + self.remove_lock_file(filepath) + await self.update_ohlcvs_1m_single_from_exchange(symbol) + elif os.path.exists(filepath): + mod_ts = or_default(get_file_mod_utc, filepath, default=0.0) + if utc_ms() - mod_ts > max_age_ms: + await self.update_ohlcvs_1m_single_from_exchange(symbol) + else: + if ( + symbol not in self.ohlcvs_1m_update_timestamps + or self.ohlcvs_1m_update_timestamps[symbol] != mod_ts + ): + # was updated by other instance + await self.update_ohlcvs_1m_single_from_disk(symbol) + else: + await self.update_ohlcvs_1m_single_from_exchange(symbol) + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + await self.restart_bot_on_too_many_errors() + + def create_lock_file(self, filepath): + try: + open(f"{filepath}.lock", "w").close() + return True + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + return False + + def lock_exists(self, filepath): + try: + return os.path.exists(f"{filepath}.lock") + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + return False + + def get_lock_age_ms(self, filepath): + try: + if self.lock_exists(filepath): + return utc_ms() - get_file_mod_utc(f"{filepath}.lock") + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + return utc_ms() + + def remove_lock_file(self, filepath): + try: + if self.lock_exists(filepath): + os.remove(f"{filepath}.lock") + return True + except Exception as e: + logging.error(f"error with {get_function_name()} {e}") + traceback.print_exc() + return False + + async def close(self): + logging.info(f"Stopped data maintainers: {self.stop_data_maintainers()}") + await self.cca.close() + await self.ccp.close() + + +def setup_bot(config): + # returns bot instance + user_info = load_user_info(config["live"]["user"]) + if user_info["exchange"] == "bybit": + from exchanges.bybit import BybitBot + + bot = BybitBot(config) + elif user_info["exchange"] == "binance": + from exchanges.binance import BinanceBot + + bot = BinanceBot(config) + elif user_info["exchange"] == "bitget": + from exchanges.bitget import BitgetBot + + bot = BitgetBot(config) + elif user_info["exchange"] == "okx": + from exchanges.okx import OKXBot + + bot = OKXBot(config) + elif user_info["exchange"] == "hyperliquid": + from exchanges.hyperliquid import HyperliquidBot + + bot = HyperliquidBot(config) + elif user_info["exchange"] == "gateio": + from exchanges.gateio import GateIOBot + + bot = GateIOBot(config) + else: + raise Exception(f"unknown exchange {user_info['exchange']}") + return bot + + +async def shutdown_bot(bot): + print("Shutting down bot...") + bot.stop_data_maintainers() + try: + await asyncio.wait_for(bot.close(), timeout=3.0) + except asyncio.TimeoutError: + print("Shutdown timed out after 3 seconds. Forcing exit.") + except Exception as e: + print(f"Error during shutdown: {e}") + + +async def main(): + parser = argparse.ArgumentParser(prog="passivbot", description="run passivbot") + parser.add_argument("hjson_config_path", type=str, help="path to hjson passivbot meta config") + parser_items = [ + ( + "s", + "approved_symbols", + "approved_symbols", + str, + ", comma separated (SYM1USDT,SYM2USDT,...)", + ), + ("i", "ignored_coins", "ignored_coins", str, ", comma separated (SYM1USDT,SYM2USDT,...)"), + ("le", "long_enabled", "long_enabled", str2bool, " (y/n or t/f)"), + ("se", "short_enabled", "short_enabled", str2bool, " (y/n or t/f)"), + ("tl", "total_wallet_exposure_long", "TWE_long", float, ""), + ("ts", "total_wallet_exposure_short", "TWE_short", float, ""), + ("u", "user", "user", str, ""), + ("lap", "loss_allowance_pct", "loss_allowance_pct", float, " (set to 0.0 to disable)"), + ("pml", "pnls_max_lookback_days", "pnls_max_lookback_days", float, ""), + ("st", "stuck_threshold", "stuck_threshold", float, ""), + ("ucp", "unstuck_close_pct", "unstuck_close_pct", float, ""), + ("eds", "execution_delay_seconds", "execution_delay_seconds", float, ""), + ("lcd", "live_configs_dir", "live_configs_dir", str, ""), + ("dcp", "default_config_path", "default_config_path", str, ""), + ("ag", "auto_gs", "auto_gs", str2bool, " enabled (y/n or t/f)"), + ("nca", "max_n_cancellations_per_batch", "max_n_cancellations_per_batch", int, ""), + ("ncr", "max_n_creations_per_batch", "max_n_creations_per_batch", int, ""), + ("pt", "price_threshold", "price_threshold", float, ""), + ] + for k0, k1, d, t, h in parser_items: + parser.add_argument( + *[f"-{k0}", f"--{k1}"] + ([f"--{k1.replace('_', '-')}"] if "_" in k1 else []), + type=t, + required=False, + dest=d, + default=None, + help=f"specify {k1}{h}, overriding value from live hjson config.", + ) + max_n_restarts_per_day = 5 + cooldown_secs = 60 + restarts = [] + while True: + args = parser.parse_args() + config = load_config(args.hjson_config_path) + """ + for key in [x[2] for x in parser_items]: + if getattr(args, key) is not None: + if key.endswith("symbols"): + old_value = sorted(set(config[key])) + new_value = sorted(set(getattr(args, key).split(","))) + else: + old_value = config[key] + new_value = getattr(args, key) + logging.info(f"changing {key}: {old_value} -> {new_value}") + config[key] = new_value + """ + bot = setup_bot(config) + try: + await bot.start_bot() + except Exception as e: + logging.error(f"passivbot error {e}") + traceback.print_exc() + finally: + try: + bot.stop_data_maintainers() + await bot.ccp.close() + await bot.cca.close() + except: + pass + logging.info(f"restarting bot...") + print() + for z in range(cooldown_secs, -1, -1): + print(f"\rcountdown {z}... ") + await asyncio.sleep(1) + print() + + restarts.append(utc_ms()) + restarts = [x for x in restarts if x > utc_ms() - 1000 * 60 * 60 * 24] + if len(restarts) > max_n_restarts_per_day: + logging.info(f"n restarts exceeded {max_n_restarts_per_day} last 24h") + break + + +if __name__ == "__main__": + try: + asyncio.run(main()) + except KeyboardInterrupt: + print("\nBot shutdown complete.") diff --git a/plotting.py b/src/plotting.py similarity index 90% rename from plotting.py rename to src/plotting.py index 71962175c..b0f1a0e89 100644 --- a/plotting.py +++ b/src/plotting.py @@ -430,3 +430,54 @@ def plot_pnls_stuck(sdf, fdf, symbol=None, start_pct=0.0, end_pct=1.0, unstuck_t sdfc[~any_stuck].balance.plot(style="b.") ax.legend(["equity", "balance_with_any_stuck", "balance_with_none_stuck"]) return plt + + +def plot_fills_forager(fdf: pd.DataFrame, hlcs_df: pd.DataFrame, start_pct=0.0, end_pct=1.0): + plt.clf() + if len(fdf) == 0: + return + hlcc = hlcs_df.loc[fdf.iloc[0].minute : fdf.iloc[-1].minute] + fdfc = fdf.set_index(fdf.minute.astype(int)) + + start_minute = int(hlcc.index[0] + hlcc.index[-1] * start_pct) + end_minute = int(hlcc.index[0] + hlcc.index[-1] * end_pct) + hlcc = hlcc.loc[start_minute:end_minute] + fdfc = fdfc.loc[start_minute:end_minute] + ax = hlcc.close.plot(style="y--") + hlcc.low.plot(style="g--") + hlcc.high.plot(style="g--") + longs = fdfc[fdfc.type.str.contains("long")] + shorts = fdfc[fdfc.type.str.contains("short")] + if len(longs) == 0 and len(shorts) == 0: + return plt + legend = ["close", "high", "low"] + if len(longs) > 0: + pprices_long = hlcc.join(longs[["pprice", "psize"]]).ffill() + pprices_long.loc[pprices_long.pprice.pct_change() != 0.0, "pprice"] = np.nan + pprices_long = pprices_long[pprices_long.psize != 0.0].pprice + longs[longs.type.str.contains("entry")].price.plot(style="b.") + longs[longs.type.str.contains("close")].price.plot(style="r.") + pprices_long.plot(style="b--") + legend.extend( + [ + "entries_long", + "closes_long", + "pprices_long", + ] + ) + if len(shorts) > 0: + pprices_short = hlcc.join(shorts[["pprice", "psize"]]).ffill() + pprices_short.loc[pprices_short.pprice.pct_change() != 0.0, "pprice"] = np.nan + pprices_short = pprices_short[pprices_short.psize != 0.0].pprice + shorts[shorts.type.str.contains("entry")].price.plot(style="mx") + shorts[shorts.type.str.contains("close")].price.plot(style="cx") + pprices_short.plot(style="r--") + legend.extend( + [ + "entries_short", + "closes_short", + "pprices_short", + ] + ) + ax.legend(legend) + return plt diff --git a/procedures.py b/src/procedures.py similarity index 72% rename from procedures.py rename to src/procedures.py index 0e8f49efd..5623828b0 100644 --- a/procedures.py +++ b/src/procedures.py @@ -7,6 +7,9 @@ from time import time import numpy as np import pprint +from copy import deepcopy +import argparse +from collections import defaultdict try: @@ -35,9 +38,229 @@ determine_passivbot_mode, date2ts_utc, remove_OD, + symbol_to_coin, ) +def format_config(config: dict, verbose=True) -> dict: + # attempts to format a config to v7 config + template = get_template_live_config("v7") + cmap = { + "ddown_factor": "entry_grid_double_down_factor", + "initial_eprice_ema_dist": "entry_initial_ema_dist", + "initial_qty_pct": "entry_initial_qty_pct", + "markup_range": "close_grid_markup_range", + "min_markup": "close_grid_min_markup", + "rentry_pprice_dist": "entry_grid_spacing_pct", + "rentry_pprice_dist_wallet_exposure_weighting": "entry_grid_spacing_weight", + "ema_span_0": "ema_span_0", + "ema_span_1": "ema_span_1", + } + cmap_inv = {v: k for k, v in cmap.items()} + if all( + [ + x in config + for x in [ + "user", + "pnls_max_lookback_days", + "loss_allowance_pct", + "stuck_threshold", + "unstuck_close_pct", + "TWE_long", + "TWE_short", + "universal_live_config", + ] + ] + ): + # PB multi live config + for key1 in template["live"]: + if key1 in config: + template["live"][key1] = config[key1] + if config["approved_symbols"] and isinstance(config["approved_symbols"], dict): + template["live"]["coin_flags"] = config["approved_symbols"] + template["live"]["approved_coins"] = sorted(set(config["approved_symbols"])) + template["live"]["ignored_coins"] = sorted(set(config["ignored_symbols"])) + for pside in ["long", "short"]: + for key in template["bot"][pside]: + if key in cmap_inv and cmap_inv[key] in config["universal_live_config"][pside]: + template["bot"][pside][key] = config["universal_live_config"][pside][ + cmap_inv[key] + ] + close_grid_qty_pct = 1.0 / round(config["universal_live_config"][pside]["n_close_orders"]) + template["bot"][pside]["close_grid_qty_pct"] = 1.0 / round( + config["universal_live_config"][pside]["n_close_orders"] + ) + for key in [ + "close_trailing_grid_ratio", + "close_trailing_retracement_pct", + "close_trailing_threshold_pct", + "entry_trailing_grid_ratio", + "entry_trailing_retracement_pct", + "entry_trailing_threshold_pct", + "unstuck_ema_dist", + ]: + template["bot"][pside][key] = 0.0 + if config[f"n_longs"] == 0 and config[f"n_shorts"] == 0: + forager_mode = False + # not forager mode + n_positions = len(template["live"]["coin_flags"]) + else: + n_positions = config[f"n_{pside}s"] + template["bot"][pside]["n_positions"] = n_positions + template["bot"][pside]["unstuck_close_pct"] = config["unstuck_close_pct"] + template["bot"][pside]["unstuck_loss_allowance_pct"] = config["loss_allowance_pct"] + template["bot"][pside]["unstuck_threshold"] = config["stuck_threshold"] + template["bot"][pside]["total_wallet_exposure_limit"] = ( + config[f"TWE_{pside}"] if config[f"{pside}_enabled"] else 0.0 + ) + result = template + elif "common" in config: + # older v7 config type + for k0 in ["backtest", "live", "optimize", "bot"]: + for k1 in config[k0]: + if k1 in template[k0]: + template[k0][k1] = config[k0][k1] + for key in config["common"]: + if key in template["live"]: + template["live"][key] = config["common"][key] + template["live"]["approved_coins"] = config["common"]["approved_symbols"] + template["live"]["coin_flags"] = config["common"]["symbol_flags"] + result = template + elif all([k in config for k in template]): + result = deepcopy(config) + elif all([k in config for k in ["analysis", "config"]]) and all( + [k in config["config"] for k in template] + ): + result = deepcopy(config["config"]) + else: + raise Exception(f"failed to format config") + for k0, v0, v1 in [("close_trailing_qty_pct", 1.0, [0.05, 1.0])]: + for pside in ["long", "short"]: + if k0 not in result["bot"][pside]: + result["bot"][pside][k0] = v0 + if verbose: + print(f"adding missing parameter {k0}: {v0}") + opt_key = f"{pside}_{k0}" + if opt_key not in result["optimize"]["bounds"]: + result["optimize"]["bounds"][opt_key] = v1 + if verbose: + print(f"adding missing parameter {opt_key}: {v1}") + for k0, k1, v in [ + ("live", "time_in_force", "good_till_cancelled"), + ("live", "noisiness_rolling_mean_window_size", 60), + ("optimize", "scoring", ["mdg", "sharpe_ratio"]), + ]: + if k1 not in result[k0]: + result[k0][k1] = v + if verbose: + print(f"adding missing parameter {k0} {k1}: {v}") + for k0, src, dst in [("live", "minimum_market_age_days", "minimum_coin_age_days")]: + if src in result[k0]: + result[k0][dst] = deepcopy(result[k0][src]) + if verbose: + print(f"renaming parameter {k0} {src}: {dst}") + del result[k0][src] + if result["live"]["approved_coins"]: + result["live"]["approved_coins"] = coins_to_symbols( + result["live"]["approved_coins"], verbose=verbose + ) + result["backtest"]["symbols"] = result["live"]["approved_coins"] + else: + result["backtest"]["symbols"] = get_all_eligible_symbols(result["backtest"]["exchange"]) + return result + + +def get_all_eligible_symbols(exchange="binance"): + exchange_map = { + "bybit": "bybit", + "binance": "binanceusdm", + # "bitget": "bitget", TODO + # "hyperliquid": "hyperliquid", TODO + # "gateio": "gateio", TODO + } + quote_map = {k: "USDT" for k in exchange_map} + quote_map["hyperliquid"] = "USDC" + if exchange not in exchange_map: + raise Exception(f"only exchanges {list(exchange_map.values())} are supported for backtesting") + filepath = make_get_filepath(f"caches/{exchange}/eligible_symbols.json") + loaded_json = None + try: + loaded_json = json.load(open(filepath)) + assert utc_ms() - get_file_mod_utc(filepath) < 1000 * 60 * 60 * 24 + return loaded_json + except Exception as e: + pass + try: + quote = quote_map[exchange] + import ccxt + + cc = getattr(ccxt, exchange_map[exchange])() + markets = cc.fetch_markets() + symbols = [ + x["symbol"] for x in markets if "symbol" in x and x["symbol"].endswith(f":{quote}") + ] + eligible_symbols = sorted(set([x.replace(f"/{quote}:", "") for x in symbols])) + eligible_symbols = [x for x in eligible_symbols if x] + json.dump(eligible_symbols, open(filepath, "w")) + return eligible_symbols + except Exception as e: + print(f"error fetching eligible symbols {e}") + if loaded_json: + print(f"using cached data") + return loaded_json + raise Exception("unable to fetch or load from cache") + + +def coin_to_symbol(coin: str, eligible_symbols=None, verbose=True): + # formats coin to appropriate symbol + if eligible_symbols is None: + eligible_symbols = get_all_eligible_symbols() + coin = symbol_to_coin(coin) + candidates = [x for x in eligible_symbols if coin in x] + if len(candidates) == 1: + return candidates[0] + if len(candidates) == 0: + if verbose: + print(f"no candidate symbol found for {coin}") + return None + for x in candidates: + if x.replace("USDT", "") == coin: + return x + if coin == "": + return None + if verbose: + print(f"ambiguous coin: {coin}, candidates: {candidates}") + return None + + +def coins_to_symbols(coins: [str], eligible_symbols=None, verbose=True): + eligible_symbols = get_all_eligible_symbols() + symbols = [coin_to_symbol(x, eligible_symbols, verbose=verbose) for x in coins] + return sorted(set([x for x in symbols if x])) + + +def load_config(filepath: str) -> dict: + # loads hjson or json v7 config + try: + config = load_hjson_config(filepath) + config = format_config(config) + return config + except Exception as e: + raise Exception(f"failed to load config {filepath}: {e}") + + +def dump_config(config: dict, filepath: str): + dump_pretty_json(config, filepath) + + +def dump_pretty_json(data: dict, filepath: str): + try: + with open(filepath, "w") as f: + f.write(config_pretty_str(sort_dict_keys(data))) + except Exception as e: + raise Exception(f"failed to dump data {filepath}: {e}") + + def load_live_config(live_config_path: str) -> dict: try: live_config = json.load(open(live_config_path)) @@ -346,13 +569,6 @@ async def fetch_market_specific_settings_old(config: dict): settings_from_exchange["maker_fee"] = 0.0002 settings_from_exchange["taker_fee"] = 0.0005 settings_from_exchange["exchange"] = "okx" - elif exchange == "bingx": - if "spot" in config["market_type"]: - raise Exception("spot not implemented on bingx") - bot = await create_bingx_bot(tmp_live_settings) - settings_from_exchange["maker_fee"] = 0.0002 - settings_from_exchange["taker_fee"] = 0.0005 - settings_from_exchange["exchange"] = "bingx" else: raise Exception(f"unknown exchange {exchange}") if hasattr(bot, "session"): @@ -433,14 +649,6 @@ async def create_kucoin_bot(config: dict): return bot -async def create_bingx_bot(config: dict): - from exchanges.bingx import BingXBot - - bot = BingXBot(config) - await bot._init() - return bot - - def add_argparse_args(parser): parser.add_argument("--nojit", help="disable numba", action="store_true") parser.add_argument( @@ -596,19 +804,36 @@ def print_async_exception(coro): async def get_first_ohlcv_timestamps(cc=None, symbols=None, cache=True): + supported_exchanges = [ + "binanceusdm", + "bybit", + "bitget", + "okx", + "hyperliquid", + "gateio", + ] + default_exchange = "binanceusdm" + if symbols is not None and cc is None: + cache_fname = f"caches/first_ohlcv_timestamps_{default_exchange}.json" + try: + first_timestamps = json.load(open(cache_fname)) + if all([symbol in first_timestamps for symbol in symbols]): + return first_timestamps + except: + pass if cc is None: import ccxt.async_support as ccxt cc = ccxt.binanceusdm() else: - supported_exchanges = ["binanceusdm", "bybit", "bitget", "okx", "bingx", "hyperliquid"] if cc.id not in supported_exchanges: print(f"get_first_ohlcv_timestamps() currently only supports {supported_exchanges}") return {} try: if symbols is None: markets = await cc.load_markets() - symbols = sorted([x for x in markets if markets[x]["swap"] and markets[x]["active"]]) + symbols = [x for x in markets if markets[x]["swap"] and markets[x]["active"]] + symbols.sort() n = 30 first_timestamps = {} cache_fname = f"caches/first_ohlcv_timestamps_{cc.id}.json" @@ -633,7 +858,7 @@ async def get_first_ohlcv_timestamps(cc=None, symbols=None, cache=True): ) ) else: - if cc.id in ["hyperliquid"]: + if cc.id in ["hyperliquid", "gateio"]: timeframe_ = "1w" else: timeframe_ = "1M" @@ -678,8 +903,16 @@ def assert_correct_ccxt_version(version=None, ccxt=None): def load_ccxt_version(): try: - with open("requirements_liveonly.txt") as f: + # Get the directory of the current script + script_dir = os.path.dirname(os.path.abspath(__file__)) + # Construct the path to the requirements.txt file + requirements_path = os.path.join(script_dir, "..", "requirements.txt") + + # Open and read the requirements.txt file + with open(requirements_path, "r") as f: lines = f.readlines() + + # Find the line with 'ccxt' and extract the version number ccxt_line = [line for line in lines if "ccxt" in line][0].strip() return ccxt_line[ccxt_line.find("==") + 2 :] except Exception as e: @@ -698,7 +931,6 @@ def fetch_market_specific_settings_multi(symbols=None, exchange="binance"): "bybit": "bybit", "binance": "binanceusdm", # "bitget": "bitget", - # "bingx": "bingx", } cc = getattr(ccxt, exchange_map[exchange])() cc.options["defaultType"] = "swap" @@ -874,6 +1106,55 @@ def fetch_market_specific_settings(config: dict): return sort_dict_keys(settings_from_exchange) +def create_acronym(full_name): + return "".join(word[0] for word in full_name.split("_")) + + +def add_arguments_recursively(parser, config, prefix=""): + acronyms = set() + + for key, value in config.items(): + full_name = f"{prefix}{key}" + + if isinstance(value, dict): + add_arguments_recursively(parser, value, f"{full_name}_") + else: + acronym = create_acronym(full_name) + i = 2 + while acronym in acronyms: + acronym = create_acronym(full_name) + str(i) + i += 1 + if i > 100: + raise Exception(f"too many acronym duplicates {acronym}") + break + parser.add_argument( + f"--{full_name}", + f"-{acronym}", + type=type(value), + dest=full_name, + required=False, + default=None, + help=f"Override {full_name}", + ) + acronyms.add(acronym) + + +def recursive_config_update(config, key, value): + if key in config: + print(f"changed {key} {config[key]} -> {value}") + config[key] = value + return True + key_split = key.split("_") + if key_split[0] in config: + return recursive_config_update(config[key_split[0]], "_".join(key_split[1:]), value) + + +def update_config_with_args(config, args): + for key, value in vars(args).items(): + if value is not None: + recursive_config_update(config, key, value) + + def main(): mssm = fetch_market_specific_settings_multi(exchange="bybit") # pprint.pprint(mssm) @@ -885,7 +1166,7 @@ def main(): return """ # for exchange in ["bitget"]: - for exchange in ["kucoin", "bitget", "binance", "bybit", "okx", "bingx"]: + for exchange in ["kucoin", "bitget", "binance", "bybit", "okx"]: cfg = {"exchange": exchange, "symbol": "ETHUSDT", "market_type": "futures"} try: mss = fetch_market_specific_settings(cfg) diff --git a/pure_funcs.py b/src/pure_funcs.py similarity index 89% rename from pure_funcs.py rename to src/pure_funcs.py index 8ce989c3e..bd08dd4bc 100644 --- a/pure_funcs.py +++ b/src/pure_funcs.py @@ -494,7 +494,150 @@ def flatten(lst: list) -> list: def get_template_live_config(passivbot_mode="neat_grid"): - if passivbot_mode == "multi_hjson": + if passivbot_mode == "v7": + return { + "backtest": { + "base_dir": "backtests", + "end_date": "now", + "exchange": "binance", + "start_date": "2021-05-01", + "starting_balance": 100000.0, + }, + "bot": { + "long": { + "close_grid_markup_range": 0.0255, + "close_grid_min_markup": 0.0089, + "close_grid_qty_pct": 0.125, + "close_trailing_grid_ratio": 0.5, + "close_trailing_qty_pct": 0.125, + "close_trailing_retracement_pct": 0.002, + "close_trailing_threshold_pct": 0.008, + "ema_span_0": 1318.0, + "ema_span_1": 1435.0, + "entry_grid_double_down_factor": 0.894, + "entry_grid_spacing_pct": 0.04, + "entry_grid_spacing_weight": 0.697, + "entry_initial_ema_dist": -0.00738, + "entry_initial_qty_pct": 0.00592, + "entry_trailing_grid_ratio": 0.5, + "entry_trailing_retracement_pct": 0.01, + "entry_trailing_threshold_pct": 0.05, + "n_positions": 10.0, + "total_wallet_exposure_limit": 1.7, + "unstuck_close_pct": 0.001, + "unstuck_ema_dist": 0.0, + "unstuck_loss_allowance_pct": 0.03, + "unstuck_threshold": 0.916, + }, + "short": { + "close_grid_markup_range": 0.0255, + "close_grid_min_markup": 0.0089, + "close_grid_qty_pct": 0.125, + "close_trailing_grid_ratio": 0.5, + "close_trailing_qty_pct": 0.125, + "close_trailing_retracement_pct": 0.002, + "close_trailing_threshold_pct": 0.008, + "ema_span_0": 1318.0, + "ema_span_1": 1435.0, + "entry_grid_double_down_factor": 0.894, + "entry_grid_spacing_pct": 0.04, + "entry_grid_spacing_weight": 0.697, + "entry_initial_ema_dist": -0.00738, + "entry_initial_qty_pct": 0.00592, + "entry_trailing_grid_ratio": 0.5, + "entry_trailing_retracement_pct": 0.01, + "entry_trailing_threshold_pct": 0.05, + "n_positions": 10.0, + "total_wallet_exposure_limit": 1.7, + "unstuck_close_pct": 0.001, + "unstuck_ema_dist": 0.0, + "unstuck_loss_allowance_pct": 0.03, + "unstuck_threshold": 0.916, + }, + }, + "live": { + "approved_coins": ["BCH", "BTC", "DOGE", "ETH", "LTC", "XLM", "XRP"], + "auto_gs": True, + "coin_flags": {}, + "execution_delay_seconds": 2.0, + "filter_by_min_effective_cost": True, + "forced_mode_long": "", + "forced_mode_short": "", + "ignored_coins": ["COIN1", "COIN2"], + "leverage": 10.0, + "max_n_cancellations_per_batch": 5, + "max_n_creations_per_batch": 3, + "minimum_coin_age_days": 7.0, + "noisiness_rolling_mean_window_size": 60, + "pnls_max_lookback_days": 30.0, + "price_distance_threshold": 0.002, + "relative_volume_filter_clip_pct": 0.1, + "time_in_force": "good_till_cancelled", + "user": "bybit_01", + }, + "optimize": { + "bounds": { + "long_close_grid_markup_range": [0.0, 0.03], + "long_close_grid_min_markup": [0.001, 0.03], + "long_close_grid_qty_pct": [0.05, 1.0], + "long_close_trailing_grid_ratio": [-1.0, 1.0], + "long_close_trailing_qty_pct": [0.05, 1.0], + "long_close_trailing_retracement_pct": [0.0, 0.1], + "long_close_trailing_threshold_pct": [-0.1, 0.1], + "long_ema_span_0": [200.0, 1440.0], + "long_ema_span_1": [200.0, 1440.0], + "long_entry_grid_double_down_factor": [0.1, 3.0], + "long_entry_grid_spacing_pct": [0.005, 0.12], + "long_entry_grid_spacing_weight": [0.0, 2.0], + "long_entry_initial_ema_dist": [-0.1, 0.002], + "long_entry_initial_qty_pct": [0.005, 0.1], + "long_entry_trailing_grid_ratio": [-1.0, 1.0], + "long_entry_trailing_retracement_pct": [0.0, 0.1], + "long_entry_trailing_threshold_pct": [-0.1, 0.1], + "long_n_positions": [1.0, 20.0], + "long_total_wallet_exposure_limit": [0.0, 2.0], + "long_unstuck_close_pct": [0.001, 0.1], + "long_unstuck_ema_dist": [-0.1, 0.01], + "long_unstuck_loss_allowance_pct": [0.001, 0.05], + "long_unstuck_threshold": [0.4, 0.95], + "short_close_grid_markup_range": [0.0, 0.03], + "short_close_grid_min_markup": [0.001, 0.03], + "short_close_grid_qty_pct": [0.05, 1.0], + "short_close_trailing_grid_ratio": [-1.0, 1.0], + "short_close_trailing_qty_pct": [0.05, 1.0], + "short_close_trailing_retracement_pct": [0.0, 0.1], + "short_close_trailing_threshold_pct": [-0.1, 0.1], + "short_ema_span_0": [200.0, 1440.0], + "short_ema_span_1": [200.0, 1440.0], + "short_entry_grid_double_down_factor": [0.1, 3.0], + "short_entry_grid_spacing_pct": [0.005, 0.12], + "short_entry_grid_spacing_weight": [0.0, 2.0], + "short_entry_initial_ema_dist": [-0.1, 0.002], + "short_entry_initial_qty_pct": [0.005, 0.1], + "short_entry_trailing_grid_ratio": [-1.0, 1.0], + "short_entry_trailing_retracement_pct": [0.0, 0.1], + "short_entry_trailing_threshold_pct": [-0.1, 0.1], + "short_n_positions": [1.0, 20.0], + "short_total_wallet_exposure_limit": [0.0, 2.0], + "short_unstuck_close_pct": [0.001, 0.1], + "short_unstuck_ema_dist": [-0.1, 0.01], + "short_unstuck_loss_allowance_pct": [0.001, 0.05], + "short_unstuck_threshold": [0.4, 0.95], + }, + "crossover_probability": 0.7, + "iters": 30000, + "limits": { + "lower_bound_drawdown_worst": 0.5, + "lower_bound_equity_balance_diff_mean": 0.03, + "lower_bound_loss_profit_ratio": 0.75, + }, + "mutation_probability": 0.2, + "n_cpus": 5, + "population_size": 500, + "scoring": ["adg", "sharpe_ratio"], + }, + } + elif passivbot_mode == "multi_hjson": return { "user": "bybit_01", "pnls_max_lookback_days": 30, @@ -522,7 +665,7 @@ def get_template_live_config(passivbot_mode="neat_grid"): "n_shorts": 0, "forced_mode_long": "", "forced_mode_short": "", - "minimum_market_age_days": 60, + "minimum_coin_age_days": 60, "ohlcv_interval": "15m", "relative_volume_filter_clip_pct": 0.1, "n_ohlcvs": 100, @@ -2232,7 +2375,7 @@ def determine_side_from_order_tuple(order_tuple): raise Exception(f"malformed order tuple {order_tuple}") -def symbol2coin(symbol: str) -> str: +def symbol_to_coin(symbol: str) -> str: coin = symbol for x in ["USDT", "USDC", "BUSD", "USD", "/:"]: coin = coin.replace(x, "") @@ -2271,7 +2414,7 @@ def backtested_multiconfig2singleconfig(backtested_config: dict) -> dict: for key in backtested_config["live_config"][pside]: template[pside][key] = backtested_config["live_config"][pside][key] template["config_name"] = "_".join( - [symbol2coin(sym) for sym in backtested_config["args"]["symbols"]] + [symbol_to_coin(sym) for sym in backtested_config["args"]["symbols"]] ) return template @@ -2303,6 +2446,9 @@ def add_missing_params_to_hjson_live_multi_config(config: dict) -> (dict, [str]) if "universal_live_config" not in config: logging_lines.append(f"adding missing config param: 'universal_live_config': {{}}") config_copy["universal_live_config"] = {} + if "minimum_coin_age_days" not in config and "minimum_market_age_days" in config: + logging_lines.append(f"changed 'minimum_market_age_days' -> 'minimum_coin_age_days'") + config_copy["minimum_coin_age_days"] = config_copy["minimum_market_age_days"] template = get_template_live_config("multi_hjson") for key, val in template.items(): @@ -2337,3 +2483,66 @@ def expand_PB_mode(mode: str) -> str: return "tp_only" else: raise Exception(f"unknown passivbot mode {mode}") + + +def extract_and_sort_by_keys_recursive(nested_dict): + """ + Extracts values from a nested dictionary of arbitrary depth, sorted by their keys. + + Args: + nested_dict (dict): A dictionary where each value may be another dictionary. + + Returns: + list: A list of values, where each value is a list of values from inner dictionaries sorted by their keys. + """ + if not isinstance(nested_dict, dict): + return nested_dict + + sorted_values = [] + for key in sorted(nested_dict.keys()): + value = nested_dict[key] + sorted_values.append(extract_and_sort_by_keys_recursive(value)) + + return sorted_values + + +def v7_to_v6(config): + template = get_template_live_config("multi_hjson") + live_map = {"approved_coins": "approved_symbols"} + bot_map = { + "entry_grid_double_down_factor": "ddown_factor", + "entry_initial_ema_dist": "initial_eprice_ema_dist", + "entry_initial_qty_pct": "initial_qty_pct", + "close_grid_markup_range": "markup_range", + "close_grid_min_markup": "min_markup", + "entry_grid_spacing_pct": "rentry_pprice_dist", + "entry_grid_spacing_weight": "rentry_pprice_dist_wallet_exposure_weighting", + "ema_span_0": "ema_span_0", + "ema_span_1": "ema_span_1", + } + for k, v in config["live"].items(): + if k in template: + template[k] = v + elif k in live_map and live_map[k] in template: + template[live_map[k]] = v + for pside in ["long", "short"]: + for k, v in config["bot"][pside].items(): + if k in template["universal_live_config"][pside]: + template["universal_live_config"][pside][k] = v + elif k in bot_map and bot_map[k] in template["universal_live_config"][pside]: + template["universal_live_config"][pside][bot_map[k]] = v + elif "total_wallet_exposure" in k: + template[f"TWE_{pside}"] = v + template["universal_live_config"][pside]["n_close_orders"] = 1.0 / max( + config["bot"][pside]["close_grid_qty_pct"], 0.05 + ) + template[f"{pside}_enabled"] = ( + config["bot"][pside]["n_positions"] > 0.0 + and config["bot"][pside]["total_wallet_exposure_limit"] > 0.0 + ) + template[f"n_{pside}s"] = config["bot"][pside]["n_positions"] + template["loss_allowance_pct"] = config["bot"]["long"]["unstuck_loss_allowance_pct"] + template["unstuck_close_pct"] = config["bot"]["long"]["unstuck_close_pct"] + template["stuck_threshold"] = config["bot"]["long"]["unstuck_threshold"] + + return template diff --git a/tools/extract_best_multi_config.py b/src/tools/extract_best_config.py similarity index 60% rename from tools/extract_best_multi_config.py rename to src/tools/extract_best_config.py index 0c22967c3..fdca33422 100644 --- a/tools/extract_best_multi_config.py +++ b/src/tools/extract_best_config.py @@ -4,13 +4,20 @@ import pandas as pd import argparse import sys +import pprint sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) -from procedures import utc_ms, make_get_filepath +from pure_funcs import config_pretty_str +from copy import deepcopy + +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) +from procedures import utc_ms, make_get_filepath, dump_config, format_config from pure_funcs import ( flatten_dict, ts_to_date_utc, backtested_multiconfig2live_multiconfig, + sort_dict_keys, + config_pretty_str, ) @@ -72,7 +79,7 @@ def process_single(file_location, verbose=False): print_ = gprint(verbose) try: result = json.load(open(file_location)) - print_(json.dumps(result, indent=4)) + print_(config_pretty_str(sort_dict_keys(result))) return result except: pass @@ -82,52 +89,46 @@ def process_single(file_location, verbose=False): xs = [json.loads(x) for x in lines if x] res = pd.DataFrame([flatten_dict(x) for x in xs]) - worst_drawdown_lower_bound = res.iloc[0].args_worst_drawdown_lower_bound - print_("worst_drawdown_lower_bound", worst_drawdown_lower_bound) - - keys, higher_is_better = ["w_adg_weighted", "w_sharpe_ratio"], [False, False] + keys, higher_is_better = ["w_0", "w_1"], [False, False] keys = ["analysis_" + key for key in keys] - candidates = res[res.analysis_worst_drawdown <= worst_drawdown_lower_bound][keys] + candidates = res[(res.analysis_w_0 <= 0.0) & (res.analysis_w_1 <= 0.0)][keys] print_("n candidates", len(candidates)) - pareto = candidates.loc[ - calc_pareto_front_d( - {i: x for i, x in zip(candidates.index, candidates.values)}, higher_is_better + if len(candidates) == 1: + best = candidates.iloc[0].name + else: + pareto = candidates.loc[ + calc_pareto_front_d( + {i: x for i, x in zip(candidates.index, candidates.values)}, higher_is_better + ) + ] + + cands_norm = (candidates - candidates.min()) / (candidates.max() - candidates.min()) + pareto_norm = (pareto - candidates.min()) / (candidates.max() - candidates.min()) + dists = [calc_dist(p, [float(x) for x in higher_is_better]) for p in pareto_norm.values] + pareto_w_dists = pareto_norm.join( + pd.Series(dists, name="dist_to_ideal", index=pareto_norm.index) ) - ] - - cands_norm = (candidates - candidates.min()) / (candidates.max() - candidates.min()) - pareto_norm = (pareto - candidates.min()) / (candidates.max() - candidates.min()) - dists = [calc_dist(p, [float(x) for x in higher_is_better]) for p in pareto_norm.values] - pareto_w_dists = pareto_norm.join(pd.Series(dists, name="dists", index=pareto_norm.index)) - closest_to_ideal = pareto_w_dists.sort_values("dists") - best = closest_to_ideal.dists.idxmin() - print_("best") - print_(candidates.loc[best]) - print_("pareto front:") - print_(pareto.loc[closest_to_ideal.index]) - - # Processing the best result for configuration + closest_to_ideal = pareto_w_dists.sort_values("dist_to_ideal") + best = closest_to_ideal.dist_to_ideal.idxmin() + print_("best") + print_(candidates.loc[best]) + print_("pareto front:") + res_to_print = res[[x for x in res.columns if "analysis" in x]].loc[closest_to_ideal.index] + res_to_print.columns = [x.replace("analysis_", "") for x in res_to_print.columns] + print_(res_to_print) + + # Processing the best result for configuration best_d = xs[best] best_d["analysis"]["n_iters"] = len(lines) - cfg = best_d["live_config"] - cfg["long"]["wallet_exposure_limit"] = cfg["global"]["TWE_long"] / len(best_d["args"]["symbols"]) - cfg["short"]["wallet_exposure_limit"] = cfg["global"]["TWE_short"] / len( - best_d["args"]["symbols"] - ) - cfg["long"]["enabled"] = best_d["args"]["long_enabled"] - cfg["short"]["enabled"] = best_d["args"]["short_enabled"] - fjson = json.dumps(best_d, indent=4, sort_keys=True) + best_d.update(deepcopy(best_d["config"])) + del best_d["config"] + fjson = config_pretty_str(best_d) print_(fjson) - coins = "".join([s.replace("USDT", "") for s in best_d["args"]["symbols"]]) - coins = [s.replace("USDT", "") for s in best_d["args"]["symbols"]] + coins = [s.replace("USDT", "") for s in best_d["backtest"]["symbols"]] print_(file_location) - fname = os.path.split(file_location)[-1].replace("_all_results.txt", "") - coins_str = "_".join(coins) if len(coins) <= 5 else f"{len(coins)}_coins" - if coins_str not in fname: - fname += "_" + coins_str - fname += ".json" - full_path = make_get_filepath(os.path.join("results_multi_analysis", fname)) - json.dump(best_d, open(full_path, "w"), indent=4, sort_keys=True) + fname = os.path.split(file_location)[-1].replace("_all_results.txt", "") + ".json" + full_path = make_get_filepath(os.path.join("opt_results_forager_analysis", fname)) + dump_config(format_config(best_d), full_path) return best_d @@ -145,12 +146,7 @@ def main(args): result = process_single(args.file_location, args.verbose) print(f"successfully processed {args.file_location}") if args.user is not None: - live_config = backtested_multiconfig2live_multiconfig(result) - live_config["user"] = args.user - now = ts_to_date_utc(utc_ms())[:19].replace(":", "_") - fpath = f"configs/live/{now}_{args.user}.hjson" - hjson.dump(live_config, open(fpath, "w")) - print(f"successfully dumped live config {fpath}") + pass except Exception as e: print(f"error with {args.file_location} {e}") diff --git a/tools/extract_best_configs.py b/tools/extract_best_configs.py deleted file mode 100644 index f76441613..000000000 --- a/tools/extract_best_configs.py +++ /dev/null @@ -1,64 +0,0 @@ -import os - -os.environ["NOJIT"] = "true" -import time -import json -import pprint -import subprocess -import shutil -import sys - -sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) -from procedures import dump_live_config, make_get_filepath, ts_to_date - - -def main(): - oj = lambda *x: os.path.join(*x) - algorithm = "particle_swarm_optimization" - passivbot_mode = "neat_grid" - d0 = f"results_{algorithm}_{passivbot_mode}" - d0 = sys.argv[1] - if "clock" in d0: - passivbot_mode = "clock" - elif "neat" in d0: - passivbot_mode = "neat_grid" - elif "recursive" in d0: - passivbot_mode = "recursive_grid" - elif "static" in d0: - passivbot_mode = "static_grid" - else: - raise Exception("unknown passivbot_mode") - if "harmony_search" in d0: - algorithm = "harmony_search" - elif "particle_swarm_optimization" in d0: - algorithm = "particle_swarm_optimization" - else: - raise Exception("unknown algorithm") - date_now = ts_to_date(time.time())[:19] - dump_dir = make_get_filepath( - f"configs/extracted/{algorithm}_{passivbot_mode}_{date_now.replace(':', '_')}/" - ) - symbols_done = set() - for d1 in sorted(os.listdir(d0))[::-1]: - fp = oj(d0, d1, "all_results.txt") - symbol = d1[20:] - if not os.path.exists(fp) or symbol in symbols_done: - print("skipping", fp) - continue - symbols_done.add(symbol) - subprocess.run(["python3", "inspect_opt_results.py", fp, "-d"]) - shutil.move( - oj(d0, d1, "all_results_best_config.json"), - oj(dump_dir, f"{symbol}.json"), - ) - try: - shutil.copy( - oj(d0, d1, "table_best_config.txt"), - oj(dump_dir, f"{symbol}_inspect_results.txt"), - ) - except Exception as e: - print("error copying", e) - - -if __name__ == "__main__": - main() diff --git a/tools/filter_coins.py b/tools/filter_coins.py deleted file mode 100644 index 15e73ca51..000000000 --- a/tools/filter_coins.py +++ /dev/null @@ -1,372 +0,0 @@ -import pandas as pd -import pprint -import argparse -import ccxt.async_support as ccxt -import numpy as np -import argparse -import hjson -import json -import asyncio - -import os - -os.environ["NOJIT"] = "true" - -import sys - -sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) - -from forager import get_min_costs_and_contract_multipliers -from procedures import load_live_config, utc_ms, make_get_filepath, get_first_ohlcv_timestamps -from pure_funcs import floatify, ts_to_date_utc, date2ts_utc, str2bool, symbol2coin - - -def parse_backtest_metrics(): - path = "configs/live/multisymbol/metrics_no_AU.txt" - - with open(path) as f: - all_lines = f.readlines() - longs = [] - shorts = [] - k = 0 - for line in all_lines: - xs = line.replace("|", "").split() - if xs and xs[0] == "symbol": - column_names = xs - if xs == ["long"]: - k = 1 - elif xs == ["short"]: - k = 2 - if k == 1: - if xs and "USDT" in xs[0]: - longs.append(floatify(xs)) - if k == 2: - if xs and "USDT" in xs[0]: - shorts.append(floatify(xs)) - longs = pd.DataFrame(longs, columns=column_names) - shorts = pd.DataFrame(shorts, columns=column_names) - return longs, shorts - - -async def load_min_costs_single(exchange): - results = [] - print(f"fetching info for {exchange}") - cc = getattr(ccxt, exchange)() - cc.options["defaultType"] = "swap" - min_costs = {"bitget": 5.0, "bingx": 2.0, "hyperliquid": 10.0} - quotes = {x: "USDT" for x in ["binanceusdm", "bybit", "okx", "bitget", "bingx"]} - quotes["hyperliquid"] = "USDC" - markets = await cc.load_markets() - if exchange == "hyperliquid": - coin2symbol_map = {markets[symbol]["info"]["name"]: symbol for symbol in markets} - fetched = await cc.fetch( - "https://api.hyperliquid.xyz/info", - method="POST", - headers={"Content-Type": "application/json"}, - body=json.dumps({"type": "allMids"}), - ) - tickers = { - coin2symbol_map[coin]: { - "bid": float(fetched[coin]), - "ask": float(fetched[coin]), - "last": float(fetched[coin]), - } - for coin in coin2symbol_map - } - else: - tickers = await cc.fetch_tickers() - first_timestamps = await get_first_ohlcv_timestamps(cc) - for symbol in markets: - if not symbol.endswith(f"/{quotes[exchange]}:{quotes[exchange]}"): - continue - if not markets[symbol]["swap"] or not markets[symbol]["active"]: - continue - if symbol not in first_timestamps: - continue - if markets[symbol]["limits"]["cost"]["min"] is None: - if exchange in min_costs: - min_cost = min_costs[exchange] - else: - min_cost = 0.0 - else: - min_cost = markets[symbol]["limits"]["cost"]["min"] - if exchange == "hyperliquid": - min_qty = markets[symbol]["precision"]["amount"] - else: - min_qty = markets[symbol]["limits"]["amount"]["min"] - c_mult = markets[symbol]["contractSize"] - results.append( - { - "exchange": cc.id, - "symbol": symbol, - "min_qty": min_qty, - "min_cost": min_cost, - "last_price": (last_price := tickers[symbol]["last"]), - "c_mult": c_mult, - "effective_min_cost": max(min_cost, min_qty * last_price * c_mult), - "first_timestamp": first_timestamps[symbol], - } - ) - return results - - -async def load_min_costs(exchanges=["binanceusdm", "bybit", "okx", "bitget", "bingx", "hyperliquid"]): - today = ts_to_date_utc(utc_ms())[:10] - filepath = make_get_filepath(f"caches/min_costs_{today}.csv") - if os.path.exists(filepath): - return pd.read_csv(filepath) - results = [] - for exchange in exchanges: - results_single = await load_min_costs_single(exchange) - results += results_single - print(f"writing to {filepath}") - mdf = pd.DataFrame(results) - mdf.to_csv(filepath) - return mdf - - -def load_live_configs(): - path = "configs/live/multisymbol/no_AU/" - configs = {} - for f in os.listdir(path): - try: - symbol = f[:-5] - configs[symbol] = load_live_config(os.path.join(path, f)) - except Exception as e: - print("error", f, e) - return configs - - -def generate_hjson_config(user, TWE_limit_long, long_enabled, symbols): - template = hjson.load(open("configs/live/example_config.hjson")) - template["user"] = user - template["TWE_long"] = TWE_limit_long - template["long_enabled"] = long_enabled - template["symbols"] = sorted(set(symbols)) - today = ts_to_date_utc(utc_ms())[:19].replace(":", "_") - filepath = make_get_filepath(f"configs/live/live_config_{user}_{today}.hjson") - hjson.dump(template, open(filepath, "w")) - print("dumped", filepath) - - -async def main(): - parser = argparse.ArgumentParser( - prog="filter_coins", - description="filter coins based on exchange, balance, WE_limit and n_syms", - ) - parser.add_argument( - "-e", - "--exchange", - type=str, - required=False, - dest="exchange", - default="bybit", - help="exchange (default bybit; choices [binance, bybit, okx, bitget, bingx, hyperliquid])", - ) - parser.add_argument( - "-bs", - "--backtested-since", - "--backtested_since", - type=str, - required=False, - dest="backtested_since", - default="2021-05-10", - help="backtested since (default '2021-05-10')", - ) - parser.add_argument( - "-nc", - type=int, - required=False, - dest="n_coins", - default=8, - help="n coins (default 8)", - ) - parser.add_argument( - "-b", - "--balance", - type=float, - required=False, - dest="balance", - default=1000.0, - help="specify balance (default 1000.0)", - ) - parser.add_argument( - "-tl", - "--total-wallet-exposure-long", - "--total_wallet_exposure_long", - type=float, - required=False, - dest="total_wallet_exposure_long", - default=2.0, - help="specify total wallet exposure long (default 2.0)", - ) - parser.add_argument( - "-ts", - "--total-wallet-exposure-short", - "--total_wallet_exposure_short", - type=float, - required=False, - dest="total_wallet_exposure_short", - default=2.0, - help="specify total wallet exposure short (default 2.0)", - ) - parser.add_argument( - "-le", - "--long_enabled", - "--long-enabled", - type=str2bool, - required=False, - dest="long_enabled", - default=True, - help="specify long_enabled (y/n or t/f)", - ) - parser.add_argument( - "-se", - "--short_enabled", - "--short-enabled", - type=str2bool, - required=False, - dest="short_enabled", - default=True, - help="specify short_enabled (y/n or t/f)", - ) - parser.add_argument( - "-mi", - "--min_initial_qty_pct", - "--min-initial-qty-pct", - type=float, - required=False, - dest="min_initial_qty_pct", - default=0.005, - help="specify min initial entry qty pct (default 0.005)", - ) - parser.add_argument( - "-u", - "--user", - type=str, - required=False, - dest="user", - default=None, - help="If given, will generate and dump live hjson config for user.", - ) - args = parser.parse_args() - - exchanges = ["binanceusdm", "bybit", "okx", "bitget", "bingx", "hyperliquid"] - exchange = args.exchange - if "binance" in exchange: - exchange = "binanceusdm" - assert exchange in exchanges, f"unknown exchange {exchange}" - backtested_since = args.backtested_since - n_coins = args.n_coins - balance = args.balance - TWE_limit_long = args.total_wallet_exposure_long - TWE_limit_short = args.total_wallet_exposure_short - long_enabled = args.long_enabled - short_enabled = args.short_enabled - initial_qty_pct_lower_bound = args.min_initial_qty_pct - - minimum_coin_backtest_age_days = (utc_ms() - date2ts_utc(backtested_since)) / ( - 1000 * 60 * 60 * 24 - ) - - longs, shorts = parse_backtest_metrics() - min_costs = await load_min_costs() - configs = load_live_configs() - - longs.loc[:, "symbol"] = longs.symbol.apply(symbol2coin) - shorts.loc[:, "symbol"] = shorts.symbol.apply(symbol2coin) - min_costs.loc[:, "symbol"] = min_costs.symbol.apply(symbol2coin) - configs = {symbol2coin(k): v for k, v in configs.items()} - - min_cost_lower_bound = min_costs[min_costs.exchange == exchange].effective_min_cost.median() - min_cost_upper_bound = balance * TWE_limit_long * initial_qty_pct_lower_bound / n_coins - - if min_cost_upper_bound < min_cost_lower_bound: - print("\n" + "#" * 40) - print(f"Median effective_min_cost for {exchange} is {min_cost_lower_bound}.") - print( - f"On {exchange} with balance {balance}, TWE limit long {TWE_limit_long} and initial qty pct {initial_qty_pct_lower_bound}," - ) - print( - f"minimum cost per long position is balance * TWE_limit_long * initial_qty_pct_lower_bound / n_coins == {min_cost_upper_bound}," - ) - print( - f"which is too low.", - ) - while n_coins > 1 and min_cost_upper_bound < min_cost_lower_bound: - n_coins -= 1 - min_cost_upper_bound = balance * TWE_limit_long * initial_qty_pct_lower_bound / n_coins - if min_cost_upper_bound < min_cost_lower_bound: - print(f"Balance is too low, even with only one coin.") - print(f"Try again with higher balance and/or higher TWE and/or on another exchange.") - print("#" * 40 + "\n") - return - print( - f"Reducing n_coins to {n_coins}. Now balance * TWE_limit_long * initial_qty_pct_lower_bound / n_coins == {min_cost_upper_bound}." - ) - print() - print("#" * 40 + "\n") - - first_timestamps = min_costs.groupby("symbol").first_timestamp.min() - - longs = longs.sort_values("symbol").reset_index() - shorts = shorts.sort_values("symbol").reset_index() - - scores = ( - longs.adg_w_per_exp + longs.adg_per_exp + shorts.adg_w_per_exp + shorts.adg_per_exp - ) / 4.0 - longs.loc[:, "score"] = scores - shorts.loc[:, "score"] = scores - - print(f"{'balance': <30} {balance}") - print(f"{'exchange': <30} {exchange}") - print(f"{'TWE_limit_long': <30} {TWE_limit_long}") - print(f"{'TWE_limit_short': <30} {TWE_limit_short}") - print(f"{'long_enabled': <30} {long_enabled}") - print(f"{'short_enabled': <30} {short_enabled}") - print(f"{'n_coins': <30} {n_coins}") - print(f"{'backtested_since': <30} {backtested_since}") - print(f"{'minimum_coin_backtest_age_days': <30} {minimum_coin_backtest_age_days}") - print(f"{'initial_qty_pct_lower_bound': <30} {initial_qty_pct_lower_bound}") - print(f"{'min_cost_upper_bound': <30} {min_cost_upper_bound}") - - eligible_coins = set( - min_costs[ - (min_costs.exchange == exchange) & (min_costs.effective_min_cost <= min_cost_upper_bound) - ].symbol - ) - longs_filtered = longs[ - (longs.symbol.isin(eligible_coins)) & (longs.n_days >= minimum_coin_backtest_age_days) - ].sort_values("score", ascending=False) - shorts_filtered = shorts[ - (shorts.symbol.isin(eligible_coins)) & (shorts.n_days >= minimum_coin_backtest_age_days) - ].sort_values("score", ascending=False) - - longs_filtered.loc[:, "first_timestamp"] = [ - first_timestamps[symbol] if symbol in first_timestamps else -1 - for symbol in longs_filtered.symbol.values - ] - longs_filtered.loc[:, "first_date"] = longs_filtered.first_timestamp.apply(ts_to_date_utc) - longs_filtered = longs_filtered.iloc[:n_coins] - columns_to_print = [ - "symbol", - "adg_w_per_exp", - "adg_per_exp", - "hrs_stuck_max", - "pa_dist_1pct_worst_mean", - "loss_profit_rt", - "drawdown_1pct_worst_mean", - "drawdown_max", - "n_days", - "first_timestamp", - "first_date", - ] - symbols = longs_filtered.symbol.values - longs_filtered = longs_filtered[columns_to_print] - print(longs_filtered) - if args.user is not None: - generate_hjson_config(args.user, TWE_limit_long, long_enabled, symbols) - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/tools/print_equities.py b/tools/print_equities.py deleted file mode 100644 index e9e50ac66..000000000 --- a/tools/print_equities.py +++ /dev/null @@ -1,227 +0,0 @@ -import os - -os.environ["NOJIT"] = "true" - -import ccxt.async_support as ccxt -import asyncio -import pprint -import time -import json -import argparse -import pandas as pd - -import sys - -sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) - -from procedures import ( - load_exchange_key_secret_passphrase, - create_binance_bot, - load_live_config, - utc_ms, -) -from pure_funcs import determine_passivbot_mode, date_to_ts2, ts_to_date_utc, floatify -from njit_funcs import round_dynamic, calc_diff - -pd.set_option("display.float_format", lambda x: "%.5f" % x) -MS2DAY = 1000 * 60 * 60 * 24 - - -def multi_replace(input_data, replacements: [(str, str)]): - if isinstance(input_data, str): - new_data = input_data - for old, new in replacements: - new_data = new_data.replace(old, new) - elif isinstance(input_data, list): - new_data = [] - for string in input_data: - for old, new in replacements: - string = string.replace(old, new) - new_data.append(string) - elif isinstance(input_data, dict): - new_data = {} - for key, string in input_data.items(): - for old, new in replacements: - string = string.replace(old, new) - new_data[key] = string - return new_data - - -def flatten_dict(d: dict, separator="_", parent_key=""): - items = [] - for key, value in d.items(): - new_key = f"{parent_key}{separator}{key}" if parent_key else key - if isinstance(value, dict): - items.extend(flatten_dict(value, separator, new_key).items()) - else: - items.append((new_key, value)) - return dict(items) - - -def calc_pprice_diff(elm): - if elm["position_side"] == "long": - return elm["pprice"] / elm["mark_price"] - 1 - else: - return elm["mark_price"] / elm["pprice"] - 1 - - -async def main(): - exchange_map = { - "kucoin": "kucoinfutures", - "okx": "okx", - "bybit": "bybit", - "binance": "binanceusdm", - "bitget": "bitget", - } - - parser = argparse.ArgumentParser(prog="print bals", description="print bals") - parser.add_argument("users", type=str, help="comma separated") - parser.add_argument( - "-nd", - "--n_days", - "--n-days", - type=float, - required=False, - dest="n_days", - default=None, - help="n days lookback", - ) - args = parser.parse_args() - users = args.users.split(",") - now = utc_ms() - all_data = {"timestamp": now, "date": ts_to_date_utc(now), "users": {}} - tickers = {} - log_path = "logs/equities_log.txt" - for user in users: - data = {} - exchange, key, secret, passphrase = load_exchange_key_secret_passphrase(user) - data["exchange"] = exchange - cc = getattr(ccxt, exchange_map[exchange])( - {"apiKey": key, "secret": secret, "password": passphrase} - ) - if exchange not in tickers: - tickers[exchange] = await cc.fetch_tickers() - for key in sorted(tickers[exchange]): - nkey = key + ":USDT" - if nkey not in tickers[exchange]: - tickers[exchange][nkey] = tickers[exchange][key] - if exchange == "bitget": - bal = await cc.private_mix_get_account_accounts({"productType": "umcbl"}) - for elm in bal["data"]: - if elm["marginCoin"] == "USDT": - bal = elm - break - else: - bal = await cc.fetch_balance() - - if exchange == "binance": - data["balance"] = float(bal["info"]["totalWalletBalance"]) - data["upnl"] = float(bal["info"]["totalCrossUnPnl"]) - elif exchange == "bybit": - data["balance"] = bal["total"]["USDT"] - for elm in bal["info"]["result"]["list"][0]["coin"]: - if elm["coin"] == "USDT": - break - data["upnl"] = float(elm["unrealisedPnl"]) - elif exchange == "bitget": - data["balance"] = float(bal["available"]) - data["upnl"] = float(bal["unrealizedPL"]) - else: - data["balance"] = bal["total"]["USDT"] - data["upnl"] = 0.0 - pos = await cc.fetch_positions() - data["positions"] = [ - { - "symbol": x["symbol"], - "psize": x["contracts"], - "pprice": x["entryPrice"], - "upnl": 0.0 if x["unrealizedPnl"] is None else x["unrealizedPnl"], - "position_side": x["side"], - "mark_price": (mark_price := tickers[exchange][x["symbol"]]["last"]), - "pcost": (pcost := x["contracts"] * x["entryPrice"]), - "wallet_exposure": pcost / data["balance"], - } - for x in pos - if x["contracts"] != 0.0 - ] - all_data["users"][user] = data.copy() - try: - await cc.close() - except: - pass - print(f"fetched data for {user}") - try: - with open(log_path, "a") as f: - f.write(f"{json.dumps(all_data)}\n") - except Exception as e: - print("failed writing log", e) - - try: - with open(log_path) as f: - lines = f.readlines() - except Exception as e: - print("failed reading log", e) - jsons = [json.loads(line) for line in lines] - if args.n_days is not None: - jsons = [x for x in jsons if x["timestamp"] > now - 1000 * 60 * 60 * 24 * args.n_days] - - dfts = [] - first = None - for x in jsons: - user_data = {} - for user in users: - dat = x["users"][user] - df = pd.DataFrame(dat["positions"]) - dat["upnl_pct"] = dat["upnl"] / dat["balance"] - dat["WE_long"] = df[df.position_side == "long"].wallet_exposure.sum() - dat["WE_short"] = df[df.position_side == "short"].wallet_exposure.sum() - dat["pcost_long"] = df[df.position_side == "long"].pcost.sum() - dat["pcost_short"] = df[df.position_side == "short"].pcost.sum() - dat["upnl_long"] = df[df.position_side == "long"].upnl.sum() - dat["upnl_short"] = df[df.position_side == "short"].upnl.sum() - dat["upnl_pct_long"] = dat["upnl_long"] / dat["balance"] - dat["upnl_pct_short"] = dat["upnl_short"] / dat["balance"] - # dat = {k: v for k, v in dat.items() if k not in ["positions"]} - user_data[user] = dat - df = pd.DataFrame(user_data) - if first is None: - first = df.copy() - dft = df.sum(axis=1) - dft["WE_long"] = dft["pcost_long"] / dft["balance"] - dft["WE_short"] = dft["pcost_short"] / dft["balance"] - dft["upnl_pct_long"] = dft["upnl_long"] / dft["balance"] - dft["upnl_pct_short"] = dft["upnl_short"] / dft["balance"] - dft["upnl_pct"] = dft["upnl"] / dft["balance"] - dft = dft.drop(["exchange"], axis=0) - dft["date"] = x["date"] - dft["timestamp"] = x["timestamp"] - dfts.append(dft) - for user in user_data: - print(user) - df = pd.DataFrame(user_data[user]["positions"]) - df.loc[:, "pprice_diff"] = df.apply(calc_pprice_diff, axis=1) - print(df.sort_values("pprice_diff", ascending=False)) - print() - df = pd.DataFrame(user_data).drop("positions") - df.loc["n_days"] = (jsons[-1]["timestamp"] - jsons[0]["timestamp"]) / MS2DAY - df.loc["abs_gain"] = (df.T.balance - first.T.balance).T - df.loc["gain_pct"] = (((df.T.balance / first.T.balance) - 1) * 100).T - df.loc["adg_pct"] = (((df.T.balance / first.T.balance) ** (1 / df.T.n_days) - 1) * 100).T - print(df) - print() - df = pd.DataFrame(dfts).drop("positions", axis=1) - df.date = pd.to_datetime(df.date).round("h") - df.loc[:, "n_days"] = (df.timestamp - df.iloc[0].timestamp) / MS2DAY - df.loc[:, "abs_gain"] = df.balance - df.balance.iloc[0] - df.loc[:, "gain_pct"] = (df.balance / df.balance.iloc[0] - 1) * 100 - df.loc[:, "adg_pct"] = ((df.balance / df.balance.iloc[0]) ** (1 / df.n_days) - 1) * 100 - print( - df.groupby(df.timestamp // MS2DAY) - .last() - .drop(["timestamp", "pcost_long", "pcost_short", "upnl_long", "upnl_short"], axis=1) - .set_index("date") - ) - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/tools/sort_backtest_results.py b/tools/sort_backtest_results.py deleted file mode 100644 index f6fa305a3..000000000 --- a/tools/sort_backtest_results.py +++ /dev/null @@ -1,88 +0,0 @@ -import os - -os.environ["NOJIT"] = "true" -import sys -import argparse -from prettytable import PrettyTable -import time - -sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) -from pure_funcs import ts_to_date_utc - - -def main(): - metric_explanations = { - "adg_w_per_exp": "average daily gain, recent data weighted heavier", - "adg_per_exp": "average daily gain for whole backtest", - "exp_rts_mean": "exposure ratios mean: average wallet exposure during backtest", - "time_at_max_exp": "ratio of hours spent at >90% exposure to hours spent at <90% exposure", - "hrs_stuck_max": "how many hours in a stretch with no fills", - "pa_dist_mean": "price action distance mean: the average distance between position price and market price", - "pa_dist_std": "price action distance std: the standard deviation of the distance between position price and market price", - "pa_dist_1pct_worst_mean": "mean of 1% highest pa_dist_mean", - "loss_profit_rt": "loss to profit ratio: abs(sum(losses)) / sum(profit)", - "drawdown_max": "max drawdown", - "drawdown_1pct_worst_mean": "mean of 1% worst drawdowns from hourly samples", - "sharpe_ratio": "sharpe ratio (excluding risk free return) from daily samples", - "n_days": "backtest number of days", - "score": "used internally by optimizer", - } - parser = argparse.ArgumentParser(prog="sort backtest results", description="pretty view") - parser.add_argument("results_fpath", type=str, help="path to results file") - args = parser.parse_args() - filenames = os.listdir(args.results_fpath) - sides = ["long", "short"] - results = [] - table_fpath = os.path.join(args.results_fpath, "table_dump.txt") - with open(table_fpath, "w") as f: - f.write("") - for fname in filenames: - try: - if fname.endswith(".txt"): - symbol = fname[: fname.find("_")] - with open(os.path.join(args.results_fpath, fname)) as f: - content = f.read() - # print(content) - results.append({}) - for side, ih, iv in [("long", 3, 5), ("short", 12, 14)]: - headers = content.splitlines()[ih].replace("|", "").replace("->", "").split() - vals = content.splitlines()[iv].replace("|", "").replace("->", "").split() - items = [(x, y) for x, y in zip(headers, vals)] - results[-1][side] = {} - for x, y in items: - try: - results[-1][side][x] = float(y) - except: - results[-1][side][x] = y - except Exception as e: - # print(fname, e) - pass - with open(table_fpath, "a") as f: - max_len = max([len(k) for k in metric_explanations]) - today = ts_to_date_utc(time.time())[:10] - line = f"### single symbol backtest metrics ###\n\nupdate: {today}\n\n" - line += "note: symbols younger than 2021-05-01 are not optimized on their own,\n" - line += "instead the best config from among the older symbols is chosen\n\n" - line += "metric abbreviation comments:" - f.write(line + "\n") - print(line) - for k, v in metric_explanations.items(): - line = f"{k: <{max_len}} {v}" - f.write(line + "\n") - print(line) - for side in sides: - sresults = sorted([x[side] for x in results if x], key=lambda x: x["score"], reverse=False) - row_headers = list(sresults[0].keys()) - table = PrettyTable(row_headers) - for rh in row_headers: - table.align[rh] = "l" - table.title = f"{side}" - for elm in sresults: - table.add_row(list(elm.values())) - print(table) - with open(table_fpath, "a") as f: - f.write(table.get_string(border=True, padding_width=1) + "\n\n") - - -if __name__ == "__main__": - main()