2
0
Pārlūkot izejas kodu

MarketAccount

- add IsEnabled
Alexey Kim 1 nedēļu atpakaļ
vecāks
revīzija
2a0dd0b55d
1 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  1. 5 1
      market_account.go

+ 5 - 1
market_account.go

@@ -1,11 +1,15 @@
 package sentio
 
 type MarketAccount interface {
+	IsEnabled() bool
+
 	GetId() string
 
 	GetName() string
 
+	// GetCash Cash Balance
 	GetCash() float64
-	
+
+	// GetEquity cash + long_market_value + short_market_value
 	GetEquity() float64
 }