Package com.longbridge.trade
Class GetHistoryExecutionsOptions
- java.lang.Object
-
- com.longbridge.trade.GetHistoryExecutionsOptions
-
public class GetHistoryExecutionsOptions extends Object
Options for querying history executions
-
-
Constructor Summary
Constructors Constructor Description GetHistoryExecutionsOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetHistoryExecutionsOptionssetEndAt(OffsetDateTime endAt)Sets the end of the query time range.GetHistoryExecutionsOptionssetStartAt(OffsetDateTime startAt)Sets the start of the query time range.GetHistoryExecutionsOptionssetSymbol(String symbol)Filters by security symbol.
-
-
-
Method Detail
-
setSymbol
public GetHistoryExecutionsOptions setSymbol(String symbol)
Filters by security symbol.- Parameters:
symbol- security symbol- Returns:
- this instance for chaining
-
setStartAt
public GetHistoryExecutionsOptions setStartAt(OffsetDateTime startAt)
Sets the start of the query time range.- Parameters:
startAt- start time- Returns:
- this instance for chaining
-
setEndAt
public GetHistoryExecutionsOptions setEndAt(OffsetDateTime endAt)
Sets the end of the query time range.- Parameters:
endAt- end time- Returns:
- this instance for chaining
-
-