-
Notifications
You must be signed in to change notification settings - Fork 46
Effective Spread
Wojciech Zankowski edited this page Nov 25, 2017
·
1 revision
final IEXTradingClient iexTradingClient = IEXTradingClient.create();
final List<EffectiveSpread> effectiveSpreads = iexTradingClient.executeRequest(new EffectiveSpreadRequestBuilder()
.withSymbol("AAPL")
.build());
System.out.println(effectiveSpreads);
[EffectiveSpread {
volume = 12319357,
venue = XBOS,
venueName = NASDAQ BX,
effectiveSpread = 0.01539517,
effectiveQuoted = 0.9266601,
priceImprovement = 0.0009211251000000001
}
]