Interface StockService
-
- All Implemented Interfaces:
public interface StockService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceStockService.WithRawResponseA view of StockService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract StockService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract StockService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
splits
abstract SplitService splits()
-
list
List<StockListResponse> list()
Get a list of
Stocks.
-
list
abstract List<StockListResponse> list(StockListParams params, RequestOptions requestOptions)
-
list
List<StockListResponse> list(StockListParams params)
-
list
List<StockListResponse> list(RequestOptions requestOptions)
-
retrieveDividends
List<StockRetrieveDividendsResponse> retrieveDividends(String stockId)
Get a list of announced stock dividend details for a specified
Stock.Note that this data applies only to actual stocks. Yield received for holding tokenized shares may differ from this.
-
retrieveDividends
List<StockRetrieveDividendsResponse> retrieveDividends(String stockId, StockRetrieveDividendsParams params, RequestOptions requestOptions)
-
retrieveDividends
List<StockRetrieveDividendsResponse> retrieveDividends(String stockId, StockRetrieveDividendsParams params)
-
retrieveDividends
abstract List<StockRetrieveDividendsResponse> retrieveDividends(StockRetrieveDividendsParams params, RequestOptions requestOptions)
-
retrieveDividends
List<StockRetrieveDividendsResponse> retrieveDividends(StockRetrieveDividendsParams params)
-
retrieveDividends
List<StockRetrieveDividendsResponse> retrieveDividends(String stockId, RequestOptions requestOptions)
-
retrieveHistoricalPrices
List<StockRetrieveHistoricalPricesResponse> retrieveHistoricalPrices(String stockId, StockRetrieveHistoricalPricesParams params)
Get historical price data for a specified
Stock. Each index in the array represents a single tick in a price chart.
-
retrieveHistoricalPrices
List<StockRetrieveHistoricalPricesResponse> retrieveHistoricalPrices(String stockId, StockRetrieveHistoricalPricesParams params, RequestOptions requestOptions)
-
retrieveHistoricalPrices
List<StockRetrieveHistoricalPricesResponse> retrieveHistoricalPrices(StockRetrieveHistoricalPricesParams params)
-
retrieveHistoricalPrices
abstract List<StockRetrieveHistoricalPricesResponse> retrieveHistoricalPrices(StockRetrieveHistoricalPricesParams params, RequestOptions requestOptions)
-
retrieveNews
List<StockRetrieveNewsResponse> retrieveNews(String stockId)
Get the most recent news articles relating to a
Stock, including a summary of the article and a link to the original source.
-
retrieveNews
List<StockRetrieveNewsResponse> retrieveNews(String stockId, StockRetrieveNewsParams params, RequestOptions requestOptions)
-
retrieveNews
List<StockRetrieveNewsResponse> retrieveNews(String stockId, StockRetrieveNewsParams params)
-
retrieveNews
abstract List<StockRetrieveNewsResponse> retrieveNews(StockRetrieveNewsParams params, RequestOptions requestOptions)
-
retrieveNews
List<StockRetrieveNewsResponse> retrieveNews(StockRetrieveNewsParams params)
-
retrieveNews
List<StockRetrieveNewsResponse> retrieveNews(String stockId, RequestOptions requestOptions)
-
retrieveQuote
StockRetrieveQuoteResponse retrieveQuote(String stockId)
Get quote for a specified
Stock.
-
retrieveQuote
StockRetrieveQuoteResponse retrieveQuote(String stockId, StockRetrieveQuoteParams params, RequestOptions requestOptions)
-
retrieveQuote
StockRetrieveQuoteResponse retrieveQuote(String stockId, StockRetrieveQuoteParams params)
-
retrieveQuote
abstract StockRetrieveQuoteResponse retrieveQuote(StockRetrieveQuoteParams params, RequestOptions requestOptions)
-
retrieveQuote
StockRetrieveQuoteResponse retrieveQuote(StockRetrieveQuoteParams params)
-
retrieveQuote
StockRetrieveQuoteResponse retrieveQuote(String stockId, RequestOptions requestOptions)
-
-
-
-