Uses of Class
com.longport.quote.TradeSessions
-
Packages that use TradeSessions Package Description com.longport com.longport.quote -
-
Uses of TradeSessions in com.longport
Methods in com.longport with parameters of type TradeSessions Modifier and Type Method Description static void
SdkNative. quoteContextCandlesticks(long context, String symbol, Period period, int count, AdjustType adjustType, TradeSessions tradeSessions, AsyncCallback callback)
static void
SdkNative. quoteContextHistoryCandlesticksByDate(long context, String symbol, Period period, AdjustType adjustType, LocalDate start, LocalDate end, TradeSessions tradeSessions, AsyncCallback callback)
static void
SdkNative. quoteContextHistoryCandlesticksByOffset(long context, String symbol, Period period, AdjustType adjustType, boolean forward, LocalDateTime datetime, int count, TradeSessions tradeSessions, AsyncCallback callback)
static void
SdkNative. quoteContextSubscribeCandlesticks(long context, String symbol, Period period, TradeSessions tradeSessions, AsyncCallback callback)
-
Uses of TradeSessions in com.longport.quote
Methods in com.longport.quote that return TradeSessions Modifier and Type Method Description static TradeSessions
TradeSessions. valueOf(String name)
Returns the enum constant of this type with the specified name.static TradeSessions[]
TradeSessions. 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 TradeSessions Modifier and Type Method Description CompletableFuture<Candlestick[]>
QuoteContext. getCandlesticks(String symbol, Period period, int count, AdjustType adjustType, TradeSessions tradeSessions)
Get security candlesticksCompletableFuture<Candlestick[]>
QuoteContext. getHistoryCandlesticksByDate(String symbol, Period period, AdjustType adjustType, LocalDate start, LocalDate end, TradeSessions tradeSessions)
Get history candlesticks by dateCompletableFuture<Candlestick[]>
QuoteContext. getHistoryCandlesticksByOffset(String symbol, Period period, AdjustType adjustType, boolean forward, LocalDateTime datetime, int count, TradeSessions tradeSessions)
Get history candlesticks by offsetCompletableFuture<Candlestick[]>
QuoteContext. subscribeCandlesticks(String symbol, Period period, TradeSessions tradeSessions)
Subscribe security candlesticks
-