2
0

risk_manager.go 115 B

123456
  1. package sentio
  2. type RiskManager interface {
  3. StopLoss(symbol string) float64
  4. TakeProfit(symbol string) float64
  5. }