Quandl

Elixir api client for Quandl.

Installation

The package can be installed by adding quandl to your list of dependencies in mix.exs:

def deps do
  [
    {:quandl, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/quandl.

Usage

Make sure Quandl API key is setup in your config file (example below is for Elixir 1.9+), if using an older version use Mix.Config instead of Config.

import Config

config :quandl, api_key: "YOUR_API_KEY"

Alternatively, use environment variable QUANDL_API_KEY.

To fetch a list of FB daily prices:

IO.inspect Quandl.V3.Datasets.get_dataset("WIKI", "FB")