Skip to content

Commit

Permalink
[MDAPI-26] Update Graal SDK to v1.1.21
Browse files Browse the repository at this point in the history
OrderSource::CEDX
OrderSource::cedx
  • Loading branch information
AnatolyKalin committed Jul 1, 2024
1 parent 4457e13 commit 5f5bb42
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
16 changes: 16 additions & 0 deletions include/dxfeed_graal_cpp_api/event/market/OrderSource.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,22 @@ class DXFCPP_EXPORT OrderSource final : public IndexedEventSource {
*/
static const OrderSource arca;

/**
* Cboe European Derivatives.
*
* Order events are @ref ::isPublishable() "publishable" on this source and the corresponding subscription can be
* observed via DXPublisher.
*/
static const OrderSource CEDX;

/**
* Cboe European Derivatives. Record for price level book.
*
* Order events are @ref ::isPublishable() "publishable" on this source and the corresponding subscription can be
* observed via DXPublisher.
*/
static const OrderSource cedx;

/**
* Determines whether specified source identifier refers to special order source.
* Special order sources are used for wrapping non-order events into order events.
Expand Down
5 changes: 4 additions & 1 deletion src/event/market/OrderSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ const OrderSource OrderSource::OCEA("OCEA", PUB_ORDER);
const OrderSource OrderSource::pink("pink", PUB_ORDER | PUB_OTC_MARKETS_ORDER);
const OrderSource OrderSource::ARCA("ARCA", PUB_ORDER);
const OrderSource OrderSource::arca("arca", PUB_ORDER);
const OrderSource OrderSource::CEDX("CEDX", PUB_ORDER);
const OrderSource OrderSource::cedx("cedx", PUB_ORDER);

const std::unordered_map<std::variant<std::int32_t, std::string>, std::reference_wrapper<const OrderSource>>
OrderSource::PREDEFINED_SOURCES =
Expand All @@ -74,7 +76,8 @@ const std::unordered_map<std::variant<std::int32_t, std::string>, std::reference
DEFAULT,
//
NTV, ntv, NFX, ESPD, XNFI, ICE, ISE, DEA, DEX, dex, BYX, BZX, bzx, BATE, CHIX, CEUX, BXTR, IST, BI20, ABE,
FAIR, GLBX, glbx, ERIS, XEUR, xeur, CFE, C2OX, SMFE, smfe, iex, MEMX, memx, OCEA, pink, ARCA, arca});
FAIR, GLBX, glbx, ERIS, XEUR, xeur, CFE, C2OX, SMFE, smfe, iex, MEMX, memx, OCEA, pink, ARCA, arca, CEDX,
cedx});

std::unordered_map<std::int32_t, OrderSource> OrderSource::USER_SOURCES_{};

Expand Down

0 comments on commit 5f5bb42

Please sign in to comment.