risk_manager.go 177 B

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