com.tecacet.finance.service.stock.StockPriceService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfapi Show documentation
Show all versions of jfapi Show documentation
JFApi connects to various Web Services that provide financial data such as stock prices,
splits, dividends, and FX rates.
package com.tecacet.finance.service.stock;
import com.tecacet.finance.model.StandardPeriodType;
import com.tecacet.finance.model.Quote;
import java.time.LocalDate;
import java.util.List;
public interface StockPriceService {
List getPriceHistory(String ticker, LocalDate fromDate, LocalDate toDate, final StandardPeriodType periodType) throws StockServiceException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy