Economic Indicators
Economic Indicator Data¶
Real GDP¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .realGdp()
    .interval(Interval.ANNUAL)
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Real GDP Per Capita¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .realGdpPerCapita()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Treasury Yield¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .treasuryYield()
    .interval(Interval.MONTHLY)
    .maturity(Maturity.SEVEN_YEAR)
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Federal Funds Rate¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .federalFundsRate()
    .interval(Interval.MONTHLY)
    .fetchSync();
Response Type:
EconomicIndicatorResponse
CPI¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .cpi()
    .interval(Interval.MONTHLY)
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Inflation¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .inflation()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Inflation Expectation¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .inflationExpectation()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Consumer Sentiment¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .consumerSentiment()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Retail Sales¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .retailSales()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Durable Goods Orders¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .durables()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Unemployment Rate¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .unemployment()
    .fetchSync();
Response Type:
EconomicIndicatorResponse
Non farm Payroll¶
EconomicIndicatorResponse response =  AlphaVantage
    .api()
    .economicIndicator()
    .nonFarmPayroll()
    .fetchSync();
Response Type:
EconomicIndicatorResponse