package sentio type Position interface { // GetSize returns the total size of the position GetSize() float64 // GetAvgPrice returns the average cost of each share in the position when purchased GetAvgPrice() float64 // GetSymbol returns the ticker symbol of the traded contract GetSymbol() string }