Skip to content

Commit

Permalink
Update QuoteContext.java
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Nov 8, 2023
1 parent 526b763 commit fb1f9b1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,8 @@ public CompletableFuture<CapitalFlowLine[]> getCapitalFlow(String symbol) throws
* @return A Future representing the result of the operation
* @throws OpenApiException If an error occurs
*/
public CompletableFuture<SecurityCalcIndex[]> getCalcIndexes(String[] symbols, CalcIndex[] indexes) {
public CompletableFuture<SecurityCalcIndex[]> getCalcIndexes(String[] symbols, CalcIndex[] indexes)
throws OpenApiException {
return AsyncCallback.executeTask((callback) -> {
SdkNative.quoteContextCalcIndexes(this.raw, symbols, indexes, callback);
});
Expand Down

0 comments on commit fb1f9b1

Please sign in to comment.