package sentio type MarketAccount interface { GetId() string GetName() string GetCash() float64 GetEquity() float64 }