mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-21 19:27:39 +08:00
Live decomposition of the losing streak: 23% win rate with avg win +$1.23 / avg loss -$1.04 on ~0.3-0.5% price moves, where the ~0.14% round-trip fee ate 30-50% of every tiny winner. Death by small-move grinding. The AI was closing positions on ±0.5% noise after the 60m min-hold, capping winners at ~0.86%. Redesign to 'few big positions, held for big moves': - Throttle: min hold 60m->4h, noise-close window 90m->8h, reentry 30m->3h, opens/hour 30->3, opens/cycle 6->2. Noise band widened -1%..+2% -> -4%..+6% so small moves can no longer trigger a close. - Exits: stop bypass -2.5% -> -5%, take-profit bypass +5% -> +12% (wide, asymmetric — let winners run, cut losers only on a real move). - Leverage 20x -> 5x: a -5% stop at 20x is instant liquidation; at 5x it is -25% of margin, survivable. 2 positions x 2.5x = 5x total (full margin, ~20% cushion) instead of 4x5x=20x. - Prompt now instructs the AI to set wide stops (~-5%) and distant targets (~+10-12%), hold multi-hour, and never scalp 0.5% moves. Live strategy updated (maxPos=2, lev=5, ratio=2.5).
137 lines
4.5 KiB
Go
137 lines
4.5 KiB
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/google/uuid"
|
|
"nofx/store"
|
|
)
|
|
|
|
func TestCreateDefaultStrategiesUsesOneReadyToRunClaw402Preset(t *testing.T) {
|
|
st, err := store.New(t.TempDir() + "/nofx.db")
|
|
if err != nil {
|
|
t.Fatalf("store.New failed: %v", err)
|
|
}
|
|
t.Cleanup(func() { _ = st.Close() })
|
|
|
|
s := &Server{store: st}
|
|
userID := "user-us-stock-presets"
|
|
if err := s.createDefaultStrategies(userID, "zh"); err != nil {
|
|
t.Fatalf("createDefaultStrategies failed: %v", err)
|
|
}
|
|
|
|
strategies, err := st.Strategy().List(userID)
|
|
if err != nil {
|
|
t.Fatalf("List strategies failed: %v", err)
|
|
}
|
|
if len(strategies) != 1 {
|
|
t.Fatalf("expected 1 default strategy, got %d", len(strategies))
|
|
}
|
|
|
|
byName := map[string]*store.Strategy{}
|
|
activeCount := 0
|
|
for _, strategy := range strategies {
|
|
byName[strategy.Name] = strategy
|
|
if strategy.IsActive {
|
|
activeCount++
|
|
}
|
|
if strategy.Name == "Balanced Strategy" || strategy.Name == "Steady Strategy" || strategy.Name == "Aggressive Strategy" {
|
|
t.Fatalf("legacy crypto-style default strategy still present: %s", strategy.Name)
|
|
}
|
|
}
|
|
if activeCount != 1 {
|
|
t.Fatalf("expected exactly one active strategy, got %d", activeCount)
|
|
}
|
|
|
|
defaultStrategy := byName["NOFX Claw402 Auto Strategy"]
|
|
if defaultStrategy == nil || !defaultStrategy.IsActive {
|
|
t.Fatalf("NOFX Claw402 Auto Strategy should exist and be active")
|
|
}
|
|
trendCfg, err := defaultStrategy.ParseConfig()
|
|
if err != nil {
|
|
t.Fatalf("default ParseConfig failed: %v", err)
|
|
}
|
|
if trendCfg.CoinSource.SourceType != "vergex_signal" || trendCfg.CoinSource.VergexLimit != 10 || trendCfg.CoinSource.VergexMarketType != "all" {
|
|
t.Fatalf("default strategy should use the Claw402/Vergex all-market signal ranking, got %+v", trendCfg.CoinSource)
|
|
}
|
|
if trendCfg.CoinSource.UseAI500 || trendCfg.RiskControl.MaxPositions != 2 {
|
|
t.Fatalf("default strategy should be Claw402/Vergex native with a 2-position concentrated book, got coin=%+v risk=%+v", trendCfg.CoinSource, trendCfg.RiskControl)
|
|
}
|
|
if trendCfg.RiskControl.BTCETHMaxLeverage != 5 || trendCfg.RiskControl.AltcoinMaxLeverage != 5 {
|
|
t.Fatalf("default strategy should use 5x leverage for all Claw402 opens, got risk=%+v", trendCfg.RiskControl)
|
|
}
|
|
if trendCfg.RiskControl.BTCETHMaxPositionValueRatio != 2.5 ||
|
|
trendCfg.RiskControl.AltcoinMaxPositionValueRatio != 2.5 ||
|
|
trendCfg.RiskControl.MaxMarginUsage != 1.0 {
|
|
t.Fatalf("default strategy should size Claw402 opens at 2.5x equity notional (2 positions = 5x total at 5x), got risk=%+v", trendCfg.RiskControl)
|
|
}
|
|
}
|
|
|
|
func TestCreateDefaultStrategiesMigratesLegacyPresetsWithoutOverridingActiveCustom(t *testing.T) {
|
|
st, err := store.New(t.TempDir() + "/nofx.db")
|
|
if err != nil {
|
|
t.Fatalf("store.New failed: %v", err)
|
|
}
|
|
t.Cleanup(func() { _ = st.Close() })
|
|
|
|
userID := "user-existing-custom"
|
|
legacyCfg := store.GetDefaultStrategyConfig("zh")
|
|
legacy := &store.Strategy{
|
|
ID: uuid.New().String(),
|
|
UserID: userID,
|
|
Name: "Balanced Strategy",
|
|
Description: "legacy",
|
|
IsActive: false,
|
|
}
|
|
if err := legacy.SetConfig(&legacyCfg); err != nil {
|
|
t.Fatalf("legacy SetConfig failed: %v", err)
|
|
}
|
|
if err := st.Strategy().Create(legacy); err != nil {
|
|
t.Fatalf("create legacy failed: %v", err)
|
|
}
|
|
|
|
custom := &store.Strategy{
|
|
ID: uuid.New().String(),
|
|
UserID: userID,
|
|
Name: "aa",
|
|
Description: "user custom active strategy",
|
|
IsActive: true,
|
|
}
|
|
if err := custom.SetConfig(&legacyCfg); err != nil {
|
|
t.Fatalf("custom SetConfig failed: %v", err)
|
|
}
|
|
if err := st.Strategy().Create(custom); err != nil {
|
|
t.Fatalf("create custom failed: %v", err)
|
|
}
|
|
|
|
s := &Server{store: st}
|
|
if err := s.createDefaultStrategies(userID, "zh"); err != nil {
|
|
t.Fatalf("createDefaultStrategies failed: %v", err)
|
|
}
|
|
if err := s.createDefaultStrategies(userID, "zh"); err != nil {
|
|
t.Fatalf("second createDefaultStrategies should be idempotent: %v", err)
|
|
}
|
|
|
|
strategies, err := st.Strategy().List(userID)
|
|
if err != nil {
|
|
t.Fatalf("List strategies failed: %v", err)
|
|
}
|
|
byName := map[string]int{}
|
|
activeNames := []string{}
|
|
for _, strategy := range strategies {
|
|
byName[strategy.Name]++
|
|
if strategy.IsActive {
|
|
activeNames = append(activeNames, strategy.Name)
|
|
}
|
|
}
|
|
if byName["Balanced Strategy"] != 0 {
|
|
t.Fatalf("legacy preset should be removed, got names=%+v", byName)
|
|
}
|
|
if byName["NOFX Claw402 Auto Strategy"] != 1 {
|
|
t.Fatalf("expected exactly one NOFX Claw402 Auto Strategy, got names=%+v", byName)
|
|
}
|
|
if len(activeNames) != 1 || activeNames[0] != "aa" {
|
|
t.Fatalf("existing active custom strategy should stay the only active one, got %+v", activeNames)
|
|
}
|
|
}
|