package sentio type MarketAccount interface { IsEnabled() bool GetId() string GetName() string // GetCash Cash Balance GetCash(IgnoreBuyingPower bool) float64 // GetEquity cash + long_market_value + short_market_value GetEquity() float64 }