yahoofinance.quotes.QuotesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of YahooFinanceAPI Show documentation
Show all versions of YahooFinanceAPI Show documentation
This library provides some methods that should make it easy
to communicate with the Yahoo Finance API.
It allows you to request detailed information, some statistics
and historical quotes on stocks.
Separate functionality is available to request a simple FX quote.
Please check the javadoc to get a complete overview of the available methods
and to get an idea of which data is available from Yahoo Finance.
package yahoofinance.quotes;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import yahoofinance.Utils;
import yahoofinance.YahooFinance;
import yahoofinance.util.RedirectableRequest;
/**
*
* @author Stijn Strickx
* @param Type of object that can contain the retrieved information from a
* quotes request
*/
public abstract class QuotesRequest {
private static final Logger log = LoggerFactory.getLogger(QuotesRequest.class);
protected final String query;
protected List properties;
public QuotesRequest(String query, List properties) {
this.query = query;
this.properties = properties;
}
public String getQuery() {
return query;
}
public List getProperties() {
return properties;
}
public void setProperties(List properties) {
this.properties = properties;
}
protected abstract T parseCSVLine(String line);
private String getFieldsString() {
StringBuilder result = new StringBuilder();
for (QuotesProperty property : this.properties) {
result.append(property.getTag());
}
return result.toString();
}
public T getSingleResult() throws IOException {
List results = this.getResult();
if (results.size() > 0) {
return results.get(0);
}
return null;
}
/**
* Sends the request to Yahoo Finance and parses the result
*
* @return List of parsed objects resulting from the Yahoo Finance request
* @throws java.io.IOException when there's a connection problem or the request is incorrect
*/
public List getResult() throws IOException {
List result = new ArrayList();
Map params = new LinkedHashMap();
params.put("s", this.query);
params.put("f", this.getFieldsString());
params.put("e", ".csv");
String url = YahooFinance.QUOTES_BASE_URL + "?" + Utils.getURLParameters(params);
// Get CSV from Yahoo
log.info("Sending request: " + url);
URL request = new URL(url);
RedirectableRequest redirectableRequest = new RedirectableRequest(request, 5);
redirectableRequest.setConnectTimeout(YahooFinance.CONNECTION_TIMEOUT);
redirectableRequest.setReadTimeout(YahooFinance.CONNECTION_TIMEOUT);
URLConnection connection = redirectableRequest.openConnection();
InputStreamReader is = new InputStreamReader(connection.getInputStream());
BufferedReader br = new BufferedReader(is);
// Parse CSV
for (String line = br.readLine(); line != null; line = br.readLine()) {
if (line.equals("Missing Symbols List.")) {
log.error("The requested symbol was not recognized by Yahoo Finance");
} else {
log.info("Parsing CSV line: " + Utils.unescape(line));
T data = this.parseCSVLine(line);
result.add(data);
}
}
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy