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

com.tecacet.finance.service.stock.yahoo.YahooStockPriceService Maven / Gradle / Ivy

Go to download

JFApi connects to various Web Services that provide financial data such as stock prices, splits, dividends, and FX rates.

There is a newer version: 1.1.3
Show newest version
package com.tecacet.finance.service.stock.yahoo;

import com.tecacet.finance.model.StandardPeriodType;
import com.tecacet.finance.model.Quote;
import com.tecacet.finance.service.stock.StockPriceService;
import com.tecacet.finance.service.stock.StockServiceException;

import java.io.InputStream;
import java.time.LocalDate;
import java.util.List;
import java.util.Map;

public class YahooStockPriceService extends AbstractYahooService implements StockPriceService {

    private final static String[] PRICE_PROPERTIES = new String[] {"date", "open", "high", "low", "close", "adjustedClose", "volume"};
    private final static String[] PRICE_COLUMNS = new String[] {"Date", "Open", "High", "Low", "Close", "Adj Close", "Volume"};

    private final YahooPriceParser parser = new YahooPriceParser(PRICE_PROPERTIES, PRICE_COLUMNS);

    @Override
    public List getPriceHistory(String symbol, LocalDate fromDate, LocalDate toDate, StandardPeriodType periodType) throws StockServiceException {
        try {
            Map params = getRequestParams(fromDate, toDate, periodType);
            InputStream is = getUrlStream(symbol, params);
            return parser.parse(is);
        } catch (Exception e) {
            throw new StockServiceException(e);
        }
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy