cryptoexchange 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +7 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +111 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/cryptoexchange.gemspec +31 -0
  13. data/lib/cryptoexchange.rb +26 -0
  14. data/lib/cryptoexchange/exchanges/bitflyer/market.rb +8 -0
  15. data/lib/cryptoexchange/exchanges/bitflyer/models/market_pair.rb +8 -0
  16. data/lib/cryptoexchange/exchanges/bitflyer/models/ticker.rb +8 -0
  17. data/lib/cryptoexchange/exchanges/bitflyer/services/market.rb +31 -0
  18. data/lib/cryptoexchange/exchanges/bitflyer/services/pairs.rb +34 -0
  19. data/lib/cryptoexchange/exchanges/coincheck/coincheck.yml +3 -0
  20. data/lib/cryptoexchange/exchanges/coincheck/market.rb +8 -0
  21. data/lib/cryptoexchange/exchanges/coincheck/models/market_pair.rb +8 -0
  22. data/lib/cryptoexchange/exchanges/coincheck/models/ticker.rb +8 -0
  23. data/lib/cryptoexchange/exchanges/coincheck/services/market.rb +32 -0
  24. data/lib/cryptoexchange/exchanges/coincheck/services/pairs.rb +26 -0
  25. data/lib/cryptoexchange/exchanges/coinone/market.rb +8 -0
  26. data/lib/cryptoexchange/exchanges/coinone/models/market_pair.rb +8 -0
  27. data/lib/cryptoexchange/exchanges/coinone/models/ticker.rb +8 -0
  28. data/lib/cryptoexchange/exchanges/coinone/services/market.rb +31 -0
  29. data/lib/cryptoexchange/exchanges/coinone/services/pairs.rb +28 -0
  30. data/lib/cryptoexchange/exchanges/cryptopia/market.rb +8 -0
  31. data/lib/cryptoexchange/exchanges/cryptopia/models/market_pair.rb +8 -0
  32. data/lib/cryptoexchange/exchanges/cryptopia/models/ticker.rb +8 -0
  33. data/lib/cryptoexchange/exchanges/cryptopia/services/market.rb +39 -0
  34. data/lib/cryptoexchange/exchanges/cryptopia/services/pairs.rb +29 -0
  35. data/lib/cryptoexchange/exchanges/gatecoin/market.rb +8 -0
  36. data/lib/cryptoexchange/exchanges/gatecoin/models/market_pair.rb +8 -0
  37. data/lib/cryptoexchange/exchanges/gatecoin/models/ticker.rb +8 -0
  38. data/lib/cryptoexchange/exchanges/gatecoin/services/market.rb +49 -0
  39. data/lib/cryptoexchange/exchanges/gatecoin/services/pairs.rb +32 -0
  40. data/lib/cryptoexchange/exchanges/korbit/korbit.yml +7 -0
  41. data/lib/cryptoexchange/exchanges/korbit/market.rb +8 -0
  42. data/lib/cryptoexchange/exchanges/korbit/models/market_pair.rb +8 -0
  43. data/lib/cryptoexchange/exchanges/korbit/models/ticker.rb +8 -0
  44. data/lib/cryptoexchange/exchanges/korbit/services/market.rb +34 -0
  45. data/lib/cryptoexchange/exchanges/korbit/services/pairs.rb +26 -0
  46. data/lib/cryptoexchange/models/market_pair.rb +21 -0
  47. data/lib/cryptoexchange/models/ticker.rb +21 -0
  48. data/lib/cryptoexchange/services/market.rb +10 -0
  49. data/lib/cryptoexchange/services/pairs.rb +46 -0
  50. data/lib/cryptoexchange/version.rb +3 -0
  51. metadata +177 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c69eda62aac34e8e46b331cbb04b8d924ca2ac83
4
+ data.tar.gz: e8e20d35a3139eae3ef8e68bc479bdad0f903016
5
+ SHA512:
6
+ metadata.gz: a7d7c3ffc9b5c28cc086e874b67911d1b20c833a1b48fc18bbec3c0ae7cb635803340a6f77eb49665dbf0004dec24d1245caebf61f104e2f19ffe7c85c539e7b
7
+ data.tar.gz: e817df96f2a9ebe3464cda353e36fae2fef3c2ea6211a99643b51b18b15350d07b7a55f9afaea1c72f42b5cc730929938729b81736a6c7a4e994ec051f1e5dae
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,7 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.2.4
5
+ - 2.3.4
6
+ - 2.4.1
7
+ before_install: gem install bundler -v 1.14.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at tm89lee@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cryptoexchange.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,111 @@
1
+ [![Build Status](https://travis-ci.org/coingecko/cryptoexchange.svg)](https://travis-ci.org/coingecko/cryptoexchange)
2
+
3
+ # Cryptoexchange
4
+
5
+ Cryptoexchange is a rubygem for ruby developers to interact with multiple cryptocurrency exchange market data APIs in a single library.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'cryptoexchange'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install cryptoexchange
22
+
23
+ ## Exchanges Supported
24
+
25
+ | Exchange | Ticker | Order Book | Trade | Account | Market List |
26
+ | ----------------- | ------- | ---------- | ------- | ------- | ----------- |
27
+ | ANX | | | | | |
28
+ | Gatecoin | Y | | | | Y |
29
+ | BTCC | | | | | |
30
+ | OKCoin | | | | | |
31
+ | LakeBTC | | | | | |
32
+ | Huobi | | | | | |
33
+ | Yunbi | | | | | |
34
+ | BTC38 | | | | | |
35
+ | CHBTC | | | | | |
36
+ | Bitstamp | | | | | |
37
+ | Bittrex | | | | | |
38
+ | GDAX | | | | | |
39
+ | Gemini | | | | | |
40
+ | Kraken | | | | | |
41
+ | Poloniex | | | | | |
42
+ | Coincheck | Y | | | | User-Defined|
43
+ | Bitflyer | Y | | | | Y |
44
+ | Quoine | | | | | |
45
+ | QuadrigaCX | | | | | |
46
+ | Unocoin | | | | | |
47
+ | Coinone | Y | | | | Y |
48
+ | Korbit | Y | | | | User-Defined|
49
+ | Bithumb | | | | | |
50
+ | Luno | | | | | |
51
+ | BTC-e | | | | | |
52
+ | Bleutrade | | | | | |
53
+ | Yobit | | | | | |
54
+ | Bitfinex | | | | | |
55
+ | BTER | | | | | |
56
+ | Cryptopia | Y | | | | Y |
57
+ | Livecoin | | | | | |
58
+ | Nova Exchange | | | | | |
59
+ | Bitcoin Indonesia | | | | | |
60
+
61
+ ## Usage
62
+
63
+ ### List market pairs supported by an exchange
64
+ ```
65
+ Cryptoexchange::Exchanges::Bitflyer::Services::Pairs.new.fetch
66
+ ```
67
+
68
+ ### Query the Ticker API
69
+ ```
70
+ pair = Cryptoexchange::Exchanges::Bitflyer::Services::Pairs.new.fetch.first
71
+ ticker = Cryptoexchange::Exchanges::Bitflyer::Services::Market.new.fetch(pair)
72
+ ticker.base
73
+ ticker.target
74
+ ticker.last
75
+ ```
76
+
77
+ ### Market List
78
+ Some exchange API do not support market pair listings. For those exchanges, we included
79
+ a custom YML file to define the list of market pairs supported by that exchange.
80
+ That configuration works out of the box, however if that exchange adds new market pairs,
81
+ you as the user of Cryptoexchange can explicitly add those pairs instead of waiting
82
+ for this library to be updated.
83
+
84
+ In the table above, look for the `User-Defined` under the Market List column.
85
+
86
+ The format of the yaml file should look like below.
87
+ Name the file <exchange_name>.yml and place it under the config/cryptoexchange directory.
88
+ ```
89
+ :pairs:
90
+ - :base: BTC
91
+ :target: KRW
92
+ - :base: ETH
93
+ :target: KRW
94
+ - :base: ETC
95
+ :target: KRW
96
+ ```
97
+
98
+ ## Development
99
+
100
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
101
+
102
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
103
+
104
+ ## Contributing
105
+
106
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cryptoexchange. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
107
+
108
+ ## License
109
+
110
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
111
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cryptoexchange"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cryptoexchange/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cryptoexchange"
8
+ spec.version = Cryptoexchange::VERSION
9
+ spec.authors = ["TM Lee"]
10
+ spec.email = ["tm89lee@gmail.com"]
11
+
12
+ spec.summary = "Ruby library to query market data from cryptocurrency exchanges."
13
+ spec.description = "Ruby library to query market data from cryptocurrency exchanges."
14
+ spec.homepage = ""
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.14"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec", "~> 3.0"
27
+ spec.add_development_dependency "pry"
28
+ spec.add_development_dependency "rb-readline"
29
+
30
+ spec.add_dependency "http"
31
+ end
@@ -0,0 +1,26 @@
1
+ require "cryptoexchange/version"
2
+ require "cryptoexchange/models/ticker"
3
+ require "cryptoexchange/models/market_pair"
4
+ require "cryptoexchange/services/market"
5
+ require "cryptoexchange/services/pairs"
6
+
7
+ %w(
8
+ bitflyer
9
+ coincheck
10
+ coinone
11
+ korbit
12
+ cryptopia
13
+ gatecoin
14
+ ).each do |market|
15
+ require "cryptoexchange/exchanges/#{market}/market"
16
+ require "cryptoexchange/exchanges/#{market}/models/ticker"
17
+ require "cryptoexchange/exchanges/#{market}/models/market_pair"
18
+ require "cryptoexchange/exchanges/#{market}/services/market"
19
+ require "cryptoexchange/exchanges/#{market}/services/pairs"
20
+ end
21
+
22
+ require "http"
23
+
24
+ module Cryptoexchange
25
+ # Your code goes here...
26
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Bitflyer
3
+ class Market
4
+ NAME = 'bitflyer'
5
+ API_URL = 'https://api.bitflyer.jp/v1/'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Bitflyer
3
+ module Models
4
+ class MarketPair < Cryptoexchange::Models::MarketPair
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Bitflyer
3
+ module Models
4
+ class Ticker < Cryptoexchange::Models::Ticker
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,31 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Bitflyer
3
+ module Services
4
+ class Market < Cryptoexchange::Services::Market
5
+ def fetch(market_pair)
6
+ output = super(market_url(market_pair))
7
+ adapt(output)
8
+ end
9
+
10
+ def market_url(market_pair)
11
+ "#{Cryptoexchange::Exchanges::Bitflyer::Market::API_URL}/ticker?product_code=#{market_pair.base}_#{market_pair.target}"
12
+ end
13
+
14
+ def adapt(output)
15
+ ticker = Bitflyer::Models::Ticker.new
16
+ base, target = output['product_code'].split('_')
17
+ ticker.base = base
18
+ ticker.target = target
19
+ ticker.market = Bitflyer::Market::NAME
20
+ ticker.ask = output['best_ask']
21
+ ticker.bid = output['best_bid']
22
+ ticker.last = output['ltp']
23
+ ticker.volume = output['volume_by_product']
24
+ ticker.timestamp = Time.parse(output['timestamp']).to_i
25
+ ticker.payload = output
26
+ ticker
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,34 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Bitflyer
3
+ module Services
4
+ class Pairs < Cryptoexchange::Services::Pairs
5
+ MARKET = Bitflyer::Market
6
+ PAIRS_URL = "#{Cryptoexchange::Exchanges::Bitflyer::Market::API_URL}/markets"
7
+
8
+ def fetch
9
+ output = super
10
+ adapt(output)
11
+ end
12
+
13
+ def adapt(output)
14
+ market_pairs = []
15
+ output.each do |value|
16
+
17
+ product_code = value['product_code']
18
+
19
+ if product_code =~ /\A[A-Z]{3}_[A-Z]{3}\z/
20
+ base, target = product_code.split('_')
21
+ market_pairs << Bitflyer::Models::MarketPair.new(
22
+ base: base,
23
+ target: target,
24
+ market: MARKET::NAME
25
+ )
26
+ end
27
+ end
28
+
29
+ market_pairs
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,3 @@
1
+ :pairs:
2
+ - :base: BTC
3
+ :target: JPY
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coincheck
3
+ class Market
4
+ NAME = 'coincheck'
5
+ API_URL = 'https://coincheck.com/api/'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coincheck
3
+ module Models
4
+ class MarketPair < Cryptoexchange::Models::MarketPair
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coincheck
3
+ module Models
4
+ class Ticker < Cryptoexchange::Models::Ticker
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,32 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coincheck
3
+ module Services
4
+ class Market < Cryptoexchange::Services::Market
5
+ def fetch(_)
6
+ output = super(market_url(_))
7
+ adapt(output)
8
+ end
9
+
10
+ def market_url(_)
11
+ "#{Cryptoexchange::Exchanges::Coincheck::Market::API_URL}/ticker"
12
+ end
13
+
14
+ def adapt(output)
15
+ ticker = Coincheck::Models::Ticker.new
16
+ ticker.base = 'BTC'
17
+ ticker.target = 'JPY'
18
+ ticker.market = Coincheck::Market::NAME
19
+ ticker.ask = output['ask']
20
+ ticker.bid = output['bid']
21
+ ticker.last = output['last']
22
+ ticker.high = output['high']
23
+ ticker.low = output['low']
24
+ ticker.volume = output['volume'].to_f
25
+ ticker.timestamp = output['timestamp']
26
+ ticker.payload = output
27
+ ticker
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,26 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coincheck
3
+ module Services
4
+ class Pairs < Cryptoexchange::Services::Pairs
5
+ MARKET = Coincheck::Market
6
+
7
+ def fetch
8
+ output = super
9
+ adapt(output)
10
+ end
11
+
12
+ def adapt(output)
13
+ market_pairs = []
14
+ output.each do |pair|
15
+ market_pairs << Coincheck::Models::MarketPair.new(
16
+ base: pair[:base],
17
+ target: pair[:target],
18
+ market: MARKET::NAME
19
+ )
20
+ end
21
+ market_pairs
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coinone
3
+ class Market
4
+ NAME = 'coinone'
5
+ API_URL = 'https://api.coinone.co.kr'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coinone
3
+ module Models
4
+ class MarketPair < Cryptoexchange::Models::MarketPair
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coinone
3
+ module Models
4
+ class Ticker < Cryptoexchange::Models::Ticker
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,31 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coinone
3
+ module Services
4
+ class Market < Cryptoexchange::Services::Market
5
+ def fetch(market_pair)
6
+ output = super(market_url(market_pair))
7
+ adapt(output)
8
+ end
9
+
10
+ def market_url(market_pair)
11
+ base = market_pair.base.downcase
12
+ "#{Cryptoexchange::Exchanges::Coinone::Market::API_URL}/ticker?currency=#{base}"
13
+ end
14
+
15
+ def adapt(output)
16
+ ticker = Coinone::Models::Ticker.new
17
+ ticker.base = output['currency']
18
+ ticker.target = 'KRW'
19
+ ticker.market = Coinone::Market::NAME
20
+ ticker.last = output['last']
21
+ ticker.high = output['high']
22
+ ticker.low = output['low']
23
+ ticker.volume = output['volume']
24
+ ticker.timestamp = output['timestamp']
25
+ ticker.payload = output
26
+ ticker
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,28 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Coinone
3
+ module Services
4
+ class Pairs < Cryptoexchange::Services::Pairs
5
+ MARKET = Coinone::Market
6
+ PAIRS_URL = "#{Cryptoexchange::Exchanges::Coinone::Market::API_URL}/ticker?currency=all"
7
+
8
+ def fetch
9
+ output = super
10
+ adapt(output)
11
+ end
12
+
13
+ def adapt(output)
14
+ market_pairs = []
15
+ output.each do |_, value|
16
+ next unless value.is_a? Hash
17
+ market_pair = Coinone::Models::MarketPair.new
18
+ market_pair.base = value['currency']
19
+ market_pair.target = 'krw'
20
+ market_pair.market = MARKET::NAME
21
+ market_pairs << market_pair
22
+ end
23
+ market_pairs
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Cryptopia
3
+ class Market
4
+ NAME = 'cryptopia'
5
+ API_URL = 'https://www.cryptopia.co.nz/api'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Cryptopia
3
+ module Models
4
+ class MarketPair < Cryptoexchange::Models::MarketPair
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Cryptopia
3
+ module Models
4
+ class Ticker < Cryptoexchange::Models::Ticker
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,39 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Cryptopia
3
+ module Services
4
+ class Market < Cryptoexchange::Services::Market
5
+
6
+ def fetch(market_pair)
7
+ output = super(market_url(market_pair))
8
+ adapt(output)
9
+ end
10
+
11
+ def market_url(market_pair)
12
+ base = market_pair.base
13
+ target = market_pair.target
14
+ "#{Cryptoexchange::Exchanges::Cryptopia::Market::API_URL}/GetMarket/#{base}_#{target}"
15
+ end
16
+
17
+ def adapt(output)
18
+ data = output['Data']
19
+ base, target = data['Label'].split('/')
20
+
21
+ ticker = Cryptopia::Models::Ticker.new
22
+ ticker.base = base
23
+ ticker.target = target
24
+ ticker.market = Cryptopia::Market::NAME
25
+ ticker.last = data['LastPrice']
26
+ ticker.bid = data['BidPrice']
27
+ ticker.ask = data['AskPrice']
28
+ ticker.high = data['High']
29
+ ticker.low = data['Low']
30
+ ticker.volume = data['Volume']
31
+ ticker.change = data['Change']
32
+ ticker.timestamp = DateTime.now.to_time.to_i
33
+ ticker.payload = data
34
+ ticker
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,29 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Cryptopia
3
+ module Services
4
+ class Pairs < Cryptoexchange::Services::Pairs
5
+ MARKET = Cryptopia::Market
6
+ PAIRS_URL = "#{Cryptoexchange::Exchanges::Cryptopia::Market::API_URL}/GetTradePairs"
7
+
8
+ def fetch
9
+ output = super
10
+ adapt(output)
11
+ end
12
+
13
+ def adapt(output)
14
+ pairs = output['Data']
15
+ market_pairs = []
16
+ pairs.each do |pair|
17
+ base, target = pair['Label'].split('/')
18
+ market_pair = Cryptopia::Models::MarketPair.new
19
+ market_pair.base = base
20
+ market_pair.target = target
21
+ market_pair.market = MARKET::NAME
22
+ market_pairs << market_pair
23
+ end
24
+ market_pairs
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Gatecoin
3
+ class Market
4
+ NAME = 'gatecoin'
5
+ API_URL = 'https://api.gatecoin.com'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Gatecoin
3
+ module Models
4
+ class MarketPair < Cryptoexchange::Models::MarketPair
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Gatecoin
3
+ module Models
4
+ class Ticker < Cryptoexchange::Models::Ticker
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,49 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Gatecoin
3
+ module Services
4
+ class Market < Cryptoexchange::Services::Market
5
+
6
+ def fetch(market_pair)
7
+ output = super(market_url)
8
+ adapt(output, market_pair)
9
+ end
10
+
11
+ def market_url
12
+ "#{Cryptoexchange::Exchanges::Gatecoin::Market::API_URL}/Public/LiveTickers"
13
+ end
14
+
15
+ def adapt(output, market_pair)
16
+ # base
17
+ # target
18
+ # market (exchange_str)
19
+ # last
20
+ # bid
21
+ # ask
22
+ # high
23
+ # low
24
+ # volume
25
+ # timestamp
26
+
27
+ data = output['tickers']
28
+ ticker_match = data.find do |datum|
29
+ datum['currencyPair'] == market_pair.base + market_pair.target
30
+ end
31
+
32
+ ticker = Gatecoin::Models::Ticker.new
33
+ ticker.base = market_pair.base
34
+ ticker.target = market_pair.target
35
+ ticker.market = 'gatecoin'
36
+ ticker.last = ticker_match['last']
37
+ ticker.bid = ticker_match['bid']
38
+ ticker.ask = ticker_match['ask']
39
+ ticker.high = ticker_match['high']
40
+ ticker.low = ticker_match['low']
41
+ ticker.volume = ticker_match['volume'] # TODO: Check if it is base denominated?
42
+ ticker.timestamp = ticker_match['createDateTime'].to_i
43
+ ticker.payload = ticker_match
44
+ ticker
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,32 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Gatecoin
3
+ module Services
4
+ class Pairs < Cryptoexchange::Services::Pairs
5
+ MARKET = Gatecoin::Market
6
+ PAIRS_URL = "#{Cryptoexchange::Exchanges::Gatecoin::Market::API_URL}/Public/LiveTickers"
7
+
8
+ def fetch
9
+ output = super
10
+ adapt(output)
11
+ end
12
+
13
+ def adapt(output)
14
+ pairs = output['tickers']
15
+ market_pairs = []
16
+ pairs.each do |pair|
17
+ currency_pair = pair['currencyPair']
18
+ base = currency_pair[0..2]
19
+ target = currency_pair[3..-1]
20
+
21
+ market_pair = Gatecoin::Models::MarketPair.new
22
+ market_pair.base = base
23
+ market_pair.target = target
24
+ market_pair.market = MARKET::NAME
25
+ market_pairs << market_pair
26
+ end
27
+ market_pairs
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,7 @@
1
+ :pairs:
2
+ - :base: BTC
3
+ :target: KRW
4
+ - :base: ETH
5
+ :target: KRW
6
+ - :base: ETC
7
+ :target: KRW
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Korbit
3
+ class Market
4
+ NAME = 'korbit'
5
+ API_URL = 'https://api.korbit.co.kr/v1'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Korbit
3
+ module Models
4
+ class MarketPair < Cryptoexchange::Models::MarketPair
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Korbit
3
+ module Models
4
+ class Ticker < Cryptoexchange::Models::Ticker
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,34 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Korbit
3
+ module Services
4
+ class Market < Cryptoexchange::Services::Market
5
+ def fetch(market_pair)
6
+ output = super(market_url(market_pair))
7
+ adapt(output, market_pair)
8
+ end
9
+
10
+ def market_url(market_pair)
11
+ base = market_pair.base.downcase
12
+ target = market_pair.target.downcase
13
+ "#{Cryptoexchange::Exchanges::Korbit::Market::API_URL}/ticker/detailed?currency_pair=#{base}_#{target}"
14
+ end
15
+
16
+ def adapt(output, market_pair)
17
+ ticker = Korbit::Models::Ticker.new
18
+ ticker.base = market_pair.base
19
+ ticker.target = market_pair.target
20
+ ticker.market = Korbit::Market::NAME
21
+ ticker.ask = output['ask']
22
+ ticker.bid = output['bid']
23
+ ticker.last = output['last']
24
+ ticker.high = output['high']
25
+ ticker.low = output['low']
26
+ ticker.volume = output['volume'].to_f
27
+ ticker.timestamp = output['timestamp']/1000
28
+ ticker.payload = output
29
+ ticker
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,26 @@
1
+ module Cryptoexchange::Exchanges
2
+ module Korbit
3
+ module Services
4
+ class Pairs < Cryptoexchange::Services::Pairs
5
+ MARKET = Korbit::Market
6
+
7
+ def fetch
8
+ output = super
9
+ adapt(output)
10
+ end
11
+
12
+ def adapt(output)
13
+ market_pairs = []
14
+ output.each do |pair|
15
+ market_pairs << Korbit::Models::MarketPair.new(
16
+ base: pair[:base],
17
+ target: pair[:target],
18
+ market: MARKET::NAME
19
+ )
20
+ end
21
+ market_pairs
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,21 @@
1
+ module Cryptoexchange
2
+ module Models
3
+ class MarketPair
4
+ attr_accessor :base, :target, :market
5
+
6
+ def initialize(params={})
7
+ @base = params[:base]
8
+ @target = params[:target]
9
+ @market = params[:market]
10
+ end
11
+
12
+ def target
13
+ @target.upcase
14
+ end
15
+
16
+ def base
17
+ @base.upcase
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ module Cryptoexchange
2
+ module Models
3
+ class Ticker
4
+ attr_accessor :base, :target, :market, :last,
5
+ :bid, :ask, :high, :low, :change,
6
+ :volume, :timestamp, :payload
7
+
8
+ def initialize(params = {})
9
+ params.each { |key, value| send "#{key}=", value }
10
+ end
11
+
12
+ def base
13
+ @base.upcase
14
+ end
15
+
16
+ def target
17
+ @target.upcase
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,10 @@
1
+ module Cryptoexchange
2
+ module Services
3
+ class Market
4
+ def fetch(endpoint)
5
+ fetch_response = HTTP.get(endpoint)
6
+ response = JSON.parse(fetch_response.to_s)
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,46 @@
1
+ require 'yaml'
2
+
3
+ module Cryptoexchange
4
+ module Services
5
+ class Pairs
6
+ PAIRS_URL = nil
7
+ MARKET = nil
8
+
9
+ def fetch
10
+ # If PAIRS_URL provided, use that to fetch market pairs
11
+ return fetch_via_api if self.class::PAIRS_URL
12
+
13
+ # If gem user has an overriden yaml, use that
14
+ return fetch_via_override(user_override_path) if user_override_exist?
15
+
16
+ # Falls back to default overriden yaml
17
+ return fetch_via_override(default_override_path) if default_override_exist?
18
+ end
19
+
20
+ def fetch_via_api
21
+ fetch_response = HTTP.get(self.class::PAIRS_URL)
22
+ JSON.parse(fetch_response.to_s)
23
+ end
24
+
25
+ def fetch_via_override(path)
26
+ YAML.load_file(path)[:pairs]
27
+ end
28
+
29
+ def user_override_path
30
+ "config/cryptoexchange/#{self.class::MARKET::NAME}.yml"
31
+ end
32
+
33
+ def default_override_path
34
+ File.join(File.dirname(__dir__), "exchanges/#{self.class::MARKET::NAME}/#{self.class::MARKET::NAME}.yml")
35
+ end
36
+
37
+ def user_override_exist?
38
+ File.exist? user_override_path
39
+ end
40
+
41
+ def default_override_exist?
42
+ File.exist? default_override_path
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,3 @@
1
+ module Cryptoexchange
2
+ VERSION = "0.1.1"
3
+ end
metadata ADDED
@@ -0,0 +1,177 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cryptoexchange
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - TM Lee
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-07-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rb-readline
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: http
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Ruby library to query market data from cryptocurrency exchanges.
98
+ email:
99
+ - tm89lee@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".travis.yml"
107
+ - CODE_OF_CONDUCT.md
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - bin/console
113
+ - bin/setup
114
+ - cryptoexchange.gemspec
115
+ - lib/cryptoexchange.rb
116
+ - lib/cryptoexchange/exchanges/bitflyer/market.rb
117
+ - lib/cryptoexchange/exchanges/bitflyer/models/market_pair.rb
118
+ - lib/cryptoexchange/exchanges/bitflyer/models/ticker.rb
119
+ - lib/cryptoexchange/exchanges/bitflyer/services/market.rb
120
+ - lib/cryptoexchange/exchanges/bitflyer/services/pairs.rb
121
+ - lib/cryptoexchange/exchanges/coincheck/coincheck.yml
122
+ - lib/cryptoexchange/exchanges/coincheck/market.rb
123
+ - lib/cryptoexchange/exchanges/coincheck/models/market_pair.rb
124
+ - lib/cryptoexchange/exchanges/coincheck/models/ticker.rb
125
+ - lib/cryptoexchange/exchanges/coincheck/services/market.rb
126
+ - lib/cryptoexchange/exchanges/coincheck/services/pairs.rb
127
+ - lib/cryptoexchange/exchanges/coinone/market.rb
128
+ - lib/cryptoexchange/exchanges/coinone/models/market_pair.rb
129
+ - lib/cryptoexchange/exchanges/coinone/models/ticker.rb
130
+ - lib/cryptoexchange/exchanges/coinone/services/market.rb
131
+ - lib/cryptoexchange/exchanges/coinone/services/pairs.rb
132
+ - lib/cryptoexchange/exchanges/cryptopia/market.rb
133
+ - lib/cryptoexchange/exchanges/cryptopia/models/market_pair.rb
134
+ - lib/cryptoexchange/exchanges/cryptopia/models/ticker.rb
135
+ - lib/cryptoexchange/exchanges/cryptopia/services/market.rb
136
+ - lib/cryptoexchange/exchanges/cryptopia/services/pairs.rb
137
+ - lib/cryptoexchange/exchanges/gatecoin/market.rb
138
+ - lib/cryptoexchange/exchanges/gatecoin/models/market_pair.rb
139
+ - lib/cryptoexchange/exchanges/gatecoin/models/ticker.rb
140
+ - lib/cryptoexchange/exchanges/gatecoin/services/market.rb
141
+ - lib/cryptoexchange/exchanges/gatecoin/services/pairs.rb
142
+ - lib/cryptoexchange/exchanges/korbit/korbit.yml
143
+ - lib/cryptoexchange/exchanges/korbit/market.rb
144
+ - lib/cryptoexchange/exchanges/korbit/models/market_pair.rb
145
+ - lib/cryptoexchange/exchanges/korbit/models/ticker.rb
146
+ - lib/cryptoexchange/exchanges/korbit/services/market.rb
147
+ - lib/cryptoexchange/exchanges/korbit/services/pairs.rb
148
+ - lib/cryptoexchange/models/market_pair.rb
149
+ - lib/cryptoexchange/models/ticker.rb
150
+ - lib/cryptoexchange/services/market.rb
151
+ - lib/cryptoexchange/services/pairs.rb
152
+ - lib/cryptoexchange/version.rb
153
+ homepage: ''
154
+ licenses:
155
+ - MIT
156
+ metadata: {}
157
+ post_install_message:
158
+ rdoc_options: []
159
+ require_paths:
160
+ - lib
161
+ required_ruby_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ required_rubygems_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ requirements: []
172
+ rubyforge_project:
173
+ rubygems_version: 2.5.0
174
+ signing_key:
175
+ specification_version: 4
176
+ summary: Ruby library to query market data from cryptocurrency exchanges.
177
+ test_files: []