Message

TickerPerformance

Reference prices used to calculate ticker performance for a trading date.

fields16 topicticker-performance
Proto definition.proto
message TickerPerformance {
  Ticker ticker = 1;
  Date date = 2;
  optional Date prev_date = 3;
  optional Decimal prev_close = 4;
  optional Decimal one_week_close = 5;
  optional Decimal one_month_close = 6;
  optional Decimal three_month_close = 7;
  optional Decimal six_month_close = 8;
  optional Decimal one_year_close = 9;
  optional Decimal five_year_close = 10;
  optional Decimal ytd_close = 11;
  optional Decimal last_earnings_price = 12;
  optional Date last_earnings_date = 13;
  optional Decimal week52_high = 14;
  optional Decimal week52_low = 15;
  int64 updated_at = 16;
}
Fields
ticker Ticker 1
Ticker whose performance reference prices are represented.
date Date 2
Trading date whose live regular session price is compared with the reference prices.
prev_date Date optional 3
Previous trading date selected from the market calendar.
prev_close Decimal optional 4
Regular session close on the previous trading date.
one_week_close Decimal optional 5
Regular session close from the latest trading day on or before seven calendar days before date.
one_month_close Decimal optional 6
Regular session close from the latest trading day on or before one calendar month before date.
three_month_close Decimal optional 7
Regular session close from the latest trading day on or before three calendar months before date.
six_month_close Decimal optional 8
Regular session close from the latest trading day on or before six calendar months before date.
one_year_close Decimal optional 9
Regular session close from the latest trading day on or before one calendar year before date.
five_year_close Decimal optional 10
Regular session close from the latest trading day on or before five calendar years before date.
ytd_close Decimal optional 11
Regular session close from the latest trading day on or before the beginning of the calendar year.
last_earnings_price Decimal optional 12
Regular session close immediately before the most recent earnings reaction window.
last_earnings_date Date optional 13
Report date of the most recent earnings event on or before date.
week52_high Decimal optional 14
Highest regular session close during the previous calendar year, excluding date.
week52_low Decimal optional 15
Lowest regular session close during the previous calendar year, excluding date.
updated_at int64 16
Unix timestamp in milliseconds when this snapshot was published.