Update: Merge nofx improvements

- Frontend trading records and UI enhancements
- Optimized AI prompts and decision engine
- Performance analysis and comparison features
- Binance-style UI improvements
This commit is contained in:
tinkle-community
2025-10-28 21:45:28 +08:00
parent b97c5f663f
commit 96b342d481
13 changed files with 1440 additions and 545 deletions

View File

@@ -19,7 +19,7 @@ type CoinPoolConfig struct {
}
var coinPoolConfig = CoinPoolConfig{
APIURL: "", // 将通过config.json配置或SetCoinPoolAPI()设置
APIURL: "",
Timeout: 30 * time.Second, // 增加到30秒
CacheDir: "coin_pool_cache",
}
@@ -359,7 +359,7 @@ var oiTopConfig = struct {
Timeout time.Duration
CacheDir string
}{
APIURL: "", // 将通过config.json配置或SetOITopAPI()设置
APIURL: "",
Timeout: 30 * time.Second,
CacheDir: "coin_pool_cache",
}