animalillo / yahoostocks-java

Library to help retrieve stock info from the Yahoo Finance API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Java Stocks

A super simple library to help you retrieve stock data using the Yahoo Finance hidden API.

How it works

Yahoo Finance allows stock data to be downloaded in CSV format. All we have to do is take that CSV file and parse it to get our data. Easy.

Usage

Stock facebook = StockFetcher.getStock("FB");

Methods

The library currently supports the following methods:

getPrice();
getVolume(); 
getPe(); 
getEps(); 
getWeek52high(); 
getWeek52low(); 
getDaylow(); 
getDayhigh(); 
getMovingav50day(); 
getMarketcap();
getName();
getCurrency();
getShortRatio();
getPreviousClose();
getOpen();
getExchange();

Testing

To test the library, run StockTest.java as a jUnit Test.

Coming Soon

  • Retrieve Mutliple Stocks at Once
  • More Methods

Contributors

Special Thanks To:

License

  • No Warranty Expressed or Implied. Sofware is as is.
  • MIT License

About

Library to help retrieve stock info from the Yahoo Finance API.

License:MIT License


Languages

Language:Java 100.0%