order.go 251 B

123456789101112131415
  1. package sentio
  2. type Order interface {
  3. Market() string
  4. AccountId() string
  5. GetId() string
  6. GetSymbol() string
  7. GetAction() OrderAction
  8. GetTimeInForce() TimeInForce
  9. GetSize() float64
  10. GetPrice() float64
  11. GetCurrency() string
  12. GetStatus() string
  13. }