Method: Bitmex::User#executions
- Defined in:
- lib/bitmex/user.rb
#executions(filters = {}) {|Hash| ... } ⇒ Array
Get all raw executions for your account
122 123 124 125 126 127 128 |
# File 'lib/bitmex/user.rb', line 122 def executions(filters = {}, &ablock) if block_given? websocket.listen execution: filters[:symbol], &ablock else get '', filters.merge(resource: :execution) end end |