NOTE: This library is in developing, no released version so far.
exunion is a Java lib that aggregate the main cryptocurrency exchanges' API and provide uniform interfaces. You can easily apply your excellent quantitative trading program on different cryptocurrency exchanges based on this library.
todo
ExchangeServiceProvider
is the core API of exunion, it takes the exchange service generation responsibility.
You can get most services' instance through ExchangeServiceProvider.newInstance(exchange, serviceClazz, options)
.
The newInstance
method has three parameters:
exchange
the exchange that provide the service.serviceClazz
the exchange service clazz. For example: DepthService.classoptions
the options to initialize the exchange service instance.
Here are more concrete details and samples about the usages of exunion.
todo