{"id":16985263,"url":"https://github.com/malcolmstill/racket-quandl","last_synced_at":"2026-02-04T10:05:21.186Z","repository":{"id":62424331,"uuid":"52806168","full_name":"malcolmstill/racket-quandl","owner":"malcolmstill","description":"Grab data from Quandl with racket for fun and profit","archived":false,"fork":false,"pushed_at":"2016-03-03T15:55:00.000Z","size":368,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-20T10:55:07.246Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/malcolmstill.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-29T16:33:53.000Z","updated_at":"2019-04-27T15:55:34.000Z","dependencies_parsed_at":"2022-11-01T18:01:47.215Z","dependency_job_id":null,"html_url":"https://github.com/malcolmstill/racket-quandl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/malcolmstill/racket-quandl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malcolmstill%2Fracket-quandl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malcolmstill%2Fracket-quandl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malcolmstill%2Fracket-quandl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malcolmstill%2Fracket-quandl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/malcolmstill","download_url":"https://codeload.github.com/malcolmstill/racket-quandl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malcolmstill%2Fracket-quandl/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262113476,"owners_count":23261035,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T02:43:04.645Z","updated_at":"2026-02-04T10:05:16.149Z","avatar_url":"https://github.com/malcolmstill.png","language":"Racket","funding_links":[],"categories":[],"sub_categories":[],"readme":"# racket-quandl\nGrab data from Quandl with racket for fun and profit\n\n# Installation\n```\nraco pkg install racket-quandl\n```\n\n# Example usage\n```\n#lang racket\n\n(require racket-quandl)\n(require plot)\n(require plot/utils)\n\n; Set Quandl auth token from file\n(set-auth-token (string-normalize-spaces (file-\u003estring \"quandlkey.txt\")))\n\n; Grab daily spot prices from Quandl (EIA dataset)\n(define crude (get \"EIA/PET_RWTC_D\")) ; WTI crude\n(define gasoline (get \"EIA/PET_EER_EPMRU_PF4_Y35NY_DPG_D\")) ; gasoline\n(define nat-gas (get \"EIA/NG_RNGWHHD_D\")) ; Henry hub natural gas\n\n; Plot the historic price\n(parameterize\n      ([plot-x-ticks (date-ticks)]\n       [plot-x-label \"Date\"]\n       [plot-y-label \"Price ($/unit)\"])\n  (plot (list\n         (lines\n          (map vector (map datetime-\u003ereal (map car crude)) (map cadr crude))\n          #:color 6 #:label \"WTI crude\")\n         (lines\n          (map vector (map datetime-\u003ereal (map car gasoline)) (map cadr gasoline))\n          #:color 7 #:label \"RBOB gasoline\")\n         (lines\n          (map vector (map datetime-\u003ereal (map car nat-gas)) (map cadr nat-gas))\n          #:color 8 #:label \"Natural gas\"))))\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalcolmstill%2Fracket-quandl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmalcolmstill%2Fracket-quandl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalcolmstill%2Fracket-quandl/lists"}