Historical
Federal Reserve historical data
By symbol
Get federal reserve historical data by symbol
te.getHistorical(symbol='racedisparity005007:fred', output_type = 'df')
data = te.getFred(historical_symbol = 'RACEDISPARITY005007').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/fred/historical/RACEDISPARITY005007?c=guest:guest");
te.getFedRHistorical(symbol = ['racedisparity005007', '2020ratio002013'],
output_type = 'df')
data = te.getFred(historical_symbol = ['racedisparity005007',
'2020ratio002013']).then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/fred/historical/RACEDISPARITY005007,2020RATIO002013?c=guest:guest");
By symbol and a date
Get federal reserve historical by symbol and date range
/fred/historical/{symbols}?d1=yyyy-mm-dd
te.getFedRHistorical(symbol = 'BAMLC0A1CAAAEY', initDate = '2018-05-01',
output_type = 'df')
data = te.getFred(historical_symbol = 'BAMLC0A1CAAAEY',
start_date = '2018-05-01').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/fred/historical/BAMLC0A1CAAAEY?c=guest:guest&d1=2018-05-01");
/fred/historical/{symbols}?d1=yyyy-mm-dd&d2=yyyy-mm-dd
te.getFedRHistorical(symbol = 'BAMLC0A1CAAAEY', initDate = '2017-05-01',
endDate = '2019-01-01', output_type = 'df')
te.getFedRHistorical(symbol = ['racedisparity005007', '2020ratio002013'],
initDate = '2017-05-01', endDate = '2019-01-01', output_type = 'df')
data = te.getFred(historical_symbol = 'BAMLC0A1CAAAEY', start_date = '2017-05-01',
end_date = '2019-01-01').then(function(data){
console.log(data)
});
data = te.getFred(historical_symbol = ['racedisparity005007', '2020ratio002013'],
start_date = '2017-05-01', end_date = '2019-01-01').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/fred/historical/BAMLC0A1CAAAEY?c=guest:guest&d1=2017-05-01&d2=2019-01-01");
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/fred/historical/racedisparity005007,2020ratio002013?c=guest:guest&d1=2017-05-01&d2=2019-01-01");
Response fields
Field | Type | Description | Example |
---|---|---|---|
Symbol | string | Unique symbol used by Trading Economics | “racedisparity005007” |
Date | string | Release time and date in UTC | “2009-01-01T00:00:00” |
Value | number | Released value | 33.60301 |