Message

ScreenerStockState

Latest accepted stock-session metrics for the ticker. Open, close, high, and low can come from a premarket, regular, or postmarket source state. This message does not identify the source session.

fields6 used byStockScreenerState
Proto definition.proto
message ScreenerStockState {
  Decimal open = 1;
  Decimal close = 2;
  Decimal high = 3;
  Decimal low = 4;
  optional int64 stock_volume = 5;
  Decimal prev_close = 6;
}
Fields
open Decimal 1
Opening price of the latest accepted source session in the instrument's quoted units. Absent when no stock state is available.
close Decimal 2
Latest trade price from the latest accepted source session in the instrument's quoted units. Absent when no stock state is available.
high Decimal 3
Highest price in the latest accepted source session in the instrument's quoted units. Absent when no stock state is available.
low Decimal 4
Lowest price in the latest accepted source session in the instrument's quoted units. Absent when no stock state is available.
stock_volume int64 optional 5
Cumulative shares traded on the New York trading date across premarket, regular, and postmarket sessions. Absent when unavailable.
prev_close Decimal 6
Regular-session close from the prior available screener state in the instrument's quoted units. Startup uses the previous New York market-open date. Absent when no prior regular-session close is available.