Message

TradingState

A trading halt, pause or resumption for a stock.

fields8 topictrading-halts
Proto definition.proto
message TradingState {
  string ticker = 1;
  string state = 2;
  string reason = 3;
  int64 time = 4;
  string sector = 5;
  string marketcap = 6;
  string avg_vol_30 = 7;
  int64 curr_vol = 8;
}
Fields
ticker string 1
The symbol of the halted or resumed stock.
state string 2
The trading state: halt, pause, quote_only_period or trading.
reason string 3
Halt or resume reason, e.g. "Volatility Trading Pause" or "Halt News Pending". Empty when no reason was given.
time int64 4
The time of the state change in milliseconds since 1970 (unix).
sector string 5
Currently not populated.
marketcap string 6
Currently not populated.
avg_vol_30 string 7
Currently not populated.
curr_vol int64 8
Currently not populated.