Refinitiv Data Library for TypeScript

Overview

Summary

Historical Pricing objects enable your application to retrieve Interday / Intraday historical data to perform back testing, quantitative research and analytics.

Example of usage:

const definitionEvents = HistoricalPricing.Events.Definition('IBM');
const definitionSummaries = HistoricalPricing.Summaries.Definition('IBM');

session.open()
    .then(() => definitionEvents.getData(session))
    .then(console.log)
    .then(() => definitionSummaries.getData(session))
    .then(console.log)
    .catch(console.log)
    .finally(() => session.close());