Advertisement
Juli29

Config_1

Oct 15th, 2021
4,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.70 KB | None | 0 0
  1. {
  2.     "max_open_trades": 5,
  3.     "stake_currency": "USDT",
  4.     "stake_amount": "unlimited",
  5.     "tradable_balance_ratio": 0.99,
  6.     "fiat_display_currency": "USD",
  7.     "timeframe": "5m",
  8.     "dry_run": true,
  9.     "cancel_open_orders_on_exit": false,
  10.     "unfilledtimeout": {
  11.         "buy": 10,
  12.         "sell": 30,
  13.         "unit": "minutes"
  14.     },
  15.     "bid_strategy": {
  16.         "price_side": "ask",
  17.         "ask_last_balance": 0.0,
  18.         "use_order_book": false,
  19.         "order_book_top": 1,
  20.         "check_depth_of_market": {
  21.             "enabled": false,
  22.             "bids_to_ask_delta": 1
  23.         }
  24.     },
  25.     "ask_strategy": {
  26.         "price_side": "bid",
  27.         "use_order_book": false,
  28.         "order_book_min": 1,
  29.         "order_book_max": 1,
  30.     },
  31.     "exchange": {
  32.     "name": "binance",
  33.     "key": "your_exchange_key",
  34.     "secret": "your_exchange_secret",
  35.     "ccxt_config": {"enableRateLimit": true},
  36.     "ccxt_async_config": {
  37.         "enableRateLimit": true,
  38.         "rateLimit": 200},
  39.     },
  40.  
  41.     "edge": {
  42.         "enabled": false,
  43.         "process_throttle_secs": 3600,
  44.         "calculate_since_number_of_days": 7,
  45.         "allowed_risk": 0.01,
  46.         "stoploss_range_min": -0.01,
  47.         "stoploss_range_max": -0.1,
  48.         "stoploss_range_step": -0.01,
  49.         "minimum_winrate": 0.60,
  50.         "minimum_expectancy": 0.20,
  51.         "min_trade_number": 10,
  52.         "max_trade_duration_minute": 1440,
  53.         "remove_pumps": false
  54.     },
  55.     "telegram": {
  56.         "enabled": false,
  57.         "token": "mytoken",
  58.         "chat_id": "10742740",
  59.         "notification_settings": {
  60.             "status": "silent",
  61.             "warning": "on",
  62.             "startup": "off",
  63.             "buy": "silent",
  64.             "sell": {
  65.                 "roi": "silent",
  66.                 "emergency_sell": "on",
  67.                 "force_sell": "on",
  68.                 "sell_signal": "silent",
  69.                 "trailing_stop_loss": "on",
  70.                 "stop_loss": "on",
  71.                 "stoploss_on_exchange": "on",
  72.                 "custom_sell": "silent"
  73.         },
  74.         "buy_cancel": "silent",
  75.         "sell_cancel": "on",
  76.         "buy_fill": "off",
  77.         "sell_fill": "off"
  78.     },
  79.     },
  80.     "api_server": {
  81.         "enabled": true,
  82.         "listen_ip_address": "0.0.0.0",
  83.         "listen_port": 8080,
  84.         "verbosity": "error",
  85.         "enable_openapi": false,
  86.         "jwt_secret_key": "topsecret",
  87.         "CORS_origins": ["84.214.237.120:8081"],
  88.         "username": "name",
  89.         "password": "secret"
  90.     },
  91.     "bot_name": "freqtrade",
  92.     "initial_state": "running",
  93.     "forcebuy_enable": true,
  94.     "internals": {
  95.         "process_throttle_secs": 5
  96.     }
  97. }
  98.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement