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

com.tecacet.finance.service.StockPriceService Maven / Gradle / Ivy

package com.tecacet.finance.service;

import java.time.LocalDate;
import java.util.List;

import com.tecacet.finance.model.StandardPeriodType;
import com.tecacet.finance.model.StockPrice;

public interface StockPriceService {

    List getPriceHistory(String ticker, LocalDate fromDate, LocalDate toDate, final StandardPeriodType periodType) throws StockServiceException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy