Description and symbology

Here you can get a list of full market indicator descriptions, info and symbology. Please consider that all market-related methods are beta and under heavy development.

Description by symbol

List stock descriptions by company symbol

/markets/stockdescriptions/symbol/{symbols}

te.getMarketsStockDescriptions(symbol='aapl:us', output_type='df')
data = te.getMarketStockDescriptions(symbol = 'aapl:us').then(function(data){
  console.log(data)     
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/stockdescriptions/symbol/aapl:us,fb:us?c=guest:guest");

Description by country

List all stocks description by country

/markets/stockdescriptions/country/{country}

te.getMarketsStockDescriptions(country='france', output_type='df')
data = te.getMarketStockDescriptions(country = 'france').then(function(data){
  console.log(data)     
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/stockdescriptions/country/france?c=guest:guest");

Symbologies by symbol

Get detailed symbology fields by company symbol

markets/symbology/symbol/{symbol}

te.getMarketsSymbology(symbol = 'aapl:us', output_type = 'df')
data = te.getSymbology(symbol = 'aapl:us').then(function(data){
  console.log(data)     
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/symbol/aapl:us?c=guest:guest");

Symbologies by ticker

Get detailed symbology fields by a specific ticker

/markets/symbology/ticker/{ticker}

te.getMarketsSymbology(ticker = 'aapl', output_type = 'df')
data = te.getSymbology(ticker = 'aapl').then(function(data){
  console.log(data)     
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/ticker/aapl?c=guest:guest");

Symbologies by ISIN

Get detailed symbology fields by a specific ISIN

/markets/symbology/isin/{isin}

te.getMarketsSymbology(isin = 'US0378331005', output_type = 'df')
data = te.getSymbology(isin = 'US0378331005').then(function(data){
  console.log(data)     
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/isin/US0378331005?c=guest:guest");

Response fields

Description

FieldTypeDescriptionExample
SymbolstringUnique symbol used by Trading Economics“AAPL:US”
NamestringCompany name“Apple”
DescriptionstringFull indicator description“Apple Inc. (Apple) designs, manufactures and markets smartphones…”
CountrystringCountry name“United States”
SectorstringIndicator sector description“Information Technology”
IndustrystringIndicator industry description“Technology Hardware & Equipment”
SubindustrystringAlternative indicator industry description“Technology Hardware, Storage & Peripherals”

Symbology

FieldTypeDescriptionExample
SymbolstringUnique symbol used by Trading Economics“AAPL:US”
TickerstringUnique ticker used by Trading Economics“AAPL”
ISINstringISIN code“US0378331005”
NamestringCompany name“Apple”
CountrystringCountry name“United States”