Unofficial and experimental library for consuming market data via Poloniex's websocket connection
Add the dependency to your mix.exs file
def deps do
[{:poloniex_websocket, "~> 0.0.1"}]
endCall Poloniex.start_link() with a map with the keys callback and currencies, the callback should be a tuple with a Module/Function, and currencies
should be a list of currency pairs, e.g. %{callback: {Foo, :callback}, currencies: ["USDT_BTC", "BTC_ETH", "BTC_LTC"]}.