Package com.longbridge.portfolio
Class FlowItem
- java.lang.Object
-
- com.longbridge.portfolio.FlowItem
-
public class FlowItem extends Object
One profit-analysis flow record forProfitAnalysisFlowsResponse.
-
-
Field Summary
Fields Modifier and Type Field Description StringcodeSecurity code / tickerStringdescribeHuman-readable descriptionFlowDirectiondirectionDirection of the flow.BigDecimalexecutedCostExecuted cost; may be nullStringexecutedDateExecution date string, e.g. "2024-01-15"BigDecimalexecutedPriceExecuted price; may be nullBigDecimalexecutedQuantityExecuted quantity; may be nullStringexecutedTimestampExecution timestamp (JSON string; may be int or string)
-
Constructor Summary
Constructors Constructor Description FlowItem()
-
-
-
Field Detail
-
executedDate
public String executedDate
Execution date string, e.g. "2024-01-15"
-
executedTimestamp
public String executedTimestamp
Execution timestamp (JSON string; may be int or string)
-
code
public String code
Security code / ticker
-
direction
public FlowDirection direction
Direction of the flow.
-
executedQuantity
public BigDecimal executedQuantity
Executed quantity; may be null
-
executedPrice
public BigDecimal executedPrice
Executed price; may be null
-
executedCost
public BigDecimal executedCost
Executed cost; may be null
-
describe
public String describe
Human-readable description
-
-