From c20a4386a6e2d3b3b20dfe37d0037f6c8238a122 Mon Sep 17 00:00:00 2001 From: tef Date: Sun, 9 Jan 2022 21:30:59 -0500 Subject: [PATCH] config2 and 3 --- config_examples/config_2_json | 83 +++++++++++++++++++++++++++++++++++ config_examples/config_3_json | 83 +++++++++++++++++++++++++++++++++++ 2 files changed, 166 insertions(+) create mode 100644 config_examples/config_2_json create mode 100644 config_examples/config_3_json diff --git a/config_examples/config_2_json b/config_examples/config_2_json new file mode 100644 index 000000000..723ff68a5 --- /dev/null +++ b/config_examples/config_2_json @@ -0,0 +1,83 @@ +{ + "max_open_trades": 3, + "stake_currency": "USDT", + "stake_amount": 50, + "tradable_balance_ratio": 0.99, + "fiat_display_currency": "USD", + "dry_run": false, + "cancel_open_orders_on_exit": false, + "unfilledtimeout": { + "buy": 10, + "sell": 30, + "unit": "minutes" + }, + "bid_strategy": { + "price_side": "bid", + "ask_last_balance": 0.0, + "use_order_book": true, + "order_book_top": 1, + "check_depth_of_market": { + "enabled": false, + "bids_to_ask_delta": 1 + } + }, + "ask_strategy": { + "price_side": "ask", + "use_order_book": true, + "order_book_top": 1 + }, + "exchange": { + "name": "binance", + "key": "r7jNtIb7EWp8VR0Y9wyONEboIDYJ1P6LtY7ywpIH3knxDXQDukeAPTLMztlP2OGB", + "secret": "qdtxxwCA5USIb1F3086C3a0RlTqoRSX8pzxWqjmTDF8ap5v6CKLNn2GlbukiADHJ", + "ccxt_config": {}, + "ccxt_async_config": {}, + "pair_whitelist": [ + "SOL/USDT" + ], + "pair_blacklist": [ + "BNB/.*" + ] + }, + "pairlists": [ + { + "method": "StaticPairList" + } + ], + "edge": { + "enabled": false, + "process_throttle_secs": 3600, + "calculate_since_number_of_days": 7, + "allowed_risk": 0.01, + "stoploss_range_min": -0.01, + "stoploss_range_max": -0.1, + "stoploss_range_step": -0.01, + "minimum_winrate": 0.60, + "minimum_expectancy": 0.20, + "min_trade_number": 10, + "max_trade_duration_minute": 1440, + "remove_pumps": false + }, + "telegram": { + "enabled": true, + "token": "2123575847:AAHGr3YpgIm3K-atU1qxhEj3ZNjTsiIj2GQ", + "chat_id": "2091515934" + }, + "api_server": { + "enabled": false, + "listen_ip_address": "127.0.0.1", + "listen_port": 8080, + "verbosity": "error", + "enable_openapi": false, + "jwt_secret_key": "85c2f16af43e3f710301a69b497ea7bfdbc2639cc3af3b3e22257f7e7e56c161", + "CORS_origins": [], + "username": "", + "password": "" + }, + "bot_name": "freqtrade", + "initial_state": "running", + "forcebuy_enable": false, + "internals": { + "process_throttle_secs": 5 + } +} diff --git a/config_examples/config_3_json b/config_examples/config_3_json new file mode 100644 index 000000000..90182158b --- /dev/null +++ b/config_examples/config_3_json @@ -0,0 +1,83 @@ +{ + "max_open_trades": 3, + "stake_currency": "USDT", + "stake_amount": 10, + "tradable_balance_ratio": 0.1, + "fiat_display_currency": "USD", + "dry_run": true, + "cancel_open_orders_on_exit": false, + "unfilledtimeout": { + "buy": 10, + "sell": 30, + "unit": "minutes" + }, + "bid_strategy": { + "price_side": "bid", + "ask_last_balance": 0.0, + "use_order_book": true, + "order_book_top": 1, + "check_depth_of_market": { + "enabled": false, + "bids_to_ask_delta": 1 + } + }, + "ask_strategy": { + "price_side": "ask", + "use_order_book": true, + "order_book_top": 1 + }, + "exchange": { + "name": "binance", + "key": "", + "secret": "", + "ccxt_config": {}, + "ccxt_async_config": {}, + "pair_whitelist": [ + "SOL/USDT" + ], + "pair_blacklist": [ + "BNB/.*" + ] + }, + "pairlists": [ + { + "method": "StaticPairList" + } + ], + "edge": { + "enabled": false, + "process_throttle_secs": 3600, + "calculate_since_number_of_days": 7, + "allowed_risk": 0.01, + "stoploss_range_min": -0.01, + "stoploss_range_max": -0.1, + "stoploss_range_step": -0.01, + "minimum_winrate": 0.60, + "minimum_expectancy": 0.20, + "min_trade_number": 10, + "max_trade_duration_minute": 1440, + "remove_pumps": false + }, + "telegram": { + "enabled": true, + "token": "2123575847:AAHGr3YpgIm3K-atU1qxhEj3ZNjTsiIj2GQ", + "chat_id": "2091515934" + }, + "api_server": { + "enabled": false, + "listen_ip_address": "127.0.0.1", + "listen_port": 8080, + "verbosity": "error", + "enable_openapi": false, + "jwt_secret_key": "85c2f16af43e3f710301a69b497ea7bfdbc2639cc3af3b3e22257f7e7e56c161", + "CORS_origins": [], + "username": "", + "password": "" + }, + "bot_name": "freqtrade", + "initial_state": "running", + "forcebuy_enable": false, + "internals": { + "process_throttle_secs": 5 + } +}