Skip to content

Key Stats

Wojciech Zankowski edited this page Nov 25, 2017 · 1 revision

Example

final IEXTradingClient iexTradingClient = IEXTradingClient.create();
final KeyStats keyStats = iexTradingClient.executeRequest(new KeyStatsRequestBuilder()
		.withSymbol("AAPL")
		.build());
System.out.println(keyStats);

Response

KeyStats {
	companyName = Apple Inc.,
	marketcap = 898350570640,
	beta = 1.217111,
	week52high = 176.24,
	week52low = 108.25,
	week52change = 59.010498,
	shortInterest = 33490296,
	shortDate = 2017 - 10 - 31,
	dividendRate = 2.52,
	dividendYield = 1.4403292,
	exDividendDate = 2017 - 11 - 10T00: 00,
	latestEPS = 9.21,
	latestEPSDate = 2017 - 09 - 30,
	sharesOutstanding = 5134312000,
	Float = 5124446610,
	returnOnEquity = 36.08,
	consensusEPS = 1.57,
	numberOfEstimates = 13,
	EPSSurpriseDollar = null,
	EPSSurprisePercent = 6.3694,
	symbol = AAPL,
	EBITDA = 76569000000,
	revenue = 229234000000,
	grossProfit = 88186000000,
	cash = 278493000000,
	debt = 410090000000,
	ttmEPS = 8.8,
	revenuePerShare = 45,
	revenuePerEmployee = 1976155,
	peRatioHigh = 114.1,
	peRatioLow = 0,
	returnOnAssets = 13.6,
	returnOnCapital = null,
	profitMargin = 19.74,
	priceToSales = 3.9187,
	priceToBook = 6.7,
	day200MovingAvg = 150.50195,
	day50MovingAvg = 161.35687,
	institutionPercent = 63.1,
	insiderPercent = null,
	shortRatio = 1.4610342,
	year5ChangePercent = 1.0775720298984188,
	year2ChangePercent = 0.47182032301480487,
	year1ChangePercent = 0.5651668306646389,
	ytdChangePercent = 0.5064141196728368,
	month6ChangePercent = 0.1410590843876353,
	month3ChangePercent = 0.09857474728448538,
	month1ChangePercent = 0.11374920432845324,
	day5ChangePercent = 0.02832794593006167
}
Clone this wiki locally