order_options.go 247 B

123456789101112131415
  1. package sentio
  2. type OrderCreateOptions struct {
  3. Symbol string
  4. Action Action
  5. Limit *float64
  6. Size uint
  7. TakeProfit *float64
  8. StopLoss *float64
  9. }
  10. type OrderUpdateOptions struct {
  11. TakeProfit *float64
  12. StopLoss *float64
  13. }