Skip to main content
Version: Upcoming

StockEarningsCalendar

V8 Message Definiton

StockEarningsCalendar records contain a historical (prior 12) earnings dates and future (next 12) projected dates.

METADATA

AttributeValue
Topic3585-option-pricing
MLink TokenGlobalEarnings
ProductSRAnalytics
accessTypeSELECT
MLink EndpointMLink-Live

Table Definition

FieldTypeKeyDefault ValueComment
ticker_atenum - AssetTypePRI'None'
ticker_tsenum - TickerSrcPRI'None'
ticker_tkVARCHAR(12)PRI''
sourceenum - EventSourcePRI'Live'LivecurrentEarningsDate priorDaypreviousEarningsDate
hEMoveFLOAT0historical average trailing 8 earnings moves prior to today
timestampDATETIME(6)'1900-01-01 00:00:00.000000'timestamp of record
EventListJSON'JSON_ARRAY()'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
ticker_tk1
ticker_at2
ticker_ts3
source4

JSON Block (EventList)

FieldTypeComment
eventDateenum - eventDate
eventTimeenum - eventTime
earnStatusenum - EarnStatus
guidanceIssuedenum - GuidanceIssued
earnFiscalQtrenum - earnFiscalQtr
earnChangeenum - earnChange
earnPctMoveenum - earnPctMoveunderlying move in the trading period including the event only available when eventStatus Actual
prvCloseenum - prvCloseclosing price prior to earnings announcement
openenum - openopening price on moveDate
highenum - highhigh price on moveDate
lowenum - lowlow price on moveDate
closeenum - closeclose price on moveDate
moveDateenum - moveDatedate corresponding to larger daily change OHLC data taken from the same date or the date following each earnings announcement
hEMoveenum - hEMovehistorical average trailing 8 earnings moves prior to announcement historical only

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRAnalytics`.`MsgStockEarningsCalendar`
WHERE
/* Replace with a ENUM('None','EQT','IDX','BND','CUR','COM','FUT','SYN','WAR','FLX','MUT','SPD','MM','MF','COIN','TOKEN','ANY','RATE') */
`ticker_at` = 'None'
AND
/* Replace with a ENUM('None','SR','NMS','CME','ICE','CFE','CBOT','NYMEX','COMEX','RUT','CIDX','ARCA','NYSE','OTC','NSDQ','MFQS','MIAX','DJI','CUSIP','ISIN','BXE','SCE','ANY','CXE','DXE','NXAM','NXBR','NXLS','NXML','NXOS','NXP','EUREX','CEDX','ICEFEC','ICEFEF','CEQT','TSX','TMX') */
`ticker_ts` = 'None'
AND
/* Replace with a VARCHAR(12) */
`ticker_tk` = 'Example_ticker_tk'
AND
/* Replace with a ENUM('Live','PriorDay') */
`source` = 'Live';

Doc Columns Query

SELECT * FROM SRAnalytics.doccolumns WHERE TABLE_NAME='StockEarningsCalendar' ORDER BY ordinal_position ASC;