style: apply go fmt to fix indentation and alignment

Fix formatting issues across multiple files:
- logger/decision_logger.go: correct if statement indentation
- main.go: fix DataKLineTime field tab alignment
- trader/auto_trader.go: align struct field comments and code blocks

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ZhouYongyou
2025-11-04 10:44:15 +08:00
parent 57309dd0d2
commit db7b24e2e0
3 changed files with 9 additions and 9 deletions

View File

@@ -349,7 +349,7 @@ func (l *DecisionLogger) AnalyzePerformance(lookbackCycles int) (*PerformanceAna
symbol := action.Symbol
side := ""
if action.Action == "open_long" || action.Action == "close_long" || action.Action == "partial_close" || action.Action == "auto_close_long" {
if action.Action == "open_long" || action.Action == "close_long" || action.Action == "partial_close" || action.Action == "auto_close_long" {
side = "long"
} else if action.Action == "open_short" || action.Action == "close_short" || action.Action == "auto_close_short" {
side = "short"