Interface SplitServiceAsync
-
- All Implemented Interfaces:
public interface SplitServiceAsyncCorporate actions are events that affect the ownership of a
Stock.Corporate actions include dividends and stock splits.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSplitServiceAsync.WithRawResponseA view of SplitServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract SplitServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract SplitServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
CompletableFuture<List<StockSplit>> list()
Get a list of stock splits for
Stocksavailable for trade via Dinari. The splits are ordered by the date they were created, with the most recent split first.In an example 10-for-1 stock split, trading will be halted for the stock at the end of the
payable_date, as the split transitions fromPENDINGtoIN_PROGRESS. This usually occurs over a weekend to minimize trading disruptions. Each share of stock owned by a shareholder will then be converted into 10 shares, and the split becomesCOMPLETEas trading resumes on theex_datewith new split-adjusted prices.
-
list
abstract CompletableFuture<List<StockSplit>> list(SplitListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<StockSplit>> list(SplitListParams params)
-
list
CompletableFuture<List<StockSplit>> list(RequestOptions requestOptions)
-
listForStock
CompletableFuture<List<StockSplit>> listForStock(String stockId)
Get a list of stock splits for a specific
Stock. The splits are ordered by the date they were created, with the most recent split first.In an example 10-for-1 stock split, trading will be halted for the stock at the end of the
payable_date, as the split transitions fromPENDINGtoIN_PROGRESS. This usually occurs over a weekend to minimize trading disruptions. Each share of stock owned by a shareholder will then be converted into 10 shares, and the split becomesCOMPLETEas trading resumes on theex_datewith new split-adjusted prices.
-
listForStock
CompletableFuture<List<StockSplit>> listForStock(String stockId, SplitListForStockParams params, RequestOptions requestOptions)
-
listForStock
CompletableFuture<List<StockSplit>> listForStock(String stockId, SplitListForStockParams params)
-
listForStock
abstract CompletableFuture<List<StockSplit>> listForStock(SplitListForStockParams params, RequestOptions requestOptions)
-
listForStock
CompletableFuture<List<StockSplit>> listForStock(SplitListForStockParams params)
-
listForStock
CompletableFuture<List<StockSplit>> listForStock(String stockId, RequestOptions requestOptions)
-
-
-
-