Skip to main content
Version: Upcoming

StockDetail

V8 Message Definiton

This table contains a ticker level summary of some earnings related information. This information is also available in other records but is collected here for convenience.

METADATA

AttributeValue
Topic3225-market-statistics
MLink TokenGlobalEarnings
ProductSRAnalytics
accessTypeSELECT
MLink EndpointMLink-Live

Table Definition

FieldTypeKeyDefault ValueComment
ticker_atenum - AssetTypePRI'None'
ticker_tsenum - TickerSrcPRI'None'
ticker_tkVARCHAR(12)PRI''
iEMoveFLOAT0implied earnings move from LiveSurfaceTermeMove
hEMoveFLOAT0average historical trail 8 quarter earnings move from LiveSurfaceTermeMoveHist
nextEarnDaysINT0estimated days to next earnings event resets to next event immediately after earnings passes
nearEarnDaysINT0estimated days to next earnings event resets to next event 2 days after the most recent event has passed
nextEarnTimeVARCHAR(6)''estimated time of day of next earnings event
nextEarnDateDATE'1900-01-01'estimated next earnings date note that implied adjustements to this day are available in LiveSurfaceTerm
isNextEarnDateConfirmedenum - YesNo'None'next date has been confirmed usually by the company
nextDDivAmtFLOAT0next dividend payment amount
nextDDivDaysINT0next dividend payment date
numOptionsINT0number of listed options on this underlier if any
timestampDATETIME(6)'1900-01-01 00:00:00.000000'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
ticker_tk1
ticker_at2
ticker_ts3

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRAnalytics`.`MsgStockDetail`
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';

Doc Columns Query

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