Skip to content
/ yfinance Public
forked from choffstein/yfinance

Simple Clojure code to fetch data from Y! Finance

License

Notifications You must be signed in to change notification settings

TN1ck/yfinance

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YFINANCE

A simple utility to download Historical stock prices from Y! Finance.

DEPENDENCIES

yfinance depends on clj-time and clojure.contrib.http.agent.

USAGE

(:require [in.freegeek.yfinance :as yf])
(yf/fetch-historical-data "2009-01-01" "2009-01-31" ["AAPL" "IBM" "MSFT" "GOOG"])

Example Output:

{"AAPL" [{
         :adjusted_close 77.18
         :volume 11734800
         :close 84.12
         :low 82.26
         :high 84.83
         :open 83.61
         :trading_date "2009-01-15"},
         ...
        ]
 "IBM"  [...]
 "MSFT" [...]
 "GOOG" [...]}

FEEDBACK

Email me: b.ghose at GMail

About

Simple Clojure code to fetch data from Y! Finance

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 100.0%