Exchange-core هو مركز تبادل سوقي مفتوح المصدر يعتمد على LMAX Disruptor وEclipse Collections (مثل Goldman Sachs GS Collections) وReal Logic Agrona وOpenHFT Chronicle-Wire وLZ4 Java وAdaptive Radix Trees.
يتضمن Exchange-core ما يلي:
مصمم لقابلية التوسع العالية والتشغيل بدون توقف على مدار الساعة طوال أيام الأسبوع في ظل ظروف التحميل العالي وتوفير استجابات منخفضة زمن الوصول:
تكوين دفتر الطلبات الفردي قادر على معالجة 5 ملايين عملية في الثانية على أجهزة عمرها 10 سنوات (Intel® Xeon® X5690) مع تدهور متوسط في زمن الوصول:
معدل | 50.0% | 90.0% | 95.0% | 99.0% | 99.9% | 99.99% | أسوأ |
---|---|---|---|---|---|---|---|
125 ألف | 0.6 ثانية | 0.9 ثانية | 1.0 ثانية | 1.4 ثانية | 4 ميكروثانية | 24 ثانية | 41 ثانية |
250 ألف | 0.6 ثانية | 0.9 ثانية | 1.0 ثانية | 1.4 ثانية | 9 ثانية | 27 ثانية | 41 ثانية |
500 ألف | 0.6 ثانية | 0.9 ثانية | 1.0 ثانية | 1.6 ثانية | 14 ثانية | 29 ثانية | 42 ثانية |
1 م | 0.5 ثانية | 0.9 ثانية | 1.2 ثانية | 4 ميكروثانية | 22 ثانية | 31 ثانية | 45 ثانية |
2 م | 0.5 ثانية | 1.2 ثانية | 3.9 ثانية | 10 ميكرو ثانية | 30 ثانية | 39 ثانية | 60 ثانية |
3M | 0.7 ثانية | 3.6 ثانية | 6.2 ثانية | 15 ثانية | 36 ثانية | 45 ثانية | 60 ثانية |
4 م | 1.0 ثانية | 6.0 ثانية | 9 ثانية | 25 ثانية | 45 ثانية | 55 ثانية | 70 ثانية |
5 م | 1.5 ثانية | 9.5 ثانية | 16 ثانية | 42 ثانية | 150 ثانية | 170 ثانية | 190 ثانية |
6 م | 5 ميكروثانية | 30 ثانية | 45 ثانية | 300 ثانية | 500 ثانية | 520 ثانية | 540 ثانية |
7 م | 60 ثانية | 1.3 مللي ثانية | 1.5 مللي ثانية | 1.8 مللي ثانية | 1.9 مللي ثانية | 1.9 مللي ثانية | 1.9 مللي ثانية |
التكوين المرجعي:
mvn install
pom.xml
الخاص بمشروعك: <dependency>
<groupId>exchange.core2</groupId>
<artifactId>exchange-core</artifactId>
<version>0.5.3</version>
</dependency>
وبدلاً من ذلك، يمكنك استنساخ هذا المستودع وتشغيل اختبار المثال.
إنشاء وبدء تبادل أساسي فارغ:
// simple async events handler
SimpleEventsProcessor eventsProcessor = new SimpleEventsProcessor ( new IEventsHandler () {
@ Override
public void tradeEvent ( TradeEvent tradeEvent ) {
System . out . println ( "Trade event: " + tradeEvent );
}
@ Override
public void reduceEvent ( ReduceEvent reduceEvent ) {
System . out . println ( "Reduce event: " + reduceEvent );
}
@ Override
public void rejectEvent ( RejectEvent rejectEvent ) {
System . out . println ( "Reject event: " + rejectEvent );
}
@ Override
public void commandResult ( ApiCommandResult commandResult ) {
System . out . println ( "Command result: " + commandResult );
}
@ Override
public void orderBook ( OrderBook orderBook ) {
System . out . println ( "OrderBook event: " + orderBook );
}
});
// default exchange configuration
ExchangeConfiguration conf = ExchangeConfiguration . defaultBuilder (). build ();
// no serialization
Supplier < ISerializationProcessor > serializationProcessorFactory = () -> DummySerializationProcessor . INSTANCE ;
// build exchange core
ExchangeCore exchangeCore = ExchangeCore . builder ()
. resultsConsumer ( eventsProcessor )
. serializationProcessorFactory ( serializationProcessorFactory )
. exchangeConfiguration ( conf )
. build ();
// start up disruptor threads
exchangeCore . startup ();
// get exchange API for publishing commands
ExchangeApi api = exchangeCore . getApi ();
إنشاء رمز جديد:
// currency code constants
final int currencyCodeXbt = 11 ;
final int currencyCodeLtc = 15 ;
// symbol constants
final int symbolXbtLtc = 241 ;
// create symbol specification and publish it
CoreSymbolSpecification symbolSpecXbtLtc = CoreSymbolSpecification . builder ()
. symbolId ( symbolXbtLtc ) // symbol id
. type ( SymbolType . CURRENCY_EXCHANGE_PAIR )
. baseCurrency ( currencyCodeXbt ) // base = satoshi (1E-8)
. quoteCurrency ( currencyCodeLtc ) // quote = litoshi (1E-8)
. baseScaleK ( 1_000_000L ) // 1 lot = 1M satoshi (0.01 BTC)
. quoteScaleK ( 10_000L ) // 1 price step = 10K litoshi
. takerFee ( 1900L ) // taker fee 1900 litoshi per 1 lot
. makerFee ( 700L ) // maker fee 700 litoshi per 1 lot
. build ();
future = api . submitBinaryDataAsync ( new BatchAddSymbolsCommand ( symbolSpecXbtLtc ));
إنشاء مستخدمين جدد:
// create user uid=301
future = api . submitCommandAsync ( ApiAddUser . builder ()
. uid ( 301L )
. build ());
// create user uid=302
future = api . submitCommandAsync ( ApiAddUser . builder ()
. uid ( 302L )
. build ());
تنفيذ الودائع:
// first user deposits 20 LTC
future = api . submitCommandAsync ( ApiAdjustUserBalance . builder ()
. uid ( 301L )
. currency ( currencyCodeLtc )
. amount ( 2_000_000_000L )
. transactionId ( 1L )
. build ());
// second user deposits 0.10 BTC
future = api . submitCommandAsync ( ApiAdjustUserBalance . builder ()
. uid ( 302L )
. currency ( currencyCodeXbt )
. amount ( 10_000_000L )
. transactionId ( 2L )
. build ());
وضع أوامر:
// first user places Good-till-Cancel Bid order
// he assumes BTCLTC exchange rate 154 LTC for 1 BTC
// bid price for 1 lot (0.01BTC) is 1.54 LTC => 1_5400_0000 litoshi => 10K * 15_400 (in price steps)
future = api . submitCommandAsync ( ApiPlaceOrder . builder ()
. uid ( 301L )
. orderId ( 5001L )
. price ( 15_400L )
. reservePrice ( 15_600L ) // can move bid order up to the 1.56 LTC, without replacing it
. size ( 12L ) // order size is 12 lots
. action ( OrderAction . BID )
. orderType ( OrderType . GTC ) // Good-till-Cancel
. symbol ( symbolXbtLtc )
. build ());
// second user places Immediate-or-Cancel Ask (Sell) order
// he assumes wost rate to sell 152.5 LTC for 1 BTC
future = api . submitCommandAsync ( ApiPlaceOrder . builder ()
. uid ( 302L )
. orderId ( 5002L )
. price ( 15_250L )
. size ( 10L ) // order size is 10 lots
. action ( OrderAction . ASK )
. orderType ( OrderType . IOC ) // Immediate-or-Cancel
. symbol ( symbolXbtLtc )
. build ());
طلب كتاب الطلب:
future = api . requestOrderBookAsync ( symbolXbtLtc , 10 );
التلاعب بأوامر GtC:
// first user moves remaining order to price 1.53 LTC
future = api . submitCommandAsync ( ApiMoveOrder . builder ()
. uid ( 301L )
. orderId ( 5001L )
. newPrice ( 15_300L )
. symbol ( symbolXbtLtc )
. build ());
// first user cancel remaining order
future = api . submitCommandAsync ( ApiCancelOrder . builder ()
. uid ( 301L )
. orderId ( 5001L )
. symbol ( symbolXbtLtc )
. build ());
التحقق من رصيد المستخدم وأوامر GtC:
Future < SingleUserReportResult > report = api . processReport ( new SingleUserReportQuery ( 301 ), 0 );
التحقق من توازن النظام:
// check fees collected
Future < TotalCurrencyBalanceReportResult > totalsReport = api . processReport ( new TotalCurrencyBalanceReportQuery (), 0 );
System . out . println ( "LTC fees collected: " + totalsReport . get (). getFees (). get ( currencyCodeLtc ));
Exchange-core هو مشروع مفتوح المصدر ونرحب بالمساهمات!