From fe84bb70ef918bf850b40b3705be933bbd2f7245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20S=C3=A1nchez?= Date: Sat, 26 Oct 2024 19:15:37 -0300 Subject: [PATCH] Added comments to the example config files --- configs/example_exchange_config.json | 25 ------------------------- configs/example_trader_config.json | 21 --------------------- 2 files changed, 46 deletions(-) delete mode 100755 configs/example_exchange_config.json delete mode 100755 configs/example_trader_config.json diff --git a/configs/example_exchange_config.json b/configs/example_exchange_config.json deleted file mode 100755 index fda9617..0000000 --- a/configs/example_exchange_config.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "exchange": "binance", - "is_sandbox": true, - "simulate_market_orders": false, - "key": "", - "secret": "", - "pairs": [ - "BTCUSDT", - "BNBUSDT", - "ETHUSDT", - "XRPUSDT", - "TRXUSDT", - "LTCUSDT" - ], - "reconnect": 30, - "lap_time": 1, - "host": "0.0.0.0", - "port": "5006", - "telegram": false, - "bot_token": "", - "bot_chatID": "", - "attempt_to_restart": true, - "default_order_size": 15, - "unified_order_query": true -} diff --git a/configs/example_trader_config.json b/configs/example_trader_config.json deleted file mode 100755 index e2c4e3f..0000000 --- a/configs/example_trader_config.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "pair": "BCC/USDT", - "order_size": 15, - "tp_level": 1.02, - "no_of_safety_orders": 23, - "safety_order_deviance": 2, - "safety_order_scale": 0.0105, - "write_logs": false, - "calculate_fees": true, - "cleanup": true, - "telegram": true, - "tp_mode": 3, - "tp_table": [], - "is_short": true, - "autoswitch": true, - "attempt_restart": true, - "check_old_long_price": true, - "dynamic_so_deviance": true, - "dsd_range": 1, - "bias": -0.5 -}