Uses of Class
com.longport.quote.AdjustType
-
Packages that use AdjustType Package Description com.longport com.longport.quote -
-
Uses of AdjustType in com.longport
Methods in com.longport with parameters of type AdjustType Modifier and Type Method Description static void
SdkNative. quoteContextCandlesticks(long context, String symbol, Period period, int count, AdjustType adjustType, AsyncCallback callback)
static void
SdkNative. quoteContextHistoryCandlesticksByDate(long context, String symbol, Period period, AdjustType adjustType, LocalDate start, LocalDate end, AsyncCallback callback)
static void
SdkNative. quoteContextHistoryCandlesticksByOffset(long context, String symbol, Period period, AdjustType adjustType, boolean forward, LocalDateTime datetime, int count, AsyncCallback callback)
-
Uses of AdjustType in com.longport.quote
Methods in com.longport.quote that return AdjustType Modifier and Type Method Description static AdjustType
AdjustType. valueOf(String name)
Returns the enum constant of this type with the specified name.static AdjustType[]
AdjustType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.longport.quote with parameters of type AdjustType Modifier and Type Method Description CompletableFuture<Candlestick[]>
QuoteContext. getCandlesticks(String symbol, Period period, int count, AdjustType adjustType)
Get security candlesticksCompletableFuture<Candlestick[]>
QuoteContext. getHistoryCandlesticksByDate(String symbol, Period period, AdjustType adjustType, LocalDate start, LocalDate end)
Get history candlesticks by dateCompletableFuture<Candlestick[]>
QuoteContext. getHistoryCandlesticksByOffset(String symbol, Period period, AdjustType adjustType, boolean forward, LocalDateTime datetime, int count)
Get history candlesticks by offset
-