2
0

risk_manager.go 149 B

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