Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.59 KB

README.md

File metadata and controls

41 lines (25 loc) · 1.59 KB

NOTE: This library is in developing, no released version so far.

exunion

build Codacy Badge codecov

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.

Installation

todo

Usages

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.class
  • options the options to initialize the exchange service instance.

Here are more concrete details and samples about the usages of exunion.

Account

Market Data

Contribution

todo