Skip to content

Earnings

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

Example

final IEXTradingClient iexTradingClient = IEXTradingClient.create();
final Earnings earnings = iexTradingClient.executeRequest(new EarningsRequestBuilder()
		.withSymbol("AAPL")
		.build());
System.out.println(earnings);

Response

Earnings {
	symbol = AAPL,
	earnings = [Earning {
			actualEPS = 1.67,
			consensusEPS = 1.57,
			estimatedEPS = 1.57,
			announceTime = AMC,
			numberOfEstimates = 13,
			EPSSurpriseDollar = 0.1,
			EPSReportDate = 2017 - 08 - 01,
			fiscalPeriod = Q3 2017,
			fiscalEndDate = 2017 - 06 - 30
		}
	]
}

Clone this wiki locally