Package com.longbridge.market
Class AnomalyItem
- java.lang.Object
-
- com.longbridge.market.AnomalyItem
-
public class AnomalyItem extends Object
One market anomaly event, e.g. a large block trade or margin buying surge.
-
-
Field Summary
Fields Modifier and Type Field Description StringalertNameAnomaly type name, e.g.longalertTimeTime of the anomaly (unix timestamp in milliseconds).String[]changeValuesChange values associated with the anomaly.intemotionSentiment direction: 1 = positive/up, 2 = negative/down.StringnameSecurity name.StringsymbolSecurity symbol.
-
Constructor Summary
Constructors Constructor Description AnomalyItem()
-
-
-
Field Detail
-
symbol
public String symbol
Security symbol.
-
name
public String name
Security name.
-
alertName
public String alertName
Anomaly type name, e.g."大宗交易","融资买入".
-
alertTime
public long alertTime
Time of the anomaly (unix timestamp in milliseconds).
-
changeValues
public String[] changeValues
Change values associated with the anomaly.
-
emotion
public int emotion
Sentiment direction: 1 = positive/up, 2 = negative/down.
-
-