kraken_client 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/Gemfile +7 -0
  4. data/Gemfile.lock +61 -0
  5. data/LICENSE.md +24 -0
  6. data/Rakefile +1 -0
  7. data/fixtures/vcr_cassettes/add_order.yml +41 -0
  8. data/fixtures/vcr_cassettes/assets.yml +45 -0
  9. data/fixtures/vcr_cassettes/assets_pairs.yml +45 -0
  10. data/fixtures/vcr_cassettes/balance.yml +41 -0
  11. data/fixtures/vcr_cassettes/cancel_order.yml +41 -0
  12. data/fixtures/vcr_cassettes/closed_orders.yml +134 -0
  13. data/fixtures/vcr_cassettes/ledgers.yml +41 -0
  14. data/fixtures/vcr_cassettes/open_orders.yml +43 -0
  15. data/fixtures/vcr_cassettes/order_book.yml +43 -0
  16. data/fixtures/vcr_cassettes/query_ledgers.yml +41 -0
  17. data/fixtures/vcr_cassettes/query_orders.yml +43 -0
  18. data/fixtures/vcr_cassettes/query_trades.yml +41 -0
  19. data/fixtures/vcr_cassettes/server_time.yml +44 -0
  20. data/fixtures/vcr_cassettes/spread.yml +43 -0
  21. data/fixtures/vcr_cassettes/ticker.yml +43 -0
  22. data/fixtures/vcr_cassettes/trade_balance.yml +41 -0
  23. data/fixtures/vcr_cassettes/trade_volume.yml +41 -0
  24. data/fixtures/vcr_cassettes/trades.yml +43 -0
  25. data/fixtures/vcr_cassettes/trades_history.yml +41 -0
  26. data/kraken_rb.gemspec +33 -0
  27. data/lib/configurable.rb +13 -0
  28. data/lib/configuration.rb +19 -0
  29. data/lib/exceptions.rb +6 -0
  30. data/lib/kraken_client/application.rb +45 -0
  31. data/lib/kraken_client/endpoints/base.rb +43 -0
  32. data/lib/kraken_client/endpoints/private.rb +45 -0
  33. data/lib/kraken_client/endpoints/public.rb +33 -0
  34. data/lib/kraken_client/requests/base.rb +35 -0
  35. data/lib/kraken_client/requests/content/body.rb +18 -0
  36. data/lib/kraken_client/requests/content/header.rb +61 -0
  37. data/lib/kraken_client/requests/get.rb +13 -0
  38. data/lib/kraken_client/requests/limiter.rb +78 -0
  39. data/lib/kraken_client/requests/post.rb +38 -0
  40. data/lib/kraken_client.rb +15 -0
  41. data/lib/version.rb +3 -0
  42. data/readme.md +280 -0
  43. data/spec/requests/private_spec.rb +104 -0
  44. data/spec/requests/public_spec.rb +57 -0
  45. metadata +229 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b4d025a1f7aa2a6ac3f3b0bfdeade0b26065271f
4
+ data.tar.gz: 79938704d94dee6f0f9cf9830dc8e3db56306221
5
+ SHA512:
6
+ metadata.gz: 59142b5a9894ce4d9381c295e71fb7765ea1d2be615919b4d4b6c6953d7577be0b5174d99528f8814776b83f3347f38737b5a626200efbdb1351613dbd591293
7
+ data.tar.gz: 8080b9ba1d3033ec28bd4a7b81fb4ad9c5585d57c656ccfd7ca9895fe30a11e3720920bdafaf4c29625c135c5173c018a1df9a68abcd93b3c0cb469026ad7b6f
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ /pkg/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in kraken_client.gemspec
4
+ gemspec
5
+ gem 'httparty'
6
+ gem 'hashie'
7
+ gem 'addressable'
data/Gemfile.lock ADDED
@@ -0,0 +1,61 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ kraken_client (0.1.1)
5
+ activesupport
6
+ addressable
7
+ hashie
8
+ httparty
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ activesupport (4.2.3)
14
+ i18n (~> 0.7)
15
+ json (~> 1.7, >= 1.7.7)
16
+ minitest (~> 5.1)
17
+ thread_safe (~> 0.3, >= 0.3.4)
18
+ tzinfo (~> 1.1)
19
+ addressable (2.3.8)
20
+ coderay (1.1.0)
21
+ crack (0.3.1)
22
+ hashie (3.4.2)
23
+ httparty (0.13.5)
24
+ json (~> 1.8)
25
+ multi_xml (>= 0.5.2)
26
+ i18n (0.7.0)
27
+ json (1.8.3)
28
+ matchi (0.0.9)
29
+ method_source (0.8.2)
30
+ minitest (5.8.0)
31
+ multi_xml (0.5.5)
32
+ pry (0.10.1)
33
+ coderay (~> 1.1.0)
34
+ method_source (~> 0.8.1)
35
+ slop (~> 3.4)
36
+ rake (10.4.2)
37
+ slop (3.6.0)
38
+ spectus (2.2.0)
39
+ matchi (~> 0.0)
40
+ thread_safe (0.3.5)
41
+ tzinfo (1.2.2)
42
+ thread_safe (~> 0.1)
43
+ vcr (2.9.3)
44
+ webmock (1.9.0)
45
+ addressable (>= 2.2.7)
46
+ crack (>= 0.1.7)
47
+
48
+ PLATFORMS
49
+ ruby
50
+
51
+ DEPENDENCIES
52
+ addressable
53
+ bundler (~> 1.3)
54
+ hashie
55
+ httparty
56
+ kraken_client!
57
+ pry
58
+ rake
59
+ spectus
60
+ vcr
61
+ webmock
data/LICENSE.md ADDED
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2015 Sidney SISSAOUI
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ Copyright for some portions of the code (mainly portions of /lib/kraken_client/requests/content/header.rb and portions of /specs) are held by [Alexander Leishman, 2014] as part of project Kraken_Ruby. All other copyright for project Kraken_Client are held by [Sidney SISSAOUI, 2015].
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,41 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.kraken.com/0/private/AddOrder
6
+ body:
7
+ encoding: UTF-8
8
+ string: nonce=943911673533360721&ordertype=market&pair=ETHEUR&type=buy&volume=0.01
9
+ headers:
10
+ Api-Key:
11
+ - COMPUTED
12
+ Api-Sign:
13
+ - COMPUTED
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Server:
20
+ - cloudflare-nginx
21
+ Date:
22
+ - Sun, 23 Aug 2015 01:55:13 GMT
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Transfer-Encoding:
26
+ - chunked
27
+ Connection:
28
+ - keep-alive
29
+ Set-Cookie:
30
+ - __cfduid=COMPUTED; expires=Mon, 22-Aug-16
31
+ 01:55:12 GMT; path=/; domain=.kraken.com; HttpOnly
32
+ Vary:
33
+ - Accept-Encoding
34
+ Cf-Ray:
35
+ - COMPUTED
36
+ body:
37
+ encoding: UTF-8
38
+ string: '{"error":[],"result":{"descr":{"order":"buy 0.01000000 ETHEUR @ market"},"txid":["OEDIZV-VDAW3-RHLJVB"]}}'
39
+ http_version:
40
+ recorded_at: Sun, 23 Aug 2015 01:55:13 GMT
41
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,45 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.kraken.com/0/public/Assets
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - cloudflare-nginx
23
+ Date:
24
+ - Sun, 23 Aug 2015 00:51:20 GMT
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - __cfduid=COMPUTED; expires=Mon, 22-Aug-16
33
+ 00:51:19 GMT; path=/; domain=.kraken.com; HttpOnly
34
+ Cache-Control:
35
+ - public, max-age=300
36
+ Vary:
37
+ - Accept-Encoding
38
+ Cf-Ray:
39
+ - COMPUTED
40
+ body:
41
+ encoding: UTF-8
42
+ string: '{"error":[],"result":{"KFEE":{"aclass":"currency","altname":"FEE","decimals":2,"display_decimals":2},"XETH":{"aclass":"currency","altname":"ETH","decimals":10,"display_decimals":5},"XLTC":{"aclass":"currency","altname":"LTC","decimals":10,"display_decimals":5},"XNMC":{"aclass":"currency","altname":"NMC","decimals":10,"display_decimals":5},"XSTR":{"aclass":"currency","altname":"STR","decimals":8,"display_decimals":5},"XXBT":{"aclass":"currency","altname":"XBT","decimals":10,"display_decimals":5},"XXDG":{"aclass":"currency","altname":"XDG","decimals":8,"display_decimals":2},"XXRP":{"aclass":"currency","altname":"XRP","decimals":8,"display_decimals":5},"XXVN":{"aclass":"currency","altname":"XVN","decimals":4,"display_decimals":2},"ZCAD":{"aclass":"currency","altname":"CAD","decimals":4,"display_decimals":2},"ZEUR":{"aclass":"currency","altname":"EUR","decimals":4,"display_decimals":2},"ZGBP":{"aclass":"currency","altname":"GBP","decimals":4,"display_decimals":2},"ZJPY":{"aclass":"currency","altname":"JPY","decimals":2,"display_decimals":0},"ZKRW":{"aclass":"currency","altname":"KRW","decimals":2,"display_decimals":0},"ZUSD":{"aclass":"currency","altname":"USD","decimals":4,"display_decimals":2}}}'
43
+ http_version:
44
+ recorded_at: Sun, 23 Aug 2015 00:51:20 GMT
45
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,45 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.kraken.com/0/public/AssetPairs
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - cloudflare-nginx
23
+ Date:
24
+ - Sun, 23 Aug 2015 00:51:21 GMT
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - __cfduid=COMPUTED; expires=Mon, 22-Aug-16
33
+ 00:51:20 GMT; path=/; domain=.kraken.com; HttpOnly
34
+ Cache-Control:
35
+ - public, max-age=300
36
+ Vary:
37
+ - Accept-Encoding
38
+ Cf-Ray:
39
+ - COMPUTED
40
+ body:
41
+ encoding: UTF-8
42
+ string: '{"error":[],"result":{"XETHXXBT":{"altname":"ETHXBT","aclass_base":"currency","base":"XETH","aclass_quote":"currency","quote":"XXBT","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[1.5,2,2.5],"leverage_sell":[1.5,2,2.5],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XETHZCAD":{"altname":"ETHCAD","aclass_base":"currency","base":"XETH","aclass_quote":"currency","quote":"ZCAD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XETHZEUR":{"altname":"ETHEUR","aclass_base":"currency","base":"XETH","aclass_quote":"currency","quote":"ZEUR","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XETHZGBP":{"altname":"ETHGBP","aclass_base":"currency","base":"XETH","aclass_quote":"currency","quote":"ZGBP","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XETHZJPY":{"altname":"ETHJPY","aclass_base":"currency","base":"XETH","aclass_quote":"currency","quote":"ZJPY","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XETHZUSD":{"altname":"ETHUSD","aclass_base":"currency","base":"XETH","aclass_quote":"currency","quote":"ZUSD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XLTCZEUR":{"altname":"LTCEUR","aclass_base":"currency","base":"XLTC","aclass_quote":"currency","quote":"ZEUR","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XLTCZUSD":{"altname":"LTCUSD","aclass_base":"currency","base":"XLTC","aclass_quote":"currency","quote":"ZUSD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTXLTC":{"altname":"XBTLTC","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"XLTC","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTXNMC":{"altname":"XBTNMC","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"XNMC","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTXSTR":{"altname":"XBTSTR","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"XSTR","lot":"unit","pair_decimals":3,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTXXDG":{"altname":"XBTXDG","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"XXDG","lot":"unit","pair_decimals":1,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTXXRP":{"altname":"XBTXRP","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"XXRP","lot":"unit","pair_decimals":3,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTXXVN":{"altname":"XBTXVN","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"XXVN","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.1],[10000,0.09],[50000,0.08],[100000,0.07],[500000,0.06],[1000000,0.05]],"fees_maker":[[0,0.05],[10000,0.04],[50000,0.03],[100000,0.02],[500000,0.01],[1000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZCAD":{"altname":"XBTCAD","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZCAD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZCAD.d":{"altname":"XBTCAD.d","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZCAD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.36],[10000,0.34],[50000,0.32],[100000,0.3],[250000,0.28],[500000,0.26],[1000000,0.24],[5000000,0.22],[10000000,0.2]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZEUR":{"altname":"XBTEUR","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZEUR","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[1.5,2,2.5,3,5],"leverage_sell":[1.5,2,2.5,3,5],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZEUR.d":{"altname":"XBTEUR.d","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZEUR","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.36],[10000,0.34],[50000,0.32],[100000,0.3],[250000,0.28],[500000,0.26],[1000000,0.24],[5000000,0.22],[10000000,0.2]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZGBP":{"altname":"XBTGBP","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZGBP","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZGBP.d":{"altname":"XBTGBP.d","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZGBP","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.36],[10000,0.34],[50000,0.32],[100000,0.3],[250000,0.28],[500000,0.26],[1000000,0.24],[5000000,0.22],[10000000,0.2]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZJPY":{"altname":"XBTJPY","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZJPY","lot":"unit","pair_decimals":3,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZJPY.d":{"altname":"XBTJPY.d","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZJPY","lot":"unit","pair_decimals":3,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.36],[10000,0.34],[50000,0.32],[100000,0.3],[250000,0.28],[500000,0.26],[1000000,0.24],[5000000,0.22],[10000000,0.2]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZUSD":{"altname":"XBTUSD","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZUSD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.26],[10000,0.24],[50000,0.22],[100000,0.2],[250000,0.18],[500000,0.16],[1000000,0.14],[5000000,0.12],[10000000,0.1]],"fees_maker":[[0,0.16],[10000,0.14],[50000,0.12],[100000,0.1],[250000,0.08],[500000,0.06],[1000000,0.04],[5000000,0.02],[10000000,0]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"XXBTZUSD.d":{"altname":"XBTUSD.d","aclass_base":"currency","base":"XXBT","aclass_quote":"currency","quote":"ZUSD","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.36],[10000,0.34],[50000,0.32],[100000,0.3],[250000,0.28],[500000,0.26],[1000000,0.24],[5000000,0.22],[10000000,0.2]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"ZEURXXVN":{"altname":"EURXVN","aclass_base":"currency","base":"ZEUR","aclass_quote":"currency","quote":"XXVN","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.75]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40},"ZUSDXXVN":{"altname":"USDXVN","aclass_base":"currency","base":"ZUSD","aclass_quote":"currency","quote":"XXVN","lot":"unit","pair_decimals":5,"lot_decimals":8,"lot_multiplier":1,"leverage_buy":[],"leverage_sell":[],"fees":[[0,0.75]],"fee_volume_currency":"ZUSD","margin_call":80,"margin_stop":40}}}'
43
+ http_version:
44
+ recorded_at: Sun, 23 Aug 2015 00:51:21 GMT
45
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,41 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.kraken.com/0/private/Balance
6
+ body:
7
+ encoding: UTF-8
8
+ string: nonce=943910730968917668
9
+ headers:
10
+ Api-Key:
11
+ - COMPUTED
12
+ Api-Sign:
13
+ - COMPUTED
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Server:
20
+ - cloudflare-nginx
21
+ Date:
22
+ - COMPUTED
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Transfer-Encoding:
26
+ - chunked
27
+ Connection:
28
+ - keep-alive
29
+ Set-Cookie:
30
+ - __cfduid=COMPUTED; expires=Mon, 22-Aug-16
31
+ 01:31:14 GMT; path=/; domain=.kraken.com; HttpOnly
32
+ Vary:
33
+ - Accept-Encoding
34
+ Cf-Ray:
35
+ - COMPUTED
36
+ body:
37
+ encoding: UTF-8
38
+ string: '{"error":[],"result":{"ZEUR":"1433.0939","XXBT":"0.0000000000","XETH":"99.7497224800"}}'
39
+ http_version:
40
+ recorded_at: Sun, 23 Aug 2015 01:31:15 GMT
41
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,41 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.kraken.com/0/private/CancelOrder
6
+ body:
7
+ encoding: UTF-8
8
+ string: nonce=943911979874112320&txid=ODEC3J-QAMVD-NSF7XD
9
+ headers:
10
+ Api-Key:
11
+ - COMPUTED
12
+ Api-Sign:
13
+ - COMPUTED
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Server:
20
+ - cloudflare-nginx
21
+ Date:
22
+ - COMPUTED
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Transfer-Encoding:
26
+ - chunked
27
+ Connection:
28
+ - keep-alive
29
+ Set-Cookie:
30
+ - __cfduid=COMPUTED; expires=Mon, 22-Aug-16
31
+ 02:02:59 GMT; path=/; domain=.kraken.com; HttpOnly
32
+ Vary:
33
+ - Accept-Encoding
34
+ Cf-Ray:
35
+ - COMPUTED
36
+ body:
37
+ encoding: UTF-8
38
+ string: '{"error":[],"result":{"count":1}}'
39
+ http_version:
40
+ recorded_at: Sun, 23 Aug 2015 02:03:00 GMT
41
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,134 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.kraken.com/0/private/ClosedOrders
6
+ body:
7
+ encoding: UTF-8
8
+ string: nonce=943910733106885628
9
+ headers:
10
+ Api-Key:
11
+ - COMPUTED
12
+ Api-Sign:
13
+ - COMPUTED
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Server:
20
+ - cloudflare-nginx
21
+ Date:
22
+ - Sun, 23 Aug 2015 01:31:18 GMT
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Transfer-Encoding:
26
+ - chunked
27
+ Connection:
28
+ - keep-alive
29
+ Set-Cookie:
30
+ - __cfduid=COMPUTED; expires=Mon, 22-Aug-16
31
+ 01:31:17 GMT; path=/; domain=.kraken.com; HttpOnly
32
+ Vary:
33
+ - Accept-Encoding
34
+ Cf-Ray:
35
+ - COMPUTED
36
+ body:
37
+ encoding: UTF-8
38
+ string: '{"error":[],"result":{"closed":{"O75MLD-64OIU-5O4JDM":{"refid":null,"userref":null,"status":"canceled","reason":"User
39
+ canceled","opentm":1440289877.8097,"closetm":1440291917.7096,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.19980","price2":"0","leverage":"none","order":"buy
40
+ 1100.00000000 ETHEUR @ limit 1.19980"},"vol":"1100.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OTVCNA-KKVID-3QQA54":{"refid":null,"userref":null,"status":"canceled","reason":"User
41
+ canceled","opentm":1440253932.701,"closetm":1440253971.5454,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.29999","price2":"0","leverage":"none","order":"sell
42
+ 99.74972000 ETHEUR @ limit 1.29999"},"vol":"99.74972000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OKRRJ6-MH3UH-DV6IKT":{"refid":null,"userref":null,"status":"canceled","reason":"User
43
+ canceled","opentm":1440236676.6356,"closetm":1440272720.3485,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.17008","price2":"0","leverage":"none","order":"buy
44
+ 1200.00000000 ETHEUR @ limit 1.17008"},"vol":"1200.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OVNOLT-BTKRZ-6IZV3G":{"refid":null,"userref":null,"status":"canceled","reason":"User
45
+ canceled","opentm":1440236479.196,"closetm":1440236654.8024,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.16008","price2":"0","leverage":"none","order":"buy
46
+ 1200.00000000 ETHEUR @ limit 1.16008"},"vol":"1200.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OWECQR-BED3E-5YYFYU":{"refid":null,"userref":null,"status":"canceled","reason":"User
47
+ canceled","opentm":1440235802.4145,"closetm":1440236454.6985,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.16000","price2":"0","leverage":"none","order":"buy
48
+ 1235.00000000 ETHEUR @ limit 1.16000"},"vol":"1235.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OXJ55X-SDGFZ-3KJPKR":{"refid":null,"userref":null,"status":"canceled","reason":"User
49
+ canceled","opentm":1440198082.8294,"closetm":1440253916.345,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.30345","price2":"0","leverage":"none","order":"sell
50
+ 99.74972000 ETHEUR @ limit 1.30345"},"vol":"99.74972000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OV74TX-7I3EE-42SXKR":{"refid":null,"userref":null,"status":"canceled","reason":"User
51
+ canceled","opentm":1440197672.8944,"closetm":1440198060.9667,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.30347","price2":"0","leverage":"none","order":"sell
52
+ 99.74972000 ETHEUR @ limit 1.30347"},"vol":"99.74972000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O475ZL-YESKC-XPWMHB":{"refid":null,"userref":null,"status":"canceled","reason":"User
53
+ canceled","opentm":1440193565.3114,"closetm":1440197655.5567,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.30349","price2":"0","leverage":"none","order":"sell
54
+ 1041.03565000 ETHEUR @ limit 1.30349"},"vol":"1041.03565000","vol_exec":"941.28593402","cost":"1226.95680","fee":"1.96313","price":"1.30349","misc":"partial","oflags":"fciq"},"O42SYU-DUTEY-TVAMF7":{"refid":null,"userref":null,"status":"canceled","reason":"User
55
+ canceled","opentm":1440192077.4401,"closetm":1440193546.5893,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.30900","price2":"0","leverage":"none","order":"sell
56
+ 1041.03565000 ETHEUR @ limit 1.30900"},"vol":"1041.03565000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OI7AE4-AQ5YG-M5AMIQ":{"refid":null,"userref":null,"status":"canceled","reason":"User
57
+ canceled","opentm":1440191789.4299,"closetm":1440192038.4607,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.30000","price2":"0","leverage":"none","order":"sell
58
+ 1041.03565000 ETHEUR @ limit 1.30000"},"vol":"1041.03565000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"ODLJR7-7YJZE-F4E6V5":{"refid":null,"userref":null,"status":"canceled","reason":"User
59
+ canceled","opentm":1440189110.9433,"closetm":1440190678.9161,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.29000","price2":"0","leverage":"none","order":"sell
60
+ 1041.00000000 ETHEUR @ limit 1.29000"},"vol":"1041.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OFFEW7-XBSCD-QM2I6R":{"refid":null,"userref":null,"status":"canceled","reason":"User
61
+ canceled","opentm":1440189042.4348,"closetm":1440189063.6435,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.27000","price2":"0","leverage":"none","order":"sell
62
+ 65.47820000 ETHEUR @ limit 1.27000"},"vol":"65.47820000","vol_exec":"24.44254386","cost":"31.04203","fee":"0.04967","price":"1.27000","misc":"partial","oflags":"fciq"},"O4IZWP-FBLE5-VGGBR2":{"refid":null,"userref":null,"status":"canceled","reason":"User
63
+ canceled","opentm":1440188544.5061,"closetm":1440188840.9365,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.27000","price2":"0","leverage":"none","order":"sell
64
+ 1101.00010000 ETHEUR @ limit 1.27000"},"vol":"1101.00010000","vol_exec":"35.52189964","cost":"45.11282","fee":"0.07219","price":"1.27000","misc":"partial","oflags":"fciq"},"ORRAW6-2FA6A-MEEFIQ":{"refid":null,"userref":null,"status":"canceled","reason":"User
65
+ canceled","opentm":1440187180.611,"closetm":1440187216.6723,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.26000","price2":"0","leverage":"none","order":"sell
66
+ 500.00000000 ETHEUR @ limit 1.26000"},"vol":"500.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OGOPHK-HL7MX-44MDHI":{"refid":null,"userref":null,"status":"canceled","reason":"User
67
+ canceled","opentm":1440185604.0352,"closetm":1440185648.2069,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.26000","price2":"0","leverage":"none","order":"sell
68
+ 1101.00000000 ETHEUR @ limit 1.26000"},"vol":"1101.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OEBRON-76XQL-VUZUWQ":{"refid":null,"userref":null,"status":"canceled","reason":"User
69
+ canceled","opentm":1440184616.3205,"closetm":1440184775.2722,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.28000","price2":"0","leverage":"none","order":"sell
70
+ 1101.00000000 ETHEUR @ limit 1.28000"},"vol":"1101.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OYKIQR-L3VX6-PXX3QP":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440184459.5038,"closetm":1440184482.1895,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.25001","price2":"0","leverage":"none","order":"buy
71
+ 1100.00000000 ETHEUR @ limit 1.25001"},"vol":"1100.00000000","vol_exec":"1100.00000000","cost":"1375.01099","fee":"2.20003","price":"1.25001","misc":"","oflags":"fciq"},"OYZBCZ-ZURQ7-UUTIJI":{"refid":null,"userref":null,"status":"canceled","reason":"User
72
+ canceled","opentm":1440179040.2669,"closetm":1440184582.221,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.37000","price2":"0","leverage":"none","order":"sell
73
+ 1.00010000 ETHEUR @ limit 1.37000"},"vol":"1.00010000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OTROMJ-BVPA3-ROGNZX":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440178997.8463,"closetm":1440178999.415,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.36000","price2":"0","leverage":"none","order":"buy
74
+ 1.00000000 ETHEUR @ limit 1.36000"},"vol":"1.00000000","vol_exec":"1.00000000","cost":"1.36000","fee":"0.00218","price":"1.36000","misc":"","oflags":"fciq"},"OJDFC6-KGOGK-RZISHS":{"refid":null,"userref":null,"status":"canceled","reason":"User
75
+ canceled","opentm":1440178931.7959,"closetm":1440178981.3242,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.32235","price2":"0","leverage":"none","order":"buy
76
+ 29.00000000 ETHEUR @ limit 1.32235"},"vol":"29.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OFP6PR-KPXNF-QUMZKQ":{"refid":null,"userref":null,"status":"canceled","reason":"User
77
+ canceled","opentm":1440170415.6066,"closetm":1440170538.0596,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"buy","ordertype":"limit","price":"207.72000","price2":"0","leverage":"none","order":"buy
78
+ 7.25000000 XBTEUR @ limit 207.72000"},"vol":"7.25000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O45FVN-VKA6J-HZQVNR":{"refid":null,"userref":null,"status":"canceled","reason":"User
79
+ canceled","opentm":1440170356.7501,"closetm":1440170412.3292,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"buy","ordertype":"limit","price":"207.71359","price2":"0","leverage":"none","order":"buy
80
+ 7.25000000 XBTEUR @ limit 207.71359"},"vol":"7.25000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OCT6VU-RUXSP-Z63566":{"refid":null,"userref":null,"status":"canceled","reason":"User
81
+ canceled","opentm":1440170268.4635,"closetm":1440170311.259,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"buy","ordertype":"limit","price":"207.49008","price2":"0","leverage":"none","order":"buy
82
+ 7.20000000 XBTEUR @ limit 207.49008"},"vol":"7.20000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O4E3NG-GXUT5-SJMGYE":{"refid":null,"userref":null,"status":"canceled","reason":"User
83
+ canceled","opentm":1440170156.9639,"closetm":1440170246.6621,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"buy","ordertype":"limit","price":"207.49005","price2":"0","leverage":"none","order":"buy
84
+ 7.20000000 XBTEUR @ limit 207.49005"},"vol":"7.20000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O5U5TZ-OLZP3-MM7TIS":{"refid":null,"userref":null,"status":"canceled","reason":"User
85
+ canceled","opentm":1440170048.6696,"closetm":1440170111.7209,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"buy","ordertype":"limit","price":"207.49000","price2":"0","leverage":"none","order":"buy
86
+ 7.25000000 XBTEUR @ limit 207.49000"},"vol":"7.25000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OOR7HJ-JAHOZ-IZY6G7":{"refid":null,"userref":null,"status":"canceled","reason":"User
87
+ canceled","opentm":1440156869.1734,"closetm":1440156922.4209,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.25438","price2":"0","leverage":"none","order":"buy
88
+ 88.00000000 ETHEUR @ limit 1.25438"},"vol":"88.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OMOPDQ-PMPBS-WEB44W":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440152752.5752,"closetm":1440152868.4841,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"sell","ordertype":"limit","price":"210.20000","price2":"0","leverage":"none","order":"sell
89
+ 0.50000000 XBTEUR @ limit 210.20000"},"vol":"0.50000000","vol_exec":"0.50000000","cost":"105.10000","fee":"0.16816","price":"210.20000","misc":"","oflags":"fciq"},"OUJ4V4-HB25J-2PEX3A":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440152468.3807,"closetm":1440152630.3116,"starttm":0,"expiretm":0,"descr":{"pair":"XBTEUR","type":"buy","ordertype":"limit","price":"209.86010","price2":"0","leverage":"none","order":"buy
90
+ 0.50000000 XBTEUR @ limit 209.86010"},"vol":"0.50000000","vol_exec":"0.50000000","cost":"104.93005","fee":"0.16789","price":"209.86010","misc":"","oflags":"fciq"},"OZYU5U-VSRJT-S7VZ5K":{"refid":null,"userref":null,"status":"canceled","reason":"User
91
+ canceled","opentm":1440109253.7583,"closetm":1440152452.6002,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.13000","price2":"0","leverage":"none","order":"buy
92
+ 98.00000000 ETHEUR @ limit 1.13000"},"vol":"98.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OSOSHM-BOCYR-JJJENN":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440109173.7359,"closetm":1440109173.7425,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"market","price":"0","price2":"0","leverage":"none","order":"sell
93
+ 1.19000000 ETHEUR @ market"},"vol":"1.19000000","vol_exec":"1.19000000","cost":"1.59510","fee":"0.00415","price":"1.34042","misc":"","oflags":"fciq"},"O7BZJV-UHEDC-QFOZRW":{"refid":null,"userref":null,"status":"canceled","reason":"User
94
+ canceled","opentm":1440097527.5299,"closetm":1440097633.8968,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.25000","price2":"0","leverage":"none","order":"buy
95
+ 5.00000000 ETHEUR @ limit 1.25000"},"vol":"5.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OQX2PN-WZJTP-FN3ZTL":{"refid":null,"userref":null,"status":"canceled","reason":"User
96
+ canceled","opentm":1440097134.8719,"closetm":1440097635.2118,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.19010","price2":"0","leverage":"none","order":"buy
97
+ 23.00000000 ETHEUR @ limit 1.19010"},"vol":"23.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OTX446-KMVWD-7OPCZL":{"refid":null,"userref":null,"status":"canceled","reason":"User
98
+ canceled","opentm":1440097074.212,"closetm":1440097111.2548,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.19010","price2":"0","leverage":"none","order":"buy
99
+ 17.00000000 ETHEUR @ limit 1.19010"},"vol":"17.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OWDBJG-BFES5-SRVLXR":{"refid":null,"userref":null,"status":"canceled","reason":"User
100
+ canceled","opentm":1440096844.4442,"closetm":1440097058.1809,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.19010","price2":"0","leverage":"none","order":"buy
101
+ 19.00000000 ETHEUR @ limit 1.19010"},"vol":"19.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O3FLSW-FMU5J-QILSVQ":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440096631.1824,"closetm":1440096631.2031,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"19.00000","price2":"0","leverage":"none","order":"buy
102
+ 1.19010000 ETHEUR @ limit 19.00000"},"vol":"1.19010000","vol_exec":"1.19010000","cost":"1.54700","fee":"0.00402","price":"1.29989","misc":"","oflags":"fciq"},"OXV5WS-HBVK2-ORYUD2":{"refid":null,"userref":null,"status":"canceled","reason":"User
103
+ canceled","opentm":1440095900.9042,"closetm":1440096481.5734,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.23000","price2":"0","leverage":"none","order":"buy
104
+ 90.00000000 ETHEUR @ limit 1.23000"},"vol":"90.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OFPTDF-XAHLW-ICNAJO":{"refid":null,"userref":null,"status":"canceled","reason":"User
105
+ canceled","opentm":1440095715.2374,"closetm":1440095820.5569,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.20020","price2":"0","leverage":"none","order":"buy
106
+ 92.00000000 ETHEUR @ limit 1.20020"},"vol":"92.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OX3ZV5-7NNET-U7PFWW":{"refid":null,"userref":null,"status":"canceled","reason":"User
107
+ canceled","opentm":1440093332.0178,"closetm":1440095697.6164,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.17002","price2":"0","leverage":"none","order":"buy
108
+ 94.50000000 ETHEUR @ limit 1.17002"},"vol":"94.50000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OBW2DF-PFAKB-H5PXHA":{"refid":null,"userref":null,"status":"canceled","reason":"User
109
+ canceled","opentm":1440093297.1445,"closetm":1440093314.6343,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.23000","price2":"0","leverage":"none","order":"buy
110
+ 90.00000000 ETHEUR @ limit 1.23000"},"vol":"90.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O5KMUL-3T5Z7-K2S26M":{"refid":null,"userref":null,"status":"canceled","reason":"User
111
+ canceled","opentm":1440093158.4176,"closetm":1440093287.1033,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.22000","price2":"0","leverage":"none","order":"buy
112
+ 90.00000000 ETHEUR @ limit 1.22000"},"vol":"90.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OINAKG-7ILY7-IRD3WP":{"refid":null,"userref":null,"status":"canceled","reason":"User
113
+ canceled","opentm":1440093051.2399,"closetm":1440093141.2097,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.21000","price2":"0","leverage":"none","order":"buy
114
+ 91.00000000 ETHEUR @ limit 1.21000"},"vol":"91.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OPV4OV-6GUMO-3VH55Q":{"refid":null,"userref":null,"status":"canceled","reason":"User
115
+ canceled","opentm":1440092928.5659,"closetm":1440093038.0352,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.20000","price2":"0","leverage":"none","order":"buy
116
+ 92.00000000 ETHEUR @ limit 1.20000"},"vol":"92.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OA2BW2-NQMVT-Z5KUH6":{"refid":null,"userref":null,"status":"canceled","reason":"User
117
+ canceled","opentm":1440090971.8167,"closetm":1440091130.8134,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.19000","price2":"0","leverage":"none","order":"buy
118
+ 92.00000000 ETHEUR @ limit 1.19000"},"vol":"92.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OCDK4J-YUDR4-QPTLOU":{"refid":null,"userref":null,"status":"canceled","reason":"User
119
+ canceled","opentm":1440090769.7386,"closetm":1440090947.4897,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.16002","price2":"0","leverage":"none","order":"buy
120
+ 95.00000000 ETHEUR @ limit 1.16002"},"vol":"95.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O3NW3J-Y5YJI-3EZB5I":{"refid":null,"userref":null,"status":"canceled","reason":"User
121
+ canceled","opentm":1440090451.322,"closetm":1440090705.0764,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.16000","price2":"0","leverage":"none","order":"buy
122
+ 95.00000000 ETHEUR @ limit 1.16000"},"vol":"95.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OEPPRI-VJOMZ-XZZWBI":{"refid":null,"userref":null,"status":"canceled","reason":"User
123
+ canceled","opentm":1440089897.9085,"closetm":1440090397.347,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.13010","price2":"0","leverage":"none","order":"buy
124
+ 88.48000000 ETHEUR @ limit 1.13010"},"vol":"88.48000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OXSR6A-WEJLR-VF2HJ2":{"refid":null,"userref":null,"status":"canceled","reason":"User
125
+ canceled","opentm":1440089843.2634,"closetm":1440089857.4691,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"buy","ordertype":"limit","price":"1.13000","price2":"0","leverage":"none","order":"buy
126
+ 88.49000000 ETHEUR @ limit 1.13000"},"vol":"88.49000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"O23UDQ-A73M5-BNZO4C":{"refid":null,"userref":null,"status":"closed","reason":null,"opentm":1440089640.0173,"closetm":1440089663.9192,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.22000","price2":"0","leverage":"none","order":"sell
127
+ 71.00000000 ETHEUR @ limit 1.22000"},"vol":"71.00000000","vol_exec":"71.00000000","cost":"86.62000","fee":"0.13859","price":"1.22000","misc":"","oflags":"fciq"},"O2FGTF-WYTHJ-ETQWK4":{"refid":null,"userref":null,"status":"canceled","reason":"User
128
+ canceled","opentm":1440088974.1477,"closetm":1440089621.4635,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.23485","price2":"0","leverage":"none","order":"sell
129
+ 71.00000000 ETHEUR @ limit 1.23485"},"vol":"71.00000000","vol_exec":"0.00000000","cost":"0.00000","fee":"0.00000","price":"0.00000","misc":"","oflags":"fciq"},"OTDBFW-XEM3Q-S7XEJ6":{"refid":null,"userref":null,"status":"canceled","reason":"User
130
+ canceled","opentm":1440088637.3002,"closetm":1440088948.3429,"starttm":0,"expiretm":0,"descr":{"pair":"ETHEUR","type":"sell","ordertype":"limit","price":"1.20000","price2":"0","leverage":"none","order":"sell
131
+ 91.00000000 ETHEUR @ limit 1.20000"},"vol":"91.00000000","vol_exec":"20.00000000","cost":"24.00000","fee":"0.03840","price":"1.20000","misc":"partial","oflags":"fciq"}},"count":"62"}}'
132
+ http_version:
133
+ recorded_at: Sun, 23 Aug 2015 01:31:18 GMT
134
+ recorded_with: VCR 2.9.3