bt_getopenorders: Order Data for all Open Orders

Description Usage Arguments Value References See Also Examples

Description

The bt_getopenorders() function retrieves all the user's open orders on https://bittrex.com. This function can only be used after you provide information for authentication.

Usage

1

Arguments

market

(optional) the market on which you would like to see all open orders. If not specified, then all open orders for all markets are returned.

Value

A named list with the following elements:

References

https://bittrex.com/api/v1.1/market/getopenorders

See Also

bt_authenticate()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
## Not run: 
# Note you must authenticate first.
bt_getopenorders()
# $success
# [1] TRUE
#
# $message
# [1] ""
#
# $result
#   uuid                           order_uuid exchange order_type quantity
# 1   NA 2d6169e9-17fb-4f2a-8aff-37418b515624  ETH-LTC  LIMIT_BUY        1
#   quantity_remaining limit commission_paid price price_per_unit
# 1                  1 0.001               0     0             NA
#                   opened closed cancel_initiated immediate_or_cancel
# 1 2017-07-11T18:53:30.07     NA            FALSE               FALSE
#   is_conditional condition condition_target
# 1          FALSE      NONE               NA

## End(Not run)

2ndTime/bittrex2 documentation built on May 31, 2019, 2:19 p.m.