package sentio type MarketAccount interface { GetId() string GetName() string Cash() (float64, error) Equity() (float64, error) }