package sentio type RiskManager interface { EnsureVolatility(symbol string) bool StopLoss(symbol string, current float64) float64 TakeProfit(symbol string, current float64) float64 }