All Downloads are FREE. Search and download functionalities are using the official Maven repository.

yahoofinance.histquotes.Interval Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 3.17.0
Show newest version

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