Interface StockServiceAsync
-
- All Implemented Interfaces:
public interface StockServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceStockServiceAsync.WithRawResponseA view of StockServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract StockServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract StockServiceAsync 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 SplitServiceAsync splits()
Corporate actions are events that affect the ownership of a
Stock.Corporate actions include dividends and stock splits.
-
list
CompletableFuture<List<StockListResponse>> list()
Get a list of
Stocks.
-
list
abstract CompletableFuture<List<StockListResponse>> list(StockListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<StockListResponse>> list(StockListParams params)
-
list
CompletableFuture<List<StockListResponse>> list(RequestOptions requestOptions)
-
retrieveCurrentPrice
CompletableFuture<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId)
Get current price for a specified
Stock.
-
retrieveCurrentPrice
CompletableFuture<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId, StockRetrieveCurrentPriceParams params, RequestOptions requestOptions)
-
retrieveCurrentPrice
CompletableFuture<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId, StockRetrieveCurrentPriceParams params)
-
retrieveCurrentPrice
abstract CompletableFuture<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(StockRetrieveCurrentPriceParams params, RequestOptions requestOptions)
-
retrieveCurrentPrice
CompletableFuture<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(StockRetrieveCurrentPriceParams params)
-
retrieveCurrentPrice
CompletableFuture<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId, RequestOptions requestOptions)
-
retrieveCurrentQuote
CompletableFuture<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId)
Get quote for a specified
Stock.
-
retrieveCurrentQuote
CompletableFuture<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId, StockRetrieveCurrentQuoteParams params, RequestOptions requestOptions)
-
retrieveCurrentQuote
CompletableFuture<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId, StockRetrieveCurrentQuoteParams params)
-
retrieveCurrentQuote
abstract CompletableFuture<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(StockRetrieveCurrentQuoteParams params, RequestOptions requestOptions)
-
retrieveCurrentQuote
CompletableFuture<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(StockRetrieveCurrentQuoteParams params)
-
retrieveCurrentQuote
CompletableFuture<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId, RequestOptions requestOptions)
-
retrieveDividends
CompletableFuture<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
CompletableFuture<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId, StockRetrieveDividendsParams params, RequestOptions requestOptions)
-
retrieveDividends
CompletableFuture<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId, StockRetrieveDividendsParams params)
-
retrieveDividends
abstract CompletableFuture<List<StockRetrieveDividendsResponse>> retrieveDividends(StockRetrieveDividendsParams params, RequestOptions requestOptions)
-
retrieveDividends
CompletableFuture<List<StockRetrieveDividendsResponse>> retrieveDividends(StockRetrieveDividendsParams params)
-
retrieveDividends
CompletableFuture<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId, RequestOptions requestOptions)
-
retrieveHistoricalPrices
CompletableFuture<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
CompletableFuture<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(String stockId, StockRetrieveHistoricalPricesParams params, RequestOptions requestOptions)
-
retrieveHistoricalPrices
CompletableFuture<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(StockRetrieveHistoricalPricesParams params)
-
retrieveHistoricalPrices
abstract CompletableFuture<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(StockRetrieveHistoricalPricesParams params, RequestOptions requestOptions)
-
retrieveNews
CompletableFuture<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
CompletableFuture<List<StockRetrieveNewsResponse>> retrieveNews(String stockId, StockRetrieveNewsParams params, RequestOptions requestOptions)
-
retrieveNews
CompletableFuture<List<StockRetrieveNewsResponse>> retrieveNews(String stockId, StockRetrieveNewsParams params)
-
retrieveNews
abstract CompletableFuture<List<StockRetrieveNewsResponse>> retrieveNews(StockRetrieveNewsParams params, RequestOptions requestOptions)
-
retrieveNews
CompletableFuture<List<StockRetrieveNewsResponse>> retrieveNews(StockRetrieveNewsParams params)
-
retrieveNews
CompletableFuture<List<StockRetrieveNewsResponse>> retrieveNews(String stockId, RequestOptions requestOptions)
-
-
-
-