How old is the data?
All API times are Unix seconds. quoteTs is the stock quote time. poolTs is the pool input time. computedTs is when the service made the result.
A quote is old after 45 seconds. Pool data is old after 30 seconds.
A halt uses halted. A missing main input uses unavailable.
const ageSeconds = Math.floor(Date.now() / 1000) - row.dataStatus.quoteTs;Sample
Section titled “Sample”quoteTs: 1789410000 means seconds. Do not pass it straight to new Date() as milliseconds. Use new Date(quoteTs * 1000).