package sentio type Portfolio interface { // Get returns Position of the symbol if exists in Portfolio Get(symbol string) (Position, bool) }