7.7
racket-quandl
(require racket-quandl) | package: racket-quandl |
A wee library for grabbing data from Quandl.
procedure
(get code [ #:rows rows #:column-index column-index #:collapse collapse #:start-date start-date #:end-date end-date #:order order #:transform transform]) → list? code : string? rows : string? = "" column-index : string? = "" collapse : string? = "" start-date : string? = "" end-date : string? = "" order : string? = "" transform : string? = ""
Returns Quandl data for code. collapse takes one of the following options: "none", "daily", "weekly", "montly", "quarterly", "annual". start-date and end-date have format "yyyy-mm-dd". The data can be ordered by setting order to "asc" or "desc".
procedure
(set-auth-token token) → void?
token : string?
Set the Quandl API key to token.