bt_getorder: Order Data for a Specified Order

Description Usage Arguments Value References See Also Examples

Description

The bt_getorder() function retrieves open order data on https://bittrex.com. This function can only be used after you provide information for authentication.

Usage

1

Arguments

uuid

the uuid of the order.

Value

A named list with the following elements:

References

https://bittrex.com/api/v1.1/account/getorder

See Also

bt_authenticate(), bt_getopenorders()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Not run: 
# Note you must authenticate and define a uuid first.
bt_getorder(uuid)
# $success
# [1] TRUE
#
# $message
# [1] ""
#
# $result
#   account_id                           order_uuid exchange      type quantity
# 1         NA 63181c27-dd14-476e-960c-1bd8366bb312  ETH-LTC LIMIT_BUY        1
#   quantity_remaining limit reserved reserve_remaining commission_reserved
# 1                  1 0.001    0.001             0.001             2.5e-06
#   commission_reserve_remaining commission_paid price price_per_unit
# 1                      2.5e-06               0     0             NA
#                    opened closed is_open                             sentinel
# 1 2017-07-11T17:05:55.583     NA    TRUE 78b210fa-a156-4f4d-8043-51163740056f
#   cancel_initiated immediate_or_cancel is_conditional condition
# 1            FALSE               FALSE          FALSE      NONE
#   condition_target
# 1               NA

## End(Not run)

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