config-okx-futures.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "$schema": "https://schema.freqtrade.io/schema.json",
  3. "max_open_trades": 1,
  4. "stake_currency": "USDT",
  5. "stake_amount": 10,
  6. "tradable_balance_ratio": 0.99,
  7. "dry_run": true,
  8. "dry_run_wallet": 1000,
  9. "trading_mode": "futures",
  10. "margin_mode": "isolated",
  11. "timeframe": "15m",
  12. "dataformat_ohlcv": "json",
  13. "exchange": {
  14. "name": "okx",
  15. "key": "",
  16. "secret": "",
  17. "password": "",
  18. "ccxt_config": {
  19. "timeout": 60000,
  20. "enableRateLimit": true,
  21. "httpsProxy": "http://127.0.0.1:7897",
  22. "options": {
  23. "defaultType": "swap"
  24. }
  25. },
  26. "ccxt_async_config": {
  27. "timeout": 60000,
  28. "enableRateLimit": true,
  29. "httpsProxy": "http://127.0.0.1:7897",
  30. "options": {
  31. "defaultType": "swap"
  32. }
  33. },
  34. "pair_whitelist": [
  35. "BTC/USDT:USDT"
  36. ],
  37. "pair_blacklist": []
  38. },
  39. "pairlists": [
  40. {
  41. "method": "StaticPairList"
  42. }
  43. ],
  44. "entry_pricing": {
  45. "price_side": "other",
  46. "use_order_book": false
  47. },
  48. "exit_pricing": {
  49. "price_side": "other",
  50. "use_order_book": false
  51. },
  52. "order_types": {
  53. "entry": "market",
  54. "exit": "market",
  55. "emergency_exit": "market",
  56. "force_entry": "market",
  57. "force_exit": "market",
  58. "stoploss": "market",
  59. "stoploss_on_exchange": false
  60. },
  61. "unfilledtimeout": {
  62. "entry": 10,
  63. "exit": 10,
  64. "unit": "minutes"
  65. },
  66. "bot_name": "okx-codex-btc-rsi2-guarded",
  67. "initial_state": "stopped",
  68. "internals": {
  69. "process_throttle_secs": 5
  70. }
  71. }