Browse Source

RiskManager

- GetOrderSize: remove returning candle's open price
Alexey Kim 1 month ago
parent
commit
c25fa59e13
1 changed files with 1 additions and 1 deletions
  1. 1 1
      risk_manager.go

+ 1 - 1
risk_manager.go

@@ -9,7 +9,7 @@ type RiskManager interface {
 	GetWinStreak() uint
 	GetLoseStreak() uint
 
-	GetOrderSize(symbol string, bid float64) (float64, float64)
+	GetOrderSize(symbol string, bid float64) float64
 	UpdatePositions() error
 	ResetState(streaks bool)
 }