Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 1.18 KB

README.md

File metadata and controls

50 lines (40 loc) · 1.18 KB

exchange orderbook

Core2 OrderBook is an open source high performance Java order book implementation.

Features

Installation

  1. Install library into your Maven's local repository by running mvn install
  2. Add the following Maven dependency to your project's pom.xml:
<dependency>
    <groupId>exchange.core2</groupId>
    <artifactId>orderbook</artifactId>
    <version>0.7.1</version>
</dependency>

<dependency>
    <groupId>org.agrona</groupId>
    <artifactId>agrona</artifactId>
    <version>1.8.0</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>org.eclipse.collections</groupId>
    <artifactId>eclipse-collections-api</artifactId>
    <version>10.4.0</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>org.eclipse.collections</groupId>
    <artifactId>eclipse-collections</artifactId>
    <version>10.4.0</version>
    <scope>provided</scope>
</dependency>

Usage examples

TBD

Testing

TBD

Contributing

Exchange OrderBook is an open-source project and contributions are welcome!