2
0

portfolio.go 144 B

123456
  1. package sentio
  2. type Portfolio interface {
  3. // Get returns Position of the symbol if exists in Portfolio
  4. Get(symbol string) (Position, bool)
  5. }