}
public BitfinexMarginInfosResponse[] getBitfinexMarginInfos() throws IOException {
try {
BitfinexMarginInfosResponse[] marginInfos = bitfinex.marginInfos(apiKey, payloadCreator, signatureCreator, new BitfinexMarginInfosRequest(String.valueOf(nextNonce())));
return marginInfos;
} catch (BitfinexException e) {
throw new ExchangeException(e.getMessage());
}
}