Sha256: f2c21ba607b51e2a09bad9c680a3c2be6fe5d5af4acd19227f8a9b76c277d887

Contents?: true

Size: 1.94 KB

Versions: 1

Compression:

Stored size: 1.94 KB

Contents

# Mcoin

This is a side-project for me to monitor BTC/ETH. The target is create a helpful command line tool can run as cronjob to import data to InfluxDB and make some analytics.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'mcoin'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install mcoin

## Usage

### Ticker

Add `-m` to specify market name

```
mcoin ticker -m Bitfinex
mcoin ticker -m Bitfinex -m Kraken # Multiple
```

If you want to save it into InfluxDB, add database information.

```
mcoin ticker -m Bitfinex -d monitor -e http://localhsot:8086
```

To get more information please use `-h` option.

### Subscriber

If you want to subscribe market in your project, you can use `Subscriber`

```ruby
require 'mcoin'

# Leave blank to subscribe all available market
subscriber = Mcoin::Subscriber.new([:Bitinfex], :BTC, :USD)
subscriber.start do |ticker|
  # Deal with Mcoin::Data::Ticker object
end
```

Please note, the ticker is async pull data from market, the timestamp may not totally same when you receive it.

## Roadmap

* [x] Fetch ticker
  * [x] Fetch in parallels
  * [x] Fetch from multiple market
  * [ ] Fetch multiple coin type via specify `pair`
* [ ] Support more public API command
* [ ] Improve printer
* [ ] Generalize database save interface

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake ` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

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).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/elct9620/mcoin.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mcoin-0.3.0 README.md