yahoofinance.histquotes.Interval 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.histquotes;
/**
*
* @author Stijn Strickx
*/
public enum Interval {
DAILY("d"),
WEEKLY("w"),
MONTHLY("m");
private final String tag;
Interval(String tag) {
this.tag = tag;
}
public String getTag() {
return this.tag;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy