mirror of
https://github.com/laoxong/nofx.git
synced 2026-06-04 09:58:22 +08:00
3e5a701859
**Configuration Improvements:** - Add comprehensive "Get AI API Keys" section (DeepSeek + Qwen) - Split configuration into Beginner Mode and Expert Mode - Add step-by-step setup guides with placeholder tables - Add configuration checklist and field explanations - Document smart default behavior for use_default_coins (v2.0.2) **Startup/Monitoring Guides:** - Add detailed 2-step system startup instructions - Include expected output and error troubleshooting tables - Add monitoring and graceful shutdown procedures - Provide health check commands **AI Decision Flow Updates:** - Enhance flow diagram with emojis and wider boxes - Add v2.0.2 improvement markers throughout - Document position duration tracking - Document accurate USDT PnL calculation with leverage - Document enhanced AI freedom for raw data analysis - Document improved position tracking (symbol_side keys) - Add "Key Improvements in v2.0.2" summary section **Code Changes:** - Simplify config.json.example to beginner-friendly single trader - Implement smart default: use_default_coins auto-enables when omitted - Set default to true if false without coin_pool_api_url **Files Updated:** - README.md (English): +559 lines - README.zh-CN.md (Chinese): +527 lines - README.ru.md (Russian): +634 lines - README.uk.md (Ukrainian): +521 lines - config.json.example: Simplified configuration - config/config.go: Smart default logic Total: 2068+ additions across all documentation Co-Authored-By: tinkle-community <tinklefund@gmail.com>
24 lines
570 B
JSON
24 lines
570 B
JSON
{
|
|
"traders": [
|
|
{
|
|
"id": "my_trader",
|
|
"name": "My AI Trader",
|
|
"ai_model": "deepseek",
|
|
"binance_api_key": "YOUR_BINANCE_API_KEY",
|
|
"binance_secret_key": "YOUR_BINANCE_SECRET_KEY",
|
|
"use_qwen": false,
|
|
"deepseek_key": "YOUR_DEEPSEEK_API_KEY",
|
|
"qwen_key": "",
|
|
"initial_balance": 1000.0,
|
|
"scan_interval_minutes": 3
|
|
}
|
|
],
|
|
"use_default_coins": true,
|
|
"coin_pool_api_url": "",
|
|
"oi_top_api_url": "",
|
|
"api_server_port": 8080,
|
|
"max_daily_loss": 5.0,
|
|
"max_drawdown": 10.0,
|
|
"stop_trading_minutes": 30
|
|
}
|